diff options
author | Po Lu <luangruo@yahoo.com> | 2021-12-22 18:37:31 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2021-12-22 21:33:00 +0800 |
commit | 4154a85d813d94726fbcc5adb824d42d234786c6 (patch) | |
tree | 649f31fe0535aed78ee61c282a1d50b4d9181007 /lisp | |
parent | 70266929c3eb173fae0c64d56f8d402a805ca786 (diff) | |
download | emacs-4154a85d813d94726fbcc5adb824d42d234786c6.tar.gz emacs-4154a85d813d94726fbcc5adb824d42d234786c6.tar.bz2 emacs-4154a85d813d94726fbcc5adb824d42d234786c6.zip |
Disable by default and add NEWS entry to the new completion behavior
* etc/NEWS: Announce 'completion-auto-select'.
* lisp/simple.el (completion-auto-select): Default to nil.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/simple.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index eb21814a3d4..13fbc6ac399 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -9259,7 +9259,7 @@ Called from `temp-buffer-show-hook'." :version "22.1" :group 'completion) -(defcustom completion-auto-select t +(defcustom completion-auto-select nil "Non-nil means to automatically select the completions buffer." :type 'boolean :version "29.1" |