diff options
author | Luc Teirlinck <teirllm@auburn.edu> | 2004-02-18 05:02:30 +0000 |
---|---|---|
committer | Luc Teirlinck <teirllm@auburn.edu> | 2004-02-18 05:02:30 +0000 |
commit | d29edb21c8fb2abc77cd119e5dbb0fe34a82120f (patch) | |
tree | 140f3807ca2717f1d129e83fb933f79f4079cb46 /lispref/markers.texi | |
parent | 870fccf4dc481ee16677a9144558b0fe23551fe0 (diff) | |
download | emacs-d29edb21c8fb2abc77cd119e5dbb0fe34a82120f.tar.gz |
(Marker Insertion Types): Minor change.
Diffstat (limited to 'lispref/markers.texi')
-rw-r--r-- | lispref/markers.texi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lispref/markers.texi b/lispref/markers.texi index e844912002e..7f4ab1d2b78 100644 --- a/lispref/markers.texi +++ b/lispref/markers.texi @@ -326,10 +326,6 @@ marker should do by setting its @dfn{insertion type}. Note that use of @code{insert-before-markers} ignores markers' insertion types, always relocating a marker to point after the inserted text. -Most functions that create markers, without explicitly specifying an -insertion type, create them with insertion type @code{nil}. Also, the -mark has, by default, insertion type @code{nil}. - @defun set-marker-insertion-type marker type This function sets the insertion type of marker @var{marker} to @var{type}. If @var{type} is @code{t}, @var{marker} will advance when @@ -341,6 +337,10 @@ text is inserted at its position. If @var{type} is @code{nil}, This function reports the current insertion type of @var{marker}. @end defun +Most functions that create markers, without explicitly specifying an +insertion type, create them with insertion type @code{nil}. Also, the +mark has, by default, insertion type @code{nil}. + @node Moving Markers @section Moving Marker Positions |