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-Tag: archive/raspbian/1%30.1+1-3+rpi1^2~2^2~20^2~1667 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=c9b0e2bd8eb1941da0ec937fc6e65772a8f85304;p=emacs.git * lisp/emacs-lisp/track-changes.el (track-changes-inconsistent-state-p): Typo --- 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.