aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPo Lu2021-11-20 18:35:45 +0800
committerPo Lu2021-11-20 18:35:45 +0800
commit6b0424c102b736686caccdc633b6a7126e26dbc0 (patch)
treed86f9004db765e193b40112a2fafa0e4f979d340 /src
parent0c51c1b5ede3521d90a94abdea42dee5078a9432 (diff)
downloademacs-6b0424c102b736686caccdc633b6a7126e26dbc0.tar.gz
emacs-6b0424c102b736686caccdc633b6a7126e26dbc0.zip
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".
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c2
1 files changed, 1 insertions, 1 deletions
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)
14273 int minor = 3; 14273 int minor = 3;
14274#elif defined XI_TouchBegin /* XInput 2.2 */ 14274#elif defined XI_TouchBegin /* XInput 2.2 */
14275 int minor = 2; 14275 int minor = 2;
14276#elif defined XIScrollClass /* XInput 1.1 */ 14276#elif defined XIScrollClass /* XInput 2.1 */
14277 int minor = 1; 14277 int minor = 1;
14278#else /* Some old version of XI2 we're not interested in. */ 14278#else /* Some old version of XI2 we're not interested in. */
14279 int minor = 0; 14279 int minor = 0;