mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-20 11:40:18 +02:00
* goops.scm (method): Construct a new copy of the constant '('())
for every macro invocation.
This commit is contained in:
parent
80f225df0e
commit
27b32aad49
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-01-18 Mikael Djurfeldt <djurfeldt@nada.kth.se>
|
||||
|
||||
* goops.scm (method): Construct a new copy of the constant '('())
|
||||
for every macro invocation.
|
||||
|
||||
2003-01-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
|
||||
|
||||
* goops.scm (upgrade-generic-with-setter,
|
||||
|
|
|
@ -569,7 +569,7 @@
|
|||
(define method
|
||||
(letrec ((specializers
|
||||
(lambda (ls)
|
||||
(cond ((null? ls) '('()))
|
||||
(cond ((null? ls) (list (list 'quote '())))
|
||||
((pair? ls) (cons (if (pair? (car ls))
|
||||
(cadar ls)
|
||||
'<top>)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue