diff options
author | Rob Browning <rlb@defaultvalue.org> | 2001-04-27 21:10:46 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2001-04-27 21:10:46 +0000 |
commit | 53aef014daea18dc505b154cccbc018cb0b6ab9d (patch) | |
tree | 9a77af126d34db51a1d5744b524070d0aa765d36 /srfi | |
parent | 96230533fa4ea8b2a21e9669641fce5f5c2d2d39 (diff) | |
download | guile-53aef014daea18dc505b154cccbc018cb0b6ab9d.tar.gz |
* srfi-13.h
(scm_reverse_string_concatenate): renamed to
scm_string_concatentate_reverse.
(scm_reverse_string_concatenate_shared): renamed to
scm_string_concatenate_reverse_shared.
Diffstat (limited to 'srfi')
-rw-r--r-- | srfi/srfi-13.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/srfi/srfi-13.h b/srfi/srfi-13.h index 525089d15..86c21a832 100644 --- a/srfi/srfi-13.h +++ b/srfi/srfi-13.h @@ -107,9 +107,9 @@ SCM scm_string_reverse (SCM str, SCM start, SCM end); SCM scm_string_reverse_x (SCM str, SCM start, SCM end); SCM scm_string_append_shared (SCM ls); SCM scm_string_concatenate (SCM ls); -SCM scm_reverse_string_concatenate (SCM ls, SCM final_string, SCM end); SCM scm_string_concatenate_shared (SCM ls); -SCM scm_reverse_string_concatenate_shared (SCM ls, SCM final_string, SCM end); +SCM scm_string_concatenate_reverse (SCM ls, SCM final_string, SCM end); +SCM scm_string_concatenate_reverse_shared (SCM ls, SCM final_string, SCM end); SCM scm_string_map (SCM s, SCM proc, SCM start, SCM end); SCM scm_string_map_x (SCM s, SCM proc, SCM start, SCM end); SCM scm_string_fold (SCM kons, SCM knil, SCM s, SCM start, SCM end); |