diff options
| author | Juanma Barranquero | 2010-07-25 21:30:14 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-07-25 21:30:14 +0200 |
| commit | da31e629b630248e9e89a00516a6f8c0572abee8 (patch) | |
| tree | da161d6f9a06dc97f910f1e2dcb0e80e9c78a37f /src | |
| parent | dcc19aacb785a5a0de0184342ab8eae714bff916 (diff) | |
| download | emacs-da31e629b630248e9e89a00516a6f8c0572abee8.tar.gz emacs-da31e629b630248e9e89a00516a6f8c0572abee8.zip | |
* terminfo.c (tparam): Fix prototype of tparm (followup to 2010-07-25T00:20:51Z!lekktu@gmail.com).
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/terminfo.c | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 50a9fcb8ba8..f099fc3437d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-07-25 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * terminfo.c (tparam): Fix prototype of tparm. | ||
| 4 | |||
| 1 | 2010-07-25 Andreas Schwab <schwab@linux-m68k.org> | 5 | 2010-07-25 Andreas Schwab <schwab@linux-m68k.org> |
| 2 | 6 | ||
| 3 | * emacs.c (main) [PROFILING]: Use __executable_start if defined to | 7 | * emacs.c (main) [PROFILING]: Use __executable_start if defined to |
diff --git a/src/terminfo.c b/src/terminfo.c index 89d7426e8f4..50749492cfe 100644 --- a/src/terminfo.c +++ b/src/terminfo.c | |||
| @@ -35,10 +35,12 @@ char *UP, *BC, PC; | |||
| 35 | */ | 35 | */ |
| 36 | 36 | ||
| 37 | char * | 37 | char * |
| 38 | tparam (char *string, char *outstring, int len, int arg1, int arg2, int arg3, int arg4, int arg5, int arg6, int arg7, int arg8, int arg9) | 38 | tparam (char *string, char *outstring, |
| 39 | int len, int arg1, int arg2, int arg3, int arg4, | ||
| 40 | int arg5, int arg6, int arg7, int arg8, int arg9) | ||
| 39 | { | 41 | { |
| 40 | char *temp; | 42 | char *temp; |
| 41 | extern char *tparm(/* ??? */); | 43 | extern char *tparm (char *str, ...); |
| 42 | 44 | ||
| 43 | temp = tparm (string, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); | 45 | temp = tparm (string, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); |
| 44 | if (outstring == 0) | 46 | if (outstring == 0) |