emacs では、以下のように clisp を独自のバッファーで実行できます。
(defun clisp ()
(interactive)
(async-shell-command "clisp -q -modern -ansi" "*clisp*"))
(global-set-key "\C-c\C-l" 'clisp)
emacs を使用せずに、使用xterm -e clisp
して実行できます。xterm を使用せずに xmonad ウィンドウ内で clisp を実行できますか?
心から!