aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorEli Zaretskii2019-03-22 11:59:11 +0300
committerEli Zaretskii2019-03-22 11:59:11 +0300
commit09c220a5cfb229ef88d1b3e9065951e3368da1e2 (patch)
tree7a95069befb4daf26d15e4c579c0afce83a3dbfc /lisp
parent8fa94a1ecc18a41ca2738f438b3fbc817c9fdc82 (diff)
downloademacs-09c220a5cfb229ef88d1b3e9065951e3368da1e2.tar.gz
emacs-09c220a5cfb229ef88d1b3e9065951e3368da1e2.zip
Minor fixes for the last change
* lisp/simple.el (delete-indentation): * doc/emacs/indent.texi (Indentation Commands): * etc/NEWS: Fix last change. (Bug#34796)
Diffstat (limited to 'lisp')
-rw-r--r--lisp/simple.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 7878272ec90..f52bd95bf84 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -596,9 +596,10 @@ When called from Lisp code, ARG may be a prefix string to copy."
596(defun delete-indentation (&optional arg beg end) 596(defun delete-indentation (&optional arg beg end)
597 "Join this line to previous and fix up whitespace at join. 597 "Join this line to previous and fix up whitespace at join.
598If there is a fill prefix, delete it from the beginning of this 598If there is a fill prefix, delete it from the beginning of this
599line. With prefix ARG, join the current line to the following line. 599line.
600With the region active, join lines in the region. If both the 600With prefix ARG, join the current line to the following line.
601argument is set and the region is active, the region is ignored." 601If the region is active, join all the lines in the region. (The
602region is ignored if prefix argument is given.)"
602 (interactive "*P\nr") 603 (interactive "*P\nr")
603 (if arg (forward-line 1) 604 (if arg (forward-line 1)
604 (if (use-region-p) 605 (if (use-region-p)