diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2005-02-24 15:32:36 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2005-02-24 15:32:36 +0000 |
commit | 691dd7e5294d232a7ab8327e2038f9779732fa3c (patch) | |
tree | 9d73edabb8e0c4c26a7cf60ceceb3cc23e74d8dd /Src/Zle/zle_vi.c | |
parent | c4a4c1340abeaedda251b90e99e4c9ae77880848 (diff) | |
download | zsh-691dd7e5294d232a7ab8327e2038f9779732fa3c.tar.gz zsh-691dd7e5294d232a7ab8327e2038f9779732fa3c.tar.xz zsh-691dd7e5294d232a7ab8327e2038f9779732fa3c.zip |
20861: Fix statusline in Unicode, apart from isearch
Diffstat (limited to 'Src/Zle/zle_vi.c')
-rw-r--r-- | Src/Zle/zle_vi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/Zle/zle_vi.c b/Src/Zle/zle_vi.c index e4a36b219..f44452550 100644 --- a/Src/Zle/zle_vi.c +++ b/Src/Zle/zle_vi.c @@ -831,8 +831,8 @@ vicapslockpanic(UNUSED(char **args)) { clearlist = 1; zbeep(); - statusline = "press a lowercase key to continue"; - statusll = strlen(statusline); + statusline = ZWS("press a lowercase key to continue"); + statusll = ZS_strlen(statusline); zrefresh(); #ifdef ZLE_UNICODE_SUPPORT while (!iswlower(getfullchar(0))); |