diff options
author | Michael Gran <spk121@yahoo.com> | 2009-08-23 08:38:10 -0700 |
---|---|---|
committer | Michael Gran <spk121@yahoo.com> | 2009-08-23 08:38:10 -0700 |
commit | 7a219ac272d77f480ec92881ebbaafa33eb88f77 (patch) | |
tree | 01c43eb6f27e5505817f399d21b1369ab288433e /libguile/srfi-13.c | |
parent | 67dd49f3a56c489affa11de837c53009b6ba3bf8 (diff) | |
download | guile-string_abstraction2.tar.gz |
Rollup minor diffs between string_abstraction2 and master branchesstring_abstraction2
* libguile/Makefile.am: don't need to include chars.c
* libguile/deprecated.c: whitespace
* libguile/deprecated.h: scm_i_intern_obarray_soft doesn't exist
* libguile/filesys.c (scm_init_filesys): copy paste error
* libguile/gc-mark.c: unneeded include
* libguile/numbers.c: whitespace
* libguile/socket.c (scm_recv): remember msg
(scm_send): try to narrow the string before testing it for 8-bitness,
don't locale convert
* libguile/srfi-13.c (scm_string_map): double call of
scm_i_string_start_writing
* libguile/stime.c (scm_strftime, scm_strptime): whitespace and
scm_remember_upto_here calls
* libguile/strings.c: whitespace
(scm_i_string_set_x): remove pointless double-cast
* libguile/struct.c: whitespace
(scm_struct_ref): no need to re-call scm_i_symbol_ref
* libguile/symbols.c: unneeded include
* libguile/vm-i-system.c: whitespace
* doc/ref/vm.texi: copy/paste error
* libguile/strings.c (narrow_stringbuf): new function
(scm_i_is_narrow_string): new function
* libguile/strings.h: new declaration for scm_i_try_narrow_string
Diffstat (limited to 'libguile/srfi-13.c')
-rw-r--r-- | libguile/srfi-13.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libguile/srfi-13.c b/libguile/srfi-13.c index 929ee2e6e..c14a55de1 100644 --- a/libguile/srfi-13.c +++ b/libguile/srfi-13.c @@ -2461,7 +2461,6 @@ SCM_DEFINE (scm_string_map, "string-map", 2, 2, 0, 3, start, cstart, 4, end, cend); result = scm_i_make_string (cend - cstart, NULL); - result = scm_i_string_start_writing (result); p = 0; while (cstart < cend) { |