about summary refs log tree commit diff
path: root/Src/zsh.h
diff options
context:
space:
mode:
authorPeter Stephenson <pws@zsh.org>2017-02-13 16:32:50 +0000
committerPeter Stephenson <pws@zsh.org>2017-02-13 16:32:50 +0000
commitf5272bccd873e7df4cd63f13ee0e880cf832507e (patch)
treed859f55ad92c804280479e242fd512f4a1902e3b /Src/zsh.h
parent64c67581d2f4d131a3c1bebdeda6b70ec7da2610 (diff)
downloadzsh-f5272bccd873e7df4cd63f13ee0e880cf832507e.tar.gz
zsh-f5272bccd873e7df4cd63f13ee0e880cf832507e.tar.xz
zsh-f5272bccd873e7df4cd63f13ee0e880cf832507e.zip
40536: Prepend directory to $fpath.
Used if parent function is autoloaded by absolute path so
as to find functions in the same suite without shell code
modification.
Diffstat (limited to 'Src/zsh.h')
-rw-r--r--Src/zsh.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Src/zsh.h b/Src/zsh.h
index c3874144e..f2c279002 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -1807,6 +1807,7 @@ struct tieddata {
 #define PM_READONLY	(1<<10)	/* readonly                                 */
 #define PM_TAGGED	(1<<11)	/* tagged                                   */
 #define PM_EXPORTED	(1<<12)	/* exported                                 */
+#define PM_ABSPATH_USED (1<<12) /* (function): loaded using absolute path   */
 
 /* The following are the same since they *
  * both represent -U option to typeset   */