]> git.wh0rd.org Git - nano.git/commitdiff
cosmetic fixes
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 5 Dec 2004 06:11:01 +0000 (06:11 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sun, 5 Dec 2004 06:11:01 +0000 (06:11 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2164 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/winio.c

index 54d1a2ba3fbd4ee860d006e78100fd8d7d4e10dc..621b19d6a294e2feefb0a8f00ac485dad3d86e4c 100644 (file)
--- 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 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 debug message. (DLR)
 - configure.ac:
        - Remove specific references to control key shortcuts. (DLR)
 - doc/nanorc.sample:
index d2b574fd57e76ef730f06a3d9cf2b41661bb4ecc..6fd7afc41c2eea065fff34fabe6e7dd8915e0426 100644 (file)
@@ -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;
     }