From a4151f3b49ab27fb81135602064c99cac6d4b3e0 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 27 Dec 2013 07:55:26 -0500 Subject: [PATCH] * lisp/icomplete.el (icomplete-show-matches-on-no-input): Default to nil. Fixes: debbugs:16251 --- lisp/ChangeLog | 3 +++ lisp/icomplete.el | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e9685a23299..2782cc4e64c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2013-12-27 Stefan Monnier + * icomplete.el (icomplete-show-matches-on-no-input): Default to nil + (bug#16251). + * electric.el: Move all electric-pair-* to elec-pair.el. * elec-pair.el: New file, split from electric.el. diff --git a/lisp/icomplete.el b/lisp/icomplete.el index 740a1967b33..dcb31a2755a 100644 --- a/lisp/icomplete.el +++ b/lisp/icomplete.el @@ -78,7 +78,7 @@ When nil, show candidates in full." :type 'boolean :version "24.4") -(defcustom icomplete-show-matches-on-no-input t +(defcustom icomplete-show-matches-on-no-input nil "When non-nil, show completions when first prompting for input." :type 'boolean :version "24.4") -- 2.11.4.GIT