mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-17 15:01:40 +02:00
12804: Fix "typeset -m".
This commit is contained in:
parent
879b24619a
commit
a12ff424b6
2 changed files with 14 additions and 0 deletions
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
||||||
|
2000-09-14 Bart Schaefer <schaefer@brasslantern.com>
|
||||||
|
|
||||||
|
* 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 <schaefer@zsh.org>
|
||||||
|
|
||||||
|
* 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 <schaefer@brasslantern.com>
|
2000-09-11 Bart Schaefer <schaefer@brasslantern.com>
|
||||||
|
|
||||||
* 12793: Completion/Builtins/_zle, Doc/Zsh/compwid.yo,
|
* 12793: Completion/Builtins/_zle, Doc/Zsh/compwid.yo,
|
||||||
|
|
|
@ -1942,6 +1942,7 @@ bin_typeset(char *name, char **argv, char *ops, int func)
|
||||||
|
|
||||||
/* With the -m option, treat arguments as glob patterns */
|
/* With the -m option, treat arguments as glob patterns */
|
||||||
if (ops['m']) {
|
if (ops['m']) {
|
||||||
|
on &= ~PM_LOCAL;
|
||||||
while ((asg = getasg(*argv++))) {
|
while ((asg = getasg(*argv++))) {
|
||||||
LinkList pmlist = newlinklist();
|
LinkList pmlist = newlinklist();
|
||||||
LinkNode pmnode;
|
LinkNode pmnode;
|
||||||
|
|
Loading…
Reference in a new issue