# HG changeset patch # User Karl Heuer # Date 782438898 0 # Node ID 14cd96eda0e351777eae3687b19734c6d507302a # Parent ff5a8ffc542c7752a971cd74bacf3a4d8c596c84 (do_line_insertion_deletion_costs): Fix argument order. diff -r ff5a8ffc542c -r 14cd96eda0e3 src/scroll.c --- a/src/scroll.c Mon Oct 17 23:16:35 1994 +0000 +++ b/src/scroll.c Tue Oct 18 00:08:18 1994 +0000 @@ -610,6 +610,6 @@ ins_del_costs (frame, del_line_string, multi_del_string, setup_string, cleanup_string, - FRAME_DELETEN_COST (frame), FRAME_DELETE_COST (frame), + FRAME_DELETE_COST (frame), FRAME_DELETEN_COST (frame), coefficient); }