diff options
Diffstat (limited to 'src/terminfo.c')
| -rw-r--r-- | src/terminfo.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/terminfo.c b/src/terminfo.c index dce7af77bcf..124c452a4a9 100644 --- a/src/terminfo.c +++ b/src/terminfo.c | |||
| @@ -19,7 +19,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 19 | #include <config.h> | 19 | #include <config.h> |
| 20 | #include "tparam.h" | 20 | #include "tparam.h" |
| 21 | 21 | ||
| 22 | #include <setjmp.h> | ||
| 23 | #include "lisp.h" | 22 | #include "lisp.h" |
| 24 | 23 | ||
| 25 | /* Define these variables that serve as global parameters to termcap, | 24 | /* Define these variables that serve as global parameters to termcap, |
| @@ -46,7 +45,7 @@ tparam (const char *string, char *outstring, int len, | |||
| 46 | 45 | ||
| 47 | /* Emacs always should pass a null OUTSTRING and zero LEN. */ | 46 | /* Emacs always should pass a null OUTSTRING and zero LEN. */ |
| 48 | if (outstring || len) | 47 | if (outstring || len) |
| 49 | abort (); | 48 | emacs_abort (); |
| 50 | 49 | ||
| 51 | temp = tparm (string, arg1, arg2, arg3, arg4); | 50 | temp = tparm (string, arg1, arg2, arg3, arg4); |
| 52 | return xstrdup (temp); | 51 | return xstrdup (temp); |