Mercurial > emacs
annotate src/dired.c @ 25930:4c1654cc8388
#
author | Dave Love <fx@gnu.org> |
---|---|
date | Fri, 08 Oct 1999 20:12:54 +0000 |
parents | a14111a2a100 |
children | b7aa6ac26872 |
rev | line source |
---|---|
153 | 1 /* Lisp functions for making directory listings. |
7307 | 2 Copyright (C) 1985, 1986, 1993, 1994 Free Software Foundation, Inc. |
153 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
12244 | 8 the Free Software Foundation; either version 2, or (at your option) |
153 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14067
diff
changeset
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14067
diff
changeset
|
19 Boston, MA 02111-1307, USA. */ |
153 | 20 |
21 | |
7896
ec45b17e09b3
Put stdio.h, sys/types.h and sys/stat.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
22 #include <config.h> |
ec45b17e09b3
Put stdio.h, sys/types.h and sys/stat.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
23 |
153 | 24 #include <stdio.h> |
25 #include <sys/types.h> | |
26 #include <sys/stat.h> | |
27 | |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
28 #ifdef VMS |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
29 #include <string.h> |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
30 #include <rms.h> |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
31 #include <rmsdef.h> |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
32 #endif |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
33 |
21514 | 34 #ifdef HAVE_UNISTD_H |
35 #include <unistd.h> | |
36 #endif | |
37 | |
2117
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
38 /* The d_nameln member of a struct dirent includes the '\0' character |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
39 on some systems, but not on others. What's worse, you can't tell |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
40 at compile-time which one it will be, since it really depends on |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
41 the sort of system providing the filesystem you're reading from, |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
42 not the system you are running on. Paul Eggert |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
43 <eggert@bi.twinsun.com> says this occurs when Emacs is running on a |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
44 SunOS 4.1.2 host, reading a directory that is remote-mounted from a |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
45 Solaris 2.1 host and is in a native Solaris 2.1 filesystem. |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
46 |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
47 Since applying strlen to the name always works, we'll just do that. */ |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
48 #define NAMLEN(p) strlen (p->d_name) |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
49 |
153 | 50 #ifdef SYSV_SYSTEM_DIR |
51 | |
52 #include <dirent.h> | |
53 #define DIRENTRY struct dirent | |
54 | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
55 #else /* not SYSV_SYSTEM_DIR */ |
153 | 56 |
57 #ifdef NONSYSTEM_DIR_LIBRARY | |
58 #include "ndir.h" | |
59 #else /* not NONSYSTEM_DIR_LIBRARY */ | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
60 #ifdef MSDOS |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
61 #include <dirent.h> |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
62 #else |
153 | 63 #include <sys/dir.h> |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
64 #endif |
153 | 65 #endif /* not NONSYSTEM_DIR_LIBRARY */ |
66 | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
67 #ifndef MSDOS |
153 | 68 #define DIRENTRY struct direct |
69 | |
70 extern DIR *opendir (); | |
71 extern struct direct *readdir (); | |
72 | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
73 #endif /* not MSDOS */ |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
74 #endif /* not SYSV_SYSTEM_DIR */ |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
75 |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
76 #ifdef MSDOS |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
77 #define DIRENTRY_NONEMPTY(p) ((p)->d_name[0] != 0) |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
78 #else |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
79 #define DIRENTRY_NONEMPTY(p) ((p)->d_ino) |
153 | 80 #endif |
81 | |
82 #include "lisp.h" | |
83 #include "buffer.h" | |
84 #include "commands.h" | |
21050
13e905e1d33c
Include charset.h and coding.h.
Kenichi Handa <handa@m17n.org>
parents:
20870
diff
changeset
|
85 #include "charset.h" |
13e905e1d33c
Include charset.h and coding.h.
Kenichi Handa <handa@m17n.org>
parents:
20870
diff
changeset
|
86 #include "coding.h" |
153 | 87 #include "regex.h" |
88 | |
9604
d3f06c8c76a1
(Fdirectory_files): Use the new calling convention for compile_pattern.
Karl Heuer <kwzh@gnu.org>
parents:
9399
diff
changeset
|
89 /* Returns a search buffer, with a fastmap allocated and ready to go. */ |
d3f06c8c76a1
(Fdirectory_files): Use the new calling convention for compile_pattern.
Karl Heuer <kwzh@gnu.org>
parents:
9399
diff
changeset
|
90 extern struct re_pattern_buffer *compile_pattern (); |
2371
48f808108031
(searchbuf): Declare here.
Richard M. Stallman <rms@gnu.org>
parents:
2183
diff
changeset
|
91 |
153 | 92 #define min(a, b) ((a) < (b) ? (a) : (b)) |
93 | |
94 /* if system does not have symbolic links, it does not have lstat. | |
95 In that case, use ordinary stat instead. */ | |
96 | |
97 #ifndef S_IFLNK | |
98 #define lstat stat | |
99 #endif | |
100 | |
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
101 extern int completion_ignore_case; |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
102 extern Lisp_Object Vcompletion_regexp_list; |
21050
13e905e1d33c
Include charset.h and coding.h.
Kenichi Handa <handa@m17n.org>
parents:
20870
diff
changeset
|
103 extern Lisp_Object Vfile_name_coding_system, Vdefault_file_name_coding_system; |
1509
9675ae1d95c2
* dired.c (find_file_handler): Declare this extern.
Jim Blandy <jimb@redhat.com>
parents:
1173
diff
changeset
|
104 |
153 | 105 Lisp_Object Vcompletion_ignored_extensions; |
106 Lisp_Object Qcompletion_ignore_case; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
107 Lisp_Object Qdirectory_files; |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
108 Lisp_Object Qdirectory_files_and_attributes; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
109 Lisp_Object Qfile_name_completion; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
110 Lisp_Object Qfile_name_all_completions; |
847 | 111 Lisp_Object Qfile_attributes; |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
112 Lisp_Object Qfile_attributes_lessp; |
153 | 113 |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
114 /* Function shared by Fdirectory_files and Fdirectory_files_and_attributes. |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
115 When ATTRS is zero, return a list of directory filenames; when |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
116 non-zero, return a list of directory filenames and their attributes. */ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
117 Lisp_Object |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
118 directory_files_internal (directory, full, match, nosort, attrs) |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
119 Lisp_Object directory, full, match, nosort; |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
120 int attrs; |
153 | 121 { |
122 DIR *d; | |
11176
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
123 int dirnamelen; |
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
124 Lisp_Object list, name, dirfilename; |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
125 Lisp_Object encoded_directory; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
126 Lisp_Object handler; |
9604
d3f06c8c76a1
(Fdirectory_files): Use the new calling convention for compile_pattern.
Karl Heuer <kwzh@gnu.org>
parents:
9399
diff
changeset
|
127 struct re_pattern_buffer *bufp; |
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
128 int needsep = 0; |
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
129 struct gcpro gcpro1, gcpro2; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
130 |
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
131 /* Because of file name handlers, these functions might call |
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
132 Ffuncall, and cause a GC. */ |
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
133 GCPRO1 (match); |
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
134 directory = Fexpand_file_name (directory, Qnil); |
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
135 UNGCPRO; |
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
136 GCPRO2 (match, directory); |
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
137 dirfilename = Fdirectory_file_name (directory); |
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
138 UNGCPRO; |
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
139 |
485 | 140 if (!NILP (match)) |
153 | 141 { |
142 CHECK_STRING (match, 3); | |
808 | 143 |
144 /* MATCH might be a flawed regular expression. Rather than | |
14036 | 145 catching and signaling our own errors, we just call |
808 | 146 compile_pattern to do the work for us. */ |
20634
8e7e791c49ca
(Fdirectory_files): Fix arg to compile_pattern.
Richard M. Stallman <rms@gnu.org>
parents:
19816
diff
changeset
|
147 /* Pass 1 for the MULTIBYTE arg |
8e7e791c49ca
(Fdirectory_files): Fix arg to compile_pattern.
Richard M. Stallman <rms@gnu.org>
parents:
19816
diff
changeset
|
148 because we do make multibyte strings if the contents warrant. */ |
153 | 149 #ifdef VMS |
9604
d3f06c8c76a1
(Fdirectory_files): Use the new calling convention for compile_pattern.
Karl Heuer <kwzh@gnu.org>
parents:
9399
diff
changeset
|
150 bufp = compile_pattern (match, 0, |
20870
3b8d9a7be50c
(Fdirectory_files): Call compile_pattern the new way.
Richard M. Stallman <rms@gnu.org>
parents:
20634
diff
changeset
|
151 buffer_defaults.downcase_table, 0, 1); |
153 | 152 #else |
20870
3b8d9a7be50c
(Fdirectory_files): Call compile_pattern the new way.
Richard M. Stallman <rms@gnu.org>
parents:
20634
diff
changeset
|
153 bufp = compile_pattern (match, 0, Qnil, 0, 1); |
153 | 154 #endif |
155 } | |
156 | |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
157 dirfilename = ENCODE_FILE (dirfilename); |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
158 |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
159 encoded_directory = ENCODE_FILE (directory); |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
160 |
9604
d3f06c8c76a1
(Fdirectory_files): Use the new calling convention for compile_pattern.
Karl Heuer <kwzh@gnu.org>
parents:
9399
diff
changeset
|
161 /* Now *bufp is the compiled form of MATCH; don't call anything |
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
162 which might compile a new regexp until we're done with the loop! */ |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
163 |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
164 /* Do this opendir after anything which might signal an error; if |
14036 | 165 an error is signaled while the directory stream is open, we |
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
166 have to make sure it gets closed, and setting up an |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
167 unwind_protect to do so would be a pain. */ |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
168 d = opendir (XSTRING (dirfilename)->data); |
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
169 if (! d) |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
170 report_file_error ("Opening directory", Fcons (directory, Qnil)); |
153 | 171 |
172 list = Qnil; | |
22916
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
173 dirnamelen = STRING_BYTES (XSTRING (directory)); |
17460
6923ae3375f7
(Fdirectory_files): Set re_match_object.
Richard M. Stallman <rms@gnu.org>
parents:
16532
diff
changeset
|
174 re_match_object = Qt; |
153 | 175 |
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
176 /* Decide whether we need to add a directory separator. */ |
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
177 #ifndef VMS |
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
178 if (dirnamelen == 0 |
22916
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
179 || !IS_ANY_SEP (XSTRING (directory)->data[dirnamelen - 1])) |
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
180 needsep = 1; |
21393
5f153464fc99
(Fdirectory_files): Use make_uninit_multibyte_string.
Karl Heuer <kwzh@gnu.org>
parents:
21380
diff
changeset
|
181 #endif /* not VMS */ |
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
182 |
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
183 GCPRO2 (encoded_directory, list); |
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
184 |
153 | 185 /* Loop reading blocks */ |
186 while (1) | |
187 { | |
188 DIRENTRY *dp = readdir (d); | |
189 | |
190 if (!dp) break; | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
191 if (DIRENTRY_NONEMPTY (dp)) |
153 | 192 { |
22916
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
193 int len; |
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
194 |
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
195 len = NAMLEN (dp); |
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
196 name = DECODE_FILE (make_string (dp->d_name, len)); |
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
197 len = STRING_BYTES (XSTRING (name)); |
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
198 |
485 | 199 if (NILP (match) |
22916
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
200 || (0 <= re_search (bufp, XSTRING (name)->data, len, 0, len, 0))) |
153 | 201 { |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
202 Lisp_Object finalname; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
203 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
204 finalname = name; |
485 | 205 if (!NILP (full)) |
153 | 206 { |
11176
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
207 int afterdirindex = dirnamelen; |
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
208 int total = len + dirnamelen; |
21261
edaef0e79ff0
(Fdirectory_files): In FULL case, compute number of characters
Richard M. Stallman <rms@gnu.org>
parents:
21050
diff
changeset
|
209 int nchars; |
22916
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
210 Lisp_Object fullname; |
11176
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
211 |
22916
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
212 fullname = make_uninit_multibyte_string (total + needsep, |
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
213 total + needsep); |
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
214 bcopy (XSTRING (directory)->data, XSTRING (fullname)->data, |
11176
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
215 dirnamelen); |
07a3b9c34717
(Fdirectory_files): Fix bug in IS_ANY_SEP usage introduced in Oct 30 change.
Richard M. Stallman <rms@gnu.org>
parents:
9984
diff
changeset
|
216 if (needsep) |
22916
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
217 XSTRING (fullname)->data[afterdirindex++] = DIRECTORY_SEP; |
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
218 bcopy (XSTRING (name)->data, |
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
219 XSTRING (fullname)->data + afterdirindex, len); |
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
220 nchars = chars_in_text (XSTRING (fullname)->data, |
21261
edaef0e79ff0
(Fdirectory_files): In FULL case, compute number of characters
Richard M. Stallman <rms@gnu.org>
parents:
21050
diff
changeset
|
221 afterdirindex + len); |
22916
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
222 XSTRING (fullname)->size = nchars; |
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
223 if (nchars == STRING_BYTES (XSTRING (fullname))) |
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
224 SET_STRING_BYTES (XSTRING (fullname), -1); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
225 finalname = fullname; |
153 | 226 } |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
227 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
228 if (attrs) |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
229 { |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
230 /* Construct an expanded filename for the directory entry. |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
231 Use the decoded names for input to Ffile_attributes. */ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
232 Lisp_Object decoded_fullname; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
233 Lisp_Object fileattrs; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
234 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
235 decoded_fullname = Fexpand_file_name (name, directory); |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
236 fileattrs = Ffile_attributes (decoded_fullname); |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
237 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
238 list = Fcons (Fcons (finalname, fileattrs), list); |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
239 } |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
240 else |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
241 { |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
242 list = Fcons (finalname, list); |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
243 } |
153 | 244 } |
245 } | |
246 } | |
247 closedir (d); | |
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
248 UNGCPRO; |
485 | 249 if (!NILP (nosort)) |
153 | 250 return list; |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
251 if (attrs) |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
252 return Fsort (Fnreverse (list), Qfile_attributes_lessp); |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
253 else |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
254 return Fsort (Fnreverse (list), Qstring_lessp); |
153 | 255 } |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
256 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
257 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
258 DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0, |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
259 "Return a list of names of files in DIRECTORY.\n\ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
260 There are three optional arguments:\n\ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
261 If FULL is non-nil, return absolute file names. Otherwise return names\n\ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
262 that are relative to the specified directory.\n\ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
263 If MATCH is non-nil, mention only file names that match the regexp MATCH.\n\ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
264 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
265 NOSORT is useful if you plan to sort the result yourself.") |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
266 (directory, full, match, nosort) |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
267 Lisp_Object directory, full, match, nosort; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
268 { |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
269 Lisp_Object handler; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
270 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
271 /* If the file name has special constructs in it, |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
272 call the corresponding file handler. */ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
273 handler = Ffind_file_name_handler (directory, Qdirectory_files); |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
274 if (!NILP (handler)) |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
275 { |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
276 Lisp_Object args[6]; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
277 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
278 args[0] = handler; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
279 args[1] = Qdirectory_files; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
280 args[2] = directory; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
281 args[3] = full; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
282 args[4] = match; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
283 args[5] = nosort; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
284 return Ffuncall (6, args); |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
285 } |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
286 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
287 return directory_files_internal (directory, full, match, nosort, 0); |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
288 } |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
289 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
290 DEFUN ("directory-files-and-attributes", Fdirectory_files_and_attributes, Sdirectory_files_and_attributes, 1, 4, 0, |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
291 "Return a list of names of files and their attributes in DIRECTORY.\n\ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
292 There are three optional arguments:\n\ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
293 If FULL is non-nil, return absolute file names. Otherwise return names\n\ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
294 that are relative to the specified directory.\n\ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
295 If MATCH is non-nil, mention only file names that match the regexp MATCH.\n\ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
296 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
297 NOSORT is useful if you plan to sort the result yourself.") |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
298 (directory, full, match, nosort) |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
299 Lisp_Object directory, full, match, nosort; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
300 { |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
301 Lisp_Object handler; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
302 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
303 /* If the file name has special constructs in it, |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
304 call the corresponding file handler. */ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
305 handler = Ffind_file_name_handler (directory, Qdirectory_files_and_attributes); |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
306 if (!NILP (handler)) |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
307 { |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
308 Lisp_Object args[6]; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
309 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
310 args[0] = handler; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
311 args[1] = Qdirectory_files_and_attributes; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
312 args[2] = directory; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
313 args[3] = full; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
314 args[4] = match; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
315 args[5] = nosort; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
316 return Ffuncall (6, args); |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
317 } |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
318 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
319 return directory_files_internal (directory, full, match, nosort, 1); |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
320 } |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
321 |
153 | 322 |
323 Lisp_Object file_name_completion (); | |
324 | |
325 DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion, | |
326 2, 2, 0, | |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
327 "Complete file name FILE in directory DIRECTORY.\n\ |
153 | 328 Returns the longest string\n\ |
14524
10110e5a680a
(Fdirectory_files): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
329 common to all file names in DIRECTORY that start with FILE.\n\ |
153 | 330 If there is only one and FILE matches it exactly, returns t.\n\ |
331 Returns nil if DIR contains no name starting with FILE.") | |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
332 (file, directory) |
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
333 Lisp_Object file, directory; |
153 | 334 { |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
335 Lisp_Object handler; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
336 |
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
337 /* If the directory name has special constructs in it, |
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
338 call the corresponding file handler. */ |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
339 handler = Ffind_file_name_handler (directory, Qfile_name_completion); |
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
340 if (!NILP (handler)) |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
341 return call3 (handler, Qfile_name_completion, file, directory); |
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
342 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
343 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
344 call the corresponding file handler. */ |
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
345 handler = Ffind_file_name_handler (file, Qfile_name_completion); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
346 if (!NILP (handler)) |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
347 return call3 (handler, Qfile_name_completion, file, directory); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
348 |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
349 return file_name_completion (file, directory, 0, 0); |
153 | 350 } |
351 | |
352 DEFUN ("file-name-all-completions", Ffile_name_all_completions, | |
353 Sfile_name_all_completions, 2, 2, 0, | |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
354 "Return a list of all completions of file name FILE in directory DIRECTORY.\n\ |
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
355 These are all file names in directory DIRECTORY which begin with FILE.") |
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
356 (file, directory) |
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
357 Lisp_Object file, directory; |
153 | 358 { |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
359 Lisp_Object handler; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
360 |
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
361 /* If the directory name has special constructs in it, |
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
362 call the corresponding file handler. */ |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
363 handler = Ffind_file_name_handler (directory, Qfile_name_all_completions); |
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
364 if (!NILP (handler)) |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
365 return call3 (handler, Qfile_name_all_completions, file, directory); |
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
366 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
367 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
368 call the corresponding file handler. */ |
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
369 handler = Ffind_file_name_handler (file, Qfile_name_all_completions); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
370 if (!NILP (handler)) |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
371 return call3 (handler, Qfile_name_all_completions, file, directory); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
372 |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
373 return file_name_completion (file, directory, 1, 0); |
153 | 374 } |
375 | |
21514 | 376 static int file_name_completion_stat (); |
377 | |
153 | 378 Lisp_Object |
379 file_name_completion (file, dirname, all_flag, ver_flag) | |
380 Lisp_Object file, dirname; | |
381 int all_flag, ver_flag; | |
382 { | |
383 DIR *d; | |
384 DIRENTRY *dp; | |
385 int bestmatchsize, skip; | |
386 register int compare, matchsize; | |
387 unsigned char *p1, *p2; | |
388 int matchcount = 0; | |
389 Lisp_Object bestmatch, tem, elt, name; | |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
390 Lisp_Object encoded_file; |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
391 Lisp_Object encoded_dir; |
153 | 392 struct stat st; |
393 int directoryp; | |
394 int passcount; | |
395 int count = specpdl_ptr - specpdl; | |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
396 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
397 |
153 | 398 #ifdef VMS |
399 extern DIRENTRY * readdirver (); | |
400 | |
401 DIRENTRY *((* readfunc) ()); | |
402 | |
403 /* Filename completion on VMS ignores case, since VMS filesys does. */ | |
404 specbind (Qcompletion_ignore_case, Qt); | |
405 | |
406 readfunc = readdir; | |
407 if (ver_flag) | |
408 readfunc = readdirver; | |
409 file = Fupcase (file); | |
410 #else /* not VMS */ | |
411 CHECK_STRING (file, 0); | |
412 #endif /* not VMS */ | |
413 | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
414 #ifdef FILE_SYSTEM_CASE |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
415 file = FILE_SYSTEM_CASE (file); |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
416 #endif |
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
417 bestmatch = Qnil; |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
418 encoded_file = encoded_dir = Qnil; |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
419 GCPRO5 (file, dirname, bestmatch, encoded_file, encoded_dir); |
153 | 420 dirname = Fexpand_file_name (dirname, Qnil); |
421 | |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
422 /* Do completion on the encoded file name |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
423 because the other names in the directory are (we presume) |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
424 encoded likewise. We decode the completed string at the end. */ |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
425 encoded_file = ENCODE_FILE (file); |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
426 |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
427 encoded_dir = ENCODE_FILE (dirname); |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
428 |
153 | 429 /* With passcount = 0, ignore files that end in an ignored extension. |
430 If nothing found then try again with passcount = 1, don't ignore them. | |
431 If looking for all completions, start with passcount = 1, | |
432 so always take even the ignored ones. | |
433 | |
434 ** It would not actually be helpful to the user to ignore any possible | |
435 completions when making a list of them.** */ | |
436 | |
485 | 437 for (passcount = !!all_flag; NILP (bestmatch) && passcount < 2; passcount++) |
153 | 438 { |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
439 d = opendir (XSTRING (Fdirectory_file_name (encoded_dir))->data); |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
440 if (!d) |
153 | 441 report_file_error ("Opening directory", Fcons (dirname, Qnil)); |
442 | |
443 /* Loop reading blocks */ | |
444 /* (att3b compiler bug requires do a null comparison this way) */ | |
445 while (1) | |
446 { | |
447 DIRENTRY *dp; | |
448 int len; | |
449 | |
450 #ifdef VMS | |
451 dp = (*readfunc) (d); | |
452 #else | |
453 dp = readdir (d); | |
454 #endif | |
455 if (!dp) break; | |
456 | |
457 len = NAMLEN (dp); | |
458 | |
485 | 459 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) |
153 | 460 goto quit; |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
461 if (! DIRENTRY_NONEMPTY (dp) |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
462 || len < XSTRING (encoded_file)->size |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
463 || 0 <= scmp (dp->d_name, XSTRING (encoded_file)->data, |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
464 XSTRING (encoded_file)->size)) |
153 | 465 continue; |
466 | |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
467 if (file_name_completion_stat (encoded_dir, dp, &st) < 0) |
153 | 468 continue; |
469 | |
470 directoryp = ((st.st_mode & S_IFMT) == S_IFDIR); | |
471 tem = Qnil; | |
9399
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
472 if (directoryp) |
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
473 { |
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
474 #ifndef TRIVIAL_DIRECTORY_ENTRY |
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
475 #define TRIVIAL_DIRECTORY_ENTRY(n) (!strcmp (n, ".") || !strcmp (n, "..")) |
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
476 #endif |
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
477 /* "." and ".." are never interesting as completions, but are |
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
478 actually in the way in a directory contains only one file. */ |
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
479 if (!passcount && TRIVIAL_DIRECTORY_ENTRY (dp->d_name)) |
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
480 continue; |
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
481 } |
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
482 else |
153 | 483 { |
484 /* Compare extensions-to-be-ignored against end of this file name */ | |
485 /* if name is not an exact match against specified string */ | |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
486 if (!passcount && len > XSTRING (encoded_file)->size) |
153 | 487 /* and exit this for loop if a match is found */ |
488 for (tem = Vcompletion_ignored_extensions; | |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25192
diff
changeset
|
489 CONSP (tem); tem = XCDR (tem)) |
153 | 490 { |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25192
diff
changeset
|
491 elt = XCAR (tem); |
9134
37d46d623ed9
(Ffile_name_completion, file_name_completion): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
8800
diff
changeset
|
492 if (!STRINGP (elt)) continue; |
153 | 493 skip = len - XSTRING (elt)->size; |
494 if (skip < 0) continue; | |
495 | |
496 if (0 <= scmp (dp->d_name + skip, | |
497 XSTRING (elt)->data, | |
498 XSTRING (elt)->size)) | |
499 continue; | |
500 break; | |
501 } | |
502 } | |
503 | |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
504 /* If an ignored-extensions match was found, |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
505 don't process this name as a completion. */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
506 if (!passcount && CONSP (tem)) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
507 continue; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
508 |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
509 if (!passcount) |
153 | 510 { |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
511 Lisp_Object regexps; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
512 Lisp_Object zero; |
9302
4c75b1a56398
(file_name_completion): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9171
diff
changeset
|
513 XSETFASTINT (zero, 0); |
153 | 514 |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
515 /* Ignore this element if it fails to match all the regexps. */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
516 for (regexps = Vcompletion_regexp_list; CONSP (regexps); |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25192
diff
changeset
|
517 regexps = XCDR (regexps)) |
153 | 518 { |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25192
diff
changeset
|
519 tem = Fstring_match (XCAR (regexps), elt, zero); |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
520 if (NILP (tem)) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
521 break; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
522 } |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
523 if (CONSP (regexps)) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
524 continue; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
525 } |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
526 |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
527 /* Update computation of how much all possible completions match */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
528 |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
529 matchcount++; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
530 |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
531 if (all_flag || NILP (bestmatch)) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
532 { |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
533 /* This is a possible completion */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
534 if (directoryp) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
535 { |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
536 /* This completion is a directory; make it end with '/' */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
537 name = Ffile_name_as_directory (make_string (dp->d_name, len)); |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
538 } |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
539 else |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
540 name = make_string (dp->d_name, len); |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
541 if (all_flag) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
542 { |
21050
13e905e1d33c
Include charset.h and coding.h.
Kenichi Handa <handa@m17n.org>
parents:
20870
diff
changeset
|
543 name = DECODE_FILE (name); |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
544 bestmatch = Fcons (name, bestmatch); |
153 | 545 } |
546 else | |
547 { | |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
548 bestmatch = name; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
549 bestmatchsize = XSTRING (name)->size; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
550 } |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
551 } |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
552 else |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
553 { |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
554 compare = min (bestmatchsize, len); |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
555 p1 = XSTRING (bestmatch)->data; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
556 p2 = (unsigned char *) dp->d_name; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
557 matchsize = scmp(p1, p2, compare); |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
558 if (matchsize < 0) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
559 matchsize = compare; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
560 if (completion_ignore_case) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
561 { |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
562 /* If this is an exact match except for case, |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
563 use it as the best match rather than one that is not |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
564 an exact match. This way, we get the case pattern |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
565 of the actual match. */ |
15197 | 566 /* This tests that the current file is an exact match |
567 but BESTMATCH is not (it is too long). */ | |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
568 if ((matchsize == len |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
569 && matchsize + !!directoryp |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
570 < XSTRING (bestmatch)->size) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
571 || |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
572 /* If there is no exact match ignoring case, |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
573 prefer a match that does not change the case |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
574 of the input. */ |
15197 | 575 /* If there is more than one exact match aside from |
576 case, and one of them is exact including case, | |
577 prefer that one. */ | |
578 /* This == checks that, of current file and BESTMATCH, | |
579 either both or neither are exact. */ | |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
580 (((matchsize == len) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
581 == |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
582 (matchsize + !!directoryp |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
583 == XSTRING (bestmatch)->size)) |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
584 && !bcmp (p2, XSTRING (encoded_file)->data, XSTRING (encoded_file)->size) |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
585 && bcmp (p1, XSTRING (encoded_file)->data, XSTRING (encoded_file)->size))) |
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
586 { |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
587 bestmatch = make_string (dp->d_name, len); |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
588 if (directoryp) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
589 bestmatch = Ffile_name_as_directory (bestmatch); |
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
590 } |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
591 } |
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
592 |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
593 /* If this dirname all matches, see if implicit following |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
594 slash does too. */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
595 if (directoryp |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
596 && compare == matchsize |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
597 && bestmatchsize > matchsize |
9787
c55f03316095
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP, and DIRECTORY_SEP.
Richard M. Stallman <rms@gnu.org>
parents:
9604
diff
changeset
|
598 && IS_ANY_SEP (p1[matchsize])) |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
599 matchsize++; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
600 bestmatchsize = matchsize; |
153 | 601 } |
602 } | |
603 closedir (d); | |
604 } | |
605 | |
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
606 UNGCPRO; |
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
607 bestmatch = unbind_to (count, bestmatch); |
153 | 608 |
485 | 609 if (all_flag || NILP (bestmatch)) |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
610 { |
21050
13e905e1d33c
Include charset.h and coding.h.
Kenichi Handa <handa@m17n.org>
parents:
20870
diff
changeset
|
611 if (STRINGP (bestmatch)) |
13e905e1d33c
Include charset.h and coding.h.
Kenichi Handa <handa@m17n.org>
parents:
20870
diff
changeset
|
612 bestmatch = DECODE_FILE (bestmatch); |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
613 return bestmatch; |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
614 } |
153 | 615 if (matchcount == 1 && bestmatchsize == XSTRING (file)->size) |
616 return Qt; | |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
617 bestmatch = Fsubstring (bestmatch, make_number (0), |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
618 make_number (bestmatchsize)); |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
619 /* Now that we got the right initial segment of BESTMATCH, |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
620 decode it from the coding system in use. */ |
21050
13e905e1d33c
Include charset.h and coding.h.
Kenichi Handa <handa@m17n.org>
parents:
20870
diff
changeset
|
621 bestmatch = DECODE_FILE (bestmatch); |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
622 return bestmatch; |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
623 |
153 | 624 quit: |
625 if (d) closedir (d); | |
626 Vquit_flag = Qnil; | |
627 return Fsignal (Qquit, Qnil); | |
628 } | |
629 | |
21514 | 630 static int |
153 | 631 file_name_completion_stat (dirname, dp, st_addr) |
632 Lisp_Object dirname; | |
633 DIRENTRY *dp; | |
634 struct stat *st_addr; | |
635 { | |
636 int len = NAMLEN (dp); | |
637 int pos = XSTRING (dirname)->size; | |
7286
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
638 int value; |
153 | 639 char *fullname = (char *) alloca (len + pos + 2); |
640 | |
16246
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
641 #ifdef MSDOS |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
642 #if __DJGPP__ > 1 |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
643 /* Some fields of struct stat are *very* expensive to compute on MS-DOS, |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
644 but aren't required here. Avoid computing the following fields: |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
645 st_inode, st_size and st_nlink for directories, and the execute bits |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
646 in st_mode for non-directory files with non-standard extensions. */ |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
647 |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
648 unsigned short save_djstat_flags = _djstat_flags; |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
649 |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
650 _djstat_flags = _STAT_INODE | _STAT_EXEC_MAGIC | _STAT_DIRSIZE; |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
651 #endif /* __DJGPP__ > 1 */ |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
652 #endif /* MSDOS */ |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
653 |
153 | 654 bcopy (XSTRING (dirname)->data, fullname, pos); |
655 #ifndef VMS | |
9787
c55f03316095
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP, and DIRECTORY_SEP.
Richard M. Stallman <rms@gnu.org>
parents:
9604
diff
changeset
|
656 if (!IS_DIRECTORY_SEP (fullname[pos - 1])) |
c55f03316095
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP, and DIRECTORY_SEP.
Richard M. Stallman <rms@gnu.org>
parents:
9604
diff
changeset
|
657 fullname[pos++] = DIRECTORY_SEP; |
153 | 658 #endif |
659 | |
660 bcopy (dp->d_name, fullname + pos, len); | |
661 fullname[pos + len] = 0; | |
662 | |
5432
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
663 #ifdef S_IFLNK |
7286
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
664 /* We want to return success if a link points to a nonexistent file, |
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
665 but we want to return the status for what the link points to, |
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
666 in case it is a directory. */ |
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
667 value = lstat (fullname, st_addr); |
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
668 stat (fullname, st_addr); |
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
669 return value; |
5432
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
670 #else |
16246
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
671 value = stat (fullname, st_addr); |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
672 #ifdef MSDOS |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
673 #if __DJGPP__ > 1 |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
674 _djstat_flags = save_djstat_flags; |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
675 #endif /* __DJGPP__ > 1 */ |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
676 #endif /* MSDOS */ |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
677 return value; |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
678 #endif /* S_IFLNK */ |
153 | 679 } |
680 | |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
681 #ifdef VMS |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
682 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
683 DEFUN ("file-name-all-versions", Ffile_name_all_versions, |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
684 Sfile_name_all_versions, 2, 2, 0, |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
685 "Return a list of all versions of file name FILE in directory DIRECTORY.") |
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
686 (file, directory) |
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
687 Lisp_Object file, directory; |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
688 { |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
689 return file_name_completion (file, directory, 1, 1); |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
690 } |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
691 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
692 DEFUN ("file-version-limit", Ffile_version_limit, Sfile_version_limit, 1, 1, 0, |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
693 "Return the maximum number of versions allowed for FILE.\n\ |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
694 Returns nil if the file cannot be opened or if there is no version limit.") |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
695 (filename) |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
696 Lisp_Object filename; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
697 { |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
698 Lisp_Object retval; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
699 struct FAB fab; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
700 struct RAB rab; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
701 struct XABFHC xabfhc; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
702 int status; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
703 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
704 filename = Fexpand_file_name (filename, Qnil); |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
705 fab = cc$rms_fab; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
706 xabfhc = cc$rms_xabfhc; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
707 fab.fab$l_fna = XSTRING (filename)->data; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
708 fab.fab$b_fns = strlen (fab.fab$l_fna); |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
709 fab.fab$l_xab = (char *) &xabfhc; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
710 status = sys$open (&fab, 0, 0); |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
711 if (status != RMS$_NORMAL) /* Probably non-existent file */ |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
712 return Qnil; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
713 sys$close (&fab, 0, 0); |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
714 if (xabfhc.xab$w_verlimit == 32767) |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
715 return Qnil; /* No version limit */ |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
716 else |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
717 return make_number (xabfhc.xab$w_verlimit); |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
718 } |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
719 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
720 #endif /* VMS */ |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
721 |
153 | 722 Lisp_Object |
723 make_time (time) | |
24685
545bf3abb3a2
(make_time): Make argument type be time_t.
Andrew Innes <andrewi@gnu.org>
parents:
24581
diff
changeset
|
724 time_t time; |
153 | 725 { |
726 return Fcons (make_number (time >> 16), | |
727 Fcons (make_number (time & 0177777), Qnil)); | |
728 } | |
729 | |
730 DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 1, 0, | |
731 "Return a list of attributes of file FILENAME.\n\ | |
732 Value is nil if specified file cannot be opened.\n\ | |
733 Otherwise, list elements are:\n\ | |
734 0. t for directory, string (name linked to) for symbolic link, or nil.\n\ | |
735 1. Number of links to file.\n\ | |
736 2. File uid.\n\ | |
737 3. File gid.\n\ | |
738 4. Last access time, as a list of two integers.\n\ | |
739 First integer has high-order 16 bits of time, second has low 16 bits.\n\ | |
740 5. Last modification time, likewise.\n\ | |
741 6. Last status change time, likewise.\n\ | |
24328
d968067e4580
(Ffile_attributes): If the file's size doesn't fit in
Eli Zaretskii <eliz@gnu.org>
parents:
22916
diff
changeset
|
742 7. Size in bytes.\n\ |
d968067e4580
(Ffile_attributes): If the file's size doesn't fit in
Eli Zaretskii <eliz@gnu.org>
parents:
22916
diff
changeset
|
743 This is a floating point number if the size is too large for an integer.\n\ |
153 | 744 8. File modes, as a string of ten letters or dashes as in ls -l.\n\ |
745 9. t iff file's gid would change if file were deleted and recreated.\n\ | |
24328
d968067e4580
(Ffile_attributes): If the file's size doesn't fit in
Eli Zaretskii <eliz@gnu.org>
parents:
22916
diff
changeset
|
746 10. inode number. If inode number is larger than the Emacs integer,\n\ |
24581
a0b1c8887910
(Ffile_attributes): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
24328
diff
changeset
|
747 this is a cons cell containing two integers: first the high part,\n\ |
a0b1c8887910
(Ffile_attributes): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
24328
diff
changeset
|
748 then the low 16 bits.\n\ |
153 | 749 11. Device number.\n\ |
750 \n\ | |
1509
9675ae1d95c2
* dired.c (find_file_handler): Declare this extern.
Jim Blandy <jimb@redhat.com>
parents:
1173
diff
changeset
|
751 If file does not exist, returns nil.") |
153 | 752 (filename) |
753 Lisp_Object filename; | |
754 { | |
755 Lisp_Object values[12]; | |
756 Lisp_Object dirname; | |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
757 Lisp_Object encoded; |
153 | 758 struct stat s; |
759 struct stat sdir; | |
760 char modes[10]; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
761 Lisp_Object handler; |
153 | 762 |
763 filename = Fexpand_file_name (filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
764 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
765 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
766 call the corresponding file handler. */ |
7028
6915bf781a38
Pass operation to Ffind_file_name_handler.
Karl Heuer <kwzh@gnu.org>
parents:
6860
diff
changeset
|
767 handler = Ffind_file_name_handler (filename, Qfile_attributes); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
768 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
769 return call2 (handler, Qfile_attributes, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
770 |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
771 encoded = ENCODE_FILE (filename); |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
772 |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
773 if (lstat (XSTRING (encoded)->data, &s) < 0) |
153 | 774 return Qnil; |
775 | |
776 switch (s.st_mode & S_IFMT) | |
777 { | |
778 default: | |
779 values[0] = Qnil; break; | |
780 case S_IFDIR: | |
781 values[0] = Qt; break; | |
782 #ifdef S_IFLNK | |
783 case S_IFLNK: | |
784 values[0] = Ffile_symlink_p (filename); break; | |
785 #endif | |
786 } | |
787 values[1] = make_number (s.st_nlink); | |
788 values[2] = make_number (s.st_uid); | |
789 values[3] = make_number (s.st_gid); | |
790 values[4] = make_time (s.st_atime); | |
791 values[5] = make_time (s.st_mtime); | |
792 values[6] = make_time (s.st_ctime); | |
6860
c24ac406a87b
(Ffile_attributes): Cast st_size to int.
Richard M. Stallman <rms@gnu.org>
parents:
6680
diff
changeset
|
793 values[7] = make_number ((int) s.st_size); |
24328
d968067e4580
(Ffile_attributes): If the file's size doesn't fit in
Eli Zaretskii <eliz@gnu.org>
parents:
22916
diff
changeset
|
794 /* If the size is out of range for an integer, return a float. */ |
3707
b00953e22dc3
(Ffile_attributes): Give -1 as size if size won't fit.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
795 if (XINT (values[7]) != s.st_size) |
24328
d968067e4580
(Ffile_attributes): If the file's size doesn't fit in
Eli Zaretskii <eliz@gnu.org>
parents:
22916
diff
changeset
|
796 values[7] = make_float ((double)s.st_size); |
153 | 797 filemodestring (&s, modes); |
798 values[8] = make_string (modes, 10); | |
799 #ifdef BSD4_3 /* Gross kludge to avoid lack of "#if defined(...)" in VMS */ | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
800 #define BSD4_2 /* A new meaning to the term `backwards compatibility' */ |
153 | 801 #endif |
802 #ifdef BSD4_2 /* file gid will be dir gid */ | |
803 dirname = Ffile_name_directory (filename); | |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
804 if (! NILP (dirname)) |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
805 encoded = ENCODE_FILE (dirname); |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
806 if (! NILP (dirname) && stat (XSTRING (encoded)->data, &sdir) == 0) |
153 | 807 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil; |
808 else /* if we can't tell, assume worst */ | |
809 values[9] = Qt; | |
810 #else /* file gid will be egid */ | |
811 values[9] = (s.st_gid != getegid ()) ? Qt : Qnil; | |
812 #endif /* BSD4_2 (or BSD4_3) */ | |
813 #ifdef BSD4_3 | |
814 #undef BSD4_2 /* ok, you can look again without throwing up */ | |
815 #endif | |
18666
e97df3d7af25
(Ffile_attributes): Use cast to avoid warnings.
Richard M. Stallman <rms@gnu.org>
parents:
17868
diff
changeset
|
816 /* Cast -1 to avoid warning if int is not as wide as VALBITS. */ |
e97df3d7af25
(Ffile_attributes): Use cast to avoid warnings.
Richard M. Stallman <rms@gnu.org>
parents:
17868
diff
changeset
|
817 if (s.st_ino & (((EMACS_INT) (-1)) << VALBITS)) |
17868
bc2cf7c40435
(Ffile_attributes): Return inode number as a cons only if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
17460
diff
changeset
|
818 /* To allow inode numbers larger than VALBITS, separate the bottom |
bc2cf7c40435
(Ffile_attributes): Return inode number as a cons only if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
17460
diff
changeset
|
819 16 bits. */ |
bc2cf7c40435
(Ffile_attributes): Return inode number as a cons only if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
17460
diff
changeset
|
820 values[10] = Fcons (make_number (s.st_ino >> 16), |
bc2cf7c40435
(Ffile_attributes): Return inode number as a cons only if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
17460
diff
changeset
|
821 make_number (s.st_ino & 0xffff)); |
bc2cf7c40435
(Ffile_attributes): Return inode number as a cons only if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
17460
diff
changeset
|
822 else |
bc2cf7c40435
(Ffile_attributes): Return inode number as a cons only if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
17460
diff
changeset
|
823 /* But keep the most common cases as integers. */ |
bc2cf7c40435
(Ffile_attributes): Return inode number as a cons only if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
17460
diff
changeset
|
824 values[10] = make_number (s.st_ino); |
153 | 825 values[11] = make_number (s.st_dev); |
826 return Flist (sizeof(values) / sizeof(values[0]), values); | |
827 } | |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
828 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
829 DEFUN ("file-attributes-lessp", Ffile_attributes_lessp, Sfile_attributes_lessp, 2, 2, 0, |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
830 "Return t if first arg file attributes list is less than second.\n\ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
831 Comparison is in lexicographic order and case is significant.") |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
832 (f1, f2) |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
833 Lisp_Object f1, f2; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
834 { |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
835 return Fstring_lessp (Fcar (f1), Fcar (f2)); |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
836 } |
153 | 837 |
21514 | 838 void |
153 | 839 syms_of_dired () |
840 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
841 Qdirectory_files = intern ("directory-files"); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
842 Qdirectory_files_and_attributes = intern ("directory-files-and-attributes"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
843 Qfile_name_completion = intern ("file-name-completion"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
844 Qfile_name_all_completions = intern ("file-name-all-completions"); |
847 | 845 Qfile_attributes = intern ("file-attributes"); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
846 Qfile_attributes_lessp = intern ("file-attributes-lessp"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
847 |
16225
ec322e4ffa16
(syms_of_dired): staticpro Qdirectory_files, Qfile_name_completion,
Erik Naggum <erik@naggum.no>
parents:
15626
diff
changeset
|
848 staticpro (&Qdirectory_files); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
849 staticpro (&Qdirectory_files_and_attributes); |
16225
ec322e4ffa16
(syms_of_dired): staticpro Qdirectory_files, Qfile_name_completion,
Erik Naggum <erik@naggum.no>
parents:
15626
diff
changeset
|
850 staticpro (&Qfile_name_completion); |
ec322e4ffa16
(syms_of_dired): staticpro Qdirectory_files, Qfile_name_completion,
Erik Naggum <erik@naggum.no>
parents:
15626
diff
changeset
|
851 staticpro (&Qfile_name_all_completions); |
ec322e4ffa16
(syms_of_dired): staticpro Qdirectory_files, Qfile_name_completion,
Erik Naggum <erik@naggum.no>
parents:
15626
diff
changeset
|
852 staticpro (&Qfile_attributes); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
853 staticpro (&Qfile_attributes_lessp); |
16225
ec322e4ffa16
(syms_of_dired): staticpro Qdirectory_files, Qfile_name_completion,
Erik Naggum <erik@naggum.no>
parents:
15626
diff
changeset
|
854 |
153 | 855 defsubr (&Sdirectory_files); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
856 defsubr (&Sdirectory_files_and_attributes); |
153 | 857 defsubr (&Sfile_name_completion); |
858 #ifdef VMS | |
859 defsubr (&Sfile_name_all_versions); | |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
860 defsubr (&Sfile_version_limit); |
153 | 861 #endif /* VMS */ |
862 defsubr (&Sfile_name_all_completions); | |
863 defsubr (&Sfile_attributes); | |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
864 defsubr (&Sfile_attributes_lessp); |
153 | 865 |
866 #ifdef VMS | |
867 Qcompletion_ignore_case = intern ("completion-ignore-case"); | |
868 staticpro (&Qcompletion_ignore_case); | |
869 #endif /* VMS */ | |
870 | |
871 DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions, | |
872 "*Completion ignores filenames ending in any string in this list.\n\ | |
873 This variable does not affect lists of possible completions,\n\ | |
874 but does affect the commands that actually do completions."); | |
875 Vcompletion_ignored_extensions = Qnil; | |
876 } |