comparison lisp/xscheme.el @ 33481:8af1f6c81e70

(scheme-program-name): Don't define here.
author Dave Love <fx@gnu.org>
date Tue, 14 Nov 2000 14:34:13 +0000
parents 77868152457d
children 0715d86d229c
comparison
equal deleted inserted replaced
33480:618e348d3257 33481:8af1f6c81e70
34 (require 'scheme) 34 (require 'scheme)
35 35
36 (defgroup xscheme nil 36 (defgroup xscheme nil
37 "Major mode for editing Scheme and interacting with MIT's C-Scheme." 37 "Major mode for editing Scheme and interacting with MIT's C-Scheme."
38 :group 'lisp) 38 :group 'lisp)
39
40 (defcustom scheme-program-name "scheme"
41 "*Program invoked by the `run-scheme' command."
42 :type 'string
43 :group 'xscheme)
44 39
45 (defcustom scheme-band-name nil 40 (defcustom scheme-band-name nil
46 "*Band loaded by the `run-scheme' command." 41 "*Band loaded by the `run-scheme' command."
47 :type '(choice (const nil) string) 42 :type '(choice (const nil) string)
48 :group 'xscheme) 43 :group 'xscheme)