aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-06-20 18:45:35 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-06-20 18:45:35 +0000
commit3128de3f19e18c67626ba34523f6696b584c3f9e (patch)
treea00d8f203122e22528fb8c6f2291a6c32d0ea974 /tmux.c
parentef1c1d57531bbfd762434524fd8e774cf5b9a140 (diff)
downloadrtmux-3128de3f19e18c67626ba34523f6696b584c3f9e.tar.gz
rtmux-3128de3f19e18c67626ba34523f6696b584c3f9e.tar.bz2
rtmux-3128de3f19e18c67626ba34523f6696b584c3f9e.zip
buffer-limit option.
Diffstat (limited to 'tmux.c')
-rw-r--r--tmux.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmux.c b/tmux.c
index 68c92675..baef9dc5 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.65 2008-06-20 17:31:48 nicm Exp $ */
+/* $Id: tmux.c,v 1.66 2008-06-20 18:45:35 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -220,6 +220,7 @@ main(int argc, char **argv)
&global_options, "status-right", "%%H:%%M %%d-%%b-%%y");
options_set_number(&global_options, "status-interval", 15);
options_set_number(&global_options, "set-titles", 1);
+ options_set_number(&global_options, "buffer-limit", 9);
if (cfg_file == NULL) {
home = getenv("HOME");