aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2012-07-13 19:02:18 +0200
committerJuanma Barranquero2012-07-13 19:02:18 +0200
commit80185fed36fb93b579f123a4fb1543e2cd8ac0f2 (patch)
tree1063b67a2f7618e6a89f20ada6b15d62a6e63dbd
parent97662200b3e47fd39911831b86990da2e7f932ca (diff)
downloademacs-80185fed36fb93b579f123a4fb1543e2cd8ac0f2.tar.gz
emacs-80185fed36fb93b579f123a4fb1543e2cd8ac0f2.zip
lisp/bindings.el (top): Use `mapc' instead of `mapcar'.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/bindings.el16
2 files changed, 10 insertions, 8 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fddca331106..1d5c4fd61cc 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12012-07-13 Juanma Barranquero <lekktu@gmail.com> 12012-07-13 Juanma Barranquero <lekktu@gmail.com>
2 2
3 * bindings.el (top): Use `mapc' instead of `mapcar'.
4
3 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca). 5 * loadup.el (top): Remove bogus `if' choice (brought by 2008-06-21T01:38:39Z!monnier@iro.umontreal.ca).
4 6
52012-07-13 Michael Albinus <michael.albinus@gmx.de> 72012-07-13 Michael Albinus <michael.albinus@gmx.de>
diff --git a/lisp/bindings.el b/lisp/bindings.el
index 97450f788aa..96700c6dc26 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -657,14 +657,14 @@ okay. See `mode-line-format'.")
657;; For consistency, we give them the `permanent-local' property, even 657;; For consistency, we give them the `permanent-local' property, even
658;; though `kill-all-local-variables' does not actually consult it. 658;; though `kill-all-local-variables' does not actually consult it.
659 659
660(mapcar (lambda (sym) (put sym 'permanent-local t)) 660(mapc (lambda (sym) (put sym 'permanent-local t))
661 '(buffer-file-name default-directory buffer-backed-up 661 '(buffer-file-name default-directory buffer-backed-up
662 buffer-saved-size buffer-auto-save-file-name 662 buffer-saved-size buffer-auto-save-file-name
663 buffer-read-only buffer-undo-list mark-active 663 buffer-read-only buffer-undo-list mark-active
664 point-before-scroll buffer-file-truename 664 point-before-scroll buffer-file-truename
665 buffer-file-format buffer-auto-save-file-format 665 buffer-file-format buffer-auto-save-file-format
666 buffer-display-count buffer-display-time 666 buffer-display-count buffer-display-time
667 enable-multibyte-characters)) 667 enable-multibyte-characters))
668 668
669;; We have base64, md5 and sha1 functions built in now. 669;; We have base64, md5 and sha1 functions built in now.
670(provide 'base64) 670(provide 'base64)