aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2003-11-21 05:04:07 +0000
committerLuc Teirlinck2003-11-21 05:04:07 +0000
commit97ce05cfa810ccc5f8baadf58cb47fc01dc43ad8 (patch)
tree7a3cb34f7d64a31de89a922b9843503ed2b53e7d
parent1a3a914b9e2a6a91272e0d564321b8a05112e0c1 (diff)
downloademacs-97ce05cfa810ccc5f8baadf58cb47fc01dc43ad8.tar.gz
emacs-97ce05cfa810ccc5f8baadf58cb47fc01dc43ad8.zip
(Overview of Markers): Mention that, if a marker is used a a position,
its buffer is ignored.
-rw-r--r--lispref/markers.texi11
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
32can be used to represent a position in the functions that require one, 32marker can be used to represent a position in the functions that
33just as an integer could be used. @xref{Positions}, for a complete 33require one, just as an integer could be used. In that case, the
34description of positions. 34marker's buffer is normally ignored. Of course, a marker used in this
35way usually points to a position in the buffer that the function
36operates 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
37buffer. The marker position is an integer that is equivalent (at a 40buffer. The marker position is an integer that is equivalent (at a