summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Master/texmf/doc/man/man1/texdoc.162
-rw-r--r--Master/texmf/doc/man/man1/texdoc.pdfbin5288 -> 3126 bytes
-rwxr-xr-xMaster/texmf/scripts/texdoc/texdoc.tlu6
3 files changed, 7 insertions, 61 deletions
diff --git a/Master/texmf/doc/man/man1/texdoc.1 b/Master/texmf/doc/man/man1/texdoc.1
index d683fa13835..178db3c9b67 100644
--- a/Master/texmf/doc/man/man1/texdoc.1
+++ b/Master/texmf/doc/man/man1/texdoc.1
@@ -1,62 +1,6 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.36.
-.TH TEXDOC "1" "July 2009" "texdoc 0.43+ svn r61" "User Commands"
+.TH TEXDOC.TLU:35: "1" "August 2009" "texdoc.tlu:35: attempt to concatenate local 'svnrev' (a nil value)" "User Commands"
.SH NAME
-texdoc \- finding & viewing TeX documentation
-.SH SYNOPSIS
-.B texdoc
-[\fIOPTIONS\fR]... [\fINAME\fR]...
+texdoc.tlu:35: \- finding & viewing TeX documentation
.SH DESCRIPTION
-texdoc tries to find appropriate TeX documentation for the specified NAME(s).
-With no NAME, it can print configuration information (\fB\-f\fR, \fB\-\-files\fR);
-the usual \fB\-\-help\fR and \fB\-\-version\fR options are also accepted.
-.TP
-\fB\-f\fR, \fB\-\-files\fR
-Print the name of the config files being used.
-.TP
-\fB\-e\fR, \fB\-\-extensions\fR=\fIL\fR
-Require file extensions to be in the list L.
-.TP
-\fB\-w\fR, \fB\-\-view\fR
-Use view mode: start a viewer.
-.TP
-\fB\-m\fR, \fB\-\-mixed\fR
-Use mixed mode (view or list).
-.TP
-\fB\-l\fR, \fB\-\-list\fR
-Use list mode: don't start a viewer.
-.TP
-\fB\-s\fR, \fB\-\-search\fR
-Search for name as a substring.
-.TP
-\fB\-r\fR, \fB\-\-regex\fR
-Search for name as a lua regex.
-.TP
-\fB\-a\fR, \fB\-\-alias\fR
-Use the alias table.
-.TP
-\fB\-A\fR, \fB\-\-noalias\fR
-Don't use the alias table.
-.TP
-\fB\-i\fR, \fB\-\-interact\fR
-Use interactive menus.
-.TP
-\fB\-I\fR, \fB\-\-nointeract\fR
-Use plain lists, no interaction required.
-.TP
-\fB\-v\fR, \fB\-\-verbosity\fR=\fIN\fR
-Set verbosity level to N.
-.TP
-\fB\-d\fR, \fB\-\-debug\fR
-Set verbosity level to maximum.
-.SS "Environment:"
-.IP
-PAGER, BROWSER, PDFVIEWER, PSVIEWER, DVIVIEWER.
-.SS "Files:"
-.IP
-<texmf>/texdoc/texdoc.cnf files, see the \fB\-f\fR option.
-.SS "Homepage:"
-.IP
-http://tug.org/texdoc/
-.SS "Manual:"
-.IP
-displayed by `texdoc texdoc'.
+\&../texdoc.tlu:35: attempt to concatenate local 'svnrev' (a nil value)
diff --git a/Master/texmf/doc/man/man1/texdoc.pdf b/Master/texmf/doc/man/man1/texdoc.pdf
index 666189cd985..4e65db6f208 100644
--- a/Master/texmf/doc/man/man1/texdoc.pdf
+++ b/Master/texmf/doc/man/man1/texdoc.pdf
Binary files differ
diff --git a/Master/texmf/scripts/texdoc/texdoc.tlu b/Master/texmf/scripts/texdoc/texdoc.tlu
index c0e26611429..7672f3ce8fd 100755
--- a/Master/texmf/scripts/texdoc/texdoc.tlu
+++ b/Master/texmf/scripts/texdoc/texdoc.tlu
@@ -29,7 +29,7 @@ Previous work in the public domain:
-- progname and version
progname = 'texdoc'
-version = '0.44'
+version = '0.45'
if string.sub(version, -1) == '+' then
local svnrev = string.match('$Rev$', '%$Rev:%s*(%d*)%s*%$');
version = version..' svn r'..svnrev
@@ -881,7 +881,9 @@ function print_menu (files, comp)
if n > max_lines then
io.write (n, " results. Display them all? (y/N) ")
local ans = io.read('*line')
- if not ((ans == 'y') or (ans == 'Y')) then return end
+ if not ((ans == 'y') or (ans == 'Y')
+ -- io.read is quite strange wrt windows line endings :-(
+ or (ans == '\ry') or (ans == '\rY')) then return end
end
end
display_table (files)