|
| From: | Ralf Hemmecke |
| Subject: | [Axiom-developer] Re: axiom mode for emacs. |
| Date: | Fri, 25 May 2007 08:33:42 +0200 |
| User-agent: | Thunderbird 2.0.0.0 (X11/20070326) |
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")))
| [Prev in Thread] | Current Thread | [Next in Thread] |