aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-10-12 17:27:23 +0000
committerRichard M. Stallman1998-10-12 17:27:23 +0000
commitb1f687a2f13d999975b29fc169e09061a29ab769 (patch)
treeb422b770298e462b4747c047e25dd50448770a44
parent1a30e04cf79d192c3ad5138fd3d8a65dfe818b8d (diff)
downloademacs-b1f687a2f13d999975b29fc169e09061a29ab769.tar.gz
emacs-b1f687a2f13d999975b29fc169e09061a29ab769.zip
Fix names of standard-translation-table-for-decode(encode).
-rw-r--r--lispref/nonascii.texi12
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.
448characters that result from ordinary decoding. If a coding system has 448characters that result from ordinary decoding. If a coding system has
449property @code{character-translation-table-for-decode}, that specifies 449property @code{character-translation-table-for-decode}, that specifies
450the translation table to use. Otherwise, if 450the translation table to use. Otherwise, if
451@code{standard-character-translation-table-for-decode} is 451@code{standard-translation-table-for-decode} is non-@code{nil}, decoding
452non-@code{nil}, decoding uses that table. 452uses that table.
453 453
454 In encoding, the translation table's translations are applied to the 454 In encoding, the translation table's translations are applied to the
455characters in the buffer, and the result of translation is actually 455characters in the buffer, and the result of translation is actually
456encoded. If a coding system has property 456encoded. If a coding system has property
457@code{character-translation-table-for-encode}, that specifies the 457@code{character-translation-table-for-encode}, that specifies the
458translation table to use. Otherwise the variable 458translation table to use. Otherwise the variable
459@code{standard-character-translation-table-for-encode} specifies the 459@code{standard-translation-table-for-encode} specifies the translation
460translation table. 460table.
461 461
462@defvar standard-character-translation-table-for-decode 462@defvar standard-translation-table-for-decode
463This is the default translation table for decoding, for 463This is the default translation table for decoding, for
464coding systems that don't specify any other translation table. 464coding systems that don't specify any other translation table.
465@end defvar 465@end defvar
466 466
467@defvar standard-character-translation-table-for-encode 467@defvar standard-translation-table-for-encode
468This is the default translation table for encoding, for 468This is the default translation table for encoding, for
469coding systems that don't specify any other translation table. 469coding systems that don't specify any other translation table.
470@end defvar 470@end defvar