changeset 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 f6d4e1acb5a1
children f4fa600e345f
files src/xselect.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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);