merging Emacs.app (NeXTstep port)
[bpt/emacs.git] / src / terminfo.c
1 /* Interface from Emacs to terminfo.
2 Copyright (C) 1985, 1986, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20 #include <config.h>
21 #include "lisp.h"
22
23 /* Define these variables that serve as global parameters to termcap,
24 so that we do not need to conditionalize the places in Emacs
25 that set them. */
26
27 /* Causes a conflict on OS X 10.3 .*/
28 #ifndef NS_IMPL_COCOA
29 char *UP, *BC, PC;
30 #endif
31
32 /* Interface to curses/terminfo library.
33 Turns out that all of the terminfo-level routines look
34 like their termcap counterparts except for tparm, which replaces
35 tgoto. Not only is the calling sequence different, but the string
36 format is different too.
37 */
38
39 char *
40 tparam (string, outstring, len, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)
41 char *string;
42 char *outstring;
43 int len, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9;
44 {
45 char *temp;
46 extern char *tparm();
47
48 temp = tparm (string, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9);
49 if (outstring == 0)
50 outstring = ((char *) (xmalloc ((strlen (temp)) + 1)));
51 strcpy (outstring, temp);
52 return outstring;
53 }
54
55 /* arch-tag: a6f96a69-e68f-4e9d-a223-f0b0da26ead5
56 (do not change this comment) */