From e5ca6caf1c8ee5e3f818b554c12cbf6d9ae021b5 Mon Sep 17 00:00:00 2001 From: c Date: Tue, 24 Sep 2024 09:05:54 +0200 Subject: [PATCH] remove `with-no-warnings' (melpazoid) no warning on circular lists --- uniline.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uniline.el b/uniline.el index 6b582a1..933c4f9 100644 --- a/uniline.el +++ b/uniline.el @@ -878,7 +878,7 @@ Here we selected only the fixed-size ones.") (eval-when-compile (let ((r (reverse uniline--glyphs-tmp))) ;; nconc is used to create a circular list on purpose - (with-no-warnings (nconc r r)))) + (nconc r r))) "List of good looking UNICODE glyphs. Those are: - arrows in 4 directions, @@ -892,7 +892,7 @@ This list is ciurcular in backward order.")) (defconst uniline--glyphs-fw (eval-when-compile ;; nconc is used to create a circular list on purpose - (with-no-warnings (nconc uniline--glyphs-tmp uniline--glyphs-tmp))) + (nconc uniline--glyphs-tmp uniline--glyphs-tmp)) "List of good looking UNICODE glyphs. Those are: - arrows in 4 directions,