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

* Fix a typo that crept in with the scm_X_t to scm_t_X rename.

* Partial fix for date-week-number bug.
This commit is contained in:
Neil Jerram 2002-02-22 23:14:38 +00:00
parent bf9b86fc59
commit cd328b4fef
5 changed files with 15 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2002-02-21 Neil Jerram <neil@ossau.uklinux.net>
* unif.c (scm_array_to_list): Correct name, which had been
accidentally changed to scm_t_arrayo_list!
2002-02-20 Mikael Djurfeldt <mdj@linnaeus>
* gc.c (scm_gc_sweep): Print an error message when aborting due to

View file

@ -2078,11 +2078,11 @@ ra2l (SCM ra,unsigned long base,unsigned long k)
}
SCM_DEFINE (scm_t_arrayo_list, "array->list", 1, 0, 0,
SCM_DEFINE (scm_array_to_list, "array->list", 1, 0, 0,
(SCM v),
"Return a list consisting of all the elements, in order, of\n"
"@var{array}.")
#define FUNC_NAME s_scm_t_arrayo_list
#define FUNC_NAME s_scm_array_to_list
{
SCM res = SCM_EOL;
register long k;

View file

@ -140,7 +140,7 @@ SCM_API SCM scm_bit_set_star_x (SCM v, SCM kv, SCM obj);
SCM_API SCM scm_bit_count_star (SCM v, SCM kv, SCM obj);
SCM_API SCM scm_bit_invert_x (SCM v);
SCM_API SCM scm_istr2bve (char *str, long len);
SCM_API SCM scm_t_arrayo_list (SCM v);
SCM_API SCM scm_array_to_list (SCM v);
SCM_API SCM scm_list_to_uniform_array (SCM ndim, SCM prot, SCM lst);
SCM_API int scm_raprin1 (SCM exp, SCM port, scm_print_state *pstate);
SCM_API SCM scm_array_prototype (SCM ra);