diff options
author | Pjotr Prins | 2022-02-01 00:16:46 -0600 |
---|---|---|
committer | Pjotr Prins | 2022-02-01 00:16:46 -0600 |
commit | dcc46fec594b0439d08a5f4755738dcef181211b (patch) | |
tree | e8847214f7967631dfdf7985f0b5fb005c1f512c | |
parent | 1f39b7f376f76b8585dd9b48ca951ab124a2ad34 (diff) | |
download | gn-gemtext-dcc46fec594b0439d08a5f4755738dcef181211b.tar.gz |
gnbug: fix links
-rwxr-xr-x | gnbug | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -367,7 +367,7 @@ List recent updates. (define (print-issue-to-gemtext issue-number issue) "Print ISSUE with number ISSUE-NUMBER to gemtext." - (format #t "=> ~a" (issue-title issue)) + (format #t "=> ~a ~a" (issue-file issue) (issue-title issue)) (unless (null? (issue-keywords issue)) (format #t " [~a]" (string-join (issue-keywords issue) |