]> git.eshelyaron.com Git - emacs.git/commitdiff
Clarify backward-delete-char-untabify doc string
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 14 Jul 2021 15:10:24 +0000 (17:10 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 14 Jul 2021 15:10:24 +0000 (17:10 +0200)
* lisp/simple.el (backward-delete-char-untabify): Mention the
effect of Transient Mark mode (bug#17263).

lisp/simple.el

index f746d738a62f308b4eed88fbb76bd98fc1cd31b3..322693f631a918d1af5d94a54d66cbbd08faaa44 100644 (file)
@@ -5842,7 +5842,13 @@ Can be `untabify' -- turn a tab to many spaces, then delete one space;
 (defun backward-delete-char-untabify (arg &optional killp)
   "Delete characters backward, changing tabs into spaces.
 The exact behavior depends on `backward-delete-char-untabify-method'.
+
 Delete ARG chars, and kill (save in kill ring) if KILLP is non-nil.
+
+If Transient Mark mode is enabled, the mark is active, and ARG is 1,
+delete the text in the region and deactivate the mark instead.
+To disable this, set option ‘delete-active-region’ to nil.
+
 Interactively, ARG is the prefix arg (default 1)
 and KILLP is t if a prefix arg was specified."
   (interactive "*p\nP")