texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: * tp/Texinfo/ParserNonXS.pm (_next_text), tp/Texi


From: Patrice Dumas
Subject: branch master updated: * tp/Texinfo/ParserNonXS.pm (_next_text), tp/Texinfo/XS/parsetexi/input.c (next_text): reuse input source mark for delcomment. Do not pass line from input source mark to the other source marks.
Date: Tue, 07 Feb 2023 12:45:42 -0500

This is an automated email from the git hooks/post-receive script.

pertusus pushed a commit to branch master
in repository texinfo.

The following commit(s) were added to refs/heads/master by this push:
     new 41d7cd6d18 * tp/Texinfo/ParserNonXS.pm (_next_text), 
tp/Texinfo/XS/parsetexi/input.c (next_text): reuse input source mark for 
delcomment.  Do not pass line from input source mark to the other source marks.
41d7cd6d18 is described below

commit 41d7cd6d18908ec5f1edf928af3e37f02366c2a0
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Tue Feb 7 18:45:31 2023 +0100

    * tp/Texinfo/ParserNonXS.pm (_next_text),
    tp/Texinfo/XS/parsetexi/input.c (next_text): reuse input source mark
    for delcomment.  Do not pass line from input source mark to the other
    source marks.
---
 ChangeLog                                          |   7 ++
 tp/Texinfo/ParserNonXS.pm                          |  15 ++--
 tp/Texinfo/XS/parsetexi/input.c                    |  23 +++--
 tp/t/results/conditionals/empty_set_in_ifset.pl    |   1 -
 tp/t/results/include/value_expansion_in_include.pl |   6 --
 tp/t/results/macro/bib_example.pl                  |   3 -
 tp/t/results/value/comment_on_set_line.pl          |   4 -
 tp/t/results/value/empty_set.pl                    |   1 -
 tp/t/results/value/empty_value_in_line.pl          |   1 -
 tp/t/results/value/ignored_value_definition.pl     |   1 -
 tp/t/results/value/not_only_characters.pl          |   1 -
 tp/t/results/value/recursive_expansion_in_set.pl   | 100 ---------------------
 tp/t/results/value/set_flag_command_equivalent.pl  |   1 -
 tp/t/results/value/set_form_feed.pl                |   3 -
 tp/t/results/value/simple.pl                       |   1 -
 tp/t/results/value/spaces_before_value.pl          |   1 -
 tp/t/results/value/value_after_accent.pl           |   2 -
 tp/t/results/value/value_after_brace_command.pl    |   6 --
 tp/t/results/value/value_in_index_commands.pl      |  11 ---
 .../value/value_in_invalid_documentencoding.pl     |   1 -
 tp/t/results/value/value_in_misc_commands.pl       |  34 -------
 tp/t/results/value/value_in_node.pl                |   4 -
 tp/t/results/value/value_node_directions.pl        |   5 --
 tp/t/results/value/value_zero.pl                   |   1 -
 .../value_and_macro/comma_value_in_macro_arg.pl    |   1 -
 tp/t/results/value_and_macro/macro_in_value.pl     |   1 -
 .../results/value_and_macro/value_in_macro_body.pl |   1 -
 27 files changed, 25 insertions(+), 211 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index e2f18810be..b66f7c828b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2023-02-07  Patrice Dumas  <pertusus@free.fr>
+
+       * tp/Texinfo/ParserNonXS.pm (_next_text),
+       tp/Texinfo/XS/parsetexi/input.c (next_text): reuse input source mark
+       for delcomment.  Do not pass line from input source mark to the other
+       source marks.
+
 2023-02-07  Patrice Dumas  <pertusus@free.fr>
 
        * tp/Texinfo/Convert/HTML.pm (%default_commands_args)
diff --git a/tp/Texinfo/ParserNonXS.pm b/tp/Texinfo/ParserNonXS.pm
index f9ef597467..cc8a7ebbc9 100644
--- a/tp/Texinfo/ParserNonXS.pm
+++ b/tp/Texinfo/ParserNonXS.pm
@@ -2453,19 +2453,18 @@ sub _next_text($;$)
     }
 
     if (defined($input->{'input_source_mark'}) and defined($current)) {
-      my $end_source_mark
+      my $end_source_mark;
+      if ($input->{'input_source_mark'}->{'sourcemark_type'} eq 'delcomment') {
+        $end_source_mark = $input->{'input_source_mark'};
+      } else {
+        $end_source_mark
           = { 'sourcemark_type' =>
                $input->{'input_source_mark'}->{'sourcemark_type'},
               'counter' =>
                $input->{'input_source_mark'}->{'counter'},
             };
-      $end_source_mark->{'line'}
-        = $input->{'input_source_mark'}->{'line'}
-          if (defined($input->{'input_source_mark'}->{'line'}));
-      $end_source_mark->{'status'} = 'end'
-          if ($end_source_mark->{'sourcemark_type'} eq 'include'
-              or $end_source_mark->{'sourcemark_type'} eq 'macro_expansion'
-              or $end_source_mark->{'sourcemark_type'} eq 'value_expansion');
+        $end_source_mark->{'status'} = 'end';
+      }
       _register_source_mark($self, $current,
                             $end_source_mark);
     }
diff --git a/tp/Texinfo/XS/parsetexi/input.c b/tp/Texinfo/XS/parsetexi/input.c
index 674aeb06fb..5a202da0ac 100644
--- a/tp/Texinfo/XS/parsetexi/input.c
+++ b/tp/Texinfo/XS/parsetexi/input.c
@@ -50,7 +50,7 @@ typedef struct {
     char *ptext; /* How far we are through 'text'.  Used to split 'text'
                     into lines. */
     char *value_flag; /* value flag if the input text is a @value
-                         explansion */
+                         expansion */
     SOURCE_MARK *input_source_mark;
 } INPUT;
 
@@ -503,18 +503,17 @@ next_text (ELEMENT *current)
 
       if (input->input_source_mark && current)
         {
-          /* FIXME free the input_source_mark here, when it is not
-             associated to an element, for delcomment for example */
           SOURCE_MARK *input_source_mark = input->input_source_mark;
-          SOURCE_MARK *end_include_source_mark
-            = new_source_mark(input_source_mark->type);
-          end_include_source_mark->counter = input_source_mark->counter;
-          if (input_source_mark->line)
-            end_include_source_mark->line = strdup(input_source_mark->line);
-          if (input_source_mark->type == SM_type_include
-              || input_source_mark->type == SM_type_macro_expansion
-              || input_source_mark->type == SM_type_value_expansion)
-            end_include_source_mark->status = SM_status_end;
+          SOURCE_MARK *end_include_source_mark;
+          if (input_source_mark->type == SM_type_delcomment)
+            end_include_source_mark = input_source_mark;
+          else
+            {
+              end_include_source_mark
+                = new_source_mark(input_source_mark->type);
+              end_include_source_mark->counter = input_source_mark->counter;
+              end_include_source_mark->status = SM_status_end;
+            }
           register_source_mark(current, end_include_source_mark);
         }
 
diff --git a/tp/t/results/conditionals/empty_set_in_ifset.pl 
b/tp/t/results/conditionals/empty_set_in_ifset.pl
index 258431e46c..cd59cfc3a8 100644
--- a/tp/t/results/conditionals/empty_set_in_ifset.pl
+++ b/tp/t/results/conditionals/empty_set_in_ifset.pl
@@ -58,7 +58,6 @@ $result_trees{'empty_set_in_ifset'} = {
                 },
                 {
                   'counter' => 1,
-                  'line' => '',
                   'position' => 13,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
diff --git a/tp/t/results/include/value_expansion_in_include.pl 
b/tp/t/results/include/value_expansion_in_include.pl
index d8e64409a4..417330d7c2 100644
--- a/tp/t/results/include/value_expansion_in_include.pl
+++ b/tp/t/results/include/value_expansion_in_include.pl
@@ -171,7 +171,6 @@ $result_trees{'value_expansion_in_include'} = {
                             'source_marks' => [
                               {
                                 'counter' => 1,
-                                'line' => 'incl-incl.txi',
                                 'position' => 13,
                                 'sourcemark_type' => 'value_expansion',
                                 'status' => 'end'
@@ -282,7 +281,6 @@ $result_trees{'value_expansion_in_include'} = {
                   'source_marks' => [
                     {
                       'counter' => 2,
-                      'line' => 'incl-incl.txi',
                       'position' => 13,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -357,7 +355,6 @@ $result_trees{'value_expansion_in_include'} = {
                             'source_marks' => [
                               {
                                 'counter' => 3,
-                                'line' => 'incl-incl.tx',
                                 'position' => 12,
                                 'sourcemark_type' => 'value_expansion',
                                 'status' => 'end'
@@ -468,7 +465,6 @@ $result_trees{'value_expansion_in_include'} = {
                   'source_marks' => [
                     {
                       'counter' => 4,
-                      'line' => 'incl-incl.tx',
                       'position' => 12,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -558,7 +554,6 @@ $result_trees{'value_expansion_in_include'} = {
                               },
                               {
                                 'counter' => 5,
-                                'line' => 'ncl-incl.tx',
                                 'position' => 12,
                                 'sourcemark_type' => 'value_expansion',
                                 'status' => 'end'
@@ -667,7 +662,6 @@ $result_trees{'value_expansion_in_include'} = {
                     },
                     {
                       'counter' => 6,
-                      'line' => 'ncl-incl.tx',
                       'position' => 12,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
diff --git a/tp/t/results/macro/bib_example.pl 
b/tp/t/results/macro/bib_example.pl
index 4ba24daa96..da616af443 100644
--- a/tp/t/results/macro/bib_example.pl
+++ b/tp/t/results/macro/bib_example.pl
@@ -3688,7 +3688,6 @@ $result_trees{'bib_example'} = {
                         },
                         {
                           'counter' => 1,
-                          'line' => 'References',
                           'position' => 10,
                           'sourcemark_type' => 'value_expansion',
                           'status' => 'end'
@@ -3989,7 +3988,6 @@ $result_trees{'bib_example'} = {
                       'source_marks' => [
                         {
                           'counter' => 2,
-                          'line' => 'References',
                           'position' => 10,
                           'sourcemark_type' => 'value_expansion',
                           'status' => 'end'
@@ -4030,7 +4028,6 @@ $result_trees{'bib_example'} = {
                           'source_marks' => [
                             {
                               'counter' => 3,
-                              'line' => 'References',
                               'position' => 10,
                               'sourcemark_type' => 'value_expansion',
                               'status' => 'end'
diff --git a/tp/t/results/value/comment_on_set_line.pl 
b/tp/t/results/value/comment_on_set_line.pl
index d35cdc9b93..e0026ed83a 100644
--- a/tp/t/results/value/comment_on_set_line.pl
+++ b/tp/t/results/value/comment_on_set_line.pl
@@ -127,7 +127,6 @@ $result_trees{'comment_on_set_line'} = {
                 },
                 {
                   'counter' => 1,
-                  'line' => '',
                   'position' => 1,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
@@ -149,7 +148,6 @@ $result_trees{'comment_on_set_line'} = {
                 },
                 {
                   'counter' => 2,
-                  'line' => '',
                   'position' => 5,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
@@ -171,7 +169,6 @@ $result_trees{'comment_on_set_line'} = {
                 },
                 {
                   'counter' => 3,
-                  'line' => 'g',
                   'position' => 10,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
@@ -193,7 +190,6 @@ $result_trees{'comment_on_set_line'} = {
                 },
                 {
                   'counter' => 4,
-                  'line' => 'a vv',
                   'position' => 18,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
diff --git a/tp/t/results/value/empty_set.pl b/tp/t/results/value/empty_set.pl
index 6347a53b41..f549a0d059 100644
--- a/tp/t/results/value/empty_set.pl
+++ b/tp/t/results/value/empty_set.pl
@@ -58,7 +58,6 @@ $result_trees{'empty_set'} = {
                 },
                 {
                   'counter' => 1,
-                  'line' => '',
                   'position' => 2,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
diff --git a/tp/t/results/value/empty_value_in_line.pl 
b/tp/t/results/value/empty_value_in_line.pl
index f6fd175f05..484be1d2e0 100644
--- a/tp/t/results/value/empty_value_in_line.pl
+++ b/tp/t/results/value/empty_value_in_line.pl
@@ -64,7 +64,6 @@ $result_trees{'empty_value_in_line'} = {
             },
             {
               'counter' => 1,
-              'line' => '',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             }
diff --git a/tp/t/results/value/ignored_value_definition.pl 
b/tp/t/results/value/ignored_value_definition.pl
index 02004f93b5..571f488079 100644
--- a/tp/t/results/value/ignored_value_definition.pl
+++ b/tp/t/results/value/ignored_value_definition.pl
@@ -98,7 +98,6 @@ $result_trees{'ignored_value_definition'} = {
               'source_marks' => [
                 {
                   'counter' => 1,
-                  'line' => 'outside',
                   'position' => 7,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
diff --git a/tp/t/results/value/not_only_characters.pl 
b/tp/t/results/value/not_only_characters.pl
index 06fe88b0eb..7e00b8ec10 100644
--- a/tp/t/results/value/not_only_characters.pl
+++ b/tp/t/results/value/not_only_characters.pl
@@ -58,7 +58,6 @@ $result_trees{'not_only_characters'} = {
                 },
                 {
                   'counter' => 1,
-                  'line' => 'hh',
                   'position' => 6,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
diff --git a/tp/t/results/value/recursive_expansion_in_set.pl 
b/tp/t/results/value/recursive_expansion_in_set.pl
index 6b304ce714..1d07a26f55 100644
--- a/tp/t/results/value/recursive_expansion_in_set.pl
+++ b/tp/t/results/value/recursive_expansion_in_set.pl
@@ -1436,601 +1436,501 @@ $result_trees{'recursive_expansion_in_set'} = {
             },
             {
               'counter' => 100,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 99,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 98,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 97,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 96,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 95,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 94,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 93,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 92,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 91,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 90,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 89,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 88,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 87,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 86,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 85,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 84,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 83,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 82,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 81,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 80,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 79,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 78,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 77,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 76,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 75,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 74,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 73,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 72,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 71,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 70,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 69,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 68,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 67,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 66,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 65,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 64,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 63,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 62,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 61,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 60,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 59,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 58,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 57,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 56,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 55,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 54,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 53,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 52,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 51,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 50,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 49,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 48,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 47,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 46,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 45,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 44,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 43,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 42,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 41,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 40,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 39,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 38,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 37,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 36,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 35,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 34,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 33,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 32,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 31,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 30,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 29,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 28,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 27,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 26,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 25,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 24,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 23,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 22,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 21,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 20,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 19,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 18,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 17,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 16,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 15,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 14,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 13,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 12,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 11,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 10,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 9,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 8,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 7,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 6,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 5,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 4,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 3,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 2,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             },
             {
               'counter' => 1,
-              'line' => '@value{V}',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             }
diff --git a/tp/t/results/value/set_flag_command_equivalent.pl 
b/tp/t/results/value/set_flag_command_equivalent.pl
index 67fe6baf89..4b20330db3 100644
--- a/tp/t/results/value/set_flag_command_equivalent.pl
+++ b/tp/t/results/value/set_flag_command_equivalent.pl
@@ -62,7 +62,6 @@ $result_trees{'set_flag_command_equivalent'} = {
             },
             {
               'counter' => 1,
-              'line' => '',
               'position' => 1,
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
diff --git a/tp/t/results/value/set_form_feed.pl 
b/tp/t/results/value/set_form_feed.pl
index 2131eba275..0f3ca97896 100644
--- a/tp/t/results/value/set_form_feed.pl
+++ b/tp/t/results/value/set_form_feed.pl
@@ -107,7 +107,6 @@ $result_trees{'set_form_feed'} = {
                         },
                         {
                           'counter' => 1,
-                          'line' => 'a\\a\\f\\\\',
                           'position' => 7,
                           'sourcemark_type' => 'value_expansion',
                           'status' => 'end'
@@ -129,7 +128,6 @@ $result_trees{'set_form_feed'} = {
                         },
                         {
                           'counter' => 2,
-                          'line' => '',
                           'position' => 9,
                           'sourcemark_type' => 'value_expansion',
                           'status' => 'end'
@@ -151,7 +149,6 @@ $result_trees{'set_form_feed'} = {
                         },
                         {
                           'counter' => 3,
-                          'line' => '',
                           'position' => 11,
                           'sourcemark_type' => 'value_expansion',
                           'status' => 'end'
diff --git a/tp/t/results/value/simple.pl b/tp/t/results/value/simple.pl
index dca0de9770..1a902989cc 100644
--- a/tp/t/results/value/simple.pl
+++ b/tp/t/results/value/simple.pl
@@ -79,7 +79,6 @@ $result_trees{'simple'} = {
               'source_marks' => [
                 {
                   'counter' => 1,
-                  'line' => 'the value @b{b}',
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
                 }
diff --git a/tp/t/results/value/spaces_before_value.pl 
b/tp/t/results/value/spaces_before_value.pl
index f403437142..08a7bf8707 100644
--- a/tp/t/results/value/spaces_before_value.pl
+++ b/tp/t/results/value/spaces_before_value.pl
@@ -60,7 +60,6 @@ $result_trees{'spaces_before_value'} = {
               'source_marks' => [
                 {
                   'counter' => 1,
-                  'line' => 'val',
                   'position' => 3,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
diff --git a/tp/t/results/value/value_after_accent.pl 
b/tp/t/results/value/value_after_accent.pl
index 6f5435cb30..2060ce0961 100644
--- a/tp/t/results/value/value_after_accent.pl
+++ b/tp/t/results/value/value_after_accent.pl
@@ -73,7 +73,6 @@ $result_trees{'value_after_accent'} = {
               'source_marks' => [
                 {
                   'counter' => 1,
-                  'line' => 'a',
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
                 }
@@ -119,7 +118,6 @@ $result_trees{'value_after_accent'} = {
               'source_marks' => [
                 {
                   'counter' => 2,
-                  'line' => 'a',
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
                 }
diff --git a/tp/t/results/value/value_after_brace_command.pl 
b/tp/t/results/value/value_after_brace_command.pl
index f489c173f9..30e06fcbb1 100644
--- a/tp/t/results/value/value_after_brace_command.pl
+++ b/tp/t/results/value/value_after_brace_command.pl
@@ -106,7 +106,6 @@ $result_trees{'value_after_brace_command'} = {
               'source_marks' => [
                 {
                   'counter' => 1,
-                  'line' => '{a}',
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
                 }
@@ -150,7 +149,6 @@ $result_trees{'value_after_brace_command'} = {
               'source_marks' => [
                 {
                   'counter' => 2,
-                  'line' => '@unknown',
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
                 }
@@ -204,7 +202,6 @@ $result_trees{'value_after_brace_command'} = {
               'source_marks' => [
                 {
                   'counter' => 3,
-                  'line' => '{a}',
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
                 }
@@ -248,7 +245,6 @@ $result_trees{'value_after_brace_command'} = {
               'source_marks' => [
                 {
                   'counter' => 4,
-                  'line' => '@unknown',
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
                 }
@@ -302,7 +298,6 @@ $result_trees{'value_after_brace_command'} = {
               'source_marks' => [
                 {
                   'counter' => 5,
-                  'line' => '{a}',
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
                 }
@@ -346,7 +341,6 @@ $result_trees{'value_after_brace_command'} = {
               'source_marks' => [
                 {
                   'counter' => 6,
-                  'line' => '@unknown',
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
                 }
diff --git a/tp/t/results/value/value_in_index_commands.pl 
b/tp/t/results/value/value_in_index_commands.pl
index f7e491092f..6bfd640d0f 100644
--- a/tp/t/results/value/value_in_index_commands.pl
+++ b/tp/t/results/value/value_in_index_commands.pl
@@ -91,7 +91,6 @@ $result_trees{'value_in_index_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 1,
-                      'line' => 'cp',
                       'position' => 2,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -113,7 +112,6 @@ $result_trees{'value_in_index_commands'} = {
                     },
                     {
                       'counter' => 2,
-                      'line' => 'fn',
                       'position' => 5,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -211,7 +209,6 @@ $result_trees{'value_in_index_commands'} = {
               'source_marks' => [
                 {
                   'counter' => 3,
-                  'line' => '@syncodeindex',
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
                 }
@@ -272,7 +269,6 @@ $result_trees{'value_in_index_commands'} = {
                       'source_marks' => [
                         {
                           'counter' => 4,
-                          'line' => 'truc',
                           'position' => 4,
                           'sourcemark_type' => 'value_expansion',
                           'status' => 'end'
@@ -400,7 +396,6 @@ $result_trees{'value_in_index_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 5,
-                      'line' => 'codeidx',
                       'position' => 7,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -566,7 +561,6 @@ $result_trees{'value_in_index_commands'} = {
               'source_marks' => [
                 {
                   'counter' => 6,
-                  'line' => '@trucindex',
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
                 }
@@ -670,7 +664,6 @@ $result_trees{'value_in_index_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 7,
-                      'line' => 'a @var{index entry} t@\'e @^{@dotless{i}}',
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
                     }
@@ -743,7 +736,6 @@ $result_trees{'value_in_index_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 8,
-                      'line' => 'truc',
                       'position' => 4,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -828,7 +820,6 @@ $result_trees{'value_in_index_commands'} = {
                     },
                     {
                       'counter' => 9,
-                      'line' => 'codeidx',
                       'position' => 14,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -895,7 +886,6 @@ $result_trees{'value_in_index_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 10,
-                      'line' => 'truc',
                       'position' => 4,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -969,7 +959,6 @@ $result_trees{'value_in_index_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 11,
-                      'line' => 'cp',
                       'position' => 2,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
diff --git a/tp/t/results/value/value_in_invalid_documentencoding.pl 
b/tp/t/results/value/value_in_invalid_documentencoding.pl
index 249720557a..bb095130de 100644
--- a/tp/t/results/value/value_in_invalid_documentencoding.pl
+++ b/tp/t/results/value/value_in_invalid_documentencoding.pl
@@ -40,7 +40,6 @@ $result_trees{'value_in_invalid_documentencoding'} = {
                   'source_marks' => [
                     {
                       'counter' => 1,
-                      'line' => 'bad',
                       'position' => 3,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
diff --git a/tp/t/results/value/value_in_misc_commands.pl 
b/tp/t/results/value/value_in_misc_commands.pl
index 437f8a827f..cf44472c3e 100644
--- a/tp/t/results/value/value_in_misc_commands.pl
+++ b/tp/t/results/value/value_in_misc_commands.pl
@@ -106,7 +106,6 @@ $result_trees{'value_in_misc_commands'} = {
                 },
                 {
                   'counter' => 1,
-                  'line' => 'atext',
                   'position' => 9,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
@@ -149,7 +148,6 @@ $result_trees{'value_in_misc_commands'} = {
                     },
                     {
                       'counter' => 2,
-                      'line' => 'atext',
                       'position' => 19,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -288,7 +286,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 3,
-                      'line' => '200mm,150mm',
                       'position' => 11,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -389,7 +386,6 @@ $result_trees{'value_in_misc_commands'} = {
                     },
                     {
                       'counter' => 5,
-                      'line' => 'atext',
                       'position' => 32,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -442,7 +438,6 @@ $result_trees{'value_in_misc_commands'} = {
                     },
                     {
                       'counter' => 6,
-                      'line' => 'atext',
                       'position' => 23,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -495,7 +490,6 @@ $result_trees{'value_in_misc_commands'} = {
                     },
                     {
                       'counter' => 7,
-                      'line' => 'atext',
                       'position' => 36,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -566,7 +560,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 8,
-                      'line' => '0.1',
                       'position' => 3,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -862,7 +855,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 11,
-                      'line' => 'phi',
                       'position' => 3,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -1045,7 +1037,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 12,
-                      'line' => '@strong',
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
                     }
@@ -1079,7 +1070,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 13,
-                      'line' => 'strong',
                       'position' => 6,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -1101,7 +1091,6 @@ $result_trees{'value_in_misc_commands'} = {
                     },
                     {
                       'counter' => 14,
-                      'line' => 'strong',
                       'position' => 14,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -1196,7 +1185,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 15,
-                      'line' => '@strong',
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
                     }
@@ -1290,7 +1278,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 16,
-                      'line' => 'code',
                       'position' => 4,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -1598,7 +1585,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 17,
-                      'line' => 'asis',
                       'position' => 4,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -1658,7 +1644,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 18,
-                      'line' => '0',
                       'position' => 1,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -1718,7 +1703,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 19,
-                      'line' => 'none',
                       'position' => 4,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -1778,7 +1762,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 20,
-                      'line' => '4',
                       'position' => 1,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -1838,7 +1821,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 21,
-                      'line' => 'none',
                       'position' => 4,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -1898,7 +1880,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 22,
-                      'line' => '6',
                       'position' => 1,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -2009,7 +1990,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 23,
-                      'line' => 'end',
                       'position' => 3,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -2069,7 +2049,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 24,
-                      'line' => 'separate',
                       'position' => 8,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -2157,7 +2136,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 25,
-                      'line' => 'ISO-8859-1',
                       'position' => 10,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -2278,7 +2256,6 @@ $result_trees{'value_in_misc_commands'} = {
                       'source_marks' => [
                         {
                           'counter' => 26,
-                          'line' => 'en',
                           'position' => 2,
                           'sourcemark_type' => 'value_expansion',
                           'status' => 'end'
@@ -2385,7 +2362,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 27,
-                      'line' => '@documentlanguage',
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
                     }
@@ -2465,7 +2441,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 28,
-                      'line' => 'on',
                       'position' => 2,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -2525,7 +2500,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 29,
-                      'line' => 'off',
                       'position' => 3,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -2629,7 +2603,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 30,
-                      'line' => '10',
                       'position' => 2,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -2772,7 +2745,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 31,
-                      'line' => 'false',
                       'position' => 5,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -2837,7 +2809,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 32,
-                      'line' => 'true',
                       'position' => 4,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
@@ -3040,7 +3011,6 @@ $result_trees{'value_in_misc_commands'} = {
           'source_marks' => [
             {
               'counter' => 34,
-              'line' => '@noindent',
               'sourcemark_type' => 'value_expansion',
               'status' => 'end'
             }
@@ -3083,7 +3053,6 @@ $result_trees{'value_in_misc_commands'} = {
               'source_marks' => [
                 {
                   'counter' => 35,
-                  'line' => '@noindent',
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
                 }
@@ -3128,7 +3097,6 @@ $result_trees{'value_in_misc_commands'} = {
               'source_marks' => [
                 {
                   'counter' => 36,
-                  'line' => '@noindent',
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
                 }
@@ -3365,7 +3333,6 @@ $result_trees{'value_in_misc_commands'} = {
               'source_marks' => [
                 {
                   'counter' => 39,
-                  'line' => '@exdent',
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
                 }
@@ -3415,7 +3382,6 @@ $result_trees{'value_in_misc_commands'} = {
                   'source_marks' => [
                     {
                       'counter' => 40,
-                      'line' => '2',
                       'position' => 1,
                       'sourcemark_type' => 'value_expansion',
                       'status' => 'end'
diff --git a/tp/t/results/value/value_in_node.pl 
b/tp/t/results/value/value_in_node.pl
index 4fa0d359ad..c34b26383b 100644
--- a/tp/t/results/value/value_in_node.pl
+++ b/tp/t/results/value/value_in_node.pl
@@ -217,7 +217,6 @@ $result_trees{'value_in_node'} = {
                         },
                         {
                           'counter' => 1,
-                          'line' => 'Node 1',
                           'position' => 6,
                           'sourcemark_type' => 'value_expansion',
                           'status' => 'end'
@@ -332,7 +331,6 @@ $result_trees{'value_in_node'} = {
               'source_marks' => [
                 {
                   'counter' => 2,
-                  'line' => 'Node 1',
                   'position' => 6,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
@@ -525,7 +523,6 @@ $result_trees{'value_in_node'} = {
                         },
                         {
                           'counter' => 3,
-                          'line' => 'Section 1.1',
                           'position' => 11,
                           'sourcemark_type' => 'value_expansion',
                           'status' => 'end'
@@ -712,7 +709,6 @@ $result_trees{'value_in_node'} = {
                       'source_marks' => [
                         {
                           'counter' => 4,
-                          'line' => 'Node 1',
                           'position' => 6,
                           'sourcemark_type' => 'value_expansion',
                           'status' => 'end'
diff --git a/tp/t/results/value/value_node_directions.pl 
b/tp/t/results/value/value_node_directions.pl
index b00cb34d1f..de6b2ebbda 100644
--- a/tp/t/results/value/value_node_directions.pl
+++ b/tp/t/results/value/value_node_directions.pl
@@ -56,7 +56,6 @@ $result_trees{'value_node_directions'} = {
               'source_marks' => [
                 {
                   'counter' => 1,
-                  'line' => 'bar',
                   'position' => 3,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
@@ -197,7 +196,6 @@ $result_trees{'value_node_directions'} = {
                 },
                 {
                   'counter' => 2,
-                  'line' => 'bar',
                   'position' => 7,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
@@ -242,7 +240,6 @@ $result_trees{'value_node_directions'} = {
               'source_marks' => [
                 {
                   'counter' => 3,
-                  'line' => 'bar',
                   'position' => 3,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
@@ -280,7 +277,6 @@ $result_trees{'value_node_directions'} = {
               'source_marks' => [
                 {
                   'counter' => 4,
-                  'line' => 'bar',
                   'position' => 3,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
@@ -462,7 +458,6 @@ $result_trees{'value_node_directions'} = {
               'source_marks' => [
                 {
                   'counter' => 5,
-                  'line' => 'bar',
                   'position' => 3,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
diff --git a/tp/t/results/value/value_zero.pl b/tp/t/results/value/value_zero.pl
index c3e0a92bcc..3968c1ec7d 100644
--- a/tp/t/results/value/value_zero.pl
+++ b/tp/t/results/value/value_zero.pl
@@ -59,7 +59,6 @@ $result_trees{'value_zero'} = {
               'source_marks' => [
                 {
                   'counter' => 1,
-                  'line' => '0',
                   'position' => 1,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
diff --git a/tp/t/results/value_and_macro/comma_value_in_macro_arg.pl 
b/tp/t/results/value_and_macro/comma_value_in_macro_arg.pl
index c71bd3502f..9eafc73d4b 100644
--- a/tp/t/results/value_and_macro/comma_value_in_macro_arg.pl
+++ b/tp/t/results/value_and_macro/comma_value_in_macro_arg.pl
@@ -154,7 +154,6 @@ $result_trees{'comma_value_in_macro_arg'} = {
                         },
                         {
                           'counter' => 1,
-                          'line' => ',',
                           'position' => 6,
                           'sourcemark_type' => 'value_expansion',
                           'status' => 'end'
diff --git a/tp/t/results/value_and_macro/macro_in_value.pl 
b/tp/t/results/value_and_macro/macro_in_value.pl
index 4955f5db5a..f988c7ca6f 100644
--- a/tp/t/results/value_and_macro/macro_in_value.pl
+++ b/tp/t/results/value_and_macro/macro_in_value.pl
@@ -164,7 +164,6 @@ $result_trees{'macro_in_value'} = {
                 },
                 {
                   'counter' => 1,
-                  'line' => '@ab',
                   'position' => 1,
                   'sourcemark_type' => 'value_expansion',
                   'status' => 'end'
diff --git a/tp/t/results/value_and_macro/value_in_macro_body.pl 
b/tp/t/results/value_and_macro/value_in_macro_body.pl
index 115384c70d..1d81a99f0e 100644
--- a/tp/t/results/value_and_macro/value_in_macro_body.pl
+++ b/tp/t/results/value_and_macro/value_in_macro_body.pl
@@ -150,7 +150,6 @@ $result_trees{'value_in_macro_body'} = {
                         },
                         {
                           'counter' => 1,
-                          'line' => '\\arg\\',
                           'position' => 6,
                           'sourcemark_type' => 'value_expansion',
                           'status' => 'end'



reply via email to

[Prev in Thread] Current Thread [Next in Thread]