From: Lars Ingebrigtsen Date: Thu, 18 Aug 2022 20:58:39 +0000 (+0200) Subject: Fix ns-win.el (x-file-dialog) declaration X-Git-Tag: emacs-29.0.90~1447^2~51 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=088171e05316c9188186a731f3c7e68c103c4e0a;p=emacs.git Fix ns-win.el (x-file-dialog) declaration * lisp/term/ns-win.el (x-file-dialog): Give the function the same signature here as other definitions. --- diff --git a/lisp/term/ns-win.el b/lisp/term/ns-win.el index e26191b33b4..56aca2bd83e 100644 --- a/lisp/term/ns-win.el +++ b/lisp/term/ns-win.el @@ -439,7 +439,8 @@ Lines are highlighted according to `ns-input-line'." ;;;; File handling. -(defun x-file-dialog (prompt dir default_filename mustmatch only_dir_p) +(defun x-file-dialog (prompt dir &optional default_filename + mustmatch only_dir_p) "SKIP: real doc in xfns.c." (ns-read-file-name prompt dir mustmatch default_filename only_dir_p))