diff options
author | Michael Gran <spk121@yahoo.com> | 2009-08-19 21:25:23 -0700 |
---|---|---|
committer | Michael Gran <spk121@yahoo.com> | 2009-08-19 22:15:16 -0700 |
commit | 1c7b216f848fd454db15881709ed766323cdeed3 (patch) | |
tree | 64be9abfb7d8f9e9a1055f95f8cde1d609bed65d /libguile/strings.c | |
parent | 2a0db0e326137cbf3b462376872c1d9f06c2bd52 (diff) | |
download | guile-1c7b216f848fd454db15881709ed766323cdeed3.tar.gz |
Misleading error message text in scm_i_string_writable_wide_chars
* libguile/strings.c (scm_i_string_writable_wide_chars): change error text
Diffstat (limited to 'libguile/strings.c')
-rw-r--r-- | libguile/strings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/strings.c b/libguile/strings.c index d28f5ad0b..50adee817 100644 --- a/libguile/strings.c +++ b/libguile/strings.c @@ -568,7 +568,7 @@ scm_i_string_writable_wide_chars (SCM str) if (!scm_i_is_narrow_string (str)) return STRINGBUF_WIDE_CHARS (buf) + start; else - scm_misc_error (NULL, "Invalid read access of chars of narrow string: ~s", + scm_misc_error (NULL, "Invalid write access of chars of narrow string: ~s", scm_list_1 (str)); } |