comparison src/character.c @ 88926:f026b7e4fc61

(syms_of_character) <translation-table-vector>: Doc fix.
author Dave Love <fx@gnu.org>
date Tue, 30 Jul 2002 11:32:52 +0000
parents 76074dea1258
children 894b8bce3208
comparison
equal deleted inserted replaced
88925:aa33304a3bb8 88926:f026b7e4fc61
893 defsubr (&Schars_in_region); 893 defsubr (&Schars_in_region);
894 defsubr (&Sstring); 894 defsubr (&Sstring);
895 895
896 DEFVAR_LISP ("translation-table-vector", &Vtranslation_table_vector, 896 DEFVAR_LISP ("translation-table-vector", &Vtranslation_table_vector,
897 doc: /* 897 doc: /*
898 Vector of cons cell of a symbol and translation table ever defined. 898 Vector recording all translation tables ever defined.
899 An ID of a translation table is an index of this vector. */); 899 Each element is a pair (SYMBOL . TABLE) relating the table to the
900 symbol 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,
903 doc: /* 904 doc: /*
904 A char-table for characters which invoke auto-filling. 905 A char-table for characters which invoke auto-filling.