]> git.eshelyaron.com Git - emacs.git/commitdiff
delete-backward/forward-char doc string clarification
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 3 Aug 2019 19:14:23 +0000 (21:14 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 3 Aug 2019 19:14:23 +0000 (21:14 +0200)
* lisp/simple.el (delete-backward-char): Doc string clarification
(bug#18192).
(delete-forward-char): Ditto.

lisp/simple.el

index 08021ce0e08479cfe1096170999f557ecd27049b..6f60004897344d162383ef58704678deff94576b 100644 (file)
@@ -1125,8 +1125,9 @@ delete the text in the region and deactivate the mark instead.
 To disable this, set option `delete-active-region' to nil.
 
 Optional second arg KILLFLAG, if non-nil, means to kill (save in
-kill ring) instead of delete.  Interactively, N is the prefix
-arg, and KILLFLAG is set if N is explicitly specified.
+kill ring) instead of delete.  If called interactively, a numeric
+prefix argument specifies N, and KILLFLAG is also set if a prefix
+argument is used.
 
 When killing, the killed text is filtered by
 `filter-buffer-substring' before it is saved in the kill ring, so
@@ -1166,8 +1167,9 @@ delete the text in the region and deactivate the mark instead.
 To disable this, set variable `delete-active-region' to nil.
 
 Optional second arg KILLFLAG non-nil means to kill (save in kill
-ring) instead of delete.  Interactively, N is the prefix arg, and
-KILLFLAG is set if N was explicitly specified.
+ring) instead of delete.  If called interactively, a numeric
+prefix argument specifies N, and KILLFLAG is also set if a prefix
+argument is used.
 
 When killing, the killed text is filtered by
 `filter-buffer-substring' before it is saved in the kill ring, so