GNU bug report logs -
#12931
a bug in Emacs for Windows (win32fns.c: x-file-dialog)
Previous Next
Reported by: Du Yanning <duyanning <at> gmail.com>
Date: Mon, 19 Nov 2012 13:55:02 UTC
Severity: normal
Tags: moreinfo, unreproducible
Done: Eli Zaretskii <eliz <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
> Date: Mon, 19 Nov 2012 21:53:02 +0800
> From: Du Yanning <duyanning <at> gmail.com>
>
> x-file-dialog uses GetOpenFileName to get a file name.
> If you have a buffer that is not visiting any file, when you call
> save-buffer through a tool-bar button, x-file-dialog gets called.
> However, with GetOpenFileName, you must select an existing file.
>
> We can fix this bug by minimum change.
>
> in x-file-dialog (defined in win32fns.c)
>
> change the line:
>
> file_opened = GetOpenFileName (file_details);
>
> to
>
> if (!NILP (mustmatch))
> {
> file_opened = GetOpenFileName (file_details);
> }
> else
> {
> file_opened = GetSaveFileName (file_details);
> }
Thanks. However, looking at the current code, I see this:
file_details->Flags = (OFN_HIDEREADONLY | OFN_NOCHANGEDIR
| OFN_EXPLORER | OFN_ENABLEHOOK);
if (!NILP (mustmatch))
{
/* Require that the path to the parent directory exists. */
file_details->Flags |= OFN_PATHMUSTEXIST;
/* If we are looking for a file, require that it exists. */
if (NILP (only_dir_p))
file_details->Flags |= OFN_FILEMUSTEXIST;
}
which means that the OFN_FILEMUSTEXIST and OFN_PATHMUSTEXIST flags are
_not_ set if mustmatch is nil. Are you saying that GetOpenFileName
requires the file to exist, even though these flags are not set? This
seems to contradict the MSDN documentation at
http://msdn.microsoft.com/en-us/library/windows/desktop/ms646839%28v=vs.85%29.aspx
Or are you saying that the mustmatch flag is set incorrectly when the
buffer is not visiting a file?
This bug report was last modified 11 years and 194 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.