home *** CD-ROM | disk | FTP | other *** search
- *** orig/gas-211/gas/app.c Mon May 31 14:01:26 1993
- --- src/gas-211/gas/app.c Mon May 31 14:12:14 1993
- ***************
- *** 295,301 ****
- (*unget) (ch);
- }
- state = old_state;
- ! return ' ';
-
- case 4:
- ch = (*get) ();
- --- 295,301 ----
- (*unget) (ch);
- }
- state = old_state;
- ! return (do_scrub_next_char (get, unget));
-
- case 4:
- ch = (*get) ();
- ***************
- *** 577,585 ****
- return ch;
-
- case LEX_IS_LINE_COMMENT_START:
- - if (state != 0) /* Not at start of line, act normal */
- - goto de_fault;
- -
- /* FIXME-someday: The two character comment stuff was badly
- thought out. On i386, we want '/' as line comment start AND
- we want C style comments. hence this hack. The whole
- --- 577,582 ----
- ***************
- *** 598,603 ****
- --- 595,603 ----
- (*unget) (ch2);
- }
- } /* bad hack */
- +
- + if (state != 0) /* Not at start of line, act normal */
- + goto de_fault;
-
- do
- ch = (*get) ();
-