- Timestamp:
- Dec 18, 2004, 6:09:24 PM (21 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/cppbase/bs_config.cpp
r267 r271 252 252 // V0.9.12 (2001-05-22) [umoeller] 253 253 254 _iReplaceMode = CFGRPL_ADD; // V1.0.4 (2004-12-18) [pr] 255 _iVertical = CFGVRT_BOTTOM; 256 // Moved above statements here from the else{} block below. If there wasn't a modifier, 257 // this was uninitialised garbage and CONFIG.SYS never got modified. 258 254 259 // now check if we have modifiers 255 260 PSZ pSep; … … 275 280 // now check for the replace mode; 276 281 // the default is 0 (CFGRPL_ADD) 277 _iReplaceMode = CFGRPL_ADD;278 282 fVerticalsAllowed = TRUE; 279 283 … … 356 360 357 361 // now parse vertical modifiers 358 _iVertical = CFGVRT_BOTTOM; // default359 362 BOOL fVerticalFound = FALSE; 360 363 if (strhistr(pModifiers, "ADDTOP")) -
trunk/src/helpers/dosh.c
r265 r271 3227 3227 // all the time when saving a file 3228 3228 // 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] 3230 3231 { 3231 3232 *p = '\0';
Note:
See TracChangeset
for help on using the changeset viewer.