Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed5f90 commit 40d091bCopy full SHA for 40d091b
src/backend/utils/misc/guc-file.l
@@ -4,7 +4,7 @@
4
*
5
* Copyright (c) 2000-2005, PostgreSQL Global Development Group
6
7
- * $PostgreSQL: pgsql/src/backend/utils/misc/guc-file.l,v 1.30 2005/03/11 19:13:42 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc-file.l,v 1.31 2005/07/08 18:41:40 tgl Exp $
8
*/
9
10
%{
@@ -70,7 +70,7 @@ STRING \'([^'\n]|\\.)*\'
70
71
\n ConfigFileLineno++; return GUC_EOL;
72
[ \t\r]+ /* eat whitespace */
73
-#.*$ /* eat comment */
+#.* /* eat comment (.* matches anything until newline) */
74
75
{ID} return GUC_ID;
76
{QUALIFIED_ID} return GUC_QUALIFIED_ID;
0 commit comments