aboutsummaryrefslogtreecommitdiffstats
path: root/src/fontset.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/fontset.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/fontset.c')
-rw-r--r--src/fontset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fontset.c b/src/fontset.c
index 3397502a2fd..f3bf221f249 100644
--- a/src/fontset.c
+++ b/src/fontset.c
@@ -1672,7 +1672,7 @@ FONT-SPEC is a vector, a cons, or a string. See the documentation of
1672 { 1672 {
1673 Lisp_Object elt, script; 1673 Lisp_Object elt, script;
1674 1674
1675 elt = Fcar (fontlist); 1675 elt = XCAR (fontlist);
1676 script = Fcar (elt); 1676 script = Fcar (elt);
1677 elt = Fcdr (elt); 1677 elt = Fcdr (elt);
1678 if (CONSP (elt) && (NILP (XCDR (elt)) || CONSP (XCDR (elt)))) 1678 if (CONSP (elt) && (NILP (XCDR (elt)) || CONSP (XCDR (elt))))