Skip to content

Commit

Permalink
Fixes conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
t-sin committed Nov 21, 2017
1 parent d032e6d commit 754a8a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/inquisitor.lisp
Expand Up @@ -154,8 +154,8 @@ method modifies `stream`'s file position."
(setf end-of-line (eol-guess-from-vector buffer)))))
(let ((enc-impl (dependent-name encoding))
(eol-impl (dependent-name end-of-line)))
(if (or (eq enc-impl :cannot-treat)
(eq eol-impl :cannot-treat))
(if (and (eq enc-impl :cannot-treat)
(eq eol-impl :cannot-treat))
(values nil (list encoding end-of-line))
(values
(if eol-impl
Expand Down

0 comments on commit 754a8a1

Please sign in to comment.