aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2006-11-06 02:18:40 +0000
committerJuanma Barranquero2006-11-06 02:18:40 +0000
commit2b8749129c1b5c3d86761fb344c8bd404286ecd1 (patch)
treea09c0557c27cbf4766fb35e6e86a348f6dbccb00
parent27772f10ee0f47c235ed817b7e6389a0731628e7 (diff)
downloademacs-2b8749129c1b5c3d86761fb344c8bd404286ecd1.tar.gz
emacs-2b8749129c1b5c3d86761fb344c8bd404286ecd1.zip
(batch-texinfo-format): Fix typo in docstring.
-rw-r--r--lisp/textmodes/texinfmt.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el
index 9e0b6b63901..35ac181817a 100644
--- a/lisp/textmodes/texinfmt.el
+++ b/lisp/textmodes/texinfmt.el
@@ -2125,7 +2125,7 @@ This command is executed when texinfmt sees @item inside @multitable."
2125 (setq tab-number (1+ tab-number))) 2125 (setq tab-number (1+ tab-number)))
2126 (let ((needed-tabs (- (length table-widths) tab-number))) 2126 (let ((needed-tabs (- (length table-widths) tab-number)))
2127 (when (> needed-tabs 0) 2127 (when (> needed-tabs 0)
2128 (goto-char (point-min)) 2128 (goto-char (point-min))
2129 (end-of-line) 2129 (end-of-line)
2130 (while (> needed-tabs 0) 2130 (while (> needed-tabs 0)
2131 (insert "@w{ }\n@tab") 2131 (insert "@w{ }\n@tab")
@@ -4292,7 +4292,7 @@ the @ifeq command."
4292 4292
4293(defun batch-texinfo-format () 4293(defun batch-texinfo-format ()
4294 "Runs texinfo-format-buffer on the files remaining on the command line. 4294 "Runs texinfo-format-buffer on the files remaining on the command line.
4295Must be used only with -batch, and kills emacs on completion. 4295Must be used only with -batch, and kills Emacs on completion.
4296Each file will be processed even if an error occurred previously. 4296Each file will be processed even if an error occurred previously.
4297For example, invoke 4297For example, invoke
4298 \"emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo\"." 4298 \"emacs -batch -funcall batch-texinfo-format $docs/ ~/*.texinfo\"."