about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2017-01-28 15:37:27 -0800
committerBarton E. Schaefer <schaefer@zsh.org>2017-01-28 15:37:27 -0800
commit0672c753596bd454e7456fe660eab1b8bf2879d1 (patch)
tree3b336149f795cf1ec1b68b805cb2c96e67b53581
parent34f70c5dc08bbecd20fbb8a1797851103fbad45e (diff)
downloadzsh-0672c753596bd454e7456fe660eab1b8bf2879d1.tar.gz
zsh-0672c753596bd454e7456fe660eab1b8bf2879d1.tar.xz
zsh-0672c753596bd454e7456fe660eab1b8bf2879d1.zip
40439: PAT_HEAPDUP definition just for clarity
-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 "*") */