diff options
-rw-r--r-- | src/lisp.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lisp.h b/src/lisp.h index 3fa8b6a0581..c5b9c815852 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -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. |