diff options
| author | Kim F. Storm | 2005-03-22 23:02:03 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-03-22 23:02:03 +0000 |
| commit | d196a54737897fdd4a19ca62034f53ce731d5f20 (patch) | |
| tree | 3c4e69bd1e9281fad6ad1fb8cd975f9b8912ce05 /src | |
| parent | 3a2b4c84ccc212721da2a8d73ebe794194bf2b51 (diff) | |
| download | emacs-d196a54737897fdd4a19ca62034f53ce731d5f20.tar.gz emacs-d196a54737897fdd4a19ca62034f53ce731d5f20.zip | |
(lookup_derived_face): Add arg SIGNAL_P.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 753b20765d8..146036aa97e 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -5775,7 +5775,7 @@ face_with_height (f, face_id, height) | |||
| 5775 | is assumed to be already realized. */ | 5775 | is assumed to be already realized. */ |
| 5776 | 5776 | ||
| 5777 | int | 5777 | int |
| 5778 | lookup_derived_face (f, symbol, c, face_id) | 5778 | lookup_derived_face (f, symbol, c, face_id, signal_p) |
| 5779 | struct frame *f; | 5779 | struct frame *f; |
| 5780 | Lisp_Object symbol; | 5780 | Lisp_Object symbol; |
| 5781 | int c; | 5781 | int c; |
| @@ -5788,7 +5788,7 @@ lookup_derived_face (f, symbol, c, face_id) | |||
| 5788 | if (!default_face) | 5788 | if (!default_face) |
| 5789 | abort (); | 5789 | abort (); |
| 5790 | 5790 | ||
| 5791 | get_lface_attributes (f, symbol, symbol_attrs, 1); | 5791 | get_lface_attributes (f, symbol, symbol_attrs, signal_p); |
| 5792 | bcopy (default_face->lface, attrs, sizeof attrs); | 5792 | bcopy (default_face->lface, attrs, sizeof attrs); |
| 5793 | merge_face_vectors (f, symbol_attrs, attrs, 0); | 5793 | merge_face_vectors (f, symbol_attrs, attrs, 0); |
| 5794 | return lookup_face (f, attrs, c, default_face); | 5794 | return lookup_face (f, attrs, c, default_face); |
| @@ -7731,7 +7731,7 @@ merge_faces (f, face_name, face_id, base_face_id) | |||
| 7731 | if (face_id < 0 || face_id >= lface_id_to_name_size) | 7731 | if (face_id < 0 || face_id >= lface_id_to_name_size) |
| 7732 | return base_face_id; | 7732 | return base_face_id; |
| 7733 | face_name = lface_id_to_name[face_id]; | 7733 | face_name = lface_id_to_name[face_id]; |
| 7734 | face_id = lookup_derived_face (f, face_name, 0, base_face_id); | 7734 | face_id = lookup_derived_face (f, face_name, 0, base_face_id, 1); |
| 7735 | if (face_id >= 0) | 7735 | if (face_id >= 0) |
| 7736 | return face_id; | 7736 | return face_id; |
| 7737 | return base_face_id; | 7737 | return base_face_id; |