Indenting #if commands is not portable, is it?
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 24 Mar 2002 18:22:21 +0000 (18:22 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 24 Mar 2002 18:22:21 +0000 (18:22 +0000)
src/interfaces/ecpg/preproc/pgc.l

index 7a617c6d8731384a2f1992f0e52ada97713fec05..5341d0930188a7cdbbbce39e6a37c210beb76d6b 100644 (file)
@@ -12,7 +12,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.88 2002/03/15 21:46:59 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.89 2002/03/24 18:22:21 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -338,10 +338,10 @@ cppline           {space}*#(.*\\{space})*.*
                        errno = 0;
                        val = strtol(literalbuf, &endptr, 16);
                        if (*endptr != '\0' || errno == ERANGE
-   #ifdef HAVE_LONG_INT_64
+#ifdef HAVE_LONG_INT_64
                            /* if long > 32 bits, check for overflow of int4 */
                            || val != (long) ((int32) val)
-   #endif
+#endif
                            )
                            mmerror(PARSE_ERROR, ET_ERROR, "Bad hexadecimal integer input");
                        yylval.ival = val;