mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-07-08 18:40:23 +02:00
Misleading error message text in scm_i_string_writable_wide_chars
* libguile/strings.c (scm_i_string_writable_wide_chars): change error text
This commit is contained in:
parent
2a0db0e326
commit
1c7b216f84
1 changed files with 1 additions and 1 deletions
|
@ -568,7 +568,7 @@ scm_i_string_writable_wide_chars (SCM str)
|
||||||
if (!scm_i_is_narrow_string (str))
|
if (!scm_i_is_narrow_string (str))
|
||||||
return STRINGBUF_WIDE_CHARS (buf) + start;
|
return STRINGBUF_WIDE_CHARS (buf) + start;
|
||||||
else
|
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));
|
scm_list_1 (str));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue