diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-07-07 14:28:57 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-07-07 14:42:40 +0200 |
commit | a8ccf66bc924fb02c9e944f99e84d90958dd142f (patch) | |
tree | 6ea59943a8c67f10ece9a1f6158fe3c72e5a1f0d /include/X11 | |
parent | 39eb59740d1e74b7202b9894cbf9738eb18df7c0 (diff) |
keysymdef: Fix left/rightanglebracket Unicode equivalent
As of version 7.7, the X protocol does not define a Unicode equivalent for
them. The U+27E8 and U+27E9 equivalents were introduced by 618956f1f ("The
big keysym cleanup, to bring implementation in line with the recent revision
of Appendix A of the protocol spec."), but as xterm Patch #226 explicitly
notes, U+2329 and U+232A should be used rather than U+27E8 and U+27E9. Gtk
also inherited this.
Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Diffstat (limited to 'include/X11')
-rw-r--r-- | include/X11/keysymdef.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/X11/keysymdef.h b/include/X11/keysymdef.h index d4a05e4..caa5177 100644 --- a/include/X11/keysymdef.h +++ b/include/X11/keysymdef.h @@ -1455,9 +1455,9 @@ SOFTWARE. #define XK_fivesixths 0x0ab7 /* U+215A VULGAR FRACTION FIVE SIXTHS */ #define XK_careof 0x0ab8 /* U+2105 CARE OF */ #define XK_figdash 0x0abb /* U+2012 FIGURE DASH */ -#define XK_leftanglebracket 0x0abc /*(U+27E8 MATHEMATICAL LEFT ANGLE BRACKET)*/ +#define XK_leftanglebracket 0x0abc /*(U+2329 LEFT-POINTING ANGLE BRACKET)*/ #define XK_decimalpoint 0x0abd /*(U+002E FULL STOP)*/ -#define XK_rightanglebracket 0x0abe /*(U+27E9 MATHEMATICAL RIGHT ANGLE BRACKET)*/ +#define XK_rightanglebracket 0x0abe /*(U+232A RIGHT-POINTING ANGLE BRACKET)*/ #define XK_marker 0x0abf #define XK_oneeighth 0x0ac3 /* U+215B VULGAR FRACTION ONE EIGHTH */ #define XK_threeeighths 0x0ac4 /* U+215C VULGAR FRACTION THREE EIGHTHS */ |