---
ChangeLog | 4 ++++
build-aux/texi2dvi | 2 +-
2 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 1eca776..c029f64 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2011-09-02 Guillaume Lazzara <z(a)lrde.epita.fr>
+ * build-aux/texi2dvi: Fix a regular expression.
+
+2011-09-02 Guillaume Lazzara <z(a)lrde.epita.fr>
+
* NEWS: List changes for the next release.
2011-06-07 Guillaume Lazzara <z(a)lrde.epita.fr>
diff --git a/build-aux/texi2dvi b/build-aux/texi2dvi
index fce73b9..7d1f2ab 100755
--- a/build-aux/texi2dvi
+++ b/build-aux/texi2dvi
@@ -1848,7 +1848,7 @@ input_file_name_decode ()
# 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
--
1.7.2.5