mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-23 12:00:21 +02:00
* * numbers.c (scm_integer_p): Renamed from scm_int_p; change its
scheme name from "int?" to "integer?". It seems to do the job. * numbers.h: Rename prototype too. * scmhob.h (intp): Change definition to refer to scm_integer_p. I hope this is right.
This commit is contained in:
parent
f693191c2a
commit
bebdc83a21
2 changed files with 2 additions and 2 deletions
|
@ -276,7 +276,7 @@ extern SCM scm_bigequal SCM_P ((SCM x, SCM y));
|
||||||
extern SCM scm_floequal SCM_P ((SCM x, SCM y));
|
extern SCM scm_floequal SCM_P ((SCM x, SCM y));
|
||||||
extern SCM scm_number_p SCM_P ((SCM x));
|
extern SCM scm_number_p SCM_P ((SCM x));
|
||||||
extern SCM scm_real_p SCM_P ((SCM x));
|
extern SCM scm_real_p SCM_P ((SCM x));
|
||||||
extern SCM scm_int_p SCM_P ((SCM x));
|
extern SCM scm_integer_p SCM_P ((SCM x));
|
||||||
extern SCM scm_inexact_p SCM_P ((SCM x));
|
extern SCM scm_inexact_p SCM_P ((SCM x));
|
||||||
extern SCM scm_num_eq_p SCM_P ((SCM x, SCM y));
|
extern SCM scm_num_eq_p SCM_P ((SCM x, SCM y));
|
||||||
extern SCM scm_less_p SCM_P ((SCM x, SCM y));
|
extern SCM scm_less_p SCM_P ((SCM x, SCM y));
|
||||||
|
|
|
@ -53,7 +53,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
#define in2ex scm_inexact_to_exact
|
#define in2ex scm_inexact_to_exact
|
||||||
#define inexactp scm_inexact_p
|
#define inexactp scm_inexact_p
|
||||||
#define input_portp scm_input_port_p
|
#define input_portp scm_input_port_p
|
||||||
#define intp scm_int_p
|
#define intp scm_integer_p
|
||||||
#define length scm_length
|
#define length scm_length
|
||||||
#define leqp scm_leq_p
|
#define leqp scm_leq_p
|
||||||
#define lessp scm_less_p
|
#define lessp scm_less_p
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue