From: ggn Date: Sat, 6 Mar 2021 08:56:03 +0000 (+0200) Subject: Fix for bug #181 (goto was never working corectly) X-Git-Tag: v2.1.7~1 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=commitdiff_plain;h=e1bd14aee0a611d213f524e9077f405c8794c979 Fix for bug #181 (goto was never working corectly) --- 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