summaryrefslogtreecommitdiff
path: root/colm/input.h
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2011-12-30 01:06:26 +0000
committerAdrian Thurston <thurston@complang.org>2011-12-30 01:06:26 +0000
commit63b74beec0dea0beeba7e59db0051c7475492480 (patch)
treee775550e0f684b86914a7a417607773ee957a01a /colm/input.h
parentbe118dc513c5e9b5a83bdd6a0cef00f13a055e4e (diff)
downloadcolm-63b74beec0dea0beeba7e59db0051c7475492480.tar.gz
Don't need the push back of full buffers in the input interface since we are no
longer sharing data. refs #340 #341.
Diffstat (limited to 'colm/input.h')
-rw-r--r--colm/input.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/colm/input.h b/colm/input.h
index 94a38b47..b87e9a60 100644
--- a/colm/input.h
+++ b/colm/input.h
@@ -102,7 +102,6 @@ struct SourceFuncs
struct ColmTree *(*undoPush)( SourceStream *is, int length );
struct ColmTree *(*undoAppend)( SourceStream *is, int length );
void (*pushBackNamed)( SourceStream *is );
- void (*pushBackBuf)( SourceStream *is, RunBuf *runBuf );
};
extern struct SourceFuncs baseFuncs;
@@ -217,7 +216,6 @@ void appendStream( InputStream *in, struct ColmTree *tree );
struct ColmTree *undoAppend( InputStream *in, int length );
struct ColmTree *undoAppendStream( InputStream *in );
void pushBackNamed( InputStream *in );
-void pushBackBuf( InputStream *in, RunBuf *runBuf );
RunBuf *inputStreamPopHead2( InputStream *is );