[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 18/36: compile-elisp fn
From: |
Christopher Allan Webber |
Subject: |
[Guile-commits] 18/36: compile-elisp fn |
Date: |
Fri, 25 Mar 2016 20:03:45 +0000 |
cwebber pushed a commit to branch wip-elisp
in repository guile.
commit cd809c8937148e192be7a1aa089c8a79eb3d6712
Author: Robin Templeton <address@hidden>
Date: Mon Aug 4 23:06:26 2014 -0400
compile-elisp fn
(Best-ability ChangeLog annotation added by Christopher Allan Webber.)
* module/language/elisp/runtime.scm (compile-elisp): New procedure.
---
module/language/elisp/runtime.scm | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/module/language/elisp/runtime.scm
b/module/language/elisp/runtime.scm
index dba2a54..d6d4f70 100644
--- a/module/language/elisp/runtime.scm
+++ b/module/language/elisp/runtime.scm
@@ -52,6 +52,7 @@
set-lexical-binding-mode
log!
eval-elisp
+ compile-elisp
local-eval-elisp
make-lisp-string
lisp-string?)
@@ -248,6 +249,10 @@
(define (eval-elisp form)
(compile form #:from 'elisp #:to 'value))
+(define (compile-elisp form)
+ (compile (compile form #:from 'elisp #:to 'bytecode)
+ #:from 'bytecode #:to 'value))
+
(set-symbol-value! nil_ #nil)
(set-symbol-value! t_ #t)
- [Guile-commits] 08/36: guile-snarf fix, (continued)
- [Guile-commits] 08/36: guile-snarf fix, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 09/36: elisp updates, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 10/36: read nil/t as #nil/#t, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 12/36: defvar affects default value, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 11/36: symbol default value procedures, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 14/36: define-module for elisp special modules, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 16/36: fix symbol-function, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 13/36: constant-interning fix, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 15/36: restore special operator handling, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 17/36: fix `nil?' type inference, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 18/36: compile-elisp fn,
Christopher Allan Webber <=
- [Guile-commits] 19/36: elisp @@ macro, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 20/36: defconst, defvar: proclaim special at compile-time, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 21/36: compiler macros, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 22/36: defsubst, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 23/36: use defsubst, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 24/36: fset macro, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 25/36: eval-when, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 26/36: degenerate let forms, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 27/36: only evaluate top-level macro definitions, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 28/36: top level fixes, Christopher Allan Webber, 2016/03/25