From 4b6f7dc970e8aeff7106e4c7f38404277e6eba3f Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Thu, 21 Aug 2008 17:28:58 +0000 Subject: [PATCH] (completion--try-word-completion): Disable partial-completion when considering the addition of a space or hyphen. --- lisp/minibuffer.el | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index d33bd5f9836..a59fac6d556 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -615,14 +615,9 @@ input if confirmed." (let ((exts '(" " "-")) (before (substring string 0 point)) (after (substring string point)) - ;; If the user hasn't entered any text yet, then she - ;; presumably hits SPC to see the *completions*, but - ;; partial-completion will often find a " " or a "-" to match. - ;; So disable partial-completion in that situation. - (completion-styles - (or (and (equal string "") - (remove 'partial-completion completion-styles)) - completion-styles)) + ;; Disable partial-completion for this. + (completion-styles + (remove 'partial-completion completion-styles)) tem) (while (and exts (not (consp tem))) (setq tem (completion-try-completion -- 2.39.5