summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus/message.el2
-rw-r--r--lisp/isearch.el2
-rw-r--r--lisp/ses.el7
-rw-r--r--lisp/textmodes/rst.el10
-rw-r--r--lisp/window.el2
5 files changed, 11 insertions, 12 deletions
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index 85968c85b1c..2ce97377362 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -6241,7 +6241,7 @@ When point is at the first header line, moves it after the colon
and spaces separating header name and header value.
When point is in a continuation line of a folded header (i.e. the
-line starts with a space), the behaviour depends on HANDLE-FOLDED
+line starts with a space), the behavior depends on HANDLE-FOLDED
argument. If it’s nil, function moves the point to the start of
the header continuation; otherwise, function locates the
beginning of the header and moves point past the colon as is the
diff --git a/lisp/isearch.el b/lisp/isearch.el
index 721f2fc3181..25261d8d4a8 100644
--- a/lisp/isearch.el
+++ b/lisp/isearch.el
@@ -558,7 +558,7 @@ The symbol property `isearch-message-prefix' put on this function
specifies the prefix string displayed in the search message.
This variable is set and changed during isearch. To change the
-default behaviour used for searches, see `search-default-mode'
+default behavior used for searches, see `search-default-mode'
instead.")
;; We still support setting this to t for backwards compatibility.
(define-obsolete-variable-alias 'isearch-word
diff --git a/lisp/ses.el b/lisp/ses.el
index 9d278b6d222..ad3c39e93ea 100644
--- a/lisp/ses.el
+++ b/lisp/ses.el
@@ -3625,9 +3625,8 @@ function is redefined."
that the definition occurs only when the local printer does not
already exists.
-Function `ses-define-if-new-local-printer' is not interactive, it
-is intended for mode hooks to programatically automatically add
-local printers."
+Function `ses-define-if-new-local-printer' is not interactive; it
+is intended for mode hooks to add local printers automatically."
(unless (gethash name ses--local-printer-hashmap)
(ses-define-local-printer name def)))
@@ -3891,7 +3890,7 @@ current column and continues until the next nonblank column."
(defun ses-prin1 (value)
"Shorthand for '(prin1-to-string VALUE t)'.
-Usefull to handle the default behaviour in custom lambda based
+Useful to handle the default behavior in custom lambda based
printer functions."
(prin1-to-string value t))
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)
diff --git a/lisp/window.el b/lisp/window.el
index faefbd38e82..bf1f13e7766 100644
--- a/lisp/window.el
+++ b/lisp/window.el
@@ -6754,7 +6754,7 @@ displays a buffer that derives from one of the given modes. When
ALIST contains no `mode' entry, the current major mode of BUFFER
is used.
-The behaviour is also controlled by entries for
+The behavior is also controlled by entries for
`inhibit-same-window', `reusable-frames' and
`inhibit-switch-frame' as is done in the function
`display-buffer-reuse-window'."