summaryrefslogtreecommitdiff
path: root/src/indent.h
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-10-07 17:54:39 +0000
committerRichard M. Stallman <rms@gnu.org>1996-10-07 17:54:39 +0000
commit2a01ad3e1f1cccc150a7dfd268b458e6a9f624bf (patch)
treeee11a1c808d2c53e28c4ca780b96c6445fd487c0 /src/indent.h
parent589827560f76cb950c748b35ad9c8d04f5b490d5 (diff)
downloademacs-2a01ad3e1f1cccc150a7dfd268b458e6a9f624bf.tar.gz
(struct position): New field ovstring_chars_done.
Diffstat (limited to 'src/indent.h')
-rw-r--r--src/indent.h3
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 ();