Mercurial > emacs
changeset 84901:c22466a5f332
(generic-mode-internal): Use `mapc' rather than `mapcar'.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Wed, 26 Sep 2007 00:14:38 +0000 |
parents | 38183e606be5 |
children | ba9c9ff8aab7 |
files | lisp/emacs-lisp/generic.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/generic.el Wed Sep 26 00:14:17 2007 +0000 +++ b/lisp/emacs-lisp/generic.el Wed Sep 26 00:14:38 2007 +0000 @@ -205,7 +205,7 @@ (setq font-lock-defaults '(generic-font-lock-keywords)) ;; Call a list of functions - (mapcar 'funcall function-list) + (mapc 'funcall function-list) (run-mode-hooks mode-hook)))