(tab-always-indent): Doc fix.

This commit is contained in:
Eli Zaretskii 2006-12-22 22:46:22 +00:00
parent e84b63f17c
commit f321348b56
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2006-12-22 Robert Thorpe <rthorpe@realworldtech.com> (tiny change)
* indent.el (tab-always-indent): Doc fix.
2006-12-22 Chong Yidong <cyd@stupidchicken.com>
* info.el (Info-fontify-maximum-menu-size): Bump to 1000000.

View file

@ -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)))