aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-10-25 10:34:49 +0000
committerRichard M. Stallman1994-10-25 10:34:49 +0000
commitc6423dc1ace36c9f26781cb80995bca27e4b7225 (patch)
tree59e72ebba2a47faf403463d39e6e9414abf5f643 /src
parent08a90d6aea5d7554da2cf7e172a19a75f2f6d50c (diff)
downloademacs-c6423dc1ace36c9f26781cb80995bca27e4b7225.tar.gz
emacs-c6423dc1ace36c9f26781cb80995bca27e4b7225.zip
(Fx_selection_exists_p): Fix backwards if.
Diffstat (limited to 'src')
-rw-r--r--src/xselect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xselect.c b/src/xselect.c
index 282bfa8ffaf..48ddc783517 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -1815,7 +1815,7 @@ and t is the same as `SECONDARY'.)")
1815 Display *dpy; 1815 Display *dpy;
1816 1816
1817 /* It should be safe to call this before we have an X frame. */ 1817 /* It should be safe to call this before we have an X frame. */
1818 if (FRAME_X_P (selected_frame)) 1818 if (! FRAME_X_P (selected_frame))
1819 return Qnil; 1819 return Qnil;
1820 1820
1821 dpy = FRAME_X_DISPLAY (selected_frame); 1821 dpy = FRAME_X_DISPLAY (selected_frame);