aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1999-02-26 07:07:13 +0000
committerRichard M. Stallman1999-02-26 07:07:13 +0000
commit53fe786d1f59804bf1f6f61d0a9492ff1d1ce3a8 (patch)
tree91f1e7856bd55ca784a1cae645d09a86b164a0c6 /src
parentf58790da8e19cdc687c3bda2748f3808cb79ce8c (diff)
downloademacs-53fe786d1f59804bf1f6f61d0a9492ff1d1ce3a8.tar.gz
emacs-53fe786d1f59804bf1f6f61d0a9492ff1d1ce3a8.zip
(syms_of_buffer): Doc fix for enable-multibyte-characters.
Diffstat (limited to 'src')
-rw-r--r--src/buffer.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 0cd234303f6..2fad7c0be98 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1,5 +1,5 @@
1/* Buffer manipulation primitives for GNU Emacs. 1/* Buffer manipulation primitives for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1989, 1993, 1994, 1995, 1997, 1998 2 Copyright (C) 1985,86,87,88,89,93,94,95,97,98, 1999
3 Free Software Foundation, Inc. 3 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
@@ -4090,12 +4090,12 @@ This is the same as (default-value 'ctl-arrow).");
4090 DEFVAR_LISP_NOPRO ("default-enable-multibyte-characters", 4090 DEFVAR_LISP_NOPRO ("default-enable-multibyte-characters",
4091 &buffer_defaults.enable_multibyte_characters, 4091 &buffer_defaults.enable_multibyte_characters,
4092 "Default value of `enable-multibyte-characters' for buffers not overriding it.\n\ 4092 "Default value of `enable-multibyte-characters' for buffers not overriding it.\n\
4093 This is the same as (default-value 'enable-multibyte-characters)."); 4093This is the same as (default-value 'enable-multibyte-characters).");
4094 4094
4095 DEFVAR_LISP_NOPRO ("default-buffer-file-coding-system", 4095 DEFVAR_LISP_NOPRO ("default-buffer-file-coding-system",
4096 &buffer_defaults.buffer_file_coding_system, 4096 &buffer_defaults.buffer_file_coding_system,
4097 "Default value of `buffer-file-coding-system' for buffers not overriding it.\n\ 4097 "Default value of `buffer-file-coding-system' for buffers not overriding it.\n\
4098 This is the same as (default-value 'buffer-file-coding-system)."); 4098This is the same as (default-value 'buffer-file-coding-system).");
4099 4099
4100 DEFVAR_LISP_NOPRO ("default-truncate-lines", 4100 DEFVAR_LISP_NOPRO ("default-truncate-lines",
4101 &buffer_defaults.truncate_lines, 4101 &buffer_defaults.truncate_lines,
@@ -4222,7 +4222,13 @@ in the current display table (if there is one).");
4222 make_number (-1), 4222 make_number (-1),
4223 "*Non-nil means the buffer contents are regarded as multi-byte characters.\n\ 4223 "*Non-nil means the buffer contents are regarded as multi-byte characters.\n\
4224Otherwise they are regarded as unibyte. This affects the display,\n\ 4224Otherwise they are regarded as unibyte. This affects the display,\n\
4225file I/O and the behavior of various editing commands."); 4225file I/O and the behavior of various editing commands.\n\
4226\n\
4227This variable is buffer-local but you cannot set it directly;\n\
4228use the function `set-buffer-multibyte' to change a buffer's representation.\n\
4229Changing its default value with `setq-default' is supported.\n\
4230See also variable `default-enable-multibyte-characters' and Info node\n\
4231`(elisp)Text Representations'.");
4226 4232
4227 DEFVAR_PER_BUFFER ("buffer-file-coding-system", 4233 DEFVAR_PER_BUFFER ("buffer-file-coding-system",
4228 &current_buffer->buffer_file_coding_system, Qnil, 4234 &current_buffer->buffer_file_coding_system, Qnil,