;;; .emacs Scheme support (setq load-path (cons "~/emacs" load-path)) (autoload 'scheme-mode "iuscheme" "Major mode for Scheme." t) (autoload 'run-scheme "iuscheme" "Switch to interactive Scheme buffer." t) (autoload 'run-alt-scheme "iuscheme" "Switch to interactive alternative Scheme buffer." t) (setq auto-mode-alist (cons '("\\.ss$" . scheme-mode) auto-mode-alist))