X-Git-Url: https://git.hcoop.net/bpt/emacs.git/blobdiff_plain/cf5db374182dd588ceb30425e2ea8a31772bed11..a3fc8840a3c1586b17c9d211e959571fba365af6:/src/indent.h diff --git a/src/indent.h b/src/indent.h index 91d8f44c1a..16d068c660 100644 --- a/src/indent.h +++ b/src/indent.h @@ -18,10 +18,28 @@ 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 { int bufpos; + int bytepos; int hpos; int vpos; int prevhpos; @@ -29,6 +47,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 ();