about summary refs log tree commit diff
path: root/Src/zsh.h
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2001-07-06 18:33:59 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2001-07-06 18:33:59 +0000
commit2c75f5b0da61fa703b0b4f9dc12143aad5e00017 (patch)
tree73890893ddc261b0d5c64fc49e88571967c49efb /Src/zsh.h
parent3dc88e102e48395a7b96ec006eafae96c08db6b0 (diff)
downloadzsh-2c75f5b0da61fa703b0b4f9dc12143aad5e00017.tar.gz
zsh-2c75f5b0da61fa703b0b4f9dc12143aad5e00017.tar.xz
zsh-2c75f5b0da61fa703b0b4f9dc12143aad5e00017.zip
15291, 15292: fix bug setting scalar in math mode
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 5014099ce..74d0753bb 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -75,6 +75,7 @@ typedef struct {
 
 #define MN_INTEGER 1		/* mnumber is integer */
 #define MN_FLOAT   2		/* mnumber is floating point */
+#define MN_UNSET   4		/* mnumber not yet retrieved */
 
 typedef struct mathfunc *MathFunc;
 typedef mnumber (*NumMathFunc)(char *, int, mnumber *, int);