Skip to content

Commit

Permalink
'$' is permitted in C identifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
ascherer committed May 14, 2023
1 parent f665b56 commit bd538ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cweav-twill.ch
Original file line number Diff line number Diff line change
Expand Up @@ -1026,7 +1026,7 @@ new_meaning(
{ char *first=id_first;
while (xisspace(*first)) first++;
loc=first;
while (xisalpha(*loc)||xisdigit(*loc)||*loc=='_') loc++;
while (xisalpha(*loc)||xisdigit(*loc)||isxalpha(*loc)) loc++;
if (*loc++!=' ')
err_print(_("! Identifier in meaning should be followed by space"));
else {@+ int n=0;
Expand Down

0 comments on commit bd538ca

Please sign in to comment.