aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-04-24 05:46:17 +0000
committerGlenn Morris2008-04-24 05:46:17 +0000
commit4e3870f5a322efa02e76a40389ea47c071c739ba (patch)
tree2ab05373476013b1ab7a1529fb2236eaa36b983e
parent051897ff37c7fd0e9b13e84e235e7708010e1eba (diff)
downloademacs-4e3870f5a322efa02e76a40389ea47c071c739ba.tar.gz
emacs-4e3870f5a322efa02e76a40389ea47c071c739ba.zip
(x-file-dialog): Declare as function.
-rw-r--r--lisp/minibuffer.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el
index 53f36896aa3..c1be38243b9 100644
--- a/lisp/minibuffer.el
+++ b/lisp/minibuffer.el
@@ -851,6 +851,10 @@ such as making the current buffer visit no file in the case of
851 :group 'minibuffer 851 :group 'minibuffer
852 :type 'boolean) 852 :type 'boolean)
853 853
854;; Not always defined, but only called if next-read-file-uses-dialog-p says so.
855(declare-function x-file-dialog "xfns.c"
856 (prompt dir &optional default-filename mustmatch only-dir-p))
857
854(defun read-file-name (prompt &optional dir default-filename mustmatch initial predicate) 858(defun read-file-name (prompt &optional dir default-filename mustmatch initial predicate)
855 "Read file name, prompting with PROMPT and completing in directory DIR. 859 "Read file name, prompting with PROMPT and completing in directory DIR.
856Value is not expanded---you must call `expand-file-name' yourself. 860Value is not expanded---you must call `expand-file-name' yourself.