X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=doc%2Fmessage-registry.yaml;h=f7e0c2e1756b7a64431763ded7269b13e3168b4d;hb=eafd3aceca97d4984070115ec67f639b045b0d65;hp=fea46585fb53c9d5da5eda1a4a819690c6c337c4;hpb=417d0747b6dcf5cb28bd3cd6de33a0d574d7296d;p=platform%2Fupstream%2Flibxkbcommon.git diff --git a/doc/message-registry.yaml b/doc/message-registry.yaml index fea4658..f7e0c2e 100644 --- a/doc/message-registry.yaml +++ b/doc/message-registry.yaml @@ -100,6 +100,33 @@ added: ALWAYS type: warning description: "Warn if there are conflicting keysyms while merging keys" +- id: "numeric-keysym" + code: 489 + added: 1.6.0 + type: warning + description: "Warn on numeric keysym (other than 0-9)" + details: | + Numeric keysyms are not human-friendly. Use the corresponding named keysym + or Unicode keysym, if available. + examples: + - name: Hexadecimal keysym `0x1001ed0` + description: | + **Error message:** + + ``` + xkbcommon: WARNING: [XKB-489] numeric keysym "0x1001ed0" + ``` + before: | + ```c + key { [ 0x1001ed0] }; + ``` + after: | + ```c + // Preferred form: human-friendly + key { [ Ocircumflexacute ] }; + // or + key { [ U1ED0 ] }; + ``` - id: "extra-symbols-ignored" code: 516 added: ALWAYS