1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

(system_uses_terminfo): New variable.

(syms_of_term): New function, to initialize it.
This commit is contained in:
Karl Heuer 1994-04-08 06:59:55 +00:00
parent 0d934e7b31
commit 07c57952d8

View File

@ -281,6 +281,9 @@ int specified_window;
FRAME_PTR updating_frame;
/* Provided for lisp packages. */
static int system_uses_terminfo;
char *tparam ();
ring_bell ()
@ -1651,3 +1654,15 @@ fatal (str, arg1, arg2)
fflush (stderr);
exit (1);
}
syms_of_term ()
{
DEFVAR_BOOL ("system-uses-terminfo", &system_uses_terminfo,
"Non-nil means the system uses terminfo rather than termcap.\n\
This variable can be used by terminal emulator packages.");
#ifdef TERMINFO
system_uses_terminfo = 1;
#else
system_uses_terminfo = 0;
#endif
}