diff options
| author | Gerd Moellmann | 1999-10-25 16:03:03 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-10-25 16:03:03 +0000 |
| commit | 75f3230bfa24b43ed6cd6df06859ff40093428b4 (patch) | |
| tree | 00f8a3bd2bad8de9f3456b2ef885af261360f93b | |
| parent | c0ea222e0c6f92cb10ba738b47ace07ab8cbeb18 (diff) | |
| download | emacs-75f3230bfa24b43ed6cd6df06859ff40093428b4.tar.gz emacs-75f3230bfa24b43ed6cd6df06859ff40093428b4.zip | |
Patch by rms.
| -rw-r--r-- | lispref/markers.texi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lispref/markers.texi b/lispref/markers.texi index 095e6a7f46b..f4165776234 100644 --- a/lispref/markers.texi +++ b/lispref/markers.texi | |||
| @@ -302,6 +302,12 @@ This function returns the buffer that @var{marker} points into, or | |||
| 302 | @end example | 302 | @end example |
| 303 | @end defun | 303 | @end defun |
| 304 | 304 | ||
| 305 | @defun buffer-has-markers-at position | ||
| 306 | @tindex buffer-has-markers-at | ||
| 307 | This function returns @code{t} if one or more markers | ||
| 308 | point at position @var{position} in the current buffer. | ||
| 309 | @end defun | ||
| 310 | |||
| 305 | @node Marker Insertion Types | 311 | @node Marker Insertion Types |
| 306 | @section Marker Insertion Types | 312 | @section Marker Insertion Types |
| 307 | 313 | ||
| @@ -419,6 +425,10 @@ mark on the mark ring. The variable @code{mark-ring-max} specifies the | |||
| 419 | maximum number of entries in the mark ring; once the list becomes this | 425 | maximum number of entries in the mark ring; once the list becomes this |
| 420 | long, adding a new element deletes the last element. | 426 | long, adding a new element deletes the last element. |
| 421 | 427 | ||
| 428 | There is also a separate global mark ring, but that is used only in a | ||
| 429 | few particular user-level commands, and is not relevant to Lisp | ||
| 430 | programming. So we do not describe it here. | ||
| 431 | |||
| 422 | @defun mark &optional force | 432 | @defun mark &optional force |
| 423 | @cindex current buffer mark | 433 | @cindex current buffer mark |
| 424 | This function returns the current buffer's mark position as an integer. | 434 | This function returns the current buffer's mark position as an integer. |