aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser.h
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2012-11-14 05:40:16 +0100
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2012-11-14 05:40:16 +0100
commita054db598ae07479bf70c4465434938085f91e03 (patch)
tree7049e06bf365efae59ac79d3d272d100eef64dc2 /parser.h
parent399cc7a1ab9751fdbbeae3507e8612dbbbc99f5b (diff)
downloadsciteco-a054db598ae07479bf70c4465434938085f91e03.tar.gz
error checking and colon modifier support for lots of commands
Diffstat (limited to 'parser.h')
-rw-r--r--parser.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/parser.h b/parser.h
index 979a5ce..e9ef59b 100644
--- a/parser.h
+++ b/parser.h
@@ -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);
};