1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00
This commit is contained in:
Christopher Zaborsky 1992-11-10 19:51:29 +00:00
parent 13b705c88d
commit d367fa7149
2 changed files with 7 additions and 7 deletions

View file

@ -681,7 +681,7 @@ If used within a line, follow `@br' with braces."
(defun texinfo-format-footnote ()
"Format a footnote in either `end node' or `make node' style.
The texinfo-footnote-style variable controls which style is used."
The `texinfo-footnote-style' variable controls which style is used."
(setq texinfo-footnote-number (1+ texinfo-footnote-number))
(cond ((eq texinfo-footnote-style 'EN) (texinfo-format-end-node))
((eq texinfo-footnote-style 'MN) (texinfo-format-make-node))))
@ -1766,7 +1766,7 @@ If used within a line, follow `@minus' with braces."
;;;###autoload
(defun batch-texinfo-format ()
"Runs texinfo-format-buffer on the files remaining on the command line.
"Runs `texinfo-format-buffer' on the files remaining on the command line.
Must be used only with -batch, and kills emacs on completion.
Each file will be processed even if an error occurred previously.
For example, invoke

View file

@ -57,7 +57,7 @@ inherit all the commands defined in this map.")
(defun text-mode ()
"Major mode for editing text intended for humans to read. Special commands:\\{text-mode-map}
Turning on text-mode calls the value of the variable `text-mode-hook',
Turning on Text mode calls the value of the variable `text-mode-hook',
if that value is non-nil."
(interactive)
(kill-all-local-variables)
@ -82,8 +82,8 @@ All the commands defined in Text mode are inherited unless overridden.")
(defun indented-text-mode ()
"Major mode for editing indented text intended for humans to read.\\{indented-text-mode-map}
Turning on indented-text-mode calls the value of the variable `text-mode-hook',
if that value is non-nil."
Turning on `indented-text-mode' calls the value of the variable
`text-mode-hook', if that value is non-nil."
(interactive)
(kill-all-local-variables)
(use-local-map text-mode-map)
@ -99,7 +99,7 @@ if that value is non-nil."
(defun center-paragraph ()
"Center each nonblank line in the paragraph at or after point.
See center-line for more info."
See `center-line' for more info."
(interactive)
(save-excursion
(forward-paragraph)
@ -110,7 +110,7 @@ See center-line for more info."
(defun center-region (from to)
"Center each nonblank line starting in the region.
See center-line for more info."
See `center-line' for more info."
(interactive "r")
(if (> from to)
(let ((tem to))