* xdisp.c (display_line): Avoid warning about implicit declaration
of FRAME_FONT.
This commit is contained in:
parent
298819b917
commit
f17c527307
2 changed files with 5 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
|||
2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
* xdisp.c (display_line): Avoid warning about implicit declaration
|
||||
of FRAME_FONT.
|
||||
|
||||
* frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
|
||||
|
||||
* lisp.h: Remove empty conditional.
|
||||
|
|
|
@ -19770,6 +19770,7 @@ display_line (struct it *it)
|
|||
produce_special_glyphs (it, IT_TRUNCATION);
|
||||
}
|
||||
}
|
||||
#ifdef HAVE_WINDOW_SYSTEM
|
||||
else
|
||||
{
|
||||
int stretch_width = it->last_visible_x - it->current_x;
|
||||
|
@ -19793,6 +19794,7 @@ display_line (struct it *it)
|
|||
}
|
||||
produce_special_glyphs (it, IT_TRUNCATION);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
else if (IT_OVERFLOW_NEWLINE_INTO_FRINGE (it))
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue