changeset 9680:14a8113d8a8b

(Fx_selection_exists_p): If selected_frame isn't an x frame, return nil.
author Richard M. Stallman <rms@gnu.org>
date Mon, 24 Oct 1994 21:59:55 +0000
parents 363a1bef4ddb
children 06061a86c50a
files src/xselect.c
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/xselect.c	Mon Oct 24 15:34:50 1994 +0000
+++ b/src/xselect.c	Mon Oct 24 21:59:55 1994 +0000
@@ -1814,7 +1814,10 @@
   Atom atom;
   Display *dpy;
 
-  check_x ();
+  /* It should be safe to call this before we have an X frame.  */
+  if (FRAME_X_P (selected_frame))
+    return Qnil;
+
   dpy = FRAME_X_DISPLAY (selected_frame);
   CHECK_SYMBOL (selection, 0);
   if (!NILP (Fx_selection_owner_p (selection)))