aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorJuanma Barranquero2011-11-16 13:34:47 +0100
committerJuanma Barranquero2011-11-16 13:34:47 +0100
commit58179ccebd1c2fd18fa422a7bb4d2cf78994e3c9 (patch)
treeb5c96cf9f1cc1c0c78ed998040e40ab126da95bb /lisp/textmodes
parent110490118ed91082753d0f9e15d1774b6002caa2 (diff)
downloademacs-58179ccebd1c2fd18fa422a7bb4d2cf78994e3c9.tar.gz
emacs-58179ccebd1c2fd18fa422a7bb4d2cf78994e3c9.zip
Fix typos.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/page-ext.el2
-rw-r--r--lisp/textmodes/texinfmt.el6
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/textmodes/page-ext.el b/lisp/textmodes/page-ext.el
index 6e73fda662b..91f6624e7a3 100644
--- a/lisp/textmodes/page-ext.el
+++ b/lisp/textmodes/page-ext.el
@@ -435,7 +435,7 @@ REVERSE (non-nil means reverse order), BEG and END (region to sort)."
435 (skip-chars-forward " \t\n") 435 (skip-chars-forward " \t\n")
436 )) 436 ))
437 437
438 ;; ENDRECFUN is is called with point within the record. 438 ;; ENDRECFUN is called with point within the record.
439 ;; It should move point to the end of the record. 439 ;; It should move point to the end of the record.
440 (function (lambda () 440 (function (lambda ()
441 (if (re-search-forward 441 (if (re-search-forward
diff --git a/lisp/textmodes/texinfmt.el b/lisp/textmodes/texinfmt.el
index d33cbb97dd8..1194742a24c 100644
--- a/lisp/textmodes/texinfmt.el
+++ b/lisp/textmodes/texinfmt.el
@@ -2194,7 +2194,7 @@ This command is executed when texinfmt sees @item inside @multitable."
2194 2194
2195(put 'image 'texinfo-format 'texinfo-format-image) 2195(put 'image 'texinfo-format 'texinfo-format-image)
2196(defun texinfo-format-image () 2196(defun texinfo-format-image ()
2197 "Insert an image from an an file ending in .txt. 2197 "Insert an image from a file ending in .txt.
2198Use only the FILENAME arg; for Info, ignore the other arguments to @image." 2198Use only the FILENAME arg; for Info, ignore the other arguments to @image."
2199 (let ((args (texinfo-format-parse-args)) 2199 (let ((args (texinfo-format-parse-args))
2200 filename) 2200 filename)
@@ -3909,11 +3909,11 @@ Default is to leave paragraph indentation as is."
3909;;; @set, @clear, @ifset, @ifclear 3909;;; @set, @clear, @ifset, @ifclear
3910 3910
3911;; If a flag is set with @set FLAG, then text between @ifset and @end 3911;; If a flag is set with @set FLAG, then text between @ifset and @end
3912;; ifset is formatted normally, but if the flag is is cleared with 3912;; ifset is formatted normally, but if the flag is cleared with
3913;; @clear FLAG, then the text is not formatted; it is ignored. 3913;; @clear FLAG, then the text is not formatted; it is ignored.
3914 3914
3915;; If a flag is cleared with @clear FLAG, then text between @ifclear 3915;; If a flag is cleared with @clear FLAG, then text between @ifclear
3916;; and @end ifclear is formatted normally, but if the flag is is set with 3916;; and @end ifclear is formatted normally, but if the flag is set with
3917;; @set FLAG, then the text is not formatted; it is ignored. @ifclear 3917;; @set FLAG, then the text is not formatted; it is ignored. @ifclear
3918;; is the opposite of @ifset. 3918;; is the opposite of @ifset.
3919 3919