summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2007-09-25 11:13:24 +0000
committerJuanma Barranquero <lekktu@gmail.com>2007-09-25 11:13:24 +0000
commit9ca2204bbdb8b7883d89563e51ca6385a6d78a7e (patch)
treed332127aa9c3e89f74dc8e509de7bbad65f6a115 /lisp
parent81ce287c3374d5806c68dfc12e4c4f50dd18aefa (diff)
downloademacs-9ca2204bbdb8b7883d89563e51ca6385a6d78a7e.tar.gz
emacs-9ca2204bbdb8b7883d89563e51ca6385a6d78a7e.tar.bz2
emacs-9ca2204bbdb8b7883d89563e51ca6385a6d78a7e.zip
(clone-buffer): Use `mapc' rather than `mapcar'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/simple.el14
1 files changed, 7 insertions, 7 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 1a100fa7bff..182c96ca44d 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -5548,13 +5548,13 @@ after it has been set up properly in other respects."
(funcall mode)
;; Set up other local variables.
- (mapcar (lambda (v)
- (condition-case () ;in case var is read-only
- (if (symbolp v)
- (makunbound v)
- (set (make-local-variable (car v)) (cdr v)))
- (error nil)))
- lvars)
+ (mapc (lambda (v)
+ (condition-case () ;in case var is read-only
+ (if (symbolp v)
+ (makunbound v)
+ (set (make-local-variable (car v)) (cdr v)))
+ (error nil)))
+ lvars)
;; Run any hooks (typically set up by the major mode
;; for cloning to work properly).