From: Dmitry Gutov Date: Fri, 6 Aug 2021 08:34:02 +0000 (+0300) Subject: Add colon-space after prompt X-Git-Tag: emacs-28.0.90~1591^2~14 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=35cea6c94c658f101548df5325ec3abda0079d2a;p=emacs.git Add colon-space after prompt * lisp/progmodes/project.el (project--completing-read-strict): Fix last change's regression (bug#49865). --- diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index 6a330ecb2b3..b7101754779 100644 --- a/lisp/progmodes/project.el +++ b/lisp/progmodes/project.el @@ -885,7 +885,7 @@ PREDICATE, HIST, and DEFAULT have the same meaning as in (lambda () (let ((minibuffer-default default)) (minibuffer-default-add-completions))))) - (completing-read prompt + (completing-read (format "%s: " prompt) collection predicate 'confirm nil hist)))