Mercurial > emacs
annotate src/dired.c @ 112453:06719a229a46 default tip
* calc/calc.el (calc-default-power-reference-level)
(calc-default-field-reference-level): New variables.
* calc/calc-units.el (math-standard-units): Add dB and Np.
(math-logunits): New variable.
(math-extract-logunits, math-logcombine, calcFunc-luplus)
(calcFunc-luminus, calc-luplus, calc-luminus, math-logunit-level)
(calcFunc-fieldlevel, calcFunc-powerlevel, calc-level): New
functions.
(math-find-base-units-rec): Add entry for ln(10).
* calc/calc-help.el (calc-u-prefix-help): Add logarithmic help.
(calc-ul-prefix-help): New function.
* calc/calc-ext.el (calc-init-extensions): Autoload new units
functions. Add keybindings for new units functions.
| author | Jay Belanger <jay.p.belanger@gmail.com> |
|---|---|
| date | Sun, 23 Jan 2011 23:08:04 -0600 |
| parents | 42e22c4f06b7 |
| children |
| 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, |
|
112218
376148b31b5e
Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents:
109691
diff
changeset
|
3 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. |
| 153 | 4 |
| 5 This file is part of GNU Emacs. | |
| 6 | |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94890
diff
changeset
|
7 GNU Emacs is free software: you can redistribute it and/or modify |
| 153 | 8 it under the terms of the GNU General Public License as published by |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94890
diff
changeset
|
9 the Free Software Foundation, either version 3 of the License, or |
|
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94890
diff
changeset
|
10 (at your option) any later version. |
| 153 | 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 | |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94890
diff
changeset
|
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 153 | 19 |
| 20 | |
|
7896
ec45b17e09b3
Put stdio.h, sys/types.h and sys/stat.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
21 #include <config.h> |
|
ec45b17e09b3
Put stdio.h, sys/types.h and sys/stat.h after config.h.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
22 |
| 153 | 23 #include <stdio.h> |
| 24 #include <sys/types.h> | |
| 25 #include <sys/stat.h> | |
|
105669
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105458
diff
changeset
|
26 #include <setjmp.h> |
| 153 | 27 |
|
61700
8a54ce1fae6a
Remove reference to defunct vms-pwd.h.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60900
diff
changeset
|
28 #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
|
29 #include <pwd.h> |
|
61700
8a54ce1fae6a
Remove reference to defunct vms-pwd.h.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60900
diff
changeset
|
30 #endif |
|
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
31 #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
|
32 |
|
36064
b063eac9a89d
(directory_files_internal): Initialize errno.
Gerd Moellmann <gerd@gnu.org>
parents:
35353
diff
changeset
|
33 #include <errno.h> |
| 21514 | 34 #include <unistd.h> |
| 35 | |
|
2117
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
36 /* The 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
|
37 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
|
38 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
|
39 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
|
40 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
|
41 <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
|
42 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
|
43 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
|
44 |
|
cb164a9e44ba
* dired.c (NAMLEN): Never use d_nameln to get the length of the
Jim Blandy <jimb@redhat.com>
parents:
1681
diff
changeset
|
45 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
|
46 #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
|
47 |
|
109585
4504e82595bb
Replace tests for SYSV_SYSTEM_DIR with HAVE_DIRENT_H, set via autoconf
Jan D <jan.h.d@swipnet.se>
parents:
109573
diff
changeset
|
48 #ifdef HAVE_DIRENT_H |
| 153 | 49 |
| 50 #include <dirent.h> | |
| 51 #define DIRENTRY struct dirent | |
| 52 | |
|
109585
4504e82595bb
Replace tests for SYSV_SYSTEM_DIR with HAVE_DIRENT_H, set via autoconf
Jan D <jan.h.d@swipnet.se>
parents:
109573
diff
changeset
|
53 #else /* not HAVE_DIRENT_H */ |
| 153 | 54 |
| 55 #include <sys/dir.h> | |
|
26565
b50a0a8a0825
Include sys/stat.h. Declare filemodestring.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
56 #include <sys/stat.h> |
|
b50a0a8a0825
Include sys/stat.h. Declare filemodestring.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
57 |
| 153 | 58 #define DIRENTRY struct direct |
| 59 | |
|
109516
68ca98ae70fb
Make building under stricter warning flags somewhat cleaner.
Juanma Barranquero <lekktu@gmail.com>
parents:
109179
diff
changeset
|
60 extern DIR *opendir (char *); |
|
68ca98ae70fb
Make building under stricter warning flags somewhat cleaner.
Juanma Barranquero <lekktu@gmail.com>
parents:
109179
diff
changeset
|
61 extern struct direct *readdir (DIR *); |
| 153 | 62 |
|
109585
4504e82595bb
Replace tests for SYSV_SYSTEM_DIR with HAVE_DIRENT_H, set via autoconf
Jan D <jan.h.d@swipnet.se>
parents:
109573
diff
changeset
|
63 #endif /* HAVE_DIRENT_H */ |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
64 |
|
109691
fc06750bcd9d
* dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of the MSDOS definition.
Ken Brown <kbrown@cornell.edu>
parents:
107976
diff
changeset
|
65 #ifdef MSDOS |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
66 #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
|
67 #else |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
68 #define DIRENTRY_NONEMPTY(p) ((p)->d_ino) |
| 153 | 69 #endif |
| 70 | |
| 71 #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
|
72 #include "systime.h" |
| 153 | 73 #include "buffer.h" |
| 74 #include "commands.h" | |
| 88352 | 75 #include "character.h" |
|
21050
13e905e1d33c
Include charset.h and coding.h.
Kenichi Handa <handa@m17n.org>
parents:
20870
diff
changeset
|
76 #include "charset.h" |
|
13e905e1d33c
Include charset.h and coding.h.
Kenichi Handa <handa@m17n.org>
parents:
20870
diff
changeset
|
77 #include "coding.h" |
| 153 | 78 #include "regex.h" |
|
71816
0b0685327de8
Include blockinput.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71462
diff
changeset
|
79 #include "blockinput.h" |
| 153 | 80 |
|
9604
d3f06c8c76a1
(Fdirectory_files): Use the new calling convention for compile_pattern.
Karl Heuer <kwzh@gnu.org>
parents:
9399
diff
changeset
|
81 /* Returns a search buffer, with a fastmap allocated and ready to go. */ |
|
109639
8ee3605b9d8a
Fix changes in revnos 100982..100984 for Windows build.
Juanma Barranquero <lekktu@gmail.com>
parents:
109637
diff
changeset
|
82 extern struct re_pattern_buffer *compile_pattern (Lisp_Object, |
|
8ee3605b9d8a
Fix changes in revnos 100982..100984 for Windows build.
Juanma Barranquero <lekktu@gmail.com>
parents:
109637
diff
changeset
|
83 struct re_registers *, |
|
8ee3605b9d8a
Fix changes in revnos 100982..100984 for Windows build.
Juanma Barranquero <lekktu@gmail.com>
parents:
109637
diff
changeset
|
84 Lisp_Object, int, int); |
|
2371
48f808108031
(searchbuf): Declare here.
Richard M. Stallman <rms@gnu.org>
parents:
2183
diff
changeset
|
85 |
|
26565
b50a0a8a0825
Include sys/stat.h. Declare filemodestring.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
86 /* From filemode.c. Can't go in Lisp.h because of `stat'. */ |
|
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
109097
diff
changeset
|
87 extern void filemodestring (struct stat *, char *); |
|
26565
b50a0a8a0825
Include sys/stat.h. Declare filemodestring.
Dave Love <fx@gnu.org>
parents:
26088
diff
changeset
|
88 |
| 153 | 89 /* if system does not have symbolic links, it does not have lstat. |
| 90 In that case, use ordinary stat instead. */ | |
| 91 | |
| 92 #ifndef S_IFLNK | |
| 93 #define lstat stat | |
| 94 #endif | |
| 95 | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
96 Lisp_Object Qdirectory_files; |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
97 Lisp_Object Qdirectory_files_and_attributes; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
98 Lisp_Object Qfile_name_completion; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
99 Lisp_Object Qfile_name_all_completions; |
| 847 | 100 Lisp_Object Qfile_attributes; |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
101 Lisp_Object Qfile_attributes_lessp; |
|
42169
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
102 |
|
109555
05e7e7c46ff0
Use const, move declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109516
diff
changeset
|
103 static int scmp (const unsigned char *, const unsigned char *, int); |
| 153 | 104 |
|
103860
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
105 #ifdef WINDOWSNT |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
106 Lisp_Object |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
107 directory_files_internal_w32_unwind (Lisp_Object arg) |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
108 { |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
109 Vw32_get_true_file_attributes = arg; |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
110 return Qnil; |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
111 } |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
112 #endif |
|
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
113 |
|
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
114 Lisp_Object |
|
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
115 directory_files_internal_unwind (Lisp_Object dh) |
|
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
116 { |
|
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
117 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
|
118 BLOCK_INPUT; |
|
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
119 closedir (d); |
|
72538
85113179d2d1
(directory_files_internal_unwind, directory_files_internal)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71816
diff
changeset
|
120 UNBLOCK_INPUT; |
|
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
121 return Qnil; |
|
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
122 } |
|
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
123 |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
124 /* 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
|
125 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
|
126 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
|
127 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
|
128 |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
129 Lisp_Object |
|
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
130 directory_files_internal (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort, int attrs, Lisp_Object id_format) |
| 153 | 131 { |
| 132 DIR *d; | |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
133 int directory_nbytes; |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
134 Lisp_Object list, dirfilename, encoded_directory; |
|
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
26565
diff
changeset
|
135 struct re_pattern_buffer *bufp = NULL; |
|
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
136 int needsep = 0; |
|
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
42189
diff
changeset
|
137 int count = SPECPDL_INDEX (); |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
138 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
|
33497
280f5481715b
(directory_files_internal) [EAGAIN || EINTR]: Retry
Gerd Moellmann <gerd@gnu.org>
parents:
33347
diff
changeset
|
139 DIRENTRY *dp; |
|
103860
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
140 #ifdef WINDOWSNT |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
141 Lisp_Object w32_save = Qnil; |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
142 #endif |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
143 |
|
21380
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
144 /* 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
|
145 Ffuncall, and cause a GC. */ |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
146 list = encoded_directory = dirfilename = Qnil; |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
147 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
|
148 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
|
149 |
| 485 | 150 if (!NILP (match)) |
| 153 | 151 { |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
39882
diff
changeset
|
152 CHECK_STRING (match); |
| 808 | 153 |
| 154 /* MATCH might be a flawed regular expression. Rather than | |
| 14036 | 155 catching and signaling our own errors, we just call |
| 808 | 156 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
|
157 /* Pass 1 for the MULTIBYTE arg |
|
8e7e791c49ca
(Fdirectory_files): Fix arg to compile_pattern.
Richard M. Stallman <rms@gnu.org>
parents:
19816
diff
changeset
|
158 because we do make multibyte strings if the contents warrant. */ |
|
71462
7579ed1c76f1
(directory_files_internal) [WINDOWSNT]: Find files case-insensitively.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
159 # ifdef WINDOWSNT |
|
7579ed1c76f1
(directory_files_internal) [WINDOWSNT]: Find files case-insensitively.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
160 /* Windows users want case-insensitive wildcards. */ |
|
7579ed1c76f1
(directory_files_internal) [WINDOWSNT]: Find files case-insensitively.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
161 bufp = compile_pattern (match, 0, |
|
7579ed1c76f1
(directory_files_internal) [WINDOWSNT]: Find files case-insensitively.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
162 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
|
163 # else /* !WINDOWSNT */ |
|
20870
3b8d9a7be50c
(Fdirectory_files): Call compile_pattern the new way.
Richard M. Stallman <rms@gnu.org>
parents:
20634
diff
changeset
|
164 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
|
165 # endif /* !WINDOWSNT */ |
| 153 | 166 } |
| 167 | |
|
34970
947b53b0a1da
(directory_files_internal): Fix a typo in a comment.
Eli Zaretskii <eliz@gnu.org>
parents:
34667
diff
changeset
|
168 /* 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
|
169 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
|
170 indirectly. */ |
|
94178
e65203929930
(directory_files_internal, file_name_completion):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94145
diff
changeset
|
171 if (STRING_MULTIBYTE (dirfilename)) |
|
e65203929930
(directory_files_internal, file_name_completion):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94145
diff
changeset
|
172 dirfilename = ENCODE_FILE (dirfilename); |
|
e65203929930
(directory_files_internal, file_name_completion):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94145
diff
changeset
|
173 encoded_directory = (STRING_MULTIBYTE (directory) |
|
e65203929930
(directory_files_internal, file_name_completion):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94145
diff
changeset
|
174 ? ENCODE_FILE (directory) : directory); |
|
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
175 |
|
9604
d3f06c8c76a1
(Fdirectory_files): Use the new calling convention for compile_pattern.
Karl Heuer <kwzh@gnu.org>
parents:
9399
diff
changeset
|
176 /* 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
|
177 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
|
178 |
|
72538
85113179d2d1
(directory_files_internal_unwind, directory_files_internal)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71816
diff
changeset
|
179 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
|
180 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
|
181 UNBLOCK_INPUT; |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
182 if (d == NULL) |
|
14067
afef050ad4e6
(Fdirectory_files, Ffile_name_completion, Ffile_name_all_completions,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
183 report_file_error ("Opening directory", Fcons (directory, Qnil)); |
| 153 | 184 |
|
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
185 /* 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
|
186 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
|
187 do a proper unwind-protect. */ |
|
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
188 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
|
189 make_save_value (d, 0)); |
|
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
190 |
|
103860
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
191 #ifdef WINDOWSNT |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
192 if (attrs) |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
193 { |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
194 extern int is_slow_fs (const char *); |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
195 |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
196 /* Do this only once to avoid doing it (in w32.c:stat) for each |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
197 file in the directory, when we call Ffile_attributes below. */ |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
198 record_unwind_protect (directory_files_internal_w32_unwind, |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
199 Vw32_get_true_file_attributes); |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
200 w32_save = Vw32_get_true_file_attributes; |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
201 if (EQ (Vw32_get_true_file_attributes, Qlocal)) |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
202 { |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
203 /* w32.c:stat will notice these bindings and avoid calling |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
204 GetDriveType for each file. */ |
|
103880
6e6bdce4716b
(directory_files_internal) [WINDOWSNT]: Don't make a local copy
Eli Zaretskii <eliz@gnu.org>
parents:
103860
diff
changeset
|
205 if (is_slow_fs (SDATA (dirfilename))) |
|
103860
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
206 Vw32_get_true_file_attributes = Qnil; |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
207 else |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
208 Vw32_get_true_file_attributes = Qt; |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
209 } |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
210 } |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
211 #endif |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
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. */ |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
217 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
|
218 || !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
|
219 needsep = 1; |
|
28b9e0d48deb
(Fdirectory_files): GCPRO encoded_directory and list.
Andreas Schwab <schwab@suse.de>
parents:
21261
diff
changeset
|
220 |
|
33497
280f5481715b
(directory_files_internal) [EAGAIN || EINTR]: Retry
Gerd Moellmann <gerd@gnu.org>
parents:
33347
diff
changeset
|
221 /* Loop reading blocks until EOF or error. */ |
|
36665
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
222 for (;;) |
| 153 | 223 { |
|
36665
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
224 errno = 0; |
|
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
225 dp = readdir (d); |
|
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
226 |
|
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
227 if (dp == NULL && (0 |
|
36665
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
228 #ifdef EAGAIN |
|
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
229 || errno == EAGAIN |
|
36665
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
230 #endif |
|
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
231 #ifdef EINTR |
|
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
232 || errno == EINTR |
|
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
233 #endif |
|
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
234 )) |
|
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
235 { QUIT; continue; } |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
236 |
|
36665
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
237 if (dp == NULL) |
|
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
238 break; |
|
e2b1703a8fe8
(directory_files_internal): Handle EAGAIN more
Gerd Moellmann <gerd@gnu.org>
parents:
36106
diff
changeset
|
239 |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
240 if (DIRENTRY_NONEMPTY (dp)) |
| 153 | 241 { |
|
22916
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
242 int len; |
|
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
243 int wanted = 0; |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
244 Lisp_Object name, finalname; |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
245 struct gcpro gcpro1, gcpro2; |
|
22916
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
246 |
|
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
247 len = NAMLEN (dp); |
|
35353
6e4d871d265d
(directory_files_internal): Convert result from readdir
Andrew Innes <andrewi@gnu.org>
parents:
35019
diff
changeset
|
248 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
|
249 GCPRO2 (finalname, name); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
250 |
|
94178
e65203929930
(directory_files_internal, file_name_completion):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94145
diff
changeset
|
251 /* Note: DECODE_FILE can GC; it should protect its argument, |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
252 though. */ |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
253 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
|
254 len = SBYTES (name); |
|
22916
596fa4fbae13
(Fdirectory_files): If MATCH is non-nil, decode filenames
Kenichi Handa <handa@m17n.org>
parents:
21514
diff
changeset
|
255 |
|
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
256 /* 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
|
257 allow matching to be interrupted. */ |
|
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
258 immediate_quit = 1; |
|
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
259 QUIT; |
|
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
260 |
| 485 | 261 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
|
262 || (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
|
263 wanted = 1; |
|
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
264 |
|
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
265 immediate_quit = 0; |
|
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 if (wanted) |
|
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
268 { |
| 485 | 269 if (!NILP (full)) |
| 153 | 270 { |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
271 Lisp_Object fullname; |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
272 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
|
273 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
|
274 |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
275 fullname = make_uninit_multibyte_string (nbytes, nbytes); |
|
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109139
diff
changeset
|
276 memcpy (SDATA (fullname), SDATA (directory), |
|
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109139
diff
changeset
|
277 directory_nbytes); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
278 |
|
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
|
279 if (needsep) |
|
46423
485da95fb0a6
* dired.c (directory_files_internal): Use SSET.
Ken Raeburn <raeburn@raeburn.org>
parents:
46373
diff
changeset
|
280 SSET (fullname, directory_nbytes, DIRECTORY_SEP); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
281 |
|
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109139
diff
changeset
|
282 memcpy (SDATA (fullname) + directory_nbytes + needsep, |
|
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109139
diff
changeset
|
283 SDATA (name), len); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
284 |
|
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
285 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
|
286 |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
287 /* Some bug somewhere. */ |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
288 if (nchars > nbytes) |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
289 abort (); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
290 |
|
46373
d101e617707c
* dired.c (directory_files_internal): Use STRING_SET_CHARS.
Ken Raeburn <raeburn@raeburn.org>
parents:
46370
diff
changeset
|
291 STRING_SET_CHARS (fullname, nchars); |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
292 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
|
293 STRING_SET_UNIBYTE (fullname); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
294 |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
295 finalname = fullname; |
| 153 | 296 } |
|
34667
649d6e831f61
(directory_files_internal): Always return decoded filenames.
Kenichi Handa <handa@m17n.org>
parents:
33497
diff
changeset
|
297 else |
|
649d6e831f61
(directory_files_internal): Always return decoded filenames.
Kenichi Handa <handa@m17n.org>
parents:
33497
diff
changeset
|
298 finalname = name; |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
299 |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
300 if (attrs) |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
301 { |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
302 /* 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
|
303 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
|
304 Lisp_Object decoded_fullname, fileattrs; |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
305 struct gcpro gcpro1, gcpro2; |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
306 |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
307 decoded_fullname = fileattrs = Qnil; |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
308 GCPRO2 (decoded_fullname, fileattrs); |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
309 |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
310 /* 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
|
311 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
|
312 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
|
313 |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
314 list = Fcons (Fcons (finalname, fileattrs), list); |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
315 UNGCPRO; |
|
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 else |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
318 list = Fcons (finalname, list); |
| 153 | 319 } |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
320 |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
321 UNGCPRO; |
| 153 | 322 } |
| 323 } | |
|
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
324 |
|
72538
85113179d2d1
(directory_files_internal_unwind, directory_files_internal)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71816
diff
changeset
|
325 BLOCK_INPUT; |
| 153 | 326 closedir (d); |
|
72538
85113179d2d1
(directory_files_internal_unwind, directory_files_internal)
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71816
diff
changeset
|
327 UNBLOCK_INPUT; |
|
103860
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
328 #ifdef WINDOWSNT |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
329 if (attrs) |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
330 Vw32_get_true_file_attributes = w32_save; |
|
13472a13e8f3
(directory_files_internal_w32_unwind) [WINDOWSNT]: New function.
Eli Zaretskii <eliz@gnu.org>
parents:
103712
diff
changeset
|
331 #endif |
|
32826
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
332 |
|
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
333 /* Discard the unwind protect. */ |
|
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
334 specpdl_ptr = specpdl + count; |
|
233d9eb5dff0
(directory_files_internal_unwind): New function.
Andrew Innes <andrewi@gnu.org>
parents:
31829
diff
changeset
|
335 |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
336 if (NILP (nosort)) |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
337 list = Fsort (Fnreverse (list), |
|
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
338 attrs ? Qfile_attributes_lessp : Qstring_lessp); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48906
diff
changeset
|
339 |
|
33345
8ee80e8c9093
(directory_files_internal): Add missing GCPRO's.
Gerd Moellmann <gerd@gnu.org>
parents:
32826
diff
changeset
|
340 RETURN_UNGCPRO (list); |
| 153 | 341 } |
|
25192
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 |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
344 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
|
345 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
|
346 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
|
347 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
|
348 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
|
349 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
|
350 If NOSORT is non-nil, the list is not sorted--its order is unpredictable. |
|
105168
ef22b4450c43
* dired.c (Fdirectory_files): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
103880
diff
changeset
|
351 Otherwise, the list returned is sorted with `string-lessp'. |
|
ef22b4450c43
* dired.c (Fdirectory_files): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
103880
diff
changeset
|
352 NOSORT is useful if you plan to sort the result yourself. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
353 (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort) |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
354 { |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
355 Lisp_Object handler; |
|
49922
d278896aa13f
(directory_files_internal): Don't expand directory.
Kai Gro?johann <kgrossjo@eu.uu.net>
parents:
49600
diff
changeset
|
356 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
|
357 |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
358 /* 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
|
359 call the corresponding file handler. */ |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
360 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
|
361 if (!NILP (handler)) |
|
53310
2dc8ac2e5bf6
(Fdirectory_files, Fdirectory_files_and_attributes):
Lars Hansen <larsh@soem.dk>
parents:
53112
diff
changeset
|
362 return call5 (handler, Qdirectory_files, directory, |
|
2dc8ac2e5bf6
(Fdirectory_files, Fdirectory_files_and_attributes):
Lars Hansen <larsh@soem.dk>
parents:
53112
diff
changeset
|
363 full, match, nosort); |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
364 |
|
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
365 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
|
366 } |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
367 |
|
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
368 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
|
369 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
|
370 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
|
371 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
|
372 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
|
373 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
|
374 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
|
375 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
|
376 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
|
377 ID-FORMAT specifies the preferred format of attributes uid and gid, see |
|
94841
2c44523a9102
(Ffile_attributes, Fdirectory_files_and_attributes): Mention
Eli Zaretskii <eliz@gnu.org>
parents:
94814
diff
changeset
|
378 `file-attributes' for further documentation. |
|
2c44523a9102
(Ffile_attributes, Fdirectory_files_and_attributes): Mention
Eli Zaretskii <eliz@gnu.org>
parents:
94814
diff
changeset
|
379 On MS-Windows, performance depends on `w32-get-true-file-attributes', |
|
2c44523a9102
(Ffile_attributes, Fdirectory_files_and_attributes): Mention
Eli Zaretskii <eliz@gnu.org>
parents:
94814
diff
changeset
|
380 which see. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
381 (Lisp_Object directory, Lisp_Object full, Lisp_Object match, Lisp_Object nosort, Lisp_Object id_format) |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
382 { |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
383 Lisp_Object handler; |
|
49922
d278896aa13f
(directory_files_internal): Don't expand directory.
Kai Gro?johann <kgrossjo@eu.uu.net>
parents:
49600
diff
changeset
|
384 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
|
385 |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
386 /* 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
|
387 call the corresponding file handler. */ |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
388 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
|
389 if (!NILP (handler)) |
|
53310
2dc8ac2e5bf6
(Fdirectory_files, Fdirectory_files_and_attributes):
Lars Hansen <larsh@soem.dk>
parents:
53112
diff
changeset
|
390 return call6 (handler, Qdirectory_files_and_attributes, |
|
2dc8ac2e5bf6
(Fdirectory_files, Fdirectory_files_and_attributes):
Lars Hansen <larsh@soem.dk>
parents:
53112
diff
changeset
|
391 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
|
392 |
|
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
393 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
|
394 } |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
395 |
| 153 | 396 |
|
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
397 Lisp_Object file_name_completion (Lisp_Object file, Lisp_Object dirname, int all_flag, int ver_flag, Lisp_Object predicate); |
| 153 | 398 |
| 399 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
|
400 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
|
401 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
|
402 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
|
403 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
|
404 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
|
405 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
|
406 |
| 74689 | 407 If PREDICATE is non-nil, call PREDICATE with each possible |
| 408 completion (in absolute form) and ignore it if PREDICATE returns nil. | |
| 409 | |
|
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
410 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
|
411 determined by the variable `completion-ignored-extensions', which see. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
412 (Lisp_Object file, Lisp_Object directory, Lisp_Object predicate) |
| 153 | 413 { |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
414 Lisp_Object handler; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
415 |
|
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
416 /* 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
|
417 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
|
418 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
|
419 if (!NILP (handler)) |
|
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
420 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
|
421 |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
422 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
423 call the corresponding file handler. */ |
|
12984
7c38c6da4aae
(Ffile_name_all_completions, Ffile_name_completion):
Richard M. Stallman <rms@gnu.org>
parents:
12244
diff
changeset
|
424 handler = Ffind_file_name_handler (file, Qfile_name_completion); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
425 if (!NILP (handler)) |
|
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
426 return call4 (handler, Qfile_name_completion, file, directory, predicate); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
427 |
|
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
428 return file_name_completion (file, directory, 0, 0, predicate); |
| 153 | 429 } |
| 430 | |
| 431 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
|
432 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
|
433 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
|
434 These are all file names in directory DIRECTORY which begin with FILE. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
435 (Lisp_Object file, Lisp_Object 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 | |
| 109129 | 454 static int file_name_completion_stat (Lisp_Object dirname, DIRENTRY *dp, struct stat *st_addr); |
|
94888
77013c501e34
(Qdefault_directory): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94841
diff
changeset
|
455 Lisp_Object Qdefault_directory; |
| 21514 | 456 |
| 153 | 457 Lisp_Object |
|
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
458 file_name_completion (Lisp_Object file, Lisp_Object dirname, int all_flag, int ver_flag, Lisp_Object predicate) |
| 153 | 459 { |
| 460 DIR *d; | |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
461 int bestmatchsize = 0; |
| 153 | 462 int matchcount = 0; |
|
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
463 /* 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
|
464 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
|
465 or the best match so far, not decoded. */ |
| 153 | 466 Lisp_Object bestmatch, tem, elt, name; |
|
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
467 Lisp_Object encoded_file; |
|
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
468 Lisp_Object encoded_dir; |
| 153 | 469 struct stat st; |
| 470 int directoryp; | |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
471 /* If includeall is zero, exclude files in completion-ignored-extensions as |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
472 well as "." and "..". Until shown otherwise, assume we can't exclude |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
473 anything. */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
474 int includeall = 1; |
|
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
42189
diff
changeset
|
475 int count = SPECPDL_INDEX (); |
|
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
476 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
|
477 |
|
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
26565
diff
changeset
|
478 elt = Qnil; |
|
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
26565
diff
changeset
|
479 |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
39882
diff
changeset
|
480 CHECK_STRING (file); |
| 153 | 481 |
|
5492
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
482 #ifdef FILE_SYSTEM_CASE |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
483 file = FILE_SYSTEM_CASE (file); |
|
ededb7b52564
(DIRENTRY_NONEMPTY): New macro; two definitions.
Richard M. Stallman <rms@gnu.org>
parents:
5432
diff
changeset
|
484 #endif |
|
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
485 bestmatch = Qnil; |
|
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
486 encoded_file = encoded_dir = Qnil; |
|
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
487 GCPRO5 (file, dirname, bestmatch, encoded_file, encoded_dir); |
| 153 | 488 dirname = Fexpand_file_name (dirname, Qnil); |
|
94888
77013c501e34
(Qdefault_directory): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94841
diff
changeset
|
489 specbind (Qdefault_directory, dirname); |
| 153 | 490 |
|
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
491 /* Do completion on the encoded file name |
|
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
492 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
|
493 encoded likewise. We decode the completed string at the end. */ |
|
94493
41892e1c80a1
(file_name_completion): Fix up the encoding/decoding issue
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94435
diff
changeset
|
494 /* Actually, this is not quite true any more: we do most of the completion |
|
41892e1c80a1
(file_name_completion): Fix up the encoding/decoding issue
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94435
diff
changeset
|
495 work with decoded file names, but we still do some filtering based |
|
41892e1c80a1
(file_name_completion): Fix up the encoding/decoding issue
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94435
diff
changeset
|
496 on the encoded file name. */ |
|
94178
e65203929930
(directory_files_internal, file_name_completion):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94145
diff
changeset
|
497 encoded_file = STRING_MULTIBYTE (file) ? ENCODE_FILE (file) : file; |
|
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
498 |
|
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
499 encoded_dir = ENCODE_FILE (dirname); |
|
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
500 |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
501 BLOCK_INPUT; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
502 d = opendir (SDATA (Fdirectory_file_name (encoded_dir))); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
503 UNBLOCK_INPUT; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
504 if (!d) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
505 report_file_error ("Opening directory", Fcons (dirname, Qnil)); |
|
48906
141c4fba25c0
(file_name_completion): Fix that change.
Richard M. Stallman <rms@gnu.org>
parents:
48905
diff
changeset
|
506 |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
507 record_unwind_protect (directory_files_internal_unwind, |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
508 make_save_value (d, 0)); |
| 153 | 509 |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
510 /* Loop reading blocks */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
511 /* (att3b compiler bug requires do a null comparison this way) */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
512 while (1) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
513 { |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
514 DIRENTRY *dp; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
515 int len; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
516 int canexclude = 0; |
| 153 | 517 |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
518 errno = 0; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
519 dp = readdir (d); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
520 if (dp == NULL && (0 |
|
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
521 # ifdef EAGAIN |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
522 || errno == EAGAIN |
|
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
523 # endif |
|
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
524 # ifdef EINTR |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
525 || errno == EINTR |
|
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
526 # endif |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
527 )) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
528 { QUIT; continue; } |
|
65319
44f6057f47c7
(directory_files_internal_unwind, directory_files_internal)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64770
diff
changeset
|
529 |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
530 if (!dp) break; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
531 |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
532 len = NAMLEN (dp); |
| 153 | 533 |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
534 QUIT; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
535 if (! DIRENTRY_NONEMPTY (dp) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
536 || len < SCHARS (encoded_file) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
537 || 0 <= scmp (dp->d_name, SDATA (encoded_file), |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
538 SCHARS (encoded_file))) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
539 continue; |
| 153 | 540 |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
541 if (file_name_completion_stat (encoded_dir, dp, &st) < 0) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
542 continue; |
| 153 | 543 |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
544 directoryp = ((st.st_mode & S_IFMT) == S_IFDIR); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
545 tem = Qnil; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
546 /* If all_flag is set, always include all. |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
547 It would not actually be helpful to the user to ignore any possible |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
548 completions when making a list of them. */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
549 if (!all_flag) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
550 { |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
551 int skip; |
|
102621
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
552 |
|
102622
d4e19d304e30
(file_name_completion): Disable the first optimization just
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102621
diff
changeset
|
553 #if 0 /* FIXME: The `scmp' call compares an encoded and a decoded string. */ |
|
102621
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
554 /* If this entry matches the current bestmatch, the only |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
555 thing it can do is increase matchcount, so don't bother |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
556 investigating it any further. */ |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
557 if (!completion_ignore_case |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
558 /* The return result depends on whether it's the sole match. */ |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
559 && matchcount > 1 |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
560 && !includeall /* This match may allow includeall to 0. */ |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
561 && len >= bestmatchsize |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
562 && 0 > scmp (dp->d_name, SDATA (bestmatch), bestmatchsize)) |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
563 continue; |
|
102622
d4e19d304e30
(file_name_completion): Disable the first optimization just
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102621
diff
changeset
|
564 #endif |
|
102621
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
565 |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
566 if (directoryp) |
|
9399
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
567 { |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
568 #ifndef TRIVIAL_DIRECTORY_ENTRY |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
569 #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
|
570 #endif |
|
74686
167dd59b5025
(file_name_completion): New arg PREDICATE. Some cleanup.
Richard M. Stallman <rms@gnu.org>
parents:
72538
diff
changeset
|
571 /* "." 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
|
572 actually in the way in a directory with only one file. */ |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
573 if (TRIVIAL_DIRECTORY_ENTRY (dp->d_name)) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
574 canexclude = 1; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
575 else if (len > SCHARS (encoded_file)) |
|
39878
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
576 /* 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
|
577 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
|
578 for (tem = Vcompletion_ignored_extensions; |
|
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
579 CONSP (tem); tem = XCDR (tem)) |
|
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
580 { |
|
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
581 int elt_len; |
|
94493
41892e1c80a1
(file_name_completion): Fix up the encoding/decoding issue
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94435
diff
changeset
|
582 unsigned char *p1; |
|
39878
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
583 |
|
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
584 elt = XCAR (tem); |
|
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
585 if (!STRINGP (elt)) |
|
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
586 continue; |
|
42189
37cdbf5d5a09
(file_name_completion): Run the elements of
Eli Zaretskii <eliz@gnu.org>
parents:
42169
diff
changeset
|
587 /* 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
|
588 strings only. */ |
|
37cdbf5d5a09
(file_name_completion): Run the elements of
Eli Zaretskii <eliz@gnu.org>
parents:
42169
diff
changeset
|
589 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
|
590 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
|
591 if (elt_len <= 0) |
|
39878
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
592 continue; |
|
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
593 p1 = SDATA (elt); |
|
39878
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
594 if (p1[elt_len] != '/') |
|
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
595 continue; |
|
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
596 skip = len - elt_len; |
|
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
597 if (skip < 0) |
|
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
598 continue; |
|
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
599 |
|
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
600 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
|
601 continue; |
|
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
602 break; |
|
d90eb1d4b881
(file_name_completion): Ignore a candidate directory if
Eli Zaretskii <eliz@gnu.org>
parents:
39682
diff
changeset
|
603 } |
|
9399
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
604 } |
|
dfcf54257f10
(file_name_completion): Ignore files "." and ".." in first pass.
Richard M. Stallman <rms@gnu.org>
parents:
9302
diff
changeset
|
605 else |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
606 { |
| 153 | 607 /* Compare extensions-to-be-ignored against end of this file name */ |
| 608 /* if name is not an exact match against specified string */ | |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
609 if (len > SCHARS (encoded_file)) |
| 153 | 610 /* and exit this for loop if a match is found */ |
| 611 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
|
612 CONSP (tem); tem = XCDR (tem)) |
| 153 | 613 { |
|
25645
a14111a2a100
Use XCAR, XCDR, XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25192
diff
changeset
|
614 elt = XCAR (tem); |
|
9134
37d46d623ed9
(Ffile_name_completion, file_name_completion): Use type test macros.
Karl Heuer <kwzh@gnu.org>
parents:
8800
diff
changeset
|
615 if (!STRINGP (elt)) continue; |
|
42189
37cdbf5d5a09
(file_name_completion): Run the elements of
Eli Zaretskii <eliz@gnu.org>
parents:
42169
diff
changeset
|
616 /* 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
|
617 strings only. */ |
|
37cdbf5d5a09
(file_name_completion): Run the elements of
Eli Zaretskii <eliz@gnu.org>
parents:
42169
diff
changeset
|
618 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
|
619 skip = len - SCHARS (elt); |
| 153 | 620 if (skip < 0) continue; |
| 621 | |
| 622 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
|
623 SDATA (elt), |
|
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
624 SCHARS (elt))) |
| 153 | 625 continue; |
| 626 break; | |
| 627 } | |
| 628 } | |
| 629 | |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
630 /* If an ignored-extensions match was found, |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
631 don't process this name as a completion. */ |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
632 if (CONSP (tem)) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
633 canexclude = 1; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
634 |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
635 if (!includeall && canexclude) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
636 /* We're not including all files and this file can be excluded. */ |
|
6680
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
637 continue; |
|
1cf70b5f6d6d
(file_name_completion): Honor completion-regexp-list.
Karl Heuer <kwzh@gnu.org>
parents:
6565
diff
changeset
|
638 |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
639 if (includeall && !canexclude) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
640 { /* If we have one non-excludable file, we want to exclude the |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
641 excudable files. */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
642 includeall = 0; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
643 /* Throw away any previous excludable match found. */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
644 bestmatch = Qnil; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
645 bestmatchsize = 0; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
646 matchcount = 0; |
| 153 | 647 } |
| 648 } | |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
649 /* FIXME: If we move this `decode' earlier we can eliminate |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
650 the repeated ENCODE_FILE on Vcompletion_ignored_extensions. */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
651 name = make_unibyte_string (dp->d_name, len); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
652 name = DECODE_FILE (name); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
653 |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
654 { |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
655 Lisp_Object regexps; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
656 Lisp_Object zero; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
657 XSETFASTINT (zero, 0); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
658 |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
659 /* Ignore this element if it fails to match all the regexps. */ |
|
99463
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
660 if (completion_ignore_case) |
|
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
661 { |
|
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
662 for (regexps = Vcompletion_regexp_list; CONSP (regexps); |
|
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
663 regexps = XCDR (regexps)) |
|
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
664 if (fast_string_match_ignore_case (XCAR (regexps), name) < 0) |
|
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
665 break; |
|
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
666 } |
|
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
667 else |
|
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
668 { |
|
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
669 for (regexps = Vcompletion_regexp_list; CONSP (regexps); |
|
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
670 regexps = XCDR (regexps)) |
|
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
671 if (fast_string_match (XCAR (regexps), name) < 0) |
|
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
672 break; |
|
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
673 } |
|
1620ef046b91
(file_name_completion): If completion_ignore_case is enabled, ignore
Chong Yidong <cyd@stupidchicken.com>
parents:
97773
diff
changeset
|
674 |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
675 if (CONSP (regexps)) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
676 continue; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
677 } |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
678 |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
679 /* This is a possible completion */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
680 if (directoryp) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
681 /* This completion is a directory; make it end with '/'. */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
682 name = Ffile_name_as_directory (name); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
683 |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
684 /* Test the predicate, if any. */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
685 if (!NILP (predicate)) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
686 { |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
687 Lisp_Object val; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
688 struct gcpro gcpro1; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
689 |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
690 GCPRO1 (name); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
691 val = call1 (predicate, name); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
692 UNGCPRO; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
693 |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
694 if (NILP (val)) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
695 continue; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
696 } |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
697 |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
698 /* Suitably record this match. */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
699 |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
700 matchcount++; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
701 |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
702 if (all_flag) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
703 bestmatch = Fcons (name, bestmatch); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
704 else if (NILP (bestmatch)) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
705 { |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
706 bestmatch = name; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
707 bestmatchsize = SCHARS (name); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
708 } |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
709 else |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
710 { |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
711 Lisp_Object zero = make_number (0); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
712 /* FIXME: This is a copy of the code in Ftry_completion. */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
713 int compare = min (bestmatchsize, SCHARS (name)); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
714 Lisp_Object tem |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
715 = Fcompare_strings (bestmatch, zero, |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
716 make_number (compare), |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
717 name, zero, |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
718 make_number (compare), |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
719 completion_ignore_case ? Qt : Qnil); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
720 int matchsize |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
721 = (EQ (tem, Qt) ? compare |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
722 : XINT (tem) < 0 ? - XINT (tem) - 1 |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
723 : XINT (tem) - 1); |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
724 |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
725 if (completion_ignore_case) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
726 { |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
727 /* If this is an exact match except for case, |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
728 use it as the best match rather than one that is not |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
729 an exact match. This way, we get the case pattern |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
730 of the actual match. */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
731 /* This tests that the current file is an exact match |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
732 but BESTMATCH is not (it is too long). */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
733 if ((matchsize == SCHARS (name) |
|
102621
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
734 && matchsize + !!directoryp < SCHARS (bestmatch)) |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
735 || |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
736 /* If there is no exact match ignoring case, |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
737 prefer a match that does not change the case |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
738 of the input. */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
739 /* If there is more than one exact match aside from |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
740 case, and one of them is exact including case, |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
741 prefer that one. */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
742 /* This == checks that, of current file and BESTMATCH, |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
743 either both or neither are exact. */ |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
744 (((matchsize == SCHARS (name)) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
745 == |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
746 (matchsize + !!directoryp == SCHARS (bestmatch))) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
747 && (tem = Fcompare_strings (name, zero, |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
748 make_number (SCHARS (file)), |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
749 file, zero, |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
750 Qnil, |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
751 Qnil), |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
752 EQ (Qt, tem)) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
753 && (tem = Fcompare_strings (bestmatch, zero, |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
754 make_number (SCHARS (file)), |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
755 file, zero, |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
756 Qnil, |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
757 Qnil), |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
758 ! EQ (Qt, tem)))) |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
759 bestmatch = name; |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
760 } |
|
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
761 bestmatchsize = matchsize; |
|
102621
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
762 |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
763 /* If the best completion so far is reduced to the string |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
764 we're trying to complete, then we already know there's no |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
765 other completion, so there's no point looking any further. */ |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
766 if (matchsize <= SCHARS (file) |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
767 && !includeall /* A future match may allow includeall to 0. */ |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
768 /* If completion-ignore-case is non-nil, don't |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
769 short-circuit because we want to find the best |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
770 possible match *including* case differences. */ |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
771 && (!completion_ignore_case || matchsize == 0) |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
772 /* The return value depends on whether it's the sole match. */ |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
773 && matchcount > 1) |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
774 break; |
|
7183ab1b842a
(file_name_completion): Check completion-ignored-extensions
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100951
diff
changeset
|
775 |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
776 } |
| 153 | 777 } |
| 778 | |
|
6559
3d314bef071a
(file_name_completion): Protect things from GC.
Richard M. Stallman <rms@gnu.org>
parents:
5492
diff
changeset
|
779 UNGCPRO; |
|
94890
907ac6ecef89
(file_name_completion): Tweak the code so as to always do it
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94888
diff
changeset
|
780 /* This closes the directory. */ |
|
48906
141c4fba25c0
(file_name_completion): Fix that change.
Richard M. Stallman <rms@gnu.org>
parents:
48905
diff
changeset
|
781 bestmatch = unbind_to (count, bestmatch); |
| 153 | 782 |
| 485 | 783 if (all_flag || NILP (bestmatch)) |
|
94493
41892e1c80a1
(file_name_completion): Fix up the encoding/decoding issue
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94435
diff
changeset
|
784 return bestmatch; |
|
95781
a17231a1f8f8
* dired.c (file_name_completion): Don't return t if the match is exact
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
95045
diff
changeset
|
785 /* Return t if the supplied string is an exact match (counting case); |
|
a17231a1f8f8
* dired.c (file_name_completion): Don't return t if the match is exact
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
95045
diff
changeset
|
786 it does not require any change to be made. */ |
|
a17231a1f8f8
* dired.c (file_name_completion): Don't return t if the match is exact
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
95045
diff
changeset
|
787 if (matchcount == 1 && !NILP (Fequal (bestmatch, file))) |
| 153 | 788 return Qt; |
|
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
789 bestmatch = Fsubstring (bestmatch, make_number (0), |
|
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
790 make_number (bestmatchsize)); |
|
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
791 return bestmatch; |
| 153 | 792 } |
| 793 | |
|
42169
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
794 /* 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
|
795 ignoring case if appropriate. |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
796 Return -1 if strings match, |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
797 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
|
798 |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
799 static int |
|
109555
05e7e7c46ff0
Use const, move declarations to header files.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109516
diff
changeset
|
800 scmp (const unsigned char *s1, const unsigned char *s2, int len) |
|
42169
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
801 { |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
802 register int l = len; |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
803 |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
804 if (completion_ignore_case) |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
805 { |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
806 while (l && DOWNCASE (*s1++) == DOWNCASE (*s2++)) |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
807 l--; |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
808 } |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
809 else |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
810 { |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
811 while (l && *s1++ == *s2++) |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
812 l--; |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
813 } |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
814 if (l == 0) |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
815 return -1; |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
816 else |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
817 return len - l; |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
818 } |
|
5e1f90b72764
(scmp): Function moved from minibuf.c.
Richard M. Stallman <rms@gnu.org>
parents:
41001
diff
changeset
|
819 |
| 21514 | 820 static int |
| 109129 | 821 file_name_completion_stat (Lisp_Object dirname, DIRENTRY *dp, struct stat *st_addr) |
| 153 | 822 { |
| 823 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
|
824 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
|
825 int value; |
| 153 | 826 char *fullname = (char *) alloca (len + pos + 2); |
| 827 | |
|
16246
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
828 #ifdef MSDOS |
|
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
829 /* 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
|
830 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
|
831 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
|
832 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
|
833 |
|
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
834 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
|
835 |
|
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
836 _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
|
837 #endif /* MSDOS */ |
|
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
838 |
|
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109139
diff
changeset
|
839 memcpy (fullname, SDATA (dirname), pos); |
|
9787
c55f03316095
Use macros IS_ANY_SEP, IS_DIRECTORY_SEP, and DIRECTORY_SEP.
Richard M. Stallman <rms@gnu.org>
parents:
9604
diff
changeset
|
840 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
|
841 fullname[pos++] = DIRECTORY_SEP; |
| 153 | 842 |
|
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109139
diff
changeset
|
843 memcpy (fullname + pos, dp->d_name, len); |
| 153 | 844 fullname[pos + len] = 0; |
| 845 | |
|
5432
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
846 #ifdef S_IFLNK |
|
7286
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
847 /* 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
|
848 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
|
849 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
|
850 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
|
851 stat (fullname, st_addr); |
|
15bf025e8f8c
(file_name_completion_stat): Use both lstat and stat.
Richard M. Stallman <rms@gnu.org>
parents:
7028
diff
changeset
|
852 return value; |
|
5432
c3677267e74d
(file_name_completion_stat): If have symlinks, use lstat.
Richard M. Stallman <rms@gnu.org>
parents:
4778
diff
changeset
|
853 #else |
|
16246
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
854 value = stat (fullname, st_addr); |
|
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
855 #ifdef MSDOS |
|
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
856 _djstat_flags = save_djstat_flags; |
|
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
857 #endif /* MSDOS */ |
|
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
858 return value; |
|
4e00938cd261
(file_name_completion): Remove code which sets and
Richard M. Stallman <rms@gnu.org>
parents:
16225
diff
changeset
|
859 #endif /* S_IFLNK */ |
| 153 | 860 } |
| 861 | |
| 862 Lisp_Object | |
|
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
863 make_time (time_t time) |
| 153 | 864 { |
| 865 return Fcons (make_number (time >> 16), | |
| 866 Fcons (make_number (time & 0177777), Qnil)); | |
| 867 } | |
| 868 | |
|
94814
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
869 static char * |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
870 stat_uname (struct stat *st) |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
871 { |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
872 #ifdef WINDOWSNT |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
873 return st->st_uname; |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
874 #else |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
875 struct passwd *pw = (struct passwd *) getpwuid (st->st_uid); |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
876 |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
877 if (pw) |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
878 return pw->pw_name; |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
879 else |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
880 return NULL; |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
881 #endif |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
882 } |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
883 |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
884 static char * |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
885 stat_gname (struct stat *st) |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
886 { |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
887 #ifdef WINDOWSNT |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
888 return st->st_gname; |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
889 #else |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
890 struct group *gr = (struct group *) getgrgid (st->st_gid); |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
891 |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
892 if (gr) |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
893 return gr->gr_name; |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
894 else |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
895 return NULL; |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
896 #endif |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
897 } |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
898 |
|
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
899 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
|
900 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
|
901 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
|
902 |
|
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
903 ID-FORMAT specifies the preferred format of attributes uid and gid (see |
|
107976
2604d177b630
* dired.c (Ffile_attributes): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
106815
diff
changeset
|
904 below) - valid values are 'string and 'integer. The latter is the |
|
2604d177b630
* dired.c (Ffile_attributes): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
106815
diff
changeset
|
905 default, but we plan to change that, so you should specify a non-nil value |
|
2604d177b630
* dired.c (Ffile_attributes): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
106815
diff
changeset
|
906 for ID-FORMAT if you use the returned uid or gid. |
|
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
907 |
|
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
908 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
|
909 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
|
910 1. Number of links to file. |
|
102632
1287a731cd99
(Ffile_attributes): Make sure UID and GID are always positive, even
Eli Zaretskii <eliz@gnu.org>
parents:
102622
diff
changeset
|
911 2. File uid as a string or a number. If a string value cannot be |
|
1287a731cd99
(Ffile_attributes): Make sure UID and GID are always positive, even
Eli Zaretskii <eliz@gnu.org>
parents:
102622
diff
changeset
|
912 looked up, a numeric value, either an integer or a float, is returned. |
|
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
913 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
|
914 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
|
915 First integer has high-order 16 bits of time, second has low 16 bits. |
|
105458
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
916 (See a note below about access time on FAT-based filesystems.) |
|
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
917 5. Last modification time, likewise. This is the time of the last |
|
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
918 change to the file's contents. |
|
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
919 6. Last status change time, likewise. This is the time of last change |
|
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
920 to the file's attributes: owner and group, access mode bits, etc. |
|
41001
a17c8b15ef1b
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
921 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
|
922 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
|
923 8. File modes, as a string of ten letters or dashes as in ls -l. |
| 78501 | 924 9. t if file's gid would change if file were deleted and recreated. |
|
105458
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
925 10. inode number. If inode number is larger than what Emacs integer |
|
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
926 can hold, but still fits into a 32-bit number, this is a cons cell |
|
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
927 containing two integers: first the high part, then the low 16 bits. |
|
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
928 If the inode number is wider than 32 bits, this is of the form |
|
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
929 (HIGH MIDDLE . LOW): first the high 24 bits, then middle 24 bits, |
|
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
930 and finally the low 16 bits. |
|
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
931 11. Filesystem device number. If it is larger than what the Emacs |
|
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
932 integer can hold, this is a cons cell, similar to the inode number. |
|
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
933 |
|
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
934 On most filesystems, the combination of the inode and the device |
|
4d2aa5860e37
(Ffile_attributes): Doc fix. (Bug#4638)
Eli Zaretskii <eliz@gnu.org>
parents:
105168
diff
changeset
|
935 number uniquely identifies the file. |
|
94841
2c44523a9102
(Ffile_attributes, Fdirectory_files_and_attributes): Mention
Eli Zaretskii <eliz@gnu.org>
parents:
94814
diff
changeset
|
936 |
|
2c44523a9102
(Ffile_attributes, Fdirectory_files_and_attributes): Mention
Eli Zaretskii <eliz@gnu.org>
parents:
94814
diff
changeset
|
937 On MS-Windows, performance depends on `w32-get-true-file-attributes', |
|
103280
0fbfef200acd
(Ffile_attributes): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
102661
diff
changeset
|
938 which see. |
|
0fbfef200acd
(Ffile_attributes): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
102661
diff
changeset
|
939 |
|
0fbfef200acd
(Ffile_attributes): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
102661
diff
changeset
|
940 On some FAT-based filesystems, only the date of last access is recorded, |
|
0fbfef200acd
(Ffile_attributes): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
102661
diff
changeset
|
941 so last access time will always be midnight of that day. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
942 (Lisp_Object filename, Lisp_Object id_format) |
| 153 | 943 { |
| 944 Lisp_Object values[12]; | |
|
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
945 Lisp_Object encoded; |
| 153 | 946 struct stat s; |
| 109097 | 947 #ifdef BSD4_2 |
|
34970
947b53b0a1da
(directory_files_internal): Fix a typo in a comment.
Eli Zaretskii <eliz@gnu.org>
parents:
34667
diff
changeset
|
948 Lisp_Object dirname; |
| 153 | 949 struct stat sdir; |
| 109097 | 950 #endif /* BSD4_2 */ |
| 153 | 951 char modes[10]; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
952 Lisp_Object handler; |
|
60900
e2f52fa7f394
(Ffile_attributes): Add a missing gcpro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60892
diff
changeset
|
953 struct gcpro gcpro1; |
|
102661
a2aaf6402fc7
(make_uid, make_gid): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
102632
diff
changeset
|
954 char *uname = NULL, *gname = NULL; |
| 153 | 955 |
| 956 filename = Fexpand_file_name (filename, Qnil); | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
957 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
958 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
959 call the corresponding file handler. */ |
|
7028
6915bf781a38
Pass operation to Ffind_file_name_handler.
Karl Heuer <kwzh@gnu.org>
parents:
6860
diff
changeset
|
960 handler = Ffind_file_name_handler (filename, Qfile_attributes); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
961 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
|
962 { /* 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
|
963 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
|
964 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
|
965 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
|
966 else |
|
da06b9bd886b
(Ffile_attributes): Don't pass extra nil arg to file-handler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53636
diff
changeset
|
967 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
|
968 } |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
969 |
|
60900
e2f52fa7f394
(Ffile_attributes): Add a missing gcpro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60892
diff
changeset
|
970 GCPRO1 (filename); |
|
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
971 encoded = ENCODE_FILE (filename); |
|
60900
e2f52fa7f394
(Ffile_attributes): Add a missing gcpro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60892
diff
changeset
|
972 UNGCPRO; |
|
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
973 |
|
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46293
diff
changeset
|
974 if (lstat (SDATA (encoded), &s) < 0) |
| 153 | 975 return Qnil; |
| 976 | |
| 977 switch (s.st_mode & S_IFMT) | |
| 978 { | |
| 979 default: | |
| 980 values[0] = Qnil; break; | |
| 981 case S_IFDIR: | |
| 982 values[0] = Qt; break; | |
| 983 #ifdef S_IFLNK | |
| 984 case S_IFLNK: | |
| 985 values[0] = Ffile_symlink_p (filename); break; | |
| 986 #endif | |
| 987 } | |
| 988 values[1] = make_number (s.st_nlink); | |
|
102661
a2aaf6402fc7
(make_uid, make_gid): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
102632
diff
changeset
|
989 |
|
a2aaf6402fc7
(make_uid, make_gid): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
102632
diff
changeset
|
990 if (!(NILP (id_format) || EQ (id_format, Qinteger))) |
|
53112
b6c073b1f1c7
(Ffile_attributes): Parameter ID-FORMAT added and included in call to file
Lars Hansen <larsh@soem.dk>
parents:
52401
diff
changeset
|
991 { |
|
71816
0b0685327de8
Include blockinput.h.
YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
parents:
71462
diff
changeset
|
992 BLOCK_INPUT; |
|
94814
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
993 uname = stat_uname (&s); |
|
5ad1f4d9b15c
Support for reporting owner and group of each file on MS-Windows:
Eli Zaretskii <eliz@gnu.org>
parents:
94577
diff
changeset
|
994 gname = stat_gname (&s); |
|
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 } |
|
102661
a2aaf6402fc7
(make_uid, make_gid): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
102632
diff
changeset
|
997 if (uname) |
|
103712
87554fb2c23c
(Ffile_attributes): Decode user and group names by the locale's encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
103280
diff
changeset
|
998 values[2] = DECODE_SYSTEM (build_string (uname)); |
|
102661
a2aaf6402fc7
(make_uid, make_gid): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
102632
diff
changeset
|
999 else |
|
105748
87712af03fb7
(Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
Andreas Schwab <schwab@linux-m68k.org>
parents:
105669
diff
changeset
|
1000 values[2] = make_fixnum_or_float (s.st_uid); |
|
102661
a2aaf6402fc7
(make_uid, make_gid): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
102632
diff
changeset
|
1001 if (gname) |
|
103712
87554fb2c23c
(Ffile_attributes): Decode user and group names by the locale's encoding.
Eli Zaretskii <eliz@gnu.org>
parents:
103280
diff
changeset
|
1002 values[3] = DECODE_SYSTEM (build_string (gname)); |
|
102661
a2aaf6402fc7
(make_uid, make_gid): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
102632
diff
changeset
|
1003 else |
|
105748
87712af03fb7
(Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
Andreas Schwab <schwab@linux-m68k.org>
parents:
105669
diff
changeset
|
1004 values[3] = make_fixnum_or_float (s.st_gid); |
|
102661
a2aaf6402fc7
(make_uid, make_gid): New functions.
Eli Zaretskii <eliz@gnu.org>
parents:
102632
diff
changeset
|
1005 |
| 153 | 1006 values[4] = make_time (s.st_atime); |
| 1007 values[5] = make_time (s.st_mtime); | |
| 1008 values[6] = make_time (s.st_ctime); | |
|
105748
87712af03fb7
(Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
Andreas Schwab <schwab@linux-m68k.org>
parents:
105669
diff
changeset
|
1009 values[7] = make_fixnum_or_float (s.st_size); |
|
48563
26e19e854ef3
(Ffile_attributes): Don't return negative file sizes for
Jason Rumney <jasonr@gnu.org>
parents:
46583
diff
changeset
|
1010 /* 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
|
1011 positive. */ |
|
26e19e854ef3
(Ffile_attributes): Don't return negative file sizes for
Jason Rumney <jasonr@gnu.org>
parents:
46583
diff
changeset
|
1012 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
|
1013 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
|
1014 |
| 153 | 1015 filemodestring (&s, modes); |
| 1016 values[8] = make_string (modes, 10); | |
| 109097 | 1017 #ifdef BSD4_2 /* file gid will be dir gid */ |
| 153 | 1018 dirname = Ffile_name_directory (filename); |
|
19816
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
1019 if (! NILP (dirname)) |
|
902043a3c18a
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
18666
diff
changeset
|
1020 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
|
1021 if (! NILP (dirname) && stat (SDATA (encoded), &sdir) == 0) |
|
94371
436ee104782b
(Ffile_attributes) [WINDOWSNT]: Undo change from 2008-03-31, it's not needed
Eli Zaretskii <eliz@gnu.org>
parents:
94178
diff
changeset
|
1022 values[9] = (sdir.st_gid != s.st_gid) ? Qt : Qnil; |
| 153 | 1023 else /* if we can't tell, assume worst */ |
| 1024 values[9] = Qt; | |
| 1025 #else /* file gid will be egid */ | |
|
94371
436ee104782b
(Ffile_attributes) [WINDOWSNT]: Undo change from 2008-03-31, it's not needed
Eli Zaretskii <eliz@gnu.org>
parents:
94178
diff
changeset
|
1026 values[9] = (s.st_gid != getegid ()) ? Qt : Qnil; |
| 109097 | 1027 #endif /* not BSD4_2 */ |
|
105748
87712af03fb7
(Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
Andreas Schwab <schwab@linux-m68k.org>
parents:
105669
diff
changeset
|
1028 if (!FIXNUM_OVERFLOW_P (s.st_ino)) |
|
93689
40434d3c3093
(Ffile_attributes): Support inode numbers wider than 32 bits.
Eli Zaretskii <eliz@gnu.org>
parents:
92946
diff
changeset
|
1029 /* Keep the most common cases as integers. */ |
|
105748
87712af03fb7
(Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
Andreas Schwab <schwab@linux-m68k.org>
parents:
105669
diff
changeset
|
1030 values[10] = make_number (s.st_ino); |
|
87712af03fb7
(Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
Andreas Schwab <schwab@linux-m68k.org>
parents:
105669
diff
changeset
|
1031 else if (!FIXNUM_OVERFLOW_P (s.st_ino >> 16)) |
|
17868
bc2cf7c40435
(Ffile_attributes): Return inode number as a cons only if necessary.
Richard M. Stallman <rms@gnu.org>
parents:
17460
diff
changeset
|
1032 /* 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
|
1033 16 bits. */ |
|
93689
40434d3c3093
(Ffile_attributes): Support inode numbers wider than 32 bits.
Eli Zaretskii <eliz@gnu.org>
parents:
92946
diff
changeset
|
1034 values[10] = Fcons (make_number ((EMACS_INT)(s.st_ino >> 16)), |
|
40434d3c3093
(Ffile_attributes): Support inode numbers wider than 32 bits.
Eli Zaretskii <eliz@gnu.org>
parents:
92946
diff
changeset
|
1035 make_number ((EMACS_INT)(s.st_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
|
1036 else |
|
93689
40434d3c3093
(Ffile_attributes): Support inode numbers wider than 32 bits.
Eli Zaretskii <eliz@gnu.org>
parents:
92946
diff
changeset
|
1037 { |
|
40434d3c3093
(Ffile_attributes): Support inode numbers wider than 32 bits.
Eli Zaretskii <eliz@gnu.org>
parents:
92946
diff
changeset
|
1038 /* To allow inode numbers beyond 32 bits, separate into 2 24-bit |
|
97770
673a18ae9bfa
(Ffile_attributes): Avoid compiler warning in bitshift.
Chong Yidong <cyd@stupidchicken.com>
parents:
97500
diff
changeset
|
1039 high parts and a 16-bit bottom part. |
|
97773
0583dab50a76
(Ffile_attributes): Fix comment in last change.
Eli Zaretskii <eliz@gnu.org>
parents:
97770
diff
changeset
|
1040 The code on the next line avoids a compiler warning on |
|
0583dab50a76
(Ffile_attributes): Fix comment in last change.
Eli Zaretskii <eliz@gnu.org>
parents:
97770
diff
changeset
|
1041 systems where st_ino is 32 bit wide. (bug#766). */ |
|
97770
673a18ae9bfa
(Ffile_attributes): Avoid compiler warning in bitshift.
Chong Yidong <cyd@stupidchicken.com>
parents:
97500
diff
changeset
|
1042 EMACS_INT high_ino = s.st_ino >> 31 >> 1; |
|
93689
40434d3c3093
(Ffile_attributes): Support inode numbers wider than 32 bits.
Eli Zaretskii <eliz@gnu.org>
parents:
92946
diff
changeset
|
1043 EMACS_INT low_ino = s.st_ino & 0xffffffff; |
|
40434d3c3093
(Ffile_attributes): Support inode numbers wider than 32 bits.
Eli Zaretskii <eliz@gnu.org>
parents:
92946
diff
changeset
|
1044 |
|
40434d3c3093
(Ffile_attributes): Support inode numbers wider than 32 bits.
Eli Zaretskii <eliz@gnu.org>
parents:
92946
diff
changeset
|
1045 values[10] = Fcons (make_number (high_ino >> 8), |
|
40434d3c3093
(Ffile_attributes): Support inode numbers wider than 32 bits.
Eli Zaretskii <eliz@gnu.org>
parents:
92946
diff
changeset
|
1046 Fcons (make_number (((high_ino & 0xff) << 16) |
|
40434d3c3093
(Ffile_attributes): Support inode numbers wider than 32 bits.
Eli Zaretskii <eliz@gnu.org>
parents:
92946
diff
changeset
|
1047 + (low_ino >> 16)), |
|
40434d3c3093
(Ffile_attributes): Support inode numbers wider than 32 bits.
Eli Zaretskii <eliz@gnu.org>
parents:
92946
diff
changeset
|
1048 make_number (low_ino & 0xffff))); |
|
40434d3c3093
(Ffile_attributes): Support inode numbers wider than 32 bits.
Eli Zaretskii <eliz@gnu.org>
parents:
92946
diff
changeset
|
1049 } |
|
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25645
diff
changeset
|
1050 |
|
105748
87712af03fb7
(Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
Andreas Schwab <schwab@linux-m68k.org>
parents:
105669
diff
changeset
|
1051 /* Likewise for device. */ |
|
87712af03fb7
(Ffile_attributes): Simplify now that FIXNUM_OVERFLOW_P
Andreas Schwab <schwab@linux-m68k.org>
parents:
105669
diff
changeset
|
1052 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
|
1053 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
|
1054 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
|
1055 else |
|
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25645
diff
changeset
|
1056 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
|
1057 |
| 153 | 1058 return Flist (sizeof(values) / sizeof(values[0]), values); |
| 1059 } | |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1060 |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1061 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
|
1062 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
|
1063 Comparison is in lexicographic order and case is significant. */) |
|
109179
8cfee7d2955f
Convert DEFUNs to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
1064 (Lisp_Object f1, Lisp_Object f2) |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1065 { |
|
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1066 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
|
1067 } |
| 153 | 1068 |
| 21514 | 1069 void |
|
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
1070 syms_of_dired (void) |
| 153 | 1071 { |
|
105877
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105748
diff
changeset
|
1072 Qdirectory_files = intern_c_string ("directory-files"); |
|
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105748
diff
changeset
|
1073 Qdirectory_files_and_attributes = intern_c_string ("directory-files-and-attributes"); |
|
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105748
diff
changeset
|
1074 Qfile_name_completion = intern_c_string ("file-name-completion"); |
|
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105748
diff
changeset
|
1075 Qfile_name_all_completions = intern_c_string ("file-name-all-completions"); |
|
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105748
diff
changeset
|
1076 Qfile_attributes = intern_c_string ("file-attributes"); |
|
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105748
diff
changeset
|
1077 Qfile_attributes_lessp = intern_c_string ("file-attributes-lessp"); |
|
21bdda3ded62
* xterm.c (syms_of_xterm):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105748
diff
changeset
|
1078 Qdefault_directory = intern_c_string ("default-directory"); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
808
diff
changeset
|
1079 |
|
16225
ec322e4ffa16
(syms_of_dired): staticpro Qdirectory_files, Qfile_name_completion,
Erik Naggum <erik@naggum.no>
parents:
15626
diff
changeset
|
1080 staticpro (&Qdirectory_files); |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1081 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
|
1082 staticpro (&Qfile_name_completion); |
|
ec322e4ffa16
(syms_of_dired): staticpro Qdirectory_files, Qfile_name_completion,
Erik Naggum <erik@naggum.no>
parents:
15626
diff
changeset
|
1083 staticpro (&Qfile_name_all_completions); |
|
ec322e4ffa16
(syms_of_dired): staticpro Qdirectory_files, Qfile_name_completion,
Erik Naggum <erik@naggum.no>
parents:
15626
diff
changeset
|
1084 staticpro (&Qfile_attributes); |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1085 staticpro (&Qfile_attributes_lessp); |
|
94888
77013c501e34
(Qdefault_directory): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
94841
diff
changeset
|
1086 staticpro (&Qdefault_directory); |
|
16225
ec322e4ffa16
(syms_of_dired): staticpro Qdirectory_files, Qfile_name_completion,
Erik Naggum <erik@naggum.no>
parents:
15626
diff
changeset
|
1087 |
| 153 | 1088 defsubr (&Sdirectory_files); |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1089 defsubr (&Sdirectory_files_and_attributes); |
| 153 | 1090 defsubr (&Sfile_name_completion); |
| 1091 defsubr (&Sfile_name_all_completions); | |
| 1092 defsubr (&Sfile_attributes); | |
|
25192
03f530e858df
(directory_files_internal, Fdirectory_files_and_attributes,
Geoff Voelker <voelker@cs.washington.edu>
parents:
24685
diff
changeset
|
1093 defsubr (&Sfile_attributes_lessp); |
| 153 | 1094 |
|
112364
42e22c4f06b7
Move all DEFVAR'd globals into a structure -- threading infrastructure
Tom Tromey <tromey@redhat.com>
parents:
112330
diff
changeset
|
1095 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
|
1096 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
|
1097 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
|
1098 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
|
1099 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
|
1100 ends in a slash. */); |
| 153 | 1101 Vcompletion_ignored_extensions = Qnil; |
| 1102 } | |
| 52401 | 1103 |
