(test_completion): New function, extracted from do_completion.
[bpt/emacs.git] / src / dired.c
CommitLineData
14d55bce 1/* Lisp functions for making directory listings.
3a22ee35 2 Copyright (C) 1985, 1986, 1993, 1994 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
3964b9a7
RS
21#include <config.h>
22
14d55bce
RS
23#include <stdio.h>
24#include <sys/types.h>
25#include <sys/stat.h>
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;
f676868d 96extern Lisp_Object Vcompletion_regexp_list;
ccbcf979 97
14d55bce 98Lisp_Object Vcompletion_ignored_extensions;
14d55bce 99Lisp_Object Qcompletion_ignore_case;
32f4334d
RS
100Lisp_Object Qdirectory_files;
101Lisp_Object Qfile_name_completion;
102Lisp_Object Qfile_name_all_completions;
434e6714 103Lisp_Object Qfile_attributes;
14d55bce
RS
104\f
105DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0,
106 "Return a list of names of files in DIRECTORY.\n\
107There are three optional arguments:\n\
108If FULL is non-nil, absolute pathnames of the files are returned.\n\
109If MATCH is non-nil, only pathnames containing that regexp are returned.\n\
110If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\
111 NOSORT is useful if you plan to sort the result yourself.")
112 (dirname, full, match, nosort)
113 Lisp_Object dirname, full, match, nosort;
114{
115 DIR *d;
116 int length;
6155fae1 117 Lisp_Object list, name, dirfilename;
32f4334d
RS
118 Lisp_Object handler;
119
120 /* If the file name has special constructs in it,
121 call the corresponding file handler. */
a617e913 122 handler = Ffind_file_name_handler (dirname, Qdirectory_files);
32f4334d
RS
123 if (!NILP (handler))
124 {
125 Lisp_Object args[6];
126
127 args[0] = handler;
128 args[1] = Qdirectory_files;
129 args[2] = dirname;
130 args[3] = full;
131 args[4] = match;
132 args[5] = nosort;
133 return Ffuncall (6, args);
134 }
14d55bce 135
6155fae1
JB
136 {
137 struct gcpro gcpro1, gcpro2;
138
139 /* Because of file name handlers, these functions might call
140 Ffuncall, and cause a GC. */
141 GCPRO1 (match);
142 dirname = Fexpand_file_name (dirname, Qnil);
3254eb1e 143 UNGCPRO;
6155fae1
JB
144 GCPRO2 (match, dirname);
145 dirfilename = Fdirectory_file_name (dirname);
146 UNGCPRO;
147 }
148
265a9e55 149 if (!NILP (match))
14d55bce
RS
150 {
151 CHECK_STRING (match, 3);
ebb9e16f
JB
152
153 /* MATCH might be a flawed regular expression. Rather than
154 catching and signalling our own errors, we just call
155 compile_pattern to do the work for us. */
14d55bce 156#ifdef VMS
986ffb24 157 compile_pattern (match, &searchbuf, 0,
14d55bce
RS
158 buffer_defaults.downcase_table->contents);
159#else
ebb9e16f 160 compile_pattern (match, &searchbuf, 0, 0);
14d55bce
RS
161#endif
162 }
163
6155fae1
JB
164 /* Now searchbuf is the compiled form of MATCH; don't call anything
165 which might compile a new regexp until we're done with the loop! */
166
167 /* Do this opendir after anything which might signal an error; if
168 an error is signalled while the directory stream is open, we
169 have to make sure it gets closed, and setting up an
170 unwind_protect to do so would be a pain. */
171 d = opendir (XSTRING (dirfilename)->data);
172 if (! d)
14d55bce
RS
173 report_file_error ("Opening directory", Fcons (dirname, Qnil));
174
175 list = Qnil;
176 length = XSTRING (dirname)->size;
177
178 /* Loop reading blocks */
179 while (1)
180 {
181 DIRENTRY *dp = readdir (d);
182 int len;
183
184 if (!dp) break;
185 len = NAMLEN (dp);
128ecc89 186 if (DIRENTRY_NONEMPTY (dp))
14d55bce 187 {
265a9e55 188 if (NILP (match)
14d55bce
RS
189 || (0 <= re_search (&searchbuf, dp->d_name, len, 0, len, 0)))
190 {
265a9e55 191 if (!NILP (full))
14d55bce
RS
192 {
193 int index = XSTRING (dirname)->size;
194 int total = len + index;
195#ifndef VMS
196 if (length == 0
197 || XSTRING (dirname)->data[length - 1] != '/')
198 total++;
199#endif /* VMS */
200
201 name = make_uninit_string (total);
202 bcopy (XSTRING (dirname)->data, XSTRING (name)->data,
203 index);
204#ifndef VMS
205 if (length == 0
206 || XSTRING (dirname)->data[length - 1] != '/')
207 XSTRING (name)->data[index++] = '/';
208#endif /* VMS */
209 bcopy (dp->d_name, XSTRING (name)->data + index, len);
210 }
211 else
212 name = make_string (dp->d_name, len);
213 list = Fcons (name, list);
214 }
215 }
216 }
217 closedir (d);
265a9e55 218 if (!NILP (nosort))
14d55bce
RS
219 return list;
220 return Fsort (Fnreverse (list), Qstring_lessp);
221}
222\f
223Lisp_Object file_name_completion ();
224
225DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion,
226 2, 2, 0,
227 "Complete file name FILE in directory DIR.\n\
228Returns the longest string\n\
229common to all filenames in DIR that start with FILE.\n\
230If there is only one and FILE matches it exactly, returns t.\n\
231Returns nil if DIR contains no name starting with FILE.")
232 (file, dirname)
233 Lisp_Object file, dirname;
234{
32f4334d 235 Lisp_Object handler;
14d55bce
RS
236 /* Don't waste time trying to complete a null string.
237 Besides, this case happens when user is being asked for
238 a directory name and has supplied one ending in a /.
239 We would not want to add anything in that case
240 even if there are some unique characters in that directory. */
88cf1852 241 if (STRINGP (file) && XSTRING (file)->size == 0)
14d55bce 242 return file;
32f4334d
RS
243
244 /* If the file name has special constructs in it,
245 call the corresponding file handler. */
a617e913 246 handler = Ffind_file_name_handler (dirname, Qfile_name_completion);
32f4334d
RS
247 if (!NILP (handler))
248 return call3 (handler, Qfile_name_completion, file, dirname);
249
14d55bce
RS
250 return file_name_completion (file, dirname, 0, 0);
251}
252
253DEFUN ("file-name-all-completions", Ffile_name_all_completions,
254 Sfile_name_all_completions, 2, 2, 0,
255 "Return a list of all completions of file name FILE in directory DIR.\n\
256These are all file names in directory DIR which begin with FILE.")
257 (file, dirname)
258 Lisp_Object file, dirname;
259{
32f4334d
RS
260 Lisp_Object handler;
261
262 /* If the file name has special constructs in it,
263 call the corresponding file handler. */
a617e913 264 handler = Ffind_file_name_handler (dirname, Qfile_name_all_completions);
32f4334d
RS
265 if (!NILP (handler))
266 return call3 (handler, Qfile_name_all_completions, file, dirname);
267
14d55bce
RS
268 return file_name_completion (file, dirname, 1, 0);
269}
270
14d55bce
RS
271Lisp_Object
272file_name_completion (file, dirname, all_flag, ver_flag)
273 Lisp_Object file, dirname;
274 int all_flag, ver_flag;
275{
276 DIR *d;
277 DIRENTRY *dp;
278 int bestmatchsize, skip;
279 register int compare, matchsize;
280 unsigned char *p1, *p2;
281 int matchcount = 0;
282 Lisp_Object bestmatch, tem, elt, name;
283 struct stat st;
284 int directoryp;
285 int passcount;
286 int count = specpdl_ptr - specpdl;
3fcc88cc
RS
287 struct gcpro gcpro1, gcpro2, gcpro3;
288
14d55bce
RS
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 308 bestmatch = Qnil;
3fcc88cc
RS
309 GCPRO3 (file, dirname, bestmatch);
310 dirname = Fexpand_file_name (dirname, Qnil);
14d55bce
RS
311
312 /* With passcount = 0, ignore files that end in an ignored extension.
313 If nothing found then try again with passcount = 1, don't ignore them.
314 If looking for all completions, start with passcount = 1,
315 so always take even the ignored ones.
316
317 ** It would not actually be helpful to the user to ignore any possible
318 completions when making a list of them.** */
319
265a9e55 320 for (passcount = !!all_flag; NILP (bestmatch) && passcount < 2; passcount++)
14d55bce
RS
321 {
322 if (!(d = opendir (XSTRING (Fdirectory_file_name (dirname))->data)))
323 report_file_error ("Opening directory", Fcons (dirname, Qnil));
324
325 /* Loop reading blocks */
326 /* (att3b compiler bug requires do a null comparison this way) */
327 while (1)
328 {
329 DIRENTRY *dp;
330 int len;
331
332#ifdef VMS
333 dp = (*readfunc) (d);
334#else
335 dp = readdir (d);
336#endif
337 if (!dp) break;
338
339 len = NAMLEN (dp);
340
265a9e55 341 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit))
14d55bce 342 goto quit;
128ecc89 343 if (! DIRENTRY_NONEMPTY (dp)
14d55bce
RS
344 || len < XSTRING (file)->size
345 || 0 <= scmp (dp->d_name, XSTRING (file)->data,
346 XSTRING (file)->size))
347 continue;
348
349 if (file_name_completion_stat (dirname, dp, &st) < 0)
350 continue;
351
352 directoryp = ((st.st_mode & S_IFMT) == S_IFDIR);
353 tem = Qnil;
354 if (!directoryp)
355 {
356 /* Compare extensions-to-be-ignored against end of this file name */
357 /* if name is not an exact match against specified string */
358 if (!passcount && len > XSTRING (file)->size)
359 /* and exit this for loop if a match is found */
360 for (tem = Vcompletion_ignored_extensions;
361 CONSP (tem); tem = XCONS (tem)->cdr)
362 {
363 elt = XCONS (tem)->car;
88cf1852 364 if (!STRINGP (elt)) continue;
14d55bce
RS
365 skip = len - XSTRING (elt)->size;
366 if (skip < 0) continue;
367
368 if (0 <= scmp (dp->d_name + skip,
369 XSTRING (elt)->data,
370 XSTRING (elt)->size))
371 continue;
372 break;
373 }
374 }
375
f676868d
KH
376 /* If an ignored-extensions match was found,
377 don't process this name as a completion. */
378 if (!passcount && CONSP (tem))
379 continue;
380
381 if (!passcount)
14d55bce 382 {
f676868d
KH
383 Lisp_Object regexps;
384 Lisp_Object zero;
617b3bfe 385 XSETFASTINT (zero, 0);
f676868d
KH
386
387 /* Ignore this element if it fails to match all the regexps. */
388 for (regexps = Vcompletion_regexp_list; CONSP (regexps);
389 regexps = XCONS (regexps)->cdr)
390 {
391 tem = Fstring_match (XCONS (regexps)->car, elt, zero);
392 if (NILP (tem))
393 break;
394 }
395 if (CONSP (regexps))
396 continue;
397 }
14d55bce 398
f676868d 399 /* Update computation of how much all possible completions match */
14d55bce 400
f676868d
KH
401 matchcount++;
402
403 if (all_flag || NILP (bestmatch))
404 {
405 /* This is a possible completion */
406 if (directoryp)
14d55bce 407 {
f676868d
KH
408 /* This completion is a directory; make it end with '/' */
409 name = Ffile_name_as_directory (make_string (dp->d_name, len));
410 }
411 else
412 name = make_string (dp->d_name, len);
413 if (all_flag)
414 {
415 bestmatch = Fcons (name, bestmatch);
14d55bce
RS
416 }
417 else
418 {
f676868d
KH
419 bestmatch = name;
420 bestmatchsize = XSTRING (name)->size;
421 }
422 }
423 else
424 {
425 compare = min (bestmatchsize, len);
426 p1 = XSTRING (bestmatch)->data;
427 p2 = (unsigned char *) dp->d_name;
428 matchsize = scmp(p1, p2, compare);
429 if (matchsize < 0)
430 matchsize = compare;
431 if (completion_ignore_case)
432 {
433 /* If this is an exact match except for case,
434 use it as the best match rather than one that is not
435 an exact match. This way, we get the case pattern
436 of the actual match. */
437 if ((matchsize == len
438 && matchsize + !!directoryp
439 < XSTRING (bestmatch)->size)
440 ||
441 /* If there is no exact match ignoring case,
442 prefer a match that does not change the case
443 of the input. */
444 (((matchsize == len)
445 ==
446 (matchsize + !!directoryp
447 == XSTRING (bestmatch)->size))
448 /* If there is more than one exact match aside from
449 case, and one of them is exact including case,
450 prefer that one. */
451 && !bcmp (p2, XSTRING (file)->data, XSTRING (file)->size)
452 && bcmp (p1, XSTRING (file)->data, XSTRING (file)->size)))
97e98a56 453 {
f676868d
KH
454 bestmatch = make_string (dp->d_name, len);
455 if (directoryp)
456 bestmatch = Ffile_name_as_directory (bestmatch);
97e98a56 457 }
14d55bce 458 }
f676868d
KH
459
460 /* If this dirname all matches, see if implicit following
461 slash does too. */
462 if (directoryp
463 && compare == matchsize
464 && bestmatchsize > matchsize
465 && p1[matchsize] == '/')
466 matchsize++;
467 bestmatchsize = matchsize;
14d55bce
RS
468 }
469 }
470 closedir (d);
471 }
472
3fcc88cc
RS
473 UNGCPRO;
474 bestmatch = unbind_to (count, bestmatch);
14d55bce 475
265a9e55 476 if (all_flag || NILP (bestmatch))
14d55bce
RS
477 return bestmatch;
478 if (matchcount == 1 && bestmatchsize == XSTRING (file)->size)
479 return Qt;
480 return Fsubstring (bestmatch, make_number (0), make_number (bestmatchsize));
481 quit:
482 if (d) closedir (d);
483 Vquit_flag = Qnil;
484 return Fsignal (Qquit, Qnil);
485}
486
487file_name_completion_stat (dirname, dp, st_addr)
488 Lisp_Object dirname;
489 DIRENTRY *dp;
490 struct stat *st_addr;
491{
492 int len = NAMLEN (dp);
493 int pos = XSTRING (dirname)->size;
7e3cf34f 494 int value;
14d55bce
RS
495 char *fullname = (char *) alloca (len + pos + 2);
496
497 bcopy (XSTRING (dirname)->data, fullname, pos);
498#ifndef VMS
499 if (fullname[pos - 1] != '/')
500 fullname[pos++] = '/';
501#endif
502
503 bcopy (dp->d_name, fullname + pos, len);
504 fullname[pos + len] = 0;
505
a889bd0e 506#ifdef S_IFLNK
7e3cf34f
RS
507 /* We want to return success if a link points to a nonexistent file,
508 but we want to return the status for what the link points to,
509 in case it is a directory. */
510 value = lstat (fullname, st_addr);
511 stat (fullname, st_addr);
512 return value;
a889bd0e 513#else
14d55bce 514 return stat (fullname, st_addr);
a889bd0e 515#endif
14d55bce
RS
516}
517\f
3ed991aa
RS
518#ifdef VMS
519
520DEFUN ("file-name-all-versions", Ffile_name_all_versions,
521 Sfile_name_all_versions, 2, 2, 0,
522 "Return a list of all versions of file name FILE in directory DIR.")
523 (file, dirname)
524 Lisp_Object file, dirname;
525{
526 return file_name_completion (file, dirname, 1, 1);
527}
528
529DEFUN ("file-version-limit", Ffile_version_limit, Sfile_version_limit, 1, 1, 0,
530 "Return the maximum number of versions allowed for FILE.\n\
531Returns nil if the file cannot be opened or if there is no version limit.")
532 (filename)
533 Lisp_Object filename;
534{
535 Lisp_Object retval;
536 struct FAB fab;
537 struct RAB rab;
538 struct XABFHC xabfhc;
539 int status;
540
541 filename = Fexpand_file_name (filename, Qnil);
542 fab = cc$rms_fab;
543 xabfhc = cc$rms_xabfhc;
544 fab.fab$l_fna = XSTRING (filename)->data;
545 fab.fab$b_fns = strlen (fab.fab$l_fna);
546 fab.fab$l_xab = (char *) &xabfhc;
547 status = sys$open (&fab, 0, 0);
548 if (status != RMS$_NORMAL) /* Probably non-existent file */
549 return Qnil;
550 sys$close (&fab, 0, 0);
551 if (xabfhc.xab$w_verlimit == 32767)
552 return Qnil; /* No version limit */
553 else
554 return make_number (xabfhc.xab$w_verlimit);
555}
556
557#endif /* VMS */
558\f
14d55bce
RS
559Lisp_Object
560make_time (time)
561 int time;
562{
563 return Fcons (make_number (time >> 16),
564 Fcons (make_number (time & 0177777), Qnil));
565}
566
567DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 1, 0,
568 "Return a list of attributes of file FILENAME.\n\
569Value is nil if specified file cannot be opened.\n\
570Otherwise, list elements are:\n\
571 0. t for directory, string (name linked to) for symbolic link, or nil.\n\
572 1. Number of links to file.\n\
573 2. File uid.\n\
574 3. File gid.\n\
575 4. Last access time, as a list of two integers.\n\
576 First integer has high-order 16 bits of time, second has low 16 bits.\n\
577 5. Last modification time, likewise.\n\
578 6. Last status change time, likewise.\n\
60fc6069 579 7. Size in bytes (-1, if number is out of range).\n\
14d55bce
RS
580 8. File modes, as a string of ten letters or dashes as in ls -l.\n\
581 9. t iff file's gid would change if file were deleted and recreated.\n\
58210. inode number.\n\
58311. Device number.\n\
584\n\
ccbcf979 585If file does not exist, returns nil.")
14d55bce
RS
586 (filename)
587 Lisp_Object filename;
588{
589 Lisp_Object values[12];
590 Lisp_Object dirname;
591 struct stat s;
592 struct stat sdir;
593 char modes[10];
32f4334d 594 Lisp_Object handler;
14d55bce
RS
595
596 filename = Fexpand_file_name (filename, Qnil);
32f4334d
RS
597
598 /* If the file name has special constructs in it,
599 call the corresponding file handler. */
a617e913 600 handler = Ffind_file_name_handler (filename, Qfile_attributes);
32f4334d
RS
601 if (!NILP (handler))
602 return call2 (handler, Qfile_attributes, filename);
603
14d55bce
RS
604 if (lstat (XSTRING (filename)->data, &s) < 0)
605 return Qnil;
606
128ecc89
RS
607#ifdef MSDOS
608 {
609 char *tmpnam = XSTRING (Ffile_name_nondirectory (filename))->data;
610 int l = strlen (tmpnam);
611
612 if (l >= 5
613 && S_ISREG (s.st_mode)
614 && (stricmp (&tmpnam[l - 4], ".com") == 0
615 || stricmp (&tmpnam[l - 4], ".exe") == 0
616 || stricmp (&tmpnam[l - 4], ".bat") == 0))
617 {
618 s.st_mode |= S_IEXEC;
619 }
620 }
621#endif /* MSDOS */
622
14d55bce
RS
623 switch (s.st_mode & S_IFMT)
624 {
625 default:
626 values[0] = Qnil; break;
627 case S_IFDIR:
628 values[0] = Qt; break;
629#ifdef S_IFLNK
630 case S_IFLNK:
631 values[0] = Ffile_symlink_p (filename); break;
632#endif
633 }
634 values[1] = make_number (s.st_nlink);
635 values[2] = make_number (s.st_uid);
636 values[3] = make_number (s.st_gid);
637 values[4] = make_time (s.st_atime);
638 values[5] = make_time (s.st_mtime);
639 values[6] = make_time (s.st_ctime);
ed2ef6c9 640 values[7] = make_number ((int) s.st_size);
60fc6069
RS
641 /* If the size is out of range, give back -1. */
642 if (XINT (values[7]) != s.st_size)
643 XSETINT (values[7], -1);
14d55bce
RS
644 filemodestring (&s, modes);
645 values[8] = make_string (modes, 10);
646#ifdef BSD4_3 /* Gross kludge to avoid lack of "#if defined(...)" in VMS */
eb8c3be9 647#define BSD4_2 /* A new meaning to the term `backwards compatibility' */
14d55bce
RS
648#endif
649#ifdef BSD4_2 /* file gid will be dir gid */
650 dirname = Ffile_name_directory (filename);
ccbcf979 651 if (! NILP (dirname) && stat (XSTRING (dirname)->data, &sdir) == 0)
14d55bce
RS
652 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil;
653 else /* if we can't tell, assume worst */
654 values[9] = Qt;
655#else /* file gid will be egid */
656 values[9] = (s.st_gid != getegid ()) ? Qt : Qnil;
657#endif /* BSD4_2 (or BSD4_3) */
658#ifdef BSD4_3
659#undef BSD4_2 /* ok, you can look again without throwing up */
660#endif
661 values[10] = make_number (s.st_ino);
662 values[11] = make_number (s.st_dev);
663 return Flist (sizeof(values) / sizeof(values[0]), values);
664}
665\f
666syms_of_dired ()
667{
32f4334d
RS
668 Qdirectory_files = intern ("directory-files");
669 Qfile_name_completion = intern ("file-name-completion");
670 Qfile_name_all_completions = intern ("file-name-all-completions");
434e6714 671 Qfile_attributes = intern ("file-attributes");
32f4334d 672
14d55bce
RS
673 defsubr (&Sdirectory_files);
674 defsubr (&Sfile_name_completion);
675#ifdef VMS
676 defsubr (&Sfile_name_all_versions);
3ed991aa 677 defsubr (&Sfile_version_limit);
14d55bce
RS
678#endif /* VMS */
679 defsubr (&Sfile_name_all_completions);
680 defsubr (&Sfile_attributes);
681
682#ifdef VMS
683 Qcompletion_ignore_case = intern ("completion-ignore-case");
684 staticpro (&Qcompletion_ignore_case);
685#endif /* VMS */
686
687 DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions,
688 "*Completion ignores filenames ending in any string in this list.\n\
689This variable does not affect lists of possible completions,\n\
690but does affect the commands that actually do completions.");
691 Vcompletion_ignored_extensions = Qnil;
692}