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

* symbols.c (msymbolize): Bugfix: Must initialize property list to

SCM_EOL.
This commit is contained in:
Mikael Djurfeldt 1997-02-28 23:10:00 +00:00
parent f76c22afd3
commit 77a6036bd1
2 changed files with 5 additions and 1 deletions

View file

@ -1,4 +1,7 @@
Fri Feb 28 22:12:25 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
Sat Mar 1 00:09:15 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
* symbols.c (msymbolize): Bugfix: Must initialize property list to
SCM_EOL.
* procs.c: Introduce the existent C function scm_thunk_p at the
Scheme level as well.

View file

@ -691,6 +691,7 @@ msymbolize (s)
SCM_SYMBOL_MULTI_BYTE_STRINGP (s) = SCM_BOOL_F;
SCM_SETCDR (string, SCM_EOL);
SCM_SETCAR (string, SCM_EOL);
SCM_SYMBOL_PROPS (s) = SCM_EOL;
}