diff src/lisp.h @ 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 38941faa1564
children a9c4bf3f4e46
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.