diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-10-12 17:27:23 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-10-12 17:27:23 +0000 |
commit | b1f687a2f13d999975b29fc169e09061a29ab769 (patch) | |
tree | b422b770298e462b4747c047e25dd50448770a44 /lispref | |
parent | 1a30e04cf79d192c3ad5138fd3d8a65dfe818b8d (diff) | |
download | emacs-b1f687a2f13d999975b29fc169e09061a29ab769.tar.gz |
Fix names of standard-translation-table-for-decode(encode).
Diffstat (limited to 'lispref')
-rw-r--r-- | lispref/nonascii.texi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lispref/nonascii.texi b/lispref/nonascii.texi index fb089fae206..8029fd23e37 100644 --- a/lispref/nonascii.texi +++ b/lispref/nonascii.texi @@ -448,23 +448,23 @@ corresponding character of @var{to}'s character set. characters that result from ordinary decoding. If a coding system has property @code{character-translation-table-for-decode}, that specifies the translation table to use. Otherwise, if -@code{standard-character-translation-table-for-decode} is -non-@code{nil}, decoding uses that table. +@code{standard-translation-table-for-decode} is non-@code{nil}, decoding +uses that table. In encoding, the translation table's translations are applied to the characters in the buffer, and the result of translation is actually encoded. If a coding system has property @code{character-translation-table-for-encode}, that specifies the translation table to use. Otherwise the variable -@code{standard-character-translation-table-for-encode} specifies the -translation table. +@code{standard-translation-table-for-encode} specifies the translation +table. -@defvar standard-character-translation-table-for-decode +@defvar standard-translation-table-for-decode This is the default translation table for decoding, for coding systems that don't specify any other translation table. @end defvar -@defvar standard-character-translation-table-for-encode +@defvar standard-translation-table-for-encode This is the default translation table for encoding, for coding systems that don't specify any other translation table. @end defvar |