Mercurial > emacs
changeset 20569:d8013f2236a0
(struct Lisp_Marker): Rename `bufpos' to `bytepos'.
Its value no longer includes the gap space.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 02 Jan 1998 21:30:28 +0000 |
parents | f0bacfbd9d47 |
children | 7c628ee6887c |
files | src/lisp.h |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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.