-/* $OpenBSD: key-string.c,v 1.72 2024/08/21 04:17:09 nicm Exp $ */
+/* $OpenBSD: key-string.c,v 1.73 2024/08/22 05:39:55 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
#include <sys/types.h>
+#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <wchar.h>
key_code
key_string_lookup_string(const char *string)
{
- key_code key, modifiers;
+ key_code key, modifiers = 0;
u_int u, i;
struct utf8_data ud, *udp;
enum utf8_state more;
}
free(udp);
return (uc);
+
}
- /* Check for modifiers. */
- modifiers = 0;
+ /* Check for short Ctrl key. */
if (string[0] == '^' && string[1] != '\0') {
+ if (string[2] == '\0')
+ return (tolower((u_char)string[1])|KEYC_CTRL);
modifiers |= KEYC_CTRL;
string++;
}
+
+ /* Check for modifiers. */
modifiers |= key_string_get_modifiers(&string);
if (string == NULL || string[0] == '\0')
return (KEYC_UNKNOWN);