mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-01 22:42:18 +00:00
Thu May 7 13:20:56 1998 Anders Blomdell <anders.blomdell@control.lth.se>
* gasp.c (grab_label): Permit a label to be a preprocessor variable by permitting a label to start with a backslash.
This commit is contained in:
parent
4c7f1d4109
commit
82df8834c9
@ -1,3 +1,8 @@
|
||||
Thu May 7 13:20:56 1998 Anders Blomdell <anders.blomdell@control.lth.se>
|
||||
|
||||
* gasp.c (grab_label): Permit a label to be a preprocessor
|
||||
variable by permitting a label to start with a backslash.
|
||||
|
||||
start-sanitize-d30v
|
||||
Thu May 7 11:13:00 1998 Frank Ch. Eigler <fche@cygnus.com>
|
||||
|
||||
|
@ -1080,7 +1080,7 @@ grab_label (in, out)
|
||||
{
|
||||
int i = 0;
|
||||
sb_reset (out);
|
||||
if (ISFIRSTCHAR (in->ptr[i]))
|
||||
if (ISFIRSTCHAR (in->ptr[i]) || in->ptr[i] == '\\')
|
||||
{
|
||||
sb_add_char (out, in->ptr[i]);
|
||||
i++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user