From: Florian Rommel Date: Sun, 3 Jul 2022 15:04:32 +0000 (+0200) Subject: abort-redisplay: Add missing unbind_to in 'recenter' X-Git-Tag: emacs-29.0.90~1447^2~1232 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=676d38cfc34a001d0eebbb512468bafb3ba292cf;p=emacs.git abort-redisplay: Add missing unbind_to in 'recenter' * src/window.c (recenter): Add ubind_to before early return. (Bug#56369) --- diff --git a/src/window.c b/src/window.c index ad03a02758e..af463b90ce6 100644 --- a/src/window.c +++ b/src/window.c @@ -6667,6 +6667,7 @@ and redisplay normally--don't erase and redraw the frame. */) if (h <= 0) { bidi_unshelve_cache (itdata, false); + unbind_to (count, Qnil); return Qnil; }