bug#77264: split-and-decode-uri-path must respect trailing slash

2025-03-25 Thread Arun Isaac
Hi Guile, Both (split-and-decode-uri-path "foo/bar") and (split-and-decode-uri-path "foo/bar/") return '("foo" "bar"). The trailing slash is lost. The trailing slash traditionally represents a directory path, and is significant. I would expect (split-and-decode-uri-path "foo/bar") to return '("f

bug#76623: [PATCH] filesys.c: Use scm_sendfile to copy files.

2025-03-25 Thread Ludovic Courtès
Rob Browning skribis: > Ludovic Courtès writes: > >> The patch LGTM but I realize there’s no real ‘copy-file’ test. Not your >> fault but would you mind adding one or two tests? > > I went ahead and added a commit to include some simple tests and pushed > that and this to main. Thank you! Lud