From 6b1dc0f701754f244cd090c8ec74db5af4a418ed Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Thu, 9 Sep 2004 10:12:42 +0000 Subject: 20331: Use internal zlong variables for consistency 20332: Add WIDGETSTYLE zle parameter --- Src/zsh.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Src/zsh.h') diff --git a/Src/zsh.h b/Src/zsh.h index 40d506044..d6515b171 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -1129,6 +1129,7 @@ struct param { char **arr; /* value if declared array (PM_ARRAY) */ char *str; /* value if declared string (PM_SCALAR) */ zlong val; /* value if declared integer (PM_INTEGER) */ + zlong *valptr; /* value if special pointer to integer */ double dval; /* value if declared float (PM_EFLOAT|PM_FFLOAT) */ HashTable hash; /* value if declared assoc (PM_HASHED) */ @@ -1334,7 +1335,7 @@ struct histent { short *words; /* Position of words in history */ /* line: as pairs of start, end */ int nwords; /* Number of words in history line */ - int histnum; /* A sequential history number */ + zlong histnum; /* A sequential history number */ }; #define HIST_MAKEUNIQUE 0x00000001 /* Kill this new entry if not unique */ -- cgit 1.4.1