diff options
| author | Richard M. Stallman | 1993-07-24 05:49:51 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-07-24 05:49:51 +0000 |
| commit | 82411f65a3b71b89f9357eadf882b86f4687b843 (patch) | |
| tree | 13ffa35474031d9477adda26065efb584ee63aea /src | |
| parent | eb4686e4a3012a83771b50f4561d7d4966782f89 (diff) | |
| download | emacs-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.c | 2 |
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); |