aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-08-08 18:32:20 +0000
committerGerd Moellmann2000-08-08 18:32:20 +0000
commiteca1e29e883160e27cda53ba183b9deb2537308b (patch)
treefe52c7c0d1502e54c959f044212923a5fee2ecb3
parent0720b68be2573f018c87fba04b28a01a8e112700 (diff)
downloademacs-eca1e29e883160e27cda53ba183b9deb2537308b.tar.gz
emacs-eca1e29e883160e27cda53ba183b9deb2537308b.zip
(indent-for-tab-command): Doc fix.
-rw-r--r--lisp/indent.el4
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 @@
46 (funcall indent-line-function)) 46 (funcall indent-line-function))
47 47
48(defun indent-for-tab-command (&optional prefix-arg) 48(defun indent-for-tab-command (&optional prefix-arg)
49 "Indent line in proper way for current major mode." 49 "Indent line in proper way for current major mode.
50The function actually called is determined by the value of
51`indent-line-function'."
50 (interactive "P") 52 (interactive "P")
51 (if (eq indent-line-function 'indent-to-left-margin) 53 (if (eq indent-line-function 'indent-to-left-margin)
52 (insert-tab prefix-arg) 54 (insert-tab prefix-arg)