~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to awkgram.y

  • Committer: Arnold D. Robbins
  • Date: 2016-11-18 04:10:12 UTC
  • mfrom: (408.30.67)
  • mto: This revision was merged to the branch mainline in revision 730.
  • Revision ID: git-v1:dc7bf0cfeb2ec3eb26f1767cfe8605199613c4d6
Merge branch 'master' into feature/typed-regex-2

Show diffs side-by-side

added added

removed removed

Lines of Context:
3291
3291
                if (p[l] == '\n' && p[l+1] == '\n') {
3292
3292
                        function_comment = comment_to_save;
3293
3293
                        n = function_comment->memory;
3294
 
                        function_comment->memory = make_str_node(p + l + 2, n->stlen - l - 2, 0);
 
3294
                        function_comment->memory = make_string(p + l + 2, n->stlen - l - 2);
3295
3295
                        /* create program comment  */
3296
3296
                        program_comment = bcalloc(Op_comment, 1, sourceline);
3297
3297
                        program_comment->source_file = comment_to_save->source_file;