INTEGRATION: CWS ause056 (1.10.24); FILE MERGED

2006/05/23 11:22:33 hjs 1.10.24.1: #i62851# no unwanted uppercasing on windows
This commit is contained in:
Jens-Heiner Rechtien
2006-06-09 11:17:00 +00:00
parent 5a26b12045
commit b99c233d09

View File

@@ -4,9 +4,9 @@
* *
* $RCSfile: cpp3.c,v $ * $RCSfile: cpp3.c,v $
* *
* $Revision: 1.10 $ * $Revision: 1.11 $
* *
* last change: $Author: rt $ $Date: 2005-09-08 13:58:46 $ * last change: $Author: hr $ $Date: 2006-06-09 12:17:00 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
@@ -263,7 +263,7 @@ char *argv[];
case 'D': /* Define symbol */ case 'D': /* Define symbol */
#if HOST != SYS_UNIX #if HOST != SYS_UNIX
zap_uc(ap); /* Force define to U.C. */ /* zap_uc(ap); /* Force define to U.C. */
#endif #endif
/* /*
* If the option is just "-Dfoo", make it -Dfoo=1 * If the option is just "-Dfoo", make it -Dfoo=1
@@ -326,7 +326,7 @@ char *argv[];
case 'U': /* Undefine symbol */ case 'U': /* Undefine symbol */
#if HOST != SYS_UNIX #if HOST != SYS_UNIX
zap_uc(ap); /* zap_uc(ap);*/
#endif #endif
if (defendel(ap, TRUE) == NULL) if (defendel(ap, TRUE) == NULL)
cwarn("\"%s\" wasn't defined", ap); cwarn("\"%s\" wasn't defined", ap);