diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-02-14 03:54:55 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-02-14 05:21:25 +0100 |
commit | 0f5c2c89f20dc07c1e0f8e8a619850629825c9c3 (patch) | |
tree | c23c40a555e2b355d75bef54d44485d0a4d3495e /src/cmdline.h | |
parent | 9fec9e70a2e3f50ca88e75e0e40977571ec79d88 (diff) | |
download | sciteco-0f5c2c89f20dc07c1e0f8e8a619850629825c9c3.tar.gz |
option for q-reg spec state machine to allocate (insert) new q-registers
* enabled for all modifying Q-Reg commands
Diffstat (limited to 'src/cmdline.h')
-rw-r--r-- | src/cmdline.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cmdline.h b/src/cmdline.h index 8747f63..443158f 100644 --- a/src/cmdline.h +++ b/src/cmdline.h @@ -35,6 +35,9 @@ void cmdline_keypress(gchar key); */ class StateSaveCmdline : public StateExpectQReg { +public: + StateSaveCmdline() : StateExpectQReg(true) {} + private: State *got_register(QRegister ®) throw (Error); }; |