diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2005-08-10 10:56:40 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2005-08-10 10:56:40 +0000 |
commit | 2a888b3d5ae1f485649b811ea433f286238fd308 (patch) | |
tree | 11f21c9ee2e716c8ab247c6d4ca834c6586ba101 /Src/Zle/zle_thingy.c | |
parent | ef913283407fdc8166e5b937dcb08d1b4abde10d (diff) | |
download | zsh-2a888b3d5ae1f485649b811ea433f286238fd308.tar.gz zsh-2a888b3d5ae1f485649b811ea433f286238fd308.tar.xz zsh-2a888b3d5ae1f485649b811ea433f286238fd308.zip |
c.f. 21590: metafy_line()/unmetafy_line() now support wide characters
Diffstat (limited to 'Src/Zle/zle_thingy.c')
-rw-r--r-- | Src/Zle/zle_thingy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/Zle/zle_thingy.c b/Src/Zle/zle_thingy.c index 5885fb10f..d756b94e6 100644 --- a/Src/Zle/zle_thingy.c +++ b/Src/Zle/zle_thingy.c @@ -416,8 +416,8 @@ bin_zle_refresh(UNUSED(char *name), char **args, Options ops, UNUSED(char func)) statusll = 0; if (*args) { if (**args) { - statusline = stringaszleline((unsigned char *)*args, &statusll, - NULL); + statusline = stringaszleline((unsigned char *)*args, 0, &statusll, + NULL, NULL); } if (*++args) { LinkList l = newlinklist(); |