mirror of
https://codeberg.org/cage/tinmop/
synced 2024-12-20 23:34:40 +01:00
- fixed 'percent-encoded-p'.
This commit is contained in:
parent
0c2398c184
commit
17bb9f5f15
@ -695,8 +695,9 @@ printed in the box column by column; in the example above the results are:
|
|||||||
(return-from percent-encoded-p nil)))
|
(return-from percent-encoded-p nil)))
|
||||||
((or (percent:reservedp i)
|
((or (percent:reservedp i)
|
||||||
(char= i #\Space)
|
(char= i #\Space)
|
||||||
(not (or (percent:alphap (char-code i))
|
(not (or (percent:alphap (char-code i))
|
||||||
(percent:digitp (char-code i)))))
|
(percent:digitp (char-code i))
|
||||||
|
(percent:unreservedp (char-code i)))))
|
||||||
(return-from percent-encoded-p nil))))
|
(return-from percent-encoded-p nil))))
|
||||||
t)
|
t)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user