summaryrefslogtreecommitdiff
path: root/lisp/indent.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2015-04-17 10:30:50 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2015-04-17 10:30:50 -0400
commit14eea098587a61b7c551453edcaf7ea8d2444f33 (patch)
tree1942ecdb679bb0e24232d47a4c5fd4280a7b2a62 /lisp/indent.el
parent310855ec5dd16ebd767d8fa0af8fa0e36a009672 (diff)
downloademacs-14eea098587a61b7c551453edcaf7ea8d2444f33.tar.gz
* lisp/indent.el (indent-region): Don't deactivate the mark
Fixes: debbugs:20357
Diffstat (limited to 'lisp/indent.el')
-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."
;; In most cases, reindenting modifies the buffer, but it may also
;; leave it unmodified, in which case we have to deactivate the mark
;; by hand.
- (deactivate-mark))
+ (setq deactivate-mark t))
(defun indent-relative-maybe ()
"Indent a new line like previous nonblank line.