By the way, any xemacs experts out there? I tried to port it today, but failed miserably. I was able to fix the problem reported by Ralf concerning ^M as below, but could not, for example, find a replacement for comint-set-process-mark.
For emacs, I found /usr/share/emacs/21.4/lisp/comint.el . Since you use ubuntu (right?) it should be in the same place. Maybe you just reimplement that function. I have no idea why the emacs and xemacs people cannot agree to get closer to each other.
Ralf (defun comint-set-process-mark () "Set the process mark at point." (interactive) (let ((proc (or (get-buffer-process (current-buffer)) (error "Current buffer has no process")))) (set-marker (process-mark proc) (point)) (message "Process mark set"))) _______________________________________________ Axiom-developer mailing list Axiom-developer@nongnu.org http://lists.nongnu.org/mailman/listinfo/axiom-developer