Mercurial > emacs
changeset 2201:bfe994df6c27
* indent.el (indent-region, indent-region-function): Doc fix.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Mon, 15 Mar 1993 06:37:33 +0000 |
parents | 5e58643bb169 |
children | 081afcef5e85 |
files | lisp/indent.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- 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."