]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment changes.
authorRichard M. Stallman <rms@gnu.org>
Sat, 24 Sep 1994 04:09:46 +0000 (04:09 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 24 Sep 1994 04:09:46 +0000 (04:09 +0000)
lisp/cmuscheme.el

index 885a7a72ea062412bd69a6d90bc3e911bb64c732..cc09c81b23b30dcc112ddb5de170de0c0f2b667e 100644 (file)
 ;;=============================================================================
 ;; Some suggestions for your .emacs file.
 ;;
-;; ; If cmuscheme lives in some non-standard directory, you must tell emacs
-;; ; where to get it. This may or may not be necessary.
-;; (setq load-path (cons (expand-file-name "~jones/lib/emacs") load-path))
-;;
 ;; ; Autoload run-scheme from file cmuscheme.el
 ;; (autoload 'run-scheme "cmuscheme"
 ;;           "Run an inferior Scheme process."
 ;;           t)
 ;;
-;; ; Files ending in ".scm" are Scheme source, 
-;; ; so put their buffers in scheme-mode.
-;; (setq auto-mode-alist 
-;;       (cons '("\\.scm$" . scheme-mode)  
-;;             auto-mode-alist))
-;;
 ;; ; Define C-c t to run my favorite command in inferior scheme mode:
 ;; (setq cmuscheme-load-hook
 ;;       '((lambda () (define-key inferior-scheme-mode-map "\C-ct"