From 535286c05aee55c0127cdabada8e54582905ef8e Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 21 Jan 2012 08:40:09 +0000 Subject: Drop the ability to have a list of keys in the prefix in favour of two separate options, prefix and prefix2. This simplifies the code and gets rid the data options type which was only used for this one option. Also add a -2 flag to send-prefix to send the secondary prefix key, fixing a cause of minor irritation. People who want three prefix keys are out of luck :-). --- key-string.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'key-string.c') diff --git a/key-string.c b/key-string.c index 29b6a844..08cf0b9c 100644 --- a/key-string.c +++ b/key-string.c @@ -188,6 +188,10 @@ key_string_lookup_key(int key) *out = '\0'; + /* Handle no key. */ + if (key == KEYC_NONE) + return ("none"); + /* * Special case: display C-@ as C-Space. Could do this below in * the (key >= 0 && key <= 32), but this way we let it be found -- cgit