# HG changeset patch # User Juri Linkov # Date 1277416274 -10800 # Node ID f0d32dbd0fcf7aeb9883fce869592c8693db61fe # Parent 50dd8d98f75b2ac68990d8b0f684d609166ad17c * lisp/minibuffer.el (completions-format): Change default from nil to `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459) diff -r 50dd8d98f75b -r f0d32dbd0fcf lisp/ChangeLog --- a/lisp/ChangeLog Fri Jun 25 00:38:07 2010 +0300 +++ b/lisp/ChangeLog Fri Jun 25 00:51:14 2010 +0300 @@ -1,3 +1,8 @@ +2010-06-24 Juri Linkov + + * minibuffer.el (completions-format): Change default from nil to + `horizontal'. Remove `nil' value from :type. Doc fix. (Bug#6459) + 2010-06-24 Juri Linkov * vc/vc.el (vc-diff-internal): Set `revert-buffer-function' diff -r 50dd8d98f75b -r f0d32dbd0fcf lisp/minibuffer.el --- a/lisp/minibuffer.el Fri Jun 25 00:38:07 2010 +0300 +++ b/lisp/minibuffer.el Fri Jun 25 00:51:14 2010 +0300 @@ -891,13 +891,13 @@ (defface completions-annotations '((t :inherit italic)) "Face to use for annotations in the *Completions* buffer.") -(defcustom completions-format nil +(defcustom completions-format 'horizontal "Define the appearance and sorting of completions. If the value is `vertical', display completions sorted vertically in columns in the *Completions* buffer. -If the value is `horizontal' or nil, display completions sorted +If the value is `horizontal', display completions sorted horizontally in alphabetical order, rather than down the screen." - :type '(choice (const nil) (const horizontal) (const vertical)) + :type '(choice (const horizontal) (const vertical)) :group 'minibuffer :version "23.2")