diff options
| author | Christopher Zaborsky | 1992-11-10 19:51:29 +0000 |
|---|---|---|
| committer | Christopher Zaborsky | 1992-11-10 19:51:29 +0000 |
| commit | d367fa71492136cc7b38184a4f76becaac7d35dd (patch) | |
| tree | aa79f387e6e1ef1221de77bb3d89846510f456e1 /lisp/textmodes | |
| parent | 13b705c88d691197381b1fa103d81929be81c0cc (diff) | |
| download | emacs-d367fa71492136cc7b38184a4f76becaac7d35dd.tar.gz emacs-d367fa71492136cc7b38184a4f76becaac7d35dd.zip | |
Dox fix.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/texinfmt.el | 4 | ||||
| -rw-r--r-- | lisp/textmodes/text-mode.el | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el index b165a48366d..45580762b5a 100644 --- a/lisp/textmodes/texinfmt.el +++ b/lisp/textmodes/texinfmt.el | |||
| @@ -681,7 +681,7 @@ If used within a line, follow `@br' with braces." | |||
| 681 | 681 | ||
| 682 | (defun texinfo-format-footnote () | 682 | (defun texinfo-format-footnote () |
| 683 | "Format a footnote in either `end node' or `make node' style. | 683 | "Format a footnote in either `end node' or `make node' style. |
| 684 | The texinfo-footnote-style variable controls which style is used." | 684 | The `texinfo-footnote-style' variable controls which style is used." |
| 685 | (setq texinfo-footnote-number (1+ texinfo-footnote-number)) | 685 | (setq texinfo-footnote-number (1+ texinfo-footnote-number)) |
| 686 | (cond ((eq texinfo-footnote-style 'EN) (texinfo-format-end-node)) | 686 | (cond ((eq texinfo-footnote-style 'EN) (texinfo-format-end-node)) |
| 687 | ((eq texinfo-footnote-style 'MN) (texinfo-format-make-node)))) | 687 | ((eq texinfo-footnote-style 'MN) (texinfo-format-make-node)))) |
| @@ -1766,7 +1766,7 @@ If used within a line, follow `@minus' with braces." | |||
| 1766 | 1766 | ||
| 1767 | ;;;###autoload | 1767 | ;;;###autoload |
| 1768 | (defun batch-texinfo-format () | 1768 | (defun batch-texinfo-format () |
| 1769 | "Runs texinfo-format-buffer on the files remaining on the command line. | 1769 | "Runs `texinfo-format-buffer' on the files remaining on the command line. |
| 1770 | Must be used only with -batch, and kills emacs on completion. | 1770 | Must be used only with -batch, and kills emacs on completion. |
| 1771 | Each file will be processed even if an error occurred previously. | 1771 | Each file will be processed even if an error occurred previously. |
| 1772 | For example, invoke | 1772 | For example, invoke |
diff --git a/lisp/textmodes/text-mode.el b/lisp/textmodes/text-mode.el index 4ba61200607..0f9229e80a3 100644 --- a/lisp/textmodes/text-mode.el +++ b/lisp/textmodes/text-mode.el | |||
| @@ -57,7 +57,7 @@ inherit all the commands defined in this map.") | |||
| 57 | 57 | ||
| 58 | (defun text-mode () | 58 | (defun text-mode () |
| 59 | "Major mode for editing text intended for humans to read. Special commands:\\{text-mode-map} | 59 | "Major mode for editing text intended for humans to read. Special commands:\\{text-mode-map} |
| 60 | Turning on text-mode calls the value of the variable `text-mode-hook', | 60 | Turning on Text mode calls the value of the variable `text-mode-hook', |
| 61 | if that value is non-nil." | 61 | if that value is non-nil." |
| 62 | (interactive) | 62 | (interactive) |
| 63 | (kill-all-local-variables) | 63 | (kill-all-local-variables) |
| @@ -82,8 +82,8 @@ All the commands defined in Text mode are inherited unless overridden.") | |||
| 82 | 82 | ||
| 83 | (defun indented-text-mode () | 83 | (defun indented-text-mode () |
| 84 | "Major mode for editing indented text intended for humans to read.\\{indented-text-mode-map} | 84 | "Major mode for editing indented text intended for humans to read.\\{indented-text-mode-map} |
| 85 | Turning on indented-text-mode calls the value of the variable `text-mode-hook', | 85 | Turning on `indented-text-mode' calls the value of the variable |
| 86 | if that value is non-nil." | 86 | `text-mode-hook', if that value is non-nil." |
| 87 | (interactive) | 87 | (interactive) |
| 88 | (kill-all-local-variables) | 88 | (kill-all-local-variables) |
| 89 | (use-local-map text-mode-map) | 89 | (use-local-map text-mode-map) |
| @@ -99,7 +99,7 @@ if that value is non-nil." | |||
| 99 | 99 | ||
| 100 | (defun center-paragraph () | 100 | (defun center-paragraph () |
| 101 | "Center each nonblank line in the paragraph at or after point. | 101 | "Center each nonblank line in the paragraph at or after point. |
| 102 | See center-line for more info." | 102 | See `center-line' for more info." |
| 103 | (interactive) | 103 | (interactive) |
| 104 | (save-excursion | 104 | (save-excursion |
| 105 | (forward-paragraph) | 105 | (forward-paragraph) |
| @@ -110,7 +110,7 @@ See center-line for more info." | |||
| 110 | 110 | ||
| 111 | (defun center-region (from to) | 111 | (defun center-region (from to) |
| 112 | "Center each nonblank line starting in the region. | 112 | "Center each nonblank line starting in the region. |
| 113 | See center-line for more info." | 113 | See `center-line' for more info." |
| 114 | (interactive "r") | 114 | (interactive "r") |
| 115 | (if (> from to) | 115 | (if (> from to) |
| 116 | (let ((tem to)) | 116 | (let ((tem to)) |