diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2018-04-26 11:52:52 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2018-04-27 11:37:43 -0400 |
commit | d4f16d50713077e69f8833df6b99d1eab0be1c33 (patch) | |
tree | f9acf7a056f6db6ba9b4e0059710276bb40d37aa /src/backend/parser | |
parent | a2ada08d4c0afa2d1f678ba7fb03ccc065f3a57b (diff) | |
download | postgresql-d4f16d50713077e69f8833df6b99d1eab0be1c33.tar.gz postgresql-d4f16d50713077e69f8833df6b99d1eab0be1c33.zip |
perltidy: Add option --nooutdent-long-quotes
Diffstat (limited to 'src/backend/parser')
-rw-r--r-- | src/backend/parser/check_keywords.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/parser/check_keywords.pl b/src/backend/parser/check_keywords.pl index d8ebddec9f9..ad41e134ac2 100644 --- a/src/backend/parser/check_keywords.pl +++ b/src/backend/parser/check_keywords.pl @@ -177,14 +177,14 @@ kwlist_line: while (<$kwlist>) if ($kwstring !~ /^[a-z_]+$/) { error -"'$kwstring' is not a valid keyword string, must be all lower-case ASCII chars"; + "'$kwstring' is not a valid keyword string, must be all lower-case ASCII chars"; } # Check that the keyword name is valid: all upper-case ASCII chars if ($kwname !~ /^[A-Z_]+$/) { error -"'$kwname' is not a valid keyword name, must be all upper-case ASCII chars"; + "'$kwname' is not a valid keyword name, must be all upper-case ASCII chars"; } # Check that the keyword string matches keyword name @@ -193,7 +193,7 @@ kwlist_line: while (<$kwlist>) if ($bare_kwname ne uc($kwstring)) { error -"keyword name '$kwname' doesn't match keyword string '$kwstring'"; + "keyword name '$kwname' doesn't match keyword string '$kwstring'"; } # Check that the keyword is present in the grammar |