diff options
author | Benno Schulenberg <bensberg@telfort.nl> | 2023-03-22 16:22:04 +0100 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-03-25 17:47:53 +0000 |
commit | 3ddfc9803676dd3b3ed909f8d9fbe1a699a5ce35 (patch) | |
tree | 0c11082954ea4bdaab96617009f4933f480247f0 | |
parent | 8cfcc91a3f86cbea5ba676715412880ff6a61b21 (diff) |
keysymdef.h: name the masculine ordinal indicator similar to feminine one
The symbolic name for the feminine ordinal indicator is 'ordfeminine',
so the name for the masculine ordinal indicator should be 'ordmasculine'
instead of just 'masculine'. Deprecate this latter form.
Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
-rw-r--r-- | include/X11/keysymdef.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/X11/keysymdef.h b/include/X11/keysymdef.h index 3e47ea1..7bb6ebf 100644 --- a/include/X11/keysymdef.h +++ b/include/X11/keysymdef.h @@ -666,7 +666,8 @@ SOFTWARE. #define XK_periodcentered 0x00b7 /* U+00B7 MIDDLE DOT */ #define XK_cedilla 0x00b8 /* U+00B8 CEDILLA */ #define XK_onesuperior 0x00b9 /* U+00B9 SUPERSCRIPT ONE */ -#define XK_masculine 0x00ba /* U+00BA MASCULINE ORDINAL INDICATOR */ +#define XK_ordmasculine 0x00ba /* U+00BA MASCULINE ORDINAL INDICATOR */ +#define XK_masculine 0x00ba /* deprecated inconsistent name */ #define XK_guillemetright 0x00bb /* U+00BB RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK */ #define XK_guillemotright 0x00bb /* deprecated misspelling */ #define XK_onequarter 0x00bc /* U+00BC VULGAR FRACTION ONE QUARTER */ |