Moved deprecated C stuff to C section.

This commit is contained in:
Marius Vollmer 2001-05-21 13:21:01 +00:00
commit e6c9e49738

34
NEWS
View file

@ -35,23 +35,6 @@ The new configure option `--enable-deprecated=LEVEL' and the
environment variable GUILE_WARN_DEPRECATED control this mechanism.
See INSTALL and README for more information.
** Deprecated items have been removed
*** Macros removed
SCM_INPORTP, SCM_OUTPORTP SCM_ICHRP, SCM_ICHR, SCM_MAKICHR
SCM_SETJMPBUF SCM_NSTRINGP SCM_NRWSTRINGP SCM_NVECTORP SCM_DOUBLE_CELLP
*** C Functions removed
scm_sysmissing scm_tag scm_tc16_flo scm_tc_flo
scm_fseek - replaced by scm_seek.
gc-thunk - replaced by after-gc-hook.
gh_int2scmb - replaced by gh_bool2scm.
scm_tc_dblr - replaced by scm_tc16_real.
scm_tc_dblc - replaced by scm_tc16_complex.
scm_list_star - replaced by scm_cons_star.
** New SRFI modules have been added:
SRFI-0 `cond-expand' is now supported in Guile, without requiring
@ -648,6 +631,23 @@ return.
* Changes to the C interface
** Deprecated feature have been removed.
*** Macros removed
SCM_INPORTP, SCM_OUTPORTP SCM_ICHRP, SCM_ICHR, SCM_MAKICHR
SCM_SETJMPBUF SCM_NSTRINGP SCM_NRWSTRINGP SCM_NVECTORP SCM_DOUBLE_CELLP
*** C Functions removed
scm_sysmissing scm_tag scm_tc16_flo scm_tc_flo
scm_fseek - replaced by scm_seek.
gc-thunk - replaced by after-gc-hook.
gh_int2scmb - replaced by gh_bool2scm.
scm_tc_dblr - replaced by scm_tc16_real.
scm_tc_dblc - replaced by scm_tc16_complex.
scm_list_star - replaced by scm_cons_star.
** Deprecated: scm_make_shared_substring
Explicit shared substrings will disappear from Guile.