]> git.sur5r.net Git - cc65/blobdiff - src/ca65/nexttok.c
Don't use SF_TRAMPOLINE, change symbol references instead.
[cc65] / src / ca65 / nexttok.c
index 5be1dfc8a19473ee8c30443ac746686e4ec62a44..0b1fbcd2a87ef70dd9333a51f1f517e2fe7309a3 100644 (file)
@@ -339,7 +339,7 @@ static void FuncString (void)
     ConsumeLParen ();
 
     /* Accept identifiers or numeric expressions */
-    if (Tok == TOK_IDENT) {
+    if (Tok == TOK_IDENT || Tok == TOK_LOCAL_IDENT) {
        /* Save the identifier, then skip it */
        strcpy (Buf, SVal);
        NextTok ();