blowfish fixes
This commit is contained in:
parent
a315031128
commit
ec1faec15a
|
@ -1071,7 +1071,9 @@
|
|||
(let ((colornumber 0))
|
||||
(do ((i (- (string-length sy) 1) (- i 1)))
|
||||
((< i 0) (- colornumber 1))
|
||||
(let ((c (string-ref (string sy) i)))
|
||||
(let ((c (string-ref (if (number? sy)
|
||||
(number->string sy)
|
||||
(symbol->string sy)) i)))
|
||||
(let ((n (cond ((or (eq? c #\a)(eq? c #\A))
|
||||
10)
|
||||
((or (eq? c #\b)(eq? c #\B))
|
||||
|
|
Loading…
Reference in New Issue