Allow \r as whitespace.
authorBruce Momjian
Sat, 9 Oct 1999 01:32:38 +0000 (01:32 +0000)
committerBruce Momjian
Sat, 9 Oct 1999 01:32:38 +0000 (01:32 +0000)
src/backend/parser/scan.l

index a18ab2d2de361e278e9606a50f8ba4375bff7432..5e66e14fe193ea49f6e1bc2891089cef91293331 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.58 1999/10/08 05:03:13 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.59 1999/10/09 01:32:38 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -169,7 +169,7 @@ param           \${integer}
 
 comment            ("--"|"//").*
 
-space          [ \t\n\f]
+space          [ \t\n\r\f]
 other          .
 
 /* DO NOT PUT ANY COMMENTS IN THE FOLLOWING SECTION.