# HG changeset patch # User Richard M. Stallman # Date 883776628 0 # Node ID d8013f2236a095ac4f5add8ea93e29f71d8827a7 # Parent f0bacfbd9d47e3bb5c5e0b48cf99a365aca82b3c (struct Lisp_Marker): Rename `bufpos' to `bytepos'. Its value no longer includes the gap space. diff -r f0bacfbd9d47 -r d8013f2236a0 src/lisp.h --- a/src/lisp.h Fri Jan 02 21:29:48 1998 +0000 +++ b/src/lisp.h Fri Jan 02 21:30:28 1998 +0000 @@ -727,11 +727,10 @@ /* For markers that point somewhere, this is used to chain of all the markers in a given buffer. */ Lisp_Object chain; - /* This is the byte position, translated by the gap: - if it is after the gap, the gap size is included. */ - int bufpos; /* This is the char position where the marker points. */ int charpos; + /* This is the byte position. */ + int bytepos; }; /* Forwarding pointer to an int variable.