mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 09:14:18 +00:00
; * src/dispnew.c (box_default): Shut up compilation warnings (bug#80386).
This commit is contained in:
parent
8e71dc6bac
commit
69a7f6f605
3 changed files with 3 additions and 3 deletions
|
|
@ -3649,7 +3649,7 @@ box_from_display_table (struct frame *f, enum box box, GLYPH *g)
|
|||
static void
|
||||
box_default (struct frame *f, enum box box, GLYPH *g)
|
||||
{
|
||||
int dflt;
|
||||
int dflt UNINIT;
|
||||
switch (box)
|
||||
{
|
||||
case BOX_VERTICAL:
|
||||
|
|
|
|||
|
|
@ -4520,7 +4520,7 @@ by calling `format-decode', which see. */)
|
|||
/* Find the end position, which is end_offset if given,
|
||||
the file's end otherwise. */
|
||||
|
||||
off_t endpos;
|
||||
off_t endpos UNINIT;
|
||||
if (!giveup_match_end)
|
||||
{
|
||||
endpos = end_offset;
|
||||
|
|
|
|||
|
|
@ -2603,7 +2603,7 @@ delete_frame (Lisp_Object frame, Lisp_Object force)
|
|||
struct frame *f = decode_any_frame (frame);
|
||||
struct frame *sf;
|
||||
struct kboard *kb;
|
||||
Lisp_Object frames, frame1;
|
||||
Lisp_Object frames, frame1 UNINIT;
|
||||
int is_tooltip_frame;
|
||||
bool nochild = !FRAME_PARENT_FRAME (f);
|
||||
Lisp_Object minibuffer_child_frame = Qnil;
|
||||
|
|
|
|||
Loading…
Reference in a new issue