From: Eli Zaretskii Date: Fri, 22 Dec 2006 22:46:22 +0000 (+0000) Subject: (tab-always-indent): Doc fix. X-Git-Tag: emacs-pretest-22.0.93~488 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f321348b56a0318ab6062965ec4247c498474c0c;p=emacs.git (tab-always-indent): Doc fix. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b356c666f57..f4c5ce7413f 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2006-12-22 Robert Thorpe (tiny change) + + * indent.el (tab-always-indent): Doc fix. + 2006-12-22 Chong Yidong * info.el (Info-fontify-maximum-menu-size): Bump to 1000000. diff --git a/lisp/indent.el b/lisp/indent.el index 38b509b849c..6f715fdba64 100644 --- a/lisp/indent.el +++ b/lisp/indent.el @@ -50,7 +50,9 @@ Don't rebind TAB unless you really need to.") "*Controls the operation of the TAB key. If t, hitting TAB always just indents the current line. If nil, hitting TAB indents the current line if point is at the left margin - or in the line's indentation, otherwise it insert a \"real\" tab character." +or in the line's indentation, otherwise it insert a \"real\" TAB character. +Most programming language modes have their own variable to control this, +e.g., `c-tab-always-indent', and do not respect this variable." :group 'indent :type '(choice (const nil) (const t) (const always)))