From a12ff424b683d74fbd973d06227fb90a0f87d3e1 Mon Sep 17 00:00:00 2001 From: Bart Schaefer Date: Thu, 14 Sep 2000 15:54:54 +0000 Subject: 12804: Fix "typeset -m". --- ChangeLog | 13 +++++++++++++ Src/builtin.c | 1 + 2 files changed, 14 insertions(+) diff --git a/ChangeLog b/ChangeLog index 2c397f67c..c43bfdf24 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,16 @@ +2000-09-14 Bart Schaefer + + * 12804: Src/builtin.c: "typeset -m" implies "-g". + + * unposted: Completion/Commands/_complete_debug: Changed my mind + about the edit to 12800. + +2000-09-13 Bart Schaefer + + * 12800: E. Jay Berkenbilt: Completion/Commands/_complete_debug: + Quote the file name pushed onto the history, in case the command + word has strange characters in it. (Slighty edited.) + 2000-09-11 Bart Schaefer * 12793: Completion/Builtins/_zle, Doc/Zsh/compwid.yo, diff --git a/Src/builtin.c b/Src/builtin.c index 864fd41b9..742527e00 100644 --- a/Src/builtin.c +++ b/Src/builtin.c @@ -1942,6 +1942,7 @@ bin_typeset(char *name, char **argv, char *ops, int func) /* With the -m option, treat arguments as glob patterns */ if (ops['m']) { + on &= ~PM_LOCAL; while ((asg = getasg(*argv++))) { LinkList pmlist = newlinklist(); LinkNode pmnode; -- cgit 1.4.1