hi all,<br>this is not really a cm problem, but i&#39;m curious: i&#39;ve tried a few different ways to get the new cm3/s7 thing running interactively in xemacs, but each time only succeed in getting a prompt that doesn&#39;t evaluate input - i can type at the prompt, but hitting &#39;enter&#39; doesn&#39;t produce the expected interaction. <br>
<br>i&#39;ve tried the following in my .xemacs/init.el<br><br>(setq scheme-program-name &quot;/usr/local/bin/cm3&quot;)<br>;;M-x run-scheme<br><br>(setq cm3 &quot;/usr/local/bin/cm3&quot;)<br>(defun cm3s7 () (inferior-lisp cm3))<br>
;;M-: (cm3s7)<br><br>(defun cm3s7 ()<br>&nbsp;&nbsp;&nbsp; &quot;Runs cm3 in s7 scheme&quot;<br>&nbsp;&nbsp;&nbsp; (interactive)<br>&nbsp;&nbsp;&nbsp; (run-scheme &quot;/usr/local/bin/cm3 -emacs&quot;)<br>&nbsp;&nbsp;&nbsp; (process-kill-without-query (get-process &quot;scheme&quot;)))<br>

;;M-: (cm3s7)<br><br>each of these has pretty much the same effect.<br><br>but any of these work perfectly in emacs ... any thoughts?<br><br>b<br>