Comment out unused fields in xkb_controls
Until (if) we implement/use them the should take up any (mental) space. Signed-off-by: Ran Benita <ran234@gmail.com>master
parent
cb631c2de0
commit
93ef256063
|
@ -332,22 +332,22 @@ struct xkb_names {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct xkb_controls {
|
struct xkb_controls {
|
||||||
unsigned char num_groups;
|
unsigned char num_groups;
|
||||||
unsigned char groups_wrap;
|
/* unsigned char groups_wrap; */
|
||||||
struct xkb_mods internal;
|
/* struct xkb_mods internal; */
|
||||||
struct xkb_mods ignore_lock;
|
/* struct xkb_mods ignore_lock; */
|
||||||
unsigned int enabled_ctrls;
|
unsigned int enabled_ctrls;
|
||||||
unsigned short repeat_delay;
|
/* unsigned short repeat_delay; */
|
||||||
unsigned short repeat_interval;
|
/* unsigned short repeat_interval; */
|
||||||
unsigned short slow_keys_delay;
|
/* unsigned short slow_keys_delay; */
|
||||||
unsigned short debounce_delay;
|
/* unsigned short debounce_delay; */
|
||||||
unsigned short ax_options;
|
/* unsigned short ax_options; */
|
||||||
unsigned short ax_timeout;
|
/* unsigned short ax_timeout; */
|
||||||
unsigned short axt_opts_mask;
|
/* unsigned short axt_opts_mask; */
|
||||||
unsigned short axt_opts_values;
|
/* unsigned short axt_opts_values; */
|
||||||
unsigned int axt_ctrls_mask;
|
/* unsigned int axt_ctrls_mask; */
|
||||||
unsigned int axt_ctrls_values;
|
/* unsigned int axt_ctrls_values; */
|
||||||
unsigned char *per_key_repeat;
|
unsigned char *per_key_repeat;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Common keyboard description structure */
|
/* Common keyboard description structure */
|
||||||
|
|
Loading…
Reference in New Issue