]> git.eshelyaron.com Git - emacs.git/commitdiff
; (completion-preview-complete): Fix bug#76606
authorEshel Yaron <me@eshelyaron.com>
Thu, 27 Feb 2025 14:34:24 +0000 (15:34 +0100)
committerEshel Yaron <me@eshelyaron.com>
Tue, 4 Mar 2025 20:50:51 +0000 (21:50 +0100)
* lisp/completion-preview.el (completion-preview-complete):
Dismiss completion preview before calling ':exit-function'.
This eliminates potential flicker with slow exit functions
and avoids the broken preview update reported in bug#76606.

(cherry picked from commit 840c6824589c9a82deedc5112891d8014d134746)

lisp/completion-preview.el

index 6ace3f736d195725c7784132c454eee0ed57047e..a8ff78d775cd88ca8767b69337fad70fccf260dd 100644 (file)
@@ -831,6 +831,10 @@ completions list."
             ;; hook update the completion preview in case the candidate
             ;; can be completed further.
             (when (functionp efn)
+              ;; Remove stale preview since `efn' can make arbitrary
+              ;; text and point modifications that might interfere with
+              ;; a subsequent preview update.  See bug#76606.
+              (completion-preview-active-mode -1)
               (funcall efn (concat base com) (if (cdr all) 'exact 'finished)))
           ;; Otherwise, remove the common prefix from the preview.
           (completion-preview--inhibit-update)