summaryrefslogtreecommitdiff
path: root/libguile/version.c
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2004-07-08 15:58:11 +0000
committerMarius Vollmer <mvo@zagadka.de>2004-07-08 15:58:11 +0000
commit93ccaef0c60868bb1a6e0747387ce34c0172b53e (patch)
tree867f5f7dbb2cdf28ed68ce2bac89f0c8878be657 /libguile/version.c
parent43240c9caf66f802ba50df685e3e8b44e38906a5 (diff)
downloadguile-93ccaef0c60868bb1a6e0747387ce34c0172b53e.tar.gz
* numbers.h (SCM_MAKINUM, SCM_I_MAKINUM): Renamed SCM_MAKINUM to
SCM_I_MAKINUM and changed all uses.
Diffstat (limited to 'libguile/version.c')
-rw-r--r--libguile/version.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libguile/version.c b/libguile/version.c
index 0cfdc31de..9c25cf608 100644
--- a/libguile/version.c
+++ b/libguile/version.c
@@ -35,8 +35,8 @@ SCM_DEFINE (scm_major_version, "major-version", 0, 0, 0,
"E.g., the 1 in \"1.6.5\".")
#define FUNC_NAME s_scm_major_version
{
- return scm_number_to_string (SCM_MAKINUM(SCM_MAJOR_VERSION),
- SCM_MAKINUM(10));
+ return scm_number_to_string (SCM_I_MAKINUM(SCM_MAJOR_VERSION),
+ SCM_I_MAKINUM(10));
}
#undef FUNC_NAME
@@ -48,8 +48,8 @@ SCM_DEFINE (scm_minor_version, "minor-version", 0, 0, 0,
"E.g., the 6 in \"1.6.5\".")
#define FUNC_NAME s_scm_minor_version
{
- return scm_number_to_string (SCM_MAKINUM(SCM_MINOR_VERSION),
- SCM_MAKINUM(10));
+ return scm_number_to_string (SCM_I_MAKINUM(SCM_MINOR_VERSION),
+ SCM_I_MAKINUM(10));
}
#undef FUNC_NAME
@@ -61,8 +61,8 @@ SCM_DEFINE (scm_micro_version, "micro-version", 0, 0, 0,
"E.g., the 5 in \"1.6.5\".")
#define FUNC_NAME s_scm_micro_version
{
- return scm_number_to_string (SCM_MAKINUM(SCM_MICRO_VERSION),
- SCM_MAKINUM(10));
+ return scm_number_to_string (SCM_I_MAKINUM(SCM_MICRO_VERSION),
+ SCM_I_MAKINUM(10));
}
#undef FUNC_NAME