Mercurial > emacs
diff src/coding.c @ 37858:fd7c0dac2110
Use SYMBOL_VALUE/ SET_SYMBOL_VALUE macros instead of accessing
symbols' value directly.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Mon, 21 May 2001 12:34:11 +0000 |
| parents | 8a086ca42e43 |
| children |
line wrap: on
line diff
--- a/src/coding.c Mon May 21 12:28:26 2001 +0000 +++ b/src/coding.c Mon May 21 12:34:11 2001 +0000 @@ -1,6 +1,7 @@ /* Coding system handler (conversion, detection, and etc). Copyright (C) 1995, 1997, 1998 Electrotechnical Laboratory, JAPAN. Licensed to the Free Software Foundation. + Copyright (C) 2001 Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -4109,7 +4110,7 @@ if (! mask) idx = CODING_CATEGORY_IDX_RAW_TEXT; - val = XSYMBOL (XVECTOR (Vcoding_category_table)->contents[idx])->value; + val = SYMBOL_VALUE (XVECTOR (Vcoding_category_table)->contents[idx]); if (coding->eol_type != CODING_EOL_UNDECIDED) { @@ -6862,7 +6863,7 @@ { Lisp_Object val; - val = XSYMBOL (XVECTOR (Vcoding_category_table)->contents[i])->value; + val = SYMBOL_VALUE (XVECTOR (Vcoding_category_table)->contents[i]); if (!NILP (val)) { if (! coding_system_table[i])
