From bebdc83a21f8e7d0362a2bac1007e467bcde0f45 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Tue, 29 Oct 1996 03:08:03 +0000 Subject: [PATCH] * * 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. --- libguile/numbers.h | 2 +- libguile/scmhob.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libguile/numbers.h b/libguile/numbers.h index f38e73e78..900abc37a 100644 --- a/libguile/numbers.h +++ b/libguile/numbers.h @@ -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_number_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_num_eq_p SCM_P ((SCM x, SCM y)); extern SCM scm_less_p SCM_P ((SCM x, SCM y)); diff --git a/libguile/scmhob.h b/libguile/scmhob.h index 063938d90..6bd61489a 100644 --- a/libguile/scmhob.h +++ b/libguile/scmhob.h @@ -53,7 +53,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. #define in2ex scm_inexact_to_exact #define inexactp scm_inexact_p #define input_portp scm_input_port_p -#define intp scm_int_p +#define intp scm_integer_p #define length scm_length #define leqp scm_leq_p #define lessp scm_less_p