Regenerate configure.
[bpt/emacs.git] / src / dired.c
CommitLineData
14d55bce 1/* Lisp functions for making directory listings.
0b5538bd 2 Copyright (C) 1985, 1986, 1993, 1994, 1999, 2000, 2001, 2002, 2003,
114f9c96 3 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
14d55bce
RS
4
5This file is part of GNU Emacs.
6
9ec0b715 7GNU Emacs is free software: you can redistribute it and/or modify
14d55bce 8it under the terms of the GNU General Public License as published by
9ec0b715
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
14d55bce
RS
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
9ec0b715 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
14d55bce
RS
19
20
3964b9a7
RS
21#include <config.h>
22
14d55bce
RS
23#include <stdio.h>
24#include <sys/types.h>
25#include <sys/stat.h>
d7306fe6 26#include <setjmp.h>
14d55bce 27
5b9c0a1d 28#ifdef HAVE_PWD_H
6b61353c 29#include <pwd.h>
5b9c0a1d 30#endif
6b61353c 31#include <grp.h>
6b61353c 32
7cc9f69f 33#include <errno.h>
68c45bf0 34
dfcf069d
AS
35#ifdef HAVE_UNISTD_H
36#include <unistd.h>
37#endif
38
d6717cdb
JB
39/* The d_nameln member of a struct dirent includes the '\0' character
40 on some systems, but not on others. What's worse, you can't tell
41 at compile-time which one it will be, since it really depends on
42 the sort of system providing the filesystem you're reading from,
43 not the system you are running on. Paul Eggert
44 <eggert@bi.twinsun.com> says this occurs when Emacs is running on a
45 SunOS 4.1.2 host, reading a directory that is remote-mounted from a
46 Solaris 2.1 host and is in a native Solaris 2.1 filesystem.
47
48 Since applying strlen to the name always works, we'll just do that. */
49#define NAMLEN(p) strlen (p->d_name)
50
14d55bce
RS
51#ifdef SYSV_SYSTEM_DIR
52
53#include <dirent.h>
54#define DIRENTRY struct dirent
14d55bce 55
128ecc89 56#else /* not SYSV_SYSTEM_DIR */
14d55bce 57
128ecc89
RS
58#ifdef MSDOS
59#include <dirent.h>
60#else
14d55bce 61#include <sys/dir.h>
128ecc89 62#endif
14d55bce 63
851cab13
DL
64#include <sys/stat.h>
65
128ecc89 66#ifndef MSDOS
14d55bce 67#define DIRENTRY struct direct
14d55bce
RS
68
69extern DIR *opendir ();
70extern struct direct *readdir ();
71
128ecc89
RS
72#endif /* not MSDOS */
73#endif /* not SYSV_SYSTEM_DIR */
74
8f7f8c65
EZ
75/* Some versions of Cygwin don't have d_ino in `struct dirent'. */
76#if defined(MSDOS) || defined(__CYGWIN__)
128ecc89
RS
77#define DIRENTRY_NONEMPTY(p) ((p)->d_name[0] != 0)
78#else
79#define DIRENTRY_NONEMPTY(p) ((p)->d_ino)
14d55bce
RS
80#endif
81
14d55bce 82#include "lisp.h"
fa8459a3 83#include "systime.h"
14d55bce
RS
84#include "buffer.h"
85#include "commands.h"
d2f6dae8 86#include "character.h"
bd33479f
KH
87#include "charset.h"
88#include "coding.h"
14d55bce 89#include "regex.h"
8c8a7c58 90#include "blockinput.h"
14d55bce 91
e50c66d3 92/* Returns a search buffer, with a fastmap allocated and ready to go. */
dd4c5104 93extern struct re_pattern_buffer *compile_pattern (Lisp_Object, struct re_registers *, Lisp_Object, int, int);
c7e466e1 94
851cab13 95/* From filemode.c. Can't go in Lisp.h because of `stat'. */
f57e2426 96extern void filemodestring (struct stat *, char *);
851cab13 97
14d55bce
RS
98/* if system does not have symbolic links, it does not have lstat.
99 In that case, use ordinary stat instead. */
100
101#ifndef S_IFLNK
102#define lstat stat
103#endif
104
97e98a56 105extern int completion_ignore_case;
ecd3f8b2 106extern Lisp_Object Qcompletion_ignore_case;
f676868d 107extern Lisp_Object Vcompletion_regexp_list;
65156807 108extern Lisp_Object Vw32_get_true_file_attributes;
ccbcf979 109
14d55bce 110Lisp_Object Vcompletion_ignored_extensions;
32f4334d 111Lisp_Object Qdirectory_files;
4424b255 112Lisp_Object Qdirectory_files_and_attributes;
32f4334d
RS
113Lisp_Object Qfile_name_completion;
114Lisp_Object Qfile_name_all_completions;
434e6714 115Lisp_Object Qfile_attributes;
4424b255 116Lisp_Object Qfile_attributes_lessp;
b3f04ced 117
f57e2426 118static int scmp (unsigned char *, unsigned char *, int);
14d55bce 119\f
65156807
EZ
120#ifdef WINDOWSNT
121Lisp_Object
122directory_files_internal_w32_unwind (Lisp_Object arg)
123{
124 Vw32_get_true_file_attributes = arg;
125 return Qnil;
126}
127#endif
2488aba5
AI
128
129Lisp_Object
971de7fb 130directory_files_internal_unwind (Lisp_Object dh)
2488aba5 131{
9d291bdf 132 DIR *d = (DIR *) XSAVE_VALUE (dh)->pointer;
d15b573e 133 BLOCK_INPUT;
2488aba5 134 closedir (d);
d15b573e 135 UNBLOCK_INPUT;
2488aba5
AI
136 return Qnil;
137}
138
177c0ea7 139/* Function shared by Fdirectory_files and Fdirectory_files_and_attributes.
4424b255 140 When ATTRS is zero, return a list of directory filenames; when
6b61353c
KH
141 non-zero, return a list of directory filenames and their attributes.
142 In the latter case, ID_FORMAT is passed to Ffile_attributes. */
f69f9da1 143
4424b255 144Lisp_Object
971de7fb 145directory_files_internal (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort, int attrs, Lisp_Object id_format)
14d55bce
RS
146{
147 DIR *d;
388ac098
GM
148 int directory_nbytes;
149 Lisp_Object list, dirfilename, encoded_directory;
6bbd7a29 150 struct re_pattern_buffer *bufp = NULL;
96d64004 151 int needsep = 0;
aed13378 152 int count = SPECPDL_INDEX ();
388ac098 153 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
8e42f043 154 DIRENTRY *dp;
65156807
EZ
155#ifdef WINDOWSNT
156 Lisp_Object w32_save = Qnil;
157#endif
32f4334d 158
96d64004 159 /* Because of file name handlers, these functions might call
6155fae1 160 Ffuncall, and cause a GC. */
388ac098
GM
161 list = encoded_directory = dirfilename = Qnil;
162 GCPRO5 (match, directory, list, dirfilename, encoded_directory);
96d64004 163 dirfilename = Fdirectory_file_name (directory);
6155fae1 164
265a9e55 165 if (!NILP (match))
14d55bce 166 {
b7826503 167 CHECK_STRING (match);
ebb9e16f
JB
168
169 /* MATCH might be a flawed regular expression. Rather than
8e6208c5 170 catching and signaling our own errors, we just call
ebb9e16f 171 compile_pattern to do the work for us. */
c872c6b2
RS
172 /* Pass 1 for the MULTIBYTE arg
173 because we do make multibyte strings if the contents warrant. */
1a9fbabe
EZ
174# ifdef WINDOWSNT
175 /* Windows users want case-insensitive wildcards. */
176 bufp = compile_pattern (match, 0,
177 buffer_defaults.case_canon_table, 0, 1);
178# else /* !WINDOWSNT */
3e937712 179 bufp = compile_pattern (match, 0, Qnil, 0, 1);
1a9fbabe 180# endif /* !WINDOWSNT */
14d55bce
RS
181 }
182
b3edfc9b 183 /* Note: ENCODE_FILE and DECODE_FILE can GC because they can run
388ac098
GM
184 run_pre_post_conversion_on_str which calls Lisp directly and
185 indirectly. */
6c8b4f07
SM
186 if (STRING_MULTIBYTE (dirfilename))
187 dirfilename = ENCODE_FILE (dirfilename);
188 encoded_directory = (STRING_MULTIBYTE (directory)
189 ? ENCODE_FILE (directory) : directory);
24c2a54f 190
e50c66d3 191 /* Now *bufp is the compiled form of MATCH; don't call anything
6155fae1
JB
192 which might compile a new regexp until we're done with the loop! */
193
d15b573e 194 BLOCK_INPUT;
d5db4077 195 d = opendir (SDATA (dirfilename));
d15b573e 196 UNBLOCK_INPUT;
388ac098 197 if (d == NULL)
23bd240f 198 report_file_error ("Opening directory", Fcons (directory, Qnil));
14d55bce 199
2488aba5
AI
200 /* Unfortunately, we can now invoke expand-file-name and
201 file-attributes on filenames, both of which can throw, so we must
202 do a proper unwind-protect. */
203 record_unwind_protect (directory_files_internal_unwind,
9d291bdf 204 make_save_value (d, 0));
2488aba5 205
65156807
EZ
206#ifdef WINDOWSNT
207 if (attrs)
208 {
209 extern Lisp_Object Qlocal;
210 extern int is_slow_fs (const char *);
211
212 /* Do this only once to avoid doing it (in w32.c:stat) for each
213 file in the directory, when we call Ffile_attributes below. */
214 record_unwind_protect (directory_files_internal_w32_unwind,
215 Vw32_get_true_file_attributes);
216 w32_save = Vw32_get_true_file_attributes;
217 if (EQ (Vw32_get_true_file_attributes, Qlocal))
218 {
65156807
EZ
219 /* w32.c:stat will notice these bindings and avoid calling
220 GetDriveType for each file. */
b6046155 221 if (is_slow_fs (SDATA (dirfilename)))
65156807
EZ
222 Vw32_get_true_file_attributes = Qnil;
223 else
224 Vw32_get_true_file_attributes = Qt;
225 }
226 }
227#endif
228
d5db4077 229 directory_nbytes = SBYTES (directory);
c81a9bdc 230 re_match_object = Qt;
14d55bce 231
96d64004 232 /* Decide whether we need to add a directory separator. */
388ac098 233 if (directory_nbytes == 0
d5db4077 234 || !IS_ANY_SEP (SREF (directory, directory_nbytes - 1)))
96d64004 235 needsep = 1;
96d64004 236
8e42f043 237 /* Loop reading blocks until EOF or error. */
f69f9da1 238 for (;;)
14d55bce 239 {
f69f9da1
GM
240 errno = 0;
241 dp = readdir (d);
242
9d291bdf 243 if (dp == NULL && (0
f69f9da1 244#ifdef EAGAIN
9d291bdf
SM
245 || errno == EAGAIN
246#endif
247#ifdef EINTR
248 || errno == EINTR
f69f9da1 249#endif
9d291bdf
SM
250 ))
251 { QUIT; continue; }
177c0ea7 252
f69f9da1
GM
253 if (dp == NULL)
254 break;
255
128ecc89 256 if (DIRENTRY_NONEMPTY (dp))
14d55bce 257 {
e23f810c 258 int len;
2488aba5 259 int wanted = 0;
388ac098
GM
260 Lisp_Object name, finalname;
261 struct gcpro gcpro1, gcpro2;
e23f810c
KH
262
263 len = NAMLEN (dp);
9ad4f3e5 264 name = finalname = make_unibyte_string (dp->d_name, len);
388ac098 265 GCPRO2 (finalname, name);
177c0ea7 266
6c8b4f07 267 /* Note: DECODE_FILE can GC; it should protect its argument,
388ac098
GM
268 though. */
269 name = DECODE_FILE (name);
d5db4077 270 len = SBYTES (name);
e23f810c 271
2488aba5
AI
272 /* Now that we have unwind_protect in place, we might as well
273 allow matching to be interrupted. */
274 immediate_quit = 1;
275 QUIT;
276
265a9e55 277 if (NILP (match)
d5db4077 278 || (0 <= re_search (bufp, SDATA (name), len, 0, len, 0)))
388ac098 279 wanted = 1;
2488aba5
AI
280
281 immediate_quit = 0;
282
283 if (wanted)
14d55bce 284 {
265a9e55 285 if (!NILP (full))
14d55bce 286 {
e23f810c 287 Lisp_Object fullname;
388ac098
GM
288 int nbytes = len + directory_nbytes + needsep;
289 int nchars;
5617588f 290
388ac098 291 fullname = make_uninit_multibyte_string (nbytes, nbytes);
72af86bd
AS
292 memcpy (SDATA (fullname), SDATA (directory),
293 directory_nbytes);
177c0ea7 294
5617588f 295 if (needsep)
d549c5db 296 SSET (fullname, directory_nbytes, DIRECTORY_SEP);
177c0ea7 297
72af86bd
AS
298 memcpy (SDATA (fullname) + directory_nbytes + needsep,
299 SDATA (name), len);
177c0ea7 300
d5db4077 301 nchars = chars_in_text (SDATA (fullname), nbytes);
388ac098
GM
302
303 /* Some bug somewhere. */
304 if (nchars > nbytes)
305 abort ();
177c0ea7 306
437fcd47 307 STRING_SET_CHARS (fullname, nchars);
388ac098 308 if (nchars == nbytes)
d5db4077 309 STRING_SET_UNIBYTE (fullname);
177c0ea7 310
4424b255
GV
311 finalname = fullname;
312 }
aab9c564
KH
313 else
314 finalname = name;
4424b255
GV
315
316 if (attrs)
317 {
318 /* Construct an expanded filename for the directory entry.
319 Use the decoded names for input to Ffile_attributes. */
388ac098
GM
320 Lisp_Object decoded_fullname, fileattrs;
321 struct gcpro gcpro1, gcpro2;
322
323 decoded_fullname = fileattrs = Qnil;
324 GCPRO2 (decoded_fullname, fileattrs);
4424b255 325
388ac098 326 /* Both Fexpand_file_name and Ffile_attributes can GC. */
4424b255 327 decoded_fullname = Fexpand_file_name (name, directory);
6b61353c 328 fileattrs = Ffile_attributes (decoded_fullname, id_format);
4424b255
GV
329
330 list = Fcons (Fcons (finalname, fileattrs), list);
388ac098 331 UNGCPRO;
4424b255
GV
332 }
333 else
388ac098 334 list = Fcons (finalname, list);
14d55bce 335 }
388ac098
GM
336
337 UNGCPRO;
14d55bce
RS
338 }
339 }
2488aba5 340
d15b573e 341 BLOCK_INPUT;
14d55bce 342 closedir (d);
d15b573e 343 UNBLOCK_INPUT;
65156807
EZ
344#ifdef WINDOWSNT
345 if (attrs)
346 Vw32_get_true_file_attributes = w32_save;
347#endif
2488aba5
AI
348
349 /* Discard the unwind protect. */
350 specpdl_ptr = specpdl + count;
351
388ac098
GM
352 if (NILP (nosort))
353 list = Fsort (Fnreverse (list),
354 attrs ? Qfile_attributes_lessp : Qstring_lessp);
177c0ea7 355
388ac098 356 RETURN_UNGCPRO (list);
14d55bce 357}
4424b255
GV
358
359
360DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0,
335c5470
PJ
361 doc: /* Return a list of names of files in DIRECTORY.
362There are three optional arguments:
363If FULL is non-nil, return absolute file names. Otherwise return names
364 that are relative to the specified directory.
365If MATCH is non-nil, mention only file names that match the regexp MATCH.
366If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
a489517b
JB
367 Otherwise, the list returned is sorted with `string-lessp'.
368 NOSORT is useful if you plan to sort the result yourself. */)
5842a27b 369 (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort)
4424b255
GV
370{
371 Lisp_Object handler;
4ece81a6 372 directory = Fexpand_file_name (directory, Qnil);
4424b255
GV
373
374 /* If the file name has special constructs in it,
375 call the corresponding file handler. */
376 handler = Ffind_file_name_handler (directory, Qdirectory_files);
377 if (!NILP (handler))
6b61353c
KH
378 return call5 (handler, Qdirectory_files, directory,
379 full, match, nosort);
4424b255 380
6b61353c 381 return directory_files_internal (directory, full, match, nosort, 0, Qnil);
4424b255
GV
382}
383
335c5470 384DEFUN ("directory-files-and-attributes", Fdirectory_files_and_attributes,
6b61353c 385 Sdirectory_files_and_attributes, 1, 5, 0,
335c5470 386 doc: /* Return a list of names of files and their attributes in DIRECTORY.
6b61353c 387There are four optional arguments:
335c5470
PJ
388If FULL is non-nil, return absolute file names. Otherwise return names
389 that are relative to the specified directory.
390If MATCH is non-nil, mention only file names that match the regexp MATCH.
391If NOSORT is non-nil, the list is not sorted--its order is unpredictable.
6b61353c
KH
392 NOSORT is useful if you plan to sort the result yourself.
393ID-FORMAT specifies the preferred format of attributes uid and gid, see
6c5665e9
EZ
394`file-attributes' for further documentation.
395On MS-Windows, performance depends on `w32-get-true-file-attributes',
396which see. */)
5842a27b 397 (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort, Lisp_Object id_format)
4424b255
GV
398{
399 Lisp_Object handler;
4ece81a6 400 directory = Fexpand_file_name (directory, Qnil);
4424b255
GV
401
402 /* If the file name has special constructs in it,
403 call the corresponding file handler. */
404 handler = Ffind_file_name_handler (directory, Qdirectory_files_and_attributes);
405 if (!NILP (handler))
6b61353c
KH
406 return call6 (handler, Qdirectory_files_and_attributes,
407 directory, full, match, nosort, id_format);
4424b255 408
6b61353c 409 return directory_files_internal (directory, full, match, nosort, 1, id_format);
4424b255
GV
410}
411
14d55bce 412\f
971de7fb 413Lisp_Object file_name_completion (Lisp_Object file, Lisp_Object dirname, int all_flag, int ver_flag, Lisp_Object predicate);
14d55bce
RS
414
415DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion,
abfb1932 416 2, 3, 0,
335c5470
PJ
417 doc: /* Complete file name FILE in directory DIRECTORY.
418Returns the longest string
419common to all file names in DIRECTORY that start with FILE.
420If there is only one and FILE matches it exactly, returns t.
2f60660a 421Returns nil if DIRECTORY contains no name starting with FILE.
335c5470 422
b6ce54d6
RS
423If PREDICATE is non-nil, call PREDICATE with each possible
424completion (in absolute form) and ignore it if PREDICATE returns nil.
425
335c5470
PJ
426This function ignores some of the possible completions as
427determined by the variable `completion-ignored-extensions', which see. */)
5842a27b 428 (Lisp_Object file, Lisp_Object directory, Lisp_Object predicate)
14d55bce 429{
32f4334d 430 Lisp_Object handler;
32f4334d 431
8436e231 432 /* If the directory name has special constructs in it,
32f4334d 433 call the corresponding file handler. */
23bd240f 434 handler = Ffind_file_name_handler (directory, Qfile_name_completion);
32f4334d 435 if (!NILP (handler))
abfb1932 436 return call4 (handler, Qfile_name_completion, file, directory, predicate);
32f4334d 437
8436e231
RS
438 /* If the file name has special constructs in it,
439 call the corresponding file handler. */
440 handler = Ffind_file_name_handler (file, Qfile_name_completion);
441 if (!NILP (handler))
abfb1932 442 return call4 (handler, Qfile_name_completion, file, directory, predicate);
8436e231 443
abfb1932 444 return file_name_completion (file, directory, 0, 0, predicate);
14d55bce
RS
445}
446
447DEFUN ("file-name-all-completions", Ffile_name_all_completions,
335c5470
PJ
448 Sfile_name_all_completions, 2, 2, 0,
449 doc: /* Return a list of all completions of file name FILE in directory DIRECTORY.
450These are all file names in directory DIRECTORY which begin with FILE. */)
5842a27b 451 (Lisp_Object file, Lisp_Object directory)
14d55bce 452{
32f4334d
RS
453 Lisp_Object handler;
454
8436e231 455 /* If the directory name has special constructs in it,
32f4334d 456 call the corresponding file handler. */
23bd240f 457 handler = Ffind_file_name_handler (directory, Qfile_name_all_completions);
32f4334d 458 if (!NILP (handler))
23bd240f 459 return call3 (handler, Qfile_name_all_completions, file, directory);
32f4334d 460
8436e231
RS
461 /* If the file name has special constructs in it,
462 call the corresponding file handler. */
463 handler = Ffind_file_name_handler (file, Qfile_name_all_completions);
464 if (!NILP (handler))
23bd240f 465 return call3 (handler, Qfile_name_all_completions, file, directory);
8436e231 466
abfb1932 467 return file_name_completion (file, directory, 1, 0, Qnil);
14d55bce
RS
468}
469
438105ed 470static int file_name_completion_stat (Lisp_Object dirname, DIRENTRY *dp, struct stat *st_addr);
01bb4018 471Lisp_Object Qdefault_directory;
dfcf069d 472
14d55bce 473Lisp_Object
971de7fb 474file_name_completion (Lisp_Object file, Lisp_Object dirname, int all_flag, int ver_flag, Lisp_Object predicate)
14d55bce
RS
475{
476 DIR *d;
3271a8f5 477 int bestmatchsize = 0;
14d55bce 478 int matchcount = 0;
abfb1932
RS
479 /* If ALL_FLAG is 1, BESTMATCH is the list of all matches, decoded.
480 If ALL_FLAG is 0, BESTMATCH is either nil
481 or the best match so far, not decoded. */
14d55bce 482 Lisp_Object bestmatch, tem, elt, name;
24c2a54f
RS
483 Lisp_Object encoded_file;
484 Lisp_Object encoded_dir;
14d55bce
RS
485 struct stat st;
486 int directoryp;
3271a8f5
SM
487 /* If includeall is zero, exclude files in completion-ignored-extensions as
488 well as "." and "..". Until shown otherwise, assume we can't exclude
489 anything. */
490 int includeall = 1;
aed13378 491 int count = SPECPDL_INDEX ();
24c2a54f 492 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
3fcc88cc 493
6bbd7a29
GM
494 elt = Qnil;
495
b7826503 496 CHECK_STRING (file);
14d55bce 497
128ecc89
RS
498#ifdef FILE_SYSTEM_CASE
499 file = FILE_SYSTEM_CASE (file);
500#endif
14d55bce 501 bestmatch = Qnil;
24c2a54f
RS
502 encoded_file = encoded_dir = Qnil;
503 GCPRO5 (file, dirname, bestmatch, encoded_file, encoded_dir);
3fcc88cc 504 dirname = Fexpand_file_name (dirname, Qnil);
01bb4018 505 specbind (Qdefault_directory, dirname);
14d55bce 506
24c2a54f
RS
507 /* Do completion on the encoded file name
508 because the other names in the directory are (we presume)
509 encoded likewise. We decode the completed string at the end. */
2a54a229
SM
510 /* Actually, this is not quite true any more: we do most of the completion
511 work with decoded file names, but we still do some filtering based
512 on the encoded file name. */
6c8b4f07 513 encoded_file = STRING_MULTIBYTE (file) ? ENCODE_FILE (file) : file;
24c2a54f
RS
514
515 encoded_dir = ENCODE_FILE (dirname);
516
3271a8f5
SM
517 BLOCK_INPUT;
518 d = opendir (SDATA (Fdirectory_file_name (encoded_dir)));
519 UNBLOCK_INPUT;
520 if (!d)
521 report_file_error ("Opening directory", Fcons (dirname, Qnil));
14d55bce 522
3271a8f5
SM
523 record_unwind_protect (directory_files_internal_unwind,
524 make_save_value (d, 0));
14d55bce 525
3271a8f5
SM
526 /* Loop reading blocks */
527 /* (att3b compiler bug requires do a null comparison this way) */
528 while (1)
14d55bce 529 {
3271a8f5
SM
530 DIRENTRY *dp;
531 int len;
532 int canexclude = 0;
14d55bce 533
3271a8f5
SM
534 errno = 0;
535 dp = readdir (d);
536 if (dp == NULL && (0
9d291bdf 537# ifdef EAGAIN
3271a8f5 538 || errno == EAGAIN
9d291bdf
SM
539# endif
540# ifdef EINTR
3271a8f5 541 || errno == EINTR
9d291bdf 542# endif
3271a8f5
SM
543 ))
544 { QUIT; continue; }
9d291bdf 545
3271a8f5 546 if (!dp) break;
14d55bce 547
3271a8f5 548 len = NAMLEN (dp);
14d55bce 549
3271a8f5
SM
550 QUIT;
551 if (! DIRENTRY_NONEMPTY (dp)
552 || len < SCHARS (encoded_file)
553 || 0 <= scmp (dp->d_name, SDATA (encoded_file),
554 SCHARS (encoded_file)))
555 continue;
14d55bce 556
3271a8f5
SM
557 if (file_name_completion_stat (encoded_dir, dp, &st) < 0)
558 continue;
14d55bce 559
3271a8f5
SM
560 directoryp = ((st.st_mode & S_IFMT) == S_IFDIR);
561 tem = Qnil;
562 /* If all_flag is set, always include all.
563 It would not actually be helpful to the user to ignore any possible
564 completions when making a list of them. */
565 if (!all_flag)
566 {
567 int skip;
2cd298e2 568
7519c40d 569#if 0 /* FIXME: The `scmp' call compares an encoded and a decoded string. */
2cd298e2
SM
570 /* If this entry matches the current bestmatch, the only
571 thing it can do is increase matchcount, so don't bother
572 investigating it any further. */
573 if (!completion_ignore_case
574 /* The return result depends on whether it's the sole match. */
575 && matchcount > 1
576 && !includeall /* This match may allow includeall to 0. */
577 && len >= bestmatchsize
578 && 0 > scmp (dp->d_name, SDATA (bestmatch), bestmatchsize))
579 continue;
7519c40d 580#endif
2cd298e2 581
3271a8f5 582 if (directoryp)
ad456ad4
RS
583 {
584#ifndef TRIVIAL_DIRECTORY_ENTRY
585#define TRIVIAL_DIRECTORY_ENTRY(n) (!strcmp (n, ".") || !strcmp (n, ".."))
586#endif
abfb1932
RS
587 /* "." and ".." are never interesting as completions, and are
588 actually in the way in a directory with only one file. */
3271a8f5
SM
589 if (TRIVIAL_DIRECTORY_ENTRY (dp->d_name))
590 canexclude = 1;
591 else if (len > SCHARS (encoded_file))
d013f29b
EZ
592 /* Ignore directories if they match an element of
593 completion-ignored-extensions which ends in a slash. */
594 for (tem = Vcompletion_ignored_extensions;
595 CONSP (tem); tem = XCDR (tem))
596 {
597 int elt_len;
2a54a229 598 unsigned char *p1;
d013f29b
EZ
599
600 elt = XCAR (tem);
601 if (!STRINGP (elt))
602 continue;
a74aaa9d
EZ
603 /* Need to encode ELT, since scmp compares unibyte
604 strings only. */
605 elt = ENCODE_FILE (elt);
d5db4077 606 elt_len = SCHARS (elt) - 1; /* -1 for trailing / */
7a8d465a 607 if (elt_len <= 0)
d013f29b 608 continue;
d5db4077 609 p1 = SDATA (elt);
d013f29b
EZ
610 if (p1[elt_len] != '/')
611 continue;
612 skip = len - elt_len;
613 if (skip < 0)
614 continue;
615
616 if (0 <= scmp (dp->d_name + skip, p1, elt_len))
617 continue;
618 break;
619 }
ad456ad4
RS
620 }
621 else
3271a8f5 622 {
14d55bce
RS
623 /* Compare extensions-to-be-ignored against end of this file name */
624 /* if name is not an exact match against specified string */
3271a8f5 625 if (len > SCHARS (encoded_file))
14d55bce
RS
626 /* and exit this for loop if a match is found */
627 for (tem = Vcompletion_ignored_extensions;
70949dac 628 CONSP (tem); tem = XCDR (tem))
14d55bce 629 {
70949dac 630 elt = XCAR (tem);
88cf1852 631 if (!STRINGP (elt)) continue;
a74aaa9d
EZ
632 /* Need to encode ELT, since scmp compares unibyte
633 strings only. */
634 elt = ENCODE_FILE (elt);
d5db4077 635 skip = len - SCHARS (elt);
14d55bce
RS
636 if (skip < 0) continue;
637
638 if (0 <= scmp (dp->d_name + skip,
d5db4077
KR
639 SDATA (elt),
640 SCHARS (elt)))
14d55bce
RS
641 continue;
642 break;
643 }
644 }
645
f676868d
KH
646 /* If an ignored-extensions match was found,
647 don't process this name as a completion. */
3271a8f5
SM
648 if (CONSP (tem))
649 canexclude = 1;
f676868d 650
3271a8f5
SM
651 if (!includeall && canexclude)
652 /* We're not including all files and this file can be excluded. */
653 continue;
9c691c00 654
3271a8f5
SM
655 if (includeall && !canexclude)
656 { /* If we have one non-excludable file, we want to exclude the
657 excudable files. */
658 includeall = 0;
659 /* Throw away any previous excludable match found. */
660 bestmatch = Qnil;
661 bestmatchsize = 0;
662 matchcount = 0;
f676868d 663 }
3271a8f5
SM
664 }
665 /* FIXME: If we move this `decode' earlier we can eliminate
666 the repeated ENCODE_FILE on Vcompletion_ignored_extensions. */
667 name = make_unibyte_string (dp->d_name, len);
668 name = DECODE_FILE (name);
669
670 {
671 Lisp_Object regexps;
672 Lisp_Object zero;
673 XSETFASTINT (zero, 0);
674
675 /* Ignore this element if it fails to match all the regexps. */
cc524e3b
CY
676 if (completion_ignore_case)
677 {
678 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
679 regexps = XCDR (regexps))
680 if (fast_string_match_ignore_case (XCAR (regexps), name) < 0)
681 break;
682 }
683 else
684 {
685 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
686 regexps = XCDR (regexps))
687 if (fast_string_match (XCAR (regexps), name) < 0)
688 break;
689 }
690
3271a8f5
SM
691 if (CONSP (regexps))
692 continue;
693 }
694
695 /* This is a possible completion */
696 if (directoryp)
697 /* This completion is a directory; make it end with '/'. */
698 name = Ffile_name_as_directory (name);
699
700 /* Test the predicate, if any. */
701 if (!NILP (predicate))
702 {
703 Lisp_Object val;
704 struct gcpro gcpro1;
14d55bce 705
3271a8f5
SM
706 GCPRO1 (name);
707 val = call1 (predicate, name);
708 UNGCPRO;
c4c52bb7 709
3271a8f5
SM
710 if (NILP (val))
711 continue;
712 }
abfb1932 713
3271a8f5 714 /* Suitably record this match. */
14d55bce 715
3271a8f5 716 matchcount++;
f676868d 717
3271a8f5
SM
718 if (all_flag)
719 bestmatch = Fcons (name, bestmatch);
720 else if (NILP (bestmatch))
721 {
722 bestmatch = name;
723 bestmatchsize = SCHARS (name);
724 }
725 else
726 {
727 Lisp_Object zero = make_number (0);
728 /* FIXME: This is a copy of the code in Ftry_completion. */
729 int compare = min (bestmatchsize, SCHARS (name));
730 Lisp_Object tem
731 = Fcompare_strings (bestmatch, zero,
732 make_number (compare),
733 name, zero,
734 make_number (compare),
735 completion_ignore_case ? Qt : Qnil);
736 int matchsize
737 = (EQ (tem, Qt) ? compare
738 : XINT (tem) < 0 ? - XINT (tem) - 1
739 : XINT (tem) - 1);
740
741 if (completion_ignore_case)
f676868d 742 {
3271a8f5
SM
743 /* If this is an exact match except for case,
744 use it as the best match rather than one that is not
745 an exact match. This way, we get the case pattern
746 of the actual match. */
747 /* This tests that the current file is an exact match
748 but BESTMATCH is not (it is too long). */
749 if ((matchsize == SCHARS (name)
2cd298e2 750 && matchsize + !!directoryp < SCHARS (bestmatch))
3271a8f5
SM
751 ||
752 /* If there is no exact match ignoring case,
753 prefer a match that does not change the case
754 of the input. */
755 /* If there is more than one exact match aside from
756 case, and one of them is exact including case,
757 prefer that one. */
758 /* This == checks that, of current file and BESTMATCH,
759 either both or neither are exact. */
760 (((matchsize == SCHARS (name))
761 ==
762 (matchsize + !!directoryp == SCHARS (bestmatch)))
763 && (tem = Fcompare_strings (name, zero,
764 make_number (SCHARS (file)),
765 file, zero,
766 Qnil,
767 Qnil),
768 EQ (Qt, tem))
769 && (tem = Fcompare_strings (bestmatch, zero,
770 make_number (SCHARS (file)),
771 file, zero,
772 Qnil,
773 Qnil),
774 ! EQ (Qt, tem))))
775 bestmatch = name;
14d55bce 776 }
3271a8f5 777 bestmatchsize = matchsize;
2cd298e2
SM
778
779 /* If the best completion so far is reduced to the string
780 we're trying to complete, then we already know there's no
781 other completion, so there's no point looking any further. */
782 if (matchsize <= SCHARS (file)
783 && !includeall /* A future match may allow includeall to 0. */
784 /* If completion-ignore-case is non-nil, don't
785 short-circuit because we want to find the best
786 possible match *including* case differences. */
787 && (!completion_ignore_case || matchsize == 0)
788 /* The return value depends on whether it's the sole match. */
789 && matchcount > 1)
790 break;
791
14d55bce 792 }
14d55bce
RS
793 }
794
3fcc88cc 795 UNGCPRO;
3271a8f5 796 /* This closes the directory. */
c3a3229c 797 bestmatch = unbind_to (count, bestmatch);
14d55bce 798
265a9e55 799 if (all_flag || NILP (bestmatch))
2a54a229 800 return bestmatch;
928b5acc
SM
801 /* Return t if the supplied string is an exact match (counting case);
802 it does not require any change to be made. */
803 if (matchcount == 1 && !NILP (Fequal (bestmatch, file)))
14d55bce 804 return Qt;
24c2a54f
RS
805 bestmatch = Fsubstring (bestmatch, make_number (0),
806 make_number (bestmatchsize));
24c2a54f 807 return bestmatch;
14d55bce
RS
808}
809
b3f04ced
RS
810/* Compare exactly LEN chars of strings at S1 and S2,
811 ignoring case if appropriate.
812 Return -1 if strings match,
813 else number of chars that match at the beginning. */
814
815static int
971de7fb 816scmp (register unsigned char *s1, register unsigned char *s2, int len)
b3f04ced
RS
817{
818 register int l = len;
819
820 if (completion_ignore_case)
821 {
822 while (l && DOWNCASE (*s1++) == DOWNCASE (*s2++))
823 l--;
824 }
825 else
826 {
827 while (l && *s1++ == *s2++)
828 l--;
829 }
830 if (l == 0)
831 return -1;
832 else
833 return len - l;
834}
835
dfcf069d 836static int
438105ed 837file_name_completion_stat (Lisp_Object dirname, DIRENTRY *dp, struct stat *st_addr)
14d55bce
RS
838{
839 int len = NAMLEN (dp);
d5db4077 840 int pos = SCHARS (dirname);
7e3cf34f 841 int value;
14d55bce
RS
842 char *fullname = (char *) alloca (len + pos + 2);
843
04924ee3 844#ifdef MSDOS
04924ee3
RS
845 /* Some fields of struct stat are *very* expensive to compute on MS-DOS,
846 but aren't required here. Avoid computing the following fields:
847 st_inode, st_size and st_nlink for directories, and the execute bits
848 in st_mode for non-directory files with non-standard extensions. */
849
850 unsigned short save_djstat_flags = _djstat_flags;
851
852 _djstat_flags = _STAT_INODE | _STAT_EXEC_MAGIC | _STAT_DIRSIZE;
04924ee3
RS
853#endif /* MSDOS */
854
72af86bd 855 memcpy (fullname, SDATA (dirname), pos);
0b39d75d
RS
856 if (!IS_DIRECTORY_SEP (fullname[pos - 1]))
857 fullname[pos++] = DIRECTORY_SEP;
14d55bce 858
72af86bd 859 memcpy (fullname + pos, dp->d_name, len);
14d55bce
RS
860 fullname[pos + len] = 0;
861
a889bd0e 862#ifdef S_IFLNK
7e3cf34f
RS
863 /* We want to return success if a link points to a nonexistent file,
864 but we want to return the status for what the link points to,
865 in case it is a directory. */
866 value = lstat (fullname, st_addr);
867 stat (fullname, st_addr);
868 return value;
a889bd0e 869#else
04924ee3
RS
870 value = stat (fullname, st_addr);
871#ifdef MSDOS
04924ee3 872 _djstat_flags = save_djstat_flags;
04924ee3
RS
873#endif /* MSDOS */
874 return value;
875#endif /* S_IFLNK */
14d55bce
RS
876}
877\f
878Lisp_Object
971de7fb 879make_time (time_t time)
14d55bce
RS
880{
881 return Fcons (make_number (time >> 16),
882 Fcons (make_number (time & 0177777), Qnil));
883}
884
8aaaec6b
EZ
885static char *
886stat_uname (struct stat *st)
887{
888#ifdef WINDOWSNT
889 return st->st_uname;
890#else
891 struct passwd *pw = (struct passwd *) getpwuid (st->st_uid);
892
893 if (pw)
894 return pw->pw_name;
895 else
896 return NULL;
897#endif
898}
899
900static char *
901stat_gname (struct stat *st)
902{
903#ifdef WINDOWSNT
904 return st->st_gname;
905#else
906 struct group *gr = (struct group *) getgrgid (st->st_gid);
907
908 if (gr)
909 return gr->gr_name;
910 else
911 return NULL;
912#endif
913}
914
6b61353c 915DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 2, 0,
335c5470
PJ
916 doc: /* Return a list of attributes of file FILENAME.
917Value is nil if specified file cannot be opened.
6b61353c
KH
918
919ID-FORMAT specifies the preferred format of attributes uid and gid (see
e42cd1a7
JB
920below) - valid values are 'string and 'integer. The latter is the
921default, but we plan to change that, so you should specify a non-nil value
922for ID-FORMAT if you use the returned uid or gid.
6b61353c
KH
923
924Elements of the attribute list are:
335c5470
PJ
925 0. t for directory, string (name linked to) for symbolic link, or nil.
926 1. Number of links to file.
78e7d1fe
EZ
927 2. File uid as a string or a number. If a string value cannot be
928 looked up, a numeric value, either an integer or a float, is returned.
6b61353c 929 3. File gid, likewise.
335c5470
PJ
930 4. Last access time, as a list of two integers.
931 First integer has high-order 16 bits of time, second has low 16 bits.
e02131a2
EZ
932 (See a note below about access time on FAT-based filesystems.)
933 5. Last modification time, likewise. This is the time of the last
934 change to the file's contents.
935 6. Last status change time, likewise. This is the time of last change
936 to the file's attributes: owner and group, access mode bits, etc.
335c5470
PJ
937 7. Size in bytes.
938 This is a floating point number if the size is too large for an integer.
939 8. File modes, as a string of ten letters or dashes as in ls -l.
e0f24100 940 9. t if file's gid would change if file were deleted and recreated.
e02131a2
EZ
94110. inode number. If inode number is larger than what Emacs integer
942 can hold, but still fits into a 32-bit number, this is a cons cell
943 containing two integers: first the high part, then the low 16 bits.
944 If the inode number is wider than 32 bits, this is of the form
945 (HIGH MIDDLE . LOW): first the high 24 bits, then middle 24 bits,
946 and finally the low 16 bits.
94711. Filesystem device number. If it is larger than what the Emacs
948 integer can hold, this is a cons cell, similar to the inode number.
949
950On most filesystems, the combination of the inode and the device
951number uniquely identifies the file.
6c5665e9
EZ
952
953On MS-Windows, performance depends on `w32-get-true-file-attributes',
21f73755
EZ
954which see.
955
956On some FAT-based filesystems, only the date of last access is recorded,
957so last access time will always be midnight of that day. */)
5842a27b 958 (Lisp_Object filename, Lisp_Object id_format)
14d55bce
RS
959{
960 Lisp_Object values[12];
24c2a54f 961 Lisp_Object encoded;
14d55bce 962 struct stat s;
98601119 963#ifdef BSD4_2
b3edfc9b 964 Lisp_Object dirname;
14d55bce 965 struct stat sdir;
98601119 966#endif /* BSD4_2 */
14d55bce 967 char modes[10];
32f4334d 968 Lisp_Object handler;
7435aef8 969 struct gcpro gcpro1;
51105b13 970 char *uname = NULL, *gname = NULL;
14d55bce
RS
971
972 filename = Fexpand_file_name (filename, Qnil);
32f4334d
RS
973
974 /* If the file name has special constructs in it,
975 call the corresponding file handler. */
a617e913 976 handler = Ffind_file_name_handler (filename, Qfile_attributes);
32f4334d 977 if (!NILP (handler))
6b61353c
KH
978 { /* Only pass the extra arg if it is used to help backward compatibility
979 with old file handlers which do not implement the new arg. --Stef */
980 if (NILP (id_format))
981 return call2 (handler, Qfile_attributes, filename);
982 else
983 return call3 (handler, Qfile_attributes, filename, id_format);
984 }
32f4334d 985
7435aef8 986 GCPRO1 (filename);
24c2a54f 987 encoded = ENCODE_FILE (filename);
7435aef8 988 UNGCPRO;
24c2a54f 989
d5db4077 990 if (lstat (SDATA (encoded), &s) < 0)
14d55bce
RS
991 return Qnil;
992
993 switch (s.st_mode & S_IFMT)
994 {
995 default:
996 values[0] = Qnil; break;
997 case S_IFDIR:
998 values[0] = Qt; break;
999#ifdef S_IFLNK
1000 case S_IFLNK:
1001 values[0] = Ffile_symlink_p (filename); break;
1002#endif
1003 }
1004 values[1] = make_number (s.st_nlink);
51105b13
EZ
1005
1006 if (!(NILP (id_format) || EQ (id_format, Qinteger)))
6b61353c 1007 {
8c8a7c58 1008 BLOCK_INPUT;
8aaaec6b 1009 uname = stat_uname (&s);
8aaaec6b 1010 gname = stat_gname (&s);
8c8a7c58 1011 UNBLOCK_INPUT;
6b61353c 1012 }
51105b13 1013 if (uname)
80904120 1014 values[2] = DECODE_SYSTEM (build_string (uname));
51105b13 1015 else
58a12889 1016 values[2] = make_fixnum_or_float (s.st_uid);
51105b13 1017 if (gname)
80904120 1018 values[3] = DECODE_SYSTEM (build_string (gname));
51105b13 1019 else
58a12889 1020 values[3] = make_fixnum_or_float (s.st_gid);
51105b13 1021
14d55bce
RS
1022 values[4] = make_time (s.st_atime);
1023 values[5] = make_time (s.st_mtime);
1024 values[6] = make_time (s.st_ctime);
58a12889 1025 values[7] = make_fixnum_or_float (s.st_size);
4bc12672
JR
1026 /* If the size is negative, and its type is long, convert it back to
1027 positive. */
1028 if (s.st_size < 0 && sizeof (s.st_size) == sizeof (long))
1029 values[7] = make_float ((double) ((unsigned long) s.st_size));
1030
14d55bce
RS
1031 filemodestring (&s, modes);
1032 values[8] = make_string (modes, 10);
98601119 1033#ifdef BSD4_2 /* file gid will be dir gid */
14d55bce 1034 dirname = Ffile_name_directory (filename);
24c2a54f
RS
1035 if (! NILP (dirname))
1036 encoded = ENCODE_FILE (dirname);
d5db4077 1037 if (! NILP (dirname) && stat (SDATA (encoded), &sdir) == 0)
01388a3d 1038 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil;
14d55bce
RS
1039 else /* if we can't tell, assume worst */
1040 values[9] = Qt;
1041#else /* file gid will be egid */
01388a3d 1042 values[9] = (s.st_gid != getegid ()) ? Qt : Qnil;
98601119 1043#endif /* not BSD4_2 */
58a12889 1044 if (!FIXNUM_OVERFLOW_P (s.st_ino))
e058f331 1045 /* Keep the most common cases as integers. */
58a12889
AS
1046 values[10] = make_number (s.st_ino);
1047 else if (!FIXNUM_OVERFLOW_P (s.st_ino >> 16))
4c637faa
RS
1048 /* To allow inode numbers larger than VALBITS, separate the bottom
1049 16 bits. */
e058f331
EZ
1050 values[10] = Fcons (make_number ((EMACS_INT)(s.st_ino >> 16)),
1051 make_number ((EMACS_INT)(s.st_ino & 0xffff)));
4c637faa 1052 else
e058f331
EZ
1053 {
1054 /* To allow inode numbers beyond 32 bits, separate into 2 24-bit
ff8ddc7b 1055 high parts and a 16-bit bottom part.
25ae5671
EZ
1056 The code on the next line avoids a compiler warning on
1057 systems where st_ino is 32 bit wide. (bug#766). */
ff8ddc7b 1058 EMACS_INT high_ino = s.st_ino >> 31 >> 1;
e058f331
EZ
1059 EMACS_INT low_ino = s.st_ino & 0xffffffff;
1060
1061 values[10] = Fcons (make_number (high_ino >> 8),
1062 Fcons (make_number (((high_ino & 0xff) << 16)
1063 + (low_ino >> 16)),
1064 make_number (low_ino & 0xffff)));
1065 }
68c45bf0 1066
58a12889
AS
1067 /* Likewise for device. */
1068 if (FIXNUM_OVERFLOW_P (s.st_dev))
68c45bf0
PE
1069 values[11] = Fcons (make_number (s.st_dev >> 16),
1070 make_number (s.st_dev & 0xffff));
1071 else
1072 values[11] = make_number (s.st_dev);
1073
14d55bce
RS
1074 return Flist (sizeof(values) / sizeof(values[0]), values);
1075}
4424b255
GV
1076
1077DEFUN ("file-attributes-lessp", Ffile_attributes_lessp, Sfile_attributes_lessp, 2, 2, 0,
335c5470
PJ
1078 doc: /* Return t if first arg file attributes list is less than second.
1079Comparison is in lexicographic order and case is significant. */)
5842a27b 1080 (Lisp_Object f1, Lisp_Object f2)
4424b255
GV
1081{
1082 return Fstring_lessp (Fcar (f1), Fcar (f2));
1083}
14d55bce 1084\f
dfcf069d 1085void
971de7fb 1086syms_of_dired (void)
14d55bce 1087{
d67b4f80
DN
1088 Qdirectory_files = intern_c_string ("directory-files");
1089 Qdirectory_files_and_attributes = intern_c_string ("directory-files-and-attributes");
1090 Qfile_name_completion = intern_c_string ("file-name-completion");
1091 Qfile_name_all_completions = intern_c_string ("file-name-all-completions");
1092 Qfile_attributes = intern_c_string ("file-attributes");
1093 Qfile_attributes_lessp = intern_c_string ("file-attributes-lessp");
1094 Qdefault_directory = intern_c_string ("default-directory");
32f4334d 1095
a2d3836c 1096 staticpro (&Qdirectory_files);
4424b255 1097 staticpro (&Qdirectory_files_and_attributes);
a2d3836c
EN
1098 staticpro (&Qfile_name_completion);
1099 staticpro (&Qfile_name_all_completions);
1100 staticpro (&Qfile_attributes);
4424b255 1101 staticpro (&Qfile_attributes_lessp);
01bb4018 1102 staticpro (&Qdefault_directory);
a2d3836c 1103
14d55bce 1104 defsubr (&Sdirectory_files);
4424b255 1105 defsubr (&Sdirectory_files_and_attributes);
14d55bce 1106 defsubr (&Sfile_name_completion);
14d55bce
RS
1107 defsubr (&Sfile_name_all_completions);
1108 defsubr (&Sfile_attributes);
4424b255 1109 defsubr (&Sfile_attributes_lessp);
14d55bce 1110
14d55bce 1111 DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions,
407a52c4
LT
1112 doc: /* Completion ignores file names ending in any string in this list.
1113It does not ignore them if all possible completions end in one of
1114these strings or when displaying a list of completions.
1115It ignores directory names if they match any string in this list which
1116ends in a slash. */);
14d55bce
RS
1117 Vcompletion_ignored_extensions = Qnil;
1118}
6b61353c
KH
1119
1120/* arch-tag: 1ac8deca-4d8f-4d41-ade9-089154d98c03
1121 (do not change this comment) */