about summary refs log tree commit diff stats
path: root/termbox
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-12-26 15:24:56 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-12-26 15:57:13 -0800
commit53fbba4f64d158ee79c6dc0cc25535f51a226187 (patch)
treee39327caae47dda236b75b742d43447f9da80b2a /termbox
parent204dae921abff0c70e017215bb3c91fa6ca11aff (diff)
downloadmu-53fbba4f64d158ee79c6dc0cc25535f51a226187.tar.gz
3711
Delete '^L' characters now that I'm trying to switch from Vim to Kakoune. Pages
aren't text objects in Kakoune.
Diffstat (limited to 'termbox')
-rw-r--r--termbox/termbox.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/termbox/termbox.h b/termbox/termbox.h
index 0d8e9129..c6cda6e1 100644
--- a/termbox/termbox.h
+++ b/termbox/termbox.h
@@ -74,8 +74,6 @@ void tb_set_cursor(int cx, int cy);
  * commit your changes. */
 void tb_change_cell(int x, int y, uint32_t ch, uint16_t fg, uint16_t bg);
 
-
-
 /*** 2. Controlling keyboard events. */
 
 struct tb_event {
@@ -206,8 +204,6 @@ int tb_poll_event(struct tb_event *event);
 
 int tb_event_ready(void);
 
-
-
 /*** 3. Utility utf8 functions. */
 #define TB_EOF -1
 int tb_utf8_char_length(char c);