commit 08eab7251797a19902b628ca84681f45284bfe32
parent e08765dca5cabf064968904512dc5651ed27c41c
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Sat, 27 Nov 2004 06:43:06 +0000
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
Diffstat:
2 files changed, 10 insertions(+), 0 deletions(-)
diff --git 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
@@ -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