diff options
Diffstat (limited to 'gdb/ch-exp.y')
-rw-r--r-- | gdb/ch-exp.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ch-exp.y b/gdb/ch-exp.y index ae974fc..e818803 100644 --- a/gdb/ch-exp.y +++ b/gdb/ch-exp.y @@ -1044,7 +1044,7 @@ match_simple_name_string () { char *tokptr = lexptr; - if (isalpha (*tokptr)) + if (isalpha (*tokptr) || *tokptr == '_') { char *result; do { |