1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 03:30:27 +02:00

(SCM_ARRAY_DIMS): Rename scm_i_attay_dims -->

scm_i_array_dims.
This commit is contained in:
Mikael Djurfeldt 2005-02-08 18:58:37 +00:00
parent 178f1f90e1
commit 9cc490600c
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2005-02-08 Mikael Djurfeldt <djurfeldt@nada.kth.se>
* deprecated.h (SCM_ARRAY_DIMS): Rename scm_i_attay_dims -->
scm_i_array_dims.
2005-01-28 Kevin Ryde <user42@zip.com.au>
* numbers.c (scm_ash): Rewrite using shifts, much faster than

View file

@ -5,7 +5,7 @@
#ifndef SCM_DEPRECATED_H
#define SCM_DEPRECATED_H
/* Copyright (C) 2003,2004 Free Software Foundation, Inc.
/* Copyright (C) 2003,2004, 2005 Free Software Foundation, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@ -509,7 +509,7 @@ SCM_API scm_t_array_dim *scm_i_array_dims (SCM a);
#define SCM_ARRAY_MEM(a) scm_i_array_mem(a)
#define SCM_ARRAY_V(a) scm_i_array_v(a)
#define SCM_ARRAY_BASE(a) scm_i_array_base(a)
#define SCM_ARRAY_DIMS(a) scm_i_attay_dims(a)
#define SCM_ARRAY_DIMS(a) scm_i_array_dims(a)
void scm_i_init_deprecated (void);