# HG changeset patch # User Richard M. Stallman # Date 865212318 0 # Node ID b8c70b5f5abad900335be6811e4180a1fc405ce5 # Parent af791b0f065761a1bf5dad8a3036243783b2617a (compute_motion): Use XFASTINT on width_table elts. diff -r af791b0f0657 -r b8c70b5f5aba src/indent.c --- a/src/indent.c Mon Jun 02 00:33:14 1997 +0000 +++ b/src/indent.c Mon Jun 02 00:45:18 1997 +0000 @@ -1231,7 +1231,7 @@ /* Is this character part of the current run? If so, extend the run. */ if (pos - 1 == width_run_end - && width_table[c] == width_run_width) + && XFASTINT (width_table[c]) == width_run_width) width_run_end = pos; /* The previous run is over, since this is a character at a @@ -1247,7 +1247,7 @@ width_run_start, width_run_end); /* Start recording a new width run. */ - width_run_width = width_table[c]; + width_run_width = XFASTINT (width_table[c]); width_run_start = pos - 1; width_run_end = pos; }