From d8d169aa633c3543c55a8900df2840f7822f4c9d Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 3 May 2024 16:39:10 -0400 Subject: [PATCH] * lisp/emacs-lisp/track-changes.el (track-changes-inconsistent-state-p): Typo (cherry picked from commit c9b0e2bd8eb1941da0ec937fc6e65772a8f85304) --- lisp/emacs-lisp/track-changes.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.39.5