Changeset 271 for trunk/src/helpers


Ignore:
Timestamp:
Dec 18, 2004, 6:09:24 PM (21 years ago)
Author:
pr
Message:

Fixes for Ctrl-Z processing & WarpIN CONFIGSYS processing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/dosh.c

    r265 r271  
    32273227                // all the time when saving a file
    32283228                // V0.9.18 (2002-03-08) [umoeller]
    3229                 if (p = strchr(pszContent, '\26'))
     3229                // if (p = strchr(pszContent, '\26')) What the hell is this??? Octal 26 = Decimal 22 != Ctrl-Z
     3230                if (p = strchr(pszContent, '\x1A')) // V1.0.4 (2004-12-18) [pr]
    32303231                {
    32313232                    *p = '\0';
Note: See TracChangeset for help on using the changeset viewer.