Package: gdk

Function gdk:unicode-to-keyval

Lambda List

gdk:unicode-to-keyval (unichar)

Arguments

unichar -- a ISO10646 encoded character

Return Value

The unsigned integer with the corresponding GDK key symbol, if one exists, or, if there is no corresponding symbol, unichar | 0x01000000.

Details

Convert from a ISO10646 character to a key symbol.

Examples

(mapcar 'gdk:unicode-to-keyval '(#\a #\b #\c))
=> (97 98 99)    
 

See also

2023-3-4