]> code.delx.au - gnu-emacs/commitdiff
Fix doc string in `insert'
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 9 May 2016 15:08:58 +0000 (17:08 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 9 May 2016 15:08:58 +0000 (17:08 +0200)
* src/editfns.c (Finsert_and_inherit): The before-insertion
markers do not move.
(Finsert): Ditto.

src/editfns.c

index a858e6e79dd1e2f9a89f3741e46fe9479546c66e..360ec12ba98426fcd6a72cccaaf21d4e10699c89 100644 (file)
@@ -2484,7 +2484,7 @@ insert1 (Lisp_Object arg)
 
 DEFUN ("insert", Finsert, Sinsert, 0, MANY, 0,
        doc: /* Insert the arguments, either strings or characters, at point.
-Point and before-insertion markers move forward to end up
+Point and after-insertion markers move forward to end up
  after the inserted text.
 Any other markers at the point of insertion remain before the text.
 
@@ -2508,7 +2508,7 @@ usage: (insert &rest ARGS)  */)
 DEFUN ("insert-and-inherit", Finsert_and_inherit, Sinsert_and_inherit,
    0, MANY, 0,
        doc: /* Insert the arguments at point, inheriting properties from adjoining text.
-Point and before-insertion markers move forward to end up
+Point and after-insertion markers move forward to end up
  after the inserted text.
 Any other markers at the point of insertion remain before the text.