aboutsummaryrefslogtreecommitdiff
path: root/tmux.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2008-11-16 13:28:59 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2008-11-16 13:28:59 +0000
commit5ca710d9e3284393dfbd294915e9e4251b0fe728 (patch)
treea7d6dc2e37673d14fe88ec6bf68e644271c67e92 /tmux.c
parent46f5e42145ed34567b29c73032adbd8a41f5dfa2 (diff)
downloadrtmux-5ca710d9e3284393dfbd294915e9e4251b0fe728.tar.gz
rtmux-5ca710d9e3284393dfbd294915e9e4251b0fe728.tar.bz2
rtmux-5ca710d9e3284393dfbd294915e9e4251b0fe728.zip
Disable UTF-8 by default and add options to enable it.
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 15c1d3b8..a481826d 100644
--- a/tmux.c
+++ b/tmux.c
@@ -1,4 +1,4 @@
-/* $Id: tmux.c,v 1.79 2008-09-29 16:03:27 nicm Exp $ */
+/* $Id: tmux.c,v 1.80 2008-11-16 13:28:59 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -231,6 +231,7 @@ main(int argc, char **argv)
options_set_number(&global_options, "buffer-limit", 9);
options_set_number(&global_options, "remain-by-default", 0);
options_set_number(&global_options, "mode-keys", MODEKEY_EMACS);
+ options_set_number(&global_options, "utf8-default", 0);
if (cfg_file == NULL) {
home = getenv("HOME");