# HG changeset patch # User Richard M. Stallman # Date 1049490953 0 # Node ID 37738feb0204da84294c800feacbc1506430da52 # Parent 6fe4a9da704fc14a803724a54bffca7bfe6595f1 Break the line after the return type in function definition. diff -r 6fe4a9da704f -r 37738feb0204 src/w32term.c --- a/src/w32term.c Fri Apr 04 21:02:36 2003 +0000 +++ b/src/w32term.c Fri Apr 04 21:15:53 2003 +0000 @@ -296,8 +296,9 @@ #endif /* 0 */ -void XChangeGC (void * ignore, XGCValues* gc, unsigned long mask, - XGCValues *xgcv) +void +XChangeGC (void * ignore, XGCValues* gc, unsigned long mask, + XGCValues *xgcv) { if (mask & GCForeground) gc->foreground = xgcv->foreground; @@ -318,7 +319,8 @@ return gc; } -void XGetGCValues (void* ignore, XGCValues *gc, +void +XGetGCValues (void* ignore, XGCValues *gc, unsigned long mask, XGCValues *xgcv) { XChangeGC (ignore, xgcv, mask, gc); @@ -5939,7 +5941,8 @@ } /* Window manager things */ -void x_wm_set_icon_position (f, icon_x, icon_y) +void +x_wm_set_icon_position (f, icon_x, icon_y) struct frame *f; int icon_x, icon_y; {