[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
From: |
Gavin D. Smith |
Date: |
Sat, 4 Jun 2022 10:23:08 -0400 (EDT) |
branch: master
commit e6c15fc3f8b1aba85da6a58e1491960c596ddd84
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Sat Jun 4 15:22:59 2022 +0100
* tp/Texinfo/Convert/HTML.pm (_convert_text):
Call _default_format_protect_text without method call syntax.
---
ChangeLog | 5 +++++
tp/Texinfo/Convert/HTML.pm | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
index 52a4c5df5e..c82d33fda4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2022-06-04 Gavin Smith <gavinsmith0123@gmail.com>
+
+ * tp/Texinfo/Convert/HTML.pm (_convert_text):
+ Call _default_format_protect_text without method call syntax.
+
2022-06-04 Gavin Smith <gavinsmith0123@gmail.com>
texi2any --html performance improvements
diff --git a/tp/Texinfo/Convert/HTML.pm b/tp/Texinfo/Convert/HTML.pm
index 5619e91c59..6872e1f277 100644
--- a/tp/Texinfo/Convert/HTML.pm
+++ b/tp/Texinfo/Convert/HTML.pm
@@ -5452,7 +5452,7 @@ sub _convert_text($$$)
$text = uc($text) if $formatting_context->{'upper_case'};
#$text = uc($text) if ($self->in_upper_case());
- $text = $self->_default_format_protect_text($text);
+ $text = _default_format_protect_text($self, $text);
#$text = &{$self->formatting_function('format_protect_text')}($self, $text);
if ($self->{'conf'}->{'ENABLE_ENCODING'}