diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-09 11:17:00 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-09 11:17:00 +0000 |
commit | b99c233d0940e864cb0d3f4b85c38c6f6db2c537 (patch) | |
tree | d45637f970db056ad4e824d7865b2fb41dd35967 /rsc | |
parent | 5a26b12045fb40ba47565a6ab01548db699f4098 (diff) |
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
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/source/rscpp/cpp3.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rsc/source/rscpp/cpp3.c b/rsc/source/rscpp/cpp3.c index 5358164bd645..36b9f34ac6ba 100644 --- a/rsc/source/rscpp/cpp3.c +++ b/rsc/source/rscpp/cpp3.c @@ -4,9 +4,9 @@ * * $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 terms of GNU Lesser General Public License Version 2.1. @@ -263,7 +263,7 @@ char *argv[]; case 'D': /* Define symbol */ #if HOST != SYS_UNIX - zap_uc(ap); /* Force define to U.C. */ +/* zap_uc(ap); /* Force define to U.C. */ #endif /* * If the option is just "-Dfoo", make it -Dfoo=1 @@ -326,7 +326,7 @@ char *argv[]; case 'U': /* Undefine symbol */ #if HOST != SYS_UNIX - zap_uc(ap); +/* zap_uc(ap);*/ #endif if (defendel(ap, TRUE) == NULL) cwarn("\"%s\" wasn't defined", ap); |