diff options
| author | Ken Raeburn | 1999-09-11 18:35:57 +0000 |
|---|---|---|
| committer | Ken Raeburn | 1999-09-11 18:35:57 +0000 |
| commit | e35efe896b9ade614817a29cae4a1aeae84e66a1 (patch) | |
| tree | 25ff2a54f1bb539ce87d9a85d6033abadde2ba23 /src | |
| parent | 3606c1c576586bcbe8b98e5031574442411e6344 (diff) | |
| download | emacs-e35efe896b9ade614817a29cae4a1aeae84e66a1.tar.gz emacs-e35efe896b9ade614817a29cae4a1aeae84e66a1.zip | |
(GET_TRANSLATION_TABLE): Use XCDR.
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.h b/src/charset.h index fe97b417cff..ed5b3a7d2cf 100644 --- a/src/charset.h +++ b/src/charset.h | |||
| @@ -884,7 +884,7 @@ extern Lisp_Object Vtranslation_table_vector; | |||
| 884 | 884 | ||
| 885 | /* Return a translation table of id number ID. */ | 885 | /* Return a translation table of id number ID. */ |
| 886 | #define GET_TRANSLATION_TABLE(id) \ | 886 | #define GET_TRANSLATION_TABLE(id) \ |
| 887 | (XCONS(XVECTOR(Vtranslation_table_vector)->contents[(id)])->cdr) | 887 | (XCDR(XVECTOR(Vtranslation_table_vector)->contents[(id)])) |
| 888 | 888 | ||
| 889 | /* A char-table for characters which may invoke auto-filling. */ | 889 | /* A char-table for characters which may invoke auto-filling. */ |
| 890 | extern Lisp_Object Vauto_fill_chars; | 890 | extern Lisp_Object Vauto_fill_chars; |