texinfo-commits
[Top][All Lists]
Advanced

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

[8032] parsetexi avoid discarding line after recursive macro invocation


From: gavinsmith0123
Subject: [8032] parsetexi avoid discarding line after recursive macro invocation
Date: Thu, 9 Aug 2018 14:12:03 -0400 (EDT)

Revision: 8032
          http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=8032
Author:   gavin
Date:     2018-08-09 14:12:03 -0400 (Thu, 09 Aug 2018)
Log Message:
-----------
parsetexi avoid discarding line after recursive macro invocation

Modified Paths:
--------------
    trunk/tp/parsetexi/macro.c

Modified: trunk/tp/parsetexi/macro.c
===================================================================
--- trunk/tp/parsetexi/macro.c  2018-08-09 15:44:40 UTC (rev 8031)
+++ trunk/tp/parsetexi/macro.c  2018-08-09 18:12:03 UTC (rev 8032)
@@ -562,7 +562,8 @@
         {
           line_error ("recursive call of macro %s is not allowed; "
                       "use @rmacro if needed", command_name(cmd));
-          goto funexit;
+          expanded.text[0] = '\0';
+          expanded.end = 0;
         }
     }
 




reply via email to

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