aboutsummaryrefslogtreecommitdiffstats
path: root/node.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-08-02 18:20:53 +0300
committerArnold D. Robbins <arnold@skeeve.com>2018-08-02 18:20:53 +0300
commit23356c2d522bf17b4acb314f7aa6503a62db2765 (patch)
tree12e82b306c973dfd1b361ca87de47967424d3ddf /node.c
parentc1f670b26671cc8d60d967bbcb42cb8deb3baf2b (diff)
downloadegawk-23356c2d522bf17b4acb314f7aa6503a62db2765.tar.gz
egawk-23356c2d522bf17b4acb314f7aa6503a62db2765.tar.bz2
egawk-23356c2d522bf17b4acb314f7aa6503a62db2765.zip
Add lint warning for escaped newlines.
Diffstat (limited to 'node.c')
-rw-r--r--node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/node.c b/node.c
index 4ad41ef1..2f9e6d4c 100644
--- a/node.c
+++ b/node.c
@@ -450,7 +450,7 @@ make_str_node(const char *s, size_t len, int flags)
c = parse_escape(&pf);
if (c < 0) {
if (do_lint)
- lintwarn(_("backslash at end of string"));
+ lintwarn(_("backslash string continuation is not portable"));
if ((flags & ELIDE_BACK_NL) != 0)
continue;
c = '\\';