diff options
| author | Richard M. Stallman | 1998-05-08 05:10:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-05-08 05:10:29 +0000 |
| commit | c71c19f4975ed6bc65e93400efa85d07a562c53b (patch) | |
| tree | 022cb671e2c08d0f659749c4aa21951764ce2621 /src/indent.c | |
| parent | c38bd4283991629d6b1fbade919be1006e984108 (diff) | |
| download | emacs-c71c19f4975ed6bc65e93400efa85d07a562c53b.tar.gz emacs-c71c19f4975ed6bc65e93400efa85d07a562c53b.zip | |
Comment change.
Diffstat (limited to 'src/indent.c')
| -rw-r--r-- | src/indent.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/indent.c b/src/indent.c index b4dc11c13cc..6ca70c744f4 100644 --- a/src/indent.c +++ b/src/indent.c | |||
| @@ -1061,8 +1061,9 @@ compute_motion (from, fromvpos, fromhpos, did_motion, to, tovpos, tohpos, width, | |||
| 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. */ |