Changeset 36 for trunk/src/kmk/parse.c


Ignore:
Timestamp:
Mar 18, 2003, 5:32:28 AM (22 years ago)
Author:
bird
Message:

emx is kind of working again...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/parse.c

    r35 r36  
    21772177        buf = Buf_Init(MAKE_BSIZE);
    21782178
    2179         while (((c = ParseReadc ()) != '\n' || (lastc == '\\')) &&
    2180                (c != EOF))
     2179        #ifdef NMAKE
     2180        while (((c = ParseReadc ()) != '\n' || (lastc == '\\') || (lastc == '^')) && (c != EOF))
     2181        #else
     2182        while (((c = ParseReadc ()) != '\n' || (lastc == '\\')) && (c != EOF))
     2183        #endif
    21812184        {
    21822185test_char:
     
    21942197                lastc = ' ';
    21952198#ifdef NMAKE
     2199                if (lastc == '^')
     2200                    lastc = '\n';
     2201
    21962202                do {
    21972203                        while ((c = ParseReadc ()) == ' ' || c == '\t') {
Note: See TracChangeset for help on using the changeset viewer.