summaryrefslogtreecommitdiff
path: root/lisp/indent.el
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-03-15 06:37:33 +0000
committerJim Blandy <jimb@redhat.com>1993-03-15 06:37:33 +0000
commit6b99828a0b2536555c3dbdb89770c5485040fe3b (patch)
treefa4fd24b7d495dd2c954d56ab5eec869dc19082e /lisp/indent.el
parentb302e11f092d66c7d76ad963d6c72ea866de1c29 (diff)
downloademacs-6b99828a0b2536555c3dbdb89770c5485040fe3b.tar.gz
* indent.el (indent-region, indent-region-function): Doc fix.
Diffstat (limited to 'lisp/indent.el')
-rw-r--r--lisp/indent.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/indent.el b/lisp/indent.el
index 73c9561b1ad..8a972b82349 100644
--- a/lisp/indent.el
+++ b/lisp/indent.el
@@ -77,12 +77,12 @@ Called from a program, takes three arguments, START, END and ARG."
(goto-char epos)))))
(defvar indent-region-function nil
- "Function which is short cut to indent each line in region with TAB.
-A value of nil means really perform TAB on each line.")
+ "Function which is short cut to indent region using indent-according-to-mode.
+A value of nil means really run indent-according-to-mode on each line.")
(defun indent-region (start end arg)
"Indent each nonblank line in the region.
-With no argument, indent each line with TAB.
+With no argument, indent each line using indent-according-to-mode.
\(If there is a fill prefix, make each line start with the fill prefix.)
With argument COLUMN, indent each line to that column.
Called from a program, takes three args: START, END and COLUMN."