[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Guile-commits] 20/36: defconst, defvar: proclaim special at compile-tim
From: |
Christopher Allan Webber |
Subject: |
[Guile-commits] 20/36: defconst, defvar: proclaim special at compile-time |
Date: |
Fri, 25 Mar 2016 20:03:46 +0000 |
cwebber pushed a commit to branch wip-elisp
in repository guile.
commit bfc3ffe7d50586fd9bc65044b00173168ba9b631
Author: Robin Templeton <address@hidden>
Date: Mon Aug 4 23:08:12 2014 -0400
defconst, defvar: proclaim special at compile-time
(Best-ability ChangeLog annotation added by Christopher Allan Webber.)
* module/language/elisp/compile-tree-il.scm (defconst, defvar): Use
proclaim-special!.
---
module/language/elisp/compile-tree-il.scm | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/module/language/elisp/compile-tree-il.scm
b/module/language/elisp/compile-tree-il.scm
index 2716c8f..b23d939 100644
--- a/module/language/elisp/compile-tree-il.scm
+++ b/module/language/elisp/compile-tree-il.scm
@@ -478,6 +478,7 @@
(defspecial defconst (loc args)
(pmatch args
((,sym ,value . ,doc)
+ (proclaim-special! sym)
(make-seq
loc
(make-call loc
@@ -491,12 +492,14 @@
(defspecial defvar (loc args)
(pmatch args
((,sym)
+ (proclaim-special! sym)
(make-seq loc
(make-call loc
(make-module-ref loc runtime 'proclaim-special! #t)
(list (make-const loc sym)))
(make-const loc sym)))
((,sym ,value . ,doc)
+ (proclaim-special! sym)
(make-seq
loc
(make-call loc
- [Guile-commits] 10/36: read nil/t as #nil/#t, (continued)
- [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, 2016/03/25
- [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 <=
- [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
- [Guile-commits] 29/36: execute top level require forms, Christopher Allan Webber, 2016/03/25
- [Guile-commits] 31/36: use guile eval for elisp tree-il, Christopher Allan Webber, 2016/03/25