diff options
| author | Jim Blandy | 1993-03-15 06:37:33 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-03-15 06:37:33 +0000 |
| commit | 797d8537f2effa462cfb7232e1bf48ad44bf4172 (patch) | |
| tree | e8a49b0e4bb8e78df85ac24ac4566fa73be2100c /lisp | |
| parent | 84aa3ace66e51ac3f2b23da69ff2d0eecddd502b (diff) | |
| download | emacs-797d8537f2effa462cfb7232e1bf48ad44bf4172.tar.gz emacs-797d8537f2effa462cfb7232e1bf48ad44bf4172.zip | |
* indent.el (indent-region, indent-region-function): Doc fix.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/indent.el | 6 |
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." | |||
| 77 | (goto-char epos))))) | 77 | (goto-char epos))))) |
| 78 | 78 | ||
| 79 | (defvar indent-region-function nil | 79 | (defvar indent-region-function nil |
| 80 | "Function which is short cut to indent each line in region with TAB. | 80 | "Function which is short cut to indent region using indent-according-to-mode. |
| 81 | A value of nil means really perform TAB on each line.") | 81 | A value of nil means really run indent-according-to-mode on each line.") |
| 82 | 82 | ||
| 83 | (defun indent-region (start end arg) | 83 | (defun indent-region (start end arg) |
| 84 | "Indent each nonblank line in the region. | 84 | "Indent each nonblank line in the region. |
| 85 | With no argument, indent each line with TAB. | 85 | With no argument, indent each line using indent-according-to-mode. |
| 86 | \(If there is a fill prefix, make each line start with the fill prefix.) | 86 | \(If there is a fill prefix, make each line start with the fill prefix.) |
| 87 | With argument COLUMN, indent each line to that column. | 87 | With argument COLUMN, indent each line to that column. |
| 88 | Called from a program, takes three args: START, END and COLUMN." | 88 | Called from a program, takes three args: START, END and COLUMN." |