From: Basil L. Contovounesios Date: Tue, 14 Apr 2020 14:26:04 +0000 (+0100) Subject: Fix effect-free warning in ob-screen.el while loop X-Git-Tag: emacs-28.0.90~7559 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7f1dae114dffbf4bdec60e38ada4eb0673cfb4e2;p=emacs.git Fix effect-free warning in ob-screen.el while loop The warning was introduced and detected by an optimizer addition proposed in the following thread: https://lists.gnu.org/archive/html/emacs-devel/2019-12/msg00711.html * lisp/org/ob-screen.el (org-babel-screen-test): Avoid 'value returned from (format "...") is unused' warning by doing something more useful than busy string manipulation while waiting for an asynchronous subprocess to make the temporary file readable. --- diff --git a/lisp/org/ob-screen.el b/lisp/org/ob-screen.el index ad00ee070d4..837c18f8407 100644 --- a/lisp/org/ob-screen.el +++ b/lisp/org/ob-screen.el @@ -126,7 +126,7 @@ The terminal should shortly flicker." ;; XXX: need to find a better way to do the following (while (not (file-readable-p tmpfile)) ;; do something, otherwise this will be optimized away - (format "org-babel-screen: File not readable yet.")) + (sit-for 0.1)) (setq tmp-string (with-temp-buffer (insert-file-contents-literally tmpfile) (buffer-substring (point-min) (point-max))))