aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/startup.el
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2007-09-25 11:14:28 +0000
committerJuanma Barranquero <[email protected]>2007-09-25 11:14:28 +0000
commite18c18e8709436f35e3c4f9e1c7387e856d2848a (patch)
treed8b286989ac850459ed6f618ad2836b26e3d451a /lisp/startup.el
parent9ca2204bbdb8b7883d89563e51ca6385a6d78a7e (diff)
(command-line): Use `mapc' rather than `mapcar'.
Diffstat (limited to 'lisp/startup.el')
-rw-r--r--lisp/startup.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index 7bf5400345..395d1673a1 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -1032,11 +1032,11 @@ opening the first frame (e.g. open a connection to an X server).")
;; buffers (probably *scratch*, *Messages*, *Minibuff-0*).
;; Arguably this should only be done if they're free of
;; multibyte characters.
- (mapcar (lambda (buffer)
- (with-current-buffer buffer
- (if enable-multibyte-characters
- (set-buffer-multibyte nil))))
- (buffer-list))
+ (mapc (lambda (buffer)
+ (with-current-buffer buffer
+ (if enable-multibyte-characters
+ (set-buffer-multibyte nil))))
+ (buffer-list))
;; Also re-set the language environment in case it was
;; originally done before unibyte was set and is sensitive to
;; unibyte (display table, terminal coding system &c).