diff options
| author | Dave Love | 2002-07-30 11:32:52 +0000 |
|---|---|---|
| committer | Dave Love | 2002-07-30 11:32:52 +0000 |
| commit | 68978cf02e3ac6a6d06266c15329e418287a8b2a (patch) | |
| tree | 49960cb42c086d440d86ca2ce8b686eec1344580 /src | |
| parent | d325055a00e658a38c1721fcc63ed1775dd8ccb3 (diff) | |
| download | emacs-68978cf02e3ac6a6d06266c15329e418287a8b2a.tar.gz emacs-68978cf02e3ac6a6d06266c15329e418287a8b2a.zip | |
(syms_of_character) <translation-table-vector>: Doc
fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/character.c | 5 |
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: /* |
| 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, |