aboutsummaryrefslogtreecommitdiffstats
path: root/editor.h
diff options
context:
space:
mode:
authorJan Tuomi <jan-sebastian.tuomi@aalto.fi>2016-10-09 14:09:04 +0300
committerJan Tuomi <jan-sebastian.tuomi@aalto.fi>2016-10-09 14:50:24 +0300
commite652c840eeba7d8bd4776fdbb45010c4770bdc04 (patch)
treec2858b72de3195bb416f47e2e6997e73a3cbdd06 /editor.h
parent06861f43e9898af8a9bccb33d1e1609494238d32 (diff)
Add delete line
Diffstat (limited to 'editor.h')
-rw-r--r--editor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor.h b/editor.h
index 6693446..645ab63 100644
--- a/editor.h
+++ b/editor.h
@@ -21,10 +21,12 @@ class Editor {
int move_to_command();
int write_command();
int quit_command();
+ int delete_and_clamp_command();
int edit_line(int line);
int move_to_line(int line);
int write();
+ int delete_and_clamp(int line);
};
#endif