1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

Spelling fixes

This commit is contained in:
Paul Eggert 2024-06-04 22:13:47 -07:00
parent 636461686f
commit 3dcac22dd4
47 changed files with 65 additions and 65 deletions

View file

@ -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)

View file

@ -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

View file

@ -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)