summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2011-07-02 21:05:45 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2011-07-02 21:05:45 +0000
commit0ef14705bb9071d4fdda531639ad5caed6bda57c (patch)
tree80958d78d95cad3440781b8fdc4b0dbbeabea853 /usr.bin/tmux/tmux.h
parent00be9597d1e7e963d5acdac119d473015f7740a4 (diff)
Allow the initial context on prompts to be set with the new -I option to
command-prompt. From Tiago Cunha.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r--usr.bin/tmux/tmux.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index b85ac81da00..bf90883dd27 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.291 2011/06/27 00:04:49 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.292 2011/07/02 21:05:44 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1704,12 +1704,12 @@ char *status_replace(struct client *, struct session *,
void printflike2 status_message_set(struct client *, const char *, ...);
void status_message_clear(struct client *);
int status_message_redraw(struct client *);
-void status_prompt_set(struct client *, const char *,
+void status_prompt_set(struct client *, const char *, const char *,
int (*)(void *, const char *), void (*)(void *), void *, int);
void status_prompt_clear(struct client *);
int status_prompt_redraw(struct client *);
void status_prompt_key(struct client *, int);
-void status_prompt_update(struct client *, const char *);
+void status_prompt_update(struct client *, const char *, const char *);
/* resize.c */
void recalculate_sizes(void);