about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@zsh.org>2015-06-08 09:50:26 +0100
committerPeter Stephenson <pws@zsh.org>2015-06-08 09:50:26 +0100
commit40446a9827310f732ed591e8408a8d0443fa0773 (patch)
tree9a26416479f0445abb5a4310f9343c882aeaa377
parente8cf611879a2d9e6bf84af0dabaa1ff985c96f4e (diff)
downloadzsh-40446a9827310f732ed591e8408a8d0443fa0773.tar.gz
zsh-40446a9827310f732ed591e8408a8d0443fa0773.tar.xz
zsh-40446a9827310f732ed591e8408a8d0443fa0773.zip
35416: Turn on MULTIBYTE in all emulations.
This now includes sh.
-rw-r--r--ChangeLog5
-rw-r--r--Src/options.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8dfdbc5cd..1ec1b05ef 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-06-08  Peter Stephenson  <p.stephenson@samsung.com>
+
+	* 35416: Src/options.c: Turn on MULTIBYTE in all
+	emulations, including sh.
+
 2015-06-08  Daniel Hahler  <zsh@thequod.de>
 
 	* 35216: Completion/Unix/Command/_git: _git-checkout: do not call
diff --git a/Src/options.c b/Src/options.c
index 3e3e07474..78f603de1 100644
--- a/Src/options.c
+++ b/Src/options.c
@@ -192,7 +192,7 @@ static struct optname optns[] = {
 {{NULL, "monitor",	      OPT_SPECIAL},		 MONITOR},
 {{NULL, "multibyte",
 #ifdef MULTIBYTE_SUPPORT
-			      OPT_EMULATE|OPT_ZSH|OPT_CSH|OPT_KSH
+			      OPT_ALL
 #else
 			      0
 #endif