=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.239 retrieving revision 1.240 diff -u -r1.239 -r1.240 --- src/usr.bin/tmux/tmux.h 2010/09/08 22:02:28 1.239 +++ src/usr.bin/tmux/tmux.h 2010/09/11 16:19:22 1.240 @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.239 2010/09/08 22:02:28 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.240 2010/09/11 16:19:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -972,6 +972,8 @@ char *name; u_int references; + char acs[UCHAR_MAX + 1][2]; + struct tty_code codes[NTTYCODE]; #define TERM_256COLOURS 0x1 @@ -1009,8 +1011,6 @@ struct grid_cell cell; - u_char acs[UCHAR_MAX + 1]; - #define TTY_NOCURSOR 0x1 #define TTY_FREEZE 0x2 #define TTY_ESCAPE 0x4 @@ -1372,7 +1372,6 @@ /* tty.c */ void tty_raw(struct tty *, const char *); -u_char tty_get_acs(struct tty *, u_char); void tty_attributes(struct tty *, const struct grid_cell *); void tty_reset(struct tty *); void tty_region_pane(struct tty *, const struct tty_ctx *, u_int, u_int); @@ -1425,6 +1424,9 @@ struct tty_term *, enum tty_code_code, int, int); int tty_term_number(struct tty_term *, enum tty_code_code); int tty_term_flag(struct tty_term *, enum tty_code_code); + +/* tty-acs.c */ +const char *tty_acs_get(struct tty *, u_char); /* tty-keys.c */ void tty_keys_init(struct tty *);