about summary refs log tree commit diff stats
path: root/src/input_win.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-01-03 21:39:10 +0000
committerJames Booth <boothj5@gmail.com>2013-01-03 21:39:10 +0000
commit0cd7d43953aeccd82d1aa2f662e7133db5c6edc3 (patch)
tree3da6c9a629e2f34e9aa380681f31642996cf7f1f /src/input_win.c
parent05292a0eb8bd12c84b22271e55c0bc661a87362d (diff)
downloadprofani-tty-0cd7d43953aeccd82d1aa2f662e7133db5c6edc3.tar.gz
Removed unused code and comments
Diffstat (limited to 'src/input_win.c')
-rw-r--r--src/input_win.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/input_win.c b/src/input_win.c
index bcfcc78b..4eba2d25 100644
--- a/src/input_win.c
+++ b/src/input_win.c
@@ -181,8 +181,6 @@ inp_get_char(char *input, int *size)
 
             // otherwise just append
             } else {
-                //cchar_t t = { 0, { ch, 0 } };
-                //wadd_wch(inp_win, &t);
                 char bytes[5];
                 size_t utf_len = wcrtomb(bytes, ch, NULL);
                 int i;
@@ -245,8 +243,6 @@ inp_get_next_char(void)
 void
 inp_replace_input(char *input, const char * const new_input, int *size)
 {
-    int i;
-
     strcpy(input, new_input);
     *size = strlen(input);
     inp_clear();