From bfcba16761f8f0c90cc2f700f4d9375fe9c9f4d8 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Sun, 5 Dec 2004 06:11:01 +0000 Subject: [PATCH] cosmetic fixes git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2164 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- ChangeLog | 4 ++-- src/winio.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 54d1a2ba..621b19d6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -124,12 +124,12 @@ CVS code - putting back the first character of the escape sequence, as it worked just as well and was less complicated. (DLR) get_shortcut() - - Add debug message. (DLR) + - Add a debug message. (DLR) - Take kbinput as a reference instead of a value, so that it's translated when the key is translated to its equivalent control key or meta key shortcut. (DLR) get_toggle() - - Add debug message. (DLR) + - Add a debug message. (DLR) - configure.ac: - Remove specific references to control key shortcuts. (DLR) - doc/nanorc.sample: diff --git a/src/winio.c b/src/winio.c index d2b574fd..6fd7afc4 100644 --- a/src/winio.c +++ b/src/winio.c @@ -1573,7 +1573,7 @@ const toggle *get_toggle(int kbinput, bool meta_key) /* Check for toggles. */ for (; t != NULL; t = t->next) { /* We've found a toggle if meta_key is TRUE and the key is in - * the meta toggle list. */ + * the meta key toggle list. */ if (meta_key && kbinput == t->val) break; }