From: Richard M. Stallman Date: Mon, 7 Oct 1996 17:54:39 +0000 (+0000) Subject: (struct position): New field ovstring_chars_done. X-Git-Tag: emacs-20.1~3541 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cf5db374182dd588ceb30425e2ea8a31772bed11;p=emacs.git (struct position): New field ovstring_chars_done. --- diff --git a/src/indent.h b/src/indent.h index 9beff4bfb4d..91d8f44c1ac 100644 --- a/src/indent.h +++ b/src/indent.h @@ -26,6 +26,9 @@ struct position int vpos; int prevhpos; int contin; + /* Number of characters we have already handled + from the before and after strings at this position. */ + int ovstring_chars_done; }; struct position *compute_motion ();