Re-indent.

This commit is contained in:
sperber 2003-01-15 11:00:22 +00:00
parent 608bb395f2
commit 3f398e3ba7
1 changed files with 10 additions and 10 deletions

View File

@ -61,16 +61,16 @@
(colon2 (string-index uhs #\: (or at 0)))) ; Host:port colon, if any. (colon2 (string-index uhs #\: (or at 0)))) ; Host:port colon, if any.
(make-server (if at (make-server (if at
(unescape-uri uhs 0 (or colon1 at)) (unescape-uri uhs 0 (or colon1 at))
(server-user default)) (server-user default))
(if colon1 (if colon1
(unescape-uri uhs (+ colon1 1) at) (unescape-uri uhs (+ colon1 1) at)
(server-password default)) (server-password default))
(unescape-uri uhs (if at (+ at 1) 0) (unescape-uri uhs (if at (+ at 1) 0)
(or colon2 uhs-len)) (or colon2 uhs-len))
(if colon2 (if colon2
(unescape-uri uhs (+ colon2 1) uhs-len) (unescape-uri uhs (+ colon2 1) uhs-len)
(server-port default)))) (server-port default))))
(fatal-syntax-error "URL must begin with //..." path))) (fatal-syntax-error "URL must begin with //..." path)))