aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorJuanma Barranquero2010-07-07 11:45:28 +0200
committerJuanma Barranquero2010-07-07 11:45:28 +0200
commited3751c8245cbf523caf4975f654d459f070ea9a (patch)
tree1bc6a7e69181867c76389dbaca292f8d29af351a /src/window.c
parentcf84bb53567cf64b3dade9e9abeaef289371f0cc (diff)
downloademacs-ed3751c8245cbf523caf4975f654d459f070ea9a.tar.gz
emacs-ed3751c8245cbf523caf4975f654d459f070ea9a.zip
Fix whitespace to follow coding guidelines.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/window.c b/src/window.c
index 774fec255ec..28dfc635682 100644
--- a/src/window.c
+++ b/src/window.c
@@ -683,7 +683,7 @@ of just the text area, use `window-inside-absolute-pixel-edges'. */)
683{ 683{
684 register struct window *w = decode_any_window (window); 684 register struct window *w = decode_any_window (window);
685 int add_x, add_y; 685 int add_x, add_y;
686 calc_absolute_offset(w, &add_x, &add_y); 686 calc_absolute_offset (w, &add_x, &add_y);
687 687
688 return Fcons (make_number (WINDOW_LEFT_EDGE_X (w) + add_x), 688 return Fcons (make_number (WINDOW_LEFT_EDGE_X (w) + add_x),
689 Fcons (make_number (WINDOW_TOP_EDGE_Y (w) + add_y), 689 Fcons (make_number (WINDOW_TOP_EDGE_Y (w) + add_y),
@@ -761,7 +761,7 @@ display margins, fringes, header line, and/or mode line. */)
761{ 761{
762 register struct window *w = decode_any_window (window); 762 register struct window *w = decode_any_window (window);
763 int add_x, add_y; 763 int add_x, add_y;
764 calc_absolute_offset(w, &add_x, &add_y); 764 calc_absolute_offset (w, &add_x, &add_y);
765 765
766 return list4 (make_number (WINDOW_BOX_LEFT_EDGE_X (w) 766 return list4 (make_number (WINDOW_BOX_LEFT_EDGE_X (w)
767 + WINDOW_LEFT_MARGIN_WIDTH (w) 767 + WINDOW_LEFT_MARGIN_WIDTH (w)
@@ -3009,7 +3009,7 @@ adjust_window_margins (struct window *w)
3009 a specific window, it will attempt to strictly resize that window 3009 a specific window, it will attempt to strictly resize that window
3010 proportionally, even at the expense of deleting smaller windows. */ 3010 proportionally, even at the expense of deleting smaller windows. */
3011static int * 3011static int *
3012shrink_windows (int total, int size, int nchildren, int shrinkable, 3012shrink_windows (int total, int size, int nchildren, int shrinkable,
3013 int resize_fixed_p, Lisp_Object forward, int width_p, int safe_p) 3013 int resize_fixed_p, Lisp_Object forward, int width_p, int safe_p)
3014{ 3014{
3015 int available_resize = 0; 3015 int available_resize = 0;