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

* Unified ssymbols and msymbols to a single symbol type 'scm_tc7_symbol'.

* Added scm_string_hash and deprecated scm_strhash.
This commit is contained in:
Dirk Herrmann 2000-09-12 12:30:36 +00:00
parent a5b265e3f9
commit 28b06554ca
15 changed files with 193 additions and 168 deletions

View file

@ -120,7 +120,7 @@ scm_class_of (SCM x)
return scm_class_pair;
case scm_tcs_closures:
return scm_class_procedure;
case scm_tcs_symbols:
case scm_tc7_symbol:
return scm_class_symbol;
case scm_tc7_vector:
case scm_tc7_wvect: