diff options
author | Andrea Corallo <akrl@sdf.org> | 2022-01-26 12:19:59 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2022-01-26 12:59:10 +0100 |
commit | 1200e55b6f359c2ba71138d5b0a2093ef163d805 (patch) | |
tree | 05f4b2a794df349ebb3460f095684382f301e12a /src/w16select.c | |
parent | a2eb83d037b36f43a124426a120af432b94b5b4e (diff) | |
download | emacs-1200e55b6f359c2ba71138d5b0a2093ef163d805.tar.gz emacs-1200e55b6f359c2ba71138d5b0a2093ef163d805.tar.bz2 emacs-1200e55b6f359c2ba71138d5b0a2093ef163d805.zip |
Make use of NILP where possible
* src/w32menu.c (menubar_selection_callback, w32_menu_show): Use NILP
where possible.
* src/w32fns.c (w32_set_mouse_color): Likewise.
* src/w16select.c (Fw16_selection_exists_p): Likewise.
* src/process.c (Fnetwork_lookup_address_info): Likewise.
* src/cygw32.c (Fcygwin_convert_file_name_to_windows)
(Fcygwin_convert_file_name_from_windows): Likewise.
Diffstat (limited to 'src/w16select.c')
-rw-r--r-- | src/w16select.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w16select.c b/src/w16select.c index f6bc3dd8d47..b878481e469 100644 --- a/src/w16select.c +++ b/src/w16select.c @@ -651,7 +651,7 @@ frame's display, or the first available X display. */) by the X interface code. (On MSDOS, killed text is only put into the clipboard if we run under Windows, so we cannot check the clipboard alone.) */ - if ((EQ (selection, Qnil) || EQ (selection, QPRIMARY)) + if ((NILP (selection) || EQ (selection, QPRIMARY)) && ! NILP (Fsymbol_value (Fintern_soft (build_string ("kill-ring"), Qnil)))) return Qt; |