about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Src/Zle/zle_utils.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 462ffdad6..27b4cde50 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-10-28  Peter Stephenson  <p.stephenson@samsung.com>
+
+	* 31922: Src/Zle/zle_utils.c (zlecharasstring): missing
+	flip of bit five when Meta marker inserted.
+
 2013-10-27  Barton E. Schaefer  <schaefer@zsh.org>
 
 	* 31912: Src/exec.c: in closemn(), distinguish closing for >&-
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++;
 	}