about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2000-06-13 09:13:29 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2000-06-13 09:13:29 +0000
commit65b3fdc4ab7db92bdb046fa1d69ac2ae7c3b03b9 (patch)
treee1a0a773b674fd85203f137c5ac3644d53e936f4
parentcedd1006e661b990aaa8881c2efd4116bed574a3 (diff)
downloadzsh-65b3fdc4ab7db92bdb046fa1d69ac2ae7c3b03b9.tar.gz
zsh-65b3fdc4ab7db92bdb046fa1d69ac2ae7c3b03b9.tar.xz
zsh-65b3fdc4ab7db92bdb046fa1d69ac2ae7c3b03b9.zip
Make PRINT_* flags unique again
-rw-r--r--ChangeLog4
-rw-r--r--Src/zsh.h10
2 files changed, 9 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index d3b455a80..968312783 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-06-13  Peter Stephenson  <pws@cambridgesiliconradio.com>
+
+	* TBA: Src/zsh.h: make PRINT_ flags unique again.
+
 2000-06-13  Sven Wischnowsky  <wischnow@zsh.org>
 
 	* ?????: Completion/Core/_path_files, Src/Zle/complete.c,
diff --git a/Src/zsh.h b/Src/zsh.h
index d4f521f48..293947463 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -1216,11 +1216,11 @@ struct nameddir {
 #define PRINT_INCLUDEVALUE	(1<<4)
 
 /* flags for printing for the whence builtin */
-#define PRINT_WHENCE_CSH	(1<<4)
-#define PRINT_WHENCE_VERBOSE	(1<<5)
-#define PRINT_WHENCE_SIMPLE	(1<<6)
-#define PRINT_WHENCE_FUNCDEF	(1<<7)
-#define PRINT_WHENCE_WORD	(1<<8)
+#define PRINT_WHENCE_CSH	(1<<5)
+#define PRINT_WHENCE_VERBOSE	(1<<6)
+#define PRINT_WHENCE_SIMPLE	(1<<7)
+#define PRINT_WHENCE_FUNCDEF	(1<<9)
+#define PRINT_WHENCE_WORD	(1<<10)
 
 /***********************************/
 /* Definitions for history control */