diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-10-07 17:54:39 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-10-07 17:54:39 +0000 |
commit | cf5db374182dd588ceb30425e2ea8a31772bed11 (patch) | |
tree | 4136542592dc70b1ef8db835ba0b916377037f2e /src/indent.h | |
parent | dd5af6b7e9d88ffe6dd663a373c0f161b519c1af (diff) | |
download | emacs-cf5db374182dd588ceb30425e2ea8a31772bed11.tar.gz emacs-cf5db374182dd588ceb30425e2ea8a31772bed11.tar.bz2 emacs-cf5db374182dd588ceb30425e2ea8a31772bed11.zip |
(struct position): New field ovstring_chars_done.
Diffstat (limited to 'src/indent.h')
-rw-r--r-- | src/indent.h | 3 |
1 files changed, 3 insertions, 0 deletions
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 (); |