dylan-lang / dylan-emacs-support

Emacs mode for indenting and highlighting Dylan code
GNU General Public License v2.0
27 stars 8 forks source link

DIME incorrectly claims that inferior-dylan-program isn't set #24

Open Rageoholic opened 7 years ago

Rageoholic commented 7 years ago

So I set up DIME with this code

;;; Dylan
(add-to-list 'load-path "~/dylan-mode")
(setq inferior-dylan-program "dswank")
(require 'dime)
(dime-setup '(dime-dylan dime-repl))
(setenv "OPEN_DYLAN_USER_REGISTRIES" "/home/rage/Downloads/opendylan-2014.1/sources/registry")

but when I try to run DIME it claims that I never set inferior-dylan-program. Am I doing something wrong or is the plugin broken somehow.