summaryrefslogtreecommitdiff
path: root/src/os_mac_conv.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-05-10 18:07:50 +0000
committerBram Moolenaar <Bram@vim.org>2007-05-10 18:07:50 +0000
commit720c710091ba23dcbfca46766d87b4bb57dbc892 (patch)
treea3ed47f484ac9632e714951987398888158c97d7 /src/os_mac_conv.c
parent25bc63d168842127cbf23d986f1fcf88553430f6 (diff)
downloadvim-git-720c710091ba23dcbfca46766d87b4bb57dbc892.tar.gz
updated for version 7.1b
Diffstat (limited to 'src/os_mac_conv.c')
-rw-r--r--src/os_mac_conv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_mac_conv.c b/src/os_mac_conv.c
index 9f19a8098..56d8953c1 100644
--- a/src/os_mac_conv.c
+++ b/src/os_mac_conv.c
@@ -74,7 +74,7 @@ mac_string_convert(ptr, len, lenp, fail_on_error, from_enc, to_enc, unconvlenp)
fprintf(stderr, "Encoding failed\n");
/* When conversion failed, try excluding bytes from the end, helps when
* there is an incomplete byte sequence. Only do up to 6 bytes to avoid
- * looping a long time when there really is something unconvertable. */
+ * looping a long time when there really is something unconvertible. */
while (cfstr == NULL && unconvlenp != NULL && len > 1 && *unconvlenp < 6)
{
--len;