From 13812e9f61fa3141619cb0e2fdf0ed41a5e2ec1d Mon Sep 17 00:00:00 2001 From: "Bernhard R. Link" Date: Wed, 13 Feb 2013 00:11:43 +0100 Subject: move xa_string initialisation before first use otherwise ratpoison -c no longer works --- src/main.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main.c b/src/main.c index 61aad69..ce90847 100644 --- a/src/main.c +++ b/src/main.c @@ -673,6 +673,11 @@ main (int argc, char *argv[]) rp_command_result = XInternAtom (dpy, "RP_COMMAND_RESULT", False); rp_selection = XInternAtom (dpy, "RP_SELECTION", False); + /* TEXT atoms */ + xa_string = XA_STRING; + xa_compound_text = XInternAtom(dpy, "COMPOUND_TEXT", False); + xa_utf8_string = XInternAtom(dpy, "UTF8_STRING", False); + if (cmd_count > 0) { int j; @@ -701,11 +706,6 @@ main (int argc, char *argv[]) wm_take_focus = XInternAtom(dpy, "WM_TAKE_FOCUS", False); wm_colormaps = XInternAtom(dpy, "WM_COLORMAP_WINDOWS", False); - /* TEXT atoms */ - xa_string = XA_STRING; - xa_compound_text = XInternAtom(dpy, "COMPOUND_TEXT", False); - xa_utf8_string = XInternAtom(dpy, "UTF8_STRING", False); - /* netwm atoms */ _net_wm_pid = XInternAtom(dpy, "_NET_WM_PID", False); PRINT_DEBUG (("_NET_WM_PID = %ld\n", _net_wm_pid)); -- cgit v1.2.3