comparison src/indent.h @ 16403:a388d0109b9e

(struct position): New field ovstring_chars_done.
author Richard M. Stallman <rms@gnu.org>
date Mon, 07 Oct 1996 17:54:39 +0000
parents ee40177f6c68
children f13a67b3ec8d
comparison
equal deleted inserted replaced
16402:3608b4a0c460 16403:a388d0109b9e
24 int bufpos; 24 int bufpos;
25 int hpos; 25 int hpos;
26 int vpos; 26 int vpos;
27 int prevhpos; 27 int prevhpos;
28 int contin; 28 int contin;
29 /* Number of characters we have already handled
30 from the before and after strings at this position. */
31 int ovstring_chars_done;
29 }; 32 };
30 33
31 struct position *compute_motion (); 34 struct position *compute_motion ();
32 struct position *vmotion (); 35 struct position *vmotion ();
33 36