comparison src/indent.c @ 21996:60178dff673f

Comment change.
author Richard M. Stallman <rms@gnu.org>
date Fri, 08 May 1998 05:10:29 +0000
parents 37088286bbd5
children 55f17d895354
comparison
equal deleted inserted replaced
21995:37088286bbd5 21996:60178dff673f
1059 /* The next buffer pos where we should consult the width run cache. */ 1059 /* The next buffer pos where we should consult the width run cache. */
1060 int next_width_run = from; 1060 int next_width_run = from;
1061 Lisp_Object window; 1061 Lisp_Object window;
1062 1062
1063 int multibyte = !NILP (current_buffer->enable_multibyte_characters); 1063 int multibyte = !NILP (current_buffer->enable_multibyte_characters);
1064 int wide_column_end_hpos = 0; /* Horizontal position at the end of 1064 /* If previous char scanned was a wide character,
1065 last wide-column character. */ 1065 this is the column where it ended. Otherwise, this is 0. */
1066 int wide_column_end_hpos = 0;
1066 int prev_pos; /* Previous buffer position. */ 1067 int prev_pos; /* Previous buffer position. */
1067 int prev_pos_byte; /* Previous buffer position. */ 1068 int prev_pos_byte; /* Previous buffer position. */
1068 int contin_hpos; /* HPOS of last column of continued line. */ 1069 int contin_hpos; /* HPOS of last column of continued line. */
1069 int prev_tab_offset; /* Previous tab offset. */ 1070 int prev_tab_offset; /* Previous tab offset. */
1070 1071