diff options
| author | Richard M. Stallman | 1998-01-02 21:30:28 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-01-02 21:30:28 +0000 |
| commit | 363aa82029fe021697803e22bfde57390e5df94a (patch) | |
| tree | 6ac2a45a0a971a19c44270248fd49f1c1c7a65ad /src | |
| parent | 80f6e77c7037b05f63482242ba482da01ab51314 (diff) | |
| download | emacs-363aa82029fe021697803e22bfde57390e5df94a.tar.gz emacs-363aa82029fe021697803e22bfde57390e5df94a.zip | |
(struct Lisp_Marker): Rename `bufpos' to `bytepos'.
Its value no longer includes the gap space.
Diffstat (limited to 'src')
| -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 | |||
| 727 | /* For markers that point somewhere, | 727 | /* For markers that point somewhere, |
| 728 | this is used to chain of all the markers in a given buffer. */ | 728 | this is used to chain of all the markers in a given buffer. */ |
| 729 | Lisp_Object chain; | 729 | Lisp_Object chain; |
| 730 | /* This is the byte position, translated by the gap: | ||
| 731 | if it is after the gap, the gap size is included. */ | ||
| 732 | int bufpos; | ||
| 733 | /* This is the char position where the marker points. */ | 730 | /* This is the char position where the marker points. */ |
| 734 | int charpos; | 731 | int charpos; |
| 732 | /* This is the byte position. */ | ||
| 733 | int bytepos; | ||
| 735 | }; | 734 | }; |
| 736 | 735 | ||
| 737 | /* Forwarding pointer to an int variable. | 736 | /* Forwarding pointer to an int variable. |