# HG changeset patch # User Richard M. Stallman # Date 783081289 0 # Node ID eea337e3af4e9dc8f67cd3ca8aae02aecf2fa779 # Parent f6d4e1acb5a1e70d4491c45d821764d133e0f936 (Fx_selection_exists_p): Fix backwards if. diff -r f6d4e1acb5a1 -r eea337e3af4e src/xselect.c --- a/src/xselect.c Tue Oct 25 10:33:36 1994 +0000 +++ b/src/xselect.c Tue Oct 25 10:34:49 1994 +0000 @@ -1815,7 +1815,7 @@ 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);