diff options
author | Keisuke Nishida <kxn30@po.cwru.edu> | 2001-03-16 05:12:02 +0000 |
---|---|---|
committer | Keisuke Nishida <kxn30@po.cwru.edu> | 2001-03-16 05:12:02 +0000 |
commit | 8dea8611e33a7a074a00158d90746967e8c23e4e (patch) | |
tree | fa35234ff11fb7a04ede6166cda4a5a0170b722d | |
parent | a9205f0774ca610a10c7e3d04af53b8270b12db6 (diff) | |
download | guile-8dea8611e33a7a074a00158d90746967e8c23e4e.tar.gz |
Deprecated macro SCM_CONST_LONG.
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | RELEASE | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -572,7 +572,7 @@ SCM_SUBSTRP, SCM_SUBSTR_STR, SCM_SUBSTR_OFFSET, SCM_COERCE_SUBSTR, SCM_ROSTRINGP, SCM_RWSTRINGP, SCM_VALIDATE_RWSTRING, SCM_ROCHARS, SCM_ROUCHARS, SCM_SETLENGTH, SCM_SETCHARS, SCM_LENGTH_MAX, SCM_GC8MARKP, SCM_SETGC8MARK, SCM_CLRGC8MARK, SCM_GCTYP16, SCM_GCCDR, SCM_SUBR_DOC, -SCM_OPDIRP, SCM_VALIDATE_OPDIR, SCM_WTA, RETURN_SCM_WTA +SCM_OPDIRP, SCM_VALIDATE_OPDIR, SCM_WTA, RETURN_SCM_WTA, SCM_CONST_LONG Use SCM_ASSERT_RANGE or SCM_VALIDATE_XXX_RANGE instead of SCM_OUTOFRANGE. Use scm_memory_error instead of SCM_NALLOC. @@ -599,6 +599,7 @@ Use SCM_CDR instead of SCM_GCCDR. Use SCM_DIR_OPEN_P instead of SCM_OPDIRP. Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of SCM_WTA. Use SCM_MISC_ERROR or SCM_WRONG_TYPE_ARG instead of RETURN_SCM_WTA. +Use SCM_VCELL_INIT instead of SCM_CONST_LONG. ** Removed function: scm_struct_init @@ -79,6 +79,7 @@ In release 1.6: interactive use it would be easy to load the module in ~/.guile. - remove scm_close_all_ports_except - remove scm_strprint_obj +- remove SCM_CONST_LONG Modules sort.c and random.c should be factored out into separate modules (but still be distributed with guile-core) when we get a new |