diff options
author | John Ankarström <john@ankarstrom.se> | 2022-01-22 18:21:49 +0100 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-01-22 18:21:49 +0100 |
commit | 5819d9faef5507a87d06c6f01eb8298b0eb5ec82 (patch) | |
tree | 0f801f70933128296d038b7e57a0648dedf092ab | |
parent | 3bae3974854a2b1101332eb145ddea53c439eb31 (diff) | |
download | save-5819d9faef5507a87d06c6f01eb8298b0eb5ec82.tar.gz |
M save.pl
M save.pl~
-rw-r--r-- | save.pl | 3 | ||||
-rw-r--r-- | save.pl~ | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -81,9 +81,12 @@ chain_atom_x(C, A0, A) :- ). commit(Msg) :- + write('creating process'), nl, process_create(path(git), ['commit', '-m', Msg], [process(PID)]), + write(waiting), nl, process_wait(PID, S), + write(waited), nl, commited(S). commited(1) :- @@ -72,8 +72,8 @@ chain_atom(C, A) :- chain_atom_x(C, '', A). chain_atom_x(C, A0, A) :- - ( get(C, delete_head, A1), - atom_concat(A0, A1, A2), + ( get(C, delete_head, A1) + -> atom_concat(A0, A1, A2), atom_concat(A2, ' ', A3), chain_atom_x(C, A3, A) |