From: Karl Heuer Date: Tue, 18 Oct 1994 00:08:18 +0000 (+0000) Subject: (do_line_insertion_deletion_costs): Fix argument order. X-Git-Tag: emacs-19.34~6278 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fd374ddce23908a9d9a0a67b6fdb84d3aa912ef6;p=emacs.git (do_line_insertion_deletion_costs): Fix argument order. --- diff --git a/src/scroll.c b/src/scroll.c index 36975763333..d4e1a33db1c 100644 --- a/src/scroll.c +++ b/src/scroll.c @@ -610,6 +610,6 @@ do_line_insertion_deletion_costs (frame, 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); }