diff options
-rw-r--r-- | src/scroll.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scroll.c b/src/scroll.c index d4e1a33db1c..639f0f12628 100644 --- a/src/scroll.c +++ b/src/scroll.c @@ -477,8 +477,8 @@ scroll_cost (frame, from, to, amount) return (FRAME_INSERT_COST (frame)[offset + from] + (amount - 1) * FRAME_INSERTN_COST (frame)[offset + from] - + FRAME_DELETEN_COST (frame)[offset + to] - + (amount - 1) * FRAME_DELETE_COST (frame)[offset + to]); + + FRAME_DELETE_COST (frame)[offset + to] + + (amount - 1) * FRAME_DELETEN_COST (frame)[offset + to]); } /* Calculate the line insertion/deletion |