diff options
author | Richard M. Stallman <rms@gnu.org> | 1999-02-13 16:40:10 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1999-02-13 16:40:10 +0000 |
commit | 8d66d13d121cdd4b08caf7e8c551b8681d51cfae (patch) | |
tree | fbed54c0f1145e6dcffb2b0a25fcd83a209cfa6d /lisp | |
parent | 5057be3e8cef183fec85bb17f1d70db9b48ddb3e (diff) | |
download | emacs-8d66d13d121cdd4b08caf7e8c551b8681d51cfae.tar.gz |
(texinfo-alias): New function.
(texinfo-fold-nodename-case): Add defvar.
(texinfo-format-node): Do case folding if specified.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/textmodes/texinfmt.el | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el index d102e8aa5f6..9ba0055e19b 100644 --- a/lisp/textmodes/texinfmt.el +++ b/lisp/textmodes/texinfmt.el @@ -66,6 +66,7 @@ If optional argument HERE is non-nil, insert info at point." (defvar texinfo-node-names) (defvar texinfo-enclosure-list) (defvar texinfo-alias-list) +(defvar texinfo-fold-nodename-case nil) (defvar texinfo-command-start) (defvar texinfo-command-end) @@ -1117,7 +1118,7 @@ Leave point after argument." (up (nth 3 args))) (texinfo-discard-command) (setq texinfo-last-node name) - (let ((tem (downcase name))) + (let ((tem (if texinfo-fold-nodename-case (downcase name) name))) (if (assoc tem texinfo-node-names) (error "Duplicate node name: %s" name) (setq texinfo-node-names (cons (list tem) texinfo-node-names)))) @@ -2270,6 +2271,27 @@ This command is executed when texinfmt sees @item inside @multitable." texinfo-enclosure-list)))) +;;; @alias + +(put 'alias 'texinfo-format 'texinfo-alias) +(defun texinfo-alias () + (let ((start (1- (point))) + args) + (skip-chars-forward " ") + (save-excursion (end-of-line) (setq texinfo-command-end (point))) + (if (not (looking-at "\\([^=]+\\)=\\(.*\\)")) + (error "Invalid alias command") + (setq texinfo-alias-list + (cons + (cons + (buffer-substring (match-beginning 1) (match-end 1)) + (buffer-substring (match-beginning 2) (match-end 2))) + texinfo-alias-list)) + (texinfo-discard-command)) + ) + ) + + ;;; @var, @code and the like (put 'var 'texinfo-format 'texinfo-format-var) |