Closed pmoura closed 5 years ago
Missing | in the following clause of b_hash_keys_to_list/2 predicate:
|
b_hash_keys_to_list/2
https://github.com/vscosta/yap-6.3/blob/61adeeeb5c8d9c93786528e8d1f4bbd4652839a7/library/bhash.yap#L302-L304
It should be:
b_hash_keys_to_list(hash(Keys, _, _, _, _, _), LKeys) :- Keys =.. [_| LKs], mklistels(LKs, LKeys).
Found by the Logtalk linter.
thanks!
Fixed in e894209836a5dd4a7c54ae0d3e2b8a29e0673345.
Missing
|
in the following clause ofb_hash_keys_to_list/2
predicate:https://github.com/vscosta/yap-6.3/blob/61adeeeb5c8d9c93786528e8d1f4bbd4652839a7/library/bhash.yap#L302-L304
It should be:
Found by the Logtalk linter.