[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[5595] @documentlanguage with or without _
From: |
karl |
Subject: |
[5595] @documentlanguage with or without _ |
Date: |
Wed, 21 May 2014 22:53:09 +0000 |
Revision: 5595
http://svn.sv.gnu.org/viewvc/?view=rev&root=texinfo&revision=5595
Author: karl
Date: 2014-05-21 22:53:08 +0000 (Wed, 21 May 2014)
Log Message:
-----------
@documentlanguage with or without _
Modified Paths:
--------------
trunk/ChangeLog
trunk/doc/texinfo.tex
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2014-05-21 22:33:50 UTC (rev 5594)
+++ trunk/ChangeLog 2014-05-21 22:53:08 UTC (rev 5595)
@@ -1,3 +1,11 @@
+2014-05-21 Karl Berry <address@hidden>
+
+ * doc/texinfo.tex (\documentlanguage): \let_ inside \tex,
+ no need for extra group it seems; and call
+ \documentlanguagetrywithoutunderscore without braces,
+ so we get the expected parsing-off of the _ (or not).
+ Report from German Arias, help-texinfo 18 May 2014 20:26:02.
+
2014-05-21 Gavin Smith <address@hidden>
* info/echo-area.c (ea_possible_completions): Use text_buffer_*
@@ -455,6 +463,9 @@
2014-05-07 Karl Berry <address@hidden>
+ * Pod-Simple-Texinfo/lib/Pod/Simple/Texinfo.pm: unintended test
+ commit, tweak doc
+
* configure.ac (AC_INIT): go to 5.2dev, to reduce confusion
with released versions.
Modified: trunk/doc/texinfo.tex
===================================================================
--- trunk/doc/texinfo.tex 2014-05-21 22:33:50 UTC (rev 5594)
+++ trunk/doc/texinfo.tex 2014-05-21 22:53:08 UTC (rev 5595)
@@ -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{2014-05-05.10}
+\def\texinfoversion{2014-05-20.16}
%
% Copyright 1985, 1986, 1988, 1990, 1991, 1992, 1993, 1994, 1995,
% 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
@@ -8856,20 +8856,20 @@
{
\catcode`\_ = \active
\globaldefs=1
-\parseargdef\documentlanguage{\begingroup
- \let_=\normalunderscore % normal _ character for filenames
+\parseargdef\documentlanguage{%
\tex % read txi-??.tex file in plain TeX.
% Read the file by the name they passed if it exists.
+ \let_ = \normalunderscore % normal _ character for filename test
\openin 1 txi-#1.tex
\ifeof 1
- \documentlanguagetrywithoutunderscore{#1_\finish}%
+ \documentlanguagetrywithoutunderscore #1_\finish
\else
\globaldefs = 1 % everything in the txi-LL files needs to persist
\input txi-#1.tex
\fi
\closein 1
\endgroup % end raw TeX
-\endgroup}
+}
%
% If they passed de_DE, and txi-de_DE.tex doesn't exist,
% try txi-de.tex.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [5595] @documentlanguage with or without _,
karl <=