aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/xscheme.el
diff options
context:
space:
mode:
authorJuanma Barranquero <[email protected]>2007-09-26 00:30:33 +0000
committerJuanma Barranquero <[email protected]>2007-09-26 00:30:33 +0000
commite2c527c5794cb714731ad6b062d871f5100bbbf4 (patch)
tree4df4ee3af6f01d2a6e2be350fb81c259f0c07b22 /lisp/progmodes/xscheme.el
parent51b5ad576f72385d2a62baaedccaae04c78535ab (diff)
(top): Use `mapc' rather than `mapcar'.
Diffstat (limited to 'lisp/progmodes/xscheme.el')
-rw-r--r--lisp/progmodes/xscheme.el22
1 files changed, 11 insertions, 11 deletions
diff --git a/lisp/progmodes/xscheme.el b/lisp/progmodes/xscheme.el
index a820ca4ced..f437bb7da3 100644
--- a/lisp/progmodes/xscheme.el
+++ b/lisp/progmodes/xscheme.el
@@ -101,17 +101,17 @@ from being inserted into the process-buffer.")
(setq-default scheme-mode-line-process
'("" xscheme-runlight))
-(mapcar 'make-variable-buffer-local
- '(xscheme-expressions-ring
- xscheme-expressions-ring-yank-pointer
- xscheme-process-filter-state
- xscheme-running-p
- xscheme-control-g-disabled-p
- xscheme-allow-output-p
- xscheme-prompt
- xscheme-string-accumulator
- xscheme-mode-string
- scheme-mode-line-process))
+(mapc 'make-variable-buffer-local
+ '(xscheme-expressions-ring
+ xscheme-expressions-ring-yank-pointer
+ xscheme-process-filter-state
+ xscheme-running-p
+ xscheme-control-g-disabled-p
+ xscheme-allow-output-p
+ xscheme-prompt
+ xscheme-string-accumulator
+ xscheme-mode-string
+ scheme-mode-line-process))
(defgroup xscheme nil
"Major mode for editing Scheme and interacting with MIT's C-Scheme."