Mon Feb 24 21:05:00 2003 Michael Jennings (mej)

Screw it.  I don't see any way to "sanitize" these, as they put it,
so we'll just disable that for now until someone can throw me a clue.


SVN revision: 6715
This commit is contained in:
Michael Jennings 2003-02-25 02:05:48 +00:00
parent 7f21e5b5c9
commit 4b8a58d8a2
2 changed files with 9 additions and 0 deletions

View File

@ -4981,3 +4981,8 @@ Patch from Paul Brannan <pbrannan@atdesk.com> to fix a conflict
between twin's non-standard mouse drag reporting and vim when twin
support is not enabled.
----------------------------------------------------------------------
Mon Feb 24 21:05:00 2003 Michael Jennings (mej)
Screw it. I don't see any way to "sanitize" these, as they put it,
so we'll just disable that for now until someone can throw me a clue.
----------------------------------------------------------------------

View File

@ -1397,16 +1397,20 @@ process_window_mode(unsigned int nargs, int args[])
tt_write((unsigned char *) buff, strlen(buff));
break;
case 20:
#if FIXME_BLOCK
XGetIconName(Xdisplay, TermWin.parent, &name);
snprintf(buff, sizeof(buff), "\033]L%s\033\\", name);
tt_write((unsigned char *) buff, strlen(buff));
XFree(name);
#endif
break;
case 21:
#if FIXME_BLOCK
XFetchName(Xdisplay, TermWin.parent, &name);
snprintf(buff, sizeof(buff), "\033]l%s\033\\", name);
tt_write((unsigned char *) buff, strlen(buff));
XFree(name);
#endif
break;
default:
break;