-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi!
I updated to 8.8 with libAfterImage support and got this message on the command line where I started urxvt: (null) : image path is "(null)". I traced this to a call of create_generic_imageman. Looking at the source code of libAfterImage, I noticed that this output did not depend on the argument, but only on some output threshold within libAI. While giving progress informations might make sense for applications dealing in graphics mainly, doing so seems of little use for rxvt-unicode. The attached patch lowers the output threshold one notch, disabling progress output while keeping warning and error messages. Greetings, Martin von Gagern -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.7 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHZ6FZRhp6o4m9dFsRAmz6AJoC5W91S64MUc8nCCOgf4cSDnn+FACfZjX5 C6seFyQwyXqKGPD57jG+6bQ= =HTDA -----END PGP SIGNATURE-----
diff -ur rxvt-unicode-8.8.orig/src/init.C rxvt-unicode-8.8/src/init.C --- rxvt-unicode-8.8.orig/src/init.C 2007-12-18 11:20:13.000000000 +0100 +++ rxvt-unicode-8.8/src/init.C 2007-12-18 11:21:16.000000000 +0100 @@ -415,6 +415,7 @@ #endif #ifdef HAVE_AFTERIMAGE + asim_set_output_threshold(OUTPUT_LEVEL_WARNING); asv = create_asvisual_for_id (dpy, display->screen, depth, XVisualIDFromVisual (visual), cmap, NULL); #endif free (r_argv);
_______________________________________________ rxvt-unicode mailing list [email protected] http://lists.schmorp.de/cgi-bin/mailman/listinfo/rxvt-unicode
