about summary refs log tree commit diff
path: root/Src/zsh.h
diff options
context:
space:
mode:
authorSven Wischnowsky <wischnow@users.sourceforge.net>2001-03-07 12:58:40 +0000
committerSven Wischnowsky <wischnow@users.sourceforge.net>2001-03-07 12:58:40 +0000
commit33ec971c33714ff469a481d1409aa9330e043224 (patch)
tree182f1ecce434561b5f12ef6eb8e7dde52bebd282 /Src/zsh.h
parent8c978c4006683e8e3549116b2960c660ff04c225 (diff)
downloadzsh-33ec971c33714ff469a481d1409aa9330e043224.tar.gz
zsh-33ec971c33714ff469a481d1409aa9330e043224.tar.xz
zsh-33ec971c33714ff469a481d1409aa9330e043224.zip
two optimisations
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 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;
 };