Mercurial > emacs
annotate src/dired.c @ 9528:db02bc274f20
(Fx_create_frame): Init the FRAME_X_SCREEN as soon as can be done.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Fri, 14 Oct 1994 05:18:22 +0000 |
| parents | dfcf54257f10 |
| children | d3f06c8c76a1 |
| 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 | |
| 8 the Free Software Foundation; either version 1, or (at your option) | |
| 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 | |
| 18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
| 19 | |
| 20 | |
|
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
|
21 #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
|
22 |
| 153 | 23 #include <stdio.h> |
| 24 #include <sys/types.h> | |
| 25 #include <sys/stat.h> | |
| 26 | |
|
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
27 #ifdef VMS |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
28 #include <string.h> |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
29 #include <rms.h> |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
30 #include <rmsdef.h> |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
31 #endif |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
32 |
|
2117
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
33 /* 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
|
34 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
|
35 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
|
36 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
|
37 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
|
38 <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
|
39 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
|
40 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
|
41 |
|
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
42 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
|
43 #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
|
44 |
| 153 | 45 #ifdef SYSV_SYSTEM_DIR |
| 46 | |
| 47 #include <dirent.h> | |
| 48 #define DIRENTRY struct dirent | |
| 49 | |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
50 #else /* not SYSV_SYSTEM_DIR */ |
| 153 | 51 |
| 52 #ifdef NONSYSTEM_DIR_LIBRARY | |
| 53 #include "ndir.h" | |
| 54 #else /* not NONSYSTEM_DIR_LIBRARY */ | |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
55 #ifdef MSDOS |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
56 #include <dirent.h> |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
57 #else |
| 153 | 58 #include <sys/dir.h> |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
59 #endif |
| 153 | 60 #endif /* not NONSYSTEM_DIR_LIBRARY */ |
| 61 | |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
62 #ifndef MSDOS |
| 153 | 63 #define DIRENTRY struct direct |
| 64 | |
| 65 extern DIR *opendir (); | |
| 66 extern struct direct *readdir (); | |
| 67 | |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
68 #endif /* not MSDOS */ |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
69 #endif /* not SYSV_SYSTEM_DIR */ |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
70 |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
71 #ifdef MSDOS |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
72 #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
|
73 #else |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
74 #define DIRENTRY_NONEMPTY(p) ((p)->d_ino) |
| 153 | 75 #endif |
| 76 | |
| 77 #include "lisp.h" | |
| 78 #include "buffer.h" | |
| 79 #include "commands.h" | |
| 80 | |
| 81 #include "regex.h" | |
| 82 | |
|
2371
48f808108031
(searchbuf): Declare here.
Richard M. Stallman <rms@gnu.org>
parents:
2183
diff
changeset
|
83 /* A search buffer, with a fastmap allocated and ready to go. */ |
|
48f808108031
(searchbuf): Declare here.
Richard M. Stallman <rms@gnu.org>
parents:
2183
diff
changeset
|
84 extern struct re_pattern_buffer searchbuf; |
|
48f808108031
(searchbuf): Declare here.
Richard M. Stallman <rms@gnu.org>
parents:
2183
diff
changeset
|
85 |
| 153 | 86 #define min(a, b) ((a) < (b) ? (a) : (b)) |
| 87 | |
| 88 /* if system does not have symbolic links, it does not have lstat. | |
| 89 In that case, use ordinary stat instead. */ | |
| 90 | |
| 91 #ifndef S_IFLNK | |
| 92 #define lstat stat | |
| 93 #endif | |
| 94 | |
|
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
95 extern int completion_ignore_case; |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
96 extern Lisp_Object Vcompletion_regexp_list; |
|
1509
9675ae1d95c2
* dired.c (find_file_handler): Declare this extern.
Jim Blandy <jimb@redhat.com>
parents:
1173
diff
changeset
|
97 |
| 153 | 98 Lisp_Object Vcompletion_ignored_extensions; |
| 99 Lisp_Object Qcompletion_ignore_case; | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
100 Lisp_Object Qdirectory_files; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
101 Lisp_Object Qfile_name_completion; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
102 Lisp_Object Qfile_name_all_completions; |
| 847 | 103 Lisp_Object Qfile_attributes; |
| 153 | 104 |
| 105 DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0, | |
| 106 "Return a list of names of files in DIRECTORY.\n\ | |
| 107 There are three optional arguments:\n\ | |
| 108 If FULL is non-nil, absolute pathnames of the files are returned.\n\ | |
| 109 If MATCH is non-nil, only pathnames containing that regexp are returned.\n\ | |
| 110 If NOSORT is non-nil, the list is not sorted--its order is unpredictable.\n\ | |
| 111 NOSORT is useful if you plan to sort the result yourself.") | |
| 112 (dirname, full, match, nosort) | |
| 113 Lisp_Object dirname, full, match, nosort; | |
| 114 { | |
| 115 DIR *d; | |
| 116 int length; | |
|
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
117 Lisp_Object list, name, dirfilename; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
118 Lisp_Object handler; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
119 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
120 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
121 call the corresponding file handler. */ |
|
7028
6915bf781a38
Pass operation to Ffind_file_name_handler.
Karl Heuer <kwzh@gnu.org>
parents:
6860
diff
changeset
|
122 handler = Ffind_file_name_handler (dirname, Qdirectory_files); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
123 if (!NILP (handler)) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
124 { |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
125 Lisp_Object args[6]; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
126 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
127 args[0] = handler; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
128 args[1] = Qdirectory_files; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
129 args[2] = dirname; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
130 args[3] = full; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
131 args[4] = match; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
132 args[5] = nosort; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
133 return Ffuncall (6, args); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
134 } |
| 153 | 135 |
|
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
136 { |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
137 struct gcpro gcpro1, gcpro2; |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
138 |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
139 /* Because of file name handlers, these functions might call |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
140 Ffuncall, and cause a GC. */ |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
141 GCPRO1 (match); |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
142 dirname = Fexpand_file_name (dirname, Qnil); |
| 2183 | 143 UNGCPRO; |
|
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
144 GCPRO2 (match, dirname); |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
145 dirfilename = Fdirectory_file_name (dirname); |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
146 UNGCPRO; |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
147 } |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
148 |
| 485 | 149 if (!NILP (match)) |
| 153 | 150 { |
| 151 CHECK_STRING (match, 3); | |
| 808 | 152 |
| 153 /* MATCH might be a flawed regular expression. Rather than | |
| 154 catching and signalling our own errors, we just call | |
| 155 compile_pattern to do the work for us. */ | |
| 153 | 156 #ifdef VMS |
|
1596
0e105bd23f44
* systty.h, process.c, buffer.h, callproc.c, sysdep.c, dired.c:
Jim Blandy <jimb@redhat.com>
parents:
1509
diff
changeset
|
157 compile_pattern (match, &searchbuf, 0, |
| 153 | 158 buffer_defaults.downcase_table->contents); |
| 159 #else | |
| 808 | 160 compile_pattern (match, &searchbuf, 0, 0); |
| 153 | 161 #endif |
| 162 } | |
| 163 | |
|
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
164 /* Now searchbuf is the compiled form of MATCH; don't call anything |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
165 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
|
166 |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
167 /* Do this opendir after anything which might signal an error; if |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
168 an error is signalled while the directory stream is open, we |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
169 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
|
170 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
|
171 d = opendir (XSTRING (dirfilename)->data); |
|
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
172 if (! d) |
| 153 | 173 report_file_error ("Opening directory", Fcons (dirname, Qnil)); |
| 174 | |
| 175 list = Qnil; | |
| 176 length = XSTRING (dirname)->size; | |
| 177 | |
| 178 /* Loop reading blocks */ | |
| 179 while (1) | |
| 180 { | |
| 181 DIRENTRY *dp = readdir (d); | |
| 182 int len; | |
| 183 | |
| 184 if (!dp) break; | |
| 185 len = NAMLEN (dp); | |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
186 if (DIRENTRY_NONEMPTY (dp)) |
| 153 | 187 { |
| 485 | 188 if (NILP (match) |
| 153 | 189 || (0 <= re_search (&searchbuf, dp->d_name, len, 0, len, 0))) |
| 190 { | |
| 485 | 191 if (!NILP (full)) |
| 153 | 192 { |
| 193 int index = XSTRING (dirname)->size; | |
| 194 int total = len + index; | |
| 195 #ifndef VMS | |
| 196 if (length == 0 | |
| 197 || XSTRING (dirname)->data[length - 1] != '/') | |
| 198 total++; | |
| 199 #endif /* VMS */ | |
| 200 | |
| 201 name = make_uninit_string (total); | |
| 202 bcopy (XSTRING (dirname)->data, XSTRING (name)->data, | |
| 203 index); | |
| 204 #ifndef VMS | |
| 205 if (length == 0 | |
| 206 || XSTRING (dirname)->data[length - 1] != '/') | |
| 207 XSTRING (name)->data[index++] = '/'; | |
| 208 #endif /* VMS */ | |
| 209 bcopy (dp->d_name, XSTRING (name)->data + index, len); | |
| 210 } | |
| 211 else | |
| 212 name = make_string (dp->d_name, len); | |
| 213 list = Fcons (name, list); | |
| 214 } | |
| 215 } | |
| 216 } | |
| 217 closedir (d); | |
| 485 | 218 if (!NILP (nosort)) |
| 153 | 219 return list; |
| 220 return Fsort (Fnreverse (list), Qstring_lessp); | |
| 221 } | |
| 222 | |
| 223 Lisp_Object file_name_completion (); | |
| 224 | |
| 225 DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion, | |
| 226 2, 2, 0, | |
| 227 "Complete file name FILE in directory DIR.\n\ | |
| 228 Returns the longest string\n\ | |
| 229 common to all filenames in DIR that start with FILE.\n\ | |
| 230 If there is only one and FILE matches it exactly, returns t.\n\ | |
| 231 Returns nil if DIR contains no name starting with FILE.") | |
| 232 (file, dirname) | |
| 233 Lisp_Object file, dirname; | |
| 234 { | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
235 Lisp_Object handler; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
236 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
237 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
238 call the corresponding file handler. */ |
|
7028
6915bf781a38
Pass operation to Ffind_file_name_handler.
Karl Heuer <kwzh@gnu.org>
parents:
6860
diff
changeset
|
239 handler = Ffind_file_name_handler (dirname, Qfile_name_completion); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
240 if (!NILP (handler)) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
241 return call3 (handler, Qfile_name_completion, file, dirname); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
242 |
| 153 | 243 return file_name_completion (file, dirname, 0, 0); |
| 244 } | |
| 245 | |
| 246 DEFUN ("file-name-all-completions", Ffile_name_all_completions, | |
| 247 Sfile_name_all_completions, 2, 2, 0, | |
| 248 "Return a list of all completions of file name FILE in directory DIR.\n\ | |
| 249 These are all file names in directory DIR which begin with FILE.") | |
| 250 (file, dirname) | |
| 251 Lisp_Object file, dirname; | |
| 252 { | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
253 Lisp_Object handler; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
254 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
255 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
256 call the corresponding file handler. */ |
|
7028
6915bf781a38
Pass operation to Ffind_file_name_handler.
Karl Heuer <kwzh@gnu.org>
parents:
6860
diff
changeset
|
257 handler = Ffind_file_name_handler (dirname, Qfile_name_all_completions); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
258 if (!NILP (handler)) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
259 return call3 (handler, Qfile_name_all_completions, file, dirname); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
260 |
| 153 | 261 return file_name_completion (file, dirname, 1, 0); |
| 262 } | |
| 263 | |
| 264 Lisp_Object | |
| 265 file_name_completion (file, dirname, all_flag, ver_flag) | |
| 266 Lisp_Object file, dirname; | |
| 267 int all_flag, ver_flag; | |
| 268 { | |
| 269 DIR *d; | |
| 270 DIRENTRY *dp; | |
| 271 int bestmatchsize, skip; | |
| 272 register int compare, matchsize; | |
| 273 unsigned char *p1, *p2; | |
| 274 int matchcount = 0; | |
| 275 Lisp_Object bestmatch, tem, elt, name; | |
| 276 struct stat st; | |
| 277 int directoryp; | |
| 278 int passcount; | |
| 279 int count = specpdl_ptr - specpdl; | |
|
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
280 struct gcpro gcpro1, gcpro2, gcpro3; |
|
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
281 |
| 153 | 282 #ifdef VMS |
| 283 extern DIRENTRY * readdirver (); | |
| 284 | |
| 285 DIRENTRY *((* readfunc) ()); | |
| 286 | |
| 287 /* Filename completion on VMS ignores case, since VMS filesys does. */ | |
| 288 specbind (Qcompletion_ignore_case, Qt); | |
| 289 | |
| 290 readfunc = readdir; | |
| 291 if (ver_flag) | |
| 292 readfunc = readdirver; | |
| 293 file = Fupcase (file); | |
| 294 #else /* not VMS */ | |
| 295 CHECK_STRING (file, 0); | |
| 296 #endif /* not VMS */ | |
| 297 | |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
298 #ifdef FILE_SYSTEM_CASE |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
299 file = FILE_SYSTEM_CASE (file); |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
300 #endif |
|
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
301 bestmatch = Qnil; |
|
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
302 GCPRO3 (file, dirname, bestmatch); |
| 153 | 303 dirname = Fexpand_file_name (dirname, Qnil); |
| 304 | |
| 305 /* With passcount = 0, ignore files that end in an ignored extension. | |
| 306 If nothing found then try again with passcount = 1, don't ignore them. | |
| 307 If looking for all completions, start with passcount = 1, | |
| 308 so always take even the ignored ones. | |
| 309 | |
| 310 ** It would not actually be helpful to the user to ignore any possible | |
| 311 completions when making a list of them.** */ | |
| 312 | |
| 485 | 313 for (passcount = !!all_flag; NILP (bestmatch) && passcount < 2; passcount++) |
| 153 | 314 { |
| 315 if (!(d = opendir (XSTRING (Fdirectory_file_name (dirname))->data))) | |
| 316 report_file_error ("Opening directory", Fcons (dirname, Qnil)); | |
| 317 | |
| 318 /* Loop reading blocks */ | |
| 319 /* (att3b compiler bug requires do a null comparison this way) */ | |
| 320 while (1) | |
| 321 { | |
| 322 DIRENTRY *dp; | |
| 323 int len; | |
| 324 | |
| 325 #ifdef VMS | |
| 326 dp = (*readfunc) (d); | |
| 327 #else | |
| 328 dp = readdir (d); | |
| 329 #endif | |
| 330 if (!dp) break; | |
| 331 | |
| 332 len = NAMLEN (dp); | |
| 333 | |
| 485 | 334 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) |
| 153 | 335 goto quit; |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
336 if (! DIRENTRY_NONEMPTY (dp) |
| 153 | 337 || len < XSTRING (file)->size |
| 338 || 0 <= scmp (dp->d_name, XSTRING (file)->data, | |
| 339 XSTRING (file)->size)) | |
| 340 continue; | |
| 341 | |
| 342 if (file_name_completion_stat (dirname, dp, &st) < 0) | |
| 343 continue; | |
| 344 | |
| 345 directoryp = ((st.st_mode & S_IFMT) == S_IFDIR); | |
| 346 tem = Qnil; | |
|
9399
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
347 if (directoryp) |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
348 { |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
349 #ifndef TRIVIAL_DIRECTORY_ENTRY |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
350 #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
|
351 #endif |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
352 /* "." 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
|
353 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
|
354 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
|
355 continue; |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
356 } |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
357 else |
| 153 | 358 { |
| 359 /* Compare extensions-to-be-ignored against end of this file name */ | |
| 360 /* if name is not an exact match against specified string */ | |
| 361 if (!passcount && len > XSTRING (file)->size) | |
| 362 /* and exit this for loop if a match is found */ | |
| 363 for (tem = Vcompletion_ignored_extensions; | |
| 364 CONSP (tem); tem = XCONS (tem)->cdr) | |
| 365 { | |
| 366 elt = XCONS (tem)->car; | |
|
9134
37d46d623ed9
(Ffile_name_completion, file_name_completion): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
8800
diff
changeset
|
367 if (!STRINGP (elt)) continue; |
| 153 | 368 skip = len - XSTRING (elt)->size; |
| 369 if (skip < 0) continue; | |
| 370 | |
| 371 if (0 <= scmp (dp->d_name + skip, | |
| 372 XSTRING (elt)->data, | |
| 373 XSTRING (elt)->size)) | |
| 374 continue; | |
| 375 break; | |
| 376 } | |
| 377 } | |
| 378 | |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
379 /* If an ignored-extensions match was found, |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
380 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
|
381 if (!passcount && CONSP (tem)) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
382 continue; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
383 |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
384 if (!passcount) |
| 153 | 385 { |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
386 Lisp_Object regexps; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
387 Lisp_Object zero; |
|
9302
4c75b1a56398
(file_name_completion): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9171
diff
changeset
|
388 XSETFASTINT (zero, 0); |
| 153 | 389 |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
390 /* 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
|
391 for (regexps = Vcompletion_regexp_list; CONSP (regexps); |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
392 regexps = XCONS (regexps)->cdr) |
| 153 | 393 { |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
394 tem = Fstring_match (XCONS (regexps)->car, elt, zero); |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
395 if (NILP (tem)) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
396 break; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
397 } |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
398 if (CONSP (regexps)) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
399 continue; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
400 } |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
401 |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
402 /* 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
|
403 |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
404 matchcount++; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
405 |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
406 if (all_flag || NILP (bestmatch)) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
407 { |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
408 /* This is a possible completion */ |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
409 if (directoryp) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
410 { |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
411 /* 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
|
412 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
|
413 } |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
414 else |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
415 name = make_string (dp->d_name, len); |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
416 if (all_flag) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
417 { |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
418 bestmatch = Fcons (name, bestmatch); |
| 153 | 419 } |
| 420 else | |
| 421 { | |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
422 bestmatch = name; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
423 bestmatchsize = XSTRING (name)->size; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
424 } |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
425 } |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
426 else |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
427 { |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
428 compare = min (bestmatchsize, len); |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
429 p1 = XSTRING (bestmatch)->data; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
430 p2 = (unsigned char *) dp->d_name; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
431 matchsize = scmp(p1, p2, compare); |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
432 if (matchsize < 0) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
433 matchsize = compare; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
434 if (completion_ignore_case) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
435 { |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
436 /* 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
|
437 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
|
438 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
|
439 of the actual match. */ |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
440 if ((matchsize == len |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
441 && matchsize + !!directoryp |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
442 < XSTRING (bestmatch)->size) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
443 || |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
444 /* 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
|
445 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
|
446 of the input. */ |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
447 (((matchsize == len) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
448 == |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
449 (matchsize + !!directoryp |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
450 == XSTRING (bestmatch)->size)) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
451 /* If there is more than one exact match aside from |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
452 case, and one of them is exact including case, |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
453 prefer that one. */ |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
454 && !bcmp (p2, XSTRING (file)->data, XSTRING (file)->size) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
455 && bcmp (p1, XSTRING (file)->data, XSTRING (file)->size))) |
|
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
456 { |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
457 bestmatch = make_string (dp->d_name, len); |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
458 if (directoryp) |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
459 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
|
460 } |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
461 } |
|
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
462 |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
463 /* 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
|
464 slash does too. */ |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
465 if (directoryp |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
466 && compare == matchsize |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
467 && bestmatchsize > matchsize |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
468 && p1[matchsize] == '/') |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
469 matchsize++; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
470 bestmatchsize = matchsize; |
| 153 | 471 } |
| 472 } | |
| 473 closedir (d); | |
| 474 } | |
| 475 | |
|
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
476 UNGCPRO; |
|
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
477 bestmatch = unbind_to (count, bestmatch); |
| 153 | 478 |
| 485 | 479 if (all_flag || NILP (bestmatch)) |
| 153 | 480 return bestmatch; |
| 481 if (matchcount == 1 && bestmatchsize == XSTRING (file)->size) | |
| 482 return Qt; | |
| 483 return Fsubstring (bestmatch, make_number (0), make_number (bestmatchsize)); | |
| 484 quit: | |
| 485 if (d) closedir (d); | |
| 486 Vquit_flag = Qnil; | |
| 487 return Fsignal (Qquit, Qnil); | |
| 488 } | |
| 489 | |
| 490 file_name_completion_stat (dirname, dp, st_addr) | |
| 491 Lisp_Object dirname; | |
| 492 DIRENTRY *dp; | |
| 493 struct stat *st_addr; | |
| 494 { | |
| 495 int len = NAMLEN (dp); | |
| 496 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
|
497 int value; |
| 153 | 498 char *fullname = (char *) alloca (len + pos + 2); |
| 499 | |
| 500 bcopy (XSTRING (dirname)->data, fullname, pos); | |
| 501 #ifndef VMS | |
| 502 if (fullname[pos - 1] != '/') | |
| 503 fullname[pos++] = '/'; | |
| 504 #endif | |
| 505 | |
| 506 bcopy (dp->d_name, fullname + pos, len); | |
| 507 fullname[pos + len] = 0; | |
| 508 | |
|
5432
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
509 #ifdef S_IFLNK |
|
7286
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
510 /* 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
|
511 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
|
512 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
|
513 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
|
514 stat (fullname, st_addr); |
|
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
515 return value; |
|
5432
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
516 #else |
| 153 | 517 return stat (fullname, st_addr); |
|
5432
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
518 #endif |
| 153 | 519 } |
| 520 | |
|
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
521 #ifdef VMS |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
522 |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
523 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
|
524 Sfile_name_all_versions, 2, 2, 0, |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
525 "Return a list of all versions of file name FILE in directory DIR.") |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
526 (file, dirname) |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
527 Lisp_Object file, dirname; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
528 { |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
529 return file_name_completion (file, dirname, 1, 1); |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
530 } |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
531 |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
532 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
|
533 "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
|
534 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
|
535 (filename) |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
536 Lisp_Object filename; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
537 { |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
538 Lisp_Object retval; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
539 struct FAB fab; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
540 struct RAB rab; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
541 struct XABFHC xabfhc; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
542 int status; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
543 |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
544 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
|
545 fab = cc$rms_fab; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
546 xabfhc = cc$rms_xabfhc; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
547 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
|
548 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
|
549 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
|
550 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
|
551 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
|
552 return Qnil; |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
553 sys$close (&fab, 0, 0); |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
554 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
|
555 return Qnil; /* No version limit */ |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
556 else |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
557 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
|
558 } |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
559 |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
560 #endif /* VMS */ |
|
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
561 |
| 153 | 562 Lisp_Object |
| 563 make_time (time) | |
| 564 int time; | |
| 565 { | |
| 566 return Fcons (make_number (time >> 16), | |
| 567 Fcons (make_number (time & 0177777), Qnil)); | |
| 568 } | |
| 569 | |
| 570 DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 1, 0, | |
| 571 "Return a list of attributes of file FILENAME.\n\ | |
| 572 Value is nil if specified file cannot be opened.\n\ | |
| 573 Otherwise, list elements are:\n\ | |
| 574 0. t for directory, string (name linked to) for symbolic link, or nil.\n\ | |
| 575 1. Number of links to file.\n\ | |
| 576 2. File uid.\n\ | |
| 577 3. File gid.\n\ | |
| 578 4. Last access time, as a list of two integers.\n\ | |
| 579 First integer has high-order 16 bits of time, second has low 16 bits.\n\ | |
| 580 5. Last modification time, likewise.\n\ | |
| 581 6. Last status change time, likewise.\n\ | |
|
3707
b00953e22dc3
(Ffile_attributes): Give -1 as size if size won't fit.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
582 7. Size in bytes (-1, if number is out of range).\n\ |
| 153 | 583 8. File modes, as a string of ten letters or dashes as in ls -l.\n\ |
| 584 9. t iff file's gid would change if file were deleted and recreated.\n\ | |
| 585 10. inode number.\n\ | |
| 586 11. Device number.\n\ | |
| 587 \n\ | |
|
1509
9675ae1d95c2
* dired.c (find_file_handler): Declare this extern.
Jim Blandy <jimb@redhat.com>
parents:
1173
diff
changeset
|
588 If file does not exist, returns nil.") |
| 153 | 589 (filename) |
| 590 Lisp_Object filename; | |
| 591 { | |
| 592 Lisp_Object values[12]; | |
| 593 Lisp_Object dirname; | |
| 594 struct stat s; | |
| 595 struct stat sdir; | |
| 596 char modes[10]; | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
597 Lisp_Object handler; |
| 153 | 598 |
| 599 filename = Fexpand_file_name (filename, Qnil); | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
600 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
601 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
602 call the corresponding file handler. */ |
|
7028
6915bf781a38
Pass operation to Ffind_file_name_handler.
Karl Heuer <kwzh@gnu.org>
parents:
6860
diff
changeset
|
603 handler = Ffind_file_name_handler (filename, Qfile_attributes); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
604 if (!NILP (handler)) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
605 return call2 (handler, Qfile_attributes, filename); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
606 |
| 153 | 607 if (lstat (XSTRING (filename)->data, &s) < 0) |
| 608 return Qnil; | |
| 609 | |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
610 #ifdef MSDOS |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
611 { |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
612 char *tmpnam = XSTRING (Ffile_name_nondirectory (filename))->data; |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
613 int l = strlen (tmpnam); |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
614 |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
615 if (l >= 5 |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
616 && S_ISREG (s.st_mode) |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
617 && (stricmp (&tmpnam[l - 4], ".com") == 0 |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
618 || stricmp (&tmpnam[l - 4], ".exe") == 0 |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
619 || stricmp (&tmpnam[l - 4], ".bat") == 0)) |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
620 { |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
621 s.st_mode |= S_IEXEC; |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
622 } |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
623 } |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
624 #endif /* MSDOS */ |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
625 |
| 153 | 626 switch (s.st_mode & S_IFMT) |
| 627 { | |
| 628 default: | |
| 629 values[0] = Qnil; break; | |
| 630 case S_IFDIR: | |
| 631 values[0] = Qt; break; | |
| 632 #ifdef S_IFLNK | |
| 633 case S_IFLNK: | |
| 634 values[0] = Ffile_symlink_p (filename); break; | |
| 635 #endif | |
| 636 } | |
| 637 values[1] = make_number (s.st_nlink); | |
| 638 values[2] = make_number (s.st_uid); | |
| 639 values[3] = make_number (s.st_gid); | |
| 640 values[4] = make_time (s.st_atime); | |
| 641 values[5] = make_time (s.st_mtime); | |
| 642 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
|
643 values[7] = make_number ((int) s.st_size); |
|
3707
b00953e22dc3
(Ffile_attributes): Give -1 as size if size won't fit.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
644 /* If the size is out of range, give back -1. */ |
|
b00953e22dc3
(Ffile_attributes): Give -1 as size if size won't fit.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
645 if (XINT (values[7]) != s.st_size) |
|
b00953e22dc3
(Ffile_attributes): Give -1 as size if size won't fit.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
646 XSETINT (values[7], -1); |
| 153 | 647 filemodestring (&s, modes); |
| 648 values[8] = make_string (modes, 10); | |
| 649 #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
|
650 #define BSD4_2 /* A new meaning to the term `backwards compatibility' */ |
| 153 | 651 #endif |
| 652 #ifdef BSD4_2 /* file gid will be dir gid */ | |
| 653 dirname = Ffile_name_directory (filename); | |
|
1509
9675ae1d95c2
* dired.c (find_file_handler): Declare this extern.
Jim Blandy <jimb@redhat.com>
parents:
1173
diff
changeset
|
654 if (! NILP (dirname) && stat (XSTRING (dirname)->data, &sdir) == 0) |
| 153 | 655 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil; |
| 656 else /* if we can't tell, assume worst */ | |
| 657 values[9] = Qt; | |
| 658 #else /* file gid will be egid */ | |
| 659 values[9] = (s.st_gid != getegid ()) ? Qt : Qnil; | |
| 660 #endif /* BSD4_2 (or BSD4_3) */ | |
| 661 #ifdef BSD4_3 | |
| 662 #undef BSD4_2 /* ok, you can look again without throwing up */ | |
| 663 #endif | |
| 664 values[10] = make_number (s.st_ino); | |
| 665 values[11] = make_number (s.st_dev); | |
| 666 return Flist (sizeof(values) / sizeof(values[0]), values); | |
| 667 } | |
| 668 | |
| 669 syms_of_dired () | |
| 670 { | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
671 Qdirectory_files = intern ("directory-files"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
672 Qfile_name_completion = intern ("file-name-completion"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
673 Qfile_name_all_completions = intern ("file-name-all-completions"); |
| 847 | 674 Qfile_attributes = intern ("file-attributes"); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
675 |
| 153 | 676 defsubr (&Sdirectory_files); |
| 677 defsubr (&Sfile_name_completion); | |
| 678 #ifdef VMS | |
| 679 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
|
680 defsubr (&Sfile_version_limit); |
| 153 | 681 #endif /* VMS */ |
| 682 defsubr (&Sfile_name_all_completions); | |
| 683 defsubr (&Sfile_attributes); | |
| 684 | |
| 685 #ifdef VMS | |
| 686 Qcompletion_ignore_case = intern ("completion-ignore-case"); | |
| 687 staticpro (&Qcompletion_ignore_case); | |
| 688 #endif /* VMS */ | |
| 689 | |
| 690 DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions, | |
| 691 "*Completion ignores filenames ending in any string in this list.\n\ | |
| 692 This variable does not affect lists of possible completions,\n\ | |
| 693 but does affect the commands that actually do completions."); | |
| 694 Vcompletion_ignored_extensions = Qnil; | |
| 695 } |
