GNU bug report logs -
#69606
[PATCH] Ensure default-directory exists when generating diff
Previous Next
Reported by: Philip Kaludercic <philipk <at> posteo.net>
Date: Thu, 7 Mar 2024 09:29:01 UTC
Severity: normal
Tags: patch
Fixed in version 31.1
Done: Michael Albinus <michael.albinus <at> gmx.de>
Bug is archived. No further changes may be made.
Full log
Message #8 received at 69606 <at> debbugs.gnu.org (full text, mbox):
Philip Kaludercic <philipk <at> posteo.net> writes:
Hi Philip,
> diff --git a/lisp/vc/diff.el b/lisp/vc/diff.el
> index a64fbc47853..47566dbc40b 100644
> --- a/lisp/vc/diff.el
> +++ b/lisp/vc/diff.el
> @@ -188,7 +188,9 @@ diff-no-select
> (list (or old-alt old)
> (or new-alt new)))))
> " "))
> - (thisdir default-directory))
> + (thisdir (if (file-exists-p default-directory)
> + default-directory
> + (expand-file-name "~"))))
> (with-current-buffer buf
> (setq buffer-read-only t)
> (buffer-disable-undo (current-buffer))
I would use temporary-file-directory (or even
small-temporary-file-directory). Spamming the home directory with
(temporary) diff files doesn't sound like a good idea.
> Any other ideas? Perhaps we should always set the default directory to
> that
Perhaps, but I don't know whether there are undesired side effects, for
example when using relative file names. OTOH, if default-directory is
remote or unwritable, we might have problems anyway.
Best regards, Michael.
This bug report was last modified 84 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.