aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c
index ed34f85e78d..b81941aa585 100644
--- a/src/term.c
+++ b/src/term.c
@@ -1092,7 +1092,7 @@ calculate_ins_del_char_costs (frame)
1092 1092
1093 /* Delete costs are at negative offsets */ 1093 /* Delete costs are at negative offsets */
1094 p = &char_ins_del_cost (frame)[0]; 1094 p = &char_ins_del_cost (frame)[0];
1095 for (i = FRAME_WIDTH (selected_frame); --i >= 0;) 1095 for (i = FRAME_WIDTH (frame); --i >= 0;)
1096 *--p = (del_startup_cost += del_cost_per_char); 1096 *--p = (del_startup_cost += del_cost_per_char);
1097 1097
1098 /* Doing nothing is free */ 1098 /* Doing nothing is free */