about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--Src/parse.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index cfb7fccf9..2db1f903c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-08-07  Sven Wischnowsky  <wischnow@zsh.org>
+
+	* 15584: Src/parse.c: increment zwc fie version (which means
+	changing the magic number)
+
 2001-08-06  Oliver Kiddle  <opk@zsh.org>
 
 	* 15574: Completion/Unix/Command/_cvs, Completion/Unix/Command/_dd,
diff --git a/Src/parse.c b/Src/parse.c
index e5373cfc9..cec3311dd 100644
--- a/Src/parse.c
+++ b/Src/parse.c
@@ -2269,8 +2269,8 @@ init_eprog(void)
 #define FD_MINMAP 4096
 
 #define FD_PRELEN 12
-#define FD_MAGIC  0x02030405
-#define FD_OMAGIC 0x05040302
+#define FD_MAGIC  0x03040506
+#define FD_OMAGIC 0x06050403
 
 #define FDF_MAP   1
 #define FDF_OTHER 2