about summary refs log tree commit diff stats
path: root/080display.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-05-13 20:47:07 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-05-13 20:48:16 -0700
commit27ec57de4cc5eddd80f9faf198c0cebc345c1949 (patch)
treef85ec7a45b31f71925775c2a11ef6ff34765cf15 /080display.cc
parent6f4ce8654319ec2d5099d5d01a63d8e2e5ea0c6f (diff)
downloadmu-27ec57de4cc5eddd80f9faf198c0cebc345c1949.tar.gz
3858
Lose the ability to hide the cursor. If we want to stop buffering the screen
in termbox, it needs to go.

What's more, it has no tests.
Diffstat (limited to '080display.cc')
-rw-r--r--080display.cc30
1 files changed, 0 insertions, 30 deletions
diff --git a/080display.cc b/080display.cc
index 5de87688..26b17926 100644
--- a/080display.cc
+++ b/080display.cc
@@ -328,36 +328,6 @@ case DISPLAY_HEIGHT: {
 }
 
 :(before "End Primitive Recipe Declarations")
-HIDE_CURSOR_ON_DISPLAY,
-:(before "End Primitive Recipe Numbers")
-put(Recipe_ordinal, "hide-cursor-on-display", HIDE_CURSOR_ON_DISPLAY);
-:(before "End Primitive Recipe Checks")
-case HIDE_CURSOR_ON_DISPLAY: {
-  break;
-}
-:(before "End Primitive Recipe Implementations")
-case HIDE_CURSOR_ON_DISPLAY: {
-  CHECK_SCREEN;
-  tb_set_cursor(TB_HIDE_CURSOR, TB_HIDE_CURSOR);
-  break;
-}
-
-:(before "End Primitive Recipe Declarations")
-SHOW_CURSOR_ON_DISPLAY,
-:(before "End Primitive Recipe Numbers")
-put(Recipe_ordinal, "show-cursor-on-display", SHOW_CURSOR_ON_DISPLAY);
-:(before "End Primitive Recipe Checks")
-case SHOW_CURSOR_ON_DISPLAY: {
-  break;
-}
-:(before "End Primitive Recipe Implementations")
-case SHOW_CURSOR_ON_DISPLAY: {
-  CHECK_SCREEN;
-  tb_set_cursor(Display_row, Display_column);
-  break;
-}
-
-:(before "End Primitive Recipe Declarations")
 HIDE_DISPLAY,
 :(before "End Primitive Recipe Numbers")
 put(Recipe_ordinal, "hide-display", HIDE_DISPLAY);