about summary refs log tree commit diff
path: root/Src/lex.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@users.sourceforge.net>2000-07-18 07:49:16 +0000
committerWayne Davison <wayned@users.sourceforge.net>2000-07-18 07:49:16 +0000
commit2e96c8f0742c9b759495226b8b20e3a8363e6d50 (patch)
treefce300172368ae68eb6339ea332aedfeeb843a4d /Src/lex.c
parentb33c464a706358e0c6e1202aee686fee95572abe (diff)
downloadzsh-2e96c8f0742c9b759495226b8b20e3a8363e6d50.tar.gz
zsh-2e96c8f0742c9b759495226b8b20e3a8363e6d50.tar.xz
zsh-2e96c8f0742c9b759495226b8b20e3a8363e6d50.zip
Removed the spaceflag variable.
Diffstat (limited to 'Src/lex.c')
-rw-r--r--Src/lex.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Src/lex.c b/Src/lex.c
index db2c2c8bd..2aec25678 100644
--- a/Src/lex.c
+++ b/Src/lex.c
@@ -177,7 +177,6 @@ struct lexstack {
     int isfirstch;
     int histactive;
     int histdone;
-    int spaceflag;
     int stophist;
     int hlinesz;
     char *hline;
@@ -233,7 +232,6 @@ lexsave(void)
     ls->isfirstch = isfirstch;
     ls->histactive = histactive;
     ls->histdone = histdone;
-    ls->spaceflag = spaceflag;
     ls->stophist = stophist;
     ls->hline = chline;
     ls->hptr = hptr;
@@ -294,7 +292,6 @@ lexrestore(void)
     isfirstch = lstack->isfirstch;
     histactive = lstack->histactive;
     histdone = lstack->histdone;
-    spaceflag = lstack->spaceflag;
     stophist = lstack->stophist;
     chline = lstack->hline;
     hptr = lstack->hptr;