texinfo-commits
[Top][All Lists]
Advanced

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

texinfo ChangeLog util/texi2dvi


From: Karl Berry
Subject: texinfo ChangeLog util/texi2dvi
Date: Tue, 30 Mar 2010 23:13:38 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Karl Berry <karl>       10/03/30 23:13:38

Modified files:
        .              : ChangeLog 
        util           : texi2dvi 

Log message:
        [A-Za-z] since [A-z] gets invalid range end on utf-8

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/ChangeLog?cvsroot=texinfo&r1=1.1038&r2=1.1039
http://cvs.savannah.gnu.org/viewcvs/texinfo/util/texi2dvi?cvsroot=texinfo&r1=1.157&r2=1.158

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.1038
retrieving revision 1.1039
diff -u -b -r1.1038 -r1.1039
--- ChangeLog   22 Mar 2010 00:26:48 -0000      1.1038
+++ ChangeLog   30 Mar 2010 23:13:37 -0000      1.1039
@@ -1,3 +1,14 @@
+2010-03-30  Karl Berry  <address@hidden>
+
+       * util/texi2dvi (input_file_name_decode): use [A-Za-z] rather than
+       [A-z], which gets "invalid range end" with new grep in
+       en_US.utf8 and other UTF-8 locales.
+       Report from Martin von Gagern, 29 Mar 2010 12:34:09.
+
+2010-03-29  Karl Berry  <address@hidden>
+
+       * doc/texinfo.txi (part): new description for new command @part.
+
 2010-03-21  Karl Berry  <address@hidden>
 
        * doc/texinfo.tex (\headingsoff): new macro to turn off all

Index: util/texi2dvi
===================================================================
RCS file: /sources/texinfo/texinfo/util/texi2dvi,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -b -r1.157 -r1.158
--- util/texi2dvi       9 Feb 2010 18:37:08 -0000       1.157
+++ util/texi2dvi       30 Mar 2010 23:13:37 -0000      1.158
@@ -1,6 +1,6 @@
 #! /bin/sh
 # texi2dvi --- produce DVI (or PDF) files from Texinfo (or (La)TeX) sources.
-# $Id: texi2dvi,v 1.157 2010/02/09 18:37:08 karl Exp $
+# $Id: texi2dvi,v 1.158 2010/03/30 23:13:37 karl Exp $
 #
 # Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003,
 # 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
@@ -33,7 +33,7 @@
 set -e
 
 # This string is expanded automatically when this file is checked out.
-rcs_revision='$Revision: 1.157 $'
+rcs_revision='$Revision: 1.158 $'
 rcs_version=`set - $rcs_revision; echo $2`
 program=`echo $0 | sed -e 's!.*/!!'`
 
@@ -1848,7 +1848,7 @@
 
   # If the COMMAND_LINE_FILENAME is not absolute (e.g., --debug.tex),
   # prepend `./' in order to avoid that the tools take it as an option.
-  echo "$command_line_filename" | $EGREP '^(/|[A-z]:/)' >&6 \
+  echo "$command_line_filename" | $EGREP '^(/|[A-Za-z]:/)' >&6 \
   || command_line_filename="./$command_line_filename"
 
   # See if the file exists.  If it doesn't we're in trouble since, even




reply via email to

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