summaryrefslogtreecommitdiff
path: root/libguile/chars.h
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2019-08-24 11:57:39 +0200
committerAndy Wingo <wingo@pobox.com>2019-08-24 11:57:39 +0200
commit253cf3dc6f0ecdd2459c301926ee896eae6c73de (patch)
tree122cf8100bafe39d90e40bd315b20d8527ac3a5f /libguile/chars.h
parentb1564df298dbdd261e880837c89f04d3d82879ea (diff)
downloadguile-253cf3dc6f0ecdd2459c301926ee896eae6c73de.tar.gz
Revert "Revert scm_c_make_char rename"
My reversion of Mark's commit was in error; the supposed ABI change was never released. This reverts commit 3925a64682be333af2e8d15e8173f06d3272f4e4.
Diffstat (limited to 'libguile/chars.h')
-rw-r--r--libguile/chars.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/chars.h b/libguile/chars.h
index 823c6b914..f6d4c6354 100644
--- a/libguile/chars.h
+++ b/libguile/chars.h
@@ -37,7 +37,7 @@
This macro evaluates X twice, which may lead to side effects if used
incorrectly. It's also likely to be inefficient if X calls a
- procedure. Use 'scm_i_make_char' in those cases. */
+ procedure. Use 'scm_c_make_char' in those cases. */
#define SCM_MAKE_CHAR(x) \
((x) <= 1 \
? SCM_MAKE_ITAG8 ((scm_t_bits) (unsigned char) (x), scm_tc8_char) \
@@ -87,7 +87,7 @@ SCM_API SCM scm_char_downcase (SCM chr);
SCM_API SCM scm_char_titlecase (SCM chr);
SCM_API SCM scm_char_general_category (SCM chr);
-SCM_INLINE SCM scm_i_make_char (scm_t_wchar c);
+SCM_INLINE SCM scm_c_make_char (scm_t_wchar c);
SCM_API scm_t_wchar scm_c_upcase (scm_t_wchar c);
SCM_API scm_t_wchar scm_c_downcase (scm_t_wchar c);
SCM_API scm_t_wchar scm_c_titlecase (scm_t_wchar c);
@@ -99,7 +99,7 @@ SCM_INTERNAL void scm_init_chars (void);
#if SCM_CAN_INLINE || defined SCM_INLINE_C_IMPLEMENTING_INLINES
SCM_INLINE_IMPLEMENTATION SCM
-scm_i_make_char (scm_t_wchar c)
+scm_c_make_char (scm_t_wchar c)
{
return SCM_MAKE_CHAR(c);
}