diff options
author | Pierre Le Marre <dev@wismill.eu> | 2024-02-03 17:35:00 +0100 |
---|---|---|
committer | Pierre Le Marre <dev@wismill.eu> | 2024-02-03 18:13:07 +0100 |
commit | fe12c5102762afcbf852e50dcbbdea2ef625570c (patch) | |
tree | a2832163a86a557ef30c59296adc811e91e574e9 | |
parent | fbd19fa7e5f9e10b64c93380e0d2ed09a6a3693a (diff) |
keysyms: Add regex for keysyms with Unicode annotation in angle brackets
-rw-r--r-- | include/X11/keysymdef.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/X11/keysymdef.h b/include/X11/keysymdef.h index 3360a36..6bdd920 100644 --- a/include/X11/keysymdef.h +++ b/include/X11/keysymdef.h @@ -103,6 +103,7 @@ SOFTWARE. * that match one of these Perl regular expressions: * * /^\#define XK_([a-zA-Z_0-9]+)\s+0x([0-9a-f]+)\s*\/\* U\+([0-9A-F]{4,6}) (.*) \*\/\s*$/ + * /^\#define XK_([a-zA-Z_0-9]+)\s+0x([0-9a-f]+)\s*\/\*<U\+([0-9A-F]{4,6}) (.*)>\*\/\s*$/ * /^\#define XK_([a-zA-Z_0-9]+)\s+0x([0-9a-f]+)\s*\/\*\(U\+([0-9A-F]{4,6}) (.*)\)\*\/\s*$/ * /^\#define XK_([a-zA-Z_0-9]+)\s+0x([0-9a-f]+)\s*(\/\*\s*(.*)\s*\*\/)?\s*$/ * |