aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-24 05:49:51 +0000
committerRichard M. Stallman1993-07-24 05:49:51 +0000
commit82411f65a3b71b89f9357eadf882b86f4687b843 (patch)
tree13ffa35474031d9477adda26065efb584ee63aea /src
parenteb4686e4a3012a83771b50f4561d7d4966782f89 (diff)
downloademacs-82411f65a3b71b89f9357eadf882b86f4687b843.tar.gz
emacs-82411f65a3b71b89f9357eadf882b86f4687b843.zip
(face_name_id_number): Use assq_no_quit, not Fassq.
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index e5097b5ef8b..e043ea25a84 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -1079,7 +1079,7 @@ face_name_id_number (f, name)
1079{ 1079{
1080 Lisp_Object tem; 1080 Lisp_Object tem;
1081 1081
1082 tem = Fcdr (Fassq (name, f->face_alist)); 1082 tem = Fcdr (assq_no_quit (name, f->face_alist));
1083 if (NILP (tem)) 1083 if (NILP (tem))
1084 return 0; 1084 return 0;
1085 CHECK_VECTOR (tem, 0); 1085 CHECK_VECTOR (tem, 0);