diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-11-18 06:10:12 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-11-18 06:10:12 +0200 |
commit | dc7bf0cfeb2ec3eb26f1767cfe8605199613c4d6 (patch) | |
tree | f2d6dcac2918d00cd31dd2dded7a776de7fa277e /awkgram.y | |
parent | f0b405cceab16dadbb84b95a8d68f705bc20f70f (diff) | |
parent | c2448a50be949f5df2da4f7a1baf58358b297970 (diff) | |
download | egawk-dc7bf0cfeb2ec3eb26f1767cfe8605199613c4d6.tar.gz egawk-dc7bf0cfeb2ec3eb26f1767cfe8605199613c4d6.tar.bz2 egawk-dc7bf0cfeb2ec3eb26f1767cfe8605199613c4d6.zip |
Merge branch 'master' into feature/typed-regex-2
Diffstat (limited to 'awkgram.y')
-rw-r--r-- | awkgram.y | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3291,7 +3291,7 @@ split_comment(void) if (p[l] == '\n' && p[l+1] == '\n') { function_comment = comment_to_save; n = function_comment->memory; - function_comment->memory = make_str_node(p + l + 2, n->stlen - l - 2, 0); + function_comment->memory = make_string(p + l + 2, n->stlen - l - 2); /* create program comment */ program_comment = bcalloc(Op_comment, 1, sourceline); program_comment->source_file = comment_to_save->source_file; |