From: Stefan Kangas Date: Sun, 7 Jan 2024 20:43:56 +0000 (+0100) Subject: ; Delete a superfluous bitwise 'or' X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6fdf035f62ed3cdd55a5cafe823a2d749637ce25;p=emacs.git ; Delete a superfluous bitwise 'or' * src/xterm.c (x_term_init): Avoid bitwise 'or' using the same variable as both operands (X | X => X). --- 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)); }