summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorManuel Pégourié-Gonnard <mpg@elzevir.fr>2010-02-05 10:25:37 +0000
committerManuel Pégourié-Gonnard <mpg@elzevir.fr>2010-02-05 10:25:37 +0000
commit80c2591c64bbd9634fe8ea6532dd7ee8feb0c565 (patch)
tree35d81590c44e4be2781832462dafb88b89463aae /Master
parent9e1c04fdacf6dfba4c267a2e3692077b752829d4 (diff)
Texdoc bugfix for windows.
git-svn-id: svn://tug.org/texlive/trunk@16920 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r--Master/texmf/doc/man/man1/texdoc.12
-rw-r--r--Master/texmf/doc/man/man1/texdoc.man1.pdfbin5495 -> 5498 bytes
-rw-r--r--Master/texmf/doc/texdoc/News7
-rw-r--r--Master/texmf/scripts/texdoc/constants.tlu2
-rw-r--r--Master/texmf/scripts/texdoc/search.tlu2
5 files changed, 9 insertions, 4 deletions
diff --git a/Master/texmf/doc/man/man1/texdoc.1 b/Master/texmf/doc/man/man1/texdoc.1
index 70313fdbe1d..721b62b8277 100644
--- a/Master/texmf/doc/man/man1/texdoc.1
+++ b/Master/texmf/doc/man/man1/texdoc.1
@@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.37.1.
-.TH TEXDOC "1" "January 2010" "texdoc 0.62" "User Commands"
+.TH TEXDOC "1" "February 2010" "texdoc 0.63" "User Commands"
.SH NAME
texdoc \- find & view documentation in TeX Live
.SH SYNOPSIS
diff --git a/Master/texmf/doc/man/man1/texdoc.man1.pdf b/Master/texmf/doc/man/man1/texdoc.man1.pdf
index a9a0c765cc7..617ce1fa018 100644
--- a/Master/texmf/doc/man/man1/texdoc.man1.pdf
+++ b/Master/texmf/doc/man/man1/texdoc.man1.pdf
Binary files differ
diff --git a/Master/texmf/doc/texdoc/News b/Master/texmf/doc/texdoc/News
index b29df43ad98..433f39c8420 100644
--- a/Master/texmf/doc/texdoc/News
+++ b/Master/texmf/doc/texdoc/News
@@ -1,3 +1,8 @@
+Version 0.63
+------------
+
+Fix a bug on windows which prevented from viewing sty files.
+
Version 0.62
------------
@@ -15,7 +20,7 @@ Version 0.60
Changed the search/alias/score logic. See section 2 of the manual for details,
but here is a primer:
- alias now /adds/ patterns to be search, it is no more a substitution
-- new scoring system, partially confugurable, with improved heuristics
+- new scoring system, partially configurable, with improved heuristics
The beginning of the manual has been completely rewritten.
diff --git a/Master/texmf/scripts/texdoc/constants.tlu b/Master/texmf/scripts/texdoc/constants.tlu
index b3c57b7be8c..837e3c0534c 100644
--- a/Master/texmf/scripts/texdoc/constants.tlu
+++ b/Master/texmf/scripts/texdoc/constants.tlu
@@ -15,7 +15,7 @@ load_env(L, {
-- progname and version
fullname = arg[0]
progname = 'texdoc'
-version = '0.62'
+version = '0.63'
-- make sure to update setup_config_from_cl() accordingly
-- and set a default value in setup_config_from_defaults() if relevant
diff --git a/Master/texmf/scripts/texdoc/search.tlu b/Master/texmf/scripts/texdoc/search.tlu
index fa35cce2754..a962eedf7c1 100644
--- a/Master/texmf/scripts/texdoc/search.tlu
+++ b/Master/texmf/scripts/texdoc/search.tlu
@@ -324,7 +324,7 @@ function get_doclist_sty(patlist)
local file = kpse.find_file(pat.name)
if file then
local df = Docfile:new({
- name = file,
+ name = win32_hook(file),
tree = -1,
pattern = pat,
})