comparison lispref/markers.texi @ 90533:8a8e69664178

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 343-356) - Update from CVS - Update for ERC 5.1.3. - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 113-115) - Merge from emacs--devo--0 - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-90
author Miles Bader <miles@gnu.org>
date Wed, 19 Jul 2006 00:42:56 +0000
parents c5406394f567 17479ca5deda
children 95d0cdf160ea
comparison
equal deleted inserted replaced
90532:e22cf6d2400c 90533:8a8e69664178
19 * Creating Markers:: Making empty markers or markers at certain places. 19 * Creating Markers:: Making empty markers or markers at certain places.
20 * Information from Markers:: Finding the marker's buffer or character position. 20 * Information from Markers:: Finding the marker's buffer or character position.
21 * Marker Insertion Types:: Two ways a marker can relocate when you 21 * Marker Insertion Types:: Two ways a marker can relocate when you
22 insert where it points. 22 insert where it points.
23 * Moving Markers:: Moving the marker to a new buffer or position. 23 * Moving Markers:: Moving the marker to a new buffer or position.
24 * The Mark:: How ``the mark'' is implemented with a marker. 24 * The Mark:: How "the mark" is implemented with a marker.
25 * The Region:: How to access ``the region''. 25 * The Region:: How to access "the region".
26 @end menu 26 @end menu
27 27
28 @node Overview of Markers 28 @node Overview of Markers
29 @section Overview of Markers 29 @section Overview of Markers
30 30
309 @end group 309 @end group
310 @end example 310 @end example
311 @end defun 311 @end defun
312 312
313 @defun buffer-has-markers-at position 313 @defun buffer-has-markers-at position
314 @tindex buffer-has-markers-at
315 This function returns @code{t} if one or more markers 314 This function returns @code{t} if one or more markers
316 point at position @var{position} in the current buffer. 315 point at position @var{position} in the current buffer.
317 @end defun 316 @end defun
318 317
319 @node Marker Insertion Types 318 @node Marker Insertion Types