summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/dox
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2017-12-07 23:14:29 +0000
committerKarl Berry <karl@freefriends.org>2017-12-07 23:14:29 +0000
commit19ca5ad9055c34322b8400af8c7b1b83f65d7829 (patch)
treee912f56f41af1c8479296c38065dae9e94571e5e /Master/texmf-dist/doc/latex/dox
parentc62ca26eddb48d4d0073d5b1ff3e814c7f44fbb4 (diff)
dox (8dec17)
git-svn-id: svn://tug.org/texlive/trunk@46011 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/dox')
-rw-r--r--Master/texmf-dist/doc/latex/dox/NEWS7
-rw-r--r--Master/texmf-dist/doc/latex/dox/README.md6
-rw-r--r--Master/texmf-dist/doc/latex/dox/THANKS2
-rw-r--r--Master/texmf-dist/doc/latex/dox/dox.el30
-rw-r--r--Master/texmf-dist/doc/latex/dox/dox.pdfbin157316 -> 157525 bytes
-rw-r--r--Master/texmf-dist/doc/latex/dox/header.inc2
6 files changed, 27 insertions, 20 deletions
diff --git a/Master/texmf-dist/doc/latex/dox/NEWS b/Master/texmf-dist/doc/latex/dox/NEWS
index d82292187cd..044d924154e 100644
--- a/Master/texmf-dist/doc/latex/dox/NEWS
+++ b/Master/texmf-dist/doc/latex/dox/NEWS
@@ -16,6 +16,11 @@ distributions of LaTeX version 2005/12/01 or later.
DoX consists of the files listed in the file `README.md'.
+*Version 2.4
+** Improve AUCTeX support
+** Fix spurious spaces in index entries
+reported by Eric Domenjoud.
+
* Version 2.3
** Support Doc's internal \saved@indexname command
thanks to Falk Hanisch.
@@ -26,7 +31,7 @@ allowing to create control sequence based documentation items.
* Version 2.1
** New lisp functions doxitem[s]
-to register new documentation environments with AUC-TeX.
+to register new documentation environments with AUCTeX.
* Version 2.0
** Optional argument to \doxitem
diff --git a/Master/texmf-dist/doc/latex/dox/README.md b/Master/texmf-dist/doc/latex/dox/README.md
index 52d29fadd8b..9c0fe8e123c 100644
--- a/Master/texmf-dist/doc/latex/dox/README.md
+++ b/Master/texmf-dist/doc/latex/dox/README.md
@@ -31,7 +31,7 @@ the definition of new commands and environments. However, there is no simple
way to extend this functionality to other items (options or counters for
instance). DoX is designed to circumvent this limitation, and provides some
improvements over the existing functionality as well. Dox also comes with
-support for [AUC-TeX](https://www.gnu.org/software/auctex/).
+support for [AUCTeX](https://www.gnu.org/software/auctex/).
DoX homepage: http://www.lrde.epita.fr/~didier/software/latex.php#dox
@@ -52,5 +52,5 @@ following locations are suggested:
[TEXMF]/tex/latex/dox/dox.sty
[TEXMF]/doc/latex/dox/dox.[pdf|dvi]
-If you're an AUC-TeX user, you may also install the file `dox.el` in a
-suitable AUC-TeX style directory.
+If you're an AUCTeX user, you may also install the file `dox.el` in a
+suitable AUCTeX style directory.
diff --git a/Master/texmf-dist/doc/latex/dox/THANKS b/Master/texmf-dist/doc/latex/dox/THANKS
index 3ad89320f00..cb7f9d1d005 100644
--- a/Master/texmf-dist/doc/latex/dox/THANKS
+++ b/Master/texmf-dist/doc/latex/dox/THANKS
@@ -21,7 +21,7 @@ DoX consists of the files listed in the file `README.md'.
** The following persons have contributed code, bug reports, localization,
** suggestions etc.:
-Falk Hanisch.
+Eric Domenjoud, Falk Hanisch.
diff --git a/Master/texmf-dist/doc/latex/dox/dox.el b/Master/texmf-dist/doc/latex/dox/dox.el
index 7187c71fc43..2de037d5ed7 100644
--- a/Master/texmf-dist/doc/latex/dox/dox.el
+++ b/Master/texmf-dist/doc/latex/dox/dox.el
@@ -1,4 +1,4 @@
-;;; dox.el --- AUC-TeX style file for DoX
+;;; dox.el --- AUCTeX style file for DoX
;; Copyright (C) 2009, 2010, 2017 Didier Verna
@@ -22,21 +22,23 @@
;;; Code:
(TeX-add-style-hook "dox"
- (function
- (lambda ()
- (TeX-add-symbols
- '("doxitem" [ "Options" ]
- "Function name" "Environment name" "Index category name")))))
+ (lambda ()
+ (TeX-add-symbols
+ '("doxitem" [ TeX-arg-key-val (("idxtype") ("macrolike")) ]
+ "Function name" "Environment name" "Index category name"))
+ (when (and (featurep 'font-latex)
+ (eq TeX-install-font-lock 'font-latex-setup))
+ (font-latex-add-keywords '(("doxitem" "[{{{")) 'function)))
+ LaTeX-dialect)
(defun doxitem (envname)
- "Register a new environment ENVNAME with AUC-TeX.
+ "Register a new environment ENVNAME with AUCTeX.
+The effect is to make docTeX mode treat this new environment just
+like the macro and environment ones. Currently, this means
+avoiding inner indentation.
-The effect is to make docTeX mode treat this new environment just like
-the macro and environment ones. Currently, this means avoiding inner
-indentation.
-
-ENVNAME is actually a regexp appearing in a logical group.
-This means that you can register several environments simultaneously
+ENVNAME is actually a regexp appearing in a logical group. This
+means that you can register several environments simultaneously
by means or regexp combination."
(make-local-variable 'docTeX-indent-inner-fixed)
(push (list
@@ -48,7 +50,7 @@ by means or regexp combination."
docTeX-indent-inner-fixed))
(defun doxitems (&rest envnames)
- "Register environments ENVNAMES with AUC-TeX.
+ "Register environments ENVNAMES with AUCTeX.
See the function `doxitem' for more information."
(mapc #'doxitem envnames))
diff --git a/Master/texmf-dist/doc/latex/dox/dox.pdf b/Master/texmf-dist/doc/latex/dox/dox.pdf
index 3044171158b..924eee05797 100644
--- a/Master/texmf-dist/doc/latex/dox/dox.pdf
+++ b/Master/texmf-dist/doc/latex/dox/dox.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/dox/header.inc b/Master/texmf-dist/doc/latex/dox/header.inc
index cc2f2d78c37..bf6e015003b 100644
--- a/Master/texmf-dist/doc/latex/dox/header.inc
+++ b/Master/texmf-dist/doc/latex/dox/header.inc
@@ -35,7 +35,7 @@
%% Right bracket \] Circumflex \^ Underscore \_
%% Grave accent \` Left brace \{ Vertical bar \|
%% Right brace \} Tilde \~}
-\ProvidesPackage{dox}[2017/01/26 v2.3 Extensions to the doc package]
+\ProvidesPackage{dox}[2017/12/06 v2.4 Extensions to the doc package]
\endinput
%%