diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-04-23 20:45:11 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-04-23 20:45:11 +0000 |
commit | 8fcc0f71a13eaecabb1314e5dc48fe937dd122b0 (patch) | |
tree | 95c77d1858464aa51818f5bfae32946c263cf901 /src/mbyte.c | |
parent | 091271e19fe54841cea47b08a7c7985474b12467 (diff) | |
download | vim-8fcc0f71a13eaecabb1314e5dc48fe937dd122b0.zip |
updated for version 7.0070
Diffstat (limited to 'src/mbyte.c')
-rw-r--r-- | src/mbyte.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbyte.c b/src/mbyte.c index 70bb84389..c77178862 100644 --- a/src/mbyte.c +++ b/src/mbyte.c @@ -2160,7 +2160,7 @@ utf_tolower(a) return TOLOWER_ASC(a); #if defined(HAVE_TOWLOWER) && defined(__STDC__ISO_10646__) - /* If towlower() is availble and handles Unicode, use it. */ + /* If towlower() is available and handles Unicode, use it. */ if (!(cmp_flags & CMP_INTERNAL)) return towlower(a); #endif |