texinfo-commits
[Top][All Lists]
Advanced

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

texinfo update (Fri Jun 2 18:22:01 EDT 2006)


From: Karl Berry
Subject: texinfo update (Fri Jun 2 18:22:01 EDT 2006)
Date: Fri, 02 Jun 2006 18:22:03 -0400

Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.602
retrieving revision 1.603
diff -u -r1.602 -r1.603
--- ChangeLog   2 Jun 2006 00:11:26 -0000       1.602
+++ ChangeLog   2 Jun 2006 22:03:55 -0000       1.603
@@ -1,3 +1,8 @@
+2006-06-02  Karl Berry  <address@hidden>
+
+       * util/texi2dvi (--src-specials): new option,
+       requested by Charlie Zender.
+
 2006-06-01  Karl Berry  <address@hidden>
 
        * doc/texinfo.tex (\thischapternum): new macro for
Index: NEWS
===================================================================
RCS file: /sources/texinfo/texinfo/NEWS,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- NEWS        2 Jun 2006 00:11:25 -0000       1.125
+++ NEWS        2 Jun 2006 22:03:55 -0000       1.126
@@ -1,4 +1,4 @@
-$Id: NEWS,v 1.125 2006/06/02 00:11:25 karl Exp $
+$Id: NEWS,v 1.126 2006/06/02 22:03:55 karl Exp $
 This NEWS file records noteworthy changes, very tersely.
 See the manual for detailed information.
 
@@ -45,6 +45,7 @@
     while preserving auxiliary files.
   . new support for AUC-TeX: texi2dvi (weakly) supports arguments a la
     TeX such as `\nonstopmode\input{file.tex}'.
+  . new option --src-specials, passed to TeX.
   . pdftexi2dvi is a new wrapper to `texi2dvi --pdf', equal to texi2pdf,
     for sake of AUC-TeX which prepends `pdf' to the compilation command
     when requested to produce PDF.
Index: util/texi2dvi
===================================================================
RCS file: /sources/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- util/texi2dvi       30 May 2006 15:02:33 -0000      1.81
+++ util/texi2dvi       2 Jun 2006 22:03:55 -0000       1.82
@@ -1,6 +1,6 @@
 #! /bin/sh
 # texi2dvi --- produce DVI (or PDF) files from Texinfo (or (La)TeX) sources.
-# $Id: texi2dvi,v 1.81 2006/05/30 15:02:33 akim Exp $
+# $Id: texi2dvi,v 1.82 2006/06/02 22:03:55 karl Exp $
 #
 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001,
 # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
@@ -35,7 +35,7 @@
 set -e
 
 # This string is expanded by rcs automatically when this file is checked out.
-rcs_revision='$Revision: 1.81 $'
+rcs_revision='$Revision: 1.82 $'
 rcs_version=`set - $rcs_revision; echo $2`
 program=`echo $0 | sed -e 's!.*/!!'`
 version="texi2dvi (GNU Texinfo 4.8) $rcs_version
@@ -87,6 +87,7 @@
   -p, --pdf                  use pdftex or pdflatex for processing
   -r, --recode               call recode before TeX to translate input
       --recode-from=ENC      recode from ENC to the @documentencoding
+      --src-specials         pass --src-specials to TeX
   -t, --command=CMD          insert CMD in copy of input file
    or --texinfo=CMD          multiple values accumulate
       --translate-file=FILE  use given charset translation file for TeX
@@ -157,6 +158,7 @@
 quiet=false     # by default let the tools' message be displayed
 recode=false
 set_language=
+src_specials=
 textra=         # Extra TeX commands to insert in the input file.
 txiprereq=19990129 # minimum texinfo.tex version with macro expansion
 verb=false      # true for verbose mode
@@ -710,6 +712,10 @@
   # Tell TeX about TCX file, if specified.
   test -n "$translate_file" && cmd="$cmd --translate-file=$translate_file"
 
+  # Tell TeX to make source specials (for backtracking from output to
+  # source, given a sufficiently smart editor), if specifed.
+  test -n "$src_specials" && cmd="$cmd $src_specials"
+
   # Tell TeX to be batch if requested.
   if $batch; then
     # \batchmode does not show terminal output at all, so we don't
@@ -1248,6 +1254,7 @@
     -q | -s | --quiet | --silent) quiet=true; batch=true;;
     -r | --recode) recode=true;;
     --recode-from) shift; recode=true; recode_from="$1";;
+    --src-specials) src_specials=--src-specials;;
     -t | --texinfo | --command ) shift; textra="$textra\\
 "`echo "$1" | sed 's/\\\\/\\\\\\\\/g'`;;
     --text) out_lang=text;;
P ChangeLog
P NEWS
P util/texi2dvi


reply via email to

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