=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.9 retrieving revision 1.10 diff -c -r1.9 -r1.10 *** src/usr.bin/tmux/tmux.h 2009/06/24 22:04:18 1.9 --- src/usr.bin/tmux/tmux.h 2009/06/24 22:49:56 1.10 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.9 2009/06/24 22:04:18 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.10 2009/06/24 22:49:56 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1456,1462 **** void window_pane_key(struct window_pane *, struct client *, int); void window_pane_mouse(struct window_pane *, struct client *, u_char, u_char, u_char); ! char *window_pane_search(struct window_pane *, const char *); /* layout.c */ const char * layout_name(struct window *); --- 1456,1463 ---- void window_pane_key(struct window_pane *, struct client *, int); void window_pane_mouse(struct window_pane *, struct client *, u_char, u_char, u_char); ! char *window_pane_search( ! struct window_pane *, const char *, u_int *); /* layout.c */ const char * layout_name(struct window *); *************** *** 1525,1534 **** /* utf8.c */ void utf8_build(void); int utf8_width(const u_char *); - - /* util.c */ - char *section_string(char *, size_t, size_t, size_t); - void clean_string(const char *, char *, size_t); /* procname.c */ char *get_proc_name(int, char *); --- 1526,1531 ----