diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-06-25 06:15:04 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-06-25 06:15:04 +0000 |
commit | 1675ddb4d1880b834a2bd0bbae5a9ffa17eb596d (patch) | |
tree | e0947101a25be132a7c964959cf884705f2f1076 /tty.c | |
parent | ed8350422e9472b657034367f39ab133f7913862 (diff) | |
download | rtmux-1675ddb4d1880b834a2bd0bbae5a9ffa17eb596d.tar.gz rtmux-1675ddb4d1880b834a2bd0bbae5a9ffa17eb596d.tar.bz2 rtmux-1675ddb4d1880b834a2bd0bbae5a9ffa17eb596d.zip |
Miscellaneous unused functions, including one which was basically a
duplicate. Found by lint.
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -547,16 +547,6 @@ tty_draw_line(struct tty *tty, struct screen *s, u_int py, u_int ox, u_int oy) } void -tty_write(struct tty *tty, struct window_pane *wp, enum tty_cmd cmd, ...) -{ - va_list ap; - - va_start(ap, cmd); - tty_vwrite(tty, wp, cmd, ap); - va_end(ap); -} - -void tty_vwrite( struct tty *tty, struct window_pane *wp, enum tty_cmd cmd, va_list ap) { |