X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fidentifier.c;h=7bd2261e60f15ac8f162996b7ee346c1b0eb5468;hb=b5c82cc9aabe7e641011130240ae1b2e84348e23;hp=a52944e2757a11db7ace38273283d081581d0375;hpb=601e58677703d381b6ace162b3ddb3c53d27f50a;p=pspp-builds.git diff --git a/src/data/identifier.c b/src/data/identifier.c index a52944e2..7bd2261e 100644 --- a/src/data/identifier.c +++ b/src/data/identifier.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2005 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2005, 2009 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -35,7 +35,7 @@ bool lex_is_id1 (char c_) { unsigned char c = c_; - return isalpha (c) || c == '@' || c == '#' || c == '$'; + return isalpha (c) || c == '@' || c == '#' || c == '$' || c >= 128; }