mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-30 08:09:04 +00:00
(realize_x_face) [!HAVE_WINDOW_SYSTEM]: Return NULL.
This commit is contained in:
parent
cae0724067
commit
7d603e3f8e
@ -1,3 +1,7 @@
|
||||
2005-04-18 Thien-Thi Nguyen <ttn@gnu.org>
|
||||
|
||||
* xfaces.c (realize_x_face) [!HAVE_WINDOW_SYSTEM]: Return NULL.
|
||||
|
||||
2005-04-18 Lute Kamstra <lute@gnu.org>
|
||||
|
||||
* lread.c (Vloads_in_progress): Static.
|
||||
|
@ -7084,8 +7084,9 @@ realize_x_face (cache, attrs, c, base_face)
|
||||
int c;
|
||||
struct face *base_face;
|
||||
{
|
||||
struct face *face = NULL;
|
||||
#ifdef HAVE_WINDOW_SYSTEM
|
||||
struct face *face, *default_face;
|
||||
struct face *default_face;
|
||||
struct frame *f;
|
||||
Lisp_Object stipple, overline, strike_through, box;
|
||||
|
||||
@ -7281,8 +7282,8 @@ realize_x_face (cache, attrs, c, base_face)
|
||||
face->stipple = load_pixmap (f, stipple, &face->pixmap_w, &face->pixmap_h);
|
||||
|
||||
xassert (FACE_SUITABLE_FOR_CHAR_P (face, c));
|
||||
return face;
|
||||
#endif /* HAVE_WINDOW_SYSTEM */
|
||||
return face;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user