summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorK.Takata <kentkt@csc.jp>2023-01-20 16:00:55 +0000
committerBram Moolenaar <Bram@vim.org>2023-01-20 16:00:55 +0000
commit7193323b7796c05573f3aa89d422e848feb3a8dc (patch)
treeffcff2f43e6fee4264f8da426f0c7e1583688406 /runtime
parente446a017ffeaf1941589ac51ce9153b859018e5b (diff)
downloadvim-git-7193323b7796c05573f3aa89d422e848feb3a8dc.tar.gz
patch 9.0.1223: cannot use setcellwidths() below 0x100v9.0.1223
Problem: Cannot use setcellwidths() below 0x100. Solution: Also accept characters between 0x80 and 0x100. (Ken Takata, closes #11834)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/builtin.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt
index 3544b5df8..a888ae089 100644
--- a/runtime/doc/builtin.txt
+++ b/runtime/doc/builtin.txt
@@ -7966,7 +7966,7 @@ setcellwidths({list}) *setcellwidths()*
{low} and {high} can be the same, in which case this refers to
one character. Otherwise it is the range of characters from
{low} to {high} (inclusive). *E1111* *E1114*
- Only characters with value 0x100 and higher can be used.
+ Only characters with value 0x80 and higher can be used.
{width} must be either 1 or 2, indicating the character width
in screen cells. *E1112*