]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/track-changes.el (track-changes-inconsistent-state-p): Typo
authorStefan Monnier <monnier@iro.umontreal.ca>
Fri, 3 May 2024 20:39:10 +0000 (16:39 -0400)
committerEshel Yaron <me@eshelyaron.com>
Mon, 6 May 2024 16:37:59 +0000 (18:37 +0200)
(cherry picked from commit c9b0e2bd8eb1941da0ec937fc6e65772a8f85304)

lisp/emacs-lisp/track-changes.el

index 368e637387c42d011ee537eed4a2421f4706ffb9..6562cc7eb86b4b11ec868a27cf66c7ffe44a75af 100644 (file)
@@ -375,7 +375,7 @@ running those hooks.
 This function tries to detect those situations so clients can decide
 to postpone their work to a later time when the buffer is hopefully
 returned to a consistent state."
-  (or (equal track-changes--buffer-size (buffer-size))
+  (or (not (equal track-changes--buffer-size (buffer-size)))
       inhibit-modification-hooks))
 
 ;;;; Auxiliary functions.