Changeset 273


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

Fix for Ctrl-Z processing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1-0/src/helpers/dosh.c

    r264 r273  
    30533053                // all the time when saving a file
    30543054                // V0.9.18 (2002-03-08) [umoeller]
    3055                 if (p = strchr(pszContent, '\26'))
     3055                // if (p = strchr(pszContent, '\26')) What the hell is this??? Octal 26 = Decimal 22 != Ctrl-Z
     3056                if (p = strchr(pszContent, '\x1A')) // V1.0.4 (2004-12-18) [pr]
    30563057                {
    30573058                    *p = '\0';
Note: See TracChangeset for help on using the changeset viewer.