diff options
Diffstat (limited to 'Src')
-rw-r--r-- | Src/Zle/zle_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/zle_main.c b/Src/Zle/zle_main.c index 49b682c18..6c335c5e9 100644 --- a/Src/Zle/zle_main.c +++ b/Src/Zle/zle_main.c @@ -743,7 +743,7 @@ bin_vared(char *name, char **args, char *ops, int func) char *p1 = NULL, *p2 = NULL; FILE *oshout = NULL; - if (unset(USEZLE)) { + if ((interact && unset(USEZLE)) || !strcmp(term, "emacs")) { zwarnnam(name, "ZLE not enabled", NULL, 0); return 1; } |