Remove xdo_t members that were removed upstream

At some point the upstream xdotool removed the modmap and keymap members
from the xdo struct, which breaks the ABI. The Debian maintainer wrote a
patch to keep it in and preserve ABI compatibility.

Since we are only dealing with the a pointer to an xdo_t, it should be
OK to remove it and still have it work on Debian.
This commit is contained in:
Eric Jiang 2020-10-31 19:52:57 -07:00
parent 826defad86
commit 07759535c2

View File

@ -88,12 +88,6 @@ typedef struct xdo {
/** @internal Length of charcodes array */
int charcodes_len;
/** @internal UNUSED -- result from XGetModifierMapping */
XModifierKeymap *modmap;
/** @internal UNUSED -- current keyboard mapping (via XGetKeyboardMapping) */
KeySym *keymap;
/** @internal highest keycode value */
int keycode_high; /* highest and lowest keycodes */