[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[6606] catcode_special=false for make_openout_test
From: |
Gavin D. Smith |
Subject: |
[6606] catcode_special=false for make_openout_test |
Date: |
Tue, 08 Sep 2015 23:08:56 +0000 |
Revision: 6606
http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=6606
Author: gavin
Date: 2015-09-08 23:08:55 +0000 (Tue, 08 Sep 2015)
Log Message:
-----------
catcode_special=false for make_openout_test
Modified Paths:
--------------
trunk/ChangeLog
trunk/util/texi2dvi
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2015-09-08 22:54:13 UTC (rev 6605)
+++ trunk/ChangeLog 2015-09-08 23:08:55 UTC (rev 6606)
@@ -1,5 +1,14 @@
2015-09-08 Gavin Smith <address@hidden>
+ * util/texi2dvi (make_openout_test): Add a comment.
+
+2015-09-08 Vincent Bela\xEFche <address@hidden>
+
+ * util/texi2dvi (make_openout_test): Save and restore
+ catcode_special, and use catcode_special=false for make_tex_cmd.
+
+2015-09-08 Gavin Smith <address@hidden>
+
* util/texi2dvi (make_openout_test): Put "./" in front of path
of test file. Supply /dev/null as input of TeX engine.
Modified: trunk/util/texi2dvi
===================================================================
--- trunk/util/texi2dvi 2015-09-08 22:54:13 UTC (rev 6605)
+++ trunk/util/texi2dvi 2015-09-08 23:08:55 UTC (rev 6606)
@@ -1436,6 +1436,8 @@
run_tex_suite
}
+# make_openout_test FLAGS EXTENSION
+# - Run TeX with an input file that performs an \openout. Pass FLAGS to TeX.
#
make_openout_test ()
{
@@ -1449,7 +1451,10 @@
# \bye doesn't work for LaTeX, but it will cause latex
# to exit with an input error.
recorder_option_maybe="$1"
- make_tex_cmd
+ save_catcode_special=$catcode_special
+ catcode_special=false
+ make_tex_cmd
+ catcode_special=$save_catcode_special
tex_cmd="$tex_cmd ./openout.tex"
# ./ in case . isn't in path
verbose "$0: running $tex_cmd ..."
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [6606] catcode_special=false for make_openout_test,
Gavin D. Smith <=