diff options
author | Ludovic Courtès <ludo@gnu.org> | 2010-12-16 15:20:10 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2010-12-16 23:45:23 +0100 |
commit | 183f784947ad350aab7595cd58874585ac389e79 (patch) | |
tree | 4bd9d013dd6bee6d01b2a6023c5f909e1d7109f9 /libguile/strings.c | |
parent | 18f06db925a67cb6b174a9210f7bed8adced4e00 (diff) | |
download | guile-183f784947ad350aab7595cd58874585ac389e79.tar.gz |
Inline `scm_is_string'.
* libguile/strings.c (scm_is_string): Move to...
* libguile/inline.h (scm_is_string): ... here. Inline.
Diffstat (limited to 'libguile/strings.c')
-rw-r--r-- | libguile/strings.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libguile/strings.c b/libguile/strings.c index 729b33d2e..71f0b5274 100644 --- a/libguile/strings.c +++ b/libguile/strings.c @@ -1405,11 +1405,6 @@ SCM_DEFINE (scm_string_append, "string-append", 0, 0, 1, } #undef FUNC_NAME -int -scm_is_string (SCM obj) -{ - return IS_STRING (obj); -} /* Conversion to/from other encodings. */ |