# HG changeset patch # User Stefan Monnier # Date 1271121850 14400 # Node ID 17333bba44b4a1a82acd2624fbcc814a7e7431e9 # Parent 64cb38b8150227ca58ba621b843568cc7f22b663 * pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935). diff -r 64cb38b81502 -r 17333bba44b4 lisp/ChangeLog --- a/lisp/ChangeLog Mon Apr 12 21:03:04 2010 -0400 +++ b/lisp/ChangeLog Mon Apr 12 21:24:10 2010 -0400 @@ -1,5 +1,7 @@ 2010-04-13 Stefan Monnier + * 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. diff -r 64cb38b81502 -r 17333bba44b4 lisp/pcomplete.el --- a/lisp/pcomplete.el Mon Apr 12 21:03:04 2010 -0400 +++ b/lisp/pcomplete.el Mon Apr 12 21:24:10 2010 -0400 @@ -1113,7 +1113,7 @@ (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