diff options
| author | Lars Ingebrigtsen | 2016-05-09 17:08:58 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2016-05-09 17:08:58 +0200 |
| commit | 3b478989df59cc33886d260137c433da5cfe4863 (patch) | |
| tree | 71a7bf0142cd80956956c976fd56712044aef622 | |
| parent | b479deadf400cb751a09a80344aa1961168d2143 (diff) | |
| download | emacs-3b478989df59cc33886d260137c433da5cfe4863.tar.gz emacs-3b478989df59cc33886d260137c433da5cfe4863.zip | |
Fix doc string in `insert'
* src/editfns.c (Finsert_and_inherit): The before-insertion
markers do not move.
(Finsert): Ditto.
| -rw-r--r-- | src/editfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c index a858e6e79dd..360ec12ba98 100644 --- a/src/editfns.c +++ b/src/editfns.c | |||
| @@ -2484,7 +2484,7 @@ insert1 (Lisp_Object arg) | |||
| 2484 | 2484 | ||
| 2485 | DEFUN ("insert", Finsert, Sinsert, 0, MANY, 0, | 2485 | DEFUN ("insert", Finsert, Sinsert, 0, MANY, 0, |
| 2486 | doc: /* Insert the arguments, either strings or characters, at point. | 2486 | doc: /* Insert the arguments, either strings or characters, at point. |
| 2487 | Point and before-insertion markers move forward to end up | 2487 | Point and after-insertion markers move forward to end up |
| 2488 | after the inserted text. | 2488 | after the inserted text. |
| 2489 | Any other markers at the point of insertion remain before the text. | 2489 | Any other markers at the point of insertion remain before the text. |
| 2490 | 2490 | ||
| @@ -2508,7 +2508,7 @@ usage: (insert &rest ARGS) */) | |||
| 2508 | DEFUN ("insert-and-inherit", Finsert_and_inherit, Sinsert_and_inherit, | 2508 | DEFUN ("insert-and-inherit", Finsert_and_inherit, Sinsert_and_inherit, |
| 2509 | 0, MANY, 0, | 2509 | 0, MANY, 0, |
| 2510 | doc: /* Insert the arguments at point, inheriting properties from adjoining text. | 2510 | doc: /* Insert the arguments at point, inheriting properties from adjoining text. |
| 2511 | Point and before-insertion markers move forward to end up | 2511 | Point and after-insertion markers move forward to end up |
| 2512 | after the inserted text. | 2512 | after the inserted text. |
| 2513 | Any other markers at the point of insertion remain before the text. | 2513 | Any other markers at the point of insertion remain before the text. |
| 2514 | 2514 | ||