diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2002-02-22 23:14:38 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2002-02-22 23:14:38 +0000 |
commit | cd328b4fef97572b4521ba92ced5e6ddeb11ae44 (patch) | |
tree | 1e6c50d1f15d363863af4d2a43d93eab26096c08 /libguile/unif.c | |
parent | bf9b86fc598e2218cfd7c17fdf5a425df56f228d (diff) | |
download | guile-cd328b4fef97572b4521ba92ced5e6ddeb11ae44.tar.gz |
* Fix a typo that crept in with the scm_X_t to scm_t_X rename.
* Partial fix for date-week-number bug.
Diffstat (limited to 'libguile/unif.c')
-rw-r--r-- | libguile/unif.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/unif.c b/libguile/unif.c index 4e9c572b1..96bdfa4f0 100644 --- a/libguile/unif.c +++ b/libguile/unif.c @@ -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; |