aboutsummaryrefslogtreecommitdiffstats
path: root/src/terminfo.c
diff options
context:
space:
mode:
authorJoakim Verona2012-09-10 16:03:53 +0200
committerJoakim Verona2012-09-10 16:03:53 +0200
commitb035a30e5cd2f34fedc04c253eeb5a11afed8145 (patch)
treeb9350cce389602f4967bdc1beed745929155ad5d /src/terminfo.c
parent4a37733c693d59a9b83a3fb2d0c7f9461d149f60 (diff)
parenta31a4cdacb196cc96dcb9bd229edb1d635e01344 (diff)
downloademacs-b035a30e5cd2f34fedc04c253eeb5a11afed8145.tar.gz
emacs-b035a30e5cd2f34fedc04c253eeb5a11afed8145.zip
upstream
Diffstat (limited to 'src/terminfo.c')
-rw-r--r--src/terminfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terminfo.c b/src/terminfo.c
index dce7af77bcf..ca2d89a000b 100644
--- a/src/terminfo.c
+++ b/src/terminfo.c
@@ -46,7 +46,7 @@ tparam (const char *string, char *outstring, int len,
46 46
47 /* Emacs always should pass a null OUTSTRING and zero LEN. */ 47 /* Emacs always should pass a null OUTSTRING and zero LEN. */
48 if (outstring || len) 48 if (outstring || len)
49 abort (); 49 emacs_abort ();
50 50
51 temp = tparm (string, arg1, arg2, arg3, arg4); 51 temp = tparm (string, arg1, arg2, arg3, arg4);
52 return xstrdup (temp); 52 return xstrdup (temp);