# HG changeset patch # User Jim Blandy # Date 732177453 0 # Node ID bfe994df6c278368186650f08d71f61fb2a68d7b # Parent 5e58643bb169a01ebffda476c4b4f41734491c04 * indent.el (indent-region, indent-region-function): Doc fix. diff -r 5e58643bb169 -r bfe994df6c27 lisp/indent.el --- a/lisp/indent.el Mon Mar 15 06:09:04 1993 +0000 +++ b/lisp/indent.el Mon Mar 15 06:37:33 1993 +0000 @@ -77,12 +77,12 @@ (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."