Mercurial > hg > xemacs-beta
comparison src/terminfo.c @ 424:11054d720c21 r21-2-20
Import from CVS: tag r21-2-20
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:26:11 +0200 |
parents | 697ef44129c6 |
children |
comparison
equal
deleted
inserted
replaced
423:28d9c139be4c | 424:11054d720c21 |
---|---|
79 char *temp; | 79 char *temp; |
80 | 80 |
81 temp = (char *) tparm (string, arg1, arg2, arg3, arg4, arg5, arg6, arg7, | 81 temp = (char *) tparm (string, arg1, arg2, arg3, arg4, arg5, arg6, arg7, |
82 arg8, arg9); | 82 arg8, arg9); |
83 if (outstring == 0) | 83 if (outstring == 0) |
84 outstring = ((char *) (xmalloc ((strlen (temp)) + 1))); | 84 outstring = (char *) xmalloc (strlen (temp) + 1); |
85 strcpy (outstring, temp); | 85 strcpy (outstring, temp); |
86 return outstring; | 86 return outstring; |
87 } | 87 } |
88 | 88 |
89 #endif /* not HAVE_TERMIOS */ | 89 #endif /* not HAVE_TERMIOS */ |