diff options
Diffstat (limited to 'doc/misc')
-rw-r--r-- | doc/misc/faq.texi | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/misc/faq.texi b/doc/misc/faq.texi index dfd1175faa1..1c10c91c763 100644 --- a/doc/misc/faq.texi +++ b/doc/misc/faq.texi @@ -2154,14 +2154,13 @@ about them. @section How do I change Emacs's idea of the @key{TAB} character's length? @cindex Tab length @cindex Length of tab character -@cindex @code{default-tab-width} -Set the variable @code{default-tab-width}. For example, to set +Set the default value of the variable @code{tab-width}. For example, to set @key{TAB} stops every 10 characters, insert the following in your @file{.emacs} file: @lisp -(setq default-tab-width 10) +(setq-default tab-width 10) @end lisp Do not confuse variable @code{tab-width} with variable |