diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-11-16 10:10:26 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-11-16 10:10:26 +0000 |
commit | 46f5e42145ed34567b29c73032adbd8a41f5dfa2 (patch) | |
tree | c084d02f1886fb187d9c34977f45f59ea3d896ab /tty.c | |
parent | 1425738790052e53211f8c38054f49eaf54cb644 (diff) | |
download | rtmux-46f5e42145ed34567b29c73032adbd8a41f5dfa2.tar.gz rtmux-46f5e42145ed34567b29c73032adbd8a41f5dfa2.tar.bz2 rtmux-46f5e42145ed34567b29c73032adbd8a41f5dfa2.zip |
Keep stack of previous windows.
Check for op (orig_pair) for default colours.
Diffstat (limited to 'tty.c')
-rw-r--r-- | tty.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tty.c,v 1.49 2008-11-05 01:19:24 nicm Exp $ */ +/* $Id: tty.c,v 1.50 2008-11-16 10:10:26 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -255,6 +255,7 @@ tty_find_term(char *name, int fd, char **cause) { struct tty_term *term; int error; + char *s; SLIST_FOREACH(term, &tty_terms, entry) { if (strcmp(term->name, name) == 0) { @@ -348,6 +349,9 @@ tty_find_term(char *name, int fd, char **cause) if (tigetflag("AX") == TRUE) term->flags |= TERM_HASDEFAULTS; + s = tigetstr("orig_pair"); + if (s != NULL && s != (char *) -1 && strcmp(s, "\033[39;49m") == 0) + term->flags |= TERM_HASDEFAULTS; /* * Try to figure out if we have 256 colours. The standard xterm |