aboutsummaryrefslogtreecommitdiffstats
path: root/src/gnutls.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/gnutls.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/gnutls.c')
-rw-r--r--src/gnutls.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gnutls.c b/src/gnutls.c
index 21658a1bc82..ad569e98226 100644
--- a/src/gnutls.c
+++ b/src/gnutls.c
@@ -873,7 +873,7 @@ one trustfile (usually a CA bundle). */)
873 873
874 for (tail = trustfiles; CONSP (tail); tail = XCDR (tail)) 874 for (tail = trustfiles; CONSP (tail); tail = XCDR (tail))
875 { 875 {
876 Lisp_Object trustfile = Fcar (tail); 876 Lisp_Object trustfile = XCAR (tail);
877 if (STRINGP (trustfile)) 877 if (STRINGP (trustfile))
878 { 878 {
879 GNUTLS_LOG2 (1, max_log_level, "setting the trustfile: ", 879 GNUTLS_LOG2 (1, max_log_level, "setting the trustfile: ",
@@ -895,7 +895,7 @@ one trustfile (usually a CA bundle). */)
895 895
896 for (tail = crlfiles; CONSP (tail); tail = XCDR (tail)) 896 for (tail = crlfiles; CONSP (tail); tail = XCDR (tail))
897 { 897 {
898 Lisp_Object crlfile = Fcar (tail); 898 Lisp_Object crlfile = XCAR (tail);
899 if (STRINGP (crlfile)) 899 if (STRINGP (crlfile))
900 { 900 {
901 GNUTLS_LOG2 (1, max_log_level, "setting the CRL file: ", 901 GNUTLS_LOG2 (1, max_log_level, "setting the CRL file: ",
@@ -915,8 +915,8 @@ one trustfile (usually a CA bundle). */)
915 915
916 for (tail = keylist; CONSP (tail); tail = XCDR (tail)) 916 for (tail = keylist; CONSP (tail); tail = XCDR (tail))
917 { 917 {
918 Lisp_Object keyfile = Fcar (Fcar (tail)); 918 Lisp_Object keyfile = Fcar (XCAR (tail));
919 Lisp_Object certfile = Fcar (Fcdr (tail)); 919 Lisp_Object certfile = Fcar (XCDR (tail));
920 if (STRINGP (keyfile) && STRINGP (certfile)) 920 if (STRINGP (keyfile) && STRINGP (certfile))
921 { 921 {
922 GNUTLS_LOG2 (1, max_log_level, "setting the client key file: ", 922 GNUTLS_LOG2 (1, max_log_level, "setting the client key file: ",