From 4bbd1f38ca43c543f27178ba9b2b600d25711c61 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Wed, 3 Aug 2022 14:09:15 +0200 Subject: [PATCH] ; * lisp/url/url-util.el (url-display-percentage): simplify --- lisp/url/url-util.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lisp/url/url-util.el b/lisp/url/url-util.el index b7fdd73762a..de8e6747975 100644 --- a/lisp/url/url-util.el +++ b/lisp/url/url-util.el @@ -193,10 +193,9 @@ Will not do anything if `url-show-status' is nil." ;;;###autoload (defun url-display-percentage (fmt _perc &rest args) (when (and url-show-status - (or (null url-current-object) - (not (url-silent url-current-object)))) - (when (not (null fmt)) - (apply 'message fmt args)))) + (not (and url-current-object (url-silent url-current-object))) + fmt) + (apply #'message fmt args))) ;;;###autoload (defun url-percentage (x y) -- 2.39.5