diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 2000-01-14 15:55:31 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-01-14 15:55:31 +0000 |
commit | 9fc3e9a8dbfd2bbce2fd825a104414994539cd4d (patch) | |
tree | 229ff25305667e5a68a524880d017ee516c91a1b /Src/zsh.h | |
parent | c64a281a9b21bef8cc40abbf222e63d599ae4d5e (diff) | |
download | zsh-9fc3e9a8dbfd2bbce2fd825a104414994539cd4d.tar.gz zsh-9fc3e9a8dbfd2bbce2fd825a104414994539cd4d.tar.xz zsh-9fc3e9a8dbfd2bbce2fd825a104414994539cd4d.zip |
zsh-workers/9318
Diffstat (limited to 'Src/zsh.h')
-rw-r--r-- | Src/zsh.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Src/zsh.h b/Src/zsh.h index 5c40cb945..88842e7d4 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -850,12 +850,13 @@ struct shfunc { /* Shell function context types. */ -#define SFC_DIRECT 0 /* called directly from the user */ -#define SFC_SIGNAL 1 /* signal handler */ -#define SFC_HOOK 2 /* one of the special functions */ -#define SFC_WIDGET 3 /* user defined widget */ -#define SFC_COMPLETE 4 /* called from completion code */ -#define SFC_CWIDGET 5 /* new style completion widget */ +#define SFC_NONE 0 /* no function running */ +#define SFC_DIRECT 1 /* called directly from the user */ +#define SFC_SIGNAL 2 /* signal handler */ +#define SFC_HOOK 3 /* one of the special functions */ +#define SFC_WIDGET 4 /* user defined widget */ +#define SFC_COMPLETE 5 /* called from completion code */ +#define SFC_CWIDGET 6 /* new style completion widget */ /* node in list of function call wrappers */ |