From e1bd14aee0a611d213f524e9077f405c8794c979 Mon Sep 17 00:00:00 2001 From: ggn Date: Sat, 6 Mar 2021 10:56:03 +0200 Subject: [PATCH] Fix for bug #181 (goto was never working corectly) --- token.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/token.c b/token.c index 5b783a3..f3cf619 100644 --- a/token.c +++ b/token.c @@ -1662,7 +1662,7 @@ int d_goto(WORD unused) { // Compare names (sleazo string compare) char * s1 = sym; - char * s2 = defln->line; + char * s2 = defln->line + 1; // Either we will match the strings to EOS on both, or we will // match EOS on string 1 to whitespace on string 2. Otherwise, we -- 2.37.2