From c6423dc1ace36c9f26781cb80995bca27e4b7225 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 25 Oct 1994 10:34:49 +0000 Subject: [PATCH] (Fx_selection_exists_p): Fix backwards if. --- src/xselect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'.)") Display *dpy; /* It should be safe to call this before we have an X frame. */ - if (FRAME_X_P (selected_frame)) + if (! FRAME_X_P (selected_frame)) return Qnil; dpy = FRAME_X_DISPLAY (selected_frame); -- 2.39.5