Skip to content
Snippets Groups Projects
Commit b1f45ead authored by pfdietz's avatar pfdietz
Browse files

Make format.x.22 case insensitive

parent bc8b09b1
No related branches found
No related tags found
No related merge requests found
...@@ -319,7 +319,7 @@ ...@@ -319,7 +319,7 @@
(loop for i from 0 to 10 (loop for i from 0 to 10
for args = (make-list i) for args = (make-list i)
for s = (apply #'format nil "~#x" #x1b3fe args) for s = (apply #'format nil "~#x" #x1b3fe args)
collect s)) collect (string-upcase s)))
"1B3FE" "1B3FE"
"1B3FE" "1B3FE"
"1B3FE" "1B3FE"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment