about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorPeter Stephenson <pws@zsh.org>2013-10-28 17:51:38 +0000
committerPeter Stephenson <pws@zsh.org>2013-10-28 17:51:38 +0000
commitcbe9371023942960e56aa6fe87badf10eaf42cb8 (patch)
treedcea8790fe52765b932dc6fa87c28ec14f0ae75e /Src
parentc98cbe25d2be2c8c552250e7e039a72e1f61887b (diff)
downloadzsh-cbe9371023942960e56aa6fe87badf10eaf42cb8.tar.gz
zsh-cbe9371023942960e56aa6fe87badf10eaf42cb8.tar.xz
zsh-cbe9371023942960e56aa6fe87badf10eaf42cb8.zip
31922: zlecharasstring missed flip of bit 5 after Meta
Diffstat (limited to 'Src')
-rw-r--r--Src/Zle/zle_utils.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Src/Zle/zle_utils.c b/Src/Zle/zle_utils.c
index d0e7b5542..b84d253bb 100644
--- a/Src/Zle/zle_utils.c
+++ b/Src/Zle/zle_utils.c
@@ -145,6 +145,7 @@ zlecharasstring(ZLE_CHAR_T inchar, char *buf)
 		ptr2--;
 	    }
 	    *ptr = Meta;
+	    ptr[1] ^= 32;
 	    ret++;
 	}