[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * doc/refcard/txivarcheck: Search more of the man
From: |
Gavin D. Smith |
Subject: |
branch master updated: * doc/refcard/txivarcheck: Search more of the manual for customization variables. |
Date: |
Tue, 02 Apr 2024 15:13:05 -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 4d4dac9ba6 * doc/refcard/txivarcheck: Search more of the manual for
customization variables.
4d4dac9ba6 is described below
commit 4d4dac9ba6da5527eb2c2707266135a8537b7abe
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Tue Apr 2 20:12:53 2024 +0100
* doc/refcard/txivarcheck: Search more of the manual for
customization variables.
---
ChangeLog | 5 +++++
doc/refcard/txivarcheck | 12 ++++++++++--
2 files changed, 15 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 26de1bed5a..664e671183 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-04-02 Gavin Smith <gavinsmith0123@gmail.com>
+
+ * doc/refcard/txivarcheck: Search more of the manual for
+ customization variables.
+
2024-04-02 Patrice Dumas <pertusus@free.fr>
* doc/texinfo.texi (File Names and Links Customization for HTML):
diff --git a/doc/refcard/txivarcheck b/doc/refcard/txivarcheck
index 799cccfa17..dd6eb139d9 100755
--- a/doc/refcard/txivarcheck
+++ b/doc/refcard/txivarcheck
@@ -108,7 +108,7 @@ sub read_refman {
while (<FILE>) {
if (/^\@node Customization Variables for \@\@/) {
- # in this node we have a bare of bare @-commands which have cust.vars.
+ # in this node we have a list of @-commands which have cust.vars.
while (<FILE>) {
last if /^\@example/;
}
@@ -124,8 +124,16 @@ sub read_refman {
next;
}
+ if (/^\@node Internationalization of Document Strings/) {
+ # Skip to next node
+ while (<FILE>) {
+ last if /^\@section HTML Output Customization/;
+ }
+ }
+
+
# Stop looking for cust.var names after those nodes are done.
- last if /^\@node Internationalization of Document Strings/;
+ last if /^\@node Command Syntax/;
# Otherwise, we're looking at a line in one of the cust.var
# documentation nodes.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * doc/refcard/txivarcheck: Search more of the manual for customization variables.,
Gavin D. Smith <=