diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-09-03 11:13:53 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-09-03 13:05:32 +0200 |
commit | 0cabf8bc363cdeace84523b251752c0aac32b31b (patch) | |
tree | 314c6c45d255ce573e1dc3477b7f480cf4dd63e3 /lisp/emacs-lisp | |
parent | d1f324766631ad15b1e893463e93000298f44480 (diff) | |
download | emacs-0cabf8bc363cdeace84523b251752c0aac32b31b.tar.gz emacs-0cabf8bc363cdeace84523b251752c0aac32b31b.tar.bz2 emacs-0cabf8bc363cdeace84523b251752c0aac32b31b.zip |
; Fix typos
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/comp-cstr.el | 2 | ||||
-rw-r--r-- | lisp/emacs-lisp/map-ynp.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/comp-cstr.el b/lisp/emacs-lisp/comp-cstr.el index 3c5578217aa..6a3f6046d1c 100644 --- a/lisp/emacs-lisp/comp-cstr.el +++ b/lisp/emacs-lisp/comp-cstr.el @@ -152,7 +152,7 @@ Integer values are handled in the `range' slot.") (defun comp-cstrs-homogeneous (cstrs) "Check if constraints CSTRS are all homogeneously negated or non-negated. Return `pos' if they are all positive, `neg' if they are all -negated or nil othewise." +negated or nil otherwise." (cl-loop for cstr in cstrs unless (comp-cstr-neg cstr) diff --git a/lisp/emacs-lisp/map-ynp.el b/lisp/emacs-lisp/map-ynp.el index 0522b31f577..b95f11eab64 100644 --- a/lisp/emacs-lisp/map-ynp.el +++ b/lisp/emacs-lisp/map-ynp.el @@ -79,7 +79,7 @@ of the alist has the form (KEY FUNCTION HELP), where KEY is a character; FUNCTION is a function of one argument (an object from LIST); and HELP is a string. When the user presses KEY, FUNCTION is called; if it returns non-nil, the object is considered to have been \"acted upon\", -and `map-y-or-n-p' proceeeds to the next object from LIST. If +and `map-y-or-n-p' proceeds to the next object from LIST. If FUNCTION returns nil, the prompt is re-issued for the same object: this comes in handy if FUNCTION produces some display that will allow the user to make an intelligent decision whether the object in question |