diff options
| author | Stefan Kangas | 2024-01-07 21:43:56 +0100 |
|---|---|---|
| committer | Stefan Kangas | 2024-01-08 06:15:06 +0100 |
| commit | 6fdf035f62ed3cdd55a5cafe823a2d749637ce25 (patch) | |
| tree | a4bac910dbf64c3c7f2499d153f0c53599c8fecd /src | |
| parent | 50f430ebcd87b77207013f97e6e5d1b8fe93f990 (diff) | |
| download | emacs-6fdf035f62ed3cdd55a5cafe823a2d749637ce25.tar.gz emacs-6fdf035f62ed3cdd55a5cafe823a2d749637ce25.zip | |
; Delete a superfluous bitwise 'or'
* src/xterm.c (x_term_init): Avoid bitwise 'or' using the same
variable as both operands (X | X => X).
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 1 |
1 files changed, 0 insertions, 1 deletions
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) | |||
| 31503 | dpyinfo->selection_tracking_window, | 31503 | dpyinfo->selection_tracking_window, |
| 31504 | selection_name, | 31504 | selection_name, |
| 31505 | (XFixesSetSelectionOwnerNotifyMask | 31505 | (XFixesSetSelectionOwnerNotifyMask |
| 31506 | | XFixesSetSelectionOwnerNotifyMask | ||
| 31507 | | XFixesSelectionClientCloseNotifyMask)); | 31506 | | XFixesSelectionClientCloseNotifyMask)); |
| 31508 | } | 31507 | } |
| 31509 | 31508 | ||