1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-16 17:19:41 +00:00

(generic-mode-internal): Use mapc' rather than mapcar'.

This commit is contained in:
Juanma Barranquero 2007-09-26 00:14:38 +00:00
parent 9eaacc8436
commit ba2153737a

View File

@ -205,7 +205,7 @@ See the file generic-x.el for some examples of `define-generic-mode'."
(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)))