1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-15 15:50:57 -08:00

; * src/editfns.c (styled_format): fix build for C99 compilers

This commit is contained in:
Mattias Engdegård 2025-12-22 11:12:43 +01:00
parent f3d9371a89
commit ca5d0de3e5

View file

@ -3966,7 +3966,7 @@ styled_format (ptrdiff_t nargs, Lisp_Object *args, bool message)
sprintf_bytes = bignum_to_c_string (p, sprintf_bytes,
arg, signedbase);
nonzero_arg = true;
preformatted_fixnum_arg:
preformatted_fixnum_arg: ;
bool negative = p[0] == '-';
prec = min (precision, sprintf_bytes - prefixlen);
prefix[prefixlen] = plus_flag ? '+' : ' ';