diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2009-08-27 04:24:00 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2009-08-27 04:24:00 +0000 |
commit | 4e3b4528ea1425c1fa82221c41d1c45294064b11 (patch) | |
tree | d1db79ae5904b0055e63dd12649ab9311cd2b687 /doc/lispref/loading.texi | |
parent | b3cca6a6971a38204dcbd11c45b0f67781c0b39b (diff) | |
download | emacs-4e3b4528ea1425c1fa82221c41d1c45294064b11.tar.gz |
* 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/lispref/loading.texi')
-rw-r--r-- | doc/lispref/loading.texi | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/doc/lispref/loading.texi b/doc/lispref/loading.texi index dc45ad88174..8ccc0071e2a 100644 --- a/doc/lispref/loading.texi +++ b/doc/lispref/loading.texi @@ -376,10 +376,7 @@ decoding. The reason Emacs is designed this way is so that Lisp programs give predictable results, regardless of how Emacs was started. In addition, this enables programs that depend on using multibyte text to work even -in a unibyte Emacs. Of course, such programs should be designed to -notice whether the user prefers unibyte or multibyte text, by checking -@code{default-enable-multibyte-characters}, and convert representations -appropriately. +in a unibyte Emacs. In most Emacs Lisp programs, the fact that non-@acronym{ASCII} strings are multibyte strings should not be noticeable, since inserting them in |