diff options
| author | Miles Bader | 2004-08-27 07:00:34 +0000 |
|---|---|---|
| committer | Miles Bader | 2004-08-27 07:00:34 +0000 |
| commit | b71f2b97d343dd5ec39b64b66de86051ee47eb3e (patch) | |
| tree | 85e3d906c7ba13a3fd447ad054a430388386b748 /src/fileio.c | |
| parent | 21b4a4fb21f6254fb37da88b0d5858575f953e22 (diff) | |
| parent | 11d2e01ba3a82c41eec105df81260568f048e726 (diff) | |
| download | emacs-b71f2b97d343dd5ec39b64b66de86051ee47eb3e.tar.gz emacs-b71f2b97d343dd5ec39b64b66de86051ee47eb3e.zip | |
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-32
Merge from emacs--cvs-trunk--0
Patches applied:
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-486
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-487
Tweak permissions
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-488
- miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-489
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-490
Update from CVS: man/fixit.texi (Spelling): Fix typo.
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-491
- miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-494
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-495
Update from CVS: Add missing lisp/mh-e files
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-496
- miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-499
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-500
- miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-513
Update from CVS
Diffstat (limited to 'src/fileio.c')
| -rw-r--r-- | src/fileio.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c index 5f5a3c84d73..66b7d8b83fc 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -6106,7 +6106,10 @@ DIR should be an absolute directory name. It defaults to the value of | |||
| 6106 | 6106 | ||
| 6107 | If this command was invoked with the mouse, use a file dialog box if | 6107 | If this command was invoked with the mouse, use a file dialog box if |
| 6108 | `use-dialog-box' is non-nil, and the window system or X toolkit in use | 6108 | `use-dialog-box' is non-nil, and the window system or X toolkit in use |
| 6109 | provides a file dialog box. */) | 6109 | provides a file dialog box. |
| 6110 | |||
| 6111 | See also `read-file-name-completion-ignore-case' | ||
| 6112 | and `read-file-name-function'. */) | ||
| 6110 | (prompt, dir, default_filename, mustmatch, initial, predicate) | 6113 | (prompt, dir, default_filename, mustmatch, initial, predicate) |
| 6111 | Lisp_Object prompt, dir, default_filename, mustmatch, initial, predicate; | 6114 | Lisp_Object prompt, dir, default_filename, mustmatch, initial, predicate; |
| 6112 | { | 6115 | { |
| @@ -6214,7 +6217,7 @@ provides a file dialog box. */) | |||
| 6214 | 6217 | ||
| 6215 | GCPRO2 (insdef, default_filename); | 6218 | GCPRO2 (insdef, default_filename); |
| 6216 | 6219 | ||
| 6217 | #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK) | 6220 | #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK) || defined(TARGET_API_MAC_CARBON) |
| 6218 | if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event)) | 6221 | if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event)) |
| 6219 | && use_dialog_box | 6222 | && use_dialog_box |
| 6220 | && use_file_dialog | 6223 | && use_file_dialog |