summaryrefslogtreecommitdiff
path: root/src/eval.c
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-02-13 08:26:55 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2022-02-13 08:26:55 +0100
commit1e15500daf620e3ae7556829764c3048fc78a5c9 (patch)
treeff63908dec39f7e76a6362460034497ff0581ef8 /src/eval.c
parent0c4f52066f65aa23312382874a3b1503c13926a5 (diff)
Avoid a compilation warning in eval.c
* src/eval.c (specpdl_unrewind): Avoid a compilation warning.
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c2
1 files changed, 1 insertions, 1 deletions
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;
}