[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RP] [PATCH] move xa_string initialisation before first use
From: |
Bernhard R. Link |
Subject: |
[RP] [PATCH] move xa_string initialisation before first use |
Date: |
Wed, 13 Feb 2013 00:13:28 +0100 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
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));
--
1.7.10.4
- [RP] [PATCH] move xa_string initialisation before first use,
Bernhard R. Link <=