summaryrefslogtreecommitdiffstats
path: root/parse.h
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2010-01-21 11:46:30 -0500
committerDave Brolley <brolley@redhat.com>2010-01-21 11:46:30 -0500
commitcabde31c2b2e13d253f2ba70921d6f01a6278af1 (patch)
tree3bbcf9b696e4ab7405b67cf79d01c406d87a23eb /parse.h
parentc32d53de58e44c31893fdc465d04fffdd98bc121 (diff)
parent4b5627b1afbdfb3f41d1d322e7fc0f8ebe69abe5 (diff)
downloadsystemtap-steved-cabde31c2b2e13d253f2ba70921d6f01a6278af1.tar.gz
systemtap-steved-cabde31c2b2e13d253f2ba70921d6f01a6278af1.tar.xz
systemtap-steved-cabde31c2b2e13d253f2ba70921d6f01a6278af1.zip
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'parse.h')
-rw-r--r--parse.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/parse.h b/parse.h
index 5587586e..0ff8664c 100644
--- a/parse.h
+++ b/parse.h
@@ -79,12 +79,14 @@ public:
private:
inline int input_get ();
inline int input_peek (unsigned n=0);
- void input_put (const std::string&);
+ void input_put (const std::string&, const token*);
std::string input_name;
std::string input_contents;
const char *input_pointer; // index into input_contents
const char *input_end;
unsigned cursor_suspend_count;
+ unsigned cursor_suspend_line;
+ unsigned cursor_suspend_column;
unsigned cursor_line;
unsigned cursor_column;
systemtap_session& session;