From: Hans-Bernhard B. <br...@us...> - 2004-02-05 11:48:50
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20512/src Modified Files: global.h Log Message: Fix stupid typo in BSD toupper/tolower replacements. Index: global.h =================================================================== RCS file: /cvsroot/cscope/cscope/src/global.h,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -r1.26 -r1.27 *** global.h 8 Jan 2004 14:07:20 -0000 1.26 --- global.h 5 Feb 2004 11:46:18 -0000 1.27 *************** *** 89,94 **** # undef tolower /* BSD toupper and tolower don't test the character */ # undef toupper ! # define tolower(c) (isupper(c) : (c) - 'A' + 'a' : (c)) ! # define toupper(c) (islower(c) : (c) - 'a' + 'A' : (c)) # if !sun # if !__FreeBSD__ --- 89,94 ---- # undef tolower /* BSD toupper and tolower don't test the character */ # undef toupper ! # define tolower(c) (isupper(c) ? (c) - 'A' + 'a' : (c)) ! # define toupper(c) (islower(c) ? (c) - 'a' + 'A' : (c)) # if !sun # if !__FreeBSD__ |