Skip to content

Commit b8c3226

Browse files
committed
Allow \r as whitespace.
1 parent 3202f45 commit b8c3226

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/parser/scan.l

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.58 1999/10/08 05:03:13 momjian Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/parser/scan.l,v 1.59 1999/10/09 01:32:38 momjian Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -169,7 +169,7 @@ param \${integer}
169169

170170
comment ("--"|"//").*
171171

172-
space [ \t\n\f]
172+
space [ \t\n\r\f]
173173
other .
174174

175175
/* DO NOT PUT ANY COMMENTS IN THE FOLLOWING SECTION.

0 commit comments

Comments
 (0)