X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fdired.c;h=e0639f9f656bf08cf5c4d7f034a1fc6f61068853;hb=ee0975aadeeabcfeb82ba3e92b09f22bafc1e211;hp=ccb70a47e627bc2ef095e48c7ad7c7083b612f13;hpb=426fe636212336bb32a5e6f187c4d623709fa57d;p=chise%2Fxemacs-chise.git diff --git a/src/dired.c b/src/dired.c index ccb70a4..e0639f9 100644 --- a/src/dired.c +++ b/src/dired.c @@ -124,7 +124,8 @@ If FILES-ONLY is the symbol t, then only the "files" in the directory if (!d) report_file_error ("Opening directory", list1 (directory)); - regex_match_object = Qt; + /* #### In Matt's code, this was Qt. Why? */ + regex_match_object = Qnil; regex_emacs_buffer = current_buffer; record_unwind_protect (close_directory_unwind, make_opaque_ptr ((void *)d)); @@ -217,11 +218,6 @@ is not applied to the names of directories. DEFUN ("file-name-all-completions", Ffile_name_all_completions, 2, 2, 0, /* Return a list of all completions of PARTIAL-FILENAME in DIRECTORY. These are all file names in DIRECTORY which begin with PARTIAL-FILENAME. - -File names which end with any member of `completion-ignored-extensions' -are not considered as possible completions for PARTIAL-FILENAME unless -there is no other possible completion. `completion-ignored-extensions' -is not applied to the names of directories. */ (partial_filename, directory)) { @@ -898,8 +894,7 @@ vars_of_dired (void) *Completion ignores filenames ending in any string in this list. This variable does not affect lists of possible completions, but does affect the commands that actually do completions. -It is used by the functions `file-name-completion' and -`file-name-all-completions'. +It is used by the function `file-name-completion'. */ ); Vcompletion_ignored_extensions = Qnil; }