[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
keycode->keysym bug
VERSION:
R3
CLIENT MACHINE and OPERATING SYSTEM:
n/a
DISPLAY:
n/a
WINDOW MANAGER:
n/a
AREA:
CLX
SYNOPSIS:
Spec or code bug in keycode->keysym.
DESCRIPTION:
The spec says that keysym-index can be nil, but this will immediately cause
aref to choke. Who's wrong --- spec or code?
(defun keycode->keysym (display keycode keysym-index)
(declare (type display display)
(type card8 keycode)
(type (or null card8) keysym-index)
(values keysym))
FIX:
?