From b99c233d0940e864cb0d3f4b85c38c6f6db2c537 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Fri, 9 Jun 2006 11:17:00 +0000 Subject: [PATCH] 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 --- rsc/source/rscpp/cpp3.c | 8 ++++---- 1 file 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);