aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2002-07-30 11:32:52 +0000
committerDave Love2002-07-30 11:32:52 +0000
commit68978cf02e3ac6a6d06266c15329e418287a8b2a (patch)
tree49960cb42c086d440d86ca2ce8b686eec1344580 /src
parentd325055a00e658a38c1721fcc63ed1775dd8ccb3 (diff)
downloademacs-68978cf02e3ac6a6d06266c15329e418287a8b2a.tar.gz
emacs-68978cf02e3ac6a6d06266c15329e418287a8b2a.zip
(syms_of_character) <translation-table-vector>: Doc
fix.
Diffstat (limited to 'src')
-rw-r--r--src/character.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/character.c b/src/character.c
index eb0f8c84d04..5907f55b1f3 100644
--- a/src/character.c
+++ b/src/character.c
@@ -895,8 +895,9 @@ syms_of_character ()
895 895
896 DEFVAR_LISP ("translation-table-vector", &Vtranslation_table_vector, 896 DEFVAR_LISP ("translation-table-vector", &Vtranslation_table_vector,
897 doc: /* 897 doc: /*
898Vector of cons cell of a symbol and translation table ever defined. 898Vector recording all translation tables ever defined.
899An ID of a translation table is an index of this vector. */); 899Each element is a pair (SYMBOL . TABLE) relating the table to the
900symbol naming it. The ID of a translation table is an index into this vector. */);
900 Vtranslation_table_vector = Fmake_vector (make_number (16), Qnil); 901 Vtranslation_table_vector = Fmake_vector (make_number (16), Qnil);
901 902
902 DEFVAR_LISP ("auto-fill-chars", &Vauto_fill_chars, 903 DEFVAR_LISP ("auto-fill-chars", &Vauto_fill_chars,