# HG changeset patch # User Stefan Monnier # Date 1208813162 0 # Node ID 47134e6f8c9ba141cf0dd1151a788bf30e1f5eb8 # Parent 185747659a29d997db0fd6ad12a07078cca3c167 (Qdefault_directory): New variable. (Fread_file_name): Use it to pass `dir' to the completion functions. diff -r 185747659a29 -r 47134e6f8c9b src/ChangeLog --- a/src/ChangeLog Mon Apr 21 21:18:07 2008 +0000 +++ b/src/ChangeLog Mon Apr 21 21:26:02 2008 +0000 @@ -1,3 +1,8 @@ +2008-04-21 Stefan Monnier + + * fileio.c (Qdefault_directory): New variable. + (Fread_file_name): Use it to pass `dir' to the completion functions. + 2008-04-20 Chong Yidong * xdisp.c (pos_visible_p): Check if iterator stops on a display string. diff -r 185747659a29 -r 47134e6f8c9b src/fileio.c --- a/src/fileio.c Mon Apr 21 21:18:07 2008 +0000 +++ b/src/fileio.c Mon Apr 21 21:26:02 2008 +0000 @@ -6156,6 +6156,8 @@ return Qnil; } +Lisp_Object Qdefault_directory; + DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 6, 0, doc: /* Read file name, prompting with PROMPT and completing in directory DIR. Value is not expanded---you must call `expand-file-name' yourself. @@ -6279,6 +6281,8 @@ } count = SPECPDL_INDEX (); + specbind (Qdefault_directory, + Ffile_name_as_directory (Fexpand_file_name (dir, Qnil))); specbind (Qcompletion_ignore_case, read_file_name_completion_ignore_case ? Qt : Qnil); specbind (intern ("minibuffer-completing-file-name"), Qt); @@ -6307,7 +6311,7 @@ else #endif val = Fcompleting_read (prompt, intern ("read-file-name-internal"), - dir, mustmatch, insdef, + Qnil, mustmatch, insdef, Qfile_name_history, default_filename, Qnil); tem = Fsymbol_value (Qfile_name_history); @@ -6484,6 +6488,8 @@ Qformat_decode = intern ("format-decode"); staticpro (&Qformat_decode); + Qdefault_directory = intern ("default-directory"); + staticpro (&Qdefault_directory); Qformat_annotate_function = intern ("format-annotate-function"); staticpro (&Qformat_annotate_function); Qafter_insert_file_set_coding = intern ("after-insert-file-set-coding");