aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2015-04-17 10:30:50 -0400
committerStefan Monnier2015-04-17 10:30:50 -0400
commit14eea098587a61b7c551453edcaf7ea8d2444f33 (patch)
tree1942ecdb679bb0e24232d47a4c5fd4280a7b2a62
parent310855ec5dd16ebd767d8fa0af8fa0e36a009672 (diff)
downloademacs-14eea098587a61b7c551453edcaf7ea8d2444f33.tar.gz
emacs-14eea098587a61b7c551453edcaf7ea8d2444f33.zip
* lisp/indent.el (indent-region): Don't deactivate the mark
Fixes: debbugs:20357
-rw-r--r--lisp/indent.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/indent.el b/lisp/indent.el
index 74e73a69240..18c1fd48db7 100644
--- a/lisp/indent.el
+++ b/lisp/indent.el
@@ -537,7 +537,7 @@ column to indent to; if it is nil, use one of the three methods above."
537 ;; In most cases, reindenting modifies the buffer, but it may also 537 ;; In most cases, reindenting modifies the buffer, but it may also
538 ;; leave it unmodified, in which case we have to deactivate the mark 538 ;; leave it unmodified, in which case we have to deactivate the mark
539 ;; by hand. 539 ;; by hand.
540 (deactivate-mark)) 540 (setq deactivate-mark t))
541 541
542(defun indent-relative-maybe () 542(defun indent-relative-maybe ()
543 "Indent a new line like previous nonblank line. 543 "Indent a new line like previous nonblank line.