Skip to content

Commit

Permalink
Fixed to work with latest Eclector.
Browse files Browse the repository at this point in the history
Before this fix, with latest Eclector 40ants-critic didn't compile ending with this error:

```
The generic function
takes 5 required arguments; was asked to find a method with
specializers (PARSE-CLIENT T T T)
```

because the generic-function signature was changed.
  • Loading branch information
svetlyak40wt committed Jul 28, 2024
1 parent 52e8fd3 commit 958e2ef
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
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 958e2ef

Please sign in to comment.