]> git.eshelyaron.com Git - emacs.git/commitdiff
(Marker Insertion Types): Minor change.
authorLuc Teirlinck <teirllm@auburn.edu>
Wed, 18 Feb 2004 05:02:30 +0000 (05:02 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Wed, 18 Feb 2004 05:02:30 +0000 (05:02 +0000)
lispref/ChangeLog
lispref/markers.texi

index 392f67d07d2293a340e86790ede27a110505dccf..5879c3a459696f747ceebe950770f65c802145d3 100644 (file)
@@ -1,3 +1,11 @@
+2004-02-17  Luc Teirlinck  <teirllm@auburn.edu>
+
+       * markers.texi (Marker Insertion Types): Minor change.
+
+       * locals.texi (Standard Buffer-Local Variables):
+       * commands.texi (Interactive Codes, Using Interactive):
+       * functions.texi (Related Topics): Fix xrefs.
+
 2004-02-16  Luc Teirlinck  <teirllm@auburn.edu>
 
        * lists.texi (Sets And Lists): Update description of delete-dups.
index e844912002e23a0a9d7e9c4826f1874d131f0ddd..7f4ab1d2b78e04c7f9787ce1109e06b912740b5d 100644 (file)
@@ -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