From a9d54abb6ca40b6a4632cef324a9e09b79a3eca8 Mon Sep 17 00:00:00 2001 From: Yuan Fu Date: Wed, 9 Aug 2023 21:38:26 -0700 Subject: [PATCH] Revert last workaround since it doesn't work This reverts commit 67ec0b9fd6b68a171f3e698451adf01c30b83a03. --- eldoc-box.el | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/eldoc-box.el b/eldoc-box.el index 2982e37..8896d74 100644 --- a/eldoc-box.el +++ b/eldoc-box.el @@ -431,10 +431,7 @@ FRAME is the childframe, WINDOW is the primary window." (pos (funcall eldoc-box-position-function width height))) (set-frame-size frame width height t) ;; move position - (set-frame-position frame (car pos) (cdr pos)) - ;; Maybe forcing redisplay can make sure the new frame size is - ;; applied (issue#68). - (redisplay t)) + (set-frame-position frame (car pos) (cdr pos)))) (defun eldoc-box--inhibit-childframe-for (sec) "Inhibit display of childframe for SEC seconds after Emacs is idle again."