From: Stefan Monnier Date: Fri, 3 May 2024 20:39:10 +0000 (-0400) Subject: * lisp/emacs-lisp/track-changes.el (track-changes-inconsistent-state-p): Typo X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d8d169aa633c3543c55a8900df2840f7822f4c9d;p=emacs.git * lisp/emacs-lisp/track-changes.el (track-changes-inconsistent-state-p): Typo (cherry picked from commit c9b0e2bd8eb1941da0ec937fc6e65772a8f85304) --- diff --git a/lisp/emacs-lisp/track-changes.el b/lisp/emacs-lisp/track-changes.el index 368e637387c..6562cc7eb86 100644 --- a/lisp/emacs-lisp/track-changes.el +++ b/lisp/emacs-lisp/track-changes.el @@ -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.