Hi, when ratpoison-1.4.6 got out I forgot to change a PRINT_ERROR into a PRINT_DEBUG (which was there before).
Since I'm too lazy to upload a new release, here's a patch. :P -- Jérémie Courrèges-Anglas PGP Key fingerprint: 61DB D9A0 00A4 67CF 2A90 8961 6191 8FBF 06A1 1494 Index: Makefile =================================================================== RCS file: /cvs/ports/x11/ratpoison/Makefile,v retrieving revision 1.27 diff -u -p -r1.27 Makefile --- Makefile 7 Apr 2013 20:09:23 -0000 1.27 +++ Makefile 1 May 2013 00:38:55 -0000 @@ -3,6 +3,7 @@ COMMENT= minimal wm based on GNU screen DISTNAME= ratpoison-1.4.6 +REVISION = 0 CATEGORIES= x11 HOMEPAGE= http://www.nongnu.org/ratpoison/ Index: patches/patch-src_manage_c =================================================================== RCS file: patches/patch-src_manage_c diff -N patches/patch-src_manage_c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ patches/patch-src_manage_c 1 May 2013 00:35:25 -0000 @@ -0,0 +1,12 @@ +$OpenBSD$ +--- src/manage.c.orig Wed May 1 02:35:16 2013 ++++ src/manage.c Wed May 1 02:35:22 2013 +@@ -233,7 +233,7 @@ get_wmname (Window w) + + if (XGetWMName (dpy, w, &text_prop) == 0) + { +- PRINT_ERROR (("XGetWMName failed\n")); ++ PRINT_DEBUG (("XGetWMName failed\n")); + return NULL; + } +
