X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fidentifier.c;h=4f38e84fc0b798c5794f8760bd5238bfd86d36f5;hb=945fd370f9fb880b310fb88f868ad47c2ae84533;hp=f90f4be1612da6b292a7759fd356124b3c4dfa7f;hpb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;p=pspp-builds.git diff --git a/src/data/identifier.c b/src/data/identifier.c index f90f4be1..4f38e84f 100644 --- a/src/data/identifier.c +++ b/src/data/identifier.c @@ -42,7 +42,7 @@ const char *keywords[T_N_KEYWORDS + 1] = /* Recognizing identifiers. */ /* Returns true if C may be the first character in an - identifier. */ + identifier in the current locale. */ bool lex_is_id1 (char c_) { @@ -50,6 +50,7 @@ lex_is_id1 (char c_) return isalpha (c) || c == '@' || c == '#' || c == '$'; } + /* Returns true if C may be a character in an identifier other than the first. */ bool