aboutsummaryrefslogtreecommitdiffstats
path: root/uri.scm
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:31 -0800
committerBryan Newbold <bnewbold@robocracy.org>2017-02-20 00:05:31 -0800
commit5145dd3aa0c02c9fc496d1432fc4410674206e1d (patch)
tree540afc30c51da085f5bd8ec3f4c89f6496e7900d /uri.scm
parent8466d8cfa486fb30d1755c4261b781135083787b (diff)
downloadslib-5145dd3aa0c02c9fc496d1432fc4410674206e1d.tar.gz
slib-5145dd3aa0c02c9fc496d1432fc4410674206e1d.zip
Import Upstream version 3a2upstream/3a2
Diffstat (limited to 'uri.scm')
-rw-r--r--uri.scm16
1 files changed, 8 insertions, 8 deletions
diff --git a/uri.scm b/uri.scm
index 6a02827..9a0db0b 100644
--- a/uri.scm
+++ b/uri.scm
@@ -207,10 +207,10 @@
(if idx-at
(substring authority (+ 1 idx-at) (string-length authority))
authority))
- (idx-: (string-index hostport #\:))
- (host (if idx-: (substring hostport 0 idx-:) hostport))
- (port (and idx-:
- (substring hostport (+ 1 idx-:) (string-length hostport)))))
+ (cdx (string-index hostport #\:))
+ (host (if cdx (substring hostport 0 cdx) hostport))
+ (port (and cdx
+ (substring hostport (+ 1 cdx) (string-length hostport)))))
(if (or userinfo port)
(list userinfo host (or (string->number port) port))
host)))
@@ -269,10 +269,10 @@
uri)))
(if front
(let* ((len (string-length front))
- (idx-: (string-index front #\:))
- (scheme (and idx-: (substring front 0 idx-:)))
- (path (if idx-:
- (substring front (+ 1 idx-:) len)
+ (cdx (string-index front #\:))
+ (scheme (and cdx (substring front 0 cdx)))
+ (path (if cdx
+ (substring front (+ 1 cdx) len)
front)))
(cond ((eqv? 0 (substring? "//" path))
(set! len (string-length path))