diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-11 07:49:06 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-11 07:49:06 +0100 |
commit | e6d7baf883ef3e75a9e5bd616a59df9405f63872 (patch) | |
tree | ec19062976da870780c50bc47056c0ab74c733eb /goto.h | |
parent | ef8196da650f70758e1366cb7be1a799f1455f8e (diff) | |
download | sciteco-e6d7baf883ef3e75a9e5bd616a59df9405f63872.tar.gz |
added <n>O...$ GOTO command
Diffstat (limited to 'goto.h')
-rw-r--r-- | goto.h | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -18,8 +18,14 @@ private: State *custom(gchar chr); }; +class StateGotoCmd : public StateExpectString { +private: + State *done(const gchar *str); +}; + namespace States { - extern StateLabel label; + extern StateLabel label; + extern StateGotoCmd gotocmd; } void goto_table_clear(void); |