1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-19 11:31:26 +01:00

fix trivial typo with "functions +T"

This commit is contained in:
Peter Stephenson 2012-10-09 09:24:22 +00:00
parent 5513970d96
commit 8d9cb7f42e
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2012-10-09 Peter Stephenson <pws@csr.com>
* unposted: Src/builtin.c: fix trivial typo with "functions +T".
2012-10-07 Peter Stephenson <p.w.stephenson@ntlworld.com>
* 30722: Src/builtin.c, Src/exec.c, Src/init.c, Src/options.c,
@ -244,5 +248,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
* $Revision: 1.5740 $
* $Revision: 1.5741 $
*****************************************************

View file

@ -2692,7 +2692,7 @@ bin_functions(char *name, char **argv, Options ops, int func)
if (OPT_MINUS(ops,'T'))
on |= PM_TAGGED_LOCAL;
else if (OPT_PLUS(ops,'T'))
on |= PM_TAGGED_LOCAL;
off |= PM_TAGGED_LOCAL;
if (OPT_MINUS(ops,'z')) {
on |= PM_ZSHSTORED;
off |= PM_KSHSTORED;