; * src/dispnew.c (box_default): Shut up compilation warnings (bug#80386).

This commit is contained in:
Eli Zaretskii 2026-02-12 22:17:31 +02:00
parent 8e71dc6bac
commit 69a7f6f605
3 changed files with 3 additions and 3 deletions

View file

@ -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:

View file

@ -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;

View file

@ -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;