From 53aef014daea18dc505b154cccbc018cb0b6ab9d Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Fri, 27 Apr 2001 21:10:46 +0000 Subject: [PATCH] * 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. --- srfi/srfi-13.h | 4 ++-- 1 file 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);