diff options
author | Emanuele Giaquinta <exg@irssi.org> | 2008-01-24 09:40:10 +0000 |
---|---|---|
committer | exg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2008-01-24 09:40:10 +0000 |
commit | ac006c34421eb1f1dffc625e0e2e410f5f42526d (patch) | |
tree | 88e9cc3dbfb01a83f5e08b073b5fc76e16875d01 | |
parent | f5194e296df0686c1824cb4dbdbfaf70cd34879d (diff) | |
download | irssi-ac006c34421eb1f1dffc625e0e2e410f5f42526d.zip |
Remove empty function.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4684 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/fe-text/term-terminfo.c | 1 | ||||
-rw-r--r-- | src/fe-text/terminfo-core.c | 6 | ||||
-rw-r--r-- | src/fe-text/terminfo-core.h | 3 |
3 files changed, 0 insertions, 10 deletions
diff --git a/src/fe-text/term-terminfo.c b/src/fe-text/term-terminfo.c index f2e552f3..e34d2ba4 100644 --- a/src/fe-text/term-terminfo.c +++ b/src/fe-text/term-terminfo.c @@ -165,7 +165,6 @@ static void term_move_reset(int x, int y) void term_resize(int width, int height) { if (width < 0 || height < 0) { - terminfo_resize(current_term); width = current_term->width; height = current_term->height; } diff --git a/src/fe-text/terminfo-core.c b/src/fe-text/terminfo-core.c index 530050c2..3d18b79b 100644 --- a/src/fe-text/terminfo-core.c +++ b/src/fe-text/terminfo-core.c @@ -384,12 +384,6 @@ static void term_fill_capabilities(TERM_REC *term) } } -/* Terminal was resized - ask the width/height from terminfo again */ -void terminfo_resize(TERM_REC *term) -{ - /* FIXME: is this possible? */ -} - static void terminfo_colors_deinit(TERM_REC *term) { int i; diff --git a/src/fe-text/terminfo-core.h b/src/fe-text/terminfo-core.h index 93afa78b..66764feb 100644 --- a/src/fe-text/terminfo-core.h +++ b/src/fe-text/terminfo-core.h @@ -93,9 +93,6 @@ void terminfo_core_deinit(TERM_REC *term); terminal capabilities don't contain color codes */ void terminfo_setup_colors(TERM_REC *term, int force); -/* Terminal was resized - ask the width/height from terminfo again */ -void terminfo_resize(TERM_REC *term); - void terminfo_cont(TERM_REC *term); void terminfo_stop(TERM_REC *term); |