mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-31 01:10:24 +02:00
* string=? requires a string argument. Thanks to Dale P. Smith.
This commit is contained in:
parent
a3a329390f
commit
f304437e70
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2000-10-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
||||||
|
|
||||||
|
* syncase.scm (eval): string=? requires a string argument.
|
||||||
|
Thanks to Dale P. Smith for the patch.
|
||||||
|
|
||||||
2000-10-15 Neil Jerram <neil@ossau.uklinux.net>
|
2000-10-15 Neil Jerram <neil@ossau.uklinux.net>
|
||||||
|
|
||||||
* optargs.scm: Fix typos in commentary for bound? and lambda*.
|
* optargs.scm: Fix typos in commentary for bound? and lambda*.
|
||||||
|
|
|
@ -155,7 +155,7 @@
|
||||||
|
|
||||||
(define-public (eval x environment)
|
(define-public (eval x environment)
|
||||||
(internal-eval (if (and (pair? x)
|
(internal-eval (if (and (pair? x)
|
||||||
(string=? (car x) "noexpand"))
|
(equal? (car x) "noexpand"))
|
||||||
(cadr x)
|
(cadr x)
|
||||||
(sc-expand x))
|
(sc-expand x))
|
||||||
environment))
|
environment))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue