emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r100638: * lisp/minibuffer.el (comple


From: Juri Linkov
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100638: * lisp/minibuffer.el (completions-format): Change default from nil to
Date: Fri, 25 Jun 2010 00:51:14 +0300
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100638
committer: Juri Linkov <address@hidden>
branch nick: trunk
timestamp: Fri 2010-06-25 00:51:14 +0300
message:
  * lisp/minibuffer.el (completions-format): Change default from nil to
  `horizontal'.  Remove `nil' value from :type.  Doc fix.  (Bug#6459)
modified:
  lisp/ChangeLog
  lisp/minibuffer.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-06-24 21:38:07 +0000
+++ b/lisp/ChangeLog    2010-06-24 21:51:14 +0000
@@ -1,5 +1,10 @@
 2010-06-24  Juri Linkov  <address@hidden>
 
+       * minibuffer.el (completions-format): Change default from nil to
+       `horizontal'.  Remove `nil' value from :type.  Doc fix.  (Bug#6459)
+
+2010-06-24  Juri Linkov  <address@hidden>
+
        * vc/vc.el (vc-diff-internal): Set `revert-buffer-function'
        buffer-locally to lambda that re-runs the vc diff command.
        (Bug#6447)

=== modified file 'lisp/minibuffer.el'
--- a/lisp/minibuffer.el        2010-05-30 14:17:31 +0000
+++ b/lisp/minibuffer.el        2010-06-24 21:51:14 +0000
@@ -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")
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]