]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fx_selection_exists_p): Fix backwards if.
authorRichard M. Stallman <rms@gnu.org>
Tue, 25 Oct 1994 10:34:49 +0000 (10:34 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 25 Oct 1994 10:34:49 +0000 (10:34 +0000)
src/xselect.c

index 282bfa8ffaf5dd2fa800b2f94f19f7df5a40f585..48ddc783517f84acc9f9de792532fc636f20b67b 100644 (file)
@@ -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);