diff options
| author | Richard M. Stallman | 1998-04-23 04:12:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-04-23 04:12:09 +0000 |
| commit | 3e8ceaacd123dac9acb113fb39093fb1070296ef (patch) | |
| tree | b4edc1884273bca825e712361c7f26b399dc5227 /src | |
| parent | 24d6bf2685a6b916e34a4d61ed3c3fe0412de86f (diff) | |
| download | emacs-3e8ceaacd123dac9acb113fb39093fb1070296ef.tar.gz emacs-3e8ceaacd123dac9acb113fb39093fb1070296ef.zip | |
(syms_of_charset): Doc fix for nonascii-insert-offset.
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.c | 7 |
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\ |
| 1782 | This is used for converting unibyte text to multibyte,\n\ | 1782 | This is used for converting unibyte text to multibyte,\n\ |
| 1783 | and for inserting character codes specified by number.\n\n\ | 1783 | and for inserting character codes specified by number.\n\n\ |
| 1784 | Conversion is performed only when multibyte characters are enabled,\n\ | 1784 | This serves to convert a Latin-1 or similar 8-bit character code\n\ |
| 1785 | and it serves to convert a Latin-1 or similar 8-bit character code\n\ | 1785 | to the corresponding Emacs multibyte character code.\n\ |
| 1786 | to the corresponding Emacs character code.\n\ | 1786 | Typically the value should be (- (make-char CHARSET 0) 128),\n\ |
| 1787 | for your choice of character set.\n\ | ||
| 1787 | If `nonascii-translate-table' is non-nil, it overrides this variable."); | 1788 | If `nonascii-translate-table' is non-nil, it overrides this variable."); |
| 1788 | nonascii_insert_offset = 0; | 1789 | nonascii_insert_offset = 0; |
| 1789 | 1790 | ||