diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2024-06-04 22:13:47 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2024-06-04 22:16:28 -0700 |
commit | 3dcac22dd4225fdec0b97408da38f74de2a77bef (patch) | |
tree | c79a8563efbed67aae0bba5d46b628c1e8a5b69b /lisp/emacs-lisp/track-changes.el | |
parent | 636461686f1d36388d4523cbb10eb7ec3bbbd63e (diff) | |
download | emacs-3dcac22dd4225fdec0b97408da38f74de2a77bef.tar.gz emacs-3dcac22dd4225fdec0b97408da38f74de2a77bef.tar.bz2 emacs-3dcac22dd4225fdec0b97408da38f74de2a77bef.zip |
Spelling fixes
Diffstat (limited to 'lisp/emacs-lisp/track-changes.el')
-rw-r--r-- | lisp/emacs-lisp/track-changes.el | 6 |
1 files changed, 3 insertions, 3 deletions
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) |