changeset 93942:187008494f10

(completion-auto-help): Fix typo.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 09 Apr 2008 21:18:25 +0000
parents c024d26a0a5d
children c37cef77beb1
files lisp/minibuffer.el
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/minibuffer.el	Wed Apr 09 20:42:39 2008 +0000
+++ b/lisp/minibuffer.el	Wed Apr 09 21:18:25 2008 +0000
@@ -71,7 +71,7 @@
 is requested but cannot be done.
 If the value is `lazy', the *Completions* buffer is only displayed after
 the second failed attempt to complete."
-  :type (choice (const nil) (const t) (const lazy))
+  :type '(choice (const nil) (const t) (const lazy))
   :group 'minibuffer)
 
 (defun minibuffer--bitset (modified completions exact)
@@ -248,7 +248,7 @@
       ;; which makes it trivial to find the position, but with fancier
       ;; completion (plus env-var expansion, ...) `completion' might not
       ;; look anything like `string' at all.
-      
+
       (when minibuffer-completing-file-name
 	;; In order to minimize the problem mentioned above, let's try to
 	;; reduce the different between `string' and `completion' by
@@ -394,7 +394,7 @@
       (goto-char (point-max))
       (if (null completions)
 	  (insert "There are no possible completions of what you have typed.")
-	
+
 	(insert "Possible completions are:\n")
 	(minibuffer--insert-strings completions))))
   (let ((completion-common-substring common-substring))