diff options
author | Tiago Cunha <tcunha@gmx.com> | 2011-01-03 23:30:43 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2011-01-03 23:30:43 +0000 |
commit | 9ad028e8ee183c96e0973aaf785bf849307e01a7 (patch) | |
tree | 0e44f5c9a631caacd722fb27f4e1d71ce2ff4f82 /tmux.h | |
parent | d9c848d3a61ab5debe19c97c84a7b0b8ce2e1edb (diff) | |
download | rtmux-9ad028e8ee183c96e0973aaf785bf849307e01a7.tar.gz rtmux-9ad028e8ee183c96e0973aaf785bf849307e01a7.tar.bz2 rtmux-9ad028e8ee183c96e0973aaf785bf849307e01a7.zip |
Sync OpenBSD patchset 822:
Another table that should be const.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.597 2011-01-03 23:27:54 tcunha Exp $ */ +/* $Id: tmux.h,v 1.598 2011-01-03 23:30:43 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1422,7 +1422,7 @@ void tty_cmd_reverseindex(struct tty *, const struct tty_ctx *); /* tty-term.c */ extern struct tty_terms tty_terms; -extern struct tty_term_code_entry tty_term_codes[NTTYCODE]; +extern const struct tty_term_code_entry tty_term_codes[NTTYCODE]; struct tty_term *tty_term_find(char *, int, const char *, char **); void tty_term_free(struct tty_term *); int tty_term_has(struct tty_term *, enum tty_code_code); |