xterm.c was absurd, no need to put trivial functions like this in a
[apps/madmutt.git] / xterm.c
diff --git a/xterm.c b/xterm.c
deleted file mode 100644 (file)
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 <stdio.h>
-#include <lib-lib/str.h>
-#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);
-}