From 76a770d9826c080f4d6be2cc959c3ce3e972c1b8 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Wed, 9 Sep 2015 06:25:21 -0700 Subject: linenoise: remove input-viewing debug function. This is unused code which just addds to the executable size. Also it passes a char to isprint, which is undefined behavior if that char happens to be negative. * linenoise/example.c (main): Remove --keycodes option and reference to lino_print_keycodes function. * linenoise/linenoise.c, linenoise/linenoise.h (lino_print_keycodes): Function removed. --- linenoise/linenoise.h | 1 - 1 file changed, 1 deletion(-) (limited to 'linenoise/linenoise.h') diff --git a/linenoise/linenoise.h b/linenoise/linenoise.h index 0822a59b..e9fb8793 100644 --- a/linenoise/linenoise.h +++ b/linenoise/linenoise.h @@ -68,4 +68,3 @@ int lino_hist_save(lino_t *, const char *filename); int lino_hist_load(lino_t *, const char *filename); int lino_clear_screen(lino_t *); void lino_set_multiline(lino_t *, int ml); -void lino_print_keycodes(lino_t *); -- cgit v1.2.3