]> git.wh0rd.org Git - nano.git/commitdiff
Remove recognition of K-keys.
authorBenno Schulenberg <bensberg@justemail.net>
Mon, 21 Apr 2014 17:47:16 +0000 (17:47 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Mon, 21 Apr 2014 17:47:16 +0000 (17:47 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4797 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/rcfile.c

index f6ff8a3b7605d4dcd86ced3c8b2940140fac9c4e..96d603657a6e8a49a1aef9eb92cfaa0582c8d8ee 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -15,6 +15,7 @@
        * src/global.c (assign_keyinfo): Decombine repetitive condition.
        * src/global.c (assign_keyinfo, shortcut_init): Give nicer names
        to the dedicated keys, for when they show up in the help lines.
+       * src/rcfile.c (parse_binding): K-keys no longer exist.
 
 2014-04-16  Benno Schulenberg  <bensberg@justemail.net>
        * src/winio.c (get_mouseinput): Properly find also the zeroeth
index 8c1c2b8244862ebeda3547f959291abab3929d16..2b7b0c2d27e27aae4d90ca0ae0abc0866f2d74c3 100644 (file)
@@ -499,7 +499,7 @@ void parse_binding(char *ptr, bool dobind)
        }
     }
 
-    if (keycopy[0] != 'M' && keycopy[0] != '^' && keycopy[0] != 'F' && keycopy[0] != 'K') {
+    if (keycopy[0] != '^' && keycopy[0] != 'M' && keycopy[0] != 'F') {
        rcfile_error(N_("Key name must begin with \"^\", \"M\", or \"F\""));
        return;
     }