]> code.delx.au - gnu-emacs/blobdiff - src/terminfo.c
Merge from trunk.
[gnu-emacs] / src / terminfo.c
index dce7af77bcf714320bc4dc5c0406afef68ee9148..124c452a4a9e76e7f5466ca729f2e6d92cadcae2 100644 (file)
@@ -19,7 +19,6 @@ along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
 #include <config.h>
 #include "tparam.h"
 
-#include <setjmp.h>
 #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);