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