X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/6e5fa6bfce1362c2ebf049fcfa1e6f2a4762ccef..aab1fcdf812a7ebd32b8312c05ffcdd1bf610d2b:/src/terminfo.c diff --git a/src/terminfo.c b/src/terminfo.c index c0418984ef..0e5e198546 100644 --- a/src/terminfo.c +++ b/src/terminfo.c @@ -1,5 +1,5 @@ /* Interface from Emacs to terminfo. - Copyright (C) 1985-1986, 2001-2011 Free Software Foundation, Inc. + Copyright (C) 1985-1986, 2001-2013 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -19,7 +19,6 @@ along with GNU Emacs. If not, see . */ #include #include "tparam.h" -#include #include "lisp.h" /* Define these variables that serve as global parameters to termcap, @@ -46,7 +45,7 @@ tparam (const char *string, char *outstring, int len, /* Emacs always should pass a null OUTSTRING and zero LEN. */ if (outstring || len) - abort (); + emacs_abort (); temp = tparm (string, arg1, arg2, arg3, arg4); return xstrdup (temp);