diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2014-02-26 21:59:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2014-02-26 21:59:33 +0000 |
commit | 582c2671ddce5a8cdd6d022c7c67fe683ce71bf1 (patch) | |
tree | 253a7d5d02eed1e0d994e4f4cc92a167e2b98d42 /tmux.h | |
parent | 0bb9d51965f1920f303f8c9abd8133ce99d5818f (diff) | |
download | rtmux-582c2671ddce5a8cdd6d022c7c67fe683ce71bf1.tar.gz rtmux-582c2671ddce5a8cdd6d022c7c67fe683ce71bf1.tar.bz2 rtmux-582c2671ddce5a8cdd6d022c7c67fe683ce71bf1.zip |
Having three *clock* files is ridiculous, remove clock.c.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1710,10 +1710,6 @@ char *paste_print(struct paste_buffer *, size_t); void paste_send_pane(struct paste_buffer *, struct window_pane *, const char *, int); -/* clock.c */ -extern const char clock_table[14][5][5]; -void clock_draw(struct screen_write_ctx *, int, int); - /* arguments.c */ int args_cmp(struct args_entry *, struct args_entry *); RB_PROTOTYPE(args_tree, args_entry, entry, args_cmp); @@ -2219,6 +2215,7 @@ void layout_set_active_changed(struct window *); /* window-clock.c */ extern const struct window_mode window_clock_mode; +extern const char window_clock_table[14][5][5]; /* window-copy.c */ extern const struct window_mode window_copy_mode; |