1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

; Revert last change in eglot

* lisp/progmodes/eglot.el (eglot--managed-mode):
Use revert-buffer-in-progress-p again.
This commit is contained in:
Gerd Möllmann 2025-08-19 14:43:58 +02:00
parent e92da50e05
commit ab577467e4

View file

@ -2242,7 +2242,7 @@ Use `eglot-managed-p' to determine if current buffer is managed.")
(when (and eglot-autoshutdown
(null (eglot--managed-buffers server))
;; Don't shutdown if up again soon.
(not revert-buffer-in-progress))
(not revert-buffer-in-progress-p))
(eglot-shutdown server)))))))
(defun eglot--managed-mode-off ()