This is the mail archive of the guile-emacs@sourceware.cygnus.com mailing list for the Guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

guile-emacs-0.2 release


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...

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]