diff options
author | John Ankarström <john@ankarstrom.se> | 2022-01-22 19:05:27 +0100 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-01-22 19:05:27 +0100 |
commit | 87b88e85360a2ce8cbb1a0ba9acbe70c90058f87 (patch) | |
tree | e0ccdfd46d5aee2478112b0ebe1d706ed10ef46a | |
parent | e4283f8ef2a7f438397f9cdaff396a1cd051ac97 (diff) | |
download | save-87b88e85360a2ce8cbb1a0ba9acbe70c90058f87.tar.gz |
Show subjects in commit browser.
-rw-r--r-- | save.pl | 2 | ||||
-rw-r--r-- | save.pl~ | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -70,7 +70,7 @@ status(C) :- log(C) :- setup_call_cleanup( - process_create(path(git), ['log', '--format=format:%ai'], + process_create(path(git), ['log', '--format=format:%ai %s'], [stdout(pipe(Out))]), read_to_chain(Out, C), close(Out)). @@ -19,7 +19,7 @@ unlink(D) :-> :- pce_global(@save_button, new(button(save, message(@prolog, save), 'RET'))). :- pce_global(@refresh_button, - button(refresh, message(@prolog, refresh))). + new(button(refresh, message(@prolog, refresh)))). main :- pce_main_loop(main). |