On Wed, 28 May 2003, Thomas Dickey wrote:

> On Wed, May 28, 2003 at 07:16:08AM -0600, Marc Aurele La France wrote:
> > On Wed, 28 May 2003, Dr Andrew C Aitchison wrote:
> > 
> > > Patch 3.62 to xc/programs/xterm/screen.c breaks xterm resizing.
> > > The call to SET_TTYSIZE no longer happens when TRACE isn't enabled.
> > > Fix is to revert to version 3.61
> > 
> > OK.  I'll fix it.
> 
> presumably not by simply rolling back the change...

Why not ?

Old, working code:
-    code = SET_TTYSIZE(screen->respond, ts);
-    TRACE(("return %d from SET_TTYSIZE %dx%d\n", code, rows, cols));

New, broken code:
+    TRACE(("return %d from SET_TTYSIZE %dx%d\n",
+         SET_TTYSIZE(screen->respond, ts), rows, cols));

in the broken version since TRACE(...) is a null macro, cpp removes 
the call to SET_TTYSIZE.

-- 
Dr. Andrew C. Aitchison         Computer Officer, DPMMS, Cambridge
[EMAIL PROTECTED]       http://www.dpmms.cam.ac.uk/~werdna

_______________________________________________
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel

Reply via email to