Initial revision
[bpt/emacs.git] / src / dired.c
CommitLineData
14d55bce 1/* Lisp functions for making directory listings.
c6c5df7f 2 Copyright (C) 1985, 1986, 1993 Free Software Foundation, Inc.
14d55bce
RS
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 1, or (at your option)
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20
21#include <stdio.h>
22#include <sys/types.h>
23#include <sys/stat.h>
24
18160b98 25#include <config.h>
14d55bce 26
3ed991aa
RS
27#ifdef VMS
28#include <string.h>
29#include <rms.h>
30#include <rmsdef.h>
31#endif
32
d6717cdb
JB
33/* The d_nameln member of a struct dirent includes the '\0' character
34 on some systems, but not on others. What's worse, you can't tell
35 at compile-time which one it will be, since it really depends on
36 the sort of system providing the filesystem you're reading from,
37 not the system you are running on. Paul Eggert
38 <eggert@bi.twinsun.com> says this occurs when Emacs is running on a
39 SunOS 4.1.2 host, reading a directory that is remote-mounted from a
40 Solaris 2.1 host and is in a native Solaris 2.1 filesystem.
41
42 Since applying strlen to the name always works, we'll just do that. */
43#define NAMLEN(p) strlen (p->d_name)
44
14d55bce
RS
45#ifdef SYSV_SYSTEM_DIR
46
47#include <dirent.h>
48#define DIRENTRY struct dirent
14d55bce 49
128ecc89 50#else /* not SYSV_SYSTEM_DIR */
14d55bce
RS
51
52#ifdef NONSYSTEM_DIR_LIBRARY
53#include "ndir.h"
54#else /* not NONSYSTEM_DIR_LIBRARY */
128ecc89
RS
55#ifdef MSDOS
56#include <dirent.h>
57#else
14d55bce 58#include <sys/dir.h>
128ecc89 59#endif
14d55bce
RS
60#endif /* not NONSYSTEM_DIR_LIBRARY */
61
128ecc89 62#ifndef MSDOS
14d55bce 63#define DIRENTRY struct direct
14d55bce
RS
64
65extern DIR *opendir ();
66extern struct direct *readdir ();
67
128ecc89
RS
68#endif /* not MSDOS */
69#endif /* not SYSV_SYSTEM_DIR */
70
71#ifdef MSDOS
72#define DIRENTRY_NONEMPTY(p) ((p)->d_name[0] != 0)
73#else
74#define DIRENTRY_NONEMPTY(p) ((p)->d_ino)
14d55bce
RS
75#endif
76
14d55bce
RS
77#include "lisp.h"
78#include "buffer.h"
79#include "commands.h"
80
81#include "regex.h"
14d55bce 82
c7e466e1
RS
83/* A search buffer, with a fastmap allocated and ready to go. */
84extern struct re_pattern_buffer searchbuf;
85
14d55bce
RS
86#define min(a, b) ((a) < (b) ? (a) : (b))
87
88/* if system does not have symbolic links, it does not have lstat.
89 In that case, use ordinary stat instead. */
90
91#ifndef S_IFLNK
92#define lstat stat
93#endif
94
97e98a56 95extern int completion_ignore_case;
997bf68d 96extern Lisp_Object Ffind_file_name_handler ();
ccbcf979 97
14d55bce
RS
98Lisp_Object Vcompletion_ignored_extensions;
99
100Lisp_Object Qcompletion_ignore_case;
32f4334d
RS
101
102Lisp_Object Qdirectory_files;
103Lisp_Object Qfile_name_completion;
104Lisp_Object Qfile_name_all_completions;
434e6714 105Lisp_Object Qfile_attributes;
14d55bce
RS
106\f
107DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0,
108 "Return a list of names of files in DIRECTORY.\n\
109There are three optional arguments:\n\
110If FULL is non-nil, absolute pathnames of the files are returned.\n\
111If MATCH is non-nil, only pathnames containing that regexp are returned.\n\
112If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\
113 NOSORT is useful if you plan to sort the result yourself.")
114 (dirname, full, match, nosort)
115 Lisp_Object dirname, full, match, nosort;
116{
117 DIR *d;
118 int length;
6155fae1 119 Lisp_Object list, name, dirfilename;
32f4334d
RS
120 Lisp_Object handler;
121
122 /* If the file name has special constructs in it,
123 call the corresponding file handler. */
997bf68d 124 handler = Ffind_file_name_handler (dirname);
32f4334d
RS
125 if (!NILP (handler))
126 {
127 Lisp_Object args[6];
128
129 args[0] = handler;
130 args[1] = Qdirectory_files;
131 args[2] = dirname;
132 args[3] = full;
133 args[4] = match;
134 args[5] = nosort;
135 return Ffuncall (6, args);
136 }
14d55bce 137
6155fae1
JB
138 {
139 struct gcpro gcpro1, gcpro2;
140
141 /* Because of file name handlers, these functions might call
142 Ffuncall, and cause a GC. */
143 GCPRO1 (match);
144 dirname = Fexpand_file_name (dirname, Qnil);
3254eb1e 145 UNGCPRO;
6155fae1
JB
146 GCPRO2 (match, dirname);
147 dirfilename = Fdirectory_file_name (dirname);
148 UNGCPRO;
149 }
150
265a9e55 151 if (!NILP (match))
14d55bce
RS
152 {
153 CHECK_STRING (match, 3);
ebb9e16f
JB
154
155 /* MATCH might be a flawed regular expression. Rather than
156 catching and signalling our own errors, we just call
157 compile_pattern to do the work for us. */
14d55bce 158#ifdef VMS
986ffb24 159 compile_pattern (match, &searchbuf, 0,
14d55bce
RS
160 buffer_defaults.downcase_table->contents);
161#else
ebb9e16f 162 compile_pattern (match, &searchbuf, 0, 0);
14d55bce
RS
163#endif
164 }
165
6155fae1
JB
166 /* Now searchbuf is the compiled form of MATCH; don't call anything
167 which might compile a new regexp until we're done with the loop! */
168
169 /* Do this opendir after anything which might signal an error; if
170 an error is signalled while the directory stream is open, we
171 have to make sure it gets closed, and setting up an
172 unwind_protect to do so would be a pain. */
173 d = opendir (XSTRING (dirfilename)->data);
174 if (! d)
14d55bce
RS
175 report_file_error ("Opening directory", Fcons (dirname, Qnil));
176
177 list = Qnil;
178 length = XSTRING (dirname)->size;
179
180 /* Loop reading blocks */
181 while (1)
182 {
183 DIRENTRY *dp = readdir (d);
184 int len;
185
186 if (!dp) break;
187 len = NAMLEN (dp);
128ecc89 188 if (DIRENTRY_NONEMPTY (dp))
14d55bce 189 {
265a9e55 190 if (NILP (match)
14d55bce
RS
191 || (0 <= re_search (&searchbuf, dp->d_name, len, 0, len, 0)))
192 {
265a9e55 193 if (!NILP (full))
14d55bce
RS
194 {
195 int index = XSTRING (dirname)->size;
196 int total = len + index;
197#ifndef VMS
198 if (length == 0
199 || XSTRING (dirname)->data[length - 1] != '/')
200 total++;
201#endif /* VMS */
202
203 name = make_uninit_string (total);
204 bcopy (XSTRING (dirname)->data, XSTRING (name)->data,
205 index);
206#ifndef VMS
207 if (length == 0
208 || XSTRING (dirname)->data[length - 1] != '/')
209 XSTRING (name)->data[index++] = '/';
210#endif /* VMS */
211 bcopy (dp->d_name, XSTRING (name)->data + index, len);
212 }
213 else
214 name = make_string (dp->d_name, len);
215 list = Fcons (name, list);
216 }
217 }
218 }
219 closedir (d);
265a9e55 220 if (!NILP (nosort))
14d55bce
RS
221 return list;
222 return Fsort (Fnreverse (list), Qstring_lessp);
223}
224\f
225Lisp_Object file_name_completion ();
226
227DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion,
228 2, 2, 0,
229 "Complete file name FILE in directory DIR.\n\
230Returns the longest string\n\
231common to all filenames in DIR that start with FILE.\n\
232If there is only one and FILE matches it exactly, returns t.\n\
233Returns nil if DIR contains no name starting with FILE.")
234 (file, dirname)
235 Lisp_Object file, dirname;
236{
32f4334d 237 Lisp_Object handler;
14d55bce
RS
238 /* Don't waste time trying to complete a null string.
239 Besides, this case happens when user is being asked for
240 a directory name and has supplied one ending in a /.
241 We would not want to add anything in that case
242 even if there are some unique characters in that directory. */
243 if (XTYPE (file) == Lisp_String && XSTRING (file)->size == 0)
244 return file;
32f4334d
RS
245
246 /* If the file name has special constructs in it,
247 call the corresponding file handler. */
997bf68d 248 handler = Ffind_file_name_handler (dirname);
32f4334d
RS
249 if (!NILP (handler))
250 return call3 (handler, Qfile_name_completion, file, dirname);
251
14d55bce
RS
252 return file_name_completion (file, dirname, 0, 0);
253}
254
255DEFUN ("file-name-all-completions", Ffile_name_all_completions,
256 Sfile_name_all_completions, 2, 2, 0,
257 "Return a list of all completions of file name FILE in directory DIR.\n\
258These are all file names in directory DIR which begin with FILE.")
259 (file, dirname)
260 Lisp_Object file, dirname;
261{
32f4334d
RS
262 Lisp_Object handler;
263
264 /* If the file name has special constructs in it,
265 call the corresponding file handler. */
997bf68d 266 handler = Ffind_file_name_handler (dirname);
32f4334d
RS
267 if (!NILP (handler))
268 return call3 (handler, Qfile_name_all_completions, file, dirname);
269
14d55bce
RS
270 return file_name_completion (file, dirname, 1, 0);
271}
272
14d55bce
RS
273Lisp_Object
274file_name_completion (file, dirname, all_flag, ver_flag)
275 Lisp_Object file, dirname;
276 int all_flag, ver_flag;
277{
278 DIR *d;
279 DIRENTRY *dp;
280 int bestmatchsize, skip;
281 register int compare, matchsize;
282 unsigned char *p1, *p2;
283 int matchcount = 0;
284 Lisp_Object bestmatch, tem, elt, name;
285 struct stat st;
286 int directoryp;
287 int passcount;
288 int count = specpdl_ptr - specpdl;
289#ifdef VMS
290 extern DIRENTRY * readdirver ();
291
292 DIRENTRY *((* readfunc) ());
293
294 /* Filename completion on VMS ignores case, since VMS filesys does. */
295 specbind (Qcompletion_ignore_case, Qt);
296
297 readfunc = readdir;
298 if (ver_flag)
299 readfunc = readdirver;
300 file = Fupcase (file);
301#else /* not VMS */
302 CHECK_STRING (file, 0);
303#endif /* not VMS */
304
128ecc89
RS
305#ifdef FILE_SYSTEM_CASE
306 file = FILE_SYSTEM_CASE (file);
307#endif
14d55bce
RS
308 dirname = Fexpand_file_name (dirname, Qnil);
309 bestmatch = Qnil;
310
311 /* With passcount = 0, ignore files that end in an ignored extension.
312 If nothing found then try again with passcount = 1, don't ignore them.
313 If looking for all completions, start with passcount = 1,
314 so always take even the ignored ones.
315
316 ** It would not actually be helpful to the user to ignore any possible
317 completions when making a list of them.** */
318
265a9e55 319 for (passcount = !!all_flag; NILP (bestmatch) && passcount < 2; passcount++)
14d55bce
RS
320 {
321 if (!(d = opendir (XSTRING (Fdirectory_file_name (dirname))->data)))
322 report_file_error ("Opening directory", Fcons (dirname, Qnil));
323
324 /* Loop reading blocks */
325 /* (att3b compiler bug requires do a null comparison this way) */
326 while (1)
327 {
328 DIRENTRY *dp;
329 int len;
330
331#ifdef VMS
332 dp = (*readfunc) (d);
333#else
334 dp = readdir (d);
335#endif
336 if (!dp) break;
337
338 len = NAMLEN (dp);
339
265a9e55 340 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit))
14d55bce 341 goto quit;
128ecc89 342 if (! DIRENTRY_NONEMPTY (dp)
14d55bce
RS
343 || len < XSTRING (file)->size
344 || 0 <= scmp (dp->d_name, XSTRING (file)->data,
345 XSTRING (file)->size))
346 continue;
347
348 if (file_name_completion_stat (dirname, dp, &st) < 0)
349 continue;
350
351 directoryp = ((st.st_mode & S_IFMT) == S_IFDIR);
352 tem = Qnil;
353 if (!directoryp)
354 {
355 /* Compare extensions-to-be-ignored against end of this file name */
356 /* if name is not an exact match against specified string */
357 if (!passcount && len > XSTRING (file)->size)
358 /* and exit this for loop if a match is found */
359 for (tem = Vcompletion_ignored_extensions;
360 CONSP (tem); tem = XCONS (tem)->cdr)
361 {
362 elt = XCONS (tem)->car;
363 if (XTYPE (elt) != Lisp_String) continue;
364 skip = len - XSTRING (elt)->size;
365 if (skip < 0) continue;
366
367 if (0 <= scmp (dp->d_name + skip,
368 XSTRING (elt)->data,
369 XSTRING (elt)->size))
370 continue;
371 break;
372 }
373 }
374
375 /* Unless an ignored-extensions match was found,
376 process this name as a completion */
377 if (passcount || !CONSP (tem))
378 {
379 /* Update computation of how much all possible completions match */
380
381 matchcount++;
382
265a9e55 383 if (all_flag || NILP (bestmatch))
14d55bce
RS
384 {
385 /* This is a possible completion */
386 if (directoryp)
387 {
388 /* This completion is a directory; make it end with '/' */
389 name = Ffile_name_as_directory (make_string (dp->d_name, len));
390 }
391 else
392 name = make_string (dp->d_name, len);
393 if (all_flag)
394 {
395 bestmatch = Fcons (name, bestmatch);
396 }
397 else
398 {
399 bestmatch = name;
400 bestmatchsize = XSTRING (name)->size;
401 }
402 }
403 else
404 {
405 compare = min (bestmatchsize, len);
406 p1 = XSTRING (bestmatch)->data;
407 p2 = (unsigned char *) dp->d_name;
408 matchsize = scmp(p1, p2, compare);
409 if (matchsize < 0)
410 matchsize = compare;
97e98a56
BF
411 if (completion_ignore_case)
412 {
413 /* If this is an exact match except for case,
414 use it as the best match rather than one that is not
415 an exact match. This way, we get the case pattern
416 of the actual match. */
417 if ((matchsize == len
418 && matchsize + !!directoryp
419 < XSTRING (bestmatch)->size)
420 ||
421 /* If there is no exact match ignoring case,
422 prefer a match that does not change the case
423 of the input. */
424 (((matchsize == len)
425 ==
426 (matchsize + !!directoryp
427 == XSTRING (bestmatch)->size))
428 /* If there is more than one exact match aside from
429 case, and one of them is exact including case,
430 prefer that one. */
431 && !bcmp (p2, XSTRING (file)->data, XSTRING (file)->size)
432 && bcmp (p1, XSTRING (file)->data, XSTRING (file)->size)))
433 {
434 bestmatch = make_string (dp->d_name, len);
435 if (directoryp)
436 bestmatch = Ffile_name_as_directory (bestmatch);
437 }
438 }
439
440 /* If this dirname all matches, see if implicit following
441 slash does too. */
14d55bce
RS
442 if (directoryp
443 && compare == matchsize
444 && bestmatchsize > matchsize
445 && p1[matchsize] == '/')
446 matchsize++;
97e98a56 447 bestmatchsize = matchsize;
14d55bce
RS
448 }
449 }
450 }
451 closedir (d);
452 }
453
454 unbind_to (count, Qnil);
455
265a9e55 456 if (all_flag || NILP (bestmatch))
14d55bce
RS
457 return bestmatch;
458 if (matchcount == 1 && bestmatchsize == XSTRING (file)->size)
459 return Qt;
460 return Fsubstring (bestmatch, make_number (0), make_number (bestmatchsize));
461 quit:
462 if (d) closedir (d);
463 Vquit_flag = Qnil;
464 return Fsignal (Qquit, Qnil);
465}
466
467file_name_completion_stat (dirname, dp, st_addr)
468 Lisp_Object dirname;
469 DIRENTRY *dp;
470 struct stat *st_addr;
471{
472 int len = NAMLEN (dp);
473 int pos = XSTRING (dirname)->size;
474 char *fullname = (char *) alloca (len + pos + 2);
475
476 bcopy (XSTRING (dirname)->data, fullname, pos);
477#ifndef VMS
478 if (fullname[pos - 1] != '/')
479 fullname[pos++] = '/';
480#endif
481
482 bcopy (dp->d_name, fullname + pos, len);
483 fullname[pos + len] = 0;
484
a889bd0e
RS
485#ifdef S_IFLNK
486 return lstat (fullname, st_addr);
487#else
14d55bce 488 return stat (fullname, st_addr);
a889bd0e 489#endif
14d55bce
RS
490}
491\f
3ed991aa
RS
492#ifdef VMS
493
494DEFUN ("file-name-all-versions", Ffile_name_all_versions,
495 Sfile_name_all_versions, 2, 2, 0,
496 "Return a list of all versions of file name FILE in directory DIR.")
497 (file, dirname)
498 Lisp_Object file, dirname;
499{
500 return file_name_completion (file, dirname, 1, 1);
501}
502
503DEFUN ("file-version-limit", Ffile_version_limit, Sfile_version_limit, 1, 1, 0,
504 "Return the maximum number of versions allowed for FILE.\n\
505Returns nil if the file cannot be opened or if there is no version limit.")
506 (filename)
507 Lisp_Object filename;
508{
509 Lisp_Object retval;
510 struct FAB fab;
511 struct RAB rab;
512 struct XABFHC xabfhc;
513 int status;
514
515 filename = Fexpand_file_name (filename, Qnil);
516 fab = cc$rms_fab;
517 xabfhc = cc$rms_xabfhc;
518 fab.fab$l_fna = XSTRING (filename)->data;
519 fab.fab$b_fns = strlen (fab.fab$l_fna);
520 fab.fab$l_xab = (char *) &xabfhc;
521 status = sys$open (&fab, 0, 0);
522 if (status != RMS$_NORMAL) /* Probably non-existent file */
523 return Qnil;
524 sys$close (&fab, 0, 0);
525 if (xabfhc.xab$w_verlimit == 32767)
526 return Qnil; /* No version limit */
527 else
528 return make_number (xabfhc.xab$w_verlimit);
529}
530
531#endif /* VMS */
532\f
14d55bce
RS
533Lisp_Object
534make_time (time)
535 int time;
536{
537 return Fcons (make_number (time >> 16),
538 Fcons (make_number (time & 0177777), Qnil));
539}
540
541DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 1, 0,
542 "Return a list of attributes of file FILENAME.\n\
543Value is nil if specified file cannot be opened.\n\
544Otherwise, list elements are:\n\
545 0. t for directory, string (name linked to) for symbolic link, or nil.\n\
546 1. Number of links to file.\n\
547 2. File uid.\n\
548 3. File gid.\n\
549 4. Last access time, as a list of two integers.\n\
550 First integer has high-order 16 bits of time, second has low 16 bits.\n\
551 5. Last modification time, likewise.\n\
552 6. Last status change time, likewise.\n\
60fc6069 553 7. Size in bytes (-1, if number is out of range).\n\
14d55bce
RS
554 8. File modes, as a string of ten letters or dashes as in ls -l.\n\
555 9. t iff file's gid would change if file were deleted and recreated.\n\
55610. inode number.\n\
55711. Device number.\n\
558\n\
ccbcf979 559If file does not exist, returns nil.")
14d55bce
RS
560 (filename)
561 Lisp_Object filename;
562{
563 Lisp_Object values[12];
564 Lisp_Object dirname;
565 struct stat s;
566 struct stat sdir;
567 char modes[10];
32f4334d 568 Lisp_Object handler;
14d55bce
RS
569
570 filename = Fexpand_file_name (filename, Qnil);
32f4334d
RS
571
572 /* If the file name has special constructs in it,
573 call the corresponding file handler. */
997bf68d 574 handler = Ffind_file_name_handler (filename);
32f4334d
RS
575 if (!NILP (handler))
576 return call2 (handler, Qfile_attributes, filename);
577
14d55bce
RS
578 if (lstat (XSTRING (filename)->data, &s) < 0)
579 return Qnil;
580
128ecc89
RS
581#ifdef MSDOS
582 {
583 char *tmpnam = XSTRING (Ffile_name_nondirectory (filename))->data;
584 int l = strlen (tmpnam);
585
586 if (l >= 5
587 && S_ISREG (s.st_mode)
588 && (stricmp (&tmpnam[l - 4], ".com") == 0
589 || stricmp (&tmpnam[l - 4], ".exe") == 0
590 || stricmp (&tmpnam[l - 4], ".bat") == 0))
591 {
592 s.st_mode |= S_IEXEC;
593 }
594 }
595#endif /* MSDOS */
596
14d55bce
RS
597 switch (s.st_mode & S_IFMT)
598 {
599 default:
600 values[0] = Qnil; break;
601 case S_IFDIR:
602 values[0] = Qt; break;
603#ifdef S_IFLNK
604 case S_IFLNK:
605 values[0] = Ffile_symlink_p (filename); break;
606#endif
607 }
608 values[1] = make_number (s.st_nlink);
609 values[2] = make_number (s.st_uid);
610 values[3] = make_number (s.st_gid);
611 values[4] = make_time (s.st_atime);
612 values[5] = make_time (s.st_mtime);
613 values[6] = make_time (s.st_ctime);
14d55bce 614 values[7] = make_number (s.st_size);
60fc6069
RS
615 /* If the size is out of range, give back -1. */
616 if (XINT (values[7]) != s.st_size)
617 XSETINT (values[7], -1);
14d55bce
RS
618 filemodestring (&s, modes);
619 values[8] = make_string (modes, 10);
620#ifdef BSD4_3 /* Gross kludge to avoid lack of "#if defined(...)" in VMS */
eb8c3be9 621#define BSD4_2 /* A new meaning to the term `backwards compatibility' */
14d55bce
RS
622#endif
623#ifdef BSD4_2 /* file gid will be dir gid */
624 dirname = Ffile_name_directory (filename);
ccbcf979 625 if (! NILP (dirname) && stat (XSTRING (dirname)->data, &sdir) == 0)
14d55bce
RS
626 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil;
627 else /* if we can't tell, assume worst */
628 values[9] = Qt;
629#else /* file gid will be egid */
630 values[9] = (s.st_gid != getegid ()) ? Qt : Qnil;
631#endif /* BSD4_2 (or BSD4_3) */
632#ifdef BSD4_3
633#undef BSD4_2 /* ok, you can look again without throwing up */
634#endif
635 values[10] = make_number (s.st_ino);
636 values[11] = make_number (s.st_dev);
637 return Flist (sizeof(values) / sizeof(values[0]), values);
638}
639\f
640syms_of_dired ()
641{
32f4334d
RS
642 Qdirectory_files = intern ("directory-files");
643 Qfile_name_completion = intern ("file-name-completion");
644 Qfile_name_all_completions = intern ("file-name-all-completions");
434e6714 645 Qfile_attributes = intern ("file-attributes");
32f4334d 646
14d55bce
RS
647 defsubr (&Sdirectory_files);
648 defsubr (&Sfile_name_completion);
649#ifdef VMS
650 defsubr (&Sfile_name_all_versions);
3ed991aa 651 defsubr (&Sfile_version_limit);
14d55bce
RS
652#endif /* VMS */
653 defsubr (&Sfile_name_all_completions);
654 defsubr (&Sfile_attributes);
655
656#ifdef VMS
657 Qcompletion_ignore_case = intern ("completion-ignore-case");
658 staticpro (&Qcompletion_ignore_case);
659#endif /* VMS */
660
661 DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions,
662 "*Completion ignores filenames ending in any string in this list.\n\
663This variable does not affect lists of possible completions,\n\
664but does affect the commands that actually do completions.");
665 Vcompletion_ignored_extensions = Qnil;
666}