]> git.eshelyaron.com Git - emacs.git/commitdiff
(tab-always-indent): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Fri, 22 Dec 2006 22:46:22 +0000 (22:46 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 22 Dec 2006 22:46:22 +0000 (22:46 +0000)
lisp/ChangeLog
lisp/indent.el

index b356c666f574aff7ab80d2a748ae5a22150d5d1d..f4c5ce7413fc17410a95d609d3759105568fe795 100644 (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.
index 38b509b849c53ea64b8817616cadd68b40326df0..6f715fdba64ed1e2c3a0d62bfec515aa60b4f152 100644 (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)))