texinfo-commits
[Top][All Lists]
Advanced

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

branch master updated: * doc/texinfo.texi (\defunargs): Wrap in a group


From: Gavin D. Smith
Subject: branch master updated: * doc/texinfo.texi (\defunargs): Wrap in a group to limit @var redefinition.
Date: Thu, 29 Dec 2022 16:58:17 -0500

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 d9ca595338 * doc/texinfo.texi (\defunargs): Wrap in a group to limit 
@var redefinition.
d9ca595338 is described below

commit d9ca5953381462bb446e3a1d23576e28cfaf7c23
Author: Gavin Smith <gavinsmith0123@gmail.com>
AuthorDate: Thu Dec 29 21:58:05 2022 +0000

    * doc/texinfo.texi (\defunargs): Wrap in a group to limit
    @var redefinition.
---
 ChangeLog       |  5 +++++
 doc/texinfo.tex | 12 +++++++-----
 2 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 68f2558517..1551ecc600 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2022-12-29  Gavin Smith  <gavinsmith0123@gmail.com>
+
+       * doc/texinfo.texi (\defunargs): Wrap in a group to limit
+       @var redefinition.
+
 2022-12-29  Gavin Smith  <gavinsmith0123@gmail.com>
 
        * tp/Makefile.am (dist-hook): Do not distribute architecture-
diff --git a/doc/texinfo.tex b/doc/texinfo.tex
index d062bcdcdf..901600f02a 100644
--- a/doc/texinfo.tex
+++ b/doc/texinfo.tex
@@ -3,7 +3,7 @@
 % Load plain if necessary, i.e., if running under initex.
 \expandafter\ifx\csname fmtname\endcsname\relax\input plain\fi
 %
-\def\texinfoversion{2022-12-28.11}
+\def\texinfoversion{2022-12-29.21}
 %
 % Copyright 1985, 1986, 1988, 1990-2022 Free Software Foundation, Inc.
 %
@@ -7817,10 +7817,12 @@ might help (with 'rm \jobname.?? \jobname.??s')%
 
 % Print arguments.  Use slanted for @def*, typewriter for @deftype*.
 \def\defunargs#1{%
-  \df \ifdoingtypefn \tt \else \sl \fi
-  \ifflagclear{txicodevaristt}{}%
-    {\def\var##1{{\setregularquotes \ttsl ##1}}}%
-  #1%
+  \bgroup
+    \df \ifdoingtypefn \tt \else \sl \fi
+    \ifflagclear{txicodevaristt}{}%
+       {\def\var##1{{\setregularquotes \ttsl ##1}}}%
+    #1%
+  \egroup
 }
 
 % We want ()&[] to print specially on the defun line.



reply via email to

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