mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-07 18:30:25 +02:00
* test-suite/tests/chars.test: Fixed test comment. The bug that
this test detects was actually introduced by my patch from 2003-05-31. * libguile/eval.c: Partially undid my patch from 2003-05-31. This patch caused the segfault referenced in the previous changelog entry.
This commit is contained in:
parent
47dbd81e77
commit
f5c6ec2fb0
4 changed files with 12 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
||||
|
||||
* eval.c: Partially undid my patch from 2003-05-31. This patch
|
||||
caused the segfault referenced in the previous changelog entry.
|
||||
|
||||
2003-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
||||
|
||||
* tags.h: Fixed comment about the immediate type code layout.
|
||||
|
|
|
@ -2448,7 +2448,7 @@ dispatch:
|
|||
/* new syntactic forms go here. */
|
||||
case SCM_BIT7 (SCM_MAKISYM (0)):
|
||||
proc = SCM_CAR (x);
|
||||
if (!SCM_IFLAGP (proc))
|
||||
if (!SCM_ISYMP (proc))
|
||||
goto evapply;
|
||||
|
||||
switch (SCM_ISYMNUM (proc))
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2003-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
||||
|
||||
* tests/chars.test: Fixed test comment. The bug that this test
|
||||
detects was actually introduced by my patch from 2003-05-31.
|
||||
|
||||
2003-06-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
||||
|
||||
* tests/chars.test: Added test, attempting to apply a character.
|
||||
|
|
|
@ -29,8 +29,7 @@
|
|||
|
||||
(with-test-prefix "evaluator"
|
||||
|
||||
;; Guile prior to 2003-06-05 segfaulted on the following test, because
|
||||
;; within the evaluator there was no distinction between the
|
||||
;; The following test makes sure that the evaluator distinguishes between
|
||||
;; evaluator-internal instruction codes and characters.
|
||||
(pass-if-exception "evaluating chars"
|
||||
exception:wrong-type-to-apply
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue