GNU bug report logs -
#34221
[PATCH] Make project-files work with remote files
Previous Next
Full log
Message #35 received at 34221 <at> debbugs.gnu.org (full text, mbox):
Felicián Németh <felician.nemeth <at> gmail.com> writes:
> Hello Dmitry,
Hi Felicián,
> I don't know if it is still necessary, but I updated the patch with
> renaming the defun in question by appending an "s" to its name.
I'm ready to commit it in your name. Reading the patch again, it might
be possible to simplify the code further.
> +(defun project--file-remote-names (local-files)
> + "Return LOCAL-FILES as if they were on the system of `default-directory'."
> + (let ((remote-id (file-remote-p default-directory)))
> + (if (not remote-id)
> + local-files
> + (mapcar (lambda (file)
> + (concat remote-id file))
> + local-files))))
concat accepts nil as argument. So the function could be rewritten:
(defun project--file-remote-names (local-files)
"Return LOCAL-FILES as if they were on the system of `default-directory'."
(let ((remote-id (file-remote-p default-directory)))
(mapcar (lambda (file)
(concat remote-id file))
local-files))))
With this simple body, it might even not needed as function. We would
have then (untested)
(let ((default-directory dir)
(remote-id (file-remote-p dir)
...
(mapcar (lambda (file) (concat remote-id file))
(split-string (shell-command-to-string command) "\0" t))
WDYT? Do you want to prepare a patch along these lines?
> Thanks,
> Felicián
Best regards, Michael.
This bug report was last modified 6 years and 108 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.