diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-20 17:31:48 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-20 17:31:48 +0000 |
commit | 4e4f71febb506fc83abb75ca163eca250ca4ac2a (patch) | |
tree | 0b8f32021f4f9df9cad773d456d1fd24e48bfb87 /tmux.c | |
parent | 9798dcd4dfa481eb28096a637f5b555a12354ad8 (diff) | |
download | rtmux-4e4f71febb506fc83abb75ca163eca250ca4ac2a.tar.gz rtmux-4e4f71febb506fc83abb75ca163eca250ca4ac2a.tar.bz2 rtmux-4e4f71febb506fc83abb75ca163eca250ca4ac2a.zip |
Swap in new paste buffer code and add a couple more commands.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.64 2008-06-19 23:20:45 nicm Exp $ */ +/* $Id: tmux.c,v 1.65 2008-06-20 17:31:48 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -48,7 +48,6 @@ volatile sig_atomic_t sigterm; char *cfg_file; struct options global_options; -char *paste_buffer; int debug_level; int be_quiet; @@ -222,8 +221,6 @@ main(int argc, char **argv) options_set_number(&global_options, "status-interval", 15); options_set_number(&global_options, "set-titles", 1); - paste_buffer = NULL; - if (cfg_file == NULL) { home = getenv("HOME"); if (home == NULL || *home == '\0') { |