aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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"))