Skip to content

Commit

Permalink
fixing parameter handling
Browse files Browse the repository at this point in the history
  • Loading branch information
josd committed Apr 3, 2024
1 parent dc2ece6 commit 299200d
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 18,854 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.3
0.0.4
8 changes: 4 additions & 4 deletions lingua.pl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
:- use_module(library(semweb/turtle)).
:- catch(use_module(library(http/http_open)), _, true).

version_info('lingua v0.0.3 (2024-04-03)').
version_info('lingua v0.0.4 (2024-04-03)').

help_info('Usage: lingua <options>* <data>*

Expand Down Expand Up @@ -167,7 +167,7 @@
-> opts(['--help'], _)
; true
),
( nb_getval(genid, Genid)
( catch(nb_getval(genid, Genid), _, fail)
-> true
; uuid(Genid)
),
Expand Down Expand Up @@ -534,7 +534,7 @@
assertz(pfx(Pfx, Uri))
),
told,
( nb_getval(output, Output)
( catch(nb_getval(output, Output), _, fail)
-> tell(Output)
; true
),
Expand Down Expand Up @@ -1933,7 +1933,7 @@
),
nl,
told,
( nb_getval(output, Output)
( catch(nb_getval(output, Output), _, fail)
-> tell(Output)
; true
).
Expand Down
Binary file modified lingua.pvm
Binary file not shown.
Loading

0 comments on commit 299200d

Please sign in to comment.