diff options
| author | Stefan Monnier | 2009-08-27 04:24:00 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2009-08-27 04:24:00 +0000 |
| commit | 4e3b4528ea1425c1fa82221c41d1c45294064b11 (patch) | |
| tree | d1db79ae5904b0055e63dd12649ab9311cd2b687 /doc/misc | |
| parent | b3cca6a6971a38204dcbd11c45b0f67781c0b39b (diff) | |
| download | emacs-4e3b4528ea1425c1fa82221c41d1c45294064b11.tar.gz emacs-4e3b4528ea1425c1fa82221c41d1c45294064b11.zip | |
* subr.el (default-mode-line-format, default-header-line-format)
(default-line-spacing, default-abbrev-mode, default-ctl-arrow)
(default-direction-reversed, default-truncate-lines)
(default-left-margin, default-tab-width, default-case-fold-search)
(default-left-margin-width, default-right-margin-width)
(default-left-fringe-width, default-right-fringe-width)
(default-fringes-outside-margins, default-scroll-bar-width)
(default-vertical-scroll-bar, default-indicate-empty-lines)
(default-indicate-buffer-boundaries, default-fringe-indicator-alist)
(default-fringe-cursor-alist, default-scroll-up-aggressively)
(default-scroll-down-aggressively, default-fill-column)
(default-cursor-type, default-buffer-file-type)
(default-cursor-in-non-selected-windows)
(default-buffer-file-coding-system, default-major-mode)
(default-enable-multibyte-characters): Mark as obsolete.
* cus-start.el (default-major-mode): Customize `major-mode' instead.
(enable-multibyte-characters): Not customizable any more.
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. | |||
| 2154 | @section How do I change Emacs's idea of the @key{TAB} character's length? | 2154 | @section How do I change Emacs's idea of the @key{TAB} character's length? |
| 2155 | @cindex Tab length | 2155 | @cindex Tab length |
| 2156 | @cindex Length of tab character | 2156 | @cindex Length of tab character |
| 2157 | @cindex @code{default-tab-width} | ||
| 2158 | 2157 | ||
| 2159 | Set the variable @code{default-tab-width}. For example, to set | 2158 | Set the default value of the variable @code{tab-width}. For example, to set |
| 2160 | @key{TAB} stops every 10 characters, insert the following in your | 2159 | @key{TAB} stops every 10 characters, insert the following in your |
| 2161 | @file{.emacs} file: | 2160 | @file{.emacs} file: |
| 2162 | 2161 | ||
| 2163 | @lisp | 2162 | @lisp |
| 2164 | (setq default-tab-width 10) | 2163 | (setq-default tab-width 10) |
| 2165 | @end lisp | 2164 | @end lisp |
| 2166 | 2165 | ||
| 2167 | Do not confuse variable @code{tab-width} with variable | 2166 | Do not confuse variable @code{tab-width} with variable |