diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-03-07 12:58:40 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2001-03-07 12:58:40 +0000 |
commit | 33ec971c33714ff469a481d1409aa9330e043224 (patch) | |
tree | 182f1ecce434561b5f12ef6eb8e7dde52bebd282 /Src/zsh.h | |
parent | 8c978c4006683e8e3549116b2960c660ff04c225 (diff) | |
download | zsh-33ec971c33714ff469a481d1409aa9330e043224.tar.gz zsh-33ec971c33714ff469a481d1409aa9330e043224.tar.xz zsh-33ec971c33714ff469a481d1409aa9330e043224.zip |
two optimisations
Diffstat (limited to 'Src/zsh.h')
-rw-r--r-- | Src/zsh.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/zsh.h b/Src/zsh.h index bfc9052b6..baafdb0e6 100644 --- a/Src/zsh.h +++ b/Src/zsh.h @@ -522,9 +522,9 @@ struct estate { typedef struct eccstr *Eccstr; struct eccstr { - Eccstr next; + Eccstr left, right; char *str; - wordcode offs; + wordcode offs, aoffs; int nfunc; }; |