summaryrefslogtreecommitdiff
path: root/src/manage.c
diff options
context:
space:
mode:
authorsabetts <sabetts>2003-04-11 22:41:18 +0000
committersabetts <sabetts>2003-04-11 22:41:18 +0000
commit65614a8db29c5c0f1cb18010a92a202915509116 (patch)
treea8e2260be46817edbf1872c35abbb6071880a0ab /src/manage.c
parent82326f9f3e2bcbf7eca407944a7a77387d79f0b8 (diff)
downloadratpoison-65614a8db29c5c0f1cb18010a92a202915509116.zip
* src/manage.c (get_wmname): add a debug line to print the
property returned.
Diffstat (limited to 'src/manage.c')
-rw-r--r--src/manage.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/manage.c b/src/manage.c
index 1be4e7a..6446038 100644
--- a/src/manage.c
+++ b/src/manage.c
@@ -110,7 +110,9 @@ get_wmname (Window w)
return NULL;
}
- /* duplicate the string into out own buffer, and free the one given
+ PRINT_DEBUG (("WM_NAME: '%s'", name));
+
+ /* duplicate the string into our own buffer, and free the one given
to us by X. */
ret = xstrdup (name);
XFree (name);