about summary refs log tree commit diff
path: root/Src/zsh.h
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2006-09-17 19:28:45 +0000
committerClint Adams <clint@users.sourceforge.net>2006-09-17 19:28:45 +0000
commita7c0640c0a3b9ce7290b1c78a08eec7ed330ca67 (patch)
treeb356f534a24781a75400c382b3ad1377c86b51c3 /Src/zsh.h
parent4f11c3b8e356ea835f7791e9de4b73fd23d5daa9 (diff)
downloadzsh-a7c0640c0a3b9ce7290b1c78a08eec7ed330ca67.tar.gz
zsh-a7c0640c0a3b9ce7290b1c78a08eec7ed330ca67.tar.xz
zsh-a7c0640c0a3b9ce7290b1c78a08eec7ed330ca67.zip
22728: $functrace parameter for function backtraces.
Diffstat (limited to 'Src/zsh.h')
-rw-r--r--Src/zsh.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/zsh.h b/Src/zsh.h
index 27bb96493..ce6cf989a 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -1001,6 +1001,8 @@ struct shfunc {
 struct funcstack {
     Funcstack prev;		/* previous in stack */
     char *name;			/* name of function called */
+    char *caller;		/* name of caller */
+    int lineno;			/* line number in file */
 };
 
 /* node in list of function call wrappers */