Skip to content

Commit ef36707

Browse files
committed
EQL number comparison when object can be NIL
When comparison object may be NIL, type-error of = is an unfeature.
1 parent 1caa8a9 commit ef36707

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quicklisp/http.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@
322322

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

0 commit comments

Comments
 (0)