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:
parent
f76c22afd3
commit
77a6036bd1
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue