aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman2003-04-04 21:15:53 +0000
committerRichard M. Stallman2003-04-04 21:15:53 +0000
commitc65fd37090812c59305c40fa82402c2549afdc59 (patch)
treeca3ab6a4d111822f3605cb83cb6d3aa85329596a /src
parent7d025c556220147472dc2f6828d36d333866cd37 (diff)
downloademacs-c65fd37090812c59305c40fa82402c2549afdc59.tar.gz
emacs-c65fd37090812c59305c40fa82402c2549afdc59.zip
Break the line after the return type in function definition.
Diffstat (limited to 'src')
-rw-r--r--src/w32term.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/w32term.c b/src/w32term.c
index bd8ebc471ee..3656ff90b31 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -296,8 +296,9 @@ record_event (locus, type)
296#endif /* 0 */ 296#endif /* 0 */
297 297
298 298
299void XChangeGC (void * ignore, XGCValues* gc, unsigned long mask, 299void
300 XGCValues *xgcv) 300XChangeGC (void * ignore, XGCValues* gc, unsigned long mask,
301 XGCValues *xgcv)
301{ 302{
302 if (mask & GCForeground) 303 if (mask & GCForeground)
303 gc->foreground = xgcv->foreground; 304 gc->foreground = xgcv->foreground;
@@ -318,7 +319,8 @@ XGCValues *XCreateGC (void * ignore, Window window, unsigned long mask,
318 return gc; 319 return gc;
319} 320}
320 321
321void XGetGCValues (void* ignore, XGCValues *gc, 322void
323XGetGCValues (void* ignore, XGCValues *gc,
322 unsigned long mask, XGCValues *xgcv) 324 unsigned long mask, XGCValues *xgcv)
323{ 325{
324 XChangeGC (ignore, xgcv, mask, gc); 326 XChangeGC (ignore, xgcv, mask, gc);
@@ -5939,7 +5941,8 @@ x_wm_set_size_hint (f, flags, user_position)
5939} 5941}
5940 5942
5941/* Window manager things */ 5943/* Window manager things */
5942void x_wm_set_icon_position (f, icon_x, icon_y) 5944void
5945x_wm_set_icon_position (f, icon_x, icon_y)
5943 struct frame *f; 5946 struct frame *f;
5944 int icon_x, icon_y; 5947 int icon_x, icon_y;
5945{ 5948{