aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2011-09-23 10:32:36 -0400
committerStefan Monnier2011-09-23 10:32:36 -0400
commit01c157cc39550b23ca6d083c36797fa1d7faa595 (patch)
tree35f8899ba44ddfdb06b6c8c924af121ffb4df479
parent022de23e6c93c5c4528f10a7d7feb6402d2a05c6 (diff)
downloademacs-01c157cc39550b23ca6d083c36797fa1d7faa595.tar.gz
emacs-01c157cc39550b23ca6d083c36797fa1d7faa595.zip
* lisp/subr.el (with-wrapper-hook): Fix edebug spec.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/subr.el2
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1fdad104fea..14948d41f7a 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12011-09-23 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * subr.el (with-wrapper-hook): Fix edebug spec.
4
12011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org> 52011-09-23 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 6
3 * simple.el (kill-line): Note effect of `show-trailing-whitespace' 7 * simple.el (kill-line): Note effect of `show-trailing-whitespace'
diff --git a/lisp/subr.el b/lisp/subr.el
index 0d8797b6f63..1aa714fa883 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1377,7 +1377,7 @@ arbitrary expression.
1377ARGS is a list of variables which will be passed as additional arguments 1377ARGS is a list of variables which will be passed as additional arguments
1378to each function, after the initial argument, and which the first argument 1378to each function, after the initial argument, and which the first argument
1379expects to receive when called." 1379expects to receive when called."
1380 (declare (indent 2) (debug t)) 1380 (declare (indent 2) (debug (form sexp body)))
1381 ;; We need those two gensyms because CL's lexical scoping is not available 1381 ;; We need those two gensyms because CL's lexical scoping is not available
1382 ;; for function arguments :-( 1382 ;; for function arguments :-(
1383 (let ((funs (make-symbol "funs")) 1383 (let ((funs (make-symbol "funs"))