diff src/xselect.c @ 9691:eea337e3af4e

(Fx_selection_exists_p): Fix backwards if.
author Richard M. Stallman <rms@gnu.org>
date Tue, 25 Oct 1994 10:34:49 +0000
parents 14a8113d8a8b
children 26a60dd57b6e
line wrap: on
line diff
--- 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);