1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-18 17:50:29 +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

@ -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;
}