Skip to content

Commit fc5badd

Browse files
committed
Fix EQL on numbers
= compares the mathematical values of its operands EQL compares the representational values of its operand = signals an type-error if passed a non-number EQL signals no type-error if passed a non-number
1 parent 287586a commit fc5badd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

quicklisp/http.lisp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -322,11 +322,11 @@
322322

323323
(defun full-proxy-path (host port path)
324324
(format nil "~:[http~;https~]://~A~:[:~D~;~*~]~A"
325-
(eql port 443)
325+
(= port 443)
326326
host
327327
(or (null port)
328-
(eql port 80)
329-
(eql port 443))
328+
(= port 80)
329+
(= port 443))
330330
port
331331
path))
332332

0 commit comments

Comments
 (0)