aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorAndreas Schwab2012-07-11 09:19:44 +0200
committerAndreas Schwab2012-07-11 09:19:44 +0200
commit34348bd4e5c89fa0e440e37efa20be2a00c8fd9c (patch)
tree679635a1ad78cb4068413ebb7080afcbcec31abd /src/coding.c
parent172bedefc979b19de6799b245e8843f84bfe70b5 (diff)
downloademacs-34348bd4e5c89fa0e440e37efa20be2a00c8fd9c.tar.gz
emacs-34348bd4e5c89fa0e440e37efa20be2a00c8fd9c.zip
* coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
of Fcar/Fcdr if possible. * font.c (check_otf_features): Likewise. * fontset.c (Fnew_fontset): Likewise. * gnutls.c (Fgnutls_boot): Likewise. * minibuf.c (read_minibuf): Likewise. * msdos.c (IT_set_frame_parameters): Likewise. * xmenu.c (Fx_popup_dialog): Likewise. * w32menu.c (Fx_popup_dialog): Likewise.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c
index 134ebf2ab73..d9fcc634b77 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -9795,7 +9795,7 @@ usage: (define-coding-system-internal ...) */)
9795 { 9795 {
9796 int from, to; 9796 int from, to;
9797 9797
9798 val = Fcar (tail); 9798 val = XCAR (tail);
9799 if (INTEGERP (val)) 9799 if (INTEGERP (val))
9800 { 9800 {
9801 if (! (0 <= XINT (val) && XINT (val) <= 255)) 9801 if (! (0 <= XINT (val) && XINT (val) <= 255))
@@ -9897,7 +9897,7 @@ usage: (define-coding-system-internal ...) */)
9897 int id; 9897 int id;
9898 Lisp_Object tmp1; 9898 Lisp_Object tmp1;
9899 9899
9900 val = Fcar (tail); 9900 val = XCAR (tail);
9901 CHECK_CONS (val); 9901 CHECK_CONS (val);
9902 tmp1 = XCAR (val); 9902 tmp1 = XCAR (val);
9903 CHECK_CHARSET_GET_ID (tmp1, id); 9903 CHECK_CHARSET_GET_ID (tmp1, id);