diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-02-20 06:41:36 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-02-20 06:41:36 +0000 |
commit | fafd594b01a488a6a81123f70616083b9ec6b59e (patch) | |
tree | 2369c25037748bc77e4c18a2b63379f5c31d2e4f /src/indent.h | |
parent | 1c9241f53ad8d5b3684be53b66e936369f852ea3 (diff) | |
download | emacs-fafd594b01a488a6a81123f70616083b9ec6b59e.tar.gz |
(struct position): New member tab_offset to accumulate tab offset.
Diffstat (limited to 'src/indent.h')
-rw-r--r-- | src/indent.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/indent.h b/src/indent.h index 91d8f44c1ac..9e6a6f03821 100644 --- a/src/indent.h +++ b/src/indent.h @@ -18,6 +18,23 @@ along with GNU Emacs; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +/* We introduce new member `tab_offset'. We need it because of the + existence of wide-column characters. There is a case that the + line-break occurs at a wide-column character and the number of + colums of the line gets less than width. + + Example (where W_ stands for a wide-column character): + ---------- + abcdefgh\\ + W_ + ---------- + + To handle this case, we should not calculate the tab offset by + tab_offset += width; + + Instead, we must remember tab_offset of the line. + + */ struct position { @@ -29,6 +46,7 @@ struct position /* Number of characters we have already handled from the before and after strings at this position. */ int ovstring_chars_done; + int tab_offset; }; struct position *compute_motion (); |