diff options
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r-- | gdb/symtab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c index de2dbee..c0e5884 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -40,6 +40,7 @@ #include "go-lang.h" #include "p-lang.h" #include "addrmap.h" +#include "cli/cli-utils.h" #include "hashtab.h" @@ -3879,8 +3880,7 @@ rbreak_command (char *regexp, int from_tty) file_name[colon_index--] = 0; files = &file_name; nfiles = 1; - regexp = colon + 1; - while (isspace (*regexp)) regexp++; + regexp = skip_spaces (colon + 1); } } |