summaryrefslogtreecommitdiff
path: root/colm/pdarun.h
diff options
context:
space:
mode:
Diffstat (limited to 'colm/pdarun.h')
-rw-r--r--colm/pdarun.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/colm/pdarun.h b/colm/pdarun.h
index 73b3d0bb..cf159ead 100644
--- a/colm/pdarun.h
+++ b/colm/pdarun.h
@@ -83,9 +83,6 @@ typedef struct _FsmRun
int returnResult;
char *mark[MARK_SLOTS];
long matchedToken;
-
- StreamImpl *attachedInput;
- StreamImpl *attachedSource;
} FsmRun;
void initFsmRun( FsmRun *fsmRun, struct ColmProgram *prg );
@@ -463,10 +460,8 @@ void undoParseStream( struct ColmProgram *prg, Tree **sp, StreamImpl *inputStrea
void clearBuffered( FsmRun *fsmRun );
void resetToken( FsmRun *fsmRun );
-void detachInput( FsmRun *fsmRun, StreamImpl *is );
-void attachInput( FsmRun *fsmRun, StreamImpl *is );
-void detachSource( FsmRun *fsmRun, StreamImpl *ss );
-void attachSource( FsmRun *fsmRun, StreamImpl *ss );
+void detachStream( FsmRun *fsmRun, StreamImpl *is );
+void attachStream( FsmRun *fsmRun, StreamImpl *is );
#ifdef __cplusplus
}