diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-09-01 00:38:40 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-09-01 00:38:40 +0200 |
commit | 13a9455669c2a8d1e4ed59cb8736bf23e91eaa55 (patch) | |
tree | 80a237ae1e3c7e74c398574b6962d65e4f047c70 /libguile/strings.h | |
parent | 4812ce85ddf1d04c49436ada34152ac7751a8b50 (diff) | |
download | guile-13a9455669c2a8d1e4ed59cb8736bf23e91eaa55.tar.gz |
Fix leaky handling of `scm_take_locale_{symbol,string} ()'.
* libguile/strings.c (scm_i_take_stringbufn, scm_i_c_take_symbol):
Remove.
(scm_take_locale_stringn): Rewrite in terms of `scm_from_locale_stringn ()'.
* libguile/strings.h (scm_i_c_take_symbol, scm_i_take_stringbufn):
Remove declarations.
Diffstat (limited to 'libguile/strings.h')
-rw-r--r-- | libguile/strings.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libguile/strings.h b/libguile/strings.h index 95dc7ac3e..fff7c97bd 100644 --- a/libguile/strings.h +++ b/libguile/strings.h @@ -164,9 +164,6 @@ SCM_INTERNAL SCM scm_i_make_symbol (SCM name, scm_t_bits flags, SCM_INTERNAL SCM scm_i_c_make_symbol (const char *name, size_t len, scm_t_bits flags, unsigned long hash, SCM props); -SCM_INTERNAL SCM -scm_i_c_take_symbol (char *name, size_t len, - scm_t_bits flags, unsigned long hash, SCM props); SCM_INTERNAL const char *scm_i_symbol_chars (SCM sym); SCM_INTERNAL const scm_t_wchar *scm_i_symbol_wide_chars (SCM sym); SCM_INTERNAL size_t scm_i_symbol_length (SCM sym); @@ -181,7 +178,6 @@ SCM_INTERNAL char **scm_i_allocate_string_pointers (SCM list); SCM_INTERNAL void scm_i_get_substring_spec (size_t len, SCM start, size_t *cstart, SCM end, size_t *cend); -SCM_INTERNAL SCM scm_i_take_stringbufn (char *str, size_t len); /* Debugging functions */ |