Changes http://wiki.axiom-developer.org/AxiomEmacsMode/diff
--

??changed:
 \begin{document}
-\title{\$SPAD/src/emacs/axiommode.el\\Version 30-09-2007} 
+\title{\$SPAD/src/emacs/axiommode.el\\Version 01-10-2007} 
 \author{Jay Belanger, Fran\c{c}ois Maltey, Martin Rubey and Cliff Yapp}

??changed:
     output.  Assumes that we are just after a prompt."
-  (let ((inhibit-read-only t)
-        (begin (progn (forward-line 0) (point)))
-        (end (progn (end-of-line) (point)))
-        (dir))
+  (let* ((inhibit-read-only t)
+         (begin (progn (forward-line 0) (point)))
+         (end (progn (end-of-line) (point)))
+         (dir))
     (delete-region begin end)

??changed:
 ;; Now that everything is defined, bind the return key to our new eval function
-(define-key axiom-mode-map [return] 'axiom-eval)
+;; doesn't work in terminal
+;; (define-key axiom-mode-map [return] 'axiom-eval)
+(define-key axiom-mode-map "\C-m" 'axiom-eval)
 

??changed:
 
-(define-key axiom-mode-map [(meta return)] 'axiom-eval-append)
+;; doesn't work in terminal
+;;(define-key axiom-mode-map [(meta return)] 'axiom-eval-append)
+(define-key axiom-mode-map "\M-\C-m" 'axiom-eval-append)
 

??changed:
 
-I had [[(define-key axiom-mode-map [tab] 'axiom-dynamic-complete)]]
+I had [[(define-key axiom-mode-map [(tab)] 'axiom-dynamic-complete)]]
 here before, but that did not work entirely: hitting tab twice inserted a tab!

--
forwarded from http://wiki.axiom-developer.org/[EMAIL PROTECTED]

Reply via email to