From 4b8a58d8a2cea2bdf8e908cf7742a8b449d059b7 Mon Sep 17 00:00:00 2001 From: Michael Jennings Date: Tue, 25 Feb 2003 02:05:48 +0000 Subject: [PATCH] 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 --- ChangeLog | 5 +++++ src/term.c | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7ce5b21..a0a18a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4981,3 +4981,8 @@ Patch from Paul Brannan 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. +---------------------------------------------------------------------- diff --git a/src/term.c b/src/term.c index 6ea9031..d1a0909 100644 --- a/src/term.c +++ b/src/term.c @@ -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;