From: Lars Ingebrigtsen Date: Sun, 13 Feb 2022 07:26:55 +0000 (+0100) Subject: Avoid a compilation warning in eval.c X-Git-Tag: emacs-29.0.90~2345 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1e15500daf620e3ae7556829764c3048fc78a5c9;p=emacs.git Avoid a compilation warning in eval.c * src/eval.c (specpdl_unrewind): Avoid a compilation warning. --- diff --git a/src/eval.c b/src/eval.c index 6bed7c4a899..3e384fc28b3 100644 --- a/src/eval.c +++ b/src/eval.c @@ -4106,7 +4106,7 @@ specpdl_unrewind (union specbinding *pdl, int distance, bool vars_only) non-local, this is fine, but if it ever reverts to being local we may end up using this entry "in the wrong direction". */ - ; + {}; } break; }