X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fidentifier.c;h=7bd2261e60f15ac8f162996b7ee346c1b0eb5468;hb=ef35211c05259417e4f3dd4a7de44e92e4bc54a3;hp=37384b6d7786f24f46f6b5e6a785ffc87f44116e;hpb=537fdeb3702c011e05d7826a8d556a7beeba2605;p=pspp-builds.git diff --git a/src/data/identifier.c b/src/data/identifier.c index 37384b6d..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 @@ -45,7 +45,7 @@ bool lex_is_idn (char c_) { unsigned char c = c_; - return lex_is_id1 (c) || isdigit (c) || c == '.' || c == '_' || c >= 128; + return lex_is_id1 (c) || isdigit (c) || c == '.' || c == '_'; } /* Returns the length of the longest prefix of STRING that forms