summaryrefslogtreecommitdiff
path: root/lisp/textmodes/rst.el
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2016-08-05 13:31:10 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2016-08-05 13:35:13 -0700
commit92e5b41c7c5898820356fc66456804a45bbe7852 (patch)
treeb4f3858e4f3e55078a57f5f40c024d7a773952f1 /lisp/textmodes/rst.el
parent6a9d967048f489bea8c716eb7b5be2c582b480bb (diff)
downloademacs-92e5b41c7c5898820356fc66456804a45bbe7852.tar.gz
Spelling and minor grammar fixes
* test/file-organization.org: Rename from test/file-organisation.org.
Diffstat (limited to 'lisp/textmodes/rst.el')
-rw-r--r--lisp/textmodes/rst.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/textmodes/rst.el b/lisp/textmodes/rst.el
index ed2075caca0..029139e572e 100644
--- a/lisp/textmodes/rst.el
+++ b/lisp/textmodes/rst.el
@@ -623,7 +623,7 @@ After interpretation of ARGS the results are concatenated as for
;;
;; In addition a reStructuredText section header in the buffer is called
;; "section".
-;;
+;;
;; For lists a "s" is added to the name of the concepts.
@@ -856,10 +856,10 @@ Return ADO if so or signal an error otherwise."
(let ((pos (rst-Ado-position (rst-Hdr-ado self) (rst-Hdr-ado-map hdrs))))
(and pos (nthcdr pos hdrs))))
-(defun rst-Hdr-ado-map (selfs)
+(defun rst-Hdr-ado-map (selves)
;; testcover: ok.
- "Return `rst-Ado' list extracted from elements of SELFS."
- (mapcar 'rst-Hdr-ado selfs))
+ "Return `rst-Ado' list extracted from elements of SELVES."
+ (mapcar 'rst-Hdr-ado selves))
(defun rst-Hdr-get-char (self)
;; testcover: ok.
@@ -2583,7 +2583,7 @@ If PREFER-ROMAN roman numbering is preferred over using letters."
(1+ (string-to-char (match-string 0 curitem))))
nil nil curitem)))))
-;; FIXME: At least the contiunation may be fold into
+;; FIXME: At least the continuation may be folded into
;; `newline-and-indent`. However, this may not be wanted by everyone so
;; it should be possible to switch this off.
(defun rst-insert-list (&optional prefer-roman)