Mercurial > emacs
annotate src/fileio.c @ 1326:709532b86646
* window.c (SAVE_WINDOW_DATA_SIZE): Define this using sizeof,
instead of just saying it's 7; that way, we won't get screwed if
we add members to struct save_window_data.
* window.c (Fset_window_configuration): The pointer to the
saved window data is called `data', not just `d'.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Sat, 03 Oct 1992 07:15:35 +0000 |
parents | b8337cdf2e8b |
children | aa32c275cbf9 |
rev | line source |
---|---|
230 | 1 /* File IO for GNU Emacs. |
621 | 2 Copyright (C) 1985, 1986, 1987, 1988, 1992 Free Software Foundation, Inc. |
230 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
621 | 8 the Free Software Foundation; either version 2, or (at your option) |
230 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
648 | 20 #include "config.h" |
230 | 21 |
22 #include <sys/types.h> | |
23 #include <sys/stat.h> | |
372 | 24 |
25 #ifdef VMS | |
564 | 26 #include "vms-pwd.h" |
372 | 27 #else |
230 | 28 #include <pwd.h> |
372 | 29 #endif |
30 | |
230 | 31 #include <ctype.h> |
372 | 32 |
33 #ifdef VMS | |
34 #include "dir.h" | |
35 #include <perror.h> | |
36 #include <stddef.h> | |
37 #include <string.h> | |
38 #endif | |
39 | |
230 | 40 #include <errno.h> |
41 | |
372 | 42 #ifndef vax11c |
230 | 43 extern int errno; |
44 extern char *sys_errlist[]; | |
45 extern int sys_nerr; | |
46 #endif | |
47 | |
48 #define err_str(a) ((a) < sys_nerr ? sys_errlist[a] : "unknown error") | |
49 | |
50 #ifdef APOLLO | |
51 #include <sys/time.h> | |
52 #endif | |
53 | |
54 #include "lisp.h" | |
1299
b8337cdf2e8b
* fileio.c (Finsert_file_contents): Call offset_intervals() if
Joseph Arceneaux <jla@gnu.org>
parents:
1240
diff
changeset
|
55 #include "intervals.h" |
230 | 56 #include "buffer.h" |
57 #include "window.h" | |
58 | |
59 #ifdef VMS | |
60 #include <file.h> | |
61 #include <rmsdef.h> | |
62 #include <fab.h> | |
63 #include <nam.h> | |
64 #endif | |
65 | |
564 | 66 #include "systime.h" |
230 | 67 |
68 #ifdef HPUX | |
69 #include <netio.h> | |
350 | 70 #ifndef HPUX8 |
230 | 71 #include <errnet.h> |
72 #endif | |
350 | 73 #endif |
230 | 74 |
75 #ifndef O_WRONLY | |
76 #define O_WRONLY 1 | |
77 #endif | |
78 | |
79 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
80 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
81 | |
82 /* Nonzero during writing of auto-save files */ | |
83 int auto_saving; | |
84 | |
85 /* Set by auto_save_1 to mode of original file so Fwrite_region will create | |
86 a new file with the same mode as the original */ | |
87 int auto_save_mode_bits; | |
88 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
89 /* Alist of elements (REGEXP . HANDLER) for file names |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
90 whose I/O is done with a special handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
91 Lisp_Object Vfile_name_handler_alist; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
92 |
230 | 93 /* Nonzero means, when reading a filename in the minibuffer, |
94 start out by inserting the default directory into the minibuffer. */ | |
95 int insert_default_directory; | |
96 | |
97 /* On VMS, nonzero means write new files with record format stmlf. | |
98 Zero means use var format. */ | |
99 int vms_stmlf_recfm; | |
100 | |
101 Lisp_Object Qfile_error, Qfile_already_exists; | |
102 | |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
103 Lisp_Object Qfile_name_history; |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
104 |
230 | 105 report_file_error (string, data) |
106 char *string; | |
107 Lisp_Object data; | |
108 { | |
109 Lisp_Object errstring; | |
110 | |
111 if (errno >= 0 && errno < sys_nerr) | |
112 errstring = build_string (sys_errlist[errno]); | |
113 else | |
114 errstring = build_string ("undocumented error code"); | |
115 | |
116 /* System error messages are capitalized. Downcase the initial | |
117 unless it is followed by a slash. */ | |
118 if (XSTRING (errstring)->data[1] != '/') | |
119 XSTRING (errstring)->data[0] = DOWNCASE (XSTRING (errstring)->data[0]); | |
120 | |
121 while (1) | |
122 Fsignal (Qfile_error, | |
123 Fcons (build_string (string), Fcons (errstring, data))); | |
124 } | |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
125 |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
126 close_file_unwind (fd) |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
127 Lisp_Object fd; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
128 { |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
129 close (XFASTINT (fd)); |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
130 } |
230 | 131 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
132 Lisp_Object Qexpand_file_name; |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
133 Lisp_Object Qdirectory_file_name; |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
134 Lisp_Object Qfile_name_directory; |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
135 Lisp_Object Qfile_name_nondirectory; |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
136 Lisp_Object Qfile_name_as_directory; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
137 Lisp_Object Qcopy_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
138 Lisp_Object Qmake_directory; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
139 Lisp_Object Qdelete_directory; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
140 Lisp_Object Qdelete_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
141 Lisp_Object Qrename_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
142 Lisp_Object Qadd_name_to_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
143 Lisp_Object Qmake_symbolic_link; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
144 Lisp_Object Qfile_exists_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
145 Lisp_Object Qfile_executable_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
146 Lisp_Object Qfile_readable_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
147 Lisp_Object Qfile_symlink_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
148 Lisp_Object Qfile_writable_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
149 Lisp_Object Qfile_directory_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
150 Lisp_Object Qfile_accessible_directory_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
151 Lisp_Object Qfile_modes; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
152 Lisp_Object Qset_file_modes; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
153 Lisp_Object Qfile_newer_than_file_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
154 Lisp_Object Qinsert_file_contents; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
155 Lisp_Object Qwrite_region; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
156 Lisp_Object Qverify_visited_file_modtime; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
157 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
158 /* If FILENAME is handled specially on account of its syntax, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
159 return its handler function. Otherwise, return nil. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
160 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
161 Lisp_Object |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
162 find_file_handler (filename) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
163 Lisp_Object filename; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
164 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
165 Lisp_Object chain; |
848 | 166 for (chain = Vfile_name_handler_alist; XTYPE (chain) == Lisp_Cons; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
167 chain = XCONS (chain)->cdr) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
168 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
169 Lisp_Object elt; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
170 elt = XCONS (chain)->car; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
171 if (XTYPE (elt) == Lisp_Cons) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
172 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
173 Lisp_Object string; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
174 string = XCONS (elt)->car; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
175 if (XTYPE (string) == Lisp_String |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
176 && fast_string_match (string, filename) >= 0) |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
177 return XCONS (elt)->cdr; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
178 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
179 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
180 return Qnil; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
181 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
182 |
230 | 183 DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory, |
184 1, 1, 0, | |
185 "Return the directory component in file name NAME.\n\ | |
186 Return nil if NAME does not include a directory.\n\ | |
187 Otherwise return a directory spec.\n\ | |
188 Given a Unix syntax file name, returns a string ending in slash;\n\ | |
189 on VMS, perhaps instead a string ending in `:', `]' or `>'.") | |
190 (file) | |
191 Lisp_Object file; | |
192 { | |
193 register unsigned char *beg; | |
194 register unsigned char *p; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
195 Lisp_Object handler; |
230 | 196 |
197 CHECK_STRING (file, 0); | |
198 | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
199 /* If the file name has special constructs in it, |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
200 call the corresponding file handler. */ |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
201 handler = find_file_handler (file); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
202 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
203 return call2 (handler, Qfile_name_directory, file); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
204 |
230 | 205 beg = XSTRING (file)->data; |
206 p = beg + XSTRING (file)->size; | |
207 | |
208 while (p != beg && p[-1] != '/' | |
209 #ifdef VMS | |
210 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>' | |
211 #endif /* VMS */ | |
212 ) p--; | |
213 | |
214 if (p == beg) | |
215 return Qnil; | |
216 return make_string (beg, p - beg); | |
217 } | |
218 | |
219 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory, Sfile_name_nondirectory, | |
220 1, 1, 0, | |
221 "Return file name NAME sans its directory.\n\ | |
222 For example, in a Unix-syntax file name,\n\ | |
223 this is everything after the last slash,\n\ | |
224 or the entire name if it contains no slash.") | |
225 (file) | |
226 Lisp_Object file; | |
227 { | |
228 register unsigned char *beg, *p, *end; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
229 Lisp_Object handler; |
230 | 230 |
231 CHECK_STRING (file, 0); | |
232 | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
233 /* If the file name has special constructs in it, |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
234 call the corresponding file handler. */ |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
235 handler = find_file_handler (file); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
236 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
237 return call2 (handler, Qfile_name_nondirectory, file); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
238 |
230 | 239 beg = XSTRING (file)->data; |
240 end = p = beg + XSTRING (file)->size; | |
241 | |
242 while (p != beg && p[-1] != '/' | |
243 #ifdef VMS | |
244 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>' | |
245 #endif /* VMS */ | |
246 ) p--; | |
247 | |
248 return make_string (p, end - p); | |
249 } | |
250 | |
251 char * | |
252 file_name_as_directory (out, in) | |
253 char *out, *in; | |
254 { | |
255 int size = strlen (in) - 1; | |
256 | |
257 strcpy (out, in); | |
258 | |
259 #ifdef VMS | |
260 /* Is it already a directory string? */ | |
261 if (in[size] == ':' || in[size] == ']' || in[size] == '>') | |
262 return out; | |
263 /* Is it a VMS directory file name? If so, hack VMS syntax. */ | |
264 else if (! index (in, '/') | |
265 && ((size > 3 && ! strcmp (&in[size - 3], ".DIR")) | |
266 || (size > 3 && ! strcmp (&in[size - 3], ".dir")) | |
267 || (size > 5 && (! strncmp (&in[size - 5], ".DIR", 4) | |
268 || ! strncmp (&in[size - 5], ".dir", 4)) | |
269 && (in[size - 1] == '.' || in[size - 1] == ';') | |
270 && in[size] == '1'))) | |
271 { | |
272 register char *p, *dot; | |
273 char brack; | |
274 | |
275 /* x.dir -> [.x] | |
276 dir:x.dir --> dir:[x] | |
277 dir:[x]y.dir --> dir:[x.y] */ | |
278 p = in + size; | |
279 while (p != in && *p != ':' && *p != '>' && *p != ']') p--; | |
280 if (p != in) | |
281 { | |
282 strncpy (out, in, p - in); | |
283 out[p - in] = '\0'; | |
284 if (*p == ':') | |
285 { | |
286 brack = ']'; | |
287 strcat (out, ":["); | |
288 } | |
289 else | |
290 { | |
291 brack = *p; | |
292 strcat (out, "."); | |
293 } | |
294 p++; | |
295 } | |
296 else | |
297 { | |
298 brack = ']'; | |
299 strcpy (out, "[."); | |
300 } | |
372 | 301 dot = index (p, '.'); |
302 if (dot) | |
230 | 303 { |
304 /* blindly remove any extension */ | |
305 size = strlen (out) + (dot - p); | |
306 strncat (out, p, dot - p); | |
307 } | |
308 else | |
309 { | |
310 strcat (out, p); | |
311 size = strlen (out); | |
312 } | |
313 out[size++] = brack; | |
314 out[size] = '\0'; | |
315 } | |
316 #else /* not VMS */ | |
317 /* For Unix syntax, Append a slash if necessary */ | |
318 if (out[size] != '/') | |
319 strcat (out, "/"); | |
320 #endif /* not VMS */ | |
321 return out; | |
322 } | |
323 | |
324 DEFUN ("file-name-as-directory", Ffile_name_as_directory, | |
325 Sfile_name_as_directory, 1, 1, 0, | |
326 "Return a string representing file FILENAME interpreted as a directory.\n\ | |
327 This operation exists because a directory is also a file, but its name as\n\ | |
328 a directory is different from its name as a file.\n\ | |
329 The result can be used as the value of `default-directory'\n\ | |
330 or passed as second argument to `expand-file-name'.\n\ | |
331 For a Unix-syntax file name, just appends a slash.\n\ | |
332 On VMS, converts \"[X]FOO.DIR\" to \"[X.FOO]\", etc.") | |
333 (file) | |
334 Lisp_Object file; | |
335 { | |
336 char *buf; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
337 Lisp_Object handler; |
230 | 338 |
339 CHECK_STRING (file, 0); | |
485 | 340 if (NILP (file)) |
230 | 341 return Qnil; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
342 |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
343 /* If the file name has special constructs in it, |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
344 call the corresponding file handler. */ |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
345 handler = find_file_handler (file); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
346 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
347 return call2 (handler, Qfile_name_as_directory, file); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
348 |
230 | 349 buf = (char *) alloca (XSTRING (file)->size + 10); |
350 return build_string (file_name_as_directory (buf, XSTRING (file)->data)); | |
351 } | |
352 | |
353 /* | |
354 * Convert from directory name to filename. | |
355 * On VMS: | |
356 * xyzzy:[mukesh.emacs] => xyzzy:[mukesh]emacs.dir.1 | |
357 * xyzzy:[mukesh] => xyzzy:[000000]mukesh.dir.1 | |
358 * On UNIX, it's simple: just make sure there is a terminating / | |
359 | |
360 * Value is nonzero if the string output is different from the input. | |
361 */ | |
362 | |
363 directory_file_name (src, dst) | |
364 char *src, *dst; | |
365 { | |
366 long slen; | |
367 #ifdef VMS | |
368 long rlen; | |
369 char * ptr, * rptr; | |
370 char bracket; | |
371 struct FAB fab = cc$rms_fab; | |
372 struct NAM nam = cc$rms_nam; | |
373 char esa[NAM$C_MAXRSS]; | |
374 #endif /* VMS */ | |
375 | |
376 slen = strlen (src); | |
377 #ifdef VMS | |
378 if (! index (src, '/') | |
379 && (src[slen - 1] == ']' | |
380 || src[slen - 1] == ':' | |
381 || src[slen - 1] == '>')) | |
382 { | |
383 /* VMS style - convert [x.y.z] to [x.y]z, [x] to [000000]x */ | |
384 fab.fab$l_fna = src; | |
385 fab.fab$b_fns = slen; | |
386 fab.fab$l_nam = &nam; | |
387 fab.fab$l_fop = FAB$M_NAM; | |
388 | |
389 nam.nam$l_esa = esa; | |
390 nam.nam$b_ess = sizeof esa; | |
391 nam.nam$b_nop |= NAM$M_SYNCHK; | |
392 | |
393 /* We call SYS$PARSE to handle such things as [--] for us. */ | |
394 if (SYS$PARSE(&fab, 0, 0) == RMS$_NORMAL) | |
395 { | |
396 slen = nam.nam$b_esl; | |
397 if (esa[slen - 1] == ';' && esa[slen - 2] == '.') | |
398 slen -= 2; | |
399 esa[slen] = '\0'; | |
400 src = esa; | |
401 } | |
402 if (src[slen - 1] != ']' && src[slen - 1] != '>') | |
403 { | |
404 /* what about when we have logical_name:???? */ | |
405 if (src[slen - 1] == ':') | |
406 { /* Xlate logical name and see what we get */ | |
407 ptr = strcpy (dst, src); /* upper case for getenv */ | |
408 while (*ptr) | |
409 { | |
410 if ('a' <= *ptr && *ptr <= 'z') | |
411 *ptr -= 040; | |
412 ptr++; | |
413 } | |
414 dst[slen - 1] = 0; /* remove colon */ | |
415 if (!(src = egetenv (dst))) | |
416 return 0; | |
417 /* should we jump to the beginning of this procedure? | |
418 Good points: allows us to use logical names that xlate | |
419 to Unix names, | |
420 Bad points: can be a problem if we just translated to a device | |
421 name... | |
422 For now, I'll punt and always expect VMS names, and hope for | |
423 the best! */ | |
424 slen = strlen (src); | |
425 if (src[slen - 1] != ']' && src[slen - 1] != '>') | |
426 { /* no recursion here! */ | |
427 strcpy (dst, src); | |
428 return 0; | |
429 } | |
430 } | |
431 else | |
432 { /* not a directory spec */ | |
433 strcpy (dst, src); | |
434 return 0; | |
435 } | |
436 } | |
437 bracket = src[slen - 1]; | |
438 | |
439 /* If bracket is ']' or '>', bracket - 2 is the corresponding | |
440 opening bracket. */ | |
372 | 441 ptr = index (src, bracket - 2); |
442 if (ptr == 0) | |
230 | 443 { /* no opening bracket */ |
444 strcpy (dst, src); | |
445 return 0; | |
446 } | |
447 if (!(rptr = rindex (src, '.'))) | |
448 rptr = ptr; | |
449 slen = rptr - src; | |
450 strncpy (dst, src, slen); | |
451 dst[slen] = '\0'; | |
452 if (*rptr == '.') | |
453 { | |
454 dst[slen++] = bracket; | |
455 dst[slen] = '\0'; | |
456 } | |
457 else | |
458 { | |
459 /* If we have the top-level of a rooted directory (i.e. xx:[000000]), | |
460 then translate the device and recurse. */ | |
461 if (dst[slen - 1] == ':' | |
462 && dst[slen - 2] != ':' /* skip decnet nodes */ | |
463 && strcmp(src + slen, "[000000]") == 0) | |
464 { | |
465 dst[slen - 1] = '\0'; | |
466 if ((ptr = egetenv (dst)) | |
467 && (rlen = strlen (ptr) - 1) > 0 | |
468 && (ptr[rlen] == ']' || ptr[rlen] == '>') | |
469 && ptr[rlen - 1] == '.') | |
470 { | |
471 ptr[rlen - 1] = ']'; | |
472 ptr[rlen] = '\0'; | |
473 return directory_file_name (ptr, dst); | |
474 } | |
475 else | |
476 dst[slen - 1] = ':'; | |
477 } | |
478 strcat (dst, "[000000]"); | |
479 slen += 8; | |
480 } | |
481 rptr++; | |
482 rlen = strlen (rptr) - 1; | |
483 strncat (dst, rptr, rlen); | |
484 dst[slen + rlen] = '\0'; | |
485 strcat (dst, ".DIR.1"); | |
486 return 1; | |
487 } | |
488 #endif /* VMS */ | |
489 /* Process as Unix format: just remove any final slash. | |
490 But leave "/" unchanged; do not change it to "". */ | |
491 strcpy (dst, src); | |
621 | 492 if (slen > 1 && dst[slen - 1] == '/') |
230 | 493 dst[slen - 1] = 0; |
494 return 1; | |
495 } | |
496 | |
497 DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name, | |
498 1, 1, 0, | |
499 "Returns the file name of the directory named DIR.\n\ | |
500 This is the name of the file that holds the data for the directory DIR.\n\ | |
501 This operation exists because a directory is also a file, but its name as\n\ | |
502 a directory is different from its name as a file.\n\ | |
503 In Unix-syntax, this function just removes the final slash.\n\ | |
504 On VMS, given a VMS-syntax directory name such as \"[X.Y]\",\n\ | |
505 it returns a file name such as \"[X]Y.DIR.1\".") | |
506 (directory) | |
507 Lisp_Object directory; | |
508 { | |
509 char *buf; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
510 Lisp_Object handler; |
230 | 511 |
512 CHECK_STRING (directory, 0); | |
513 | |
485 | 514 if (NILP (directory)) |
230 | 515 return Qnil; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
516 |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
517 /* If the file name has special constructs in it, |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
518 call the corresponding file handler. */ |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
519 handler = find_file_handler (directory); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
520 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
521 return call2 (handler, Qdirectory_file_name, directory); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
522 |
230 | 523 #ifdef VMS |
524 /* 20 extra chars is insufficient for VMS, since we might perform a | |
525 logical name translation. an equivalence string can be up to 255 | |
526 chars long, so grab that much extra space... - sss */ | |
527 buf = (char *) alloca (XSTRING (directory)->size + 20 + 255); | |
528 #else | |
529 buf = (char *) alloca (XSTRING (directory)->size + 20); | |
530 #endif | |
531 directory_file_name (XSTRING (directory)->data, buf); | |
532 return build_string (buf); | |
533 } | |
534 | |
535 DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0, | |
536 "Generate temporary file name (string) starting with PREFIX (a string).\n\ | |
537 The Emacs process number forms part of the result,\n\ | |
538 so there is no danger of generating a name being used by another process.") | |
539 (prefix) | |
540 Lisp_Object prefix; | |
541 { | |
542 Lisp_Object val; | |
543 val = concat2 (prefix, build_string ("XXXXXX")); | |
544 mktemp (XSTRING (val)->data); | |
545 return val; | |
546 } | |
547 | |
548 DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0, | |
549 "Convert FILENAME to absolute, and canonicalize it.\n\ | |
550 Second arg DEFAULT is directory to start with if FILENAME is relative\n\ | |
551 (does not start with slash); if DEFAULT is nil or missing,\n\ | |
552 the current buffer's value of default-directory is used.\n\ | |
536 | 553 Path components that are `.' are removed, and \n\ |
554 path components followed by `..' are removed, along with the `..' itself;\n\ | |
555 note that these simplifications are done without checking the resulting\n\ | |
556 paths in the file system.\n\ | |
557 An initial `~/' expands to your home directory.\n\ | |
558 An initial `~USER/' expands to USER's home directory.\n\ | |
230 | 559 See also the function `substitute-in-file-name'.") |
560 (name, defalt) | |
561 Lisp_Object name, defalt; | |
562 { | |
563 unsigned char *nm; | |
564 | |
565 register unsigned char *newdir, *p, *o; | |
566 int tlen; | |
567 unsigned char *target; | |
568 struct passwd *pw; | |
569 int lose; | |
570 #ifdef VMS | |
571 unsigned char * colon = 0; | |
572 unsigned char * close = 0; | |
573 unsigned char * slash = 0; | |
574 unsigned char * brack = 0; | |
575 int lbrack = 0, rbrack = 0; | |
576 int dots = 0; | |
577 #endif /* VMS */ | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
578 Lisp_Object handler; |
230 | 579 |
580 CHECK_STRING (name, 0); | |
581 | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
582 /* If the file name has special constructs in it, |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
583 call the corresponding file handler. */ |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
584 handler = find_file_handler (name); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
585 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
586 return call3 (handler, Qexpand_file_name, name, defalt); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
587 |
230 | 588 #ifdef VMS |
589 /* Filenames on VMS are always upper case. */ | |
590 name = Fupcase (name); | |
591 #endif | |
592 | |
593 nm = XSTRING (name)->data; | |
594 | |
595 /* If nm is absolute, flush ...// and detect /./ and /../. | |
596 If no /./ or /../ we can return right away. */ | |
597 if ( | |
598 nm[0] == '/' | |
599 #ifdef VMS | |
600 || index (nm, ':') | |
601 #endif /* VMS */ | |
602 ) | |
603 { | |
604 p = nm; | |
605 lose = 0; | |
606 while (*p) | |
607 { | |
608 if (p[0] == '/' && p[1] == '/' | |
609 #ifdef APOLLO | |
610 /* // at start of filename is meaningful on Apollo system */ | |
611 && nm != p | |
612 #endif /* APOLLO */ | |
613 ) | |
614 nm = p + 1; | |
615 if (p[0] == '/' && p[1] == '~') | |
616 nm = p + 1, lose = 1; | |
617 if (p[0] == '/' && p[1] == '.' | |
618 && (p[2] == '/' || p[2] == 0 | |
619 || (p[2] == '.' && (p[3] == '/' || p[3] == 0)))) | |
620 lose = 1; | |
621 #ifdef VMS | |
622 if (p[0] == '\\') | |
623 lose = 1; | |
624 if (p[0] == '/') { | |
625 /* if dev:[dir]/, move nm to / */ | |
626 if (!slash && p > nm && (brack || colon)) { | |
627 nm = (brack ? brack + 1 : colon + 1); | |
628 lbrack = rbrack = 0; | |
629 brack = 0; | |
630 colon = 0; | |
631 } | |
632 slash = p; | |
633 } | |
634 if (p[0] == '-') | |
635 #ifndef VMS4_4 | |
636 /* VMS pre V4.4,convert '-'s in filenames. */ | |
637 if (lbrack == rbrack) | |
638 { | |
639 if (dots < 2) /* this is to allow negative version numbers */ | |
640 p[0] = '_'; | |
641 } | |
642 else | |
643 #endif /* VMS4_4 */ | |
644 if (lbrack > rbrack && | |
645 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') && | |
646 (p[1] == '.' || p[1] == ']' || p[1] == '>'))) | |
647 lose = 1; | |
648 #ifndef VMS4_4 | |
649 else | |
650 p[0] = '_'; | |
651 #endif /* VMS4_4 */ | |
652 /* count open brackets, reset close bracket pointer */ | |
653 if (p[0] == '[' || p[0] == '<') | |
654 lbrack++, brack = 0; | |
655 /* count close brackets, set close bracket pointer */ | |
656 if (p[0] == ']' || p[0] == '>') | |
657 rbrack++, brack = p; | |
658 /* detect ][ or >< */ | |
659 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<')) | |
660 lose = 1; | |
661 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~') | |
662 nm = p + 1, lose = 1; | |
663 if (p[0] == ':' && (colon || slash)) | |
664 /* if dev1:[dir]dev2:, move nm to dev2: */ | |
665 if (brack) | |
666 { | |
667 nm = brack + 1; | |
668 brack = 0; | |
669 } | |
670 /* if /pathname/dev:, move nm to dev: */ | |
671 else if (slash) | |
672 nm = slash + 1; | |
673 /* if node::dev:, move colon following dev */ | |
674 else if (colon && colon[-1] == ':') | |
675 colon = p; | |
676 /* if dev1:dev2:, move nm to dev2: */ | |
677 else if (colon && colon[-1] != ':') | |
678 { | |
679 nm = colon + 1; | |
680 colon = 0; | |
681 } | |
682 if (p[0] == ':' && !colon) | |
683 { | |
684 if (p[1] == ':') | |
685 p++; | |
686 colon = p; | |
687 } | |
688 if (lbrack == rbrack) | |
689 if (p[0] == ';') | |
690 dots = 2; | |
691 else if (p[0] == '.') | |
692 dots++; | |
693 #endif /* VMS */ | |
694 p++; | |
695 } | |
696 if (!lose) | |
697 { | |
698 #ifdef VMS | |
699 if (index (nm, '/')) | |
700 return build_string (sys_translate_unix (nm)); | |
701 #endif /* VMS */ | |
702 if (nm == XSTRING (name)->data) | |
703 return name; | |
704 return build_string (nm); | |
705 } | |
706 } | |
707 | |
708 /* Now determine directory to start with and put it in newdir */ | |
709 | |
710 newdir = 0; | |
711 | |
712 if (nm[0] == '~') /* prefix ~ */ | |
713 if (nm[1] == '/' | |
714 #ifdef VMS | |
715 || nm[1] == ':' | |
716 #endif /* VMS */ | |
732 | 717 || nm[1] == 0)/* ~ by itself */ |
230 | 718 { |
719 if (!(newdir = (unsigned char *) egetenv ("HOME"))) | |
720 newdir = (unsigned char *) ""; | |
721 nm++; | |
722 #ifdef VMS | |
723 nm++; /* Don't leave the slash in nm. */ | |
724 #endif /* VMS */ | |
725 } | |
726 else /* ~user/filename */ | |
727 { | |
728 for (p = nm; *p && (*p != '/' | |
729 #ifdef VMS | |
730 && *p != ':' | |
731 #endif /* VMS */ | |
732 ); p++); | |
733 o = (unsigned char *) alloca (p - nm + 1); | |
734 bcopy ((char *) nm, o, p - nm); | |
735 o [p - nm] = 0; | |
736 | |
737 pw = (struct passwd *) getpwnam (o + 1); | |
732 | 738 if (pw) |
739 { | |
740 newdir = (unsigned char *) pw -> pw_dir; | |
230 | 741 #ifdef VMS |
732 | 742 nm = p + 1; /* skip the terminator */ |
230 | 743 #else |
732 | 744 nm = p; |
230 | 745 #endif /* VMS */ |
732 | 746 } |
747 | |
748 /* If we don't find a user of that name, leave the name | |
749 unchanged; don't move nm forward to p. */ | |
230 | 750 } |
751 | |
752 if (nm[0] != '/' | |
753 #ifdef VMS | |
754 && !index (nm, ':') | |
755 #endif /* not VMS */ | |
756 && !newdir) | |
757 { | |
485 | 758 if (NILP (defalt)) |
230 | 759 defalt = current_buffer->directory; |
760 CHECK_STRING (defalt, 1); | |
761 newdir = XSTRING (defalt)->data; | |
762 } | |
763 | |
372 | 764 if (newdir != 0) |
765 { | |
766 /* Get rid of any slash at the end of newdir. */ | |
767 int length = strlen (newdir); | |
768 if (newdir[length - 1] == '/') | |
769 { | |
770 unsigned char *temp = (unsigned char *) alloca (length); | |
771 bcopy (newdir, temp, length - 1); | |
772 temp[length - 1] = 0; | |
773 newdir = temp; | |
774 } | |
775 tlen = length + 1; | |
776 } | |
777 else | |
778 tlen = 0; | |
230 | 779 |
372 | 780 /* Now concatenate the directory and name to new space in the stack frame */ |
781 tlen += strlen (nm) + 1; | |
230 | 782 target = (unsigned char *) alloca (tlen); |
783 *target = 0; | |
784 | |
785 if (newdir) | |
786 { | |
787 #ifndef VMS | |
788 if (nm[0] == 0 || nm[0] == '/') | |
789 strcpy (target, newdir); | |
790 else | |
791 #endif | |
792 file_name_as_directory (target, newdir); | |
793 } | |
794 | |
795 strcat (target, nm); | |
796 #ifdef VMS | |
797 if (index (target, '/')) | |
798 strcpy (target, sys_translate_unix (target)); | |
799 #endif /* VMS */ | |
800 | |
801 /* Now canonicalize by removing /. and /foo/.. if they appear */ | |
802 | |
803 p = target; | |
804 o = target; | |
805 | |
806 while (*p) | |
807 { | |
808 #ifdef VMS | |
809 if (*p != ']' && *p != '>' && *p != '-') | |
810 { | |
811 if (*p == '\\') | |
812 p++; | |
813 *o++ = *p++; | |
814 } | |
815 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2) | |
816 /* brackets are offset from each other by 2 */ | |
817 { | |
818 p += 2; | |
819 if (*p != '.' && *p != '-' && o[-1] != '.') | |
820 /* convert [foo][bar] to [bar] */ | |
821 while (o[-1] != '[' && o[-1] != '<') | |
822 o--; | |
823 else if (*p == '-' && *o != '.') | |
824 *--p = '.'; | |
825 } | |
826 else if (p[0] == '-' && o[-1] == '.' && | |
827 (p[1] == '.' || p[1] == ']' || p[1] == '>')) | |
828 /* flush .foo.- ; leave - if stopped by '[' or '<' */ | |
829 { | |
830 do | |
831 o--; | |
832 while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<'); | |
833 if (p[1] == '.') /* foo.-.bar ==> bar*/ | |
834 p += 2; | |
835 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */ | |
836 p++, o--; | |
837 /* else [foo.-] ==> [-] */ | |
838 } | |
839 else | |
840 { | |
841 #ifndef VMS4_4 | |
842 if (*p == '-' && | |
843 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' && | |
844 p[1] != ']' && p[1] != '>' && p[1] != '.') | |
845 *p = '_'; | |
846 #endif /* VMS4_4 */ | |
847 *o++ = *p++; | |
848 } | |
849 #else /* not VMS */ | |
850 if (*p != '/') | |
851 { | |
852 *o++ = *p++; | |
853 } | |
854 else if (!strncmp (p, "//", 2) | |
855 #ifdef APOLLO | |
856 /* // at start of filename is meaningful in Apollo system */ | |
857 && o != target | |
858 #endif /* APOLLO */ | |
859 ) | |
860 { | |
861 o = target; | |
862 p++; | |
863 } | |
864 else if (p[0] == '/' && p[1] == '.' && | |
865 (p[2] == '/' || p[2] == 0)) | |
866 p += 2; | |
867 else if (!strncmp (p, "/..", 3) | |
868 /* `/../' is the "superroot" on certain file systems. */ | |
869 && o != target | |
870 && (p[3] == '/' || p[3] == 0)) | |
871 { | |
872 while (o != target && *--o != '/') | |
873 ; | |
874 #ifdef APOLLO | |
875 if (o == target + 1 && o[-1] == '/' && o[0] == '/') | |
876 ++o; | |
877 else | |
878 #endif /* APOLLO */ | |
879 if (o == target && *o == '/') | |
880 ++o; | |
881 p += 3; | |
882 } | |
883 else | |
884 { | |
885 *o++ = *p++; | |
886 } | |
887 #endif /* not VMS */ | |
888 } | |
889 | |
890 return make_string (target, o - target); | |
891 } | |
892 #if 0 | |
732 | 893 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. |
894 DEAFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0, | |
230 | 895 "Convert FILENAME to absolute, and canonicalize it.\n\ |
896 Second arg DEFAULT is directory to start with if FILENAME is relative\n\ | |
897 (does not start with slash); if DEFAULT is nil or missing,\n\ | |
898 the current buffer's value of default-directory is used.\n\ | |
899 Filenames containing `.' or `..' as components are simplified;\n\ | |
900 initial `~/' expands to your home directory.\n\ | |
901 See also the function `substitute-in-file-name'.") | |
902 (name, defalt) | |
903 Lisp_Object name, defalt; | |
904 { | |
905 unsigned char *nm; | |
906 | |
907 register unsigned char *newdir, *p, *o; | |
908 int tlen; | |
909 unsigned char *target; | |
910 struct passwd *pw; | |
911 int lose; | |
912 #ifdef VMS | |
913 unsigned char * colon = 0; | |
914 unsigned char * close = 0; | |
915 unsigned char * slash = 0; | |
916 unsigned char * brack = 0; | |
917 int lbrack = 0, rbrack = 0; | |
918 int dots = 0; | |
919 #endif /* VMS */ | |
920 | |
921 CHECK_STRING (name, 0); | |
922 | |
923 #ifdef VMS | |
924 /* Filenames on VMS are always upper case. */ | |
925 name = Fupcase (name); | |
926 #endif | |
927 | |
928 nm = XSTRING (name)->data; | |
929 | |
930 /* If nm is absolute, flush ...// and detect /./ and /../. | |
931 If no /./ or /../ we can return right away. */ | |
932 if ( | |
933 nm[0] == '/' | |
934 #ifdef VMS | |
935 || index (nm, ':') | |
936 #endif /* VMS */ | |
937 ) | |
938 { | |
939 p = nm; | |
940 lose = 0; | |
941 while (*p) | |
942 { | |
943 if (p[0] == '/' && p[1] == '/' | |
944 #ifdef APOLLO | |
945 /* // at start of filename is meaningful on Apollo system */ | |
946 && nm != p | |
947 #endif /* APOLLO */ | |
948 ) | |
949 nm = p + 1; | |
950 if (p[0] == '/' && p[1] == '~') | |
951 nm = p + 1, lose = 1; | |
952 if (p[0] == '/' && p[1] == '.' | |
953 && (p[2] == '/' || p[2] == 0 | |
954 || (p[2] == '.' && (p[3] == '/' || p[3] == 0)))) | |
955 lose = 1; | |
956 #ifdef VMS | |
957 if (p[0] == '\\') | |
958 lose = 1; | |
959 if (p[0] == '/') { | |
960 /* if dev:[dir]/, move nm to / */ | |
961 if (!slash && p > nm && (brack || colon)) { | |
962 nm = (brack ? brack + 1 : colon + 1); | |
963 lbrack = rbrack = 0; | |
964 brack = 0; | |
965 colon = 0; | |
966 } | |
967 slash = p; | |
968 } | |
969 if (p[0] == '-') | |
970 #ifndef VMS4_4 | |
971 /* VMS pre V4.4,convert '-'s in filenames. */ | |
972 if (lbrack == rbrack) | |
973 { | |
974 if (dots < 2) /* this is to allow negative version numbers */ | |
975 p[0] = '_'; | |
976 } | |
977 else | |
978 #endif /* VMS4_4 */ | |
979 if (lbrack > rbrack && | |
980 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') && | |
981 (p[1] == '.' || p[1] == ']' || p[1] == '>'))) | |
982 lose = 1; | |
983 #ifndef VMS4_4 | |
984 else | |
985 p[0] = '_'; | |
986 #endif /* VMS4_4 */ | |
987 /* count open brackets, reset close bracket pointer */ | |
988 if (p[0] == '[' || p[0] == '<') | |
989 lbrack++, brack = 0; | |
990 /* count close brackets, set close bracket pointer */ | |
991 if (p[0] == ']' || p[0] == '>') | |
992 rbrack++, brack = p; | |
993 /* detect ][ or >< */ | |
994 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<')) | |
995 lose = 1; | |
996 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~') | |
997 nm = p + 1, lose = 1; | |
998 if (p[0] == ':' && (colon || slash)) | |
999 /* if dev1:[dir]dev2:, move nm to dev2: */ | |
1000 if (brack) | |
1001 { | |
1002 nm = brack + 1; | |
1003 brack = 0; | |
1004 } | |
1005 /* if /pathname/dev:, move nm to dev: */ | |
1006 else if (slash) | |
1007 nm = slash + 1; | |
1008 /* if node::dev:, move colon following dev */ | |
1009 else if (colon && colon[-1] == ':') | |
1010 colon = p; | |
1011 /* if dev1:dev2:, move nm to dev2: */ | |
1012 else if (colon && colon[-1] != ':') | |
1013 { | |
1014 nm = colon + 1; | |
1015 colon = 0; | |
1016 } | |
1017 if (p[0] == ':' && !colon) | |
1018 { | |
1019 if (p[1] == ':') | |
1020 p++; | |
1021 colon = p; | |
1022 } | |
1023 if (lbrack == rbrack) | |
1024 if (p[0] == ';') | |
1025 dots = 2; | |
1026 else if (p[0] == '.') | |
1027 dots++; | |
1028 #endif /* VMS */ | |
1029 p++; | |
1030 } | |
1031 if (!lose) | |
1032 { | |
1033 #ifdef VMS | |
1034 if (index (nm, '/')) | |
1035 return build_string (sys_translate_unix (nm)); | |
1036 #endif /* VMS */ | |
1037 if (nm == XSTRING (name)->data) | |
1038 return name; | |
1039 return build_string (nm); | |
1040 } | |
1041 } | |
1042 | |
1043 /* Now determine directory to start with and put it in NEWDIR */ | |
1044 | |
1045 newdir = 0; | |
1046 | |
1047 if (nm[0] == '~') /* prefix ~ */ | |
1048 if (nm[1] == '/' | |
1049 #ifdef VMS | |
1050 || nm[1] == ':' | |
1051 #endif /* VMS */ | |
1052 || nm[1] == 0)/* ~/filename */ | |
1053 { | |
1054 if (!(newdir = (unsigned char *) egetenv ("HOME"))) | |
1055 newdir = (unsigned char *) ""; | |
1056 nm++; | |
1057 #ifdef VMS | |
1058 nm++; /* Don't leave the slash in nm. */ | |
1059 #endif /* VMS */ | |
1060 } | |
1061 else /* ~user/filename */ | |
1062 { | |
1063 /* Get past ~ to user */ | |
1064 unsigned char *user = nm + 1; | |
1065 /* Find end of name. */ | |
1066 unsigned char *ptr = (unsigned char *) index (user, '/'); | |
1067 int len = ptr ? ptr - user : strlen (user); | |
1068 #ifdef VMS | |
1069 unsigned char *ptr1 = index (user, ':'); | |
1070 if (ptr1 != 0 && ptr1 - user < len) | |
1071 len = ptr1 - user; | |
1072 #endif /* VMS */ | |
1073 /* Copy the user name into temp storage. */ | |
1074 o = (unsigned char *) alloca (len + 1); | |
1075 bcopy ((char *) user, o, len); | |
1076 o[len] = 0; | |
1077 | |
1078 /* Look up the user name. */ | |
1079 pw = (struct passwd *) getpwnam (o + 1); | |
1080 if (!pw) | |
1081 error ("\"%s\" isn't a registered user", o + 1); | |
1082 | |
1083 newdir = (unsigned char *) pw->pw_dir; | |
1084 | |
1085 /* Discard the user name from NM. */ | |
1086 nm += len; | |
1087 } | |
1088 | |
1089 if (nm[0] != '/' | |
1090 #ifdef VMS | |
1091 && !index (nm, ':') | |
1092 #endif /* not VMS */ | |
1093 && !newdir) | |
1094 { | |
485 | 1095 if (NILP (defalt)) |
230 | 1096 defalt = current_buffer->directory; |
1097 CHECK_STRING (defalt, 1); | |
1098 newdir = XSTRING (defalt)->data; | |
1099 } | |
1100 | |
1101 /* Now concatenate the directory and name to new space in the stack frame */ | |
1102 | |
1103 tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1; | |
1104 target = (unsigned char *) alloca (tlen); | |
1105 *target = 0; | |
1106 | |
1107 if (newdir) | |
1108 { | |
1109 #ifndef VMS | |
1110 if (nm[0] == 0 || nm[0] == '/') | |
1111 strcpy (target, newdir); | |
1112 else | |
1113 #endif | |
1114 file_name_as_directory (target, newdir); | |
1115 } | |
1116 | |
1117 strcat (target, nm); | |
1118 #ifdef VMS | |
1119 if (index (target, '/')) | |
1120 strcpy (target, sys_translate_unix (target)); | |
1121 #endif /* VMS */ | |
1122 | |
1123 /* Now canonicalize by removing /. and /foo/.. if they appear */ | |
1124 | |
1125 p = target; | |
1126 o = target; | |
1127 | |
1128 while (*p) | |
1129 { | |
1130 #ifdef VMS | |
1131 if (*p != ']' && *p != '>' && *p != '-') | |
1132 { | |
1133 if (*p == '\\') | |
1134 p++; | |
1135 *o++ = *p++; | |
1136 } | |
1137 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2) | |
1138 /* brackets are offset from each other by 2 */ | |
1139 { | |
1140 p += 2; | |
1141 if (*p != '.' && *p != '-' && o[-1] != '.') | |
1142 /* convert [foo][bar] to [bar] */ | |
1143 while (o[-1] != '[' && o[-1] != '<') | |
1144 o--; | |
1145 else if (*p == '-' && *o != '.') | |
1146 *--p = '.'; | |
1147 } | |
1148 else if (p[0] == '-' && o[-1] == '.' && | |
1149 (p[1] == '.' || p[1] == ']' || p[1] == '>')) | |
1150 /* flush .foo.- ; leave - if stopped by '[' or '<' */ | |
1151 { | |
1152 do | |
1153 o--; | |
1154 while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<'); | |
1155 if (p[1] == '.') /* foo.-.bar ==> bar*/ | |
1156 p += 2; | |
1157 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */ | |
1158 p++, o--; | |
1159 /* else [foo.-] ==> [-] */ | |
1160 } | |
1161 else | |
1162 { | |
1163 #ifndef VMS4_4 | |
1164 if (*p == '-' && | |
1165 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' && | |
1166 p[1] != ']' && p[1] != '>' && p[1] != '.') | |
1167 *p = '_'; | |
1168 #endif /* VMS4_4 */ | |
1169 *o++ = *p++; | |
1170 } | |
1171 #else /* not VMS */ | |
1172 if (*p != '/') | |
1173 { | |
1174 *o++ = *p++; | |
1175 } | |
1176 else if (!strncmp (p, "//", 2) | |
1177 #ifdef APOLLO | |
1178 /* // at start of filename is meaningful in Apollo system */ | |
1179 && o != target | |
1180 #endif /* APOLLO */ | |
1181 ) | |
1182 { | |
1183 o = target; | |
1184 p++; | |
1185 } | |
1186 else if (p[0] == '/' && p[1] == '.' && | |
1187 (p[2] == '/' || p[2] == 0)) | |
1188 p += 2; | |
1189 else if (!strncmp (p, "/..", 3) | |
1190 /* `/../' is the "superroot" on certain file systems. */ | |
1191 && o != target | |
1192 && (p[3] == '/' || p[3] == 0)) | |
1193 { | |
1194 while (o != target && *--o != '/') | |
1195 ; | |
1196 #ifdef APOLLO | |
1197 if (o == target + 1 && o[-1] == '/' && o[0] == '/') | |
1198 ++o; | |
1199 else | |
1200 #endif /* APOLLO */ | |
1201 if (o == target && *o == '/') | |
1202 ++o; | |
1203 p += 3; | |
1204 } | |
1205 else | |
1206 { | |
1207 *o++ = *p++; | |
1208 } | |
1209 #endif /* not VMS */ | |
1210 } | |
1211 | |
1212 return make_string (target, o - target); | |
1213 } | |
1214 #endif | |
1215 | |
1216 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name, | |
1217 Ssubstitute_in_file_name, 1, 1, 0, | |
1218 "Substitute environment variables referred to in FILENAME.\n\ | |
1219 `$FOO' where FOO is an environment variable name means to substitute\n\ | |
1220 the value of that variable. The variable name should be terminated\n\ | |
1221 with a character not a letter, digit or underscore; otherwise, enclose\n\ | |
1222 the entire variable name in braces.\n\ | |
1223 If `/~' appears, all of FILENAME through that `/' is discarded.\n\n\ | |
1224 On VMS, `$' substitution is not done; this function does little and only\n\ | |
1225 duplicates what `expand-file-name' does.") | |
1226 (string) | |
1227 Lisp_Object string; | |
1228 { | |
1229 unsigned char *nm; | |
1230 | |
1231 register unsigned char *s, *p, *o, *x, *endp; | |
1232 unsigned char *target; | |
1233 int total = 0; | |
1234 int substituted = 0; | |
1235 unsigned char *xnm; | |
1236 | |
1237 CHECK_STRING (string, 0); | |
1238 | |
1239 nm = XSTRING (string)->data; | |
1240 endp = nm + XSTRING (string)->size; | |
1241 | |
1242 /* If /~ or // appears, discard everything through first slash. */ | |
1243 | |
1244 for (p = nm; p != endp; p++) | |
1245 { | |
1246 if ((p[0] == '~' || | |
1247 #ifdef APOLLO | |
1248 /* // at start of file name is meaningful in Apollo system */ | |
1249 (p[0] == '/' && p - 1 != nm) | |
1250 #else /* not APOLLO */ | |
1251 p[0] == '/' | |
1252 #endif /* not APOLLO */ | |
1253 ) | |
1254 && p != nm && | |
1255 #ifdef VMS | |
1256 (p[-1] == ':' || p[-1] == ']' || p[-1] == '>' || | |
1257 #endif /* VMS */ | |
1258 p[-1] == '/') | |
1259 #ifdef VMS | |
1260 ) | |
1261 #endif /* VMS */ | |
1262 { | |
1263 nm = p; | |
1264 substituted = 1; | |
1265 } | |
1266 } | |
1267 | |
1268 #ifdef VMS | |
1269 return build_string (nm); | |
1270 #else | |
1271 | |
1272 /* See if any variables are substituted into the string | |
1273 and find the total length of their values in `total' */ | |
1274 | |
1275 for (p = nm; p != endp;) | |
1276 if (*p != '$') | |
1277 p++; | |
1278 else | |
1279 { | |
1280 p++; | |
1281 if (p == endp) | |
1282 goto badsubst; | |
1283 else if (*p == '$') | |
1284 { | |
1285 /* "$$" means a single "$" */ | |
1286 p++; | |
1287 total -= 1; | |
1288 substituted = 1; | |
1289 continue; | |
1290 } | |
1291 else if (*p == '{') | |
1292 { | |
1293 o = ++p; | |
1294 while (p != endp && *p != '}') p++; | |
1295 if (*p != '}') goto missingclose; | |
1296 s = p; | |
1297 } | |
1298 else | |
1299 { | |
1300 o = p; | |
1301 while (p != endp && (isalnum (*p) || *p == '_')) p++; | |
1302 s = p; | |
1303 } | |
1304 | |
1305 /* Copy out the variable name */ | |
1306 target = (unsigned char *) alloca (s - o + 1); | |
1307 strncpy (target, o, s - o); | |
1308 target[s - o] = 0; | |
1309 | |
1310 /* Get variable value */ | |
1311 o = (unsigned char *) egetenv (target); | |
1312 /* The presence of this code makes vax 5.0 crash, for reasons yet unknown */ | |
1313 #if 0 | |
1314 #ifdef USG | |
1315 if (!o && !strcmp (target, "USER")) | |
1316 o = egetenv ("LOGNAME"); | |
1317 #endif /* USG */ | |
1318 #endif /* 0 */ | |
1319 if (!o) goto badvar; | |
1320 total += strlen (o); | |
1321 substituted = 1; | |
1322 } | |
1323 | |
1324 if (!substituted) | |
1325 return string; | |
1326 | |
1327 /* If substitution required, recopy the string and do it */ | |
1328 /* Make space in stack frame for the new copy */ | |
1329 xnm = (unsigned char *) alloca (XSTRING (string)->size + total + 1); | |
1330 x = xnm; | |
1331 | |
1332 /* Copy the rest of the name through, replacing $ constructs with values */ | |
1333 for (p = nm; *p;) | |
1334 if (*p != '$') | |
1335 *x++ = *p++; | |
1336 else | |
1337 { | |
1338 p++; | |
1339 if (p == endp) | |
1340 goto badsubst; | |
1341 else if (*p == '$') | |
1342 { | |
1343 *x++ = *p++; | |
1344 continue; | |
1345 } | |
1346 else if (*p == '{') | |
1347 { | |
1348 o = ++p; | |
1349 while (p != endp && *p != '}') p++; | |
1350 if (*p != '}') goto missingclose; | |
1351 s = p++; | |
1352 } | |
1353 else | |
1354 { | |
1355 o = p; | |
1356 while (p != endp && (isalnum (*p) || *p == '_')) p++; | |
1357 s = p; | |
1358 } | |
1359 | |
1360 /* Copy out the variable name */ | |
1361 target = (unsigned char *) alloca (s - o + 1); | |
1362 strncpy (target, o, s - o); | |
1363 target[s - o] = 0; | |
1364 | |
1365 /* Get variable value */ | |
1366 o = (unsigned char *) egetenv (target); | |
1367 /* The presence of this code makes vax 5.0 crash, for reasons yet unknown */ | |
1368 #if 0 | |
1369 #ifdef USG | |
1370 if (!o && !strcmp (target, "USER")) | |
1371 o = egetenv ("LOGNAME"); | |
1372 #endif /* USG */ | |
1373 #endif /* 0 */ | |
1374 if (!o) | |
1375 goto badvar; | |
1376 | |
1377 strcpy (x, o); | |
1378 x += strlen (o); | |
1379 } | |
1380 | |
1381 *x = 0; | |
1382 | |
1383 /* If /~ or // appears, discard everything through first slash. */ | |
1384 | |
1385 for (p = xnm; p != x; p++) | |
1386 if ((p[0] == '~' || | |
1387 #ifdef APOLLO | |
1388 /* // at start of file name is meaningful in Apollo system */ | |
1389 (p[0] == '/' && p - 1 != xnm) | |
1390 #else /* not APOLLO */ | |
1391 p[0] == '/' | |
1392 #endif /* not APOLLO */ | |
1393 ) | |
1394 && p != nm && p[-1] == '/') | |
1395 xnm = p; | |
1396 | |
1397 return make_string (xnm, x - xnm); | |
1398 | |
1399 badsubst: | |
1400 error ("Bad format environment-variable substitution"); | |
1401 missingclose: | |
1402 error ("Missing \"}\" in environment-variable substitution"); | |
1403 badvar: | |
1404 error ("Substituting nonexistent environment variable \"%s\"", target); | |
1405 | |
1406 /* NOTREACHED */ | |
1407 #endif /* not VMS */ | |
1408 } | |
1409 | |
853 | 1410 /* A slightly faster and more convenient way to get |
1411 (directory-file-name (expand-file-name FOO)). The return value may | |
1412 have had its last character zapped with a '\0' character, meaning | |
1413 that it is acceptable to system calls, but not to other lisp | |
1414 functions. Callers should make sure that the return value doesn't | |
1415 escape. */ | |
1416 | |
230 | 1417 Lisp_Object |
1418 expand_and_dir_to_file (filename, defdir) | |
1419 Lisp_Object filename, defdir; | |
1420 { | |
1421 register Lisp_Object abspath; | |
1422 | |
1423 abspath = Fexpand_file_name (filename, defdir); | |
1424 #ifdef VMS | |
1425 { | |
1426 register int c = XSTRING (abspath)->data[XSTRING (abspath)->size - 1]; | |
1427 if (c == ':' || c == ']' || c == '>') | |
1428 abspath = Fdirectory_file_name (abspath); | |
1429 } | |
1430 #else | |
1431 /* Remove final slash, if any (unless path is root). | |
1432 stat behaves differently depending! */ | |
1433 if (XSTRING (abspath)->size > 1 | |
1434 && XSTRING (abspath)->data[XSTRING (abspath)->size - 1] == '/') | |
1435 { | |
1436 if (EQ (abspath, filename)) | |
1437 abspath = Fcopy_sequence (abspath); | |
1438 XSTRING (abspath)->data[XSTRING (abspath)->size - 1] = 0; | |
1439 } | |
1440 #endif | |
1441 return abspath; | |
1442 } | |
1443 | |
1444 barf_or_query_if_file_exists (absname, querystring, interactive) | |
1445 Lisp_Object absname; | |
1446 unsigned char *querystring; | |
1447 int interactive; | |
1448 { | |
1449 register Lisp_Object tem; | |
1450 struct gcpro gcpro1; | |
1451 | |
1452 if (access (XSTRING (absname)->data, 4) >= 0) | |
1453 { | |
1454 if (! interactive) | |
1455 Fsignal (Qfile_already_exists, | |
1456 Fcons (build_string ("File already exists"), | |
1457 Fcons (absname, Qnil))); | |
1458 GCPRO1 (absname); | |
1459 tem = do_yes_or_no_p (format1 ("File %s already exists; %s anyway? ", | |
1460 XSTRING (absname)->data, querystring)); | |
1461 UNGCPRO; | |
485 | 1462 if (NILP (tem)) |
230 | 1463 Fsignal (Qfile_already_exists, |
1464 Fcons (build_string ("File already exists"), | |
1465 Fcons (absname, Qnil))); | |
1466 } | |
1467 return; | |
1468 } | |
1469 | |
1470 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 4, | |
410 | 1471 "fCopy file: \nFCopy %s to file: \np\nP", |
230 | 1472 "Copy FILE to NEWNAME. Both args must be strings.\n\ |
1473 Signals a `file-already-exists' error if file NEWNAME already exists,\n\ | |
1474 unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.\n\ | |
1475 A number as third arg means request confirmation if NEWNAME already exists.\n\ | |
1476 This is what happens in interactive use with M-x.\n\ | |
410 | 1477 Fourth arg KEEP-TIME non-nil means give the new file the same\n\ |
1478 last-modified time as the old one. (This works on only some systems.)\n\ | |
1479 A prefix arg makes KEEP-TIME non-nil.") | |
230 | 1480 (filename, newname, ok_if_already_exists, keep_date) |
1481 Lisp_Object filename, newname, ok_if_already_exists, keep_date; | |
1482 { | |
1483 int ifd, ofd, n; | |
1484 char buf[16 * 1024]; | |
1485 struct stat st; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1486 Lisp_Object handler; |
230 | 1487 struct gcpro gcpro1, gcpro2; |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1488 int count = specpdl_ptr - specpdl; |
230 | 1489 |
1490 GCPRO2 (filename, newname); | |
1491 CHECK_STRING (filename, 0); | |
1492 CHECK_STRING (newname, 1); | |
1493 filename = Fexpand_file_name (filename, Qnil); | |
1494 newname = Fexpand_file_name (newname, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1495 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1496 /* If the input file name has special constructs in it, |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1497 call the corresponding file handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1498 handler = find_file_handler (filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1499 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1500 return call3 (handler, Qcopy_file, filename, newname); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1501 /* Likewise for output file name. */ |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1502 handler = find_file_handler (newname); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1503 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1504 return call3 (handler, Qcopy_file, filename, newname); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1505 |
485 | 1506 if (NILP (ok_if_already_exists) |
230 | 1507 || XTYPE (ok_if_already_exists) == Lisp_Int) |
1508 barf_or_query_if_file_exists (newname, "copy to it", | |
1509 XTYPE (ok_if_already_exists) == Lisp_Int); | |
1510 | |
1511 ifd = open (XSTRING (filename)->data, 0); | |
1512 if (ifd < 0) | |
1513 report_file_error ("Opening input file", Fcons (filename, Qnil)); | |
1514 | |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1515 record_unwind_protect (close_file_unwind, make_number (ifd)); |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1516 |
230 | 1517 #ifdef VMS |
1518 /* Create the copy file with the same record format as the input file */ | |
1519 ofd = sys_creat (XSTRING (newname)->data, 0666, ifd); | |
1520 #else | |
1521 ofd = creat (XSTRING (newname)->data, 0666); | |
1522 #endif /* VMS */ | |
1523 if (ofd < 0) | |
595 | 1524 report_file_error ("Opening output file", Fcons (newname, Qnil)); |
230 | 1525 |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1526 record_unwind_protect (close_file_unwind, make_number (ofd)); |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1527 |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1528 immediate_quit = 1; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1529 QUIT; |
230 | 1530 while ((n = read (ifd, buf, sizeof buf)) > 0) |
1531 if (write (ofd, buf, n) != n) | |
595 | 1532 report_file_error ("I/O error", Fcons (newname, Qnil)); |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1533 immediate_quit = 0; |
230 | 1534 |
1535 if (fstat (ifd, &st) >= 0) | |
1536 { | |
485 | 1537 if (!NILP (keep_date)) |
230 | 1538 { |
564 | 1539 EMACS_TIME atime, mtime; |
1540 EMACS_SET_SECS_USECS (atime, st.st_atime, 0); | |
1541 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0); | |
1542 EMACS_SET_UTIMES (XSTRING (newname)->data, atime, mtime); | |
230 | 1543 } |
1544 #ifdef APOLLO | |
1545 if (!egetenv ("USE_DOMAIN_ACLS")) | |
1546 #endif | |
564 | 1547 chmod (XSTRING (newname)->data, st.st_mode & 07777); |
230 | 1548 } |
1549 | |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1550 /* Discard the unwind protects. */ |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1551 specpdl_ptr = specpdl + count; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1552 |
230 | 1553 close (ifd); |
1554 if (close (ofd) < 0) | |
1555 report_file_error ("I/O error", Fcons (newname, Qnil)); | |
1556 | |
1557 UNGCPRO; | |
1558 return Qnil; | |
1559 } | |
1560 | |
1561 DEFUN ("make-directory", Fmake_directory, Smake_directory, 1, 1, "FMake directory: ", | |
1562 "Create a directory. One argument, a file name string.") | |
1563 (dirname) | |
1564 Lisp_Object dirname; | |
1565 { | |
1566 unsigned char *dir; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1567 Lisp_Object handler; |
230 | 1568 |
1569 CHECK_STRING (dirname, 0); | |
1570 dirname = Fexpand_file_name (dirname, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1571 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1572 handler = find_file_handler (dirname); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1573 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1574 return call2 (handler, Qmake_directory, dirname); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1575 |
230 | 1576 dir = XSTRING (dirname)->data; |
1577 | |
1578 if (mkdir (dir, 0777) != 0) | |
1579 report_file_error ("Creating directory", Flist (1, &dirname)); | |
1580 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1581 return Qnil; |
230 | 1582 } |
1583 | |
686
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
1584 DEFUN ("delete-directory", Fdelete_directory, Sdelete_directory, 1, 1, "FDelete directory: ", |
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
1585 "Delete a directory. One argument, a file name string.") |
230 | 1586 (dirname) |
1587 Lisp_Object dirname; | |
1588 { | |
1589 unsigned char *dir; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1590 Lisp_Object handler; |
230 | 1591 |
1592 CHECK_STRING (dirname, 0); | |
1593 dirname = Fexpand_file_name (dirname, Qnil); | |
1594 dir = XSTRING (dirname)->data; | |
1595 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1596 handler = find_file_handler (dirname); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1597 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1598 return call2 (handler, Qdelete_directory, dirname); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1599 |
230 | 1600 if (rmdir (dir) != 0) |
1601 report_file_error ("Removing directory", Flist (1, &dirname)); | |
1602 | |
1603 return Qnil; | |
1604 } | |
1605 | |
1606 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 1, "fDelete file: ", | |
1607 "Delete specified file. One argument, a file name string.\n\ | |
1608 If file has multiple names, it continues to exist with the other names.") | |
1609 (filename) | |
1610 Lisp_Object filename; | |
1611 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1612 Lisp_Object handler; |
230 | 1613 CHECK_STRING (filename, 0); |
1614 filename = Fexpand_file_name (filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1615 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1616 handler = find_file_handler (filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1617 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1618 return call2 (handler, Qdelete_file, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1619 |
230 | 1620 if (0 > unlink (XSTRING (filename)->data)) |
1621 report_file_error ("Removing old name", Flist (1, &filename)); | |
1622 return Qnil; | |
1623 } | |
1624 | |
1625 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3, | |
1626 "fRename file: \nFRename %s to file: \np", | |
1627 "Rename FILE as NEWNAME. Both args strings.\n\ | |
1628 If file has names other than FILE, it continues to have those names.\n\ | |
1629 Signals a `file-already-exists' error if a file NEWNAME already exists\n\ | |
1630 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\ | |
1631 A number as third arg means request confirmation if NEWNAME already exists.\n\ | |
1632 This is what happens in interactive use with M-x.") | |
1633 (filename, newname, ok_if_already_exists) | |
1634 Lisp_Object filename, newname, ok_if_already_exists; | |
1635 { | |
1636 #ifdef NO_ARG_ARRAY | |
1637 Lisp_Object args[2]; | |
1638 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1639 Lisp_Object handler; |
230 | 1640 struct gcpro gcpro1, gcpro2; |
1641 | |
1642 GCPRO2 (filename, newname); | |
1643 CHECK_STRING (filename, 0); | |
1644 CHECK_STRING (newname, 1); | |
1645 filename = Fexpand_file_name (filename, Qnil); | |
1646 newname = Fexpand_file_name (newname, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1647 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1648 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1649 call the corresponding file handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1650 handler = find_file_handler (filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1651 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1652 return call3 (handler, Qrename_file, filename, newname); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1653 |
485 | 1654 if (NILP (ok_if_already_exists) |
230 | 1655 || XTYPE (ok_if_already_exists) == Lisp_Int) |
1656 barf_or_query_if_file_exists (newname, "rename to it", | |
1657 XTYPE (ok_if_already_exists) == Lisp_Int); | |
1658 #ifndef BSD4_1 | |
1659 if (0 > rename (XSTRING (filename)->data, XSTRING (newname)->data)) | |
1660 #else | |
1661 if (0 > link (XSTRING (filename)->data, XSTRING (newname)->data) | |
1662 || 0 > unlink (XSTRING (filename)->data)) | |
1663 #endif | |
1664 { | |
1665 if (errno == EXDEV) | |
1666 { | |
1667 Fcopy_file (filename, newname, ok_if_already_exists, Qt); | |
1668 Fdelete_file (filename); | |
1669 } | |
1670 else | |
1671 #ifdef NO_ARG_ARRAY | |
1672 { | |
1673 args[0] = filename; | |
1674 args[1] = newname; | |
1675 report_file_error ("Renaming", Flist (2, args)); | |
1676 } | |
1677 #else | |
1678 report_file_error ("Renaming", Flist (2, &filename)); | |
1679 #endif | |
1680 } | |
1681 UNGCPRO; | |
1682 return Qnil; | |
1683 } | |
1684 | |
1685 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3, | |
1686 "fAdd name to file: \nFName to add to %s: \np", | |
1687 "Give FILE additional name NEWNAME. Both args strings.\n\ | |
1688 Signals a `file-already-exists' error if a file NEWNAME already exists\n\ | |
1689 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\ | |
1690 A number as third arg means request confirmation if NEWNAME already exists.\n\ | |
1691 This is what happens in interactive use with M-x.") | |
1692 (filename, newname, ok_if_already_exists) | |
1693 Lisp_Object filename, newname, ok_if_already_exists; | |
1694 { | |
1695 #ifdef NO_ARG_ARRAY | |
1696 Lisp_Object args[2]; | |
1697 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1698 Lisp_Object handler; |
230 | 1699 struct gcpro gcpro1, gcpro2; |
1700 | |
1701 GCPRO2 (filename, newname); | |
1702 CHECK_STRING (filename, 0); | |
1703 CHECK_STRING (newname, 1); | |
1704 filename = Fexpand_file_name (filename, Qnil); | |
1705 newname = Fexpand_file_name (newname, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1706 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1707 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1708 call the corresponding file handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1709 handler = find_file_handler (filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1710 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1711 return call3 (handler, Qadd_name_to_file, filename, newname); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1712 |
485 | 1713 if (NILP (ok_if_already_exists) |
230 | 1714 || XTYPE (ok_if_already_exists) == Lisp_Int) |
1715 barf_or_query_if_file_exists (newname, "make it a new name", | |
1716 XTYPE (ok_if_already_exists) == Lisp_Int); | |
1717 unlink (XSTRING (newname)->data); | |
1718 if (0 > link (XSTRING (filename)->data, XSTRING (newname)->data)) | |
1719 { | |
1720 #ifdef NO_ARG_ARRAY | |
1721 args[0] = filename; | |
1722 args[1] = newname; | |
1723 report_file_error ("Adding new name", Flist (2, args)); | |
1724 #else | |
1725 report_file_error ("Adding new name", Flist (2, &filename)); | |
1726 #endif | |
1727 } | |
1728 | |
1729 UNGCPRO; | |
1730 return Qnil; | |
1731 } | |
1732 | |
1733 #ifdef S_IFLNK | |
1734 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3, | |
1735 "FMake symbolic link to file: \nFMake symbolic link to file %s: \np", | |
1736 "Make a symbolic link to FILENAME, named LINKNAME. Both args strings.\n\ | |
1737 Signals a `file-already-exists' error if a file NEWNAME already exists\n\ | |
1738 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\ | |
1739 A number as third arg means request confirmation if NEWNAME already exists.\n\ | |
1740 This happens for interactive use with M-x.") | |
732 | 1741 (filename, linkname, ok_if_already_exists) |
1742 Lisp_Object filename, linkname, ok_if_already_exists; | |
230 | 1743 { |
1744 #ifdef NO_ARG_ARRAY | |
1745 Lisp_Object args[2]; | |
1746 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1747 Lisp_Object handler; |
230 | 1748 struct gcpro gcpro1, gcpro2; |
1749 | |
732 | 1750 GCPRO2 (filename, linkname); |
230 | 1751 CHECK_STRING (filename, 0); |
732 | 1752 CHECK_STRING (linkname, 1); |
230 | 1753 #if 0 /* This made it impossible to make a link to a relative name. */ |
1754 filename = Fexpand_file_name (filename, Qnil); | |
1755 #endif | |
732 | 1756 linkname = Fexpand_file_name (linkname, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1757 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1758 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1759 call the corresponding file handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1760 handler = find_file_handler (filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1761 if (!NILP (handler)) |
848 | 1762 return call3 (handler, Qmake_symbolic_link, filename, linkname); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1763 |
485 | 1764 if (NILP (ok_if_already_exists) |
230 | 1765 || XTYPE (ok_if_already_exists) == Lisp_Int) |
732 | 1766 barf_or_query_if_file_exists (linkname, "make it a link", |
230 | 1767 XTYPE (ok_if_already_exists) == Lisp_Int); |
732 | 1768 if (0 > symlink (XSTRING (filename)->data, XSTRING (linkname)->data)) |
230 | 1769 { |
1770 /* If we didn't complain already, silently delete existing file. */ | |
1771 if (errno == EEXIST) | |
1772 { | |
1773 unlink (XSTRING (filename)->data); | |
732 | 1774 if (0 <= symlink (XSTRING (filename)->data, XSTRING (linkname)->data)) |
230 | 1775 return Qnil; |
1776 } | |
1777 | |
1778 #ifdef NO_ARG_ARRAY | |
1779 args[0] = filename; | |
732 | 1780 args[1] = linkname; |
230 | 1781 report_file_error ("Making symbolic link", Flist (2, args)); |
1782 #else | |
1783 report_file_error ("Making symbolic link", Flist (2, &filename)); | |
1784 #endif | |
1785 } | |
1786 UNGCPRO; | |
1787 return Qnil; | |
1788 } | |
1789 #endif /* S_IFLNK */ | |
1790 | |
1791 #ifdef VMS | |
1792 | |
1793 DEFUN ("define-logical-name", Fdefine_logical_name, Sdefine_logical_name, | |
1794 2, 2, "sDefine logical name: \nsDefine logical name %s as: ", | |
1795 "Define the job-wide logical name NAME to have the value STRING.\n\ | |
1796 If STRING is nil or a null string, the logical name NAME is deleted.") | |
1797 (varname, string) | |
1798 Lisp_Object varname; | |
1799 Lisp_Object string; | |
1800 { | |
1801 CHECK_STRING (varname, 0); | |
485 | 1802 if (NILP (string)) |
230 | 1803 delete_logical_name (XSTRING (varname)->data); |
1804 else | |
1805 { | |
1806 CHECK_STRING (string, 1); | |
1807 | |
1808 if (XSTRING (string)->size == 0) | |
1809 delete_logical_name (XSTRING (varname)->data); | |
1810 else | |
1811 define_logical_name (XSTRING (varname)->data, XSTRING (string)->data); | |
1812 } | |
1813 | |
1814 return string; | |
1815 } | |
1816 #endif /* VMS */ | |
1817 | |
1818 #ifdef HPUX_NET | |
1819 | |
1820 DEFUN ("sysnetunam", Fsysnetunam, Ssysnetunam, 2, 2, 0, | |
1821 "Open a network connection to PATH using LOGIN as the login string.") | |
1822 (path, login) | |
1823 Lisp_Object path, login; | |
1824 { | |
1825 int netresult; | |
1826 | |
1827 CHECK_STRING (path, 0); | |
1828 CHECK_STRING (login, 0); | |
1829 | |
1830 netresult = netunam (XSTRING (path)->data, XSTRING (login)->data); | |
1831 | |
1832 if (netresult == -1) | |
1833 return Qnil; | |
1834 else | |
1835 return Qt; | |
1836 } | |
1837 #endif /* HPUX_NET */ | |
1838 | |
1839 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p, | |
1840 1, 1, 0, | |
1841 "Return t if file FILENAME specifies an absolute path name.\n\ | |
1842 On Unix, this is a name starting with a `/' or a `~'.") | |
1843 (filename) | |
1844 Lisp_Object filename; | |
1845 { | |
1846 unsigned char *ptr; | |
1847 | |
1848 CHECK_STRING (filename, 0); | |
1849 ptr = XSTRING (filename)->data; | |
1850 if (*ptr == '/' || *ptr == '~' | |
1851 #ifdef VMS | |
1852 /* ??? This criterion is probably wrong for '<'. */ | |
1853 || index (ptr, ':') || index (ptr, '<') | |
1854 || (*ptr == '[' && (ptr[1] != '-' || (ptr[2] != '.' && ptr[2] != ']')) | |
1855 && ptr[1] != '.') | |
1856 #endif /* VMS */ | |
1857 ) | |
1858 return Qt; | |
1859 else | |
1860 return Qnil; | |
1861 } | |
1862 | |
1863 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0, | |
1864 "Return t if file FILENAME exists. (This does not mean you can read it.)\n\ | |
1865 See also `file-readable-p' and `file-attributes'.") | |
1866 (filename) | |
1867 Lisp_Object filename; | |
1868 { | |
1869 Lisp_Object abspath; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1870 Lisp_Object handler; |
230 | 1871 |
1872 CHECK_STRING (filename, 0); | |
1873 abspath = Fexpand_file_name (filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1874 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1875 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1876 call the corresponding file handler. */ |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
1877 handler = find_file_handler (abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1878 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
1879 return call2 (handler, Qfile_exists_p, abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1880 |
230 | 1881 return (access (XSTRING (abspath)->data, 0) >= 0) ? Qt : Qnil; |
1882 } | |
1883 | |
1884 DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0, | |
1885 "Return t if FILENAME can be executed by you.\n\ | |
1886 For directories this means you can change to that directory.") | |
1887 (filename) | |
1888 Lisp_Object filename; | |
1889 | |
1890 { | |
1891 Lisp_Object abspath; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1892 Lisp_Object handler; |
230 | 1893 |
1894 CHECK_STRING (filename, 0); | |
1895 abspath = Fexpand_file_name (filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1896 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1897 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1898 call the corresponding file handler. */ |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
1899 handler = find_file_handler (abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1900 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
1901 return call2 (handler, Qfile_executable_p, abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1902 |
230 | 1903 return (access (XSTRING (abspath)->data, 1) >= 0) ? Qt : Qnil; |
1904 } | |
1905 | |
1906 DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0, | |
1907 "Return t if file FILENAME exists and you can read it.\n\ | |
1908 See also `file-exists-p' and `file-attributes'.") | |
1909 (filename) | |
1910 Lisp_Object filename; | |
1911 { | |
1912 Lisp_Object abspath; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1913 Lisp_Object handler; |
230 | 1914 |
1915 CHECK_STRING (filename, 0); | |
1916 abspath = Fexpand_file_name (filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1917 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1918 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1919 call the corresponding file handler. */ |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
1920 handler = find_file_handler (abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1921 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
1922 return call2 (handler, Qfile_readable_p, abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1923 |
230 | 1924 return (access (XSTRING (abspath)->data, 4) >= 0) ? Qt : Qnil; |
1925 } | |
1926 | |
1927 DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0, | |
1928 "If file FILENAME is the name of a symbolic link\n\ | |
1929 returns the name of the file to which it is linked.\n\ | |
1930 Otherwise returns NIL.") | |
1931 (filename) | |
1932 Lisp_Object filename; | |
1933 { | |
1934 #ifdef S_IFLNK | |
1935 char *buf; | |
1936 int bufsize; | |
1937 int valsize; | |
1938 Lisp_Object val; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1939 Lisp_Object handler; |
230 | 1940 |
1941 CHECK_STRING (filename, 0); | |
1942 filename = Fexpand_file_name (filename, Qnil); | |
1943 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1944 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1945 call the corresponding file handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1946 handler = find_file_handler (filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1947 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1948 return call2 (handler, Qfile_symlink_p, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1949 |
230 | 1950 bufsize = 100; |
1951 while (1) | |
1952 { | |
1953 buf = (char *) xmalloc (bufsize); | |
1954 bzero (buf, bufsize); | |
1955 valsize = readlink (XSTRING (filename)->data, buf, bufsize); | |
1956 if (valsize < bufsize) break; | |
1957 /* Buffer was not long enough */ | |
1958 free (buf); | |
1959 bufsize *= 2; | |
1960 } | |
1961 if (valsize == -1) | |
1962 { | |
1963 free (buf); | |
1964 return Qnil; | |
1965 } | |
1966 val = make_string (buf, valsize); | |
1967 free (buf); | |
1968 return val; | |
1969 #else /* not S_IFLNK */ | |
1970 return Qnil; | |
1971 #endif /* not S_IFLNK */ | |
1972 } | |
1973 | |
1974 /* Having this before file-symlink-p mysteriously caused it to be forgotten | |
1975 on the RT/PC. */ | |
1976 DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0, | |
1977 "Return t if file FILENAME can be written or created by you.") | |
1978 (filename) | |
1979 Lisp_Object filename; | |
1980 { | |
1981 Lisp_Object abspath, dir; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1982 Lisp_Object handler; |
230 | 1983 |
1984 CHECK_STRING (filename, 0); | |
1985 abspath = Fexpand_file_name (filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1986 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1987 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1988 call the corresponding file handler. */ |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
1989 handler = find_file_handler (abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1990 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
1991 return call2 (handler, Qfile_writable_p, abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1992 |
230 | 1993 if (access (XSTRING (abspath)->data, 0) >= 0) |
1994 return (access (XSTRING (abspath)->data, 2) >= 0) ? Qt : Qnil; | |
1995 dir = Ffile_name_directory (abspath); | |
1996 #ifdef VMS | |
485 | 1997 if (!NILP (dir)) |
230 | 1998 dir = Fdirectory_file_name (dir); |
1999 #endif /* VMS */ | |
485 | 2000 return (access (!NILP (dir) ? (char *) XSTRING (dir)->data : "", 2) >= 0 |
230 | 2001 ? Qt : Qnil); |
2002 } | |
2003 | |
2004 DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0, | |
2005 "Return t if file FILENAME is the name of a directory as a file.\n\ | |
2006 A directory name spec may be given instead; then the value is t\n\ | |
2007 if the directory so specified exists and really is a directory.") | |
2008 (filename) | |
2009 Lisp_Object filename; | |
2010 { | |
2011 register Lisp_Object abspath; | |
2012 struct stat st; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2013 Lisp_Object handler; |
230 | 2014 |
2015 abspath = expand_and_dir_to_file (filename, current_buffer->directory); | |
2016 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2017 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2018 call the corresponding file handler. */ |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2019 handler = find_file_handler (abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2020 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2021 return call2 (handler, Qfile_directory_p, abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2022 |
230 | 2023 if (stat (XSTRING (abspath)->data, &st) < 0) |
2024 return Qnil; | |
2025 return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil; | |
2026 } | |
2027 | |
536 | 2028 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p, Sfile_accessible_directory_p, 1, 1, 0, |
2029 "Return t if file FILENAME is the name of a directory as a file,\n\ | |
2030 and files in that directory can be opened by you. In order to use a\n\ | |
2031 directory as a buffer's current directory, this predicate must return true.\n\ | |
2032 A directory name spec may be given instead; then the value is t\n\ | |
2033 if the directory so specified exists and really is a readable and\n\ | |
2034 searchable directory.") | |
2035 (filename) | |
2036 Lisp_Object filename; | |
2037 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2038 Lisp_Object handler; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2039 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2040 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2041 call the corresponding file handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2042 handler = find_file_handler (filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2043 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2044 return call2 (handler, Qfile_accessible_directory_p, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2045 |
536 | 2046 if (NILP (Ffile_directory_p (filename)) |
2047 || NILP (Ffile_executable_p (filename))) | |
2048 return Qnil; | |
2049 else | |
2050 return Qt; | |
2051 } | |
2052 | |
230 | 2053 DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0, |
2054 "Return mode bits of FILE, as an integer.") | |
2055 (filename) | |
2056 Lisp_Object filename; | |
2057 { | |
2058 Lisp_Object abspath; | |
2059 struct stat st; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2060 Lisp_Object handler; |
230 | 2061 |
2062 abspath = expand_and_dir_to_file (filename, current_buffer->directory); | |
2063 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2064 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2065 call the corresponding file handler. */ |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2066 handler = find_file_handler (abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2067 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2068 return call2 (handler, Qfile_modes, abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2069 |
230 | 2070 if (stat (XSTRING (abspath)->data, &st) < 0) |
2071 return Qnil; | |
2072 return make_number (st.st_mode & 07777); | |
2073 } | |
2074 | |
2075 DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2, 0, | |
2076 "Set mode bits of FILE to MODE (an integer).\n\ | |
2077 Only the 12 low bits of MODE are used.") | |
2078 (filename, mode) | |
2079 Lisp_Object filename, mode; | |
2080 { | |
2081 Lisp_Object abspath; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2082 Lisp_Object handler; |
230 | 2083 |
2084 abspath = Fexpand_file_name (filename, current_buffer->directory); | |
2085 CHECK_NUMBER (mode, 1); | |
2086 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2087 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2088 call the corresponding file handler. */ |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2089 handler = find_file_handler (abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2090 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2091 return call3 (handler, Qset_file_modes, abspath, mode); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2092 |
230 | 2093 #ifndef APOLLO |
2094 if (chmod (XSTRING (abspath)->data, XINT (mode)) < 0) | |
2095 report_file_error ("Doing chmod", Fcons (abspath, Qnil)); | |
2096 #else /* APOLLO */ | |
2097 if (!egetenv ("USE_DOMAIN_ACLS")) | |
2098 { | |
2099 struct stat st; | |
2100 struct timeval tvp[2]; | |
2101 | |
2102 /* chmod on apollo also change the file's modtime; need to save the | |
2103 modtime and then restore it. */ | |
2104 if (stat (XSTRING (abspath)->data, &st) < 0) | |
2105 { | |
2106 report_file_error ("Doing chmod", Fcons (abspath, Qnil)); | |
2107 return (Qnil); | |
2108 } | |
2109 | |
2110 if (chmod (XSTRING (abspath)->data, XINT (mode)) < 0) | |
2111 report_file_error ("Doing chmod", Fcons (abspath, Qnil)); | |
2112 | |
2113 /* reset the old accessed and modified times. */ | |
2114 tvp[0].tv_sec = st.st_atime + 1; /* +1 due to an Apollo roundoff bug */ | |
2115 tvp[0].tv_usec = 0; | |
2116 tvp[1].tv_sec = st.st_mtime + 1; /* +1 due to an Apollo roundoff bug */ | |
2117 tvp[1].tv_usec = 0; | |
2118 | |
2119 if (utimes (XSTRING (abspath)->data, tvp) < 0) | |
2120 report_file_error ("Doing utimes", Fcons (abspath, Qnil)); | |
2121 } | |
2122 #endif /* APOLLO */ | |
2123 | |
2124 return Qnil; | |
2125 } | |
2126 | |
550 | 2127 DEFUN ("set-umask", Fset_umask, Sset_umask, 1, 1, 0, |
2128 "Select which permission bits to disable in newly created files.\n\ | |
2129 MASK should be an integer; if a permission's bit in MASK is 1,\n\ | |
2130 subsequently created files will not have that permission enabled.\n\ | |
2131 Only the low 9 bits are used.\n\ | |
2132 This setting is inherited by subprocesses.") | |
2133 (mask) | |
2134 Lisp_Object mask; | |
2135 { | |
2136 CHECK_NUMBER (mask, 0); | |
2137 | |
2138 umask (XINT (mask) & 0777); | |
2139 | |
2140 return Qnil; | |
2141 } | |
2142 | |
2143 DEFUN ("umask", Fumask, Sumask, 0, 0, 0, | |
2144 "Return the current umask value.\n\ | |
2145 The umask value determines which permissions are enabled in newly\n\ | |
2146 created files. If a permission's bit in the umask is 1, subsequently\n\ | |
2147 created files will not have that permission enabled.") | |
2148 () | |
2149 { | |
2150 Lisp_Object mask; | |
2151 | |
2152 XSET (mask, Lisp_Int, umask (0)); | |
2153 umask (XINT (mask)); | |
2154 | |
2155 return mask; | |
2156 } | |
2157 | |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2158 #ifdef unix |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2159 |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2160 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "", |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2161 "Tell Unix to finish all pending disk updates.") |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2162 () |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2163 { |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2164 sync (); |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2165 return Qnil; |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2166 } |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2167 |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2168 #endif /* unix */ |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2169 |
230 | 2170 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0, |
2171 "Return t if file FILE1 is newer than file FILE2.\n\ | |
2172 If FILE1 does not exist, the answer is nil;\n\ | |
2173 otherwise, if FILE2 does not exist, the answer is t.") | |
2174 (file1, file2) | |
2175 Lisp_Object file1, file2; | |
2176 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2177 Lisp_Object abspath1, abspath2; |
230 | 2178 struct stat st; |
2179 int mtime1; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2180 Lisp_Object handler; |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2181 struct gcpro gcpro1, gcpro2; |
230 | 2182 |
2183 CHECK_STRING (file1, 0); | |
2184 CHECK_STRING (file2, 0); | |
2185 | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2186 abspath1 = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2187 GCPRO2 (abspath1, file2); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2188 abspath1 = expand_and_dir_to_file (file1, current_buffer->directory); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2189 abspath2 = expand_and_dir_to_file (file2, current_buffer->directory); |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2190 UNGCPRO; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2191 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2192 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2193 call the corresponding file handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2194 handler = find_file_handler (abspath1); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2195 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2196 return call3 (handler, Qfile_newer_than_file_p, abspath1, abspath2); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2197 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2198 if (stat (XSTRING (abspath1)->data, &st) < 0) |
230 | 2199 return Qnil; |
2200 | |
2201 mtime1 = st.st_mtime; | |
2202 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2203 if (stat (XSTRING (abspath2)->data, &st) < 0) |
230 | 2204 return Qt; |
2205 | |
2206 return (mtime1 > st.st_mtime) ? Qt : Qnil; | |
2207 } | |
2208 | |
2209 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents, | |
2210 1, 2, 0, | |
2211 "Insert contents of file FILENAME after point.\n\ | |
2212 Returns list of absolute pathname and length of data inserted.\n\ | |
2213 If second argument VISIT is non-nil, the buffer's visited filename\n\ | |
2214 and last save file modtime are set, and it is marked unmodified.\n\ | |
2215 If visiting and the file does not exist, visiting is completed\n\ | |
2216 before the error is signaled.") | |
2217 (filename, visit) | |
2218 Lisp_Object filename, visit; | |
2219 { | |
2220 struct stat st; | |
2221 register int fd; | |
2222 register int inserted = 0; | |
2223 register int how_much; | |
2224 int count = specpdl_ptr - specpdl; | |
2225 struct gcpro gcpro1; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2226 Lisp_Object handler, val; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2227 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2228 val = Qnil; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2229 |
230 | 2230 GCPRO1 (filename); |
485 | 2231 if (!NILP (current_buffer->read_only)) |
230 | 2232 Fbarf_if_buffer_read_only(); |
2233 | |
2234 CHECK_STRING (filename, 0); | |
2235 filename = Fexpand_file_name (filename, Qnil); | |
2236 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2237 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2238 call the corresponding file handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2239 handler = find_file_handler (filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2240 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2241 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2242 val = call3 (handler, Qinsert_file_contents, filename, visit); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2243 st.st_mtime = 0; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2244 goto handled; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2245 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2246 |
230 | 2247 fd = -1; |
2248 | |
2249 #ifndef APOLLO | |
2250 if (stat (XSTRING (filename)->data, &st) < 0 | |
410 | 2251 || (fd = open (XSTRING (filename)->data, 0)) < 0) |
230 | 2252 #else |
2253 if ((fd = open (XSTRING (filename)->data, 0)) < 0 | |
2254 || fstat (fd, &st) < 0) | |
2255 #endif /* not APOLLO */ | |
2256 { | |
2257 if (fd >= 0) close (fd); | |
485 | 2258 if (NILP (visit)) |
230 | 2259 report_file_error ("Opening input file", Fcons (filename, Qnil)); |
2260 st.st_mtime = -1; | |
2261 how_much = 0; | |
2262 goto notfound; | |
2263 } | |
2264 | |
2265 record_unwind_protect (close_file_unwind, make_number (fd)); | |
2266 | |
752 | 2267 #ifdef S_IFSOCK |
2268 /* This code will need to be changed in order to work on named | |
2269 pipes, and it's probably just not worth it. So we should at | |
2270 least signal an error. */ | |
2271 if ((st.st_mode & S_IFMT) == S_IFSOCK) | |
2272 Fsignal (Qfile_error, | |
2273 Fcons (build_string ("reading from named pipe"), | |
2274 Fcons (filename, Qnil))); | |
2275 #endif | |
2276 | |
230 | 2277 /* Supposedly happens on VMS. */ |
2278 if (st.st_size < 0) | |
2279 error ("File size is negative"); | |
752 | 2280 |
230 | 2281 { |
2282 register Lisp_Object temp; | |
2283 | |
2284 /* Make sure point-max won't overflow after this insertion. */ | |
2285 XSET (temp, Lisp_Int, st.st_size + Z); | |
2286 if (st.st_size + Z != XINT (temp)) | |
2287 error ("maximum buffer size exceeded"); | |
2288 } | |
2289 | |
485 | 2290 if (NILP (visit)) |
230 | 2291 prepare_to_modify_buffer (point, point); |
2292 | |
2293 move_gap (point); | |
2294 if (GAP_SIZE < st.st_size) | |
2295 make_gap (st.st_size - GAP_SIZE); | |
2296 | |
2297 while (1) | |
2298 { | |
2299 int try = min (st.st_size - inserted, 64 << 10); | |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2300 int this; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2301 |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2302 /* Allow quitting out of the actual I/O. */ |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2303 immediate_quit = 1; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2304 QUIT; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2305 this = read (fd, &FETCH_CHAR (point + inserted - 1) + 1, try); |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2306 immediate_quit = 0; |
230 | 2307 |
2308 if (this <= 0) | |
2309 { | |
2310 how_much = this; | |
2311 break; | |
2312 } | |
2313 | |
2314 GPT += this; | |
2315 GAP_SIZE -= this; | |
2316 ZV += this; | |
2317 Z += this; | |
2318 inserted += this; | |
2319 } | |
2320 | |
2321 if (inserted > 0) | |
1240
7365d006d0a0
(Finsert_file_contents): Do record_insert, then inc MODIFF.
Richard M. Stallman <rms@gnu.org>
parents:
1204
diff
changeset
|
2322 { |
7365d006d0a0
(Finsert_file_contents): Do record_insert, then inc MODIFF.
Richard M. Stallman <rms@gnu.org>
parents:
1204
diff
changeset
|
2323 record_insert (point, inserted); |
1299
b8337cdf2e8b
* fileio.c (Finsert_file_contents): Call offset_intervals() if
Joseph Arceneaux <jla@gnu.org>
parents:
1240
diff
changeset
|
2324 |
b8337cdf2e8b
* fileio.c (Finsert_file_contents): Call offset_intervals() if
Joseph Arceneaux <jla@gnu.org>
parents:
1240
diff
changeset
|
2325 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */ |
b8337cdf2e8b
* fileio.c (Finsert_file_contents): Call offset_intervals() if
Joseph Arceneaux <jla@gnu.org>
parents:
1240
diff
changeset
|
2326 offset_intervals (current_buffer, point, inserted); |
1240
7365d006d0a0
(Finsert_file_contents): Do record_insert, then inc MODIFF.
Richard M. Stallman <rms@gnu.org>
parents:
1204
diff
changeset
|
2327 MODIFF++; |
7365d006d0a0
(Finsert_file_contents): Do record_insert, then inc MODIFF.
Richard M. Stallman <rms@gnu.org>
parents:
1204
diff
changeset
|
2328 } |
230 | 2329 |
2330 close (fd); | |
2331 | |
2332 /* Discard the unwind protect */ | |
2333 specpdl_ptr = specpdl + count; | |
2334 | |
2335 if (how_much < 0) | |
2336 error ("IO error reading %s: %s", | |
2337 XSTRING (filename)->data, err_str (errno)); | |
2338 | |
2339 notfound: | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2340 handled: |
230 | 2341 |
485 | 2342 if (!NILP (visit)) |
230 | 2343 { |
2344 current_buffer->undo_list = Qnil; | |
2345 #ifdef APOLLO | |
2346 stat (XSTRING (filename)->data, &st); | |
2347 #endif | |
2348 current_buffer->modtime = st.st_mtime; | |
2349 current_buffer->save_modified = MODIFF; | |
2350 current_buffer->auto_save_modified = MODIFF; | |
2351 XFASTINT (current_buffer->save_length) = Z - BEG; | |
2352 #ifdef CLASH_DETECTION | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2353 if (NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2354 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2355 if (!NILP (current_buffer->filename)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2356 unlock_file (current_buffer->filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2357 unlock_file (filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2358 } |
230 | 2359 #endif /* CLASH_DETECTION */ |
2360 current_buffer->filename = filename; | |
2361 /* If visiting nonexistent file, return nil. */ | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2362 if (current_buffer->modtime == -1) |
230 | 2363 report_file_error ("Opening input file", Fcons (filename, Qnil)); |
2364 } | |
2365 | |
2366 signal_after_change (point, 0, inserted); | |
2367 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2368 if (!NILP (val)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2369 RETURN_UNGCPRO (val); |
350 | 2370 RETURN_UNGCPRO (Fcons (filename, |
2371 Fcons (make_number (inserted), | |
2372 Qnil))); | |
230 | 2373 } |
2374 | |
2375 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 5, | |
2376 "r\nFWrite region to file: ", | |
2377 "Write current region into specified file.\n\ | |
2378 When called from a program, takes three arguments:\n\ | |
2379 START, END and FILENAME. START and END are buffer positions.\n\ | |
2380 Optional fourth argument APPEND if non-nil means\n\ | |
2381 append to existing file contents (if any).\n\ | |
2382 Optional fifth argument VISIT if t means\n\ | |
2383 set the last-save-file-modtime of buffer to this file's modtime\n\ | |
2384 and mark buffer not modified.\n\ | |
2385 If VISIT is neither t nor nil, it means do not print\n\ | |
2386 the \"Wrote file\" message.\n\ | |
2387 Kludgy feature: if START is a string, then that string is written\n\ | |
2388 to the file, instead of any buffer contents, and END is ignored.") | |
2389 (start, end, filename, append, visit) | |
2390 Lisp_Object start, end, filename, append, visit; | |
2391 { | |
2392 register int desc; | |
2393 int failure; | |
2394 int save_errno; | |
2395 unsigned char *fn; | |
2396 struct stat st; | |
2397 int tem; | |
2398 int count = specpdl_ptr - specpdl; | |
2399 #ifdef VMS | |
2400 unsigned char *fname = 0; /* If non-0, original filename (must rename) */ | |
2401 #endif /* VMS */ | |
848 | 2402 Lisp_Object handler; |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2403 struct gcpro gcpro1, gcpro2; |
230 | 2404 |
2405 /* Special kludge to simplify auto-saving */ | |
485 | 2406 if (NILP (start)) |
230 | 2407 { |
2408 XFASTINT (start) = BEG; | |
2409 XFASTINT (end) = Z; | |
2410 } | |
2411 else if (XTYPE (start) != Lisp_String) | |
2412 validate_region (&start, &end); | |
2413 | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2414 GCPRO2 (start, filename); |
230 | 2415 filename = Fexpand_file_name (filename, Qnil); |
2416 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2417 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2418 call the corresponding file handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2419 handler = find_file_handler (filename); |
848 | 2420 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2421 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2422 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2423 Lisp_Object args[7]; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2424 Lisp_Object val; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2425 args[0] = handler; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2426 args[1] = Qwrite_region; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2427 args[2] = start; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2428 args[3] = end; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2429 args[4] = filename; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2430 args[5] = append; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2431 args[6] = visit; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2432 val = Ffuncall (7, args); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2433 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2434 /* Do this before reporting IO error |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2435 to avoid a "file has changed on disk" warning on |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2436 next attempt to save. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2437 if (EQ (visit, Qt)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2438 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2439 current_buffer->modtime = 0; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2440 current_buffer->save_modified = MODIFF; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2441 XFASTINT (current_buffer->save_length) = Z - BEG; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2442 current_buffer->filename = filename; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2443 } |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2444 UNGCPRO; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2445 return val; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2446 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2447 |
230 | 2448 #ifdef CLASH_DETECTION |
2449 if (!auto_saving) | |
2450 lock_file (filename); | |
2451 #endif /* CLASH_DETECTION */ | |
2452 | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2453 fn = XSTRING (filename)->data; |
230 | 2454 desc = -1; |
485 | 2455 if (!NILP (append)) |
230 | 2456 desc = open (fn, O_WRONLY); |
2457 | |
2458 if (desc < 0) | |
2459 #ifdef VMS | |
2460 if (auto_saving) /* Overwrite any previous version of autosave file */ | |
2461 { | |
2462 vms_truncate (fn); /* if fn exists, truncate to zero length */ | |
2463 desc = open (fn, O_RDWR); | |
2464 if (desc < 0) | |
2465 desc = creat_copy_attrs (XTYPE (current_buffer->filename) == Lisp_String | |
536 | 2466 ? XSTRING (current_buffer->filename)->data : 0, |
2467 fn); | |
230 | 2468 } |
2469 else /* Write to temporary name and rename if no errors */ | |
2470 { | |
2471 Lisp_Object temp_name; | |
2472 temp_name = Ffile_name_directory (filename); | |
2473 | |
485 | 2474 if (!NILP (temp_name)) |
230 | 2475 { |
2476 temp_name = Fmake_temp_name (concat2 (temp_name, | |
2477 build_string ("$$SAVE$$"))); | |
2478 fname = XSTRING (filename)->data; | |
2479 fn = XSTRING (temp_name)->data; | |
2480 desc = creat_copy_attrs (fname, fn); | |
2481 if (desc < 0) | |
2482 { | |
2483 /* If we can't open the temporary file, try creating a new | |
2484 version of the original file. VMS "creat" creates a | |
2485 new version rather than truncating an existing file. */ | |
2486 fn = fname; | |
2487 fname = 0; | |
2488 desc = creat (fn, 0666); | |
2489 #if 0 /* This can clobber an existing file and fail to replace it, | |
2490 if the user runs out of space. */ | |
2491 if (desc < 0) | |
2492 { | |
2493 /* We can't make a new version; | |
2494 try to truncate and rewrite existing version if any. */ | |
2495 vms_truncate (fn); | |
2496 desc = open (fn, O_RDWR); | |
2497 } | |
2498 #endif | |
2499 } | |
2500 } | |
2501 else | |
2502 desc = creat (fn, 0666); | |
2503 } | |
2504 #else /* not VMS */ | |
2505 desc = creat (fn, auto_saving ? auto_save_mode_bits : 0666); | |
2506 #endif /* not VMS */ | |
2507 | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2508 UNGCPRO; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2509 |
230 | 2510 if (desc < 0) |
2511 { | |
2512 #ifdef CLASH_DETECTION | |
2513 save_errno = errno; | |
2514 if (!auto_saving) unlock_file (filename); | |
2515 errno = save_errno; | |
2516 #endif /* CLASH_DETECTION */ | |
2517 report_file_error ("Opening output file", Fcons (filename, Qnil)); | |
2518 } | |
2519 | |
2520 record_unwind_protect (close_file_unwind, make_number (desc)); | |
2521 | |
485 | 2522 if (!NILP (append)) |
230 | 2523 if (lseek (desc, 0, 2) < 0) |
2524 { | |
2525 #ifdef CLASH_DETECTION | |
2526 if (!auto_saving) unlock_file (filename); | |
2527 #endif /* CLASH_DETECTION */ | |
2528 report_file_error ("Lseek error", Fcons (filename, Qnil)); | |
2529 } | |
2530 | |
2531 #ifdef VMS | |
2532 /* | |
2533 * Kludge Warning: The VMS C RTL likes to insert carriage returns | |
2534 * if we do writes that don't end with a carriage return. Furthermore | |
2535 * it cannot handle writes of more then 16K. The modified | |
2536 * version of "sys_write" in SYSDEP.C (see comment there) copes with | |
2537 * this EXCEPT for the last record (iff it doesn't end with a carriage | |
2538 * return). This implies that if your buffer doesn't end with a carriage | |
2539 * return, you get one free... tough. However it also means that if | |
2540 * we make two calls to sys_write (a la the following code) you can | |
2541 * get one at the gap as well. The easiest way to fix this (honest) | |
2542 * is to move the gap to the next newline (or the end of the buffer). | |
2543 * Thus this change. | |
2544 * | |
2545 * Yech! | |
2546 */ | |
2547 if (GPT > BEG && GPT_ADDR[-1] != '\n') | |
2548 move_gap (find_next_newline (GPT, 1)); | |
2549 #endif | |
2550 | |
2551 failure = 0; | |
2552 immediate_quit = 1; | |
2553 | |
2554 if (XTYPE (start) == Lisp_String) | |
2555 { | |
2556 failure = 0 > e_write (desc, XSTRING (start)->data, | |
2557 XSTRING (start)->size); | |
2558 save_errno = errno; | |
2559 } | |
2560 else if (XINT (start) != XINT (end)) | |
2561 { | |
2562 if (XINT (start) < GPT) | |
2563 { | |
2564 register int end1 = XINT (end); | |
2565 tem = XINT (start); | |
2566 failure = 0 > e_write (desc, &FETCH_CHAR (tem), | |
2567 min (GPT, end1) - tem); | |
2568 save_errno = errno; | |
2569 } | |
2570 | |
2571 if (XINT (end) > GPT && !failure) | |
2572 { | |
2573 tem = XINT (start); | |
2574 tem = max (tem, GPT); | |
2575 failure = 0 > e_write (desc, &FETCH_CHAR (tem), XINT (end) - tem); | |
2576 save_errno = errno; | |
2577 } | |
2578 } | |
2579 | |
2580 immediate_quit = 0; | |
2581 | |
2582 #ifndef USG | |
2583 #ifndef VMS | |
2584 #ifndef BSD4_1 | |
2585 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun). | |
2586 Disk full in NFS may be reported here. */ | |
2587 if (fsync (desc) < 0) | |
2588 failure = 1, save_errno = errno; | |
2589 #endif | |
2590 #endif | |
2591 #endif | |
2592 | |
2593 /* Spurious "file has changed on disk" warnings have been | |
2594 observed on Suns as well. | |
2595 It seems that `close' can change the modtime, under nfs. | |
2596 | |
2597 (This has supposedly been fixed in Sunos 4, | |
2598 but who knows about all the other machines with NFS?) */ | |
2599 #if 0 | |
2600 | |
2601 /* On VMS and APOLLO, must do the stat after the close | |
2602 since closing changes the modtime. */ | |
2603 #ifndef VMS | |
2604 #ifndef APOLLO | |
2605 /* Recall that #if defined does not work on VMS. */ | |
2606 #define FOO | |
2607 fstat (desc, &st); | |
2608 #endif | |
2609 #endif | |
2610 #endif | |
2611 | |
2612 /* NFS can report a write failure now. */ | |
2613 if (close (desc) < 0) | |
2614 failure = 1, save_errno = errno; | |
2615 | |
2616 #ifdef VMS | |
2617 /* If we wrote to a temporary name and had no errors, rename to real name. */ | |
2618 if (fname) | |
2619 { | |
2620 if (!failure) | |
2621 failure = (rename (fn, fname) != 0), save_errno = errno; | |
2622 fn = fname; | |
2623 } | |
2624 #endif /* VMS */ | |
2625 | |
2626 #ifndef FOO | |
2627 stat (fn, &st); | |
2628 #endif | |
2629 /* Discard the unwind protect */ | |
2630 specpdl_ptr = specpdl + count; | |
2631 | |
2632 #ifdef CLASH_DETECTION | |
2633 if (!auto_saving) | |
2634 unlock_file (filename); | |
2635 #endif /* CLASH_DETECTION */ | |
2636 | |
2637 /* Do this before reporting IO error | |
2638 to avoid a "file has changed on disk" warning on | |
2639 next attempt to save. */ | |
2640 if (EQ (visit, Qt)) | |
2641 current_buffer->modtime = st.st_mtime; | |
2642 | |
2643 if (failure) | |
2644 error ("IO error writing %s: %s", fn, err_str (save_errno)); | |
2645 | |
2646 if (EQ (visit, Qt)) | |
2647 { | |
2648 current_buffer->save_modified = MODIFF; | |
2649 XFASTINT (current_buffer->save_length) = Z - BEG; | |
2650 current_buffer->filename = filename; | |
2651 } | |
485 | 2652 else if (!NILP (visit)) |
230 | 2653 return Qnil; |
2654 | |
2655 if (!auto_saving) | |
2656 message ("Wrote %s", fn); | |
2657 | |
2658 return Qnil; | |
2659 } | |
2660 | |
2661 int | |
2662 e_write (desc, addr, len) | |
2663 int desc; | |
2664 register char *addr; | |
2665 register int len; | |
2666 { | |
2667 char buf[16 * 1024]; | |
2668 register char *p, *end; | |
2669 | |
2670 if (!EQ (current_buffer->selective_display, Qt)) | |
2671 return write (desc, addr, len) - len; | |
2672 else | |
2673 { | |
2674 p = buf; | |
2675 end = p + sizeof buf; | |
2676 while (len--) | |
2677 { | |
2678 if (p == end) | |
2679 { | |
2680 if (write (desc, buf, sizeof buf) != sizeof buf) | |
2681 return -1; | |
2682 p = buf; | |
2683 } | |
2684 *p = *addr++; | |
2685 if (*p++ == '\015') | |
2686 p[-1] = '\n'; | |
2687 } | |
2688 if (p != buf) | |
2689 if (write (desc, buf, p - buf) != p - buf) | |
2690 return -1; | |
2691 } | |
2692 return 0; | |
2693 } | |
2694 | |
2695 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime, | |
2696 Sverify_visited_file_modtime, 1, 1, 0, | |
2697 "Return t if last mod time of BUF's visited file matches what BUF records.\n\ | |
2698 This means that the file has not been changed since it was visited or saved.") | |
2699 (buf) | |
2700 Lisp_Object buf; | |
2701 { | |
2702 struct buffer *b; | |
2703 struct stat st; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2704 Lisp_Object handler; |
230 | 2705 |
2706 CHECK_BUFFER (buf, 0); | |
2707 b = XBUFFER (buf); | |
2708 | |
2709 if (XTYPE (b->filename) != Lisp_String) return Qt; | |
2710 if (b->modtime == 0) return Qt; | |
2711 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2712 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2713 call the corresponding file handler. */ |
848 | 2714 handler = find_file_handler (b->filename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2715 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2716 return call2 (handler, Qverify_visited_file_modtime, buf); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2717 |
230 | 2718 if (stat (XSTRING (b->filename)->data, &st) < 0) |
2719 { | |
2720 /* If the file doesn't exist now and didn't exist before, | |
2721 we say that it isn't modified, provided the error is a tame one. */ | |
2722 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR) | |
2723 st.st_mtime = -1; | |
2724 else | |
2725 st.st_mtime = 0; | |
2726 } | |
2727 if (st.st_mtime == b->modtime | |
2728 /* If both are positive, accept them if they are off by one second. */ | |
2729 || (st.st_mtime > 0 && b->modtime > 0 | |
2730 && (st.st_mtime == b->modtime + 1 | |
2731 || st.st_mtime == b->modtime - 1))) | |
2732 return Qt; | |
2733 return Qnil; | |
2734 } | |
2735 | |
2736 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime, | |
2737 Sclear_visited_file_modtime, 0, 0, 0, | |
2738 "Clear out records of last mod time of visited file.\n\ | |
2739 Next attempt to save will certainly not complain of a discrepancy.") | |
2740 () | |
2741 { | |
2742 current_buffer->modtime = 0; | |
2743 return Qnil; | |
2744 } | |
2745 | |
2746 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime, | |
2747 Sset_visited_file_modtime, 0, 0, 0, | |
2748 "Update buffer's recorded modification time from the visited file's time.\n\ | |
2749 Useful if the buffer was not read from the file normally\n\ | |
2750 or if the file itself has been changed for some known benign reason.") | |
2751 () | |
2752 { | |
2753 register Lisp_Object filename; | |
2754 struct stat st; | |
848 | 2755 Lisp_Object handler; |
230 | 2756 |
2757 filename = Fexpand_file_name (current_buffer->filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2758 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2759 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2760 call the corresponding file handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2761 handler = find_file_handler (filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2762 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2763 current_buffer->modtime = 0; |
230 | 2764 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2765 else if (stat (XSTRING (filename)->data, &st) >= 0) |
230 | 2766 current_buffer->modtime = st.st_mtime; |
2767 | |
2768 return Qnil; | |
2769 } | |
2770 | |
2771 Lisp_Object | |
2772 auto_save_error () | |
2773 { | |
2774 unsigned char *name = XSTRING (current_buffer->name)->data; | |
2775 | |
2776 ring_bell (); | |
2777 message ("Autosaving...error for %s", name); | |
806 | 2778 Fsleep_for (make_number (1), Qnil); |
230 | 2779 message ("Autosaving...error!for %s", name); |
806 | 2780 Fsleep_for (make_number (1), Qnil); |
230 | 2781 message ("Autosaving...error for %s", name); |
806 | 2782 Fsleep_for (make_number (1), Qnil); |
230 | 2783 return Qnil; |
2784 } | |
2785 | |
2786 Lisp_Object | |
2787 auto_save_1 () | |
2788 { | |
2789 unsigned char *fn; | |
2790 struct stat st; | |
2791 | |
2792 /* Get visited file's mode to become the auto save file's mode. */ | |
2793 if (stat (XSTRING (current_buffer->filename)->data, &st) >= 0) | |
2794 /* But make sure we can overwrite it later! */ | |
2795 auto_save_mode_bits = st.st_mode | 0600; | |
2796 else | |
2797 auto_save_mode_bits = 0666; | |
2798 | |
2799 return | |
2800 Fwrite_region (Qnil, Qnil, | |
2801 current_buffer->auto_save_file_name, | |
2802 Qnil, Qlambda); | |
2803 } | |
2804 | |
2805 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "", | |
2806 "Auto-save all buffers that need it.\n\ | |
2807 This is all buffers that have auto-saving enabled\n\ | |
2808 and are changed since last auto-saved.\n\ | |
2809 Auto-saving writes the buffer into a file\n\ | |
2810 so that your editing is not lost if the system crashes.\n\ | |
2811 This file is not the file you visited; that changes only when you save.\n\n\ | |
2812 Non-nil first argument means do not print any message if successful.\n\ | |
621 | 2813 Non-nil second argument means save only current buffer.") |
230 | 2814 (nomsg) |
2815 Lisp_Object nomsg; | |
2816 { | |
2817 struct buffer *old = current_buffer, *b; | |
2818 Lisp_Object tail, buf; | |
2819 int auto_saved = 0; | |
2820 char *omessage = echo_area_glyphs; | |
2821 extern minibuf_level; | |
2822 | |
2823 /* No GCPRO needed, because (when it matters) all Lisp_Object variables | |
2824 point to non-strings reached from Vbuffer_alist. */ | |
2825 | |
2826 auto_saving = 1; | |
2827 if (minibuf_level) | |
2828 nomsg = Qt; | |
2829 | |
2830 /* Vrun_hooks is nil before emacs is dumped, and inc-vers.el will | |
2831 eventually call do-auto-save, so don't err here in that case. */ | |
485 | 2832 if (!NILP (Vrun_hooks)) |
230 | 2833 call1 (Vrun_hooks, intern ("auto-save-hook")); |
2834 | |
2835 for (tail = Vbuffer_alist; XGCTYPE (tail) == Lisp_Cons; | |
2836 tail = XCONS (tail)->cdr) | |
2837 { | |
2838 buf = XCONS (XCONS (tail)->car)->cdr; | |
2839 b = XBUFFER (buf); | |
2840 /* Check for auto save enabled | |
2841 and file changed since last auto save | |
2842 and file changed since last real save. */ | |
2843 if (XTYPE (b->auto_save_file_name) == Lisp_String | |
2844 && b->save_modified < BUF_MODIFF (b) | |
2845 && b->auto_save_modified < BUF_MODIFF (b)) | |
2846 { | |
2847 if ((XFASTINT (b->save_length) * 10 | |
2848 > (BUF_Z (b) - BUF_BEG (b)) * 13) | |
2849 /* A short file is likely to change a large fraction; | |
2850 spare the user annoying messages. */ | |
2851 && XFASTINT (b->save_length) > 5000 | |
2852 /* These messages are frequent and annoying for `*mail*'. */ | |
2853 && !EQ (b->filename, Qnil)) | |
2854 { | |
2855 /* It has shrunk too much; turn off auto-saving here. */ | |
2856 message ("Buffer %s has shrunk a lot; auto save turned off there", | |
2857 XSTRING (b->name)->data); | |
2858 /* User can reenable saving with M-x auto-save. */ | |
2859 b->auto_save_file_name = Qnil; | |
2860 /* Prevent warning from repeating if user does so. */ | |
2861 XFASTINT (b->save_length) = 0; | |
1044
c5aded0d488a
* fileio.c (Fdo_auto_save): Call Fsleep_for with the appropriate
Jim Blandy <jimb@redhat.com>
parents:
964
diff
changeset
|
2862 Fsleep_for (make_number (1), Qnil); |
230 | 2863 continue; |
2864 } | |
2865 set_buffer_internal (b); | |
485 | 2866 if (!auto_saved && NILP (nomsg)) |
230 | 2867 message1 ("Auto-saving..."); |
2868 internal_condition_case (auto_save_1, Qt, auto_save_error); | |
2869 auto_saved++; | |
2870 b->auto_save_modified = BUF_MODIFF (b); | |
2871 XFASTINT (current_buffer->save_length) = Z - BEG; | |
2872 set_buffer_internal (old); | |
2873 } | |
2874 } | |
2875 | |
1059
430923239064
(Fdo_auto_save): Always call record_auto_save.
Richard M. Stallman <rms@gnu.org>
parents:
1044
diff
changeset
|
2876 /* Prevent another auto save till enough input events come in. */ |
430923239064
(Fdo_auto_save): Always call record_auto_save.
Richard M. Stallman <rms@gnu.org>
parents:
1044
diff
changeset
|
2877 record_auto_save (); |
230 | 2878 |
485 | 2879 if (auto_saved && NILP (nomsg)) |
230 | 2880 message1 (omessage ? omessage : "Auto-saving...done"); |
2881 | |
2882 auto_saving = 0; | |
2883 return Qnil; | |
2884 } | |
2885 | |
2886 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved, | |
2887 Sset_buffer_auto_saved, 0, 0, 0, | |
2888 "Mark current buffer as auto-saved with its current text.\n\ | |
2889 No auto-save file will be written until the buffer changes again.") | |
2890 () | |
2891 { | |
2892 current_buffer->auto_save_modified = MODIFF; | |
2893 XFASTINT (current_buffer->save_length) = Z - BEG; | |
2894 return Qnil; | |
2895 } | |
2896 | |
2897 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p, | |
2898 0, 0, 0, | |
2899 "Return t if buffer has been auto-saved since last read in or saved.") | |
2900 () | |
2901 { | |
2902 return (current_buffer->save_modified < current_buffer->auto_save_modified) ? Qt : Qnil; | |
2903 } | |
2904 | |
2905 /* Reading and completing file names */ | |
2906 extern Lisp_Object Ffile_name_completion (), Ffile_name_all_completions (); | |
2907 | |
2908 DEFUN ("read-file-name-internal", Fread_file_name_internal, Sread_file_name_internal, | |
2909 3, 3, 0, | |
2910 "Internal subroutine for read-file-name. Do not call this.") | |
2911 (string, dir, action) | |
2912 Lisp_Object string, dir, action; | |
2913 /* action is nil for complete, t for return list of completions, | |
2914 lambda for verify final value */ | |
2915 { | |
2916 Lisp_Object name, specdir, realdir, val, orig_string; | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2917 int changed; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2918 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2919 |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2920 realdir = dir; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2921 name = string; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2922 orig_string = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2923 specdir = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2924 changed = 0; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2925 /* No need to protect ACTION--we only compare it with t and nil. */ |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2926 GCPRO4 (string, realdir, name, specdir); |
230 | 2927 |
2928 if (XSTRING (string)->size == 0) | |
2929 { | |
2930 if (EQ (action, Qlambda)) | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2931 { |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2932 UNGCPRO; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2933 return Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2934 } |
230 | 2935 } |
2936 else | |
2937 { | |
2938 orig_string = string; | |
2939 string = Fsubstitute_in_file_name (string); | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2940 changed = NILP (Fstring_equal (string, orig_string)); |
230 | 2941 name = Ffile_name_nondirectory (string); |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2942 val = Ffile_name_directory (string); |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2943 if (! NILP (val)) |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2944 realdir = Fexpand_file_name (val, realdir); |
230 | 2945 } |
2946 | |
485 | 2947 if (NILP (action)) |
230 | 2948 { |
2949 specdir = Ffile_name_directory (string); | |
2950 val = Ffile_name_completion (name, realdir); | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2951 UNGCPRO; |
230 | 2952 if (XTYPE (val) != Lisp_String) |
2953 { | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2954 if (changed) |
230 | 2955 return string; |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2956 return val; |
230 | 2957 } |
2958 | |
485 | 2959 if (!NILP (specdir)) |
230 | 2960 val = concat2 (specdir, val); |
2961 #ifndef VMS | |
2962 { | |
2963 register unsigned char *old, *new; | |
2964 register int n; | |
2965 int osize, count; | |
2966 | |
2967 osize = XSTRING (val)->size; | |
2968 /* Quote "$" as "$$" to get it past substitute-in-file-name */ | |
2969 for (n = osize, count = 0, old = XSTRING (val)->data; n > 0; n--) | |
2970 if (*old++ == '$') count++; | |
2971 if (count > 0) | |
2972 { | |
2973 old = XSTRING (val)->data; | |
2974 val = Fmake_string (make_number (osize + count), make_number (0)); | |
2975 new = XSTRING (val)->data; | |
2976 for (n = osize; n > 0; n--) | |
2977 if (*old != '$') | |
2978 *new++ = *old++; | |
2979 else | |
2980 { | |
2981 *new++ = '$'; | |
2982 *new++ = '$'; | |
2983 old++; | |
2984 } | |
2985 } | |
2986 } | |
2987 #endif /* Not VMS */ | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2988 return val; |
230 | 2989 } |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2990 UNGCPRO; |
230 | 2991 |
2992 if (EQ (action, Qt)) | |
2993 return Ffile_name_all_completions (name, realdir); | |
2994 /* Only other case actually used is ACTION = lambda */ | |
2995 #ifdef VMS | |
2996 /* Supposedly this helps commands such as `cd' that read directory names, | |
2997 but can someone explain how it helps them? -- RMS */ | |
2998 if (XSTRING (name)->size == 0) | |
2999 return Qt; | |
3000 #endif /* VMS */ | |
3001 return Ffile_exists_p (string); | |
3002 } | |
3003 | |
3004 DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 5, 0, | |
3005 "Read file name, prompting with PROMPT and completing in directory DIR.\n\ | |
3006 Value is not expanded---you must call `expand-file-name' yourself.\n\ | |
3007 Default name to DEFAULT if user enters a null string.\n\ | |
3008 (If DEFAULT is omitted, the visited file name is used.)\n\ | |
3009 Fourth arg MUSTMATCH non-nil means require existing file's name.\n\ | |
3010 Non-nil and non-t means also require confirmation after completion.\n\ | |
3011 Fifth arg INITIAL specifies text to start with.\n\ | |
3012 DIR defaults to current buffer's directory default.") | |
3013 (prompt, dir, defalt, mustmatch, initial) | |
3014 Lisp_Object prompt, dir, defalt, mustmatch, initial; | |
3015 { | |
866 | 3016 Lisp_Object val, insdef, insdef1, tem; |
230 | 3017 struct gcpro gcpro1, gcpro2; |
3018 register char *homedir; | |
3019 int count; | |
3020 | |
485 | 3021 if (NILP (dir)) |
230 | 3022 dir = current_buffer->directory; |
485 | 3023 if (NILP (defalt)) |
230 | 3024 defalt = current_buffer->filename; |
3025 | |
3026 /* If dir starts with user's homedir, change that to ~. */ | |
3027 homedir = (char *) egetenv ("HOME"); | |
3028 if (homedir != 0 | |
3029 && XTYPE (dir) == Lisp_String | |
3030 && !strncmp (homedir, XSTRING (dir)->data, strlen (homedir)) | |
3031 && XSTRING (dir)->data[strlen (homedir)] == '/') | |
3032 { | |
3033 dir = make_string (XSTRING (dir)->data + strlen (homedir) - 1, | |
3034 XSTRING (dir)->size - strlen (homedir) + 1); | |
3035 XSTRING (dir)->data[0] = '~'; | |
3036 } | |
3037 | |
3038 if (insert_default_directory) | |
3039 { | |
3040 insdef = dir; | |
866 | 3041 insdef1 = dir; |
485 | 3042 if (!NILP (initial)) |
230 | 3043 { |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3044 Lisp_Object args[2], pos; |
230 | 3045 |
3046 args[0] = insdef; | |
3047 args[1] = initial; | |
3048 insdef = Fconcat (2, args); | |
964
ea0c91e13641
* fileio.c (Fread_filename): When calling Fcompleting_read,
Jim Blandy <jimb@redhat.com>
parents:
945
diff
changeset
|
3049 pos = make_number (XSTRING (dir)->size); |
866 | 3050 insdef1 = Fcons (insdef, pos); |
230 | 3051 } |
3052 } | |
3053 else | |
866 | 3054 insdef = Qnil, insdef1 = Qnil; |
230 | 3055 |
3056 #ifdef VMS | |
3057 count = specpdl_ptr - specpdl; | |
3058 specbind (intern ("completion-ignore-case"), Qt); | |
3059 #endif | |
3060 | |
3061 GCPRO2 (insdef, defalt); | |
3062 val = Fcompleting_read (prompt, intern ("read-file-name-internal"), | |
866 | 3063 dir, mustmatch, insdef1, |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3064 Qfile_name_history); |
230 | 3065 |
3066 #ifdef VMS | |
3067 unbind_to (count, Qnil); | |
3068 #endif | |
3069 | |
3070 UNGCPRO; | |
485 | 3071 if (NILP (val)) |
230 | 3072 error ("No file name specified"); |
3073 tem = Fstring_equal (val, insdef); | |
485 | 3074 if (!NILP (tem) && !NILP (defalt)) |
230 | 3075 return defalt; |
3076 return Fsubstitute_in_file_name (val); | |
3077 } | |
3078 | |
3079 #if 0 /* Old version */ | |
3080 DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 5, 0, | |
3081 "Read file name, prompting with PROMPT and completing in directory DIR.\n\ | |
3082 Value is not expanded---you must call `expand-file-name' yourself.\n\ | |
3083 Default name to DEFAULT if user enters a null string.\n\ | |
3084 (If DEFAULT is omitted, the visited file name is used.)\n\ | |
3085 Fourth arg MUSTMATCH non-nil means require existing file's name.\n\ | |
3086 Non-nil and non-t means also require confirmation after completion.\n\ | |
3087 Fifth arg INITIAL specifies text to start with.\n\ | |
3088 DIR defaults to current buffer's directory default.") | |
3089 (prompt, dir, defalt, mustmatch, initial) | |
3090 Lisp_Object prompt, dir, defalt, mustmatch, initial; | |
3091 { | |
3092 Lisp_Object val, insdef, tem; | |
3093 struct gcpro gcpro1, gcpro2; | |
3094 register char *homedir; | |
3095 int count; | |
3096 | |
485 | 3097 if (NILP (dir)) |
230 | 3098 dir = current_buffer->directory; |
485 | 3099 if (NILP (defalt)) |
230 | 3100 defalt = current_buffer->filename; |
3101 | |
3102 /* If dir starts with user's homedir, change that to ~. */ | |
3103 homedir = (char *) egetenv ("HOME"); | |
3104 if (homedir != 0 | |
3105 && XTYPE (dir) == Lisp_String | |
3106 && !strncmp (homedir, XSTRING (dir)->data, strlen (homedir)) | |
3107 && XSTRING (dir)->data[strlen (homedir)] == '/') | |
3108 { | |
3109 dir = make_string (XSTRING (dir)->data + strlen (homedir) - 1, | |
3110 XSTRING (dir)->size - strlen (homedir) + 1); | |
3111 XSTRING (dir)->data[0] = '~'; | |
3112 } | |
3113 | |
485 | 3114 if (!NILP (initial)) |
230 | 3115 insdef = initial; |
3116 else if (insert_default_directory) | |
3117 insdef = dir; | |
3118 else | |
3119 insdef = build_string (""); | |
3120 | |
3121 #ifdef VMS | |
3122 count = specpdl_ptr - specpdl; | |
3123 specbind (intern ("completion-ignore-case"), Qt); | |
3124 #endif | |
3125 | |
3126 GCPRO2 (insdef, defalt); | |
3127 val = Fcompleting_read (prompt, intern ("read-file-name-internal"), | |
3128 dir, mustmatch, | |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3129 insert_default_directory ? insdef : Qnil, |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3130 Qfile_name_history); |
230 | 3131 |
3132 #ifdef VMS | |
3133 unbind_to (count, Qnil); | |
3134 #endif | |
3135 | |
3136 UNGCPRO; | |
485 | 3137 if (NILP (val)) |
230 | 3138 error ("No file name specified"); |
3139 tem = Fstring_equal (val, insdef); | |
485 | 3140 if (!NILP (tem) && !NILP (defalt)) |
230 | 3141 return defalt; |
3142 return Fsubstitute_in_file_name (val); | |
3143 } | |
3144 #endif /* Old version */ | |
3145 | |
3146 syms_of_fileio () | |
3147 { | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
3148 Qexpand_file_name = intern ("expand-file-name"); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
3149 Qdirectory_file_name = intern ("directory-file-name"); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
3150 Qfile_name_directory = intern ("file-name-directory"); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
3151 Qfile_name_nondirectory = intern ("file-name-nondirectory"); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
3152 Qfile_name_as_directory = intern ("file-name-as-directory"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3153 Qcopy_file = intern ("copy-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3154 Qmake_directory = intern ("make-directory"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3155 Qdelete_directory = intern ("delete-directory"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3156 Qdelete_file = intern ("delete-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3157 Qrename_file = intern ("rename-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3158 Qadd_name_to_file = intern ("add-name-to-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3159 Qmake_symbolic_link = intern ("make-symbolic-link"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3160 Qfile_exists_p = intern ("file-exists-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3161 Qfile_executable_p = intern ("file-executable-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3162 Qfile_readable_p = intern ("file-readable-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3163 Qfile_symlink_p = intern ("file-symlink-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3164 Qfile_writable_p = intern ("file-writable-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3165 Qfile_directory_p = intern ("file-directory-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3166 Qfile_accessible_directory_p = intern ("file-accessible-directory-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3167 Qfile_modes = intern ("file-modes"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3168 Qset_file_modes = intern ("set-file-modes"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3169 Qfile_newer_than_file_p = intern ("file-newer-than-file-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3170 Qinsert_file_contents = intern ("insert-file-contents"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3171 Qwrite_region = intern ("write-region"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3172 Qverify_visited_file_modtime = intern ("verify-visited-file-modtime"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3173 |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3174 Qfile_name_history = intern ("file-name-history"); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3175 Fset (Qfile_name_history, Qnil); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3176 |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3177 staticpro (&Qcopy_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3178 staticpro (&Qmake_directory); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3179 staticpro (&Qdelete_directory); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3180 staticpro (&Qdelete_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3181 staticpro (&Qrename_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3182 staticpro (&Qadd_name_to_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3183 staticpro (&Qmake_symbolic_link); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3184 staticpro (&Qfile_exists_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3185 staticpro (&Qfile_executable_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3186 staticpro (&Qfile_readable_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3187 staticpro (&Qfile_symlink_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3188 staticpro (&Qfile_writable_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3189 staticpro (&Qfile_directory_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3190 staticpro (&Qfile_accessible_directory_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3191 staticpro (&Qfile_modes); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3192 staticpro (&Qset_file_modes); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3193 staticpro (&Qfile_newer_than_file_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3194 staticpro (&Qinsert_file_contents); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3195 staticpro (&Qwrite_region); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3196 staticpro (&Qverify_visited_file_modtime); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3197 staticpro (&Qfile_name_history); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3198 |
230 | 3199 Qfile_error = intern ("file-error"); |
3200 staticpro (&Qfile_error); | |
3201 Qfile_already_exists = intern("file-already-exists"); | |
3202 staticpro (&Qfile_already_exists); | |
3203 | |
3204 Fput (Qfile_error, Qerror_conditions, | |
3205 Fcons (Qfile_error, Fcons (Qerror, Qnil))); | |
3206 Fput (Qfile_error, Qerror_message, | |
3207 build_string ("File error")); | |
3208 | |
3209 Fput (Qfile_already_exists, Qerror_conditions, | |
3210 Fcons (Qfile_already_exists, | |
3211 Fcons (Qfile_error, Fcons (Qerror, Qnil)))); | |
3212 Fput (Qfile_already_exists, Qerror_message, | |
3213 build_string ("File already exists")); | |
3214 | |
3215 DEFVAR_BOOL ("insert-default-directory", &insert_default_directory, | |
3216 "*Non-nil means when reading a filename start with default dir in minibuffer."); | |
3217 insert_default_directory = 1; | |
3218 | |
3219 DEFVAR_BOOL ("vms-stmlf-recfm", &vms_stmlf_recfm, | |
3220 "*Non-nil means write new files with record format `stmlf'.\n\ | |
3221 nil means use format `var'. This variable is meaningful only on VMS."); | |
3222 vms_stmlf_recfm = 0; | |
3223 | |
850
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3224 DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist, |
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3225 "*Alist of elements (REGEXP . HANDLER) for file names handled specially.\n\ |
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3226 If a file name matches REGEXP, then all I/O on that file is done by calling\n\ |
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3227 HANDLER.\n\ |
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3228 \n\ |
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3229 The first argument given to HANDLER is the name of the I/O primitive\n\ |
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3230 to be handled; the remaining arguments are the arguments that were\n\ |
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3231 passed to that primitive. For example, if you do\n\ |
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3232 (file-exists-p FILENAME)\n\ |
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3233 and FILENAME is handled by HANDLER, then HANDLER is called like this:\n\ |
1071
53ad9fa87f71
Doc fix for file-name-handler-alist.
Roland McGrath <roland@gnu.org>
parents:
1059
diff
changeset
|
3234 (funcall HANDLER 'file-exists-p FILENAME)"); |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3235 Vfile_name_handler_alist = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3236 |
230 | 3237 defsubr (&Sfile_name_directory); |
3238 defsubr (&Sfile_name_nondirectory); | |
3239 defsubr (&Sfile_name_as_directory); | |
3240 defsubr (&Sdirectory_file_name); | |
3241 defsubr (&Smake_temp_name); | |
3242 defsubr (&Sexpand_file_name); | |
3243 defsubr (&Ssubstitute_in_file_name); | |
3244 defsubr (&Scopy_file); | |
3245 defsubr (&Smake_directory); | |
686
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
3246 defsubr (&Sdelete_directory); |
230 | 3247 defsubr (&Sdelete_file); |
3248 defsubr (&Srename_file); | |
3249 defsubr (&Sadd_name_to_file); | |
3250 #ifdef S_IFLNK | |
3251 defsubr (&Smake_symbolic_link); | |
3252 #endif /* S_IFLNK */ | |
3253 #ifdef VMS | |
3254 defsubr (&Sdefine_logical_name); | |
3255 #endif /* VMS */ | |
3256 #ifdef HPUX_NET | |
3257 defsubr (&Ssysnetunam); | |
3258 #endif /* HPUX_NET */ | |
3259 defsubr (&Sfile_name_absolute_p); | |
3260 defsubr (&Sfile_exists_p); | |
3261 defsubr (&Sfile_executable_p); | |
3262 defsubr (&Sfile_readable_p); | |
3263 defsubr (&Sfile_writable_p); | |
3264 defsubr (&Sfile_symlink_p); | |
3265 defsubr (&Sfile_directory_p); | |
536 | 3266 defsubr (&Sfile_accessible_directory_p); |
230 | 3267 defsubr (&Sfile_modes); |
3268 defsubr (&Sset_file_modes); | |
550 | 3269 defsubr (&Sset_umask); |
3270 defsubr (&Sumask); | |
230 | 3271 defsubr (&Sfile_newer_than_file_p); |
3272 defsubr (&Sinsert_file_contents); | |
3273 defsubr (&Swrite_region); | |
3274 defsubr (&Sverify_visited_file_modtime); | |
3275 defsubr (&Sclear_visited_file_modtime); | |
3276 defsubr (&Sset_visited_file_modtime); | |
3277 defsubr (&Sdo_auto_save); | |
3278 defsubr (&Sset_buffer_auto_saved); | |
3279 defsubr (&Srecent_auto_save_p); | |
3280 | |
3281 defsubr (&Sread_file_name_internal); | |
3282 defsubr (&Sread_file_name); | |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3283 |
1204
567860ca77e0
* fileio.c (syms_of_fileio): Don't try to defsubr Sunix_sync
Jim Blandy <jimb@redhat.com>
parents:
1178
diff
changeset
|
3284 #ifdef unix |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3285 defsubr (&Sunix_sync); |
1204
567860ca77e0
* fileio.c (syms_of_fileio): Don't try to defsubr Sunix_sync
Jim Blandy <jimb@redhat.com>
parents:
1178
diff
changeset
|
3286 #endif |
230 | 3287 } |