[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * tp/Texinfo/XS/parsetexi/Parsetexi.pm (parse_tex
From: |
Gavin D. Smith |
Subject: |
branch master updated: * tp/Texinfo/XS/parsetexi/Parsetexi.pm (parse_texi_line): Pass false $no_build argument in call to _get_parser_info as otherwise the $no_store argument does nothing. |
Date: |
Fri, 05 Apr 2024 13:39:00 -0400 |
This is an automated email from the git hooks/post-receive script.
gavin pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new b6c08fbc75 * tp/Texinfo/XS/parsetexi/Parsetexi.pm (parse_texi_line):
Pass false $no_build argument in call to _get_parser_info as otherwise the
$no_store argument does nothing.
b6c08fbc75 is described below
commit b6c08fbc75ddb1bad7c38839f336dc15a076b81c
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Fri Apr 5 18:38:49 2024 +0100
* tp/Texinfo/XS/parsetexi/Parsetexi.pm (parse_texi_line):
Pass false $no_build argument in call to _get_parser_info as
otherwise the $no_store argument does nothing.
---
ChangeLog | 6 ++++++
tp/Texinfo/XS/parsetexi/Parsetexi.pm | 2 +-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
index 2a7cb3ac42..f2e70a6025 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2024-04-05 Gavin Smith <gavinsmith0123@gmail.com>
+
+ * tp/Texinfo/XS/parsetexi/Parsetexi.pm (parse_texi_line):
+ Pass false $no_build argument in call to _get_parser_info as
+ otherwise the $no_store argument does nothing.
+
2024-04-05 Gavin Smith <gavinsmith0123@gmail.com>
Remove optional $no_build argument.
diff --git a/tp/Texinfo/XS/parsetexi/Parsetexi.pm
b/tp/Texinfo/XS/parsetexi/Parsetexi.pm
index 3fe974628a..b269839bd8 100644
--- a/tp/Texinfo/XS/parsetexi/Parsetexi.pm
+++ b/tp/Texinfo/XS/parsetexi/Parsetexi.pm
@@ -318,7 +318,7 @@ sub parse_texi_line($$;$$)
my $utf8_bytes = Encode::encode('utf-8', $text);
my $document_descriptor = parse_string($utf8_bytes, $line_nr);
- my $document = _get_parser_info($self, $document_descriptor, 1, $no_store);
+ my $document = _get_parser_info($self, $document_descriptor, 0, $no_store);
return $document->tree();
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * tp/Texinfo/XS/parsetexi/Parsetexi.pm (parse_texi_line): Pass false $no_build argument in call to _get_parser_info as otherwise the $no_store argument does nothing.,
Gavin D. Smith <=