aboutsummaryrefslogtreecommitdiffstats
path: root/src/scroll.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/scroll.c')
-rw-r--r--src/scroll.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/scroll.c b/src/scroll.c
index 037e338c696..3e296068e8f 100644
--- a/src/scroll.c
+++ b/src/scroll.c
@@ -86,7 +86,7 @@ static void do_scrolling (struct frame *,
86 new contents appears. */ 86 new contents appears. */
87 87
88static void 88static void
89calculate_scrolling (FRAME_PTR frame, 89calculate_scrolling (struct frame *frame,
90 /* matrix is of size window_size + 1 on each side. */ 90 /* matrix is of size window_size + 1 on each side. */
91 struct matrix_elt *matrix, 91 struct matrix_elt *matrix,
92 int window_size, int lines_below, 92 int window_size, int lines_below,
@@ -422,7 +422,7 @@ do_scrolling (struct frame *frame, struct glyph_matrix *current_matrix,
422 is the equivalent of draw_cost for the old line contents */ 422 is the equivalent of draw_cost for the old line contents */
423 423
424static void 424static void
425calculate_direct_scrolling (FRAME_PTR frame, 425calculate_direct_scrolling (struct frame *frame,
426 /* matrix is of size window_size + 1 on each side. */ 426 /* matrix is of size window_size + 1 on each side. */
427 struct matrix_elt *matrix, 427 struct matrix_elt *matrix,
428 int window_size, int lines_below, 428 int window_size, int lines_below,
@@ -793,7 +793,7 @@ do_direct_scrolling (struct frame *frame, struct glyph_matrix *current_matrix,
793 793
794 794
795void 795void
796scrolling_1 (FRAME_PTR frame, int window_size, int unchanged_at_top, 796scrolling_1 (struct frame *frame, int window_size, int unchanged_at_top,
797 int unchanged_at_bottom, int *draw_cost, int *old_draw_cost, 797 int unchanged_at_bottom, int *draw_cost, int *old_draw_cost,
798 int *old_hash, int *new_hash, int free_at_end) 798 int *old_hash, int *new_hash, int free_at_end)
799{ 799{
@@ -883,7 +883,7 @@ scrolling_max_lines_saved (int start, int end,
883 overhead and multiply factor values */ 883 overhead and multiply factor values */
884 884
885static void 885static void
886line_ins_del (FRAME_PTR frame, int ov1, int pf1, int ovn, int pfn, 886line_ins_del (struct frame *frame, int ov1, int pf1, int ovn, int pfn,
887 register int *ov, register int *mf) 887 register int *ov, register int *mf)
888{ 888{
889 register int i; 889 register int i;
@@ -901,7 +901,7 @@ line_ins_del (FRAME_PTR frame, int ov1, int pf1, int ovn, int pfn,
901} 901}
902 902
903static void 903static void
904ins_del_costs (FRAME_PTR frame, 904ins_del_costs (struct frame *frame,
905 const char *one_line_string, const char *multi_string, 905 const char *one_line_string, const char *multi_string,
906 const char *setup_string, const char *cleanup_string, 906 const char *setup_string, const char *cleanup_string,
907 int *costvec, int *ncostvec, 907 int *costvec, int *ncostvec,
@@ -957,7 +957,7 @@ ins_del_costs (FRAME_PTR frame,
957 */ 957 */
958 958
959void 959void
960do_line_insertion_deletion_costs (FRAME_PTR frame, 960do_line_insertion_deletion_costs (struct frame *frame,
961 const char *ins_line_string, 961 const char *ins_line_string,
962 const char *multi_ins_string, 962 const char *multi_ins_string,
963 const char *del_line_string, 963 const char *del_line_string,