From: Richard M. Stallman Date: Tue, 25 Oct 1994 10:34:49 +0000 (+0000) Subject: (Fx_selection_exists_p): Fix backwards if. X-Git-Tag: emacs-19.34~6164 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c6423dc1ace36c9f26781cb80995bca27e4b7225;p=emacs.git (Fx_selection_exists_p): Fix backwards if. --- 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);