diff options
author | Glenn Morris <rgm@gnu.org> | 2012-05-09 19:54:07 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2012-05-09 19:54:07 -0700 |
commit | b8a82b6930b669a8a434d685a351e52194e6f7d9 (patch) | |
tree | 1ecb9e9a9580fecaca09e8d57828660bfeceb135 /doc/emacs/mule.texi | |
parent | 234d8d6682c1903a2180a7ad4ae17bb5e45468e2 (diff) | |
download | emacs-b8a82b6930b669a8a434d685a351e52194e6f7d9.tar.gz |
Update doc for obsolescence of "unibyte: t"
* doc/emacs/mule.texi (Disabling Multibyte):
* doc/lispref/loading.texi (Loading Non-ASCII):
Replace the obsolete "unibyte: t" with "coding: raw-text".
* etc/NEWS: Related markup.
Diffstat (limited to 'doc/emacs/mule.texi')
-rw-r--r-- | doc/emacs/mule.texi | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/doc/emacs/mule.texi b/doc/emacs/mule.texi index b0b35bf14b5..35aee6b94a2 100644 --- a/doc/emacs/mule.texi +++ b/doc/emacs/mule.texi @@ -287,20 +287,17 @@ auto mode selection. This includes the Emacs initialization file, @file{.emacs}, and the initialization files of packages such as Gnus. However, you can specify unibyte loading for a -particular Lisp file, by adding an entry @samp{unibyte: t} in a file -local variables section (@pxref{File Variables}). Then that file is -always loaded as unibyte text. Note that this does not represent a -real @code{unibyte} variable, rather it just acts as an indicator -to Emacs in the same way as @code{coding} does (@pxref{Specify Coding}). +particular Lisp file, by adding an entry @samp{coding: raw-text} in a file +local variables section. @xref{Specify Coding}. +Then that file is always loaded as unibyte text. @ignore @c I don't see the point of this statement: The motivation for these conventions is that it is more reliable to always load any particular Lisp file in the same way. @end ignore -Note also that this feature only applies to @emph{loading} Lisp files -for evaluation, not to visiting them for editing. You can also load a -Lisp file as unibyte, on any one occasion, by typing @kbd{C-x -@key{RET} c raw-text @key{RET}} immediately before loading it. +You can also load a Lisp file as unibyte, on any one occasion, by +typing @kbd{C-x @key{RET} c raw-text @key{RET}} immediately before +loading it. @c See http://debbugs.gnu.org/11226 for lack of unibyte tooltip. @vindex enable-multibyte-characters |