hi all,<br>this is not really a cm problem, but i'm curious: i'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't evaluate input - i can type at the prompt, but hitting 'enter' doesn't produce the expected interaction. <br>
<br>i've tried the following in my .xemacs/init.el<br><br>(setq scheme-program-name "/usr/local/bin/cm3")<br>;;M-x run-scheme<br><br>(setq cm3 "/usr/local/bin/cm3")<br>(defun cm3s7 () (inferior-lisp cm3))<br>
;;M-: (cm3s7)<br><br>(defun cm3s7 ()<br> "Runs cm3 in s7 scheme"<br> (interactive)<br> (run-scheme "/usr/local/bin/cm3 -emacs")<br> (process-kill-without-query (get-process "scheme")))<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>