*** empty log message ***
authorroot <root>
Wed, 13 Jul 2005 00:51:25 +0000 (00:51 +0000)
committerroot <root>
Wed, 13 Jul 2005 00:51:25 +0000 (00:51 +0000)
Changes
src/rxvttoolkit.C

diff --git a/Changes b/Changes
index c2c049bc8d22227ffe3ef2f7a93fa9c38838bc00..23caa29c6a74c9de39ebab9444f82b55eb416662 100644 (file)
--- a/Changes
+++ b/Changes
@@ -16,6 +16,9 @@ WISH: just for fun, do shade and tint with XRender.
        - implement some useful (hopefully) options for rxvtd.
         - seperate and improved rxvtc(1) and rxvtd(1) manpages.
         - empty enacs= specification caused problems, removed it.
+        - fix a bug that caused segfaults on startup on systems that do
+          not support local unix connections, e.g cygwin. (btw, I didn't
+          even know about the -rootless and -multiwindow Cygwin/X modes).
 
 5.6  Sun Jun 26 22:11:13 CEST 2005
         - R_SB_RXVT bitset value was 0, so rxvt scrollbar was initialised
index a7e85051dc7875bdc84058479c378cb5a6e79fb7..bb3a5c261de602f42eab6c76a9a363d8ca895782 100644 (file)
@@ -152,7 +152,6 @@ bool rxvt_display::init ()
       strcpy (val, "unix/");
       strcat (val, id);
       display = XOpenDisplay (val);
-      printf ("OD %s => %p\n", val, display);//D
       free (val);
     }
   else
@@ -161,7 +160,6 @@ bool rxvt_display::init ()
 
   if (!display)
     display = XOpenDisplay (id);
-      printf ("O2 %s => %p\n", id, display);//D
 
   if (!display)
     return false;