Mercurial > emacs
changeset 107844:17333bba44b4
* pcomplete.el (pcomplete-here*): Fix mistaken change (bug#5935).
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 12 Apr 2010 21:24:10 -0400 |
parents | 64cb38b81502 |
children | 688679bd79f5 |
files | lisp/ChangeLog lisp/pcomplete.el |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 <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.
--- 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