From: Po Lu Date: Sat, 20 Nov 2021 10:35:45 +0000 (+0800) Subject: Fix a comment in XInput related code X-Git-Tag: emacs-29.0.90~2852^2~167 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6b0424c102b736686caccdc633b6a7126e26dbc0;p=emacs.git Fix a comment in XInput related code * src/xterm.c (x_term_init): Fix comment to say "XInput 2.1" instead of "XInput 1.1". --- diff --git a/src/xterm.c b/src/xterm.c index ed3921f2869..a023a5f9c89 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -14273,7 +14273,7 @@ x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name) int minor = 3; #elif defined XI_TouchBegin /* XInput 2.2 */ int minor = 2; -#elif defined XIScrollClass /* XInput 1.1 */ +#elif defined XIScrollClass /* XInput 2.1 */ int minor = 1; #else /* Some old version of XI2 we're not interested in. */ int minor = 0;