Mercurial > emacs
annotate src/dired.c @ 78812:dfb375e20bcc
(ediff-verbose-p): This var is not a constant.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 16 Sep 2007 22:15:22 +0000 |
parents | 1677cf1c2509 |
children | 78939f1449b7 424b655804ca |
rev | line source |
---|---|
153 | 1 /* Lisp functions for making directory listings. |
64770
a0d1312ede66
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
2 Copyright (C) 1985, 1986, 1993, 1994, 1999, 2000, 2001, 2002, 2003, |
75180
cf3da57bf8a5
(Ffile_attributes): Use floats for large uids/gids.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
74689
diff
changeset
|
3 2004, 2005, 2006, 2007 Free Software Foundation, Inc. |
153 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
78260
922696f363b0
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
76525
diff
changeset
|
9 the Free Software Foundation; either version 3, or (at your option) |
153 | 10 any later version. |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
64084 | 19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 Boston, MA 02110-1301, USA. */ | |
153 | 21 |
22 | |
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
|
23 #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
|
24 |
153 | 25 #include <stdio.h> |
26 #include <sys/types.h> | |
27 #include <sys/stat.h> | |
28 | |
61700
8a54ce1fae6a
Remove reference to defunct vms-pwd.h.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60900
diff
changeset
|
29 #ifdef HAVE_PWD_H |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
30 #include <pwd.h> |
61700
8a54ce1fae6a
Remove reference to defunct vms-pwd.h.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60900
diff
changeset
|
31 #endif |
8a54ce1fae6a
Remove reference to defunct vms-pwd.h.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60900
diff
changeset
|
32 #ifndef VMS |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
33 #include <grp.h> |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
34 #endif |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
35 |
36064
b063eac9a89d
(directory_files_internal): Initialize errno.
Gerd Moellmann <gerd@gnu.org>
parents:
35353
diff
changeset
|
36 #include <errno.h> |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25645
diff
changeset
|
37 |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
38 #ifdef VMS |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
39 #include <string.h> |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
40 #include <rms.h> |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
41 #include <rmsdef.h> |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
42 #endif |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
43 |
21514 | 44 #ifdef HAVE_UNISTD_H |
45 #include <unistd.h> | |
46 #endif | |
47 | |
2117
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
48 /* 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
|
49 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
|
50 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
|
51 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
|
52 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
|
53 <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
|
54 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
|
55 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
|
56 |
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
57 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
|
58 #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
|
59 |
153 | 60 #ifdef SYSV_SYSTEM_DIR |
61 | |
62 #include <dirent.h> | |
63 #define DIRENTRY struct dirent | |
64 | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
65 #else /* not SYSV_SYSTEM_DIR */ |
153 | 66 |
67 #ifdef NONSYSTEM_DIR_LIBRARY | |
68 #include "ndir.h" | |
69 #else /* not NONSYSTEM_DIR_LIBRARY */ | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
70 #ifdef MSDOS |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
71 #include <dirent.h> |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
72 #else |
153 | 73 #include <sys/dir.h> |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
74 #endif |
153 | 75 #endif /* not NONSYSTEM_DIR_LIBRARY */ |
76 | |
26565
b50a0a8a0825
Include sys/stat.h. Declare filemodestring.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
77 #include <sys/stat.h> |
b50a0a8a0825
Include sys/stat.h. Declare filemodestring.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
78 |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
79 #ifndef MSDOS |
153 | 80 #define DIRENTRY struct direct |
81 | |
82 extern DIR *opendir (); | |
83 extern struct direct *readdir (); | |
84 | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
85 #endif /* not MSDOS */ |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
86 #endif /* not SYSV_SYSTEM_DIR */ |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
87 |
68427
57575786f53a
(DIRENTRY_NONEMPTY) [__CYGWIN__]: Use the MSDOS definition.
Eli Zaretskii <eliz@gnu.org>
parents:
68323
diff
changeset
|
88 /* Some versions of Cygwin don't have d_ino in `struct dirent'. */ |
57575786f53a
(DIRENTRY_NONEMPTY) [__CYGWIN__]: Use the MSDOS definition.
Eli Zaretskii <eliz@gnu.org>
parents:
68323
diff
changeset
|
89 #if defined(MSDOS) || defined(__CYGWIN__) |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
90 #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
|
91 #else |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
92 #define DIRENTRY_NONEMPTY(p) ((p)->d_ino) |
153 | 93 #endif |
94 | |
95 #include "lisp.h" | |
65764
375ab086d366
* image.c (slurp_file, xbm_read_bitmap_data): Cast to the correct
Dan Nicolaescu <dann@ics.uci.edu>
parents:
65319
diff
changeset
|
96 #include "systime.h" |
153 | 97 #include "buffer.h" |
98 #include "commands.h" | |
21050
13e905e1d33c
Include charset.h and coding.h.
Kenichi Handa <handa@m17n.org>
parents:
20870
diff
changeset
|
99 #include "charset.h" |
13e905e1d33c
Include charset.h and coding.h.
Kenichi Handa <handa@m17n.org>
parents:
20870
diff
changeset
|
100 #include "coding.h" |
153 | 101 #include "regex.h" |
71816
0b0685327de8
Include blockinput.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71462
diff
changeset
|
102 #include "blockinput.h" |
153 | 103 |
9604
d3f06c8c76a1
(Fdirectory_files): Use the new calling convention for compile_pattern.
Karl Heuer <kwzh@gnu.org>
parents:
9399
diff
changeset
|
104 /* 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
|
105 extern struct re_pattern_buffer *compile_pattern (); |
2371
48f808108031
(searchbuf): Declare here.
Richard M. Stallman <rms@gnu.org>
parents:
2183
diff
changeset
|
106 |
26565
b50a0a8a0825
Include sys/stat.h. Declare filemodestring.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
107 /* From filemode.c. Can't go in Lisp.h because of `stat'. */ |
b50a0a8a0825
Include sys/stat.h. Declare filemodestring.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
108 extern void filemodestring P_ ((struct stat *, char *)); |
b50a0a8a0825
Include sys/stat.h. Declare filemodestring.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
109 |
153 | 110 /* if system does not have symbolic links, it does not have lstat. |
111 In that case, use ordinary stat instead. */ | |
112 | |
113 #ifndef S_IFLNK | |
114 #define lstat stat | |
115 #endif | |
116 | |
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
117 extern int completion_ignore_case; |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
118 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
|
119 |
153 | 120 Lisp_Object Vcompletion_ignored_extensions; |
121 Lisp_Object Qcompletion_ignore_case; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
122 Lisp_Object Qdirectory_files; |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
123 Lisp_Object Qdirectory_files_and_attributes; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
124 Lisp_Object Qfile_name_completion; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
125 Lisp_Object Qfile_name_all_completions; |
847 | 126 Lisp_Object Qfile_attributes; |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
127 Lisp_Object Qfile_attributes_lessp; |
42169
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
128 |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
129 static int scmp P_ ((unsigned char *, unsigned char *, int)); |
153 | 130 |
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
131 |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
132 Lisp_Object |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
133 directory_files_internal_unwind (dh) |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
134 Lisp_Object dh; |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
135 { |
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
136 DIR *d = (DIR *) XSAVE_VALUE (dh)->pointer; |
72538
85113179d2d1
(directory_files_internal_unwind, directory_files_internal)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71816
diff
changeset
|
137 BLOCK_INPUT; |
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
138 closedir (d); |
72538
85113179d2d1
(directory_files_internal_unwind, directory_files_internal)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71816
diff
changeset
|
139 UNBLOCK_INPUT; |
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
140 return Qnil; |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
141 } |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
142 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
143 /* Function shared by Fdirectory_files and Fdirectory_files_and_attributes. |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
144 When ATTRS is zero, return a list of directory filenames; when |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
145 non-zero, return a list of directory filenames and their attributes. |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
146 In the latter case, ID_FORMAT is passed to Ffile_attributes. */ |
36665
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
147 |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
148 Lisp_Object |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
149 directory_files_internal (directory, full, match, nosort, attrs, id_format) |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
150 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
|
151 int attrs; |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
152 Lisp_Object id_format; |
153 | 153 { |
154 DIR *d; | |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
155 int directory_nbytes; |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
156 Lisp_Object list, dirfilename, encoded_directory; |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
26565
diff
changeset
|
157 struct re_pattern_buffer *bufp = NULL; |
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
158 int needsep = 0; |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
42189
diff
changeset
|
159 int count = SPECPDL_INDEX (); |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
160 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
33497
280f5481715b
(directory_files_internal) [EAGAIN || EINTR]: Retry
Gerd Moellmann <gerd@gnu.org>
parents:
33347
diff
changeset
|
161 DIRENTRY *dp; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
162 |
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
163 /* 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
|
164 Ffuncall, and cause a GC. */ |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
165 list = encoded_directory = dirfilename = Qnil; |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
166 GCPRO5 (match, directory, list, dirfilename, encoded_directory); |
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
167 dirfilename = Fdirectory_file_name (directory); |
2182
4ffe88f2e493
* dired.c (Fdirectory_files): Compile the MATCH regexp after
Jim Blandy <jimb@redhat.com>
parents:
2117
diff
changeset
|
168 |
485 | 169 if (!NILP (match)) |
153 | 170 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
39882
diff
changeset
|
171 CHECK_STRING (match); |
808 | 172 |
173 /* MATCH might be a flawed regular expression. Rather than | |
14036 | 174 catching and signaling our own errors, we just call |
808 | 175 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
|
176 /* Pass 1 for the MULTIBYTE arg |
8e7e791c49ca
(Fdirectory_files): Fix arg to compile_pattern.
Richard M. Stallman <rms@gnu.org>
parents:
19816
diff
changeset
|
177 because we do make multibyte strings if the contents warrant. */ |
153 | 178 #ifdef VMS |
9604
d3f06c8c76a1
(Fdirectory_files): Use the new calling convention for compile_pattern.
Karl Heuer <kwzh@gnu.org>
parents:
9399
diff
changeset
|
179 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
|
180 buffer_defaults.downcase_table, 0, 1); |
71462
7579ed1c76f1
(directory_files_internal) [WINDOWSNT]: Find files case-insensitively.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
181 #else /* !VMS */ |
7579ed1c76f1
(directory_files_internal) [WINDOWSNT]: Find files case-insensitively.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
182 # ifdef WINDOWSNT |
7579ed1c76f1
(directory_files_internal) [WINDOWSNT]: Find files case-insensitively.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
183 /* Windows users want case-insensitive wildcards. */ |
7579ed1c76f1
(directory_files_internal) [WINDOWSNT]: Find files case-insensitively.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
184 bufp = compile_pattern (match, 0, |
7579ed1c76f1
(directory_files_internal) [WINDOWSNT]: Find files case-insensitively.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
185 buffer_defaults.case_canon_table, 0, 1); |
7579ed1c76f1
(directory_files_internal) [WINDOWSNT]: Find files case-insensitively.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
186 # else /* !WINDOWSNT */ |
20870
3b8d9a7be50c
(Fdirectory_files): Call compile_pattern the new way.
Richard M. Stallman <rms@gnu.org>
parents:
20634
diff
changeset
|
187 bufp = compile_pattern (match, 0, Qnil, 0, 1); |
71462
7579ed1c76f1
(directory_files_internal) [WINDOWSNT]: Find files case-insensitively.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
188 # endif /* !WINDOWSNT */ |
7579ed1c76f1
(directory_files_internal) [WINDOWSNT]: Find files case-insensitively.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
189 #endif /* !VMS */ |
153 | 190 } |
191 | |
34970
947b53b0a1da
(directory_files_internal): Fix a typo in a comment.
Eli Zaretskii <eliz@gnu.org>
parents:
34667
diff
changeset
|
192 /* Note: ENCODE_FILE and DECODE_FILE can GC because they can run |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
193 run_pre_post_conversion_on_str which calls Lisp directly and |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
194 indirectly. */ |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
195 dirfilename = ENCODE_FILE (dirfilename); |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
196 encoded_directory = ENCODE_FILE (directory); |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
197 |
9604
d3f06c8c76a1
(Fdirectory_files): Use the new calling convention for compile_pattern.
Karl Heuer <kwzh@gnu.org>
parents:
9399
diff
changeset
|
198 /* 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
|
199 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
|
200 |
72538
85113179d2d1
(directory_files_internal_unwind, directory_files_internal)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71816
diff
changeset
|
201 BLOCK_INPUT; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
202 d = opendir (SDATA (dirfilename)); |
72538
85113179d2d1
(directory_files_internal_unwind, directory_files_internal)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71816
diff
changeset
|
203 UNBLOCK_INPUT; |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
204 if (d == NULL) |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
205 report_file_error ("Opening directory", Fcons (directory, Qnil)); |
153 | 206 |
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
207 /* Unfortunately, we can now invoke expand-file-name and |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
208 file-attributes on filenames, both of which can throw, so we must |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
209 do a proper unwind-protect. */ |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
210 record_unwind_protect (directory_files_internal_unwind, |
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
211 make_save_value (d, 0)); |
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
212 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
213 directory_nbytes = SBYTES (directory); |
17460
6923ae3375f7
(Fdirectory_files): Set re_match_object.
Richard M. Stallman <rms@gnu.org>
parents:
16532
diff
changeset
|
214 re_match_object = Qt; |
153 | 215 |
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
216 /* 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
|
217 #ifndef VMS |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
218 if (directory_nbytes == 0 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
219 || !IS_ANY_SEP (SREF (directory, directory_nbytes - 1))) |
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
220 needsep = 1; |
21393
5f153464fc99
(Fdirectory_files): Use make_uninit_multibyte_string.
Karl Heuer <kwzh@gnu.org>
parents:
21380
diff
changeset
|
221 #endif /* not VMS */ |
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
222 |
33497
280f5481715b
(directory_files_internal) [EAGAIN || EINTR]: Retry
Gerd Moellmann <gerd@gnu.org>
parents:
33347
diff
changeset
|
223 /* Loop reading blocks until EOF or error. */ |
36665
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
224 for (;;) |
153 | 225 { |
36665
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
226 errno = 0; |
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
227 dp = readdir (d); |
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
228 |
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
229 if (dp == NULL && (0 |
36665
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
230 #ifdef EAGAIN |
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
231 || errno == EAGAIN |
36665
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
232 #endif |
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
233 #ifdef EINTR |
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
234 || errno == EINTR |
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
235 #endif |
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
236 )) |
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
237 { QUIT; continue; } |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
238 |
36665
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
239 if (dp == NULL) |
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
240 break; |
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
241 |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
242 if (DIRENTRY_NONEMPTY (dp)) |
153 | 243 { |
22916
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
244 int len; |
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
245 int wanted = 0; |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
246 Lisp_Object name, finalname; |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
247 struct gcpro gcpro1, gcpro2; |
22916
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
248 |
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
249 len = NAMLEN (dp); |
35353
6e4d871d265d
(directory_files_internal): Convert result from readdir
Andrew Innes <andrewi@gnu.org>
parents:
35019
diff
changeset
|
250 name = finalname = make_unibyte_string (dp->d_name, len); |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
251 GCPRO2 (finalname, name); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
252 |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
253 /* Note: ENCODE_FILE can GC; it should protect its argument, |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
254 though. */ |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
255 name = DECODE_FILE (name); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
256 len = SBYTES (name); |
22916
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
257 |
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
258 /* Now that we have unwind_protect in place, we might as well |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
259 allow matching to be interrupted. */ |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
260 immediate_quit = 1; |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
261 QUIT; |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
262 |
485 | 263 if (NILP (match) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
264 || (0 <= re_search (bufp, SDATA (name), len, 0, len, 0))) |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
265 wanted = 1; |
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
266 |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
267 immediate_quit = 0; |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
268 |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
269 if (wanted) |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
270 { |
485 | 271 if (!NILP (full)) |
153 | 272 { |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
273 Lisp_Object fullname; |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
274 int nbytes = len + directory_nbytes + needsep; |
21261
edaef0e79ff0
(Fdirectory_files): In FULL case, compute number of characters
Richard M. Stallman <rms@gnu.org>
parents:
21050
diff
changeset
|
275 int nchars; |
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
|
276 |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
277 fullname = make_uninit_multibyte_string (nbytes, nbytes); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
278 bcopy (SDATA (directory), SDATA (fullname), |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
279 directory_nbytes); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
280 |
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
|
281 if (needsep) |
46423
485da95fb0a6
* dired.c (directory_files_internal): Use SSET.
Ken Raeburn <raeburn@raeburn.org>
parents:
46373
diff
changeset
|
282 SSET (fullname, directory_nbytes, DIRECTORY_SEP); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
283 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
284 bcopy (SDATA (name), |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
285 SDATA (fullname) + directory_nbytes + needsep, |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
286 len); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
287 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
288 nchars = chars_in_text (SDATA (fullname), nbytes); |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
289 |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
290 /* Some bug somewhere. */ |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
291 if (nchars > nbytes) |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
292 abort (); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
293 |
46373
d101e617707c
* dired.c (directory_files_internal): Use STRING_SET_CHARS.
Ken Raeburn <raeburn@raeburn.org>
parents:
46370
diff
changeset
|
294 STRING_SET_CHARS (fullname, nchars); |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
295 if (nchars == nbytes) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
296 STRING_SET_UNIBYTE (fullname); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
297 |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
298 finalname = fullname; |
153 | 299 } |
34667
649d6e831f61
(directory_files_internal): Always return decoded filenames.
Kenichi Handa <handa@m17n.org>
parents:
33497
diff
changeset
|
300 else |
649d6e831f61
(directory_files_internal): Always return decoded filenames.
Kenichi Handa <handa@m17n.org>
parents:
33497
diff
changeset
|
301 finalname = name; |
25192
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 (attrs) |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
304 { |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
305 /* 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
|
306 Use the decoded names for input to Ffile_attributes. */ |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
307 Lisp_Object decoded_fullname, fileattrs; |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
308 struct gcpro gcpro1, gcpro2; |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
309 |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
310 decoded_fullname = fileattrs = Qnil; |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
311 GCPRO2 (decoded_fullname, fileattrs); |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
312 |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
313 /* Both Fexpand_file_name and Ffile_attributes can GC. */ |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
314 decoded_fullname = Fexpand_file_name (name, directory); |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
315 fileattrs = Ffile_attributes (decoded_fullname, id_format); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
316 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
317 list = Fcons (Fcons (finalname, fileattrs), list); |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
318 UNGCPRO; |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
319 } |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
320 else |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
321 list = Fcons (finalname, list); |
153 | 322 } |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
323 |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
324 UNGCPRO; |
153 | 325 } |
326 } | |
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
327 |
72538
85113179d2d1
(directory_files_internal_unwind, directory_files_internal)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71816
diff
changeset
|
328 BLOCK_INPUT; |
153 | 329 closedir (d); |
72538
85113179d2d1
(directory_files_internal_unwind, directory_files_internal)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71816
diff
changeset
|
330 UNBLOCK_INPUT; |
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
331 |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
332 /* Discard the unwind protect. */ |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
333 specpdl_ptr = specpdl + count; |
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
334 |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
335 if (NILP (nosort)) |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
336 list = Fsort (Fnreverse (list), |
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
337 attrs ? Qfile_attributes_lessp : Qstring_lessp); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
338 |
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
339 RETURN_UNGCPRO (list); |
153 | 340 } |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
341 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
342 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
343 DEFUN ("directory-files", Fdirectory_files, Sdirectory_files, 1, 4, 0, |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
344 doc: /* Return a list of names of files in DIRECTORY. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
345 There are three optional arguments: |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
346 If FULL is non-nil, return absolute file names. Otherwise return names |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
347 that are relative to the specified directory. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
348 If MATCH is non-nil, mention only file names that match the regexp MATCH. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
349 If NOSORT is non-nil, the list is not sorted--its order is unpredictable. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
350 NOSORT is useful if you plan to sort the result yourself. */) |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
351 (directory, full, match, nosort) |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
352 Lisp_Object directory, full, match, nosort; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
353 { |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
354 Lisp_Object handler; |
49922
d278896aa13f
(directory_files_internal): Don't expand directory.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49600
diff
changeset
|
355 directory = Fexpand_file_name (directory, Qnil); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
356 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
357 /* 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
|
358 call the corresponding file handler. */ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
359 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
|
360 if (!NILP (handler)) |
53310
2dc8ac2e5bf6
(Fdirectory_files, Fdirectory_files_and_attributes):
Lars Hansen <larsh@soem.dk>
parents:
53112
diff
changeset
|
361 return call5 (handler, Qdirectory_files, directory, |
2dc8ac2e5bf6
(Fdirectory_files, Fdirectory_files_and_attributes):
Lars Hansen <larsh@soem.dk>
parents:
53112
diff
changeset
|
362 full, match, nosort); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
363 |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
364 return directory_files_internal (directory, full, match, nosort, 0, Qnil); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
365 } |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
366 |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
367 DEFUN ("directory-files-and-attributes", Fdirectory_files_and_attributes, |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
368 Sdirectory_files_and_attributes, 1, 5, 0, |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
369 doc: /* Return a list of names of files and their attributes in DIRECTORY. |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
370 There are four optional arguments: |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
371 If FULL is non-nil, return absolute file names. Otherwise return names |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
372 that are relative to the specified directory. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
373 If MATCH is non-nil, mention only file names that match the regexp MATCH. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
374 If NOSORT is non-nil, the list is not sorted--its order is unpredictable. |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
375 NOSORT is useful if you plan to sort the result yourself. |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
376 ID-FORMAT specifies the preferred format of attributes uid and gid, see |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
377 `file-attributes' for further documentation. */) |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
378 (directory, full, match, nosort, id_format) |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
379 Lisp_Object directory, full, match, nosort, id_format; |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
380 { |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
381 Lisp_Object handler; |
49922
d278896aa13f
(directory_files_internal): Don't expand directory.
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
49600
diff
changeset
|
382 directory = Fexpand_file_name (directory, Qnil); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
383 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
384 /* 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
|
385 call the corresponding file handler. */ |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
386 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
|
387 if (!NILP (handler)) |
53310
2dc8ac2e5bf6
(Fdirectory_files, Fdirectory_files_and_attributes):
Lars Hansen <larsh@soem.dk>
parents:
53112
diff
changeset
|
388 return call6 (handler, Qdirectory_files_and_attributes, |
2dc8ac2e5bf6
(Fdirectory_files, Fdirectory_files_and_attributes):
Lars Hansen <larsh@soem.dk>
parents:
53112
diff
changeset
|
389 directory, full, match, nosort, id_format); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
390 |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
391 return directory_files_internal (directory, full, match, nosort, 1, id_format); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
392 } |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
393 |
153 | 394 |
395 Lisp_Object file_name_completion (); | |
396 | |
397 DEFUN ("file-name-completion", Ffile_name_completion, Sfile_name_completion, | |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
398 2, 3, 0, |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
399 doc: /* Complete file name FILE in directory DIRECTORY. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
400 Returns the longest string |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
401 common to all file names in DIRECTORY that start with FILE. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
402 If there is only one and FILE matches it exactly, returns t. |
62185
633425d6cc86
(Ffile_name_completion): Make argument name match its use in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
61700
diff
changeset
|
403 Returns nil if DIRECTORY contains no name starting with FILE. |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
404 |
74689 | 405 If PREDICATE is non-nil, call PREDICATE with each possible |
406 completion (in absolute form) and ignore it if PREDICATE returns nil. | |
407 | |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
408 This function ignores some of the possible completions as |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
409 determined by the variable `completion-ignored-extensions', which see. */) |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
410 (file, directory, predicate) |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
411 Lisp_Object file, directory, predicate; |
153 | 412 { |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
413 Lisp_Object handler; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
414 |
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
415 /* 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
|
416 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
|
417 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
|
418 if (!NILP (handler)) |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
419 return call4 (handler, Qfile_name_completion, file, directory, predicate); |
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
420 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
421 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
422 call the corresponding file handler. */ |
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
423 handler = Ffind_file_name_handler (file, Qfile_name_completion); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
424 if (!NILP (handler)) |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
425 return call4 (handler, Qfile_name_completion, file, directory, predicate); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
426 |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
427 return file_name_completion (file, directory, 0, 0, predicate); |
153 | 428 } |
429 | |
430 DEFUN ("file-name-all-completions", Ffile_name_all_completions, | |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
431 Sfile_name_all_completions, 2, 2, 0, |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
432 doc: /* Return a list of all completions of file name FILE in directory DIRECTORY. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
433 These are all file names in directory DIRECTORY which begin with FILE. */) |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
434 (file, directory) |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
435 Lisp_Object file, directory; |
153 | 436 { |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
437 Lisp_Object handler; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
438 |
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
439 /* 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
|
440 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
|
441 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
|
442 if (!NILP (handler)) |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
443 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
|
444 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
445 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
446 call the corresponding file handler. */ |
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
447 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
|
448 if (!NILP (handler)) |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
449 return call3 (handler, Qfile_name_all_completions, file, directory); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
450 |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
451 return file_name_completion (file, directory, 1, 0, Qnil); |
153 | 452 } |
453 | |
21514 | 454 static int file_name_completion_stat (); |
455 | |
153 | 456 Lisp_Object |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
457 file_name_completion (file, dirname, all_flag, ver_flag, predicate) |
153 | 458 Lisp_Object file, dirname; |
459 int all_flag, ver_flag; | |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
460 Lisp_Object predicate; |
153 | 461 { |
462 DIR *d; | |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
26565
diff
changeset
|
463 int bestmatchsize = 0, skip; |
153 | 464 register int compare, matchsize; |
465 unsigned char *p1, *p2; | |
466 int matchcount = 0; | |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
467 /* If ALL_FLAG is 1, BESTMATCH is the list of all matches, decoded. |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
468 If ALL_FLAG is 0, BESTMATCH is either nil |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
469 or the best match so far, not decoded. */ |
153 | 470 Lisp_Object bestmatch, tem, elt, name; |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
471 Lisp_Object encoded_file; |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
472 Lisp_Object encoded_dir; |
153 | 473 struct stat st; |
474 int directoryp; | |
475 int passcount; | |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
42189
diff
changeset
|
476 int count = SPECPDL_INDEX (); |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
477 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
|
478 |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
26565
diff
changeset
|
479 elt = Qnil; |
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
26565
diff
changeset
|
480 |
153 | 481 #ifdef VMS |
482 extern DIRENTRY * readdirver (); | |
483 | |
484 DIRENTRY *((* readfunc) ()); | |
485 | |
486 /* Filename completion on VMS ignores case, since VMS filesys does. */ | |
487 specbind (Qcompletion_ignore_case, Qt); | |
488 | |
489 readfunc = readdir; | |
490 if (ver_flag) | |
491 readfunc = readdirver; | |
492 file = Fupcase (file); | |
493 #else /* not VMS */ | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
39882
diff
changeset
|
494 CHECK_STRING (file); |
153 | 495 #endif /* not VMS */ |
496 | |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
497 #ifdef FILE_SYSTEM_CASE |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
498 file = FILE_SYSTEM_CASE (file); |
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
499 #endif |
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
500 bestmatch = Qnil; |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
501 encoded_file = encoded_dir = Qnil; |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
502 GCPRO5 (file, dirname, bestmatch, encoded_file, encoded_dir); |
153 | 503 dirname = Fexpand_file_name (dirname, Qnil); |
504 | |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
505 /* Do completion on the encoded file name |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
506 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
|
507 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
|
508 encoded_file = ENCODE_FILE (file); |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
509 |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
510 encoded_dir = ENCODE_FILE (dirname); |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
511 |
153 | 512 /* With passcount = 0, ignore files that end in an ignored extension. |
513 If nothing found then try again with passcount = 1, don't ignore them. | |
514 If looking for all completions, start with passcount = 1, | |
515 so always take even the ignored ones. | |
516 | |
517 ** It would not actually be helpful to the user to ignore any possible | |
518 completions when making a list of them.** */ | |
519 | |
485 | 520 for (passcount = !!all_flag; NILP (bestmatch) && passcount < 2; passcount++) |
153 | 521 { |
48906
141c4fba25c0
(file_name_completion): Fix that change.
Richard M. Stallman <rms@gnu.org>
parents:
48905
diff
changeset
|
522 int inner_count = SPECPDL_INDEX (); |
141c4fba25c0
(file_name_completion): Fix that change.
Richard M. Stallman <rms@gnu.org>
parents:
48905
diff
changeset
|
523 |
72538
85113179d2d1
(directory_files_internal_unwind, directory_files_internal)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71816
diff
changeset
|
524 BLOCK_INPUT; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
525 d = opendir (SDATA (Fdirectory_file_name (encoded_dir))); |
72538
85113179d2d1
(directory_files_internal_unwind, directory_files_internal)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71816
diff
changeset
|
526 UNBLOCK_INPUT; |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
527 if (!d) |
153 | 528 report_file_error ("Opening directory", Fcons (dirname, Qnil)); |
529 | |
48905
0d51b82bd792
(file_name_completion): Close directory on error
Richard M. Stallman <rms@gnu.org>
parents:
48563
diff
changeset
|
530 record_unwind_protect (directory_files_internal_unwind, |
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
531 make_save_value (d, 0)); |
48905
0d51b82bd792
(file_name_completion): Close directory on error
Richard M. Stallman <rms@gnu.org>
parents:
48563
diff
changeset
|
532 |
153 | 533 /* Loop reading blocks */ |
534 /* (att3b compiler bug requires do a null comparison this way) */ | |
535 while (1) | |
536 { | |
537 DIRENTRY *dp; | |
538 int len; | |
539 | |
540 #ifdef VMS | |
541 dp = (*readfunc) (d); | |
542 #else | |
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
543 errno = 0; |
153 | 544 dp = readdir (d); |
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
545 if (dp == NULL && (0 |
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
546 # ifdef EAGAIN |
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
547 || errno == EAGAIN |
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
548 # endif |
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
549 # ifdef EINTR |
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
550 || errno == EINTR |
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
551 # endif |
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
552 )) |
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
553 { QUIT; continue; } |
153 | 554 #endif |
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
555 |
153 | 556 if (!dp) break; |
557 | |
558 len = NAMLEN (dp); | |
559 | |
48906
141c4fba25c0
(file_name_completion): Fix that change.
Richard M. Stallman <rms@gnu.org>
parents:
48905
diff
changeset
|
560 QUIT; |
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
561 if (! DIRENTRY_NONEMPTY (dp) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
562 || len < SCHARS (encoded_file) |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
563 || 0 <= scmp (dp->d_name, SDATA (encoded_file), |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
564 SCHARS (encoded_file))) |
153 | 565 continue; |
566 | |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
567 if (file_name_completion_stat (encoded_dir, dp, &st) < 0) |
153 | 568 continue; |
569 | |
570 directoryp = ((st.st_mode & S_IFMT) == S_IFDIR); | |
571 tem = Qnil; | |
9399
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
572 if (directoryp) |
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
573 { |
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
574 #ifndef TRIVIAL_DIRECTORY_ENTRY |
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
575 #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
|
576 #endif |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
577 /* "." and ".." are never interesting as completions, and are |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
578 actually in the way in a directory with only one file. */ |
9399
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
579 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
|
580 continue; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
581 if (!passcount && len > SCHARS (encoded_file)) |
39878
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
582 /* Ignore directories if they match an element of |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
583 completion-ignored-extensions which ends in a slash. */ |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
584 for (tem = Vcompletion_ignored_extensions; |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
585 CONSP (tem); tem = XCDR (tem)) |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
586 { |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
587 int elt_len; |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
588 |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
589 elt = XCAR (tem); |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
590 if (!STRINGP (elt)) |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
591 continue; |
42189
37cdbf5d5a09
(file_name_completion): Run the elements of
Eli Zaretskii <eliz@gnu.org>
parents:
42169
diff
changeset
|
592 /* Need to encode ELT, since scmp compares unibyte |
37cdbf5d5a09
(file_name_completion): Run the elements of
Eli Zaretskii <eliz@gnu.org>
parents:
42169
diff
changeset
|
593 strings only. */ |
37cdbf5d5a09
(file_name_completion): Run the elements of
Eli Zaretskii <eliz@gnu.org>
parents:
42169
diff
changeset
|
594 elt = ENCODE_FILE (elt); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
595 elt_len = SCHARS (elt) - 1; /* -1 for trailing / */ |
39882
bee6bc3785cb
(file_name_completion): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents:
39878
diff
changeset
|
596 if (elt_len <= 0) |
39878
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
597 continue; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
598 p1 = SDATA (elt); |
39878
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
599 if (p1[elt_len] != '/') |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
600 continue; |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
601 skip = len - elt_len; |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
602 if (skip < 0) |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
603 continue; |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
604 |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
605 if (0 <= scmp (dp->d_name + skip, p1, elt_len)) |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
606 continue; |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
607 break; |
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
608 } |
9399
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
609 } |
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
610 else |
153 | 611 { |
612 /* Compare extensions-to-be-ignored against end of this file name */ | |
613 /* if name is not an exact match against specified string */ | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
614 if (!passcount && len > SCHARS (encoded_file)) |
153 | 615 /* and exit this for loop if a match is found */ |
616 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
|
617 CONSP (tem); tem = XCDR (tem)) |
153 | 618 { |
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25192
diff
changeset
|
619 elt = XCAR (tem); |
9134
37d46d623ed9
(Ffile_name_completion, file_name_completion): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
8800
diff
changeset
|
620 if (!STRINGP (elt)) continue; |
42189
37cdbf5d5a09
(file_name_completion): Run the elements of
Eli Zaretskii <eliz@gnu.org>
parents:
42169
diff
changeset
|
621 /* Need to encode ELT, since scmp compares unibyte |
37cdbf5d5a09
(file_name_completion): Run the elements of
Eli Zaretskii <eliz@gnu.org>
parents:
42169
diff
changeset
|
622 strings only. */ |
37cdbf5d5a09
(file_name_completion): Run the elements of
Eli Zaretskii <eliz@gnu.org>
parents:
42169
diff
changeset
|
623 elt = ENCODE_FILE (elt); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
624 skip = len - SCHARS (elt); |
153 | 625 if (skip < 0) continue; |
626 | |
627 if (0 <= scmp (dp->d_name + skip, | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
628 SDATA (elt), |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
629 SCHARS (elt))) |
153 | 630 continue; |
631 break; | |
632 } | |
633 } | |
634 | |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
635 /* If an ignored-extensions match was found, |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
636 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
|
637 if (!passcount && CONSP (tem)) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
638 continue; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
639 |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
640 if (!passcount) |
153 | 641 { |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
642 Lisp_Object regexps; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
643 Lisp_Object zero; |
9302
4c75b1a56398
(file_name_completion): Don't use XFASTINT as an lvalue.
Karl Heuer <kwzh@gnu.org>
parents:
9171
diff
changeset
|
644 XSETFASTINT (zero, 0); |
153 | 645 |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
646 /* 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
|
647 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
|
648 regexps = XCDR (regexps)) |
153 | 649 { |
38389
42fdd3d4d1ff
(file_name_completion): Pass dp->d_name to
Eli Zaretskii <eliz@gnu.org>
parents:
36665
diff
changeset
|
650 tem = Fstring_match (XCAR (regexps), |
42fdd3d4d1ff
(file_name_completion): Pass dp->d_name to
Eli Zaretskii <eliz@gnu.org>
parents:
36665
diff
changeset
|
651 make_string (dp->d_name, len), zero); |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
652 if (NILP (tem)) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
653 break; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
654 } |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
655 if (CONSP (regexps)) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
656 continue; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
657 } |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
658 |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
659 /* This is a possible completion */ |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
660 if (directoryp) |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
661 { |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
662 /* This completion is a directory; make it end with '/' */ |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
663 name = Ffile_name_as_directory (make_string (dp->d_name, len)); |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
664 } |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
665 else |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
666 name = make_string (dp->d_name, len); |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
667 |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
668 /* Test the predicate, if any. */ |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
669 |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
670 if (!NILP (predicate)) |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
671 { |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
672 Lisp_Object decoded; |
76525
9d80f63e45cf
2007-03-17 Richard Stallman <rms@gnu.org>
Kim F. Storm <storm@cua.dk>
parents:
75216
diff
changeset
|
673 Lisp_Object val; |
9d80f63e45cf
2007-03-17 Richard Stallman <rms@gnu.org>
Kim F. Storm <storm@cua.dk>
parents:
75216
diff
changeset
|
674 struct gcpro gcpro1; |
9d80f63e45cf
2007-03-17 Richard Stallman <rms@gnu.org>
Kim F. Storm <storm@cua.dk>
parents:
75216
diff
changeset
|
675 |
9d80f63e45cf
2007-03-17 Richard Stallman <rms@gnu.org>
Kim F. Storm <storm@cua.dk>
parents:
75216
diff
changeset
|
676 GCPRO1 (name); |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
677 decoded = Fexpand_file_name (DECODE_FILE (name), dirname); |
76525
9d80f63e45cf
2007-03-17 Richard Stallman <rms@gnu.org>
Kim F. Storm <storm@cua.dk>
parents:
75216
diff
changeset
|
678 val = call1 (predicate, decoded); |
9d80f63e45cf
2007-03-17 Richard Stallman <rms@gnu.org>
Kim F. Storm <storm@cua.dk>
parents:
75216
diff
changeset
|
679 UNGCPRO; |
9d80f63e45cf
2007-03-17 Richard Stallman <rms@gnu.org>
Kim F. Storm <storm@cua.dk>
parents:
75216
diff
changeset
|
680 |
9d80f63e45cf
2007-03-17 Richard Stallman <rms@gnu.org>
Kim F. Storm <storm@cua.dk>
parents:
75216
diff
changeset
|
681 if (NILP (val)) |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
682 continue; |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
683 } |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
684 |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
685 /* Suitably record this match. */ |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
686 |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
687 matchcount++; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
688 |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
689 if (all_flag) |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
690 { |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
691 name = DECODE_FILE (name); |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
692 bestmatch = Fcons (name, bestmatch); |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
693 } |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
694 else if (NILP (bestmatch)) |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
695 { |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
696 bestmatch = name; |
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
697 bestmatchsize = SCHARS (name); |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
698 } |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
699 else |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
700 { |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
701 compare = min (bestmatchsize, len); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
702 p1 = SDATA (bestmatch); |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
703 p2 = (unsigned char *) dp->d_name; |
76525
9d80f63e45cf
2007-03-17 Richard Stallman <rms@gnu.org>
Kim F. Storm <storm@cua.dk>
parents:
75216
diff
changeset
|
704 matchsize = scmp (p1, p2, compare); |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
705 if (matchsize < 0) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
706 matchsize = compare; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
707 if (completion_ignore_case) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
708 { |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
709 /* 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
|
710 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
|
711 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
|
712 of the actual match. */ |
15197 | 713 /* This tests that the current file is an exact match |
714 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
|
715 if ((matchsize == len |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
716 && matchsize + !!directoryp |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
717 < SCHARS (bestmatch)) |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
718 || |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
719 /* 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
|
720 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
|
721 of the input. */ |
15197 | 722 /* If there is more than one exact match aside from |
723 case, and one of them is exact including case, | |
724 prefer that one. */ | |
725 /* This == checks that, of current file and BESTMATCH, | |
726 either both or neither are exact. */ | |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
727 (((matchsize == len) |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
728 == |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
729 (matchsize + !!directoryp |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
730 == SCHARS (bestmatch))) |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
731 && !bcmp (p2, SDATA (encoded_file), SCHARS (encoded_file)) |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
732 && bcmp (p1, SDATA (encoded_file), SCHARS (encoded_file)))) |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
733 bestmatch = name; |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
734 } |
4778
76f267188bbd
(file_name_completion): Install case-preserving changes from Emacs 18
Brian Fox <bfox@gnu.org>
parents:
4696
diff
changeset
|
735 |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
736 /* 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
|
737 slash does too. */ |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
738 if (directoryp |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
739 && compare == matchsize |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
740 && 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
|
741 && IS_ANY_SEP (p1[matchsize])) |
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
742 matchsize++; |
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
743 bestmatchsize = matchsize; |
153 | 744 } |
745 } | |
48906
141c4fba25c0
(file_name_completion): Fix that change.
Richard M. Stallman <rms@gnu.org>
parents:
48905
diff
changeset
|
746 /* This closes the directory. */ |
141c4fba25c0
(file_name_completion): Fix that change.
Richard M. Stallman <rms@gnu.org>
parents:
48905
diff
changeset
|
747 bestmatch = unbind_to (inner_count, bestmatch); |
153 | 748 } |
749 | |
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
750 UNGCPRO; |
48906
141c4fba25c0
(file_name_completion): Fix that change.
Richard M. Stallman <rms@gnu.org>
parents:
48905
diff
changeset
|
751 bestmatch = unbind_to (count, bestmatch); |
153 | 752 |
485 | 753 if (all_flag || NILP (bestmatch)) |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
754 { |
21050
13e905e1d33c
Include charset.h and coding.h.
Kenichi Handa <handa@m17n.org>
parents:
20870
diff
changeset
|
755 if (STRINGP (bestmatch)) |
13e905e1d33c
Include charset.h and coding.h.
Kenichi Handa <handa@m17n.org>
parents:
20870
diff
changeset
|
756 bestmatch = DECODE_FILE (bestmatch); |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
757 return bestmatch; |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
758 } |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
759 if (matchcount == 1 && bestmatchsize == SCHARS (file)) |
153 | 760 return Qt; |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
761 bestmatch = Fsubstring (bestmatch, make_number (0), |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
762 make_number (bestmatchsize)); |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
763 /* 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
|
764 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
|
765 bestmatch = DECODE_FILE (bestmatch); |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
766 return bestmatch; |
153 | 767 } |
768 | |
42169
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
769 /* Compare exactly LEN chars of strings at S1 and S2, |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
770 ignoring case if appropriate. |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
771 Return -1 if strings match, |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
772 else number of chars that match at the beginning. */ |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
773 |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
774 static int |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
775 scmp (s1, s2, len) |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
776 register unsigned char *s1, *s2; |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
777 int len; |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
778 { |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
779 register int l = len; |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
780 |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
781 if (completion_ignore_case) |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
782 { |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
783 while (l && DOWNCASE (*s1++) == DOWNCASE (*s2++)) |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
784 l--; |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
785 } |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
786 else |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
787 { |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
788 while (l && *s1++ == *s2++) |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
789 l--; |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
790 } |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
791 if (l == 0) |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
792 return -1; |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
793 else |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
794 return len - l; |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
795 } |
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
796 |
21514 | 797 static int |
153 | 798 file_name_completion_stat (dirname, dp, st_addr) |
799 Lisp_Object dirname; | |
800 DIRENTRY *dp; | |
801 struct stat *st_addr; | |
802 { | |
803 int len = NAMLEN (dp); | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
804 int pos = SCHARS (dirname); |
7286
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
805 int value; |
153 | 806 char *fullname = (char *) alloca (len + pos + 2); |
807 | |
16246
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
808 #ifdef MSDOS |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
809 #if __DJGPP__ > 1 |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
810 /* 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
|
811 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
|
812 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
|
813 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
|
814 |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
815 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
|
816 |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
817 _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
|
818 #endif /* __DJGPP__ > 1 */ |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
819 #endif /* MSDOS */ |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
820 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
821 bcopy (SDATA (dirname), fullname, pos); |
153 | 822 #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
|
823 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
|
824 fullname[pos++] = DIRECTORY_SEP; |
153 | 825 #endif |
826 | |
827 bcopy (dp->d_name, fullname + pos, len); | |
828 fullname[pos + len] = 0; | |
829 | |
5432
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
830 #ifdef S_IFLNK |
7286
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
831 /* 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
|
832 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
|
833 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
|
834 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
|
835 stat (fullname, st_addr); |
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
836 return value; |
5432
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
837 #else |
16246
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
838 value = stat (fullname, st_addr); |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
839 #ifdef MSDOS |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
840 #if __DJGPP__ > 1 |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
841 _djstat_flags = save_djstat_flags; |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
842 #endif /* __DJGPP__ > 1 */ |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
843 #endif /* MSDOS */ |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
844 return value; |
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
845 #endif /* S_IFLNK */ |
153 | 846 } |
847 | |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
848 #ifdef VMS |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
849 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
850 DEFUN ("file-name-all-versions", Ffile_name_all_versions, |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
851 Sfile_name_all_versions, 2, 2, 0, |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
852 doc: /* Return a list of all versions of file name FILE in directory DIRECTORY. */) |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
853 (file, directory) |
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
854 Lisp_Object file, directory; |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
855 { |
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
856 return file_name_completion (file, directory, 1, 1, Qnil); |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
857 } |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
858 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
859 DEFUN ("file-version-limit", Ffile_version_limit, Sfile_version_limit, 1, 1, 0, |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
860 doc: /* Return the maximum number of versions allowed for FILE. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
861 Returns nil if the file cannot be opened or if there is no version limit. */) |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
862 (filename) |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
863 Lisp_Object filename; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
864 { |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
865 Lisp_Object retval; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
866 struct FAB fab; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
867 struct RAB rab; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
868 struct XABFHC xabfhc; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
869 int status; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
870 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
871 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
|
872 fab = cc$rms_fab; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
873 xabfhc = cc$rms_xabfhc; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
874 fab.fab$l_fna = SDATA (filename); |
1172
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
875 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
|
876 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
|
877 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
|
878 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
|
879 return Qnil; |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
880 sys$close (&fab, 0, 0); |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
881 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
|
882 return Qnil; /* No version limit */ |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
883 else |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
884 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
|
885 } |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
886 |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
887 #endif /* VMS */ |
c942305917c1
[VMS]: Include string.h, rms.h, rmsdef.h.
Richard M. Stallman <rms@gnu.org>
parents:
847
diff
changeset
|
888 |
153 | 889 Lisp_Object |
890 make_time (time) | |
24685
545bf3abb3a2
(make_time): Make argument type be time_t.
Andrew Innes <andrewi@gnu.org>
parents:
24581
diff
changeset
|
891 time_t time; |
153 | 892 { |
893 return Fcons (make_number (time >> 16), | |
894 Fcons (make_number (time & 0177777), Qnil)); | |
895 } | |
896 | |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
897 DEFUN ("file-attributes", Ffile_attributes, Sfile_attributes, 1, 2, 0, |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
898 doc: /* Return a list of attributes of file FILENAME. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
899 Value is nil if specified file cannot be opened. |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
900 |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
901 ID-FORMAT specifies the preferred format of attributes uid and gid (see |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
902 below) - valid values are 'string and 'integer. The latter is the default, |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
903 but we plan to change that, so you should specify a non-nil value for |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
904 ID-FORMAT if you use the returned uid or gid. |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
905 |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
906 Elements of the attribute list are: |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
907 0. t for directory, string (name linked to) for symbolic link, or nil. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
908 1. Number of links to file. |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
909 2. File uid as a string or an integer. If a string value cannot be |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
910 looked up, the integer value is returned. |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
911 3. File gid, likewise. |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
912 4. Last access time, as a list of two integers. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
913 First integer has high-order 16 bits of time, second has low 16 bits. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
914 5. Last modification time, likewise. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
915 6. Last status change time, likewise. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
916 7. Size in bytes. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
917 This is a floating point number if the size is too large for an integer. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
918 8. File modes, as a string of ten letters or dashes as in ls -l. |
78501 | 919 9. t if file's gid would change if file were deleted and recreated. |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
920 10. inode number. If inode number is larger than the Emacs integer, |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
921 this is a cons cell containing two integers: first the high part, |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
922 then the low 16 bits. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
923 11. Device number. If it is larger than the Emacs integer, this is |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
924 a cons cell, similar to the inode number. */) |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
925 (filename, id_format) |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
926 Lisp_Object filename, id_format; |
153 | 927 { |
928 Lisp_Object values[12]; | |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
929 Lisp_Object encoded; |
153 | 930 struct stat s; |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
931 struct passwd *pw; |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
932 struct group *gr; |
35019
45cf8bfedaf2
(Ffile_attributes): Fix last change, removing BSD4_3
Gerd Moellmann <gerd@gnu.org>
parents:
34970
diff
changeset
|
933 #if defined (BSD4_2) || defined (BSD4_3) |
34970
947b53b0a1da
(directory_files_internal): Fix a typo in a comment.
Eli Zaretskii <eliz@gnu.org>
parents:
34667
diff
changeset
|
934 Lisp_Object dirname; |
153 | 935 struct stat sdir; |
34970
947b53b0a1da
(directory_files_internal): Fix a typo in a comment.
Eli Zaretskii <eliz@gnu.org>
parents:
34667
diff
changeset
|
936 #endif |
153 | 937 char modes[10]; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
938 Lisp_Object handler; |
60900
e2f52fa7f394
(Ffile_attributes): Add a missing gcpro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60892
diff
changeset
|
939 struct gcpro gcpro1; |
75216
4ffeb7d1d7ba
(Ffile_attributes): Fix last change.
Eli Zaretskii <eliz@gnu.org>
parents:
75205
diff
changeset
|
940 EMACS_INT uid, gid, ino; |
153 | 941 |
942 filename = Fexpand_file_name (filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
943 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
944 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
945 call the corresponding file handler. */ |
7028
6915bf781a38
Pass operation to Ffind_file_name_handler.
Karl Heuer <kwzh@gnu.org>
parents:
6860
diff
changeset
|
946 handler = Ffind_file_name_handler (filename, Qfile_attributes); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
947 if (!NILP (handler)) |
54905
da06b9bd886b
(Ffile_attributes): Don't pass extra nil arg to file-handler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53636
diff
changeset
|
948 { /* Only pass the extra arg if it is used to help backward compatibility |
da06b9bd886b
(Ffile_attributes): Don't pass extra nil arg to file-handler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53636
diff
changeset
|
949 with old file handlers which do not implement the new arg. --Stef */ |
da06b9bd886b
(Ffile_attributes): Don't pass extra nil arg to file-handler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53636
diff
changeset
|
950 if (NILP (id_format)) |
da06b9bd886b
(Ffile_attributes): Don't pass extra nil arg to file-handler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53636
diff
changeset
|
951 return call2 (handler, Qfile_attributes, filename); |
da06b9bd886b
(Ffile_attributes): Don't pass extra nil arg to file-handler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53636
diff
changeset
|
952 else |
da06b9bd886b
(Ffile_attributes): Don't pass extra nil arg to file-handler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53636
diff
changeset
|
953 return call3 (handler, Qfile_attributes, filename, id_format); |
da06b9bd886b
(Ffile_attributes): Don't pass extra nil arg to file-handler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53636
diff
changeset
|
954 } |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
955 |
60900
e2f52fa7f394
(Ffile_attributes): Add a missing gcpro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60892
diff
changeset
|
956 GCPRO1 (filename); |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
957 encoded = ENCODE_FILE (filename); |
60900
e2f52fa7f394
(Ffile_attributes): Add a missing gcpro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60892
diff
changeset
|
958 UNGCPRO; |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
959 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
960 if (lstat (SDATA (encoded), &s) < 0) |
153 | 961 return Qnil; |
962 | |
963 switch (s.st_mode & S_IFMT) | |
964 { | |
965 default: | |
966 values[0] = Qnil; break; | |
967 case S_IFDIR: | |
968 values[0] = Qt; break; | |
969 #ifdef S_IFLNK | |
970 case S_IFLNK: | |
971 values[0] = Ffile_symlink_p (filename); break; | |
972 #endif | |
973 } | |
974 values[1] = make_number (s.st_nlink); | |
75205
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
975 /* When make_fixnum_or_float is called below with types that are |
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
976 shorter than an int (e.g., `short'), GCC whines about comparison |
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
977 being always false due to limited range of data type. Fix by |
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
978 copying s.st_uid and s.st_gid into int variables. */ |
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
979 uid = s.st_uid; |
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
980 gid = s.st_gid; |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
981 if (NILP (id_format) || EQ (id_format, Qinteger)) |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
982 { |
75205
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
983 values[2] = make_fixnum_or_float (uid); |
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
984 values[3] = make_fixnum_or_float (gid); |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
985 } |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
986 else |
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
987 { |
71816
0b0685327de8
Include blockinput.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71462
diff
changeset
|
988 BLOCK_INPUT; |
75205
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
989 pw = (struct passwd *) getpwuid (uid); |
75180
cf3da57bf8a5
(Ffile_attributes): Use floats for large uids/gids.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
74689
diff
changeset
|
990 values[2] = (pw ? build_string (pw->pw_name) |
75205
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
991 : make_fixnum_or_float (uid)); |
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
992 gr = (struct group *) getgrgid (gid); |
75180
cf3da57bf8a5
(Ffile_attributes): Use floats for large uids/gids.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
74689
diff
changeset
|
993 values[3] = (gr ? build_string (gr->gr_name) |
75205
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
994 : make_fixnum_or_float (gid)); |
71816
0b0685327de8
Include blockinput.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71462
diff
changeset
|
995 UNBLOCK_INPUT; |
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
996 } |
153 | 997 values[4] = make_time (s.st_atime); |
998 values[5] = make_time (s.st_mtime); | |
999 values[6] = make_time (s.st_ctime); | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25645
diff
changeset
|
1000 values[7] = make_number (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
|
1001 /* 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
|
1002 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
|
1003 values[7] = make_float ((double)s.st_size); |
48563
26e19e854ef3
(Ffile_attributes): Don't return negative file sizes for
Jason Rumney <jasonr@gnu.org>
parents:
46583
diff
changeset
|
1004 /* If the size is negative, and its type is long, convert it back to |
26e19e854ef3
(Ffile_attributes): Don't return negative file sizes for
Jason Rumney <jasonr@gnu.org>
parents:
46583
diff
changeset
|
1005 positive. */ |
26e19e854ef3
(Ffile_attributes): Don't return negative file sizes for
Jason Rumney <jasonr@gnu.org>
parents:
46583
diff
changeset
|
1006 if (s.st_size < 0 && sizeof (s.st_size) == sizeof (long)) |
26e19e854ef3
(Ffile_attributes): Don't return negative file sizes for
Jason Rumney <jasonr@gnu.org>
parents:
46583
diff
changeset
|
1007 values[7] = make_float ((double) ((unsigned long) s.st_size)); |
26e19e854ef3
(Ffile_attributes): Don't return negative file sizes for
Jason Rumney <jasonr@gnu.org>
parents:
46583
diff
changeset
|
1008 |
153 | 1009 filemodestring (&s, modes); |
1010 values[8] = make_string (modes, 10); | |
35019
45cf8bfedaf2
(Ffile_attributes): Fix last change, removing BSD4_3
Gerd Moellmann <gerd@gnu.org>
parents:
34970
diff
changeset
|
1011 #if defined (BSD4_2) || defined (BSD4_3) /* file gid will be dir gid */ |
153 | 1012 dirname = Ffile_name_directory (filename); |
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
1013 if (! NILP (dirname)) |
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
1014 encoded = ENCODE_FILE (dirname); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
1015 if (! NILP (dirname) && stat (SDATA (encoded), &sdir) == 0) |
75205
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
1016 values[9] = (sdir.st_gid != gid) ? Qt : Qnil; |
153 | 1017 else /* if we can't tell, assume worst */ |
1018 values[9] = Qt; | |
1019 #else /* file gid will be egid */ | |
75205
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
1020 values[9] = (gid != getegid ()) ? Qt : Qnil; |
153 | 1021 #endif /* BSD4_2 (or BSD4_3) */ |
75205
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
1022 /* Shut up GCC warnings in FIXNUM_OVERFLOW_P below. */ |
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
1023 ino = s.st_ino; |
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
1024 if (FIXNUM_OVERFLOW_P (ino)) |
17868
bc2cf7c40435
(Ffile_attributes): Return inode number as a cons only if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
17460
diff
changeset
|
1025 /* 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
|
1026 16 bits. */ |
75205
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
1027 values[10] = Fcons (make_number (ino >> 16), |
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
1028 make_number (ino & 0xffff)); |
17868
bc2cf7c40435
(Ffile_attributes): Return inode number as a cons only if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
17460
diff
changeset
|
1029 else |
bc2cf7c40435
(Ffile_attributes): Return inode number as a cons only if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
17460
diff
changeset
|
1030 /* But keep the most common cases as integers. */ |
75205
248d2b5b7577
(Ffile_attributes): Copy some members of `struct stat' into int's to avoid
Eli Zaretskii <eliz@gnu.org>
parents:
75180
diff
changeset
|
1031 values[10] = make_number (ino); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25645
diff
changeset
|
1032 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25645
diff
changeset
|
1033 /* Likewise for device. */ |
39637
670f23724a65
(Ffile_attributes): Use FIXNUM_OVERFLOW_P.
Gerd Moellmann <gerd@gnu.org>
parents:
39294
diff
changeset
|
1034 if (FIXNUM_OVERFLOW_P (s.st_dev)) |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25645
diff
changeset
|
1035 values[11] = Fcons (make_number (s.st_dev >> 16), |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25645
diff
changeset
|
1036 make_number (s.st_dev & 0xffff)); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25645
diff
changeset
|
1037 else |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25645
diff
changeset
|
1038 values[11] = make_number (s.st_dev); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25645
diff
changeset
|
1039 |
153 | 1040 return Flist (sizeof(values) / sizeof(values[0]), values); |
1041 } | |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1042 |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1043 DEFUN ("file-attributes-lessp", Ffile_attributes_lessp, Sfile_attributes_lessp, 2, 2, 0, |
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
1044 doc: /* Return t if first arg file attributes list is less than second. |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
1045 Comparison is in lexicographic order and case is significant. */) |
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
1046 (f1, f2) |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1047 Lisp_Object f1, f2; |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1048 { |
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1049 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
|
1050 } |
153 | 1051 |
21514 | 1052 void |
153 | 1053 syms_of_dired () |
1054 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
1055 Qdirectory_files = intern ("directory-files"); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1056 Qdirectory_files_and_attributes = intern ("directory-files-and-attributes"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
1057 Qfile_name_completion = intern ("file-name-completion"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
1058 Qfile_name_all_completions = intern ("file-name-all-completions"); |
847 | 1059 Qfile_attributes = intern ("file-attributes"); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1060 Qfile_attributes_lessp = intern ("file-attributes-lessp"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
1061 |
16225
ec322e4ffa16
(syms_of_dired): staticpro Qdirectory_files, Qfile_name_completion,
Erik Naggum <erik@naggum.no>
parents:
15626
diff
changeset
|
1062 staticpro (&Qdirectory_files); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1063 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
|
1064 staticpro (&Qfile_name_completion); |
ec322e4ffa16
(syms_of_dired): staticpro Qdirectory_files, Qfile_name_completion,
Erik Naggum <erik@naggum.no>
parents:
15626
diff
changeset
|
1065 staticpro (&Qfile_name_all_completions); |
ec322e4ffa16
(syms_of_dired): staticpro Qdirectory_files, Qfile_name_completion,
Erik Naggum <erik@naggum.no>
parents:
15626
diff
changeset
|
1066 staticpro (&Qfile_attributes); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1067 staticpro (&Qfile_attributes_lessp); |
16225
ec322e4ffa16
(syms_of_dired): staticpro Qdirectory_files, Qfile_name_completion,
Erik Naggum <erik@naggum.no>
parents:
15626
diff
changeset
|
1068 |
153 | 1069 defsubr (&Sdirectory_files); |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1070 defsubr (&Sdirectory_files_and_attributes); |
153 | 1071 defsubr (&Sfile_name_completion); |
1072 #ifdef VMS | |
1073 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
|
1074 defsubr (&Sfile_version_limit); |
153 | 1075 #endif /* VMS */ |
1076 defsubr (&Sfile_name_all_completions); | |
1077 defsubr (&Sfile_attributes); | |
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1078 defsubr (&Sfile_attributes_lessp); |
153 | 1079 |
1080 #ifdef VMS | |
1081 Qcompletion_ignore_case = intern ("completion-ignore-case"); | |
1082 staticpro (&Qcompletion_ignore_case); | |
1083 #endif /* VMS */ | |
1084 | |
1085 DEFVAR_LISP ("completion-ignored-extensions", &Vcompletion_ignored_extensions, | |
68323
7e038f82befc
(syms_of_dired) <completion-ignored-extensions>: Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
65764
diff
changeset
|
1086 doc: /* Completion ignores file names ending in any string in this list. |
7e038f82befc
(syms_of_dired) <completion-ignored-extensions>: Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
65764
diff
changeset
|
1087 It does not ignore them if all possible completions end in one of |
7e038f82befc
(syms_of_dired) <completion-ignored-extensions>: Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
65764
diff
changeset
|
1088 these strings or when displaying a list of completions. |
7e038f82befc
(syms_of_dired) <completion-ignored-extensions>: Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
65764
diff
changeset
|
1089 It ignores directory names if they match any string in this list which |
7e038f82befc
(syms_of_dired) <completion-ignored-extensions>: Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
65764
diff
changeset
|
1090 ends in a slash. */); |
153 | 1091 Vcompletion_ignored_extensions = Qnil; |
1092 } | |
52401 | 1093 |
1094 /* arch-tag: 1ac8deca-4d8f-4d41-ade9-089154d98c03 | |
1095 (do not change this comment) */ |