1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* boot-9.scm (print-vector, macro-table, xformer-table):

Renamed weak-hash-table --> weak-key-hash-table.
This commit is contained in:
Mikael Djurfeldt 1996-08-20 16:54:53 +00:00
parent 80b4c4fc35
commit 9591db8710

View file

@ -2003,8 +2003,8 @@
;;; {Macros}
;;;
(define macro-table (make-weak-hash-table 523))
(define xformer-table (make-weak-hash-table 523))
(define macro-table (make-weak-key-hash-table 523))
(define xformer-table (make-weak-key-hash-table 523))
(define (defmacro? m) (hashq-ref macro-table m))
(define (assert-defmacro?! m) (hashq-set! macro-table m #t))