diff options
Diffstat (limited to 'src/fringe.c')
-rw-r--r-- | src/fringe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fringe.c b/src/fringe.c index 5878c541247..25fecca2334 100644 --- a/src/fringe.c +++ b/src/fringe.c @@ -456,7 +456,7 @@ static struct fringe_bitmap standard_bitmaps[] = #define NO_FRINGE_BITMAP 0 #define UNDEF_FRINGE_BITMAP 1 -#define MAX_STANDARD_FRINGE_BITMAPS (sizeof(standard_bitmaps)/sizeof(standard_bitmaps[0])) +#define MAX_STANDARD_FRINGE_BITMAPS (sizeof (standard_bitmaps)/sizeof (standard_bitmaps[0])) static struct fringe_bitmap **fringe_bitmaps; static Lisp_Object *fringe_faces; @@ -1165,7 +1165,7 @@ update_window_fringes (struct window *w, int keep_current_p) } else if ((!row->reversed_p && row->truncated_on_left_p) || (row->reversed_p && row->truncated_on_right_p)) - left = LEFT_FRINGE(0, Qtruncation, 0); + left = LEFT_FRINGE (0, Qtruncation, 0); else if (row->indicate_bob_p && EQ (boundary_top, Qleft)) { left = ((row->indicate_eob_p && EQ (boundary_bot, Qleft)) @@ -1787,7 +1787,7 @@ init_fringe_once (void) int bt; for (bt = NO_FRINGE_BITMAP + 1; bt < MAX_STANDARD_FRINGE_BITMAPS; bt++) - init_fringe_bitmap(bt, &standard_bitmaps[bt], 1); + init_fringe_bitmap (bt, &standard_bitmaps[bt], 1); } void |