home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / gnu / djgpp / diffs / gas-211 / gas / app.c next >
Encoding:
Text File  |  1993-11-28  |  1.0 KB  |  44 lines

  1. *** orig/gas-211/gas/app.c    Mon May 31 14:01:26 1993
  2. --- src/gas-211/gas/app.c    Mon May 31 14:12:14 1993
  3. ***************
  4. *** 295,301 ****
  5.         (*unget) (ch);
  6.       }
  7.         state = old_state;
  8. !       return ' ';
  9.   
  10.       case 4:
  11.         ch = (*get) ();
  12. --- 295,301 ----
  13.         (*unget) (ch);
  14.       }
  15.         state = old_state;
  16. !       return (do_scrub_next_char (get, unget));
  17.   
  18.       case 4:
  19.         ch = (*get) ();
  20. ***************
  21. *** 577,585 ****
  22.         return ch;
  23.   
  24.       case LEX_IS_LINE_COMMENT_START:
  25. -       if (state != 0)        /* Not at start of line, act normal */
  26. -     goto de_fault;
  27.         /* FIXME-someday: The two character comment stuff was badly
  28.        thought out.  On i386, we want '/' as line comment start AND
  29.        we want C style comments.  hence this hack.  The whole
  30. --- 577,582 ----
  31. ***************
  32. *** 598,603 ****
  33. --- 595,603 ----
  34.             (*unget) (ch2);
  35.           }
  36.       }            /* bad hack */
  37. +       if (state != 0)        /* Not at start of line, act normal */
  38. +     goto de_fault;
  39.   
  40.         do
  41.       ch = (*get) ();
  42.