diff options
| author | Eli Zaretskii | 2016-07-02 12:39:47 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2016-07-02 12:39:47 +0300 |
| commit | 55d38fc89f5aeb9a73c9a8e13914fbb8a9a6a1af (patch) | |
| tree | 46a5bde90a8759582c0c3f7071b7a533056eaa75 /src/alloc.c | |
| parent | a5ec5c073a182aa014d9d753f14751248ea5c9a7 (diff) | |
| download | emacs-55d38fc89f5aeb9a73c9a8e13914fbb8a9a6a1af.tar.gz emacs-55d38fc89f5aeb9a73c9a8e13914fbb8a9a6a1af.zip | |
Rename FACE_OPT_FROM_ID to FACE_FROM_ID_OR_NULL
* src/dispextern.h (FACE_FROM_ID_OR_NULL): Renamed from
FACE_OPT_FROM_ID; all callers changed.
* src/xdisp.c (extend_face_to_end_of_line): Call FACE_FROM_ID, not
FACE_FROM_ID_OR_NULL, as the resulting face is immediately
dereferenced.
(fill_gstring_glyph_string): Call FACE_FROM_ID, not
FACE_FROM_ID_OR_NULL, as the resulting face will be dereferenced
when the glyph string is drawn.
(BUILD_COMPOSITE_GLYPH_STRING): Call FACE_FROM_ID, not
FACE_FROM_ID_OR_NULL, as the resulting face will be dereferenced
in fill_composite_glyph_string.
(calc_line_height_property): Call FACE_FROM_ID_OR_NULL rather that
FACE_FROM_ID, since the function and its caller can cope with that
situation. Conflate 3 tests of missing face or font into just
one.
* src/xfaces.c (Fx_list_fonts, Fface_font, lookup_face): Call
FACE_FROM_ID_OR_NULL rather that FACE_FROM_ID, since these
functions can cope with that situation.
(lookup_derived_face): Don't call FACE_FROM_ID if the result will
not be used.
* src/w32console.c (w32_face_attributes): Remove redundant 'eassert'.
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index 5f9d6ada5a1..e25d91ff8aa 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -6135,7 +6135,7 @@ mark_face_cache (struct face_cache *c) | |||
| 6135 | int i, j; | 6135 | int i, j; |
| 6136 | for (i = 0; i < c->used; ++i) | 6136 | for (i = 0; i < c->used; ++i) |
| 6137 | { | 6137 | { |
| 6138 | struct face *face = FACE_OPT_FROM_ID (c->f, i); | 6138 | struct face *face = FACE_FROM_ID_OR_NULL (c->f, i); |
| 6139 | 6139 | ||
| 6140 | if (face) | 6140 | if (face) |
| 6141 | { | 6141 | { |