=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/tmux.h,v retrieving revision 1.420 retrieving revision 1.421 diff -c -r1.420 -r1.421 *** src/usr.bin/tmux/tmux.h 2013/10/10 12:02:24 1.420 --- src/usr.bin/tmux/tmux.h 2013/10/10 12:07:37 1.421 *************** *** 1,4 **** ! /* $OpenBSD: tmux.h,v 1.420 2013/10/10 12:02:24 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: tmux.h,v 1.421 2013/10/10 12:07:37 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 1770,1776 **** struct winlink *cmd_find_pane(struct cmd_q *, const char *, struct session **, struct window_pane **); char *cmd_template_replace(const char *, const char *, int); ! const char *cmd_get_default_path(struct cmd_q *, const char *); extern const struct cmd_entry *cmd_table[]; extern const struct cmd_entry cmd_attach_session_entry; extern const struct cmd_entry cmd_bind_key_entry; --- 1770,1776 ---- struct winlink *cmd_find_pane(struct cmd_q *, const char *, struct session **, struct window_pane **); char *cmd_template_replace(const char *, const char *, int); ! const char *cmd_default_path(const char *, const char *, const char *); extern const struct cmd_entry *cmd_table[]; extern const struct cmd_entry cmd_attach_session_entry; extern const struct cmd_entry cmd_bind_key_entry; *************** *** 1879,1884 **** --- 1879,1885 ---- void cmdq_append(struct cmd_q *, struct cmd_list *); int cmdq_continue(struct cmd_q *); void cmdq_flush(struct cmd_q *); + const char *cmdq_default_path(struct cmd_q *, const char *); /* cmd-string.c */ int cmd_string_parse(const char *, struct cmd_list **, const char *,