diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-10-25 17:10:34 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-10-25 17:10:34 +0200 |
commit | 9ce0008edd3be96bf1271d770b8e65c56a334b1c (patch) | |
tree | 31124b2c3d1fc49ab0a90d3ae0901ac4261b43db /lisp/net/eww.el | |
parent | 8c73e6b0f9acd315a946e01ceb82f86a70b1aeac (diff) | |
download | emacs-9ce0008edd3be96bf1271d770b8e65c56a334b1c.tar.gz emacs-9ce0008edd3be96bf1271d770b8e65c56a334b1c.tar.bz2 emacs-9ce0008edd3be96bf1271d770b8e65c56a334b1c.zip |
Change the with-delayed-message syntax to allow future extensibility
* doc/lispref/display.texi (Progress): Document it.
* lisp/subr.el (with-delayed-message): Change the syntax to allow
future extensibility.
* lisp/net/eww.el (eww-display-html): Use it.
Diffstat (limited to 'lisp/net/eww.el')
-rw-r--r-- | lisp/net/eww.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/eww.el b/lisp/net/eww.el index e0bc17b5a5d..74d3788116d 100644 --- a/lisp/net/eww.el +++ b/lisp/net/eww.el @@ -694,7 +694,7 @@ The renaming scheme is performed in accordance with (meta . eww-tag-meta) (a . eww-tag-a))))) (erase-buffer) - (with-delayed-message 2 "Rendering HTML..." + (with-delayed-message (2 "Rendering HTML...") (shr-insert-document document)) (cond (point |