diff options
author | sabetts <sabetts> | 2003-04-11 22:41:18 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2003-04-11 22:41:18 +0000 |
commit | 65614a8db29c5c0f1cb18010a92a202915509116 (patch) | |
tree | a8e2260be46817edbf1872c35abbb6071880a0ab /src | |
parent | 82326f9f3e2bcbf7eca407944a7a77387d79f0b8 (diff) | |
download | ratpoison-65614a8db29c5c0f1cb18010a92a202915509116.zip |
* src/manage.c (get_wmname): add a debug line to print the
property returned.
Diffstat (limited to 'src')
-rw-r--r-- | src/manage.c | 4 |
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); |