diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-14 05:40:16 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-14 05:40:16 +0100 |
commit | a054db598ae07479bf70c4465434938085f91e03 (patch) | |
tree | 7049e06bf365efae59ac79d3d272d100eef64dc2 /parser.h | |
parent | 399cc7a1ab9751fdbbeae3507e8612dbbbc99f5b (diff) | |
download | sciteco-a054db598ae07479bf70c4465434938085f91e03.tar.gz |
error checking and colon modifier support for lots of commands
Diffstat (limited to 'parser.h')
-rw-r--r-- | parser.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -106,9 +106,9 @@ public: StateStart(); private: - void move(gint64 n); - void move_lines(gint64 n); - void delete_words(gint64 n); + tecoBool move_chars(gint64 n); + tecoBool move_lines(gint64 n); + tecoBool delete_words(gint64 n); State *custom(gchar chr); }; |