1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-07 08:40:21 +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:
Dirk Herrmann 2003-06-04 23:50:13 +00:00
parent 47dbd81e77
commit f5c6ec2fb0
4 changed files with 12 additions and 3 deletions

View file

@ -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.

View file

@ -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))