]> git.eshelyaron.com Git - emacs.git/commitdiff
* pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 13 Apr 2010 01:24:10 +0000 (21:24 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 13 Apr 2010 01:24:10 +0000 (21:24 -0400)
lisp/ChangeLog
lisp/pcomplete.el

index 48a88fd0d0af0362abd18da6a406c68c657a2264..aade0e50854513720813c9fec520759e0400384d 100644 (file)
@@ -1,5 +1,7 @@
 2010-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
 
+       * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
+
        * emacs-lisp/easy-mmode.el (define-minor-mode): Passing a nil argument
        to the minor mode function now turns the mode ON unconditionally.
 
index 80f09492fee4c0c9b8211e015cc3f0a8cdaad933..65c05ae748710f9efa314245efb13a6365caaf96 100644 (file)
@@ -1113,7 +1113,7 @@ generate the completions list.  This means that the hook
 (defmacro pcomplete-here* (&optional form stub form-only)
   "An alternate form which does not participate in argument paring."
   (declare (debug t))
-  `(pcomplete-here (lambda () ,form) ,stub t ,form-only))
+  `(pcomplete-here ,form ,stub t ,form-only))
 
 ;; display support