Mercurial > emacs
changeset 9576:14cd96eda0e3
(do_line_insertion_deletion_costs): Fix argument order.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 18 Oct 1994 00:08:18 +0000 |
parents | ff5a8ffc542c |
children | 3bf81e215f18 |
files | src/scroll.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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); }