diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Src/zsh.h | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index 7c0ffb1c2..55d181658 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2014-11-08 Peter Stephenson <p.w.stephenson@ntlworld.com> + * 33655: Src/zsh.h: remove overlap of node flags. + * 33653: Src/builtin.c: handle -a option to whence in combination with -m. diff --git a/Src/zsh.h b/Src/zsh.h index d284c7aa7..031deaf3f 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -1865,9 +1865,9 @@ typedef groupset *Groupset; #define PRINT_TYPESET (1<<5) /* flags for printing for the whence builtin */ -#define PRINT_WHENCE_CSH (1<<5) -#define PRINT_WHENCE_VERBOSE (1<<6) -#define PRINT_WHENCE_SIMPLE (1<<7) +#define PRINT_WHENCE_CSH (1<<6) +#define PRINT_WHENCE_VERBOSE (1<<7) +#define PRINT_WHENCE_SIMPLE (1<<8) #define PRINT_WHENCE_FUNCDEF (1<<9) #define PRINT_WHENCE_WORD (1<<10) |