diff options
| author | Daniel Colascione | 2014-09-14 17:45:14 -0700 |
|---|---|---|
| committer | Daniel Colascione | 2014-09-14 17:45:14 -0700 |
| commit | fc68497a79d0ac120545cb7c48e1f91c27111472 (patch) | |
| tree | a5554d6411a1871fa46a804e7e8af6e2053ff964 | |
| parent | 11af46027d22daa11d0df7d5032e6925c990dad1 (diff) | |
| parent | 63519f6099ac5204246cfffb9ea9910956b70d03 (diff) | |
| download | emacs-fc68497a79d0ac120545cb7c48e1f91c27111472.tar.gz emacs-fc68497a79d0ac120545cb7c48e1f91c27111472.zip | |
Update documentation for `insert-register'
* doc/emacs/regs.texi (Text Registers): Update end-user documentation
to reflect `insert-register' interface change.
* doc/lispref/text.texi (Registers): Make `insert-register' documentation
reflect interface change.
| -rw-r--r-- | doc/emacs/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/emacs/regs.texi | 6 | ||||
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/text.texi | 5 |
4 files changed, 16 insertions, 5 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog index 46124c323eb..19dc4874967 100644 --- a/doc/emacs/ChangeLog +++ b/doc/emacs/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-09-15 Daniel Colascione <dancol@dancol.org> | ||
| 2 | |||
| 3 | * regs.texi (Text Registers): Update end-user documentation | ||
| 4 | to reflect `insert-register' interface change. | ||
| 5 | |||
| 1 | 2014-08-07 Reuben Thomas <rrt@sc3d.org> | 6 | 2014-08-07 Reuben Thomas <rrt@sc3d.org> |
| 2 | 7 | ||
| 3 | * programs.texi (Program Modes): Don't advertise VMS DCL support | 8 | * programs.texi (Program Modes): Don't advertise VMS DCL support |
diff --git a/doc/emacs/regs.texi b/doc/emacs/regs.texi index a0ff7079388..bc4abb389c4 100644 --- a/doc/emacs/regs.texi +++ b/doc/emacs/regs.texi | |||
| @@ -149,9 +149,9 @@ during the collection process, you can use the following setting. | |||
| 149 | @kindex C-x r i | 149 | @kindex C-x r i |
| 150 | @findex insert-register | 150 | @findex insert-register |
| 151 | @kbd{C-x r i @var{r}} inserts in the buffer the text from register | 151 | @kbd{C-x r i @var{r}} inserts in the buffer the text from register |
| 152 | @var{r}. Normally it leaves point before the text and sets the mark | 152 | @var{r}. Normally it leaves point after the text and sets the mark |
| 153 | after, without activating it. With a numeric argument, it instead | 153 | before, without activating it. With a numeric argument, it instead |
| 154 | puts point after the text and the mark before. | 154 | puts before after the text and the mark after. |
| 155 | 155 | ||
| 156 | @node Rectangle Registers | 156 | @node Rectangle Registers |
| 157 | @section Saving Rectangles in Registers | 157 | @section Saving Rectangles in Registers |
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index ddd0dee213a..1a85b126ffe 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-09-15 Daniel Colascione <dancol@dancol.org> | ||
| 2 | |||
| 3 | * text.texi (Registers): Make `insert-register' documentation | ||
| 4 | reflect interface change. | ||
| 5 | |||
| 1 | 2014-09-08 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2014-09-08 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * functions.texi (Core Advising Primitives): Add a note about the | 8 | * functions.texi (Core Advising Primitives): Add a note about the |
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi index 6665cc3e673..f21d2b76656 100644 --- a/doc/lispref/text.texi +++ b/doc/lispref/text.texi | |||
| @@ -4114,8 +4114,9 @@ buffer. | |||
| 4114 | Normally, this command puts point before the inserted text, and the | 4114 | Normally, this command puts point before the inserted text, and the |
| 4115 | mark after it. However, if the optional second argument @var{beforep} | 4115 | mark after it. However, if the optional second argument @var{beforep} |
| 4116 | is non-@code{nil}, it puts the mark before and point after. | 4116 | is non-@code{nil}, it puts the mark before and point after. |
| 4117 | You can pass a non-@code{nil} second argument @var{beforep} to this | 4117 | |
| 4118 | function interactively by supplying any prefix argument. | 4118 | When called interactively, the command defaults to putting point after |
| 4119 | text, and a prefix argument inverts this behavior. | ||
| 4119 | 4120 | ||
| 4120 | If the register contains a rectangle, then the rectangle is inserted | 4121 | If the register contains a rectangle, then the rectangle is inserted |
| 4121 | with its upper left corner at point. This means that text is inserted | 4122 | with its upper left corner at point. This means that text is inserted |