Mercurial > emacs
changeset 84924:c3fb2ef00f90
(top): Use `mapc' rather than `mapcar'.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Wed, 26 Sep 2007 00:30:33 +0000 |
parents | 85483f68777e |
children | 003285de78e4 |
files | lisp/progmodes/xscheme.el |
diffstat | 1 files changed, 11 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/xscheme.el Wed Sep 26 00:30:00 2007 +0000 +++ b/lisp/progmodes/xscheme.el Wed Sep 26 00:30:33 2007 +0000 @@ -101,17 +101,17 @@ (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."