Allow \r as whitespace.

This commit is contained in:
Bruce Momjian 1999-10-09 01:32:38 +00:00
parent 3202f45354
commit b8c3226da2
1 changed files with 2 additions and 2 deletions

View 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.