From 7695f21b18915fb7ed961937055214a951adeab3 Mon Sep 17 00:00:00 2001 From: Milan Zamazal Date: Tue, 28 Jun 2022 21:34:58 +0200 Subject: [PATCH] Add debug declaration to pw-ui--osd macro --- pw-ui.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pw-ui.el b/pw-ui.el index 4b6ba3e..675af4f 100644 --- a/pw-ui.el +++ b/pw-ui.el @@ -223,7 +223,8 @@ The indicator is displayed only on graphical terminals." pw-ui--osd-buffer nil))))) (defmacro pw-ui--osd (&rest body) - (declare (indent defun)) + (declare (debug (body)) + (indent defun)) (let (($string (gensym))) `(when (and window-system pipewire-osd-enable) (if-let ((,$string (progn ,@body)))