From eb506b8d0ee459706a1860f35ba46e7cdf8c7edd Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 17 Apr 1994 23:44:33 +0000 Subject: [PATCH] (Xatom_editres_name): Declared. (Fx_open_connection): Initialize it. --- src/xfns.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/xfns.c b/src/xfns.c index c095259b7e0..898f86c3119 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -147,6 +147,9 @@ extern Atom Xatom_wm_delete_window; extern Atom Xatom_wm_configure_denied; /* When our config request is denied */ extern Atom Xatom_wm_window_moved; /* When the WM moves us. */ +/* EditRes protocol */ +extern Atom Xatom_editres_name; + #else /* X10 */ /* Default size of an Emacs window. */ @@ -4066,6 +4069,7 @@ Optional second arg XRM_STRING is a string of resources in xrdb format.") "WM_CONFIGURE_DENIED", False); Xatom_wm_window_moved = XInternAtom (x_current_display, "WM_MOVED", False); + Xatom_editres_name = XInternAtom (x_current_display, "Editres", False); UNBLOCK_INPUT; #else /* not HAVE_X11 */ XFASTINT (Vwindow_system_version) = 10; -- 2.39.5