aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1998-04-23 04:12:09 +0000
committerRichard M. Stallman1998-04-23 04:12:09 +0000
commit3e8ceaacd123dac9acb113fb39093fb1070296ef (patch)
treeb4edc1884273bca825e712361c7f26b399dc5227 /src
parent24d6bf2685a6b916e34a4d61ed3c3fe0412de86f (diff)
downloademacs-3e8ceaacd123dac9acb113fb39093fb1070296ef.tar.gz
emacs-3e8ceaacd123dac9acb113fb39093fb1070296ef.zip
(syms_of_charset): Doc fix for nonascii-insert-offset.
Diffstat (limited to 'src')
-rw-r--r--src/charset.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/charset.c b/src/charset.c
index af08dba571e..5803c50d30c 100644
--- a/src/charset.c
+++ b/src/charset.c
@@ -1781,9 +1781,10 @@ An ID of a unification table is an index of this vector.");
1781 "Offset for converting non-ASCII unibyte codes 0240...0377 to multibyte.\n\ 1781 "Offset for converting non-ASCII unibyte codes 0240...0377 to multibyte.\n\
1782This is used for converting unibyte text to multibyte,\n\ 1782This is used for converting unibyte text to multibyte,\n\
1783and for inserting character codes specified by number.\n\n\ 1783and for inserting character codes specified by number.\n\n\
1784Conversion is performed only when multibyte characters are enabled,\n\ 1784This serves to convert a Latin-1 or similar 8-bit character code\n\
1785and it serves to convert a Latin-1 or similar 8-bit character code\n\ 1785to the corresponding Emacs multibyte character code.\n\
1786to the corresponding Emacs character code.\n\ 1786Typically the value should be (- (make-char CHARSET 0) 128),\n\
1787for your choice of character set.\n\
1787If `nonascii-translate-table' is non-nil, it overrides this variable."); 1788If `nonascii-translate-table' is non-nil, it overrides this variable.");
1788 nonascii_insert_offset = 0; 1789 nonascii_insert_offset = 0;
1789 1790