comparison lisp/cmuscheme.el @ 9057:eee647e8ca9e

Comment changes.
author Richard M. Stallman <rms@gnu.org>
date Sat, 24 Sep 1994 04:09:46 +0000
parents cc7cd83ccf3f
children 5c6da502d9a5
comparison
equal deleted inserted replaced
9056:504324bc2741 9057:eee647e8ca9e
66 66
67 ;; YOUR .EMACS FILE 67 ;; YOUR .EMACS FILE
68 ;;============================================================================= 68 ;;=============================================================================
69 ;; Some suggestions for your .emacs file. 69 ;; Some suggestions for your .emacs file.
70 ;; 70 ;;
71 ;; ; If cmuscheme lives in some non-standard directory, you must tell emacs
72 ;; ; where to get it. This may or may not be necessary.
73 ;; (setq load-path (cons (expand-file-name "~jones/lib/emacs") load-path))
74 ;;
75 ;; ; Autoload run-scheme from file cmuscheme.el 71 ;; ; Autoload run-scheme from file cmuscheme.el
76 ;; (autoload 'run-scheme "cmuscheme" 72 ;; (autoload 'run-scheme "cmuscheme"
77 ;; "Run an inferior Scheme process." 73 ;; "Run an inferior Scheme process."
78 ;; t) 74 ;; t)
79 ;;
80 ;; ; Files ending in ".scm" are Scheme source,
81 ;; ; so put their buffers in scheme-mode.
82 ;; (setq auto-mode-alist
83 ;; (cons '("\\.scm$" . scheme-mode)
84 ;; auto-mode-alist))
85 ;; 75 ;;
86 ;; ; Define C-c t to run my favorite command in inferior scheme mode: 76 ;; ; Define C-c t to run my favorite command in inferior scheme mode:
87 ;; (setq cmuscheme-load-hook 77 ;; (setq cmuscheme-load-hook
88 ;; '((lambda () (define-key inferior-scheme-mode-map "\C-ct" 78 ;; '((lambda () (define-key inferior-scheme-mode-map "\C-ct"
89 ;; 'favorite-cmd)))) 79 ;; 'favorite-cmd))))