diff options
| author | Luc Teirlinck | 2004-02-18 05:02:30 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2004-02-18 05:02:30 +0000 |
| commit | d29edb21c8fb2abc77cd119e5dbb0fe34a82120f (patch) | |
| tree | 140f3807ca2717f1d129e83fb933f79f4079cb46 | |
| parent | 870fccf4dc481ee16677a9144558b0fe23551fe0 (diff) | |
| download | emacs-d29edb21c8fb2abc77cd119e5dbb0fe34a82120f.tar.gz emacs-d29edb21c8fb2abc77cd119e5dbb0fe34a82120f.zip | |
(Marker Insertion Types): Minor change.
| -rw-r--r-- | lispref/ChangeLog | 8 | ||||
| -rw-r--r-- | lispref/markers.texi | 8 |
2 files changed, 12 insertions, 4 deletions
diff --git a/lispref/ChangeLog b/lispref/ChangeLog index 392f67d07d2..5879c3a4596 100644 --- a/lispref/ChangeLog +++ b/lispref/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2004-02-17 Luc Teirlinck <teirllm@auburn.edu> | ||
| 2 | |||
| 3 | * markers.texi (Marker Insertion Types): Minor change. | ||
| 4 | |||
| 5 | * locals.texi (Standard Buffer-Local Variables): | ||
| 6 | * commands.texi (Interactive Codes, Using Interactive): | ||
| 7 | * functions.texi (Related Topics): Fix xrefs. | ||
| 8 | |||
| 1 | 2004-02-16 Luc Teirlinck <teirllm@auburn.edu> | 9 | 2004-02-16 Luc Teirlinck <teirllm@auburn.edu> |
| 2 | 10 | ||
| 3 | * lists.texi (Sets And Lists): Update description of delete-dups. | 11 | * lists.texi (Sets And Lists): Update description of delete-dups. |
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 | |||
| 326 | @code{insert-before-markers} ignores markers' insertion types, always | 326 | @code{insert-before-markers} ignores markers' insertion types, always |
| 327 | relocating a marker to point after the inserted text. | 327 | relocating a marker to point after the inserted text. |
| 328 | 328 | ||
| 329 | Most functions that create markers, without explicitly specifying an | ||
| 330 | insertion type, create them with insertion type @code{nil}. Also, the | ||
| 331 | mark has, by default, insertion type @code{nil}. | ||
| 332 | |||
| 333 | @defun set-marker-insertion-type marker type | 329 | @defun set-marker-insertion-type marker type |
| 334 | This function sets the insertion type of marker @var{marker} to | 330 | This function sets the insertion type of marker @var{marker} to |
| 335 | @var{type}. If @var{type} is @code{t}, @var{marker} will advance when | 331 | @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}, | |||
| 341 | This function reports the current insertion type of @var{marker}. | 337 | This function reports the current insertion type of @var{marker}. |
| 342 | @end defun | 338 | @end defun |
| 343 | 339 | ||
| 340 | Most functions that create markers, without explicitly specifying an | ||
| 341 | insertion type, create them with insertion type @code{nil}. Also, the | ||
| 342 | mark has, by default, insertion type @code{nil}. | ||
| 343 | |||
| 344 | @node Moving Markers | 344 | @node Moving Markers |
| 345 | @section Moving Marker Positions | 345 | @section Moving Marker Positions |
| 346 | 346 | ||