aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-16 17:35:40 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-16 17:35:40 +0000
commit55d5b83408de27485e6b2ecc311d9ff8eaae822b (patch)
tree58f63de5001cca24ae29fc488ee2a5ef4a9ab67b /tmux.h
parent1726bf0ffcda9f8911d0e6905c6dadd69d915525 (diff)
downloadrtmux-55d5b83408de27485e6b2ecc311d9ff8eaae822b.tar.gz
rtmux-55d5b83408de27485e6b2ecc311d9ff8eaae822b.tar.bz2
rtmux-55d5b83408de27485e6b2ecc311d9ff8eaae822b.zip
Informational messages on window option changes.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 4ae6dc3d..f6c02e05 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.143 2008-06-16 06:10:02 nicm Exp $ */
+/* $Id: tmux.h,v 1.144 2008-06-16 17:35:40 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -685,6 +685,7 @@ struct cmd_ctx {
struct msg_command_data *msgdata;
void (*print)(struct cmd_ctx *, const char *, ...);
+ void (*info)(struct cmd_ctx *, const char *, ...);
void (*error)(struct cmd_ctx *, const char *, ...);
#define CMD_KEY 0x1
@@ -760,6 +761,7 @@ extern struct options global_options;
extern char *cfg_file;
extern char *paste_buffer;
extern int debug_level;
+extern int be_quiet;
void logfile(const char *);
void siginit(void);
void sigreset(void);