diff options
| -rw-r--r-- | lispref/markers.texi | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lispref/markers.texi b/lispref/markers.texi index eb576f235cd..e844912002e 100644 --- a/lispref/markers.texi +++ b/lispref/markers.texi | |||
| @@ -28,10 +28,13 @@ deleted, so that it stays with the two characters on either side of it. | |||
| 28 | @node Overview of Markers | 28 | @node Overview of Markers |
| 29 | @section Overview of Markers | 29 | @section Overview of Markers |
| 30 | 30 | ||
| 31 | A marker specifies a buffer and a position in that buffer. The marker | 31 | A marker specifies a buffer and a position in that buffer. The |
| 32 | can be used to represent a position in the functions that require one, | 32 | marker can be used to represent a position in the functions that |
| 33 | just as an integer could be used. @xref{Positions}, for a complete | 33 | require one, just as an integer could be used. In that case, the |
| 34 | description of positions. | 34 | marker's buffer is normally ignored. Of course, a marker used in this |
| 35 | way usually points to a position in the buffer that the function | ||
| 36 | operates on, but that is entirely the programmer's responsibility. | ||
| 37 | @xref{Positions}, for a complete description of positions. | ||
| 35 | 38 | ||
| 36 | A marker has two attributes: the marker position, and the marker | 39 | A marker has two attributes: the marker position, and the marker |
| 37 | buffer. The marker position is an integer that is equivalent (at a | 40 | buffer. The marker position is an integer that is equivalent (at a |