aboutsummaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2018-08-02 20:41:40 +0300
committerArnold D. Robbins <arnold@skeeve.com>2018-08-02 20:41:40 +0300
commitef5a30e67615e1acc931e2f542b09f114ba30a97 (patch)
tree6f99a27e320b0a90830475bb53afcdae050726ab /main.c
parent0b5a1bcd8b7189cb2d3048ef8e8d39dd33e2bec6 (diff)
parent48f02e6672003d218d4c0348a6add7931522603b (diff)
downloadegawk-ef5a30e67615e1acc931e2f542b09f114ba30a97.tar.gz
egawk-ef5a30e67615e1acc931e2f542b09f114ba30a97.tar.bz2
egawk-ef5a30e67615e1acc931e2f542b09f114ba30a97.zip
Merge branch 'master' into feature/fix-comments
Diffstat (limited to 'main.c')
-rw-r--r--main.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/main.c b/main.c
index 25a628ba..4e94bddd 100644
--- a/main.c
+++ b/main.c
@@ -1165,11 +1165,18 @@ arg_assign(char *arg, bool initing)
fatal(_("cannot use function `%s' as variable name"), arg);
}
+ // POSIX disallows any newlines inside strings
+ // The scanner handles that for program files.
+ // We have to check here for strings passed to -v.
+ if (do_posix && strchr(cp, '\n') != NULL)
+ fatal(_("POSIX does not allow physical newlines in string values"));
+
/*
* BWK awk expands escapes inside assignments.
* This makes sense, so we do it too.
+ * In addition, remove \-<newline> as in scanning.
*/
- it = make_str_node(cp, strlen(cp), SCAN);
+ it = make_str_node(cp, strlen(cp), SCAN | ELIDE_BACK_NL);
it->flags |= USER_INPUT;
#ifdef LC_NUMERIC
/*