diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-02-16 12:45:18 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-02-16 12:45:18 +0000 |
commit | 9e0e7df20ef42c55ffc250f97783069ec55d8969 (patch) | |
tree | 52a9b00f18dd4c19094d4ff6dc81f0957dc9bee5 | |
parent | fad7287310f0636736ec51e3fbb38efde4b0c9ac (diff) |
Leftovers from removing 88 colour support, from Theo Buehler.
-rw-r--r-- | usr.bin/tmux/tmux.1 | 10 | ||||
-rw-r--r-- | usr.bin/tmux/tmux.c | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/tmux/tmux.1 b/usr.bin/tmux/tmux.1 index 6ee0f1991b1..7f631c8c382 100644 --- a/usr.bin/tmux/tmux.1 +++ b/usr.bin/tmux/tmux.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: tmux.1,v 1.379 2014/02/02 08:48:48 jmc Exp $ +.\" $OpenBSD: tmux.1,v 1.380 2014/02/16 12:45:17 nicm Exp $ .\" .\" Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> .\" @@ -14,7 +14,7 @@ .\" IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING .\" OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. .\" -.Dd $Mdocdate: February 2 2014 $ +.Dd $Mdocdate: February 16 2014 $ .Dt TMUX 1 .Os .Sh NAME @@ -23,7 +23,7 @@ .Sh SYNOPSIS .Nm tmux .Bk -words -.Op Fl 28lCquv +.Op Fl 2lCquv .Op Fl c Ar shell-command .Op Fl f Ar file .Op Fl L Ar socket-name @@ -2637,9 +2637,9 @@ The terminal entry value is passed through before interpretation. The default value forcibly corrects the .Ql colors -entry for terminals which support 88 or 256 colours: +entry for terminals which support 256 colours: .Bd -literal -offset indent -"*88col*:colors=88,*256col*:colors=256,xterm*:XT" +"*256col*:colors=256,xterm*:XT" .Ed .It Ic update-environment Ar variables Set a space-separated string containing a list of environment variables to be diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index f74d4995524..bac0e42127b 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.128 2014/01/15 11:46:28 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.129 2014/02/16 12:45:17 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -57,7 +57,7 @@ __dead void usage(void) { fprintf(stderr, - "usage: %s [-28lquv] [-c shell-command] [-f file] [-L socket-name]\n" + "usage: %s [-2lquv] [-c shell-command] [-f file] [-L socket-name]\n" " [-S socket-path] [command [flags]]\n", __progname); exit(1); |