summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2024-06-04 22:13:47 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2024-06-04 22:16:28 -0700
commit3dcac22dd4225fdec0b97408da38f74de2a77bef (patch)
treec79a8563efbed67aae0bba5d46b628c1e8a5b69b /lisp/emacs-lisp
parent636461686f1d36388d4523cbb10eb7ec3bbbd63e (diff)
downloademacs-3dcac22dd4225fdec0b97408da38f74de2a77bef.tar.gz
emacs-3dcac22dd4225fdec0b97408da38f74de2a77bef.tar.bz2
emacs-3dcac22dd4225fdec0b97408da38f74de2a77bef.zip
Spelling fixes
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/comp.el2
-rw-r--r--lisp/emacs-lisp/package.el2
-rw-r--r--lisp/emacs-lisp/track-changes.el6
3 files changed, 5 insertions, 5 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 1627294199a..032e49840a8 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -207,7 +207,7 @@ Useful to hook into pass checkers.")
;; cl-macs.el. We can't use `cl-deftype-satisfies' directly as the
;; relation type <-> predicate is not bijective (bug#45576).
(defconst comp-known-predicates
- ;; FIXME: Auto-generate (most of) it from `cl-deftype-satifies'?
+ ;; FIXME: Auto-generate (most of) it from `cl-deftype-satisfies'?
'((arrayp array)
(atom atom)
(bool-vector-p bool-vector)
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index fda855d2143..fac824d44a4 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -2646,7 +2646,7 @@ will be deleted."
(message "Nothing to autoremove")))))
(defun package-isolate (packages &optional temp-init)
- "Start an uncustomised Emacs and only load a set of PACKAGES.
+ "Start an uncustomized Emacs and only load a set of PACKAGES.
If TEMP-INIT is non-nil, or when invoked with a prefix argument,
the Emacs user directory is set to a temporary directory."
(interactive
diff --git a/lisp/emacs-lisp/track-changes.el b/lisp/emacs-lisp/track-changes.el
index 958def17a2f..92d14959763 100644
--- a/lisp/emacs-lisp/track-changes.el
+++ b/lisp/emacs-lisp/track-changes.el
@@ -177,7 +177,7 @@ This is used to try and detect cases where buffer modifications are \"lost\".")
;; presume that these might be too old to receive fixes, so better not
;; annoy the user too much about errors.
(string-match "\\..*\\." emacs-version)
- "If non-nil, keep track of errors in `before/after-chage-functions' calls.
+ "If non-nil, keep track of errors in `before/after-change-functions' calls.
The errors are kept in `track-changes--error-log'.")
(cl-defun track-changes-register ( signal &key nobefore disjoint immediate)
@@ -500,9 +500,9 @@ Details logged to `track-changes--error-log'")
(if track-changes--before-clean
(progn
- ;; Detect disjointness with previous changes here as well,
+ ;; Detect disjointedness with previous changes here as well,
;; so that if a client calls `track-changes-fetch' all the time,
- ;; it doesn't prevent others from getting a disjointness signal.
+ ;; it doesn't prevent others from getting a disjointedness signal.
(when (and track-changes--before-beg
(let ((found nil))
(dolist (tracker track-changes--disjoint-trackers)