diff options
| author | Juanma Barranquero | 2012-07-13 19:02:18 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2012-07-13 19:02:18 +0200 |
| commit | 80185fed36fb93b579f123a4fb1543e2cd8ac0f2 (patch) | |
| tree | 1063b67a2f7618e6a89f20ada6b15d62a6e63dbd | |
| parent | 97662200b3e47fd39911831b86990da2e7f932ca (diff) | |
| download | emacs-80185fed36fb93b579f123a4fb1543e2cd8ac0f2.tar.gz emacs-80185fed36fb93b579f123a4fb1543e2cd8ac0f2.zip | |
lisp/bindings.el (top): Use `mapc' instead of `mapcar'.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/bindings.el | 16 |
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 @@ | |||
| 1 | 2012-07-13 Juanma Barranquero <lekktu@gmail.com> | 1 | 2012-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 | ||
| 5 | 2012-07-13 Michael Albinus <michael.albinus@gmx.de> | 7 | 2012-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) |