From: Andreas Schwab Date: Thu, 15 Jul 2010 21:54:10 +0000 (+0200) Subject: * xterm.c (x_fully_uncatch_errors, x_trace_wire, x_check_font): Convert old-style... X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~51^2~42 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=01b564ff5e1e71e4e860e579f0f056b35d1191d0;p=emacs.git * xterm.c (x_fully_uncatch_errors, x_trace_wire, x_check_font): Convert old-style definition. --- diff --git a/src/ChangeLog b/src/ChangeLog index c2f8c596ed9..35c4294a9f6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,8 @@ 2010-07-15 Andreas Schwab + * xterm.c (x_fully_uncatch_errors, x_trace_wire, x_check_font): + Convert old-style definition. + * xmenu.c (create_and_show_popup_menu, xmenu_show): Fix type of timestamp argument. diff --git a/src/xterm.c b/src/xterm.c index 1427797f8d5..0f6d432f979 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -7503,7 +7503,7 @@ x_clear_errors (Display *dpy) /* Close off all unclosed x_catch_errors calls. */ void -x_fully_uncatch_errors () +x_fully_uncatch_errors (void) { while (x_error_message) x_uncatch_errors (); @@ -7520,7 +7520,7 @@ x_catching_errors (void) #if 0 static unsigned int x_wire_count; -x_trace_wire () +x_trace_wire (void) { fprintf (stderr, "Lib call: %d\n", ++x_wire_count); } @@ -9560,9 +9560,7 @@ x_wm_set_icon_position (struct frame *f, int icon_x, int icon_y) font table. */ static void -x_check_font (f, font) - struct frame *f; - struct font *font; +x_check_font (struct frame *f, struct font *font) { Lisp_Object frame;