Typo in clause for predicate clauselength/3
Closed this issue · 2 comments
pmoura commented
Typo in clause for predicate clauselength/3
(found by the Logtalk linter):
Lines 86 to 89 in 13d8894
It should be:
clauselength( C, I1, I ) :-
var(C),
!,
I1 is I+1.
vscosta commented
Makes sense, thanks!
…On Wed, Sep 11, 2019 at 5:40 PM Paulo Moura ***@***.***> wrote:
Typo in clause for predicate clauselength/3(found by the Logtalk linter):
https://github.com/vscosta/yap-6.3/blob/13d88949c95ced7a84999a950ee37d4723e8a278/library/clauses.yap#L86-L89
It should be:
clauselength( C, I1, I ) :-
var(C),
!,
I1 is I+1.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#42?email_source=notifications&email_token=ABULRFR23VYVOXDZ5JJ2GG3QJENNZA5CNFSM4IVWJSQKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HKYT6GQ>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABULRFR7UEKIZCUDVQZDSKDQJENNZANCNFSM4IVWJSQA>
.
pmoura commented
Fixed as of version YAP 6.5.0-6629c13c.