diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-08-08 18:32:20 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-08-08 18:32:20 +0000 |
commit | eca1e29e883160e27cda53ba183b9deb2537308b (patch) | |
tree | fe52c7c0d1502e54c959f044212923a5fee2ecb3 /lisp/indent.el | |
parent | 0720b68be2573f018c87fba04b28a01a8e112700 (diff) | |
download | emacs-eca1e29e883160e27cda53ba183b9deb2537308b.tar.gz |
(indent-for-tab-command): Doc fix.
Diffstat (limited to 'lisp/indent.el')
-rw-r--r-- | lisp/indent.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/indent.el b/lisp/indent.el index 7f044c4ac15..6f3431fbd7f 100644 --- a/lisp/indent.el +++ b/lisp/indent.el @@ -46,7 +46,9 @@ (funcall indent-line-function)) (defun indent-for-tab-command (&optional prefix-arg) - "Indent line in proper way for current major mode." + "Indent line in proper way for current major mode. +The function actually called is determined by the value of +`indent-line-function'." (interactive "P") (if (eq indent-line-function 'indent-to-left-margin) (insert-tab prefix-arg) |