Skip to content

Commit

Permalink
The actual way the macro bug should have been fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
stag019 committed Nov 4, 2014
1 parent 80e2129 commit a64d725
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/asm/fstack.c
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ fstk_RunMacro(char *s)
pCurrentMacro = sym;
CurrentFlexHandle =
yy_scan_bytes(pCurrentMacro->pMacro,
(pCurrentMacro->ulMacroSize < MAXSYMLEN ? MAXSYMLEN : pCurrentMacro->ulMacroSize)); //Dirty hack to fix small macros using long label names.
strlen(pCurrentMacro->pMacro));
yy_switch_to_buffer(CurrentFlexHandle);
return (1);
} else
Expand Down

0 comments on commit a64d725

Please sign in to comment.