aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2010-06-25 00:51:14 +0300
committerJuri Linkov2010-06-25 00:51:14 +0300
commit8f3b8a5f42fe223012cfa6e84f0d079c49595f56 (patch)
tree9787551b6b5ca23403bc6fe4a1e278cbda76ed70
parent5af72a47bb2786e2eda849682f791f932d97375f (diff)
downloademacs-8f3b8a5f42fe223012cfa6e84f0d079c49595f56.tar.gz
emacs-8f3b8a5f42fe223012cfa6e84f0d079c49595f56.zip
* lisp/minibuffer.el (completions-format): Change default from nil to
`horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/minibuffer.el6
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 6e19fb7b650..4e2b7028dd7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,10 @@
12010-06-24 Juri Linkov <juri@jurta.org> 12010-06-24 Juri Linkov <juri@jurta.org>
2 2
3 * minibuffer.el (completions-format): Change default from nil to
4 `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459)
5
62010-06-24 Juri Linkov <juri@jurta.org>
7
3 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function' 8 * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
4 buffer-locally to lambda that re-runs the vc diff command. 9 buffer-locally to lambda that re-runs the vc diff command.
5 (Bug#6447) 10 (Bug#6447)
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el
index 646b773caf2..3f22099bfd1 100644
--- a/lisp/minibuffer.el
+++ b/lisp/minibuffer.el
@@ -891,13 +891,13 @@ Return nil if there is no valid completion, else t."
891(defface completions-annotations '((t :inherit italic)) 891(defface completions-annotations '((t :inherit italic))
892 "Face to use for annotations in the *Completions* buffer.") 892 "Face to use for annotations in the *Completions* buffer.")
893 893
894(defcustom completions-format nil 894(defcustom completions-format 'horizontal
895 "Define the appearance and sorting of completions. 895 "Define the appearance and sorting of completions.
896If the value is `vertical', display completions sorted vertically 896If the value is `vertical', display completions sorted vertically
897in columns in the *Completions* buffer. 897in columns in the *Completions* buffer.
898If the value is `horizontal' or nil, display completions sorted 898If the value is `horizontal', display completions sorted
899horizontally in alphabetical order, rather than down the screen." 899horizontally in alphabetical order, rather than down the screen."
900 :type '(choice (const nil) (const horizontal) (const vertical)) 900 :type '(choice (const horizontal) (const vertical))
901 :group 'minibuffer 901 :group 'minibuffer
902 :version "23.2") 902 :version "23.2")
903 903