about summary refs log tree commit diff
path: root/Src/zsh.h
diff options
context:
space:
mode:
authorPeter Stephenson <p.w.stephenson@ntlworld.com>2014-11-08 21:59:58 +0000
committerPeter Stephenson <p.w.stephenson@ntlworld.com>2014-11-08 21:59:58 +0000
commit65f56b565666690a878cedfbf3f24f364e58a8a5 (patch)
treeb1a5f1b86ada872e00e3023b51fedfa11812c263 /Src/zsh.h
parent0ccbc3873f7023a717973e9fe2a4e94317b35ad4 (diff)
downloadzsh-65f56b565666690a878cedfbf3f24f364e58a8a5.tar.gz
zsh-65f56b565666690a878cedfbf3f24f364e58a8a5.tar.xz
zsh-65f56b565666690a878cedfbf3f24f364e58a8a5.zip
33655: remove overlap of node flags
Diffstat (limited to 'Src/zsh.h')
-rw-r--r--Src/zsh.h6
1 files changed, 3 insertions, 3 deletions
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)