Skip to content

Commit

Permalink
remove `with-no-warnings' (melpazoid) no warning on circular lists
Browse files Browse the repository at this point in the history
  • Loading branch information
c committed Sep 24, 2024
1 parent 541686d commit e5ca6ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions uniline.el
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit e5ca6ca

Please sign in to comment.