* app.c (do_scrub_chars): In MRI mode, don't treat '#' as a

comment character.
This commit is contained in:
Ian Lance Taylor 1996-02-12 20:41:58 +00:00
parent a043f579df
commit 15ed5f2c3f
2 changed files with 6 additions and 1 deletions

View File

@ -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:

View File

@ -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;