[Libreoffice-commits] .: soltools/cpp

Caolán McNamara caolan at kemper.freedesktop.org
Mon Nov 14 01:49:15 PST 2011


 soltools/cpp/_lex.c |    4 ----
 1 file changed, 4 deletions(-)

New commits:
commit ff6af93716bca3956b46e1c5940d4fdb92ceb7eb
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Mon Nov 14 09:48:42 2011 +0000

    this S390 ifdef isn't a contemporary one

diff --git a/soltools/cpp/_lex.c b/soltools/cpp/_lex.c
index 32f8cdf..a707007 100644
--- a/soltools/cpp/_lex.c
+++ b/soltools/cpp/_lex.c
@@ -264,12 +264,8 @@ void
                     continue;
                 case C_ALPH:
                     for (j = 0; j < 256; j++)
-#ifdef S390
-                        if( isalpha( j ) || (j == '_') )
-#else
                         if (('a' <= j && j <= 'z') || ('A' <= j && j <= 'Z')
                             || j == '_')
-#endif
                             bigfsm[j][fp->state] = (short) nstate;
                     continue;
                 case C_NUM:


More information about the Libreoffice-commits mailing list