diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2008-04-14 14:57:52 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-04-14 14:57:52 +0000 |
commit | fe6d34f024a20d57741b500a91649fa7032cc509 (patch) | |
tree | 110b2ad2612ede550834b973a9287c454c604904 /Src/Zle/zle_tricky.c | |
parent | 5eb7948f86c518a489be3f4150c6cf588fd58727 (diff) | |
download | zsh-fe6d34f024a20d57741b500a91649fa7032cc509.tar.gz zsh-fe6d34f024a20d57741b500a91649fa7032cc509.tar.xz zsh-fe6d34f024a20d57741b500a91649fa7032cc509.zip |
24816: some places where we need cursor alignment with combining characters
Diffstat (limited to 'Src/Zle/zle_tricky.c')
-rw-r--r-- | Src/Zle/zle_tricky.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Src/Zle/zle_tricky.c b/Src/Zle/zle_tricky.c index 8223c7046..d7c17676b 100644 --- a/Src/Zle/zle_tricky.c +++ b/Src/Zle/zle_tricky.c @@ -980,14 +980,11 @@ unmetafy_line(void) free(zlemetaline); zlemetaline = NULL; - -#ifdef MULTIBYTE_SUPPORT /* * If we inserted combining characters under the cursor we * won't have tested the effect yet. So fix it up now. */ - alignmultiwordright(1); -#endif + CCRIGHT(); } /* Free a brinfo list. */ |