Mercurial > emacs
changeset 25637:2e3ab6dece24
(GET_TRANSLATION_TABLE): Use XCDR.
author | Ken Raeburn <raeburn@raeburn.org> |
---|---|
date | Sat, 11 Sep 1999 18:35:57 +0000 |
parents | ebc88533212e |
children | d02186608877 |
files | src/charset.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/charset.h Sat Sep 11 04:46:31 1999 +0000 +++ b/src/charset.h Sat Sep 11 18:35:57 1999 +0000 @@ -884,7 +884,7 @@ /* Return a translation table of id number ID. */ #define GET_TRANSLATION_TABLE(id) \ - (XCONS(XVECTOR(Vtranslation_table_vector)->contents[(id)])->cdr) + (XCDR(XVECTOR(Vtranslation_table_vector)->contents[(id)])) /* A char-table for characters which may invoke auto-filling. */ extern Lisp_Object Vauto_fill_chars;