1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-28 07:50:20 +02:00

*** empty log message ***

This commit is contained in:
Rob Browning 2001-11-18 23:03:10 +00:00
parent 694a9bb34e
commit 5c790b44f8
2 changed files with 19 additions and 0 deletions

5
NEWS
View file

@ -84,6 +84,11 @@ micro version number.
In addition, ./GUILE-VERSION now defines GUILE_MICRO_VERSION.
** New preprocessor definitions are available for checking versions.
version.h now #defines SCM_MAJOR_VERSION, SCM_MINOR_VERSION, and
SCM_MICRO_VERSION to the appropriate integer values.
** Guile now actively warns about deprecated features.
The new configure option `--enable-deprecated=LEVEL' and the

View file

@ -1,3 +1,17 @@
2001-11-18 Rob Browning <rlb@defaultvalue.org>
* version.c
(s_scm_major_version): use SCM_MAJOR_VERSION.
(s_scm_minor_version): use SCM_MINOR_VERSION.
(s_scm_micro_version): use SCM_MICRO_VERSION.
(s_scm_version): use SCM_MAJOR_VERSION, SCM_MINOR_VERSION, and
SCM_MICRO_VERSION.
* version.h.in
(SCM_MAJOR_VERSION): renamed from SCM_GUILE_MAJOR_VERSION.
(SCM_MINOR_VERSION): renamed from SCM_GUILE_MINOR_VERSION.
(SCM_MICRO_VERSION): renamed from SCM_GUILE_MICRO_VERSION.
2001-11-18 Neil Jerram <neil@ossau.uklinux.net>
* vectors.c (scm_vector_move_left_x, scm_vector_move_right_x):