summaryrefslogtreecommitdiff
path: root/Src/zsh.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/zsh.h')
-rw-r--r--Src/zsh.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/zsh.h b/Src/zsh.h
index 007a84acc..9ac1e8646 100644
--- a/Src/zsh.h
+++ b/Src/zsh.h
@@ -467,8 +467,8 @@ struct value {
int isarr;
Param pm; /* parameter node */
int inv; /* should we return the index ? */
- int a; /* first element of array slice, or -1 */
- int b; /* last element of array slice, or -1 */
+ int start; /* first element of array slice, or -1 */
+ int len; /* length of array slice, or -1 */
char **arr; /* cache for hash turned into array */
};