*** cgen-asm.c 26 Nov 2002 18:12:48 -0000 --- cgen-asm.c 18 Dec 2002 02:16:00 -0000 *************** cgen_parse_keyword (cd, strp, keyword_ta *** 225,231 **** /* Allow letters, digits, and any special characters. */ while (((p - start) < (int) sizeof (buf)) && *p ! && (ISALNUM (*p) || strchr (keyword_table->nonalpha_chars, *p))) ++p; if (p - start >= (int) sizeof (buf)) --- 225,233 ---- /* Allow letters, digits, and any special characters. */ while (((p - start) < (int) sizeof (buf)) && *p ! && (ISALNUM (*p) || ! strchr (keyword_table->nonalpha_chars, *p) || ! *p == '_')) ++p; if (p - start >= (int) sizeof (buf))