From 08eab7251797a19902b628ca84681f45284bfe32 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Sat, 27 Nov 2004 06:43:06 +0000 Subject: [PATCH] add debug messages to get_shortcut() and get_toggle() git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2140 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- ChangeLog | 2 ++ src/winio.c | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index c0bcd87f..46337df5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -61,6 +61,8 @@ CVS code - get_untranslated_kbinput() - Make the ascii_digits variables ints instead of size_t's, since they will only hold very small values. (DLR) + get_shortcut(), get_toggle() + - Add debug messages. (DLR) GNU nano 1.3.5 - 2004.11.22 - General: diff --git a/src/winio.c b/src/winio.c index f1e7426e..2ac375d8 100644 --- a/src/winio.c +++ b/src/winio.c @@ -1437,6 +1437,10 @@ const shortcut *get_shortcut(const shortcut *s_list, int kbinput, bool const shortcut *s = s_list; size_t slen = length_of_list(s_list); +#ifdef DEBUG + fprintf(stderr, "get_shortcut(): kbinput = %d, meta_key = %d, func_key = %d\n", kbinput, (int)*meta_key, (int)*func_key); +#endif + /* Check for shortcuts. */ for (; slen > 0; slen--) { /* We've found a shortcut if: @@ -1480,6 +1484,10 @@ const toggle *get_toggle(int kbinput, bool meta_key) { const toggle *t = toggles; +#ifdef DEBUG + fprintf(stderr, "get_toggle(): kbinput = %d, meta_key = %d\n", kbinput, (int)meta_key); +#endif + /* Check for toggles. */ for (; t != NULL; t = t->next) { /* We've found a toggle if meta_key is TRUE and the key is in -- 2.39.5