(struct Lisp_Marker): Rename `bufpos' to `bytepos'.
authorRichard M. Stallman <rms@gnu.org>
Fri, 2 Jan 1998 21:30:28 +0000 (21:30 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 2 Jan 1998 21:30:28 +0000 (21:30 +0000)
Its value no longer includes the gap space.

src/lisp.h

index 3fa8b6a..c5b9c81 100644 (file)
@@ -727,11 +727,10 @@ struct Lisp_Marker
   /* 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.