* app.c (do_scrub_chars): In MRI mode, don't treat '#' as a
comment character.
This commit is contained in:
parent
a043f579df
commit
15ed5f2c3f
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Feb 12 15:41:21 1996 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* app.c (do_scrub_chars): In MRI mode, don't treat '#' as a
|
||||
comment character.
|
||||
|
||||
Mon Feb 12 15:16:29 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
|
||||
|
||||
Support for OBJ_ELF on m68k, mostly inside #ifdef OBJ_ELF:
|
||||
|
|
|
@ -874,7 +874,7 @@ do_scrub_chars (get, tostart, tolen)
|
|||
|| (ch != '!' && ch != '*')))
|
||||
goto de_fault;
|
||||
if (flag_m68k_mri
|
||||
&& (ch == '!' || ch == '*')
|
||||
&& (ch == '!' || ch == '*' || ch == '#')
|
||||
&& state != 1
|
||||
&& state != 10)
|
||||
goto de_fault;
|
||||
|
|
Loading…
Add table
Reference in a new issue