diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-09-22 19:20:08 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-09-22 19:20:08 +0000 |
commit | 2c9d4dfdd4568f40ab1f3e7a20918d1f17ea0482 (patch) | |
tree | 237cb26f3f5c7999452661eb801d8f0af96222d6 /tty-term.c | |
parent | df7b68480cf37f4039a5fd1809fd7c8dbf127277 (diff) | |
download | rtmux-2c9d4dfdd4568f40ab1f3e7a20918d1f17ea0482.tar.gz rtmux-2c9d4dfdd4568f40ab1f3e7a20918d1f17ea0482.tar.bz2 rtmux-2c9d4dfdd4568f40ab1f3e7a20918d1f17ea0482.zip |
Tweak tparm() to make Solaris' backward userland happy and remove the -I mess
in configure which tried to deal with the fallout from their horrible package
management.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $Id: tty-term.c,v 1.30 2009-08-23 11:50:39 nicm Exp $ */ +/* $Id: tty-term.c,v 1.31 2009-09-22 19:20:08 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -417,13 +417,13 @@ tty_term_string(struct tty_term *term, enum tty_code_code code) const char * tty_term_string1(struct tty_term *term, enum tty_code_code code, int a) { - return (tparm((char *) tty_term_string(term, code), a)); + return (tparm((char *) tty_term_string(term, code), a, 0, 0, 0, 0, 0, 0, 0, 0)); } const char * tty_term_string2(struct tty_term *term, enum tty_code_code code, int a, int b) { - return (tparm((char *) tty_term_string(term, code), a, b)); + return (tparm((char *) tty_term_string(term, code), a, b, 0, 0, 0, 0, 0, 0, 0)); } int |