about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorPaul Ackersviller <packersv@users.sourceforge.net>2007-05-01 03:53:33 +0000
committerPaul Ackersviller <packersv@users.sourceforge.net>2007-05-01 03:53:33 +0000
commit1cc193e33df70ec8fabf607c90292690051894ea (patch)
tree2840830f61976828b3661243e2120a2a5218de71 /Src
parent417a80b1e25216b2ccaf4218bcbef717fcee3469 (diff)
downloadzsh-1cc193e33df70ec8fabf607c90292690051894ea.tar.gz
zsh-1cc193e33df70ec8fabf607c90292690051894ea.tar.xz
zsh-1cc193e33df70ec8fabf607c90292690051894ea.zip
Merge of 21296: Add ERR alias for ZERR where possible.
Diffstat (limited to 'Src')
-rw-r--r--Src/zsh.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/zsh.h b/Src/zsh.h
index 813d96364..4500cb21e 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -1843,7 +1843,8 @@ struct heap {
 /* Mask to get the above flags */
 #define ZSIG_MASK	(ZSIG_TRAPPED|ZSIG_IGNORED|ZSIG_FUNC)
 /* No. of bits to shift local level when storing in sigtrapped */
-#define ZSIG_SHIFT	3
+#define ZSIG_ALIAS	(1<<3)  /* Trap is stored under an alias */
+#define ZSIG_SHIFT	4
 
 /**********************************/
 /* Flags to third argument of zle */