diff options
-rw-r--r-- | Master/texmf/doc/man/man1/texdoc.1 | 2 | ||||
-rw-r--r-- | Master/texmf/doc/man/man1/texdoc.man1.pdf | bin | 5357 -> 5357 bytes | |||
-rw-r--r-- | Master/texmf/doc/texdoc/News | 9 | ||||
-rw-r--r-- | Master/texmf/scripts/texdoc/constants.tlu | 2 | ||||
-rw-r--r-- | Master/texmf/scripts/texdoc/main.tlu | 2 |
5 files changed, 11 insertions, 4 deletions
diff --git a/Master/texmf/doc/man/man1/texdoc.1 b/Master/texmf/doc/man/man1/texdoc.1 index 3d90d278d6d..ac38f2440c0 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" "March 2010" "texdoc 0.71" "User Commands" +.TH TEXDOC "1" "March 2010" "texdoc 0.72" "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 Binary files differindex 1b4565c8adf..1c48941ac9f 100644 --- a/Master/texmf/doc/man/man1/texdoc.man1.pdf +++ b/Master/texmf/doc/man/man1/texdoc.man1.pdf diff --git a/Master/texmf/doc/texdoc/News b/Master/texmf/doc/texdoc/News index 6dd1a4a5b35..c154cf0f7bb 100644 --- a/Master/texmf/doc/texdoc/News +++ b/Master/texmf/doc/texdoc/News @@ -1,7 +1,14 @@ +Version 0.72 +------------ + +Fix stupid bug introduced in 0.70: texdoc would crash if called without +arguments. (Reported by Maxime Chupin.) + Version 0.71 ------------ -Fix file duplication bugs on windows, reported by Uwe Siart. +Fix bug introduced in 0.70: some results were duplicated on windows. (Reported +by Uwe Siart.) Version 0.70 ------------ diff --git a/Master/texmf/scripts/texdoc/constants.tlu b/Master/texmf/scripts/texdoc/constants.tlu index 5d23081450e..a8ffabede36 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.71' +version = '0.72' -- 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/main.tlu b/Master/texmf/scripts/texdoc/main.tlu index 0748df0b7d2..3b5d2851475 100644 --- a/Master/texmf/scripts/texdoc/main.tlu +++ b/Master/texmf/scripts/texdoc/main.tlu @@ -9,7 +9,7 @@ See texdoc.tlu for details. local L = {} load_env(L, { 'os', 'arg', 'print', - 'setup_config_and_alias', 'init_databases', + 'setup_config_and_alias', 'init_databases', 'print_usage', 'get_doclist', 'deliver_results', 'aliased_names', }) |