Variable: system-key-alist
system-key-alist is a variable defined in keyboard.c.
Value
nil
Documentation
Alist of system-specific X windows key symbols.
Each element should have the form (N . SYMBOL) where N is the numeric keysym code (sans the "system-specific" bit 1<<28) and SYMBOL is its name.
system-key-alist has a separate binding for each terminal device.
See Info node (elisp)Multiple Terminals.
Probably introduced at or before Emacs version 19.23.
Source Code
// Defined in /usr/src/emacs/src/keyboard.c
DEFVAR_KBOARD ("system-key-alist", Vsystem_key_alist,
doc: /* Alist of system-specific X windows key symbols.
Each element should have the form (N . SYMBOL) where N is the
numeric keysym code (sans the \"system-specific\" bit 1<<28)
and SYMBOL is its name.
`system-key-alist' has a separate binding for each terminal device.
See Info node `(elisp)Multiple Terminals'. */);