about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--Src/zsh.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 021be2f94..87a3bbd56 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2017-01-28  Barton E. Schaefer  <schaefer@zsh.org>
+
+	* 40439: Src/zsh.h: PAT_HEAPDUP definition just for clarity
+
 2017-01-28  Peter Stephenson  <p.w.stephenson@ntlworld.com>
 
 	* 40440: ../Doc/Zsh/mod_parameter.yo, Modules/parameter.c,
diff --git a/Src/zsh.h b/Src/zsh.h
index d0222605b..c3874144e 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -1531,6 +1531,7 @@ struct patstralloc {
 
 /* Flags used in pattern matchers (Patprog) and passed down to patcompile */
 
+#define PAT_HEAPDUP	0x0000	/* Dummy flag for default behavior */
 #define PAT_FILE	0x0001	/* Pattern is a file name */
 #define PAT_FILET	0x0002	/* Pattern is top level file, affects ~ */
 #define PAT_ANY		0x0004	/* Match anything (cheap "*") */