From 2f7f3647e2f623f3fc20fab4d130a66e191f360d Mon Sep 17 00:00:00 2001 From: "Elias G. Perez" Date: Sun, 2 Jun 2024 20:59:23 -0600 Subject: [PATCH] * lisp/autoinsert.el (auto-insert-alist): Allow empty input in elisp Allow insert empty string as initial input. This should fix bugs from 3rd-party completion UI. --- lisp/autoinsert.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/autoinsert.el b/lisp/autoinsert.el index f2631422c62..9418590aaee 100644 --- a/lisp/autoinsert.el +++ b/lisp/autoinsert.el @@ -212,7 +212,7 @@ auto-insert-alist finder-known-keywords "\n")) ((let ((minibuffer-help-form v2)) - (completing-read "Keyword, C-h: " v1 nil t)) + (completing-read "Keyword, C-h: " v1 nil t nil nil "")) str ", ") & -2 " -- 2.44.0.windows.1