diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-10 16:09:35 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-10 16:19:21 +0100 |
commit | 5e1ad77be8dcfa5ab399bd5f0f6be8c6b553a062 (patch) | |
tree | 4413016b4b19bc08c908c64eebc3a66348f8c9cc /src/qregisters.h | |
parent | 98d1948ac459d19d7ac28f5e8b652f2709df175f (diff) | |
download | sciteco-5e1ad77be8dcfa5ab399bd5f0f6be8c6b553a062.tar.gz |
extended ^U command: allow setting and appending of strings and characters from
the expression stack
now it's more like standard TECO's ^U command
Diffstat (limited to 'src/qregisters.h')
-rw-r--r-- | src/qregisters.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qregisters.h b/src/qregisters.h index 511d770..8d249cc 100644 --- a/src/qregisters.h +++ b/src/qregisters.h @@ -344,10 +344,13 @@ private: }; class StateSetQRegString : public StateExpectString { + bool text_added; + public: StateSetQRegString() : StateExpectString(false) {} private: + void initial(void); State *done(const gchar *str); }; |