comparison lisp/minibuffer.el @ 94315:755dd4bba830

(x-file-dialog): Declare as function.
author Glenn Morris <rgm@gnu.org>
date Thu, 24 Apr 2008 05:46:17 +0000
parents bc48ced5cf89
children add0e6cf4336
comparison
equal deleted inserted replaced
94314:c3992d04d39a 94315:755dd4bba830
849 such as making the current buffer visit no file in the case of 849 such as making the current buffer visit no file in the case of
850 `set-visited-file-name'." 850 `set-visited-file-name'."
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.
856 Value is not expanded---you must call `expand-file-name' yourself. 860 Value is not expanded---you must call `expand-file-name' yourself.
857 Default name to DEFAULT-FILENAME if user exits the minibuffer with 861 Default name to DEFAULT-FILENAME if user exits the minibuffer with
858 the same non-empty string that was inserted by this function. 862 the same non-empty string that was inserted by this function.