X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=xterm.c;fp=xterm.c;h=0000000000000000000000000000000000000000;hp=b3f506c602724b02989a336eedf4d19fac9ec496;hb=c22c84b23ab59c81ccd397c992b1c4adbbddeb80;hpb=d4483b5add8d25008c305b51729f4a53bccfaab8 diff --git a/xterm.c b/xterm.c deleted file mode 100644 index b3f506c..0000000 --- a/xterm.c +++ /dev/null @@ -1,22 +0,0 @@ -/* - * This file is part of mutt-ng, see http://www.muttng.org/. - * It's licensed under the GNU General Public License, - * please see the file GPL in the top level source directory. - */ -#include -#include -#include "xterm.h" - -void mutt_xterm_set_title (const char *title) { - fputs ("\033]2;", stdout); - fputs (NONULL (title), stdout); - fputs ("\007", stdout); - fflush (stdout); -} - -void mutt_xterm_set_icon (const char *name) { - fputs ("\033]1;", stdout); - fputs (NONULL (name), stdout); - fputs ("\007", stdout); - fflush (stdout); -}