emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r100901: * terminfo.c (tparam): Fix p


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100901: * terminfo.c (tparam): Fix prototype of tparm (followup to revno:100891).
Date: Sun, 25 Jul 2010 21:30:14 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100901
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Sun 2010-07-25 21:30:14 +0200
message:
  * terminfo.c (tparam): Fix prototype of tparm (followup to revno:100891).
modified:
  src/ChangeLog
  src/terminfo.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-07-25 19:09:54 +0000
+++ b/src/ChangeLog     2010-07-25 19:30:14 +0000
@@ -1,3 +1,7 @@
+2010-07-25  Juanma Barranquero  <address@hidden>
+
+       * terminfo.c (tparam): Fix prototype of tparm.
+
 2010-07-25  Andreas Schwab  <address@hidden>
 
        * emacs.c (main) [PROFILING]: Use __executable_start if defined to

=== modified file 'src/terminfo.c'
--- a/src/terminfo.c    2010-07-04 07:50:25 +0000
+++ b/src/terminfo.c    2010-07-25 19:30:14 +0000
@@ -35,10 +35,12 @@
 */
 
 char *
-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)
+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)
 {
   char *temp;
-  extern char *tparm(/* ??? */);
+  extern char *tparm (char *str, ...);
 
   temp = tparm (string, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9);
   if (outstring == 0)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]