[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
From: |
Gavin D. Smith |
Date: |
Sat, 18 Feb 2023 07:25:38 -0500 (EST) |
branch: master
commit d7cdade0ac460bc408a5b61ad1be93d312fd4ec7
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Sat Feb 18 11:27:54 2023 +0000
* tp/Texinfo/Convert/LaTeX.pm (_convert): Do not treat @defline
as "unhandled".
---
ChangeLog | 5 +++++
tp/Texinfo/Convert/LaTeX.pm | 3 ++-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
index 73a0c31585..a8229202c6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2023-02-18 Gavin Smith <gavinsmith0123@gmail.com>
+
+ * tp/Texinfo/Convert/LaTeX.pm (_convert): Do not treat @defline
+ as "unhandled".
+
2023-02-18 Patrice Dumas <pertusus@free.fr>
* tp/Texinfo/XS/parsetexi/api.c (build_single_index_data),
diff --git a/tp/Texinfo/Convert/LaTeX.pm b/tp/Texinfo/Convert/LaTeX.pm
index 6923eaa508..cba7cb0529 100644
--- a/tp/Texinfo/Convert/LaTeX.pm
+++ b/tp/Texinfo/Convert/LaTeX.pm
@@ -4008,7 +4008,8 @@ sub _convert($$)
# are not considered as index entries either so they have a specific
# condition
and !($def_commands{$cmdname}
- and $cmdname =~ /x$/)) {
+ and ($cmdname eq 'defline'
+ or $cmdname =~ /x$/))) {
warn "Unhandled $cmdname\n";
#$result .= "!!!!!!!!! Unhandled $cmdname !!!!!!!!!\n";
}