1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-18 10:10:23 +02:00
guile/module/language/elisp
Daniel Kraft 1e018f6c67 Some bug fixes on the way and mainly implemented some built-ins (arithmetic).
* module/language/elisp/README: Document changes.
* module/language/elisp/compile-tree-il.scm: Bug fixes to fluid-creation.
* module/language/elisp/runtime.scm: Some helping definitions for built-ins.
* module/language/elisp/runtime/function-slot.scm: Defined artihmetic built-ins.
2009-07-13 18:35:57 +02:00
..
runtime Some bug fixes on the way and mainly implemented some built-ins (arithmetic). 2009-07-13 18:35:57 +02:00
compile-tree-il.scm Some bug fixes on the way and mainly implemented some built-ins (arithmetic). 2009-07-13 18:35:57 +02:00
README Some bug fixes on the way and mainly implemented some built-ins (arithmetic). 2009-07-13 18:35:57 +02:00
runtime.scm Some bug fixes on the way and mainly implemented some built-ins (arithmetic). 2009-07-13 18:35:57 +02:00
spec.scm Merge branch 'master' of git://git.savannah.gnu.org/guile into elisp 2009-06-27 20:07:11 +02:00

Guile's Emacs Lisp compiler
===========================

This is more or less a lot of work in progress.  Here are some notes as well
as status information.

Already implemented:
  * progn
  * if, cond
  * and, or
  * quote
  * referencing and setting (setq) variables
  * while
  * let, let*
  * lambda expressions, function calls using list notation
  * some built-ins (mainly numbers/arithmetic)

Especially still missing:
  * other progX forms, will be done in macros
  * where, unless, will be done in macros
  * dolist, dotimes using macros
  * catch/throw, unwind-protect
  * real elisp reader instead of Scheme's
  * set, makunbound, boundp functions
  * macros
  * more built-ins
  * funcall and apply
  * fset & friends
  * defvar, defun