diff options
author | Juri Linkov <juri@jurta.org> | 2007-10-18 00:08:08 +0000 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2007-10-18 00:08:08 +0000 |
commit | bc3214eda6c4c4e9fb64fd75a4d492f500367490 (patch) | |
tree | 2f1bd7c7c802185b1a3962e4773a03b5db2fd866 /lisp/indent.el | |
parent | 69f5930ae5ef109229ca5702b43abd646faf7f37 (diff) | |
download | emacs-bc3214eda6c4c4e9fb64fd75a4d492f500367490.tar.gz |
(indent-for-tab-command): Change interactive spec from "P" to "p".
(indent-for-tab-command): Add check for interactive arg before
indenting the active region.
Diffstat (limited to 'lisp/indent.el')
-rw-r--r-- | lisp/indent.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/indent.el b/lisp/indent.el index db8958bd1ca..77354444cfa 100644 --- a/lisp/indent.el +++ b/lisp/indent.el @@ -86,10 +86,10 @@ If `transient-mark-mode' is turned on the region is active, indent the region. The function actually called to indent the line is determined by the value of `indent-line-function'." - (interactive "P") + (interactive "p") (cond ;; The region is active, indent it. - ((and transient-mark-mode mark-active + ((and arg transient-mark-mode mark-active (not (eq (region-beginning) (region-end)))) (indent-region (region-beginning) (region-end))) ((or ;; indent-to-left-margin is only meant for indenting, |