diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2008-09-22 18:37:49 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-09-22 18:37:49 +0000 |
| commit | 9ae36771fe34d764aa63d0ca65bae1e3970af4fd (patch) | |
| tree | 2e07957a6f0e79b483b0f24e4415c71f9b69ad97 | |
| parent | 25721: revert another mistake of 25701. (diff) | |
| download | zsh-9ae36771fe34d764aa63d0ca65bae1e3970af4fd.tar zsh-9ae36771fe34d764aa63d0ca65bae1e3970af4fd.tar.gz zsh-9ae36771fe34d764aa63d0ca65bae1e3970af4fd.tar.bz2 zsh-9ae36771fe34d764aa63d0ca65bae1e3970af4fd.tar.lz zsh-9ae36771fe34d764aa63d0ca65bae1e3970af4fd.tar.xz zsh-9ae36771fe34d764aa63d0ca65bae1e3970af4fd.tar.zst zsh-9ae36771fe34d764aa63d0ca65bae1e3970af4fd.zip | |
25723: align combining character when popped from input stack
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | Src/Zle/zle_main.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2008-09-22 Peter Stephenson <p.w.stephenson@ntlworld.com> + + * 25723: Src/Zle/zle_main.c: align combining character when + retrieved from input stack. + 2008-09-22 Clint Adams <clint@zsh.org> * 25721: Src/exec.c: revert another mistake of 25701. diff --git a/Src/Zle/zle_main.c b/Src/Zle/zle_main.c index dc6e07f2b..9e2edb956 100644 --- a/Src/Zle/zle_main.c +++ b/Src/Zle/zle_main.c @@ -1173,6 +1173,7 @@ zleread(char **lp, char **rp, int flags, int context) stackcs = -1; if (zlecs > zlell) zlecs = zlell; + CCLEFT(); } if (stackhist != -1) { histline = stackhist; |
