Skip to content

Commit

Permalink
Merge pull request #6 from 40ants/fix-compatibility-with-eclector
Browse files Browse the repository at this point in the history
Fixed to work with latest Eclector
  • Loading branch information
svetlyak40wt authored Jul 28, 2024
2 parents 52e8fd3 + a8cb15b commit f456928
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
6 changes: 3 additions & 3 deletions qlfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
("quicklisp" .
(:class qlot/source/dist:source-dist
:initargs (:distribution "http://beta.quicklisp.org/dist/quicklisp.txt" :%version :latest)
:initargs (:distribution "https://beta.quicklisp.org/dist/quicklisp.txt" :%version :latest)
:version "2023-10-21"))
("ultralisp" .
(:class qlot/source/dist:source-dist
:initargs (:distribution "http://dist.ultralisp.org" :%version :latest)
:version "20240311030500"))
:initargs (:distribution "https://dist.ultralisp.org" :%version :latest)
:version "20240728204503"))
14 changes: 14 additions & 0 deletions src/changelog.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@


(defchangelog (:ignore-words ("ASDF"))
(0.5.0 2024-07-28
"* Fixed to work with latest Eclector.
Before this fix, with latest Eclector 40ants-critic didn't compile ending with this error:
```
The generic function
#<STANDARD-GENERIC-FUNCTION ECLECTOR.PARSE-RESULT:MAKE-SKIPPED-INPUT-RESULT (2)>
takes 5 required arguments; was asked to find a method with
specializers (PARSE-CLIENT T T T)
```
because the generic-function signature was changed.
")
(0.4.1 2022-11-10
"* Internal function asdf-system-files was fixed and now retursn unique filenames.
Expand Down
2 changes: 1 addition & 1 deletion src/forms-reader.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
result)

(defmethod eclector.parse-result:make-skipped-input-result
((client parse-client) (stream t) (reason t) (source t))
((client parse-client) (stream t) (reason t) (children t) (source t))
(list :reason reason :source source))


Expand Down

0 comments on commit f456928

Please sign in to comment.