diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-09-26 00:13:09 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-09-26 00:13:09 +0000 |
commit | 877c8877a22e0300ac00a8013acf9494cdfc6d67 (patch) | |
tree | 1e155038477e207cc151e3fdd79595e65674b802 /lisp/emacs-lisp/edebug.el | |
parent | 9b97ee2e4732fc31187ee110394579eea9b0f422 (diff) | |
download | emacs-877c8877a22e0300ac00a8013acf9494cdfc6d67.tar.gz |
(byte-compile-resolve-functions): Use `mapc' rather than `mapcar'.
Diffstat (limited to 'lisp/emacs-lisp/edebug.el')
-rw-r--r-- | lisp/emacs-lisp/edebug.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 964688894af..01d883d63be 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el @@ -4421,7 +4421,7 @@ With prefix argument, make it a temporary breakpoint." (defun byte-compile-resolve-functions (funcs) "Say it is OK for the named functions to be unresolved." - (mapcar + (mapc (function (lambda (func) (setq byte-compile-unresolved-functions |