Skip to content

Commit

Permalink
fixing string:substring
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed Dec 9, 2024
1 parent d6b46cd commit a772ec3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
EYE release

v10.30.16 (2024-12-09) fixing string:substring
v10.30.15 (2024-12-09) adding log:satisfiable built-in
v10.30.14 (2024-12-09) fixing log:conclusion
v10.30.13 (2024-12-07) using lists for compound terms
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.30.15
10.30.16
10 changes: 5 additions & 5 deletions eye.pl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
:- catch(use_module(library(process)), _, true).
:- catch(use_module(library(http/http_open)), _, true).

version_info('EYE v10.30.15 (2024-12-09)').
version_info('EYE v10.30.16 (2024-12-09)').

license_info('MIT License

Expand Down Expand Up @@ -8883,8 +8883,8 @@
( H < 0
-> D = ''
; escape_atom(A, Ae),
escape_atom(D, De),
sub_atom(Ae, G, H, _, De)
sub_atom(Ae, G, H, _, De),
escape_atom(D, De)
)
)
).
Expand All @@ -8904,8 +8904,8 @@
),
( H < 0
-> D = ''
; escape_atom(D, De),
sub_atom(Ae, G, H, _, De)
; sub_atom(Ae, G, H, _, De),
escape_atom(D, De)
)
)
).
Expand Down
Binary file modified eye.zip
Binary file not shown.

0 comments on commit a772ec3

Please sign in to comment.