Skip to content

Commit

Permalink
simplifying log:ask
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed Apr 10, 2024
1 parent b932216 commit e2adc7a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 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.2.8 (2024-04-11) simplifying log:ask
v10.2.7 (2024-04-10) command line arg --trig is now triggering lingua
v10.2.6 (2024-04-10) fixing log:ask by Jesse Wright
v10.2.5 (2024-04-10) fixing log:ask tu use read/1
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
10.2.7
10.2.8
10 changes: 4 additions & 6 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.2.7 (2024-04-10)').
version_info('EYE v10.2.8 (2024-04-11)').

license_info('MIT License

Expand Down Expand Up @@ -6752,15 +6752,13 @@
:- if(current_prolog_flag(emscripten, true)).
userInput(A, B) :-
await(A, C),
term_string(C, D),
atom_string(E, D),
sub_atom(E, 1, _, 1, B).
term_to_atom(C, D),
sub_atom(D, 1, _, 1, B).
:- else.
userInput(A, B) :-
writeln(A),
read(C),
term_string(C, D),
atom_string(B, D).
term_to_atom(C, B).
:- endif.

'<http://www.w3.org/2000/10/swap/log#ask>'(X, Y) :-
Expand Down
Binary file modified eye.zip
Binary file not shown.

0 comments on commit e2adc7a

Please sign in to comment.