mirror of https://codeberg.org/cage/tinmop/
- [gopher] uses type 1 lines as default type for URI.
This commit is contained in:
parent
bd20fe100f
commit
3ebc7bd1bf
|
@ -324,8 +324,8 @@
|
|||
#\/)
|
||||
(and (+ (not #\/))
|
||||
#\/))
|
||||
(and (+ (not #\/))
|
||||
#\/)
|
||||
(? (and (+ (not #\/))
|
||||
#\/))
|
||||
(* (character-ranges (#\u0000 #\uffff))))
|
||||
(:function (lambda (a)
|
||||
(let* ((host-port (third a))
|
||||
|
@ -334,7 +334,9 @@
|
|||
(parse-integer (coerce (third host-port) 'string))
|
||||
70))
|
||||
(type-path (fourth a))
|
||||
(type (coerce (car type-path) 'string))
|
||||
(type (if (car type-path)
|
||||
(coerce (car type-path) 'string)
|
||||
+line-type-dir+))
|
||||
(path (coerce (fifth a) 'string)))
|
||||
(list host port path type)))))
|
||||
|
||||
|
|
Loading…
Reference in New Issue