From 776b532c5abd945a6de68605323a64899ea80d5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20Kryger?= Date: Mon, 18 Nov 2024 18:41:34 +0000 Subject: [PATCH] [fu] init-util.t - remove warnings --- modules/init-util.t.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/init-util.t.el b/modules/init-util.t.el index b587f718..a8db790b 100644 --- a/modules/init-util.t.el +++ b/modules/init-util.t.el @@ -53,8 +53,10 @@ Return the BODY return value" (with-temp-buffer ;; Use `python-mode' for it richness of supported string formats. (when (numberp point-or-region) - (let (python-mode-hook - python-indent-guess-indent-offset-verbose) + (let ((python-mode-hook nil) + (python-indent-guess-indent-offset-verbose nil)) + (ignore python-mode-hook + python-indent-guess-indent-offset-verbose) (python-mode))) (insert input) (cond