# HG changeset patch # User Richard M. Stallman # Date 729324852 0 # Node ID 23ab36427257686be0ad28bc2f01227b4a36ed4a # Parent 94f7516ccdc1c9be92a18d3a40b8eb4f1cfac547 (char_ins_del_cost): Use FRAME_WIDTH, not FRAME_HEIGHT. diff -r 94f7516ccdc1 -r 23ab36427257 src/dispnew.c --- a/src/dispnew.c Tue Feb 09 09:58:19 1993 +0000 +++ b/src/dispnew.c Wed Feb 10 06:14:12 1993 +0000 @@ -1243,7 +1243,7 @@ /* Char insertion/deletion cost vector, from term.c */ extern int *char_ins_del_vector; -#define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_HEIGHT((f))]) +#define char_ins_del_cost(f) (&char_ins_del_vector[FRAME_WIDTH((f))]) static void update_line (frame, vpos)