From 6fdf035f62ed3cdd55a5cafe823a2d749637ce25 Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Sun, 7 Jan 2024 21:43:56 +0100 Subject: [PATCH] ; Delete a superfluous bitwise 'or' * src/xterm.c (x_term_init): Avoid bitwise 'or' using the same variable as both operands (X | X => X). --- src/xterm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index 1f398b2e39a..0cbf32ae1ea 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -31503,7 +31503,6 @@ x_term_init (Lisp_Object display_name, char *xrm_option, char *resource_name) dpyinfo->selection_tracking_window, selection_name, (XFixesSetSelectionOwnerNotifyMask - | XFixesSetSelectionOwnerNotifyMask | XFixesSelectionClientCloseNotifyMask)); } -- 2.39.2