]> code.delx.au - gnu-emacs/blob - src/terminfo.c
Convert consecutive FSF copyright years to ranges.
[gnu-emacs] / src / terminfo.c
1 /* Interface from Emacs to terminfo.
2 Copyright (C) 1985-1986, 2001-2011 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18
19 #include <config.h>
20 #include <setjmp.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 char *UP, *BC, PC;
28
29 /* Interface to curses/terminfo library.
30 Turns out that all of the terminfo-level routines look
31 like their termcap counterparts except for tparm, which replaces
32 tgoto. Not only is the calling sequence different, but the string
33 format is different too.
34 */
35
36 char *
37 tparam (char *string, char *outstring,
38 int len, int arg1, int arg2, int arg3, int arg4,
39 int arg5, int arg6, int arg7, int arg8, int arg9)
40 {
41 char *temp;
42 extern char *tparm (char *str, ...);
43
44 temp = tparm (string, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9);
45 if (outstring == 0)
46 outstring = ((char *) (xmalloc ((strlen (temp)) + 1)));
47 strcpy (outstring, temp);
48 return outstring;
49 }
50