From 304e1d45f0c8f3a2baf1bcbccbdb718759ee8d5b Mon Sep 17 00:00:00 2001 From: Ben Lubar Date: Thu, 5 Apr 2018 16:46:59 -0500 Subject: [PATCH] Remove unused labels in Console-posix.cpp --- library/Console-posix.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/library/Console-posix.cpp b/library/Console-posix.cpp index 8ef879d48..e68923f0e 100644 --- a/library/Console-posix.cpp +++ b/library/Console-posix.cpp @@ -532,7 +532,7 @@ namespace DFHack } if (seq[1] == 'D') { - left_arrow: + /* left arrow */ if (raw_cursor > 0) { raw_cursor--; @@ -541,7 +541,6 @@ namespace DFHack } else if ( seq[1] == 'C') { - right_arrow: /* right arrow */ if (size_t(raw_cursor) != raw_buffer.size()) {