From mboxrd@z Thu Jan 1 00:00:00 1970 From: Keisuke Nishida To: guile-emacs@sourceware.cygnus.com Subject: guile-emacs-0.2 release Date: Wed, 15 Mar 2000 19:44:00 -0000 Message-id: X-SW-Source: 2000-q1/msg00023.html Hello, This is the second release of my Guile Emacs: http://download.sourceforge.net/gemacs/guile-emacs-0.2.tar.gz CVS is also available: http://sourceforge.net/cvs/?group_id=3545 The feature of import-lisp-variable that I described in my previous email has been implemented. Also, now we can define a command like this: (define-command (scheme-interaction-mode) "Scheme Interaction mode." (interactive) (kill-all-local-variables) (use-local-map scheme-interaction-mode-map) (set! (major-mode) 'scheme-interaction-mode) (set! (mode-name) "Scheme Interaction") (set-syntax-table scheme-mode-syntax-table) (scheme-mode-variables) (run-hooks 'scheme-interaction-mode-hook)) The next task is adding a new Lisp type and importing macros. I am not sure if I can do that very soon...