]> code.delx.au - gnu-emacs/blob - src/fileio.c
Merged in changes from CVS trunk.
[gnu-emacs] / src / fileio.c
1 /* File IO for GNU Emacs.
2 Copyright (C) 1985,86,87,88,93,94,95,96,97,98,99,2000,01,03,2004
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 #include <config.h>
23
24 #ifdef HAVE_FCNTL_H
25 #include <fcntl.h>
26 #endif
27
28 #include <stdio.h>
29 #include <sys/types.h>
30 #include <sys/stat.h>
31
32 #ifdef HAVE_UNISTD_H
33 #include <unistd.h>
34 #endif
35
36 #if !defined (S_ISLNK) && defined (S_IFLNK)
37 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
38 #endif
39
40 #if !defined (S_ISFIFO) && defined (S_IFIFO)
41 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
42 #endif
43
44 #if !defined (S_ISREG) && defined (S_IFREG)
45 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
46 #endif
47
48 #ifdef VMS
49 #include "vms-pwd.h"
50 #else
51 #include <pwd.h>
52 #endif
53
54 #include <ctype.h>
55
56 #ifdef VMS
57 #include "vmsdir.h"
58 #include <perror.h>
59 #include <stddef.h>
60 #include <string.h>
61 #endif
62
63 #include <errno.h>
64
65 #ifndef vax11c
66 #ifndef USE_CRT_DLL
67 extern int errno;
68 #endif
69 #endif
70
71 #ifdef APOLLO
72 #include <sys/time.h>
73 #endif
74
75 #include "lisp.h"
76 #include "intervals.h"
77 #include "buffer.h"
78 #include "charset.h"
79 #include "coding.h"
80 #include "window.h"
81 #include "frame.h"
82 #include "dispextern.h"
83
84 #ifdef WINDOWSNT
85 #define NOMINMAX 1
86 #include <windows.h>
87 #include <stdlib.h>
88 #include <fcntl.h>
89 #endif /* not WINDOWSNT */
90
91 #ifdef MSDOS
92 #include "msdos.h"
93 #include <sys/param.h>
94 #if __DJGPP__ >= 2
95 #include <fcntl.h>
96 #include <string.h>
97 #endif
98 #endif
99
100 #ifdef DOS_NT
101 #define CORRECT_DIR_SEPS(s) \
102 do { if ('/' == DIRECTORY_SEP) dostounix_filename (s); \
103 else unixtodos_filename (s); \
104 } while (0)
105 /* On Windows, drive letters must be alphabetic - on DOS, the Netware
106 redirector allows the six letters between 'Z' and 'a' as well. */
107 #ifdef MSDOS
108 #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z')
109 #endif
110 #ifdef WINDOWSNT
111 #define IS_DRIVE(x) isalpha (x)
112 #endif
113 /* Need to lower-case the drive letter, or else expanded
114 filenames will sometimes compare inequal, because
115 `expand-file-name' doesn't always down-case the drive letter. */
116 #define DRIVE_LETTER(x) (tolower (x))
117 #endif
118
119 #ifdef VMS
120 #include <file.h>
121 #include <rmsdef.h>
122 #include <fab.h>
123 #include <nam.h>
124 #endif
125
126 #include "systime.h"
127
128 #ifdef HPUX
129 #include <netio.h>
130 #ifndef HPUX8
131 #ifndef HPUX9
132 #include <errnet.h>
133 #endif
134 #endif
135 #endif
136
137 #include "commands.h"
138 extern int use_dialog_box;
139 extern int use_file_dialog;
140
141 #ifndef O_WRONLY
142 #define O_WRONLY 1
143 #endif
144
145 #ifndef O_RDONLY
146 #define O_RDONLY 0
147 #endif
148
149 #ifndef S_ISLNK
150 # define lstat stat
151 #endif
152
153 /* Nonzero during writing of auto-save files */
154 int auto_saving;
155
156 /* Set by auto_save_1 to mode of original file so Fwrite_region will create
157 a new file with the same mode as the original */
158 int auto_save_mode_bits;
159
160 /* The symbol bound to coding-system-for-read when
161 insert-file-contents is called for recovering a file. This is not
162 an actual coding system name, but just an indicator to tell
163 insert-file-contents to use `emacs-mule' with a special flag for
164 auto saving and recovering a file. */
165 Lisp_Object Qauto_save_coding;
166
167 /* Coding system for file names, or nil if none. */
168 Lisp_Object Vfile_name_coding_system;
169
170 /* Coding system for file names used only when
171 Vfile_name_coding_system is nil. */
172 Lisp_Object Vdefault_file_name_coding_system;
173
174 /* Alist of elements (REGEXP . HANDLER) for file names
175 whose I/O is done with a special handler. */
176 Lisp_Object Vfile_name_handler_alist;
177
178 /* Format for auto-save files */
179 Lisp_Object Vauto_save_file_format;
180
181 /* Lisp functions for translating file formats */
182 Lisp_Object Qformat_decode, Qformat_annotate_function;
183
184 /* Function to be called to decide a coding system of a reading file. */
185 Lisp_Object Vset_auto_coding_function;
186
187 /* Functions to be called to process text properties in inserted file. */
188 Lisp_Object Vafter_insert_file_functions;
189
190 /* Lisp function for setting buffer-file-coding-system and the
191 multibyteness of the current buffer after inserting a file. */
192 Lisp_Object Qafter_insert_file_set_coding;
193
194 /* Functions to be called to create text property annotations for file. */
195 Lisp_Object Vwrite_region_annotate_functions;
196 Lisp_Object Qwrite_region_annotate_functions;
197
198 /* During build_annotations, each time an annotation function is called,
199 this holds the annotations made by the previous functions. */
200 Lisp_Object Vwrite_region_annotations_so_far;
201
202 /* File name in which we write a list of all our auto save files. */
203 Lisp_Object Vauto_save_list_file_name;
204
205 /* Function to call to read a file name. */
206 Lisp_Object Vread_file_name_function;
207
208 /* Current predicate used by read_file_name_internal. */
209 Lisp_Object Vread_file_name_predicate;
210
211 /* Nonzero means, when reading a filename in the minibuffer,
212 start out by inserting the default directory into the minibuffer. */
213 int insert_default_directory;
214
215 /* On VMS, nonzero means write new files with record format stmlf.
216 Zero means use var format. */
217 int vms_stmlf_recfm;
218
219 /* On NT, specifies the directory separator character, used (eg.) when
220 expanding file names. This can be bound to / or \. */
221 Lisp_Object Vdirectory_sep_char;
222
223 extern Lisp_Object Vuser_login_name;
224
225 #ifdef WINDOWSNT
226 extern Lisp_Object Vw32_get_true_file_attributes;
227 #endif
228
229 extern int minibuf_level;
230
231 extern int minibuffer_auto_raise;
232
233 /* These variables describe handlers that have "already" had a chance
234 to handle the current operation.
235
236 Vinhibit_file_name_handlers is a list of file name handlers.
237 Vinhibit_file_name_operation is the operation being handled.
238 If we try to handle that operation, we ignore those handlers. */
239
240 static Lisp_Object Vinhibit_file_name_handlers;
241 static Lisp_Object Vinhibit_file_name_operation;
242
243 Lisp_Object Qfile_error, Qfile_already_exists, Qfile_date_error;
244 Lisp_Object Qexcl;
245 Lisp_Object Qfile_name_history;
246
247 Lisp_Object Qcar_less_than_car;
248
249 static int a_write P_ ((int, Lisp_Object, int, int,
250 Lisp_Object *, struct coding_system *));
251 static int e_write P_ ((int, Lisp_Object, int, int, struct coding_system *));
252
253 \f
254 void
255 report_file_error (string, data)
256 const char *string;
257 Lisp_Object data;
258 {
259 Lisp_Object errstring;
260 int errorno = errno;
261
262 synchronize_system_messages_locale ();
263 errstring = code_convert_string_norecord (build_string (strerror (errorno)),
264 Vlocale_coding_system, 0);
265
266 while (1)
267 switch (errorno)
268 {
269 case EEXIST:
270 Fsignal (Qfile_already_exists, Fcons (errstring, data));
271 break;
272 default:
273 /* System error messages are capitalized. Downcase the initial
274 unless it is followed by a slash. */
275 if (SREF (errstring, 1) != '/')
276 SSET (errstring, 0, DOWNCASE (SREF (errstring, 0)));
277
278 Fsignal (Qfile_error,
279 Fcons (build_string (string), Fcons (errstring, data)));
280 }
281 }
282
283 Lisp_Object
284 close_file_unwind (fd)
285 Lisp_Object fd;
286 {
287 emacs_close (XFASTINT (fd));
288 return Qnil;
289 }
290
291 /* Restore point, having saved it as a marker. */
292
293 static Lisp_Object
294 restore_point_unwind (location)
295 Lisp_Object location;
296 {
297 Fgoto_char (location);
298 Fset_marker (location, Qnil, Qnil);
299 return Qnil;
300 }
301 \f
302 Lisp_Object Qexpand_file_name;
303 Lisp_Object Qsubstitute_in_file_name;
304 Lisp_Object Qdirectory_file_name;
305 Lisp_Object Qfile_name_directory;
306 Lisp_Object Qfile_name_nondirectory;
307 Lisp_Object Qunhandled_file_name_directory;
308 Lisp_Object Qfile_name_as_directory;
309 Lisp_Object Qcopy_file;
310 Lisp_Object Qmake_directory_internal;
311 Lisp_Object Qmake_directory;
312 Lisp_Object Qdelete_directory;
313 Lisp_Object Qdelete_file;
314 Lisp_Object Qrename_file;
315 Lisp_Object Qadd_name_to_file;
316 Lisp_Object Qmake_symbolic_link;
317 Lisp_Object Qfile_exists_p;
318 Lisp_Object Qfile_executable_p;
319 Lisp_Object Qfile_readable_p;
320 Lisp_Object Qfile_writable_p;
321 Lisp_Object Qfile_symlink_p;
322 Lisp_Object Qaccess_file;
323 Lisp_Object Qfile_directory_p;
324 Lisp_Object Qfile_regular_p;
325 Lisp_Object Qfile_accessible_directory_p;
326 Lisp_Object Qfile_modes;
327 Lisp_Object Qset_file_modes;
328 Lisp_Object Qset_file_times;
329 Lisp_Object Qfile_newer_than_file_p;
330 Lisp_Object Qinsert_file_contents;
331 Lisp_Object Qwrite_region;
332 Lisp_Object Qverify_visited_file_modtime;
333 Lisp_Object Qset_visited_file_modtime;
334
335 DEFUN ("find-file-name-handler", Ffind_file_name_handler, Sfind_file_name_handler, 2, 2, 0,
336 doc: /* Return FILENAME's handler function for OPERATION, if it has one.
337 Otherwise, return nil.
338 A file name is handled if one of the regular expressions in
339 `file-name-handler-alist' matches it.
340
341 If OPERATION equals `inhibit-file-name-operation', then we ignore
342 any handlers that are members of `inhibit-file-name-handlers',
343 but we still do run any other handlers. This lets handlers
344 use the standard functions without calling themselves recursively. */)
345 (filename, operation)
346 Lisp_Object filename, operation;
347 {
348 /* This function must not munge the match data. */
349 Lisp_Object chain, inhibited_handlers, result;
350 int pos = -1;
351
352 result = Qnil;
353 CHECK_STRING (filename);
354
355 if (EQ (operation, Vinhibit_file_name_operation))
356 inhibited_handlers = Vinhibit_file_name_handlers;
357 else
358 inhibited_handlers = Qnil;
359
360 for (chain = Vfile_name_handler_alist; CONSP (chain);
361 chain = XCDR (chain))
362 {
363 Lisp_Object elt;
364 elt = XCAR (chain);
365 if (CONSP (elt))
366 {
367 Lisp_Object string;
368 int match_pos;
369 string = XCAR (elt);
370 if (STRINGP (string)
371 && (match_pos = fast_string_match (string, filename)) > pos)
372 {
373 Lisp_Object handler, tem;
374
375 handler = XCDR (elt);
376 tem = Fmemq (handler, inhibited_handlers);
377 if (NILP (tem))
378 {
379 result = handler;
380 pos = match_pos;
381 }
382 }
383 }
384
385 QUIT;
386 }
387 return result;
388 }
389 \f
390 DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory,
391 1, 1, 0,
392 doc: /* Return the directory component in file name FILENAME.
393 Return nil if FILENAME does not include a directory.
394 Otherwise return a directory spec.
395 Given a Unix syntax file name, returns a string ending in slash;
396 on VMS, perhaps instead a string ending in `:', `]' or `>'. */)
397 (filename)
398 Lisp_Object filename;
399 {
400 #ifndef DOS_NT
401 register const unsigned char *beg;
402 #else
403 register unsigned char *beg;
404 #endif
405 register const unsigned char *p;
406 Lisp_Object handler;
407
408 CHECK_STRING (filename);
409
410 /* If the file name has special constructs in it,
411 call the corresponding file handler. */
412 handler = Ffind_file_name_handler (filename, Qfile_name_directory);
413 if (!NILP (handler))
414 return call2 (handler, Qfile_name_directory, filename);
415
416 #ifdef FILE_SYSTEM_CASE
417 filename = FILE_SYSTEM_CASE (filename);
418 #endif
419 beg = SDATA (filename);
420 #ifdef DOS_NT
421 beg = strcpy (alloca (strlen (beg) + 1), beg);
422 #endif
423 p = beg + SBYTES (filename);
424
425 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
426 #ifdef VMS
427 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>'
428 #endif /* VMS */
429 #ifdef DOS_NT
430 /* only recognise drive specifier at the beginning */
431 && !(p[-1] == ':'
432 /* handle the "/:d:foo" and "/:foo" cases correctly */
433 && ((p == beg + 2 && !IS_DIRECTORY_SEP (*beg))
434 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
435 #endif
436 ) p--;
437
438 if (p == beg)
439 return Qnil;
440 #ifdef DOS_NT
441 /* Expansion of "c:" to drive and default directory. */
442 if (p[-1] == ':')
443 {
444 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
445 unsigned char *res = alloca (MAXPATHLEN + 1);
446 unsigned char *r = res;
447
448 if (p == beg + 4 && IS_DIRECTORY_SEP (*beg) && beg[1] == ':')
449 {
450 strncpy (res, beg, 2);
451 beg += 2;
452 r += 2;
453 }
454
455 if (getdefdir (toupper (*beg) - 'A' + 1, r))
456 {
457 if (!IS_DIRECTORY_SEP (res[strlen (res) - 1]))
458 strcat (res, "/");
459 beg = res;
460 p = beg + strlen (beg);
461 }
462 }
463 CORRECT_DIR_SEPS (beg);
464 #endif /* DOS_NT */
465
466 return make_specified_string (beg, -1, p - beg, STRING_MULTIBYTE (filename));
467 }
468
469 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory,
470 Sfile_name_nondirectory, 1, 1, 0,
471 doc: /* Return file name FILENAME sans its directory.
472 For example, in a Unix-syntax file name,
473 this is everything after the last slash,
474 or the entire name if it contains no slash. */)
475 (filename)
476 Lisp_Object filename;
477 {
478 register const unsigned char *beg, *p, *end;
479 Lisp_Object handler;
480
481 CHECK_STRING (filename);
482
483 /* If the file name has special constructs in it,
484 call the corresponding file handler. */
485 handler = Ffind_file_name_handler (filename, Qfile_name_nondirectory);
486 if (!NILP (handler))
487 return call2 (handler, Qfile_name_nondirectory, filename);
488
489 beg = SDATA (filename);
490 end = p = beg + SBYTES (filename);
491
492 while (p != beg && !IS_DIRECTORY_SEP (p[-1])
493 #ifdef VMS
494 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>'
495 #endif /* VMS */
496 #ifdef DOS_NT
497 /* only recognise drive specifier at beginning */
498 && !(p[-1] == ':'
499 /* handle the "/:d:foo" case correctly */
500 && (p == beg + 2 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg))))
501 #endif
502 )
503 p--;
504
505 return make_specified_string (p, -1, end - p, STRING_MULTIBYTE (filename));
506 }
507
508 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory,
509 Sunhandled_file_name_directory, 1, 1, 0,
510 doc: /* Return a directly usable directory name somehow associated with FILENAME.
511 A `directly usable' directory name is one that may be used without the
512 intervention of any file handler.
513 If FILENAME is a directly usable file itself, return
514 \(file-name-directory FILENAME).
515 The `call-process' and `start-process' functions use this function to
516 get a current directory to run processes in. */)
517 (filename)
518 Lisp_Object filename;
519 {
520 Lisp_Object handler;
521
522 /* If the file name has special constructs in it,
523 call the corresponding file handler. */
524 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory);
525 if (!NILP (handler))
526 return call2 (handler, Qunhandled_file_name_directory, filename);
527
528 return Ffile_name_directory (filename);
529 }
530
531 \f
532 char *
533 file_name_as_directory (out, in)
534 char *out, *in;
535 {
536 int size = strlen (in) - 1;
537
538 strcpy (out, in);
539
540 if (size < 0)
541 {
542 out[0] = '.';
543 out[1] = '/';
544 out[2] = 0;
545 return out;
546 }
547
548 #ifdef VMS
549 /* Is it already a directory string? */
550 if (in[size] == ':' || in[size] == ']' || in[size] == '>')
551 return out;
552 /* Is it a VMS directory file name? If so, hack VMS syntax. */
553 else if (! index (in, '/')
554 && ((size > 3 && ! strcmp (&in[size - 3], ".DIR"))
555 || (size > 3 && ! strcmp (&in[size - 3], ".dir"))
556 || (size > 5 && (! strncmp (&in[size - 5], ".DIR", 4)
557 || ! strncmp (&in[size - 5], ".dir", 4))
558 && (in[size - 1] == '.' || in[size - 1] == ';')
559 && in[size] == '1')))
560 {
561 register char *p, *dot;
562 char brack;
563
564 /* x.dir -> [.x]
565 dir:x.dir --> dir:[x]
566 dir:[x]y.dir --> dir:[x.y] */
567 p = in + size;
568 while (p != in && *p != ':' && *p != '>' && *p != ']') p--;
569 if (p != in)
570 {
571 strncpy (out, in, p - in);
572 out[p - in] = '\0';
573 if (*p == ':')
574 {
575 brack = ']';
576 strcat (out, ":[");
577 }
578 else
579 {
580 brack = *p;
581 strcat (out, ".");
582 }
583 p++;
584 }
585 else
586 {
587 brack = ']';
588 strcpy (out, "[.");
589 }
590 dot = index (p, '.');
591 if (dot)
592 {
593 /* blindly remove any extension */
594 size = strlen (out) + (dot - p);
595 strncat (out, p, dot - p);
596 }
597 else
598 {
599 strcat (out, p);
600 size = strlen (out);
601 }
602 out[size++] = brack;
603 out[size] = '\0';
604 }
605 #else /* not VMS */
606 /* For Unix syntax, Append a slash if necessary */
607 if (!IS_DIRECTORY_SEP (out[size]))
608 {
609 /* Cannot use DIRECTORY_SEP, which could have any value */
610 out[size + 1] = '/';
611 out[size + 2] = '\0';
612 }
613 #ifdef DOS_NT
614 CORRECT_DIR_SEPS (out);
615 #endif
616 #endif /* not VMS */
617 return out;
618 }
619
620 DEFUN ("file-name-as-directory", Ffile_name_as_directory,
621 Sfile_name_as_directory, 1, 1, 0,
622 doc: /* Return a string representing the file name FILE interpreted as a directory.
623 This operation exists because a directory is also a file, but its name as
624 a directory is different from its name as a file.
625 The result can be used as the value of `default-directory'
626 or passed as second argument to `expand-file-name'.
627 For a Unix-syntax file name, just appends a slash.
628 On VMS, converts \"[X]FOO.DIR\" to \"[X.FOO]\", etc. */)
629 (file)
630 Lisp_Object file;
631 {
632 char *buf;
633 Lisp_Object handler;
634
635 CHECK_STRING (file);
636 if (NILP (file))
637 return Qnil;
638
639 /* If the file name has special constructs in it,
640 call the corresponding file handler. */
641 handler = Ffind_file_name_handler (file, Qfile_name_as_directory);
642 if (!NILP (handler))
643 return call2 (handler, Qfile_name_as_directory, file);
644
645 buf = (char *) alloca (SBYTES (file) + 10);
646 file_name_as_directory (buf, SDATA (file));
647 return make_specified_string (buf, -1, strlen (buf),
648 STRING_MULTIBYTE (file));
649 }
650 \f
651 /*
652 * Convert from directory name to filename.
653 * On VMS:
654 * xyzzy:[mukesh.emacs] => xyzzy:[mukesh]emacs.dir.1
655 * xyzzy:[mukesh] => xyzzy:[000000]mukesh.dir.1
656 * On UNIX, it's simple: just make sure there isn't a terminating /
657
658 * Value is nonzero if the string output is different from the input.
659 */
660
661 int
662 directory_file_name (src, dst)
663 char *src, *dst;
664 {
665 long slen;
666 #ifdef VMS
667 long rlen;
668 char * ptr, * rptr;
669 char bracket;
670 struct FAB fab = cc$rms_fab;
671 struct NAM nam = cc$rms_nam;
672 char esa[NAM$C_MAXRSS];
673 #endif /* VMS */
674
675 slen = strlen (src);
676 #ifdef VMS
677 if (! index (src, '/')
678 && (src[slen - 1] == ']'
679 || src[slen - 1] == ':'
680 || src[slen - 1] == '>'))
681 {
682 /* VMS style - convert [x.y.z] to [x.y]z, [x] to [000000]x */
683 fab.fab$l_fna = src;
684 fab.fab$b_fns = slen;
685 fab.fab$l_nam = &nam;
686 fab.fab$l_fop = FAB$M_NAM;
687
688 nam.nam$l_esa = esa;
689 nam.nam$b_ess = sizeof esa;
690 nam.nam$b_nop |= NAM$M_SYNCHK;
691
692 /* We call SYS$PARSE to handle such things as [--] for us. */
693 if (SYS$PARSE (&fab, 0, 0) == RMS$_NORMAL)
694 {
695 slen = nam.nam$b_esl;
696 if (esa[slen - 1] == ';' && esa[slen - 2] == '.')
697 slen -= 2;
698 esa[slen] = '\0';
699 src = esa;
700 }
701 if (src[slen - 1] != ']' && src[slen - 1] != '>')
702 {
703 /* what about when we have logical_name:???? */
704 if (src[slen - 1] == ':')
705 { /* Xlate logical name and see what we get */
706 ptr = strcpy (dst, src); /* upper case for getenv */
707 while (*ptr)
708 {
709 if ('a' <= *ptr && *ptr <= 'z')
710 *ptr -= 040;
711 ptr++;
712 }
713 dst[slen - 1] = 0; /* remove colon */
714 if (!(src = egetenv (dst)))
715 return 0;
716 /* should we jump to the beginning of this procedure?
717 Good points: allows us to use logical names that xlate
718 to Unix names,
719 Bad points: can be a problem if we just translated to a device
720 name...
721 For now, I'll punt and always expect VMS names, and hope for
722 the best! */
723 slen = strlen (src);
724 if (src[slen - 1] != ']' && src[slen - 1] != '>')
725 { /* no recursion here! */
726 strcpy (dst, src);
727 return 0;
728 }
729 }
730 else
731 { /* not a directory spec */
732 strcpy (dst, src);
733 return 0;
734 }
735 }
736 bracket = src[slen - 1];
737
738 /* If bracket is ']' or '>', bracket - 2 is the corresponding
739 opening bracket. */
740 ptr = index (src, bracket - 2);
741 if (ptr == 0)
742 { /* no opening bracket */
743 strcpy (dst, src);
744 return 0;
745 }
746 if (!(rptr = rindex (src, '.')))
747 rptr = ptr;
748 slen = rptr - src;
749 strncpy (dst, src, slen);
750 dst[slen] = '\0';
751 if (*rptr == '.')
752 {
753 dst[slen++] = bracket;
754 dst[slen] = '\0';
755 }
756 else
757 {
758 /* If we have the top-level of a rooted directory (i.e. xx:[000000]),
759 then translate the device and recurse. */
760 if (dst[slen - 1] == ':'
761 && dst[slen - 2] != ':' /* skip decnet nodes */
762 && strcmp (src + slen, "[000000]") == 0)
763 {
764 dst[slen - 1] = '\0';
765 if ((ptr = egetenv (dst))
766 && (rlen = strlen (ptr) - 1) > 0
767 && (ptr[rlen] == ']' || ptr[rlen] == '>')
768 && ptr[rlen - 1] == '.')
769 {
770 char * buf = (char *) alloca (strlen (ptr) + 1);
771 strcpy (buf, ptr);
772 buf[rlen - 1] = ']';
773 buf[rlen] = '\0';
774 return directory_file_name (buf, dst);
775 }
776 else
777 dst[slen - 1] = ':';
778 }
779 strcat (dst, "[000000]");
780 slen += 8;
781 }
782 rptr++;
783 rlen = strlen (rptr) - 1;
784 strncat (dst, rptr, rlen);
785 dst[slen + rlen] = '\0';
786 strcat (dst, ".DIR.1");
787 return 1;
788 }
789 #endif /* VMS */
790 /* Process as Unix format: just remove any final slash.
791 But leave "/" unchanged; do not change it to "". */
792 strcpy (dst, src);
793 #ifdef APOLLO
794 /* Handle // as root for apollo's. */
795 if ((slen > 2 && dst[slen - 1] == '/')
796 || (slen > 1 && dst[0] != '/' && dst[slen - 1] == '/'))
797 dst[slen - 1] = 0;
798 #else
799 if (slen > 1
800 && IS_DIRECTORY_SEP (dst[slen - 1])
801 #ifdef DOS_NT
802 && !IS_ANY_SEP (dst[slen - 2])
803 #endif
804 )
805 dst[slen - 1] = 0;
806 #endif
807 #ifdef DOS_NT
808 CORRECT_DIR_SEPS (dst);
809 #endif
810 return 1;
811 }
812
813 DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name,
814 1, 1, 0,
815 doc: /* Returns the file name of the directory named DIRECTORY.
816 This is the name of the file that holds the data for the directory DIRECTORY.
817 This operation exists because a directory is also a file, but its name as
818 a directory is different from its name as a file.
819 In Unix-syntax, this function just removes the final slash.
820 On VMS, given a VMS-syntax directory name such as \"[X.Y]\",
821 it returns a file name such as \"[X]Y.DIR.1\". */)
822 (directory)
823 Lisp_Object directory;
824 {
825 char *buf;
826 Lisp_Object handler;
827
828 CHECK_STRING (directory);
829
830 if (NILP (directory))
831 return Qnil;
832
833 /* If the file name has special constructs in it,
834 call the corresponding file handler. */
835 handler = Ffind_file_name_handler (directory, Qdirectory_file_name);
836 if (!NILP (handler))
837 return call2 (handler, Qdirectory_file_name, directory);
838
839 #ifdef VMS
840 /* 20 extra chars is insufficient for VMS, since we might perform a
841 logical name translation. an equivalence string can be up to 255
842 chars long, so grab that much extra space... - sss */
843 buf = (char *) alloca (SBYTES (directory) + 20 + 255);
844 #else
845 buf = (char *) alloca (SBYTES (directory) + 20);
846 #endif
847 directory_file_name (SDATA (directory), buf);
848 return make_specified_string (buf, -1, strlen (buf),
849 STRING_MULTIBYTE (directory));
850 }
851
852 static char make_temp_name_tbl[64] =
853 {
854 'A','B','C','D','E','F','G','H',
855 'I','J','K','L','M','N','O','P',
856 'Q','R','S','T','U','V','W','X',
857 'Y','Z','a','b','c','d','e','f',
858 'g','h','i','j','k','l','m','n',
859 'o','p','q','r','s','t','u','v',
860 'w','x','y','z','0','1','2','3',
861 '4','5','6','7','8','9','-','_'
862 };
863
864 static unsigned make_temp_name_count, make_temp_name_count_initialized_p;
865
866 /* Value is a temporary file name starting with PREFIX, a string.
867
868 The Emacs process number forms part of the result, so there is
869 no danger of generating a name being used by another process.
870 In addition, this function makes an attempt to choose a name
871 which has no existing file. To make this work, PREFIX should be
872 an absolute file name.
873
874 BASE64_P non-zero means add the pid as 3 characters in base64
875 encoding. In this case, 6 characters will be added to PREFIX to
876 form the file name. Otherwise, if Emacs is running on a system
877 with long file names, add the pid as a decimal number.
878
879 This function signals an error if no unique file name could be
880 generated. */
881
882 Lisp_Object
883 make_temp_name (prefix, base64_p)
884 Lisp_Object prefix;
885 int base64_p;
886 {
887 Lisp_Object val;
888 int len;
889 int pid;
890 unsigned char *p, *data;
891 char pidbuf[20];
892 int pidlen;
893
894 CHECK_STRING (prefix);
895
896 /* VAL is created by adding 6 characters to PREFIX. The first
897 three are the PID of this process, in base 64, and the second
898 three are incremented if the file already exists. This ensures
899 262144 unique file names per PID per PREFIX. */
900
901 pid = (int) getpid ();
902
903 if (base64_p)
904 {
905 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
906 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
907 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
908 pidlen = 3;
909 }
910 else
911 {
912 #ifdef HAVE_LONG_FILE_NAMES
913 sprintf (pidbuf, "%d", pid);
914 pidlen = strlen (pidbuf);
915 #else
916 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6;
917 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6;
918 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6;
919 pidlen = 3;
920 #endif
921 }
922
923 len = SCHARS (prefix);
924 val = make_uninit_string (len + 3 + pidlen);
925 data = SDATA (val);
926 bcopy(SDATA (prefix), data, len);
927 p = data + len;
928
929 bcopy (pidbuf, p, pidlen);
930 p += pidlen;
931
932 /* Here we try to minimize useless stat'ing when this function is
933 invoked many times successively with the same PREFIX. We achieve
934 this by initializing count to a random value, and incrementing it
935 afterwards.
936
937 We don't want make-temp-name to be called while dumping,
938 because then make_temp_name_count_initialized_p would get set
939 and then make_temp_name_count would not be set when Emacs starts. */
940
941 if (!make_temp_name_count_initialized_p)
942 {
943 make_temp_name_count = (unsigned) time (NULL);
944 make_temp_name_count_initialized_p = 1;
945 }
946
947 while (1)
948 {
949 struct stat ignored;
950 unsigned num = make_temp_name_count;
951
952 p[0] = make_temp_name_tbl[num & 63], num >>= 6;
953 p[1] = make_temp_name_tbl[num & 63], num >>= 6;
954 p[2] = make_temp_name_tbl[num & 63], num >>= 6;
955
956 /* Poor man's congruential RN generator. Replace with
957 ++make_temp_name_count for debugging. */
958 make_temp_name_count += 25229;
959 make_temp_name_count %= 225307;
960
961 if (stat (data, &ignored) < 0)
962 {
963 /* We want to return only if errno is ENOENT. */
964 if (errno == ENOENT)
965 return val;
966 else
967 /* The error here is dubious, but there is little else we
968 can do. The alternatives are to return nil, which is
969 as bad as (and in many cases worse than) throwing the
970 error, or to ignore the error, which will likely result
971 in looping through 225307 stat's, which is not only
972 dog-slow, but also useless since it will fallback to
973 the errow below, anyway. */
974 report_file_error ("Cannot create temporary name for prefix",
975 Fcons (prefix, Qnil));
976 /* not reached */
977 }
978 }
979
980 error ("Cannot create temporary name for prefix `%s'",
981 SDATA (prefix));
982 return Qnil;
983 }
984
985
986 DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0,
987 doc: /* Generate temporary file name (string) starting with PREFIX (a string).
988 The Emacs process number forms part of the result,
989 so there is no danger of generating a name being used by another process.
990
991 In addition, this function makes an attempt to choose a name
992 which has no existing file. To make this work,
993 PREFIX should be an absolute file name.
994
995 There is a race condition between calling `make-temp-name' and creating the
996 file which opens all kinds of security holes. For that reason, you should
997 probably use `make-temp-file' instead, except in three circumstances:
998
999 * If you are creating the file in the user's home directory.
1000 * If you are creating a directory rather than an ordinary file.
1001 * If you are taking special precautions as `make-temp-file' does. */)
1002 (prefix)
1003 Lisp_Object prefix;
1004 {
1005 return make_temp_name (prefix, 0);
1006 }
1007
1008
1009 \f
1010 DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
1011 doc: /* Convert filename NAME to absolute, and canonicalize it.
1012 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative
1013 (does not start with slash); if DEFAULT-DIRECTORY is nil or missing,
1014 the current buffer's value of default-directory is used.
1015 File name components that are `.' are removed, and
1016 so are file name components followed by `..', along with the `..' itself;
1017 note that these simplifications are done without checking the resulting
1018 file names in the file system.
1019 An initial `~/' expands to your home directory.
1020 An initial `~USER/' expands to USER's home directory.
1021 See also the function `substitute-in-file-name'. */)
1022 (name, default_directory)
1023 Lisp_Object name, default_directory;
1024 {
1025 unsigned char *nm;
1026
1027 register unsigned char *newdir, *p, *o;
1028 int tlen;
1029 unsigned char *target;
1030 struct passwd *pw;
1031 #ifdef VMS
1032 unsigned char * colon = 0;
1033 unsigned char * close = 0;
1034 unsigned char * slash = 0;
1035 unsigned char * brack = 0;
1036 int lbrack = 0, rbrack = 0;
1037 int dots = 0;
1038 #endif /* VMS */
1039 #ifdef DOS_NT
1040 int drive = 0;
1041 int collapse_newdir = 1;
1042 int is_escaped = 0;
1043 #endif /* DOS_NT */
1044 int length;
1045 Lisp_Object handler, result;
1046
1047 CHECK_STRING (name);
1048
1049 /* If the file name has special constructs in it,
1050 call the corresponding file handler. */
1051 handler = Ffind_file_name_handler (name, Qexpand_file_name);
1052 if (!NILP (handler))
1053 return call3 (handler, Qexpand_file_name, name, default_directory);
1054
1055 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */
1056 if (NILP (default_directory))
1057 default_directory = current_buffer->directory;
1058 if (! STRINGP (default_directory))
1059 {
1060 #ifdef DOS_NT
1061 /* "/" is not considered a root directory on DOS_NT, so using "/"
1062 here causes an infinite recursion in, e.g., the following:
1063
1064 (let (default-directory)
1065 (expand-file-name "a"))
1066
1067 To avoid this, we set default_directory to the root of the
1068 current drive. */
1069 extern char *emacs_root_dir (void);
1070
1071 default_directory = build_string (emacs_root_dir ());
1072 #else
1073 default_directory = build_string ("/");
1074 #endif
1075 }
1076
1077 if (!NILP (default_directory))
1078 {
1079 handler = Ffind_file_name_handler (default_directory, Qexpand_file_name);
1080 if (!NILP (handler))
1081 return call3 (handler, Qexpand_file_name, name, default_directory);
1082 }
1083
1084 o = SDATA (default_directory);
1085
1086 /* Make sure DEFAULT_DIRECTORY is properly expanded.
1087 It would be better to do this down below where we actually use
1088 default_directory. Unfortunately, calling Fexpand_file_name recursively
1089 could invoke GC, and the strings might be relocated. This would
1090 be annoying because we have pointers into strings lying around
1091 that would need adjusting, and people would add new pointers to
1092 the code and forget to adjust them, resulting in intermittent bugs.
1093 Putting this call here avoids all that crud.
1094
1095 The EQ test avoids infinite recursion. */
1096 if (! NILP (default_directory) && !EQ (default_directory, name)
1097 /* Save time in some common cases - as long as default_directory
1098 is not relative, it can be canonicalized with name below (if it
1099 is needed at all) without requiring it to be expanded now. */
1100 #ifdef DOS_NT
1101 /* Detect MSDOS file names with drive specifiers. */
1102 && ! (IS_DRIVE (o[0]) && IS_DEVICE_SEP (o[1]) && IS_DIRECTORY_SEP (o[2]))
1103 #ifdef WINDOWSNT
1104 /* Detect Windows file names in UNC format. */
1105 && ! (IS_DIRECTORY_SEP (o[0]) && IS_DIRECTORY_SEP (o[1]))
1106 #endif
1107 #else /* not DOS_NT */
1108 /* Detect Unix absolute file names (/... alone is not absolute on
1109 DOS or Windows). */
1110 && ! (IS_DIRECTORY_SEP (o[0]))
1111 #endif /* not DOS_NT */
1112 )
1113 {
1114 struct gcpro gcpro1;
1115
1116 GCPRO1 (name);
1117 default_directory = Fexpand_file_name (default_directory, Qnil);
1118 UNGCPRO;
1119 }
1120
1121 #ifdef VMS
1122 /* Filenames on VMS are always upper case. */
1123 name = Fupcase (name);
1124 #endif
1125 #ifdef FILE_SYSTEM_CASE
1126 name = FILE_SYSTEM_CASE (name);
1127 #endif
1128
1129 nm = SDATA (name);
1130
1131 #ifdef DOS_NT
1132 /* We will force directory separators to be either all \ or /, so make
1133 a local copy to modify, even if there ends up being no change. */
1134 nm = strcpy (alloca (strlen (nm) + 1), nm);
1135
1136 /* Note if special escape prefix is present, but remove for now. */
1137 if (nm[0] == '/' && nm[1] == ':')
1138 {
1139 is_escaped = 1;
1140 nm += 2;
1141 }
1142
1143 /* Find and remove drive specifier if present; this makes nm absolute
1144 even if the rest of the name appears to be relative. Only look for
1145 drive specifier at the beginning. */
1146 if (IS_DRIVE (nm[0]) && IS_DEVICE_SEP (nm[1]))
1147 {
1148 drive = nm[0];
1149 nm += 2;
1150 }
1151
1152 #ifdef WINDOWSNT
1153 /* If we see "c://somedir", we want to strip the first slash after the
1154 colon when stripping the drive letter. Otherwise, this expands to
1155 "//somedir". */
1156 if (drive && IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
1157 nm++;
1158 #endif /* WINDOWSNT */
1159 #endif /* DOS_NT */
1160
1161 #ifdef WINDOWSNT
1162 /* Discard any previous drive specifier if nm is now in UNC format. */
1163 if (IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
1164 {
1165 drive = 0;
1166 }
1167 #endif
1168
1169 /* If nm is absolute, look for `/./' or `/../' or `//''sequences; if
1170 none are found, we can probably return right away. We will avoid
1171 allocating a new string if name is already fully expanded. */
1172 if (
1173 IS_DIRECTORY_SEP (nm[0])
1174 #ifdef MSDOS
1175 && drive && !is_escaped
1176 #endif
1177 #ifdef WINDOWSNT
1178 && (drive || IS_DIRECTORY_SEP (nm[1])) && !is_escaped
1179 #endif
1180 #ifdef VMS
1181 || index (nm, ':')
1182 #endif /* VMS */
1183 )
1184 {
1185 /* If it turns out that the filename we want to return is just a
1186 suffix of FILENAME, we don't need to go through and edit
1187 things; we just need to construct a new string using data
1188 starting at the middle of FILENAME. If we set lose to a
1189 non-zero value, that means we've discovered that we can't do
1190 that cool trick. */
1191 int lose = 0;
1192
1193 p = nm;
1194 while (*p)
1195 {
1196 /* Since we know the name is absolute, we can assume that each
1197 element starts with a "/". */
1198
1199 /* "." and ".." are hairy. */
1200 if (IS_DIRECTORY_SEP (p[0])
1201 && p[1] == '.'
1202 && (IS_DIRECTORY_SEP (p[2])
1203 || p[2] == 0
1204 || (p[2] == '.' && (IS_DIRECTORY_SEP (p[3])
1205 || p[3] == 0))))
1206 lose = 1;
1207 /* We want to replace multiple `/' in a row with a single
1208 slash. */
1209 else if (p > nm
1210 && IS_DIRECTORY_SEP (p[0])
1211 && IS_DIRECTORY_SEP (p[1]))
1212 lose = 1;
1213
1214 #ifdef VMS
1215 if (p[0] == '\\')
1216 lose = 1;
1217 if (p[0] == '/') {
1218 /* if dev:[dir]/, move nm to / */
1219 if (!slash && p > nm && (brack || colon)) {
1220 nm = (brack ? brack + 1 : colon + 1);
1221 lbrack = rbrack = 0;
1222 brack = 0;
1223 colon = 0;
1224 }
1225 slash = p;
1226 }
1227 if (p[0] == '-')
1228 #ifndef VMS4_4
1229 /* VMS pre V4.4,convert '-'s in filenames. */
1230 if (lbrack == rbrack)
1231 {
1232 if (dots < 2) /* this is to allow negative version numbers */
1233 p[0] = '_';
1234 }
1235 else
1236 #endif /* VMS4_4 */
1237 if (lbrack > rbrack &&
1238 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') &&
1239 (p[1] == '.' || p[1] == ']' || p[1] == '>')))
1240 lose = 1;
1241 #ifndef VMS4_4
1242 else
1243 p[0] = '_';
1244 #endif /* VMS4_4 */
1245 /* count open brackets, reset close bracket pointer */
1246 if (p[0] == '[' || p[0] == '<')
1247 lbrack++, brack = 0;
1248 /* count close brackets, set close bracket pointer */
1249 if (p[0] == ']' || p[0] == '>')
1250 rbrack++, brack = p;
1251 /* detect ][ or >< */
1252 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<'))
1253 lose = 1;
1254 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~')
1255 nm = p + 1, lose = 1;
1256 if (p[0] == ':' && (colon || slash))
1257 /* if dev1:[dir]dev2:, move nm to dev2: */
1258 if (brack)
1259 {
1260 nm = brack + 1;
1261 brack = 0;
1262 }
1263 /* if /name/dev:, move nm to dev: */
1264 else if (slash)
1265 nm = slash + 1;
1266 /* if node::dev:, move colon following dev */
1267 else if (colon && colon[-1] == ':')
1268 colon = p;
1269 /* if dev1:dev2:, move nm to dev2: */
1270 else if (colon && colon[-1] != ':')
1271 {
1272 nm = colon + 1;
1273 colon = 0;
1274 }
1275 if (p[0] == ':' && !colon)
1276 {
1277 if (p[1] == ':')
1278 p++;
1279 colon = p;
1280 }
1281 if (lbrack == rbrack)
1282 if (p[0] == ';')
1283 dots = 2;
1284 else if (p[0] == '.')
1285 dots++;
1286 #endif /* VMS */
1287 p++;
1288 }
1289 if (!lose)
1290 {
1291 #ifdef VMS
1292 if (index (nm, '/'))
1293 {
1294 nm = sys_translate_unix (nm);
1295 return make_specified_string (nm, -1, strlen (nm),
1296 STRING_MULTIBYTE (name));
1297 }
1298 #endif /* VMS */
1299 #ifdef DOS_NT
1300 /* Make sure directories are all separated with / or \ as
1301 desired, but avoid allocation of a new string when not
1302 required. */
1303 CORRECT_DIR_SEPS (nm);
1304 #ifdef WINDOWSNT
1305 if (IS_DIRECTORY_SEP (nm[1]))
1306 {
1307 if (strcmp (nm, SDATA (name)) != 0)
1308 name = make_specified_string (nm, -1, strlen (nm),
1309 STRING_MULTIBYTE (name));
1310 }
1311 else
1312 #endif
1313 /* drive must be set, so this is okay */
1314 if (strcmp (nm - 2, SDATA (name)) != 0)
1315 {
1316 char temp[] = " :";
1317
1318 name = make_specified_string (nm, -1, p - nm,
1319 STRING_MULTIBYTE (name));
1320 temp[0] = DRIVE_LETTER (drive);
1321 name = concat2 (build_string (temp), name);
1322 }
1323 return name;
1324 #else /* not DOS_NT */
1325 if (nm == SDATA (name))
1326 return name;
1327 return make_specified_string (nm, -1, strlen (nm),
1328 STRING_MULTIBYTE (name));
1329 #endif /* not DOS_NT */
1330 }
1331 }
1332
1333 /* At this point, nm might or might not be an absolute file name. We
1334 need to expand ~ or ~user if present, otherwise prefix nm with
1335 default_directory if nm is not absolute, and finally collapse /./
1336 and /foo/../ sequences.
1337
1338 We set newdir to be the appropriate prefix if one is needed:
1339 - the relevant user directory if nm starts with ~ or ~user
1340 - the specified drive's working dir (DOS/NT only) if nm does not
1341 start with /
1342 - the value of default_directory.
1343
1344 Note that these prefixes are not guaranteed to be absolute (except
1345 for the working dir of a drive). Therefore, to ensure we always
1346 return an absolute name, if the final prefix is not absolute we
1347 append it to the current working directory. */
1348
1349 newdir = 0;
1350
1351 if (nm[0] == '~') /* prefix ~ */
1352 {
1353 if (IS_DIRECTORY_SEP (nm[1])
1354 #ifdef VMS
1355 || nm[1] == ':'
1356 #endif /* VMS */
1357 || nm[1] == 0) /* ~ by itself */
1358 {
1359 if (!(newdir = (unsigned char *) egetenv ("HOME")))
1360 newdir = (unsigned char *) "";
1361 nm++;
1362 #ifdef DOS_NT
1363 collapse_newdir = 0;
1364 #endif
1365 #ifdef VMS
1366 nm++; /* Don't leave the slash in nm. */
1367 #endif /* VMS */
1368 }
1369 else /* ~user/filename */
1370 {
1371 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p)
1372 #ifdef VMS
1373 && *p != ':'
1374 #endif /* VMS */
1375 ); p++);
1376 o = (unsigned char *) alloca (p - nm + 1);
1377 bcopy ((char *) nm, o, p - nm);
1378 o [p - nm] = 0;
1379
1380 pw = (struct passwd *) getpwnam (o + 1);
1381 if (pw)
1382 {
1383 newdir = (unsigned char *) pw -> pw_dir;
1384 #ifdef VMS
1385 nm = p + 1; /* skip the terminator */
1386 #else
1387 nm = p;
1388 #ifdef DOS_NT
1389 collapse_newdir = 0;
1390 #endif
1391 #endif /* VMS */
1392 }
1393
1394 /* If we don't find a user of that name, leave the name
1395 unchanged; don't move nm forward to p. */
1396 }
1397 }
1398
1399 #ifdef DOS_NT
1400 /* On DOS and Windows, nm is absolute if a drive name was specified;
1401 use the drive's current directory as the prefix if needed. */
1402 if (!newdir && drive)
1403 {
1404 /* Get default directory if needed to make nm absolute. */
1405 if (!IS_DIRECTORY_SEP (nm[0]))
1406 {
1407 newdir = alloca (MAXPATHLEN + 1);
1408 if (!getdefdir (toupper (drive) - 'A' + 1, newdir))
1409 newdir = NULL;
1410 }
1411 if (!newdir)
1412 {
1413 /* Either nm starts with /, or drive isn't mounted. */
1414 newdir = alloca (4);
1415 newdir[0] = DRIVE_LETTER (drive);
1416 newdir[1] = ':';
1417 newdir[2] = '/';
1418 newdir[3] = 0;
1419 }
1420 }
1421 #endif /* DOS_NT */
1422
1423 /* Finally, if no prefix has been specified and nm is not absolute,
1424 then it must be expanded relative to default_directory. */
1425
1426 if (1
1427 #ifndef DOS_NT
1428 /* /... alone is not absolute on DOS and Windows. */
1429 && !IS_DIRECTORY_SEP (nm[0])
1430 #endif
1431 #ifdef WINDOWSNT
1432 && !(IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1]))
1433 #endif
1434 #ifdef VMS
1435 && !index (nm, ':')
1436 #endif
1437 && !newdir)
1438 {
1439 newdir = SDATA (default_directory);
1440 #ifdef DOS_NT
1441 /* Note if special escape prefix is present, but remove for now. */
1442 if (newdir[0] == '/' && newdir[1] == ':')
1443 {
1444 is_escaped = 1;
1445 newdir += 2;
1446 }
1447 #endif
1448 }
1449
1450 #ifdef DOS_NT
1451 if (newdir)
1452 {
1453 /* First ensure newdir is an absolute name. */
1454 if (
1455 /* Detect MSDOS file names with drive specifiers. */
1456 ! (IS_DRIVE (newdir[0])
1457 && IS_DEVICE_SEP (newdir[1]) && IS_DIRECTORY_SEP (newdir[2]))
1458 #ifdef WINDOWSNT
1459 /* Detect Windows file names in UNC format. */
1460 && ! (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1461 #endif
1462 )
1463 {
1464 /* Effectively, let newdir be (expand-file-name newdir cwd).
1465 Because of the admonition against calling expand-file-name
1466 when we have pointers into lisp strings, we accomplish this
1467 indirectly by prepending newdir to nm if necessary, and using
1468 cwd (or the wd of newdir's drive) as the new newdir. */
1469
1470 if (IS_DRIVE (newdir[0]) && newdir[1] == ':')
1471 {
1472 drive = newdir[0];
1473 newdir += 2;
1474 }
1475 if (!IS_DIRECTORY_SEP (nm[0]))
1476 {
1477 char * tmp = alloca (strlen (newdir) + strlen (nm) + 2);
1478 file_name_as_directory (tmp, newdir);
1479 strcat (tmp, nm);
1480 nm = tmp;
1481 }
1482 newdir = alloca (MAXPATHLEN + 1);
1483 if (drive)
1484 {
1485 if (!getdefdir (toupper (drive) - 'A' + 1, newdir))
1486 newdir = "/";
1487 }
1488 else
1489 getwd (newdir);
1490 }
1491
1492 /* Strip off drive name from prefix, if present. */
1493 if (IS_DRIVE (newdir[0]) && newdir[1] == ':')
1494 {
1495 drive = newdir[0];
1496 newdir += 2;
1497 }
1498
1499 /* Keep only a prefix from newdir if nm starts with slash
1500 (//server/share for UNC, nothing otherwise). */
1501 if (IS_DIRECTORY_SEP (nm[0]) && collapse_newdir)
1502 {
1503 #ifdef WINDOWSNT
1504 if (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1]))
1505 {
1506 newdir = strcpy (alloca (strlen (newdir) + 1), newdir);
1507 p = newdir + 2;
1508 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1509 p++;
1510 while (*p && !IS_DIRECTORY_SEP (*p)) p++;
1511 *p = 0;
1512 }
1513 else
1514 #endif
1515 newdir = "";
1516 }
1517 }
1518 #endif /* DOS_NT */
1519
1520 if (newdir)
1521 {
1522 /* Get rid of any slash at the end of newdir, unless newdir is
1523 just / or // (an incomplete UNC name). */
1524 length = strlen (newdir);
1525 if (length > 1 && IS_DIRECTORY_SEP (newdir[length - 1])
1526 #ifdef WINDOWSNT
1527 && !(length == 2 && IS_DIRECTORY_SEP (newdir[0]))
1528 #endif
1529 )
1530 {
1531 unsigned char *temp = (unsigned char *) alloca (length);
1532 bcopy (newdir, temp, length - 1);
1533 temp[length - 1] = 0;
1534 newdir = temp;
1535 }
1536 tlen = length + 1;
1537 }
1538 else
1539 tlen = 0;
1540
1541 /* Now concatenate the directory and name to new space in the stack frame */
1542 tlen += strlen (nm) + 1;
1543 #ifdef DOS_NT
1544 /* Reserve space for drive specifier and escape prefix, since either
1545 or both may need to be inserted. (The Microsoft x86 compiler
1546 produces incorrect code if the following two lines are combined.) */
1547 target = (unsigned char *) alloca (tlen + 4);
1548 target += 4;
1549 #else /* not DOS_NT */
1550 target = (unsigned char *) alloca (tlen);
1551 #endif /* not DOS_NT */
1552 *target = 0;
1553
1554 if (newdir)
1555 {
1556 #ifndef VMS
1557 if (nm[0] == 0 || IS_DIRECTORY_SEP (nm[0]))
1558 {
1559 #ifdef DOS_NT
1560 /* If newdir is effectively "C:/", then the drive letter will have
1561 been stripped and newdir will be "/". Concatenating with an
1562 absolute directory in nm produces "//", which will then be
1563 incorrectly treated as a network share. Ignore newdir in
1564 this case (keeping the drive letter). */
1565 if (!(drive && nm[0] && IS_DIRECTORY_SEP (newdir[0])
1566 && newdir[1] == '\0'))
1567 #endif
1568 strcpy (target, newdir);
1569 }
1570 else
1571 #endif
1572 file_name_as_directory (target, newdir);
1573 }
1574
1575 strcat (target, nm);
1576 #ifdef VMS
1577 if (index (target, '/'))
1578 strcpy (target, sys_translate_unix (target));
1579 #endif /* VMS */
1580
1581 /* ASSERT (IS_DIRECTORY_SEP (target[0])) if not VMS */
1582
1583 /* Now canonicalize by removing `//', `/.' and `/foo/..' if they
1584 appear. */
1585
1586 p = target;
1587 o = target;
1588
1589 while (*p)
1590 {
1591 #ifdef VMS
1592 if (*p != ']' && *p != '>' && *p != '-')
1593 {
1594 if (*p == '\\')
1595 p++;
1596 *o++ = *p++;
1597 }
1598 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2)
1599 /* brackets are offset from each other by 2 */
1600 {
1601 p += 2;
1602 if (*p != '.' && *p != '-' && o[-1] != '.')
1603 /* convert [foo][bar] to [bar] */
1604 while (o[-1] != '[' && o[-1] != '<')
1605 o--;
1606 else if (*p == '-' && *o != '.')
1607 *--p = '.';
1608 }
1609 else if (p[0] == '-' && o[-1] == '.' &&
1610 (p[1] == '.' || p[1] == ']' || p[1] == '>'))
1611 /* flush .foo.- ; leave - if stopped by '[' or '<' */
1612 {
1613 do
1614 o--;
1615 while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<');
1616 if (p[1] == '.') /* foo.-.bar ==> bar. */
1617 p += 2;
1618 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */
1619 p++, o--;
1620 /* else [foo.-] ==> [-] */
1621 }
1622 else
1623 {
1624 #ifndef VMS4_4
1625 if (*p == '-' &&
1626 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' &&
1627 p[1] != ']' && p[1] != '>' && p[1] != '.')
1628 *p = '_';
1629 #endif /* VMS4_4 */
1630 *o++ = *p++;
1631 }
1632 #else /* not VMS */
1633 if (!IS_DIRECTORY_SEP (*p))
1634 {
1635 *o++ = *p++;
1636 }
1637 else if (IS_DIRECTORY_SEP (p[0])
1638 && p[1] == '.'
1639 && (IS_DIRECTORY_SEP (p[2])
1640 || p[2] == 0))
1641 {
1642 /* If "/." is the entire filename, keep the "/". Otherwise,
1643 just delete the whole "/.". */
1644 if (o == target && p[2] == '\0')
1645 *o++ = *p;
1646 p += 2;
1647 }
1648 else if (IS_DIRECTORY_SEP (p[0]) && p[1] == '.' && p[2] == '.'
1649 /* `/../' is the "superroot" on certain file systems. */
1650 && o != target
1651 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0))
1652 {
1653 while (o != target && (--o) && !IS_DIRECTORY_SEP (*o))
1654 ;
1655 /* Keep initial / only if this is the whole name. */
1656 if (o == target && IS_ANY_SEP (*o) && p[3] == 0)
1657 ++o;
1658 p += 3;
1659 }
1660 else if (p > target
1661 && IS_DIRECTORY_SEP (p[0]) && IS_DIRECTORY_SEP (p[1]))
1662 {
1663 /* Collapse multiple `/' in a row. */
1664 *o++ = *p++;
1665 while (IS_DIRECTORY_SEP (*p))
1666 ++p;
1667 }
1668 else
1669 {
1670 *o++ = *p++;
1671 }
1672 #endif /* not VMS */
1673 }
1674
1675 #ifdef DOS_NT
1676 /* At last, set drive name. */
1677 #ifdef WINDOWSNT
1678 /* Except for network file name. */
1679 if (!(IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1])))
1680 #endif /* WINDOWSNT */
1681 {
1682 if (!drive) abort ();
1683 target -= 2;
1684 target[0] = DRIVE_LETTER (drive);
1685 target[1] = ':';
1686 }
1687 /* Reinsert the escape prefix if required. */
1688 if (is_escaped)
1689 {
1690 target -= 2;
1691 target[0] = '/';
1692 target[1] = ':';
1693 }
1694 CORRECT_DIR_SEPS (target);
1695 #endif /* DOS_NT */
1696
1697 result = make_specified_string (target, -1, o - target,
1698 STRING_MULTIBYTE (name));
1699
1700 /* Again look to see if the file name has special constructs in it
1701 and perhaps call the corresponding file handler. This is needed
1702 for filenames such as "/foo/../user@host:/bar/../baz". Expanding
1703 the ".." component gives us "/user@host:/bar/../baz" which needs
1704 to be expanded again. */
1705 handler = Ffind_file_name_handler (result, Qexpand_file_name);
1706 if (!NILP (handler))
1707 return call3 (handler, Qexpand_file_name, result, default_directory);
1708
1709 return result;
1710 }
1711
1712 #if 0
1713 /* PLEASE DO NOT DELETE THIS COMMENTED-OUT VERSION!
1714 This is the old version of expand-file-name, before it was thoroughly
1715 rewritten for Emacs 10.31. We leave this version here commented-out,
1716 because the code is very complex and likely to have subtle bugs. If
1717 bugs _are_ found, it might be of interest to look at the old code and
1718 see what did it do in the relevant situation.
1719
1720 Don't remove this code: it's true that it will be accessible via CVS,
1721 but a few years from deletion, people will forget it is there. */
1722
1723 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */
1724 DEAFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0,
1725 "Convert FILENAME to absolute, and canonicalize it.\n\
1726 Second arg DEFAULT is directory to start with if FILENAME is relative\n\
1727 (does not start with slash); if DEFAULT is nil or missing,\n\
1728 the current buffer's value of default-directory is used.\n\
1729 Filenames containing `.' or `..' as components are simplified;\n\
1730 initial `~/' expands to your home directory.\n\
1731 See also the function `substitute-in-file-name'.")
1732 (name, defalt)
1733 Lisp_Object name, defalt;
1734 {
1735 unsigned char *nm;
1736
1737 register unsigned char *newdir, *p, *o;
1738 int tlen;
1739 unsigned char *target;
1740 struct passwd *pw;
1741 int lose;
1742 #ifdef VMS
1743 unsigned char * colon = 0;
1744 unsigned char * close = 0;
1745 unsigned char * slash = 0;
1746 unsigned char * brack = 0;
1747 int lbrack = 0, rbrack = 0;
1748 int dots = 0;
1749 #endif /* VMS */
1750
1751 CHECK_STRING (name);
1752
1753 #ifdef VMS
1754 /* Filenames on VMS are always upper case. */
1755 name = Fupcase (name);
1756 #endif
1757
1758 nm = SDATA (name);
1759
1760 /* If nm is absolute, flush ...// and detect /./ and /../.
1761 If no /./ or /../ we can return right away. */
1762 if (
1763 nm[0] == '/'
1764 #ifdef VMS
1765 || index (nm, ':')
1766 #endif /* VMS */
1767 )
1768 {
1769 p = nm;
1770 lose = 0;
1771 while (*p)
1772 {
1773 if (p[0] == '/' && p[1] == '/'
1774 #ifdef APOLLO
1775 /* // at start of filename is meaningful on Apollo system. */
1776 && nm != p
1777 #endif /* APOLLO */
1778 )
1779 nm = p + 1;
1780 if (p[0] == '/' && p[1] == '~')
1781 nm = p + 1, lose = 1;
1782 if (p[0] == '/' && p[1] == '.'
1783 && (p[2] == '/' || p[2] == 0
1784 || (p[2] == '.' && (p[3] == '/' || p[3] == 0))))
1785 lose = 1;
1786 #ifdef VMS
1787 if (p[0] == '\\')
1788 lose = 1;
1789 if (p[0] == '/') {
1790 /* if dev:[dir]/, move nm to / */
1791 if (!slash && p > nm && (brack || colon)) {
1792 nm = (brack ? brack + 1 : colon + 1);
1793 lbrack = rbrack = 0;
1794 brack = 0;
1795 colon = 0;
1796 }
1797 slash = p;
1798 }
1799 if (p[0] == '-')
1800 #ifndef VMS4_4
1801 /* VMS pre V4.4,convert '-'s in filenames. */
1802 if (lbrack == rbrack)
1803 {
1804 if (dots < 2) /* this is to allow negative version numbers */
1805 p[0] = '_';
1806 }
1807 else
1808 #endif /* VMS4_4 */
1809 if (lbrack > rbrack &&
1810 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') &&
1811 (p[1] == '.' || p[1] == ']' || p[1] == '>')))
1812 lose = 1;
1813 #ifndef VMS4_4
1814 else
1815 p[0] = '_';
1816 #endif /* VMS4_4 */
1817 /* count open brackets, reset close bracket pointer */
1818 if (p[0] == '[' || p[0] == '<')
1819 lbrack++, brack = 0;
1820 /* count close brackets, set close bracket pointer */
1821 if (p[0] == ']' || p[0] == '>')
1822 rbrack++, brack = p;
1823 /* detect ][ or >< */
1824 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<'))
1825 lose = 1;
1826 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~')
1827 nm = p + 1, lose = 1;
1828 if (p[0] == ':' && (colon || slash))
1829 /* if dev1:[dir]dev2:, move nm to dev2: */
1830 if (brack)
1831 {
1832 nm = brack + 1;
1833 brack = 0;
1834 }
1835 /* If /name/dev:, move nm to dev: */
1836 else if (slash)
1837 nm = slash + 1;
1838 /* If node::dev:, move colon following dev */
1839 else if (colon && colon[-1] == ':')
1840 colon = p;
1841 /* If dev1:dev2:, move nm to dev2: */
1842 else if (colon && colon[-1] != ':')
1843 {
1844 nm = colon + 1;
1845 colon = 0;
1846 }
1847 if (p[0] == ':' && !colon)
1848 {
1849 if (p[1] == ':')
1850 p++;
1851 colon = p;
1852 }
1853 if (lbrack == rbrack)
1854 if (p[0] == ';')
1855 dots = 2;
1856 else if (p[0] == '.')
1857 dots++;
1858 #endif /* VMS */
1859 p++;
1860 }
1861 if (!lose)
1862 {
1863 #ifdef VMS
1864 if (index (nm, '/'))
1865 return build_string (sys_translate_unix (nm));
1866 #endif /* VMS */
1867 if (nm == SDATA (name))
1868 return name;
1869 return build_string (nm);
1870 }
1871 }
1872
1873 /* Now determine directory to start with and put it in NEWDIR */
1874
1875 newdir = 0;
1876
1877 if (nm[0] == '~') /* prefix ~ */
1878 if (nm[1] == '/'
1879 #ifdef VMS
1880 || nm[1] == ':'
1881 #endif /* VMS */
1882 || nm[1] == 0)/* ~/filename */
1883 {
1884 if (!(newdir = (unsigned char *) egetenv ("HOME")))
1885 newdir = (unsigned char *) "";
1886 nm++;
1887 #ifdef VMS
1888 nm++; /* Don't leave the slash in nm. */
1889 #endif /* VMS */
1890 }
1891 else /* ~user/filename */
1892 {
1893 /* Get past ~ to user */
1894 unsigned char *user = nm + 1;
1895 /* Find end of name. */
1896 unsigned char *ptr = (unsigned char *) index (user, '/');
1897 int len = ptr ? ptr - user : strlen (user);
1898 #ifdef VMS
1899 unsigned char *ptr1 = index (user, ':');
1900 if (ptr1 != 0 && ptr1 - user < len)
1901 len = ptr1 - user;
1902 #endif /* VMS */
1903 /* Copy the user name into temp storage. */
1904 o = (unsigned char *) alloca (len + 1);
1905 bcopy ((char *) user, o, len);
1906 o[len] = 0;
1907
1908 /* Look up the user name. */
1909 pw = (struct passwd *) getpwnam (o + 1);
1910 if (!pw)
1911 error ("\"%s\" isn't a registered user", o + 1);
1912
1913 newdir = (unsigned char *) pw->pw_dir;
1914
1915 /* Discard the user name from NM. */
1916 nm += len;
1917 }
1918
1919 if (nm[0] != '/'
1920 #ifdef VMS
1921 && !index (nm, ':')
1922 #endif /* not VMS */
1923 && !newdir)
1924 {
1925 if (NILP (defalt))
1926 defalt = current_buffer->directory;
1927 CHECK_STRING (defalt);
1928 newdir = SDATA (defalt);
1929 }
1930
1931 /* Now concatenate the directory and name to new space in the stack frame */
1932
1933 tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1;
1934 target = (unsigned char *) alloca (tlen);
1935 *target = 0;
1936
1937 if (newdir)
1938 {
1939 #ifndef VMS
1940 if (nm[0] == 0 || nm[0] == '/')
1941 strcpy (target, newdir);
1942 else
1943 #endif
1944 file_name_as_directory (target, newdir);
1945 }
1946
1947 strcat (target, nm);
1948 #ifdef VMS
1949 if (index (target, '/'))
1950 strcpy (target, sys_translate_unix (target));
1951 #endif /* VMS */
1952
1953 /* Now canonicalize by removing /. and /foo/.. if they appear */
1954
1955 p = target;
1956 o = target;
1957
1958 while (*p)
1959 {
1960 #ifdef VMS
1961 if (*p != ']' && *p != '>' && *p != '-')
1962 {
1963 if (*p == '\\')
1964 p++;
1965 *o++ = *p++;
1966 }
1967 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2)
1968 /* brackets are offset from each other by 2 */
1969 {
1970 p += 2;
1971 if (*p != '.' && *p != '-' && o[-1] != '.')
1972 /* convert [foo][bar] to [bar] */
1973 while (o[-1] != '[' && o[-1] != '<')
1974 o--;
1975 else if (*p == '-' && *o != '.')
1976 *--p = '.';
1977 }
1978 else if (p[0] == '-' && o[-1] == '.' &&
1979 (p[1] == '.' || p[1] == ']' || p[1] == '>'))
1980 /* flush .foo.- ; leave - if stopped by '[' or '<' */
1981 {
1982 do
1983 o--;
1984 while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<');
1985 if (p[1] == '.') /* foo.-.bar ==> bar. */
1986 p += 2;
1987 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */
1988 p++, o--;
1989 /* else [foo.-] ==> [-] */
1990 }
1991 else
1992 {
1993 #ifndef VMS4_4
1994 if (*p == '-' &&
1995 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' &&
1996 p[1] != ']' && p[1] != '>' && p[1] != '.')
1997 *p = '_';
1998 #endif /* VMS4_4 */
1999 *o++ = *p++;
2000 }
2001 #else /* not VMS */
2002 if (*p != '/')
2003 {
2004 *o++ = *p++;
2005 }
2006 else if (!strncmp (p, "//", 2)
2007 #ifdef APOLLO
2008 /* // at start of filename is meaningful in Apollo system. */
2009 && o != target
2010 #endif /* APOLLO */
2011 )
2012 {
2013 o = target;
2014 p++;
2015 }
2016 else if (p[0] == '/' && p[1] == '.' &&
2017 (p[2] == '/' || p[2] == 0))
2018 p += 2;
2019 else if (!strncmp (p, "/..", 3)
2020 /* `/../' is the "superroot" on certain file systems. */
2021 && o != target
2022 && (p[3] == '/' || p[3] == 0))
2023 {
2024 while (o != target && *--o != '/')
2025 ;
2026 #ifdef APOLLO
2027 if (o == target + 1 && o[-1] == '/' && o[0] == '/')
2028 ++o;
2029 else
2030 #endif /* APOLLO */
2031 if (o == target && *o == '/')
2032 ++o;
2033 p += 3;
2034 }
2035 else
2036 {
2037 *o++ = *p++;
2038 }
2039 #endif /* not VMS */
2040 }
2041
2042 return make_string (target, o - target);
2043 }
2044 #endif
2045 \f
2046 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name,
2047 Ssubstitute_in_file_name, 1, 1, 0,
2048 doc: /* Substitute environment variables referred to in FILENAME.
2049 `$FOO' where FOO is an environment variable name means to substitute
2050 the value of that variable. The variable name should be terminated
2051 with a character not a letter, digit or underscore; otherwise, enclose
2052 the entire variable name in braces.
2053 If `/~' appears, all of FILENAME through that `/' is discarded.
2054
2055 On VMS, `$' substitution is not done; this function does little and only
2056 duplicates what `expand-file-name' does. */)
2057 (filename)
2058 Lisp_Object filename;
2059 {
2060 unsigned char *nm;
2061
2062 register unsigned char *s, *p, *o, *x, *endp;
2063 unsigned char *target = NULL;
2064 int total = 0;
2065 int substituted = 0;
2066 unsigned char *xnm;
2067 struct passwd *pw;
2068 Lisp_Object handler;
2069
2070 CHECK_STRING (filename);
2071
2072 /* If the file name has special constructs in it,
2073 call the corresponding file handler. */
2074 handler = Ffind_file_name_handler (filename, Qsubstitute_in_file_name);
2075 if (!NILP (handler))
2076 return call2 (handler, Qsubstitute_in_file_name, filename);
2077
2078 nm = SDATA (filename);
2079 #ifdef DOS_NT
2080 nm = strcpy (alloca (strlen (nm) + 1), nm);
2081 CORRECT_DIR_SEPS (nm);
2082 substituted = (strcmp (nm, SDATA (filename)) != 0);
2083 #endif
2084 endp = nm + SBYTES (filename);
2085
2086 /* If /~ or // appears, discard everything through first slash. */
2087
2088 for (p = nm; p != endp; p++)
2089 {
2090 if ((p[0] == '~'
2091 #if defined (APOLLO) || defined (WINDOWSNT) || defined(CYGWIN)
2092 /* // at start of file name is meaningful in Apollo,
2093 WindowsNT and Cygwin systems. */
2094 || (IS_DIRECTORY_SEP (p[0]) && p - 1 != nm)
2095 #else /* not (APOLLO || WINDOWSNT || CYGWIN) */
2096 || IS_DIRECTORY_SEP (p[0])
2097 #endif /* not (APOLLO || WINDOWSNT || CYGWIN) */
2098 )
2099 && p != nm
2100 && (0
2101 #ifdef VMS
2102 || p[-1] == ':' || p[-1] == ']' || p[-1] == '>'
2103 #endif /* VMS */
2104 || IS_DIRECTORY_SEP (p[-1])))
2105 {
2106 for (s = p; *s && (!IS_DIRECTORY_SEP (*s)
2107 #ifdef VMS
2108 && *s != ':'
2109 #endif /* VMS */
2110 ); s++);
2111 if (p[0] == '~' && s > p + 1) /* we've got "/~something/" */
2112 {
2113 o = (unsigned char *) alloca (s - p + 1);
2114 bcopy ((char *) p, o, s - p);
2115 o [s - p] = 0;
2116
2117 pw = (struct passwd *) getpwnam (o + 1);
2118 }
2119 /* If we have ~/ or ~user and `user' exists, discard
2120 everything up to ~. But if `user' does not exist, leave
2121 ~user alone, it might be a literal file name. */
2122 if (IS_DIRECTORY_SEP (p[0]) || s == p + 1 || pw)
2123 {
2124 nm = p;
2125 substituted = 1;
2126 }
2127 }
2128 #ifdef DOS_NT
2129 /* see comment in expand-file-name about drive specifiers */
2130 else if (IS_DRIVE (p[0]) && p[1] == ':'
2131 && p > nm && IS_DIRECTORY_SEP (p[-1]))
2132 {
2133 nm = p;
2134 substituted = 1;
2135 }
2136 #endif /* DOS_NT */
2137 }
2138
2139 #ifdef VMS
2140 return make_specified_string (nm, -1, strlen (nm),
2141 STRING_MULTIBYTE (filename));
2142 #else
2143
2144 /* See if any variables are substituted into the string
2145 and find the total length of their values in `total' */
2146
2147 for (p = nm; p != endp;)
2148 if (*p != '$')
2149 p++;
2150 else
2151 {
2152 p++;
2153 if (p == endp)
2154 goto badsubst;
2155 else if (*p == '$')
2156 {
2157 /* "$$" means a single "$" */
2158 p++;
2159 total -= 1;
2160 substituted = 1;
2161 continue;
2162 }
2163 else if (*p == '{')
2164 {
2165 o = ++p;
2166 while (p != endp && *p != '}') p++;
2167 if (*p != '}') goto missingclose;
2168 s = p;
2169 }
2170 else
2171 {
2172 o = p;
2173 while (p != endp && (isalnum (*p) || *p == '_')) p++;
2174 s = p;
2175 }
2176
2177 /* Copy out the variable name */
2178 target = (unsigned char *) alloca (s - o + 1);
2179 strncpy (target, o, s - o);
2180 target[s - o] = 0;
2181 #ifdef DOS_NT
2182 strupr (target); /* $home == $HOME etc. */
2183 #endif /* DOS_NT */
2184
2185 /* Get variable value */
2186 o = (unsigned char *) egetenv (target);
2187 if (o)
2188 {
2189 total += strlen (o);
2190 substituted = 1;
2191 }
2192 else if (*p == '}')
2193 goto badvar;
2194 }
2195
2196 if (!substituted)
2197 return filename;
2198
2199 /* If substitution required, recopy the string and do it */
2200 /* Make space in stack frame for the new copy */
2201 xnm = (unsigned char *) alloca (SBYTES (filename) + total + 1);
2202 x = xnm;
2203
2204 /* Copy the rest of the name through, replacing $ constructs with values */
2205 for (p = nm; *p;)
2206 if (*p != '$')
2207 *x++ = *p++;
2208 else
2209 {
2210 p++;
2211 if (p == endp)
2212 goto badsubst;
2213 else if (*p == '$')
2214 {
2215 *x++ = *p++;
2216 continue;
2217 }
2218 else if (*p == '{')
2219 {
2220 o = ++p;
2221 while (p != endp && *p != '}') p++;
2222 if (*p != '}') goto missingclose;
2223 s = p++;
2224 }
2225 else
2226 {
2227 o = p;
2228 while (p != endp && (isalnum (*p) || *p == '_')) p++;
2229 s = p;
2230 }
2231
2232 /* Copy out the variable name */
2233 target = (unsigned char *) alloca (s - o + 1);
2234 strncpy (target, o, s - o);
2235 target[s - o] = 0;
2236 #ifdef DOS_NT
2237 strupr (target); /* $home == $HOME etc. */
2238 #endif /* DOS_NT */
2239
2240 /* Get variable value */
2241 o = (unsigned char *) egetenv (target);
2242 if (!o)
2243 {
2244 *x++ = '$';
2245 strcpy (x, target); x+= strlen (target);
2246 }
2247 else if (STRING_MULTIBYTE (filename))
2248 {
2249 /* If the original string is multibyte,
2250 convert what we substitute into multibyte. */
2251 while (*o)
2252 {
2253 int c = unibyte_char_to_multibyte (*o++);
2254 x += CHAR_STRING (c, x);
2255 }
2256 }
2257 else
2258 {
2259 strcpy (x, o);
2260 x += strlen (o);
2261 }
2262 }
2263
2264 *x = 0;
2265
2266 /* If /~ or // appears, discard everything through first slash. */
2267
2268 for (p = xnm; p != x; p++)
2269 if ((p[0] == '~'
2270 #if defined (APOLLO) || defined (WINDOWSNT) || defined(CYGWIN)
2271 || (IS_DIRECTORY_SEP (p[0]) && p - 1 != xnm)
2272 #else /* not (APOLLO || WINDOWSNT || CYGWIN) */
2273 || IS_DIRECTORY_SEP (p[0])
2274 #endif /* not (APOLLO || WINDOWSNT || CYGWIN) */
2275 )
2276 && p != xnm && IS_DIRECTORY_SEP (p[-1]))
2277 xnm = p;
2278 #ifdef DOS_NT
2279 else if (IS_DRIVE (p[0]) && p[1] == ':'
2280 && p > xnm && IS_DIRECTORY_SEP (p[-1]))
2281 xnm = p;
2282 #endif
2283
2284 return make_specified_string (xnm, -1, x - xnm, STRING_MULTIBYTE (filename));
2285
2286 badsubst:
2287 error ("Bad format environment-variable substitution");
2288 missingclose:
2289 error ("Missing \"}\" in environment-variable substitution");
2290 badvar:
2291 error ("Substituting nonexistent environment variable \"%s\"", target);
2292
2293 /* NOTREACHED */
2294 #endif /* not VMS */
2295 return Qnil;
2296 }
2297 \f
2298 /* A slightly faster and more convenient way to get
2299 (directory-file-name (expand-file-name FOO)). */
2300
2301 Lisp_Object
2302 expand_and_dir_to_file (filename, defdir)
2303 Lisp_Object filename, defdir;
2304 {
2305 register Lisp_Object absname;
2306
2307 absname = Fexpand_file_name (filename, defdir);
2308 #ifdef VMS
2309 {
2310 register int c = SREF (absname, SBYTES (absname) - 1);
2311 if (c == ':' || c == ']' || c == '>')
2312 absname = Fdirectory_file_name (absname);
2313 }
2314 #else
2315 /* Remove final slash, if any (unless this is the root dir).
2316 stat behaves differently depending! */
2317 if (SCHARS (absname) > 1
2318 && IS_DIRECTORY_SEP (SREF (absname, SBYTES (absname) - 1))
2319 && !IS_DEVICE_SEP (SREF (absname, SBYTES (absname)-2)))
2320 /* We cannot take shortcuts; they might be wrong for magic file names. */
2321 absname = Fdirectory_file_name (absname);
2322 #endif
2323 return absname;
2324 }
2325 \f
2326 /* Signal an error if the file ABSNAME already exists.
2327 If INTERACTIVE is nonzero, ask the user whether to proceed,
2328 and bypass the error if the user says to go ahead.
2329 QUERYSTRING is a name for the action that is being considered
2330 to alter the file.
2331
2332 *STATPTR is used to store the stat information if the file exists.
2333 If the file does not exist, STATPTR->st_mode is set to 0.
2334 If STATPTR is null, we don't store into it.
2335
2336 If QUICK is nonzero, we ask for y or n, not yes or no. */
2337
2338 void
2339 barf_or_query_if_file_exists (absname, querystring, interactive, statptr, quick)
2340 Lisp_Object absname;
2341 unsigned char *querystring;
2342 int interactive;
2343 struct stat *statptr;
2344 int quick;
2345 {
2346 register Lisp_Object tem, encoded_filename;
2347 struct stat statbuf;
2348 struct gcpro gcpro1;
2349
2350 encoded_filename = ENCODE_FILE (absname);
2351
2352 /* stat is a good way to tell whether the file exists,
2353 regardless of what access permissions it has. */
2354 if (lstat (SDATA (encoded_filename), &statbuf) >= 0)
2355 {
2356 if (! interactive)
2357 Fsignal (Qfile_already_exists,
2358 Fcons (build_string ("File already exists"),
2359 Fcons (absname, Qnil)));
2360 GCPRO1 (absname);
2361 tem = format2 ("File %s already exists; %s anyway? ",
2362 absname, build_string (querystring));
2363 if (quick)
2364 tem = Fy_or_n_p (tem);
2365 else
2366 tem = do_yes_or_no_p (tem);
2367 UNGCPRO;
2368 if (NILP (tem))
2369 Fsignal (Qfile_already_exists,
2370 Fcons (build_string ("File already exists"),
2371 Fcons (absname, Qnil)));
2372 if (statptr)
2373 *statptr = statbuf;
2374 }
2375 else
2376 {
2377 if (statptr)
2378 statptr->st_mode = 0;
2379 }
2380 return;
2381 }
2382
2383 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 4,
2384 "fCopy file: \nFCopy %s to file: \np\nP",
2385 doc: /* Copy FILE to NEWNAME. Both args must be strings.
2386 If NEWNAME names a directory, copy FILE there.
2387 Signals a `file-already-exists' error if file NEWNAME already exists,
2388 unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.
2389 A number as third arg means request confirmation if NEWNAME already exists.
2390 This is what happens in interactive use with M-x.
2391 Fourth arg KEEP-TIME non-nil means give the new file the same
2392 last-modified time as the old one. (This works on only some systems.)
2393 A prefix arg makes KEEP-TIME non-nil.
2394 Also set the file modes of the target file to match the source file. */)
2395 (file, newname, ok_if_already_exists, keep_time)
2396 Lisp_Object file, newname, ok_if_already_exists, keep_time;
2397 {
2398 int ifd, ofd, n;
2399 char buf[16 * 1024];
2400 struct stat st, out_st;
2401 Lisp_Object handler;
2402 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2403 int count = SPECPDL_INDEX ();
2404 int input_file_statable_p;
2405 Lisp_Object encoded_file, encoded_newname;
2406
2407 encoded_file = encoded_newname = Qnil;
2408 GCPRO4 (file, newname, encoded_file, encoded_newname);
2409 CHECK_STRING (file);
2410 CHECK_STRING (newname);
2411
2412 if (!NILP (Ffile_directory_p (newname)))
2413 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname);
2414 else
2415 newname = Fexpand_file_name (newname, Qnil);
2416
2417 file = Fexpand_file_name (file, Qnil);
2418
2419 /* If the input file name has special constructs in it,
2420 call the corresponding file handler. */
2421 handler = Ffind_file_name_handler (file, Qcopy_file);
2422 /* Likewise for output file name. */
2423 if (NILP (handler))
2424 handler = Ffind_file_name_handler (newname, Qcopy_file);
2425 if (!NILP (handler))
2426 RETURN_UNGCPRO (call5 (handler, Qcopy_file, file, newname,
2427 ok_if_already_exists, keep_time));
2428
2429 encoded_file = ENCODE_FILE (file);
2430 encoded_newname = ENCODE_FILE (newname);
2431
2432 if (NILP (ok_if_already_exists)
2433 || INTEGERP (ok_if_already_exists))
2434 barf_or_query_if_file_exists (encoded_newname, "copy to it",
2435 INTEGERP (ok_if_already_exists), &out_st, 0);
2436 else if (stat (SDATA (encoded_newname), &out_st) < 0)
2437 out_st.st_mode = 0;
2438
2439 #ifdef WINDOWSNT
2440 if (!CopyFile (SDATA (encoded_file),
2441 SDATA (encoded_newname),
2442 FALSE))
2443 report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil)));
2444 /* CopyFile retains the timestamp by default. */
2445 else if (NILP (keep_time))
2446 {
2447 EMACS_TIME now;
2448 DWORD attributes;
2449 char * filename;
2450
2451 EMACS_GET_TIME (now);
2452 filename = SDATA (encoded_newname);
2453
2454 /* Ensure file is writable while its modified time is set. */
2455 attributes = GetFileAttributes (filename);
2456 SetFileAttributes (filename, attributes & ~FILE_ATTRIBUTE_READONLY);
2457 if (set_file_times (filename, now, now))
2458 {
2459 /* Restore original attributes. */
2460 SetFileAttributes (filename, attributes);
2461 Fsignal (Qfile_date_error,
2462 Fcons (build_string ("Cannot set file date"),
2463 Fcons (newname, Qnil)));
2464 }
2465 /* Restore original attributes. */
2466 SetFileAttributes (filename, attributes);
2467 }
2468 #else /* not WINDOWSNT */
2469 immediate_quit = 1;
2470 ifd = emacs_open (SDATA (encoded_file), O_RDONLY, 0);
2471 immediate_quit = 0;
2472
2473 if (ifd < 0)
2474 report_file_error ("Opening input file", Fcons (file, Qnil));
2475
2476 record_unwind_protect (close_file_unwind, make_number (ifd));
2477
2478 /* We can only copy regular files and symbolic links. Other files are not
2479 copyable by us. */
2480 input_file_statable_p = (fstat (ifd, &st) >= 0);
2481
2482 #if !defined (DOS_NT) || __DJGPP__ > 1
2483 if (out_st.st_mode != 0
2484 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
2485 {
2486 errno = 0;
2487 report_file_error ("Input and output files are the same",
2488 Fcons (file, Fcons (newname, Qnil)));
2489 }
2490 #endif
2491
2492 #if defined (S_ISREG) && defined (S_ISLNK)
2493 if (input_file_statable_p)
2494 {
2495 if (!(S_ISREG (st.st_mode)) && !(S_ISLNK (st.st_mode)))
2496 {
2497 #if defined (EISDIR)
2498 /* Get a better looking error message. */
2499 errno = EISDIR;
2500 #endif /* EISDIR */
2501 report_file_error ("Non-regular file", Fcons (file, Qnil));
2502 }
2503 }
2504 #endif /* S_ISREG && S_ISLNK */
2505
2506 #ifdef VMS
2507 /* Create the copy file with the same record format as the input file */
2508 ofd = sys_creat (SDATA (encoded_newname), 0666, ifd);
2509 #else
2510 #ifdef MSDOS
2511 /* System's default file type was set to binary by _fmode in emacs.c. */
2512 ofd = creat (SDATA (encoded_newname), S_IREAD | S_IWRITE);
2513 #else /* not MSDOS */
2514 ofd = creat (SDATA (encoded_newname), 0666);
2515 #endif /* not MSDOS */
2516 #endif /* VMS */
2517 if (ofd < 0)
2518 report_file_error ("Opening output file", Fcons (newname, Qnil));
2519
2520 record_unwind_protect (close_file_unwind, make_number (ofd));
2521
2522 immediate_quit = 1;
2523 QUIT;
2524 while ((n = emacs_read (ifd, buf, sizeof buf)) > 0)
2525 if (emacs_write (ofd, buf, n) != n)
2526 report_file_error ("I/O error", Fcons (newname, Qnil));
2527 immediate_quit = 0;
2528
2529 /* Closing the output clobbers the file times on some systems. */
2530 if (emacs_close (ofd) < 0)
2531 report_file_error ("I/O error", Fcons (newname, Qnil));
2532
2533 if (input_file_statable_p)
2534 {
2535 if (!NILP (keep_time))
2536 {
2537 EMACS_TIME atime, mtime;
2538 EMACS_SET_SECS_USECS (atime, st.st_atime, 0);
2539 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0);
2540 if (set_file_times (SDATA (encoded_newname),
2541 atime, mtime))
2542 Fsignal (Qfile_date_error,
2543 Fcons (build_string ("Cannot set file date"),
2544 Fcons (newname, Qnil)));
2545 }
2546 #ifndef MSDOS
2547 chmod (SDATA (encoded_newname), st.st_mode & 07777);
2548 #else /* MSDOS */
2549 #if defined (__DJGPP__) && __DJGPP__ > 1
2550 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
2551 and if it can't, it tells so. Otherwise, under MSDOS we usually
2552 get only the READ bit, which will make the copied file read-only,
2553 so it's better not to chmod at all. */
2554 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0)
2555 chmod (SDATA (encoded_newname), st.st_mode & 07777);
2556 #endif /* DJGPP version 2 or newer */
2557 #endif /* MSDOS */
2558 }
2559
2560 emacs_close (ifd);
2561 #endif /* WINDOWSNT */
2562
2563 /* Discard the unwind protects. */
2564 specpdl_ptr = specpdl + count;
2565
2566 UNGCPRO;
2567 return Qnil;
2568 }
2569 \f
2570 DEFUN ("make-directory-internal", Fmake_directory_internal,
2571 Smake_directory_internal, 1, 1, 0,
2572 doc: /* Create a new directory named DIRECTORY. */)
2573 (directory)
2574 Lisp_Object directory;
2575 {
2576 const unsigned char *dir;
2577 Lisp_Object handler;
2578 Lisp_Object encoded_dir;
2579
2580 CHECK_STRING (directory);
2581 directory = Fexpand_file_name (directory, Qnil);
2582
2583 handler = Ffind_file_name_handler (directory, Qmake_directory_internal);
2584 if (!NILP (handler))
2585 return call2 (handler, Qmake_directory_internal, directory);
2586
2587 encoded_dir = ENCODE_FILE (directory);
2588
2589 dir = SDATA (encoded_dir);
2590
2591 #ifdef WINDOWSNT
2592 if (mkdir (dir) != 0)
2593 #else
2594 if (mkdir (dir, 0777) != 0)
2595 #endif
2596 report_file_error ("Creating directory", Flist (1, &directory));
2597
2598 return Qnil;
2599 }
2600
2601 DEFUN ("delete-directory", Fdelete_directory, Sdelete_directory, 1, 1, "FDelete directory: ",
2602 doc: /* Delete the directory named DIRECTORY. Does not follow symlinks. */)
2603 (directory)
2604 Lisp_Object directory;
2605 {
2606 const unsigned char *dir;
2607 Lisp_Object handler;
2608 Lisp_Object encoded_dir;
2609
2610 CHECK_STRING (directory);
2611 directory = Fdirectory_file_name (Fexpand_file_name (directory, Qnil));
2612
2613 handler = Ffind_file_name_handler (directory, Qdelete_directory);
2614 if (!NILP (handler))
2615 return call2 (handler, Qdelete_directory, directory);
2616
2617 encoded_dir = ENCODE_FILE (directory);
2618
2619 dir = SDATA (encoded_dir);
2620
2621 if (rmdir (dir) != 0)
2622 report_file_error ("Removing directory", Flist (1, &directory));
2623
2624 return Qnil;
2625 }
2626
2627 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 1, "fDelete file: ",
2628 doc: /* Delete file named FILENAME. If it is a symlink, remove the symlink.
2629 If file has multiple names, it continues to exist with the other names. */)
2630 (filename)
2631 Lisp_Object filename;
2632 {
2633 Lisp_Object handler;
2634 Lisp_Object encoded_file;
2635 struct gcpro gcpro1;
2636
2637 GCPRO1 (filename);
2638 if (!NILP (Ffile_directory_p (filename))
2639 && NILP (Ffile_symlink_p (filename)))
2640 Fsignal (Qfile_error,
2641 Fcons (build_string ("Removing old name: is a directory"),
2642 Fcons (filename, Qnil)));
2643 UNGCPRO;
2644 filename = Fexpand_file_name (filename, Qnil);
2645
2646 handler = Ffind_file_name_handler (filename, Qdelete_file);
2647 if (!NILP (handler))
2648 return call2 (handler, Qdelete_file, filename);
2649
2650 encoded_file = ENCODE_FILE (filename);
2651
2652 if (0 > unlink (SDATA (encoded_file)))
2653 report_file_error ("Removing old name", Flist (1, &filename));
2654 return Qnil;
2655 }
2656
2657 static Lisp_Object
2658 internal_delete_file_1 (ignore)
2659 Lisp_Object ignore;
2660 {
2661 return Qt;
2662 }
2663
2664 /* Delete file FILENAME, returning 1 if successful and 0 if failed. */
2665
2666 int
2667 internal_delete_file (filename)
2668 Lisp_Object filename;
2669 {
2670 return NILP (internal_condition_case_1 (Fdelete_file, filename,
2671 Qt, internal_delete_file_1));
2672 }
2673 \f
2674 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3,
2675 "fRename file: \nFRename %s to file: \np",
2676 doc: /* Rename FILE as NEWNAME. Both args strings.
2677 If file has names other than FILE, it continues to have those names.
2678 Signals a `file-already-exists' error if a file NEWNAME already exists
2679 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2680 A number as third arg means request confirmation if NEWNAME already exists.
2681 This is what happens in interactive use with M-x. */)
2682 (file, newname, ok_if_already_exists)
2683 Lisp_Object file, newname, ok_if_already_exists;
2684 {
2685 #ifdef NO_ARG_ARRAY
2686 Lisp_Object args[2];
2687 #endif
2688 Lisp_Object handler;
2689 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
2690 Lisp_Object encoded_file, encoded_newname, symlink_target;
2691
2692 symlink_target = encoded_file = encoded_newname = Qnil;
2693 GCPRO5 (file, newname, encoded_file, encoded_newname, symlink_target);
2694 CHECK_STRING (file);
2695 CHECK_STRING (newname);
2696 file = Fexpand_file_name (file, Qnil);
2697 newname = Fexpand_file_name (newname, Qnil);
2698
2699 /* If the file name has special constructs in it,
2700 call the corresponding file handler. */
2701 handler = Ffind_file_name_handler (file, Qrename_file);
2702 if (NILP (handler))
2703 handler = Ffind_file_name_handler (newname, Qrename_file);
2704 if (!NILP (handler))
2705 RETURN_UNGCPRO (call4 (handler, Qrename_file,
2706 file, newname, ok_if_already_exists));
2707
2708 encoded_file = ENCODE_FILE (file);
2709 encoded_newname = ENCODE_FILE (newname);
2710
2711 #ifdef DOS_NT
2712 /* If the file names are identical but for the case, don't ask for
2713 confirmation: they simply want to change the letter-case of the
2714 file name. */
2715 if (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname))))
2716 #endif
2717 if (NILP (ok_if_already_exists)
2718 || INTEGERP (ok_if_already_exists))
2719 barf_or_query_if_file_exists (encoded_newname, "rename to it",
2720 INTEGERP (ok_if_already_exists), 0, 0);
2721 #ifndef BSD4_1
2722 if (0 > rename (SDATA (encoded_file), SDATA (encoded_newname)))
2723 #else
2724 if (0 > link (SDATA (encoded_file), SDATA (encoded_newname))
2725 || 0 > unlink (SDATA (encoded_file)))
2726 #endif
2727 {
2728 if (errno == EXDEV)
2729 {
2730 #ifdef S_IFLNK
2731 symlink_target = Ffile_symlink_p (file);
2732 if (! NILP (symlink_target))
2733 Fmake_symbolic_link (symlink_target, newname,
2734 NILP (ok_if_already_exists) ? Qnil : Qt);
2735 else
2736 #endif
2737 Fcopy_file (file, newname,
2738 /* We have already prompted if it was an integer,
2739 so don't have copy-file prompt again. */
2740 NILP (ok_if_already_exists) ? Qnil : Qt, Qt);
2741 Fdelete_file (file);
2742 }
2743 else
2744 #ifdef NO_ARG_ARRAY
2745 {
2746 args[0] = file;
2747 args[1] = newname;
2748 report_file_error ("Renaming", Flist (2, args));
2749 }
2750 #else
2751 report_file_error ("Renaming", Flist (2, &file));
2752 #endif
2753 }
2754 UNGCPRO;
2755 return Qnil;
2756 }
2757
2758 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3,
2759 "fAdd name to file: \nFName to add to %s: \np",
2760 doc: /* Give FILE additional name NEWNAME. Both args strings.
2761 Signals a `file-already-exists' error if a file NEWNAME already exists
2762 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2763 A number as third arg means request confirmation if NEWNAME already exists.
2764 This is what happens in interactive use with M-x. */)
2765 (file, newname, ok_if_already_exists)
2766 Lisp_Object file, newname, ok_if_already_exists;
2767 {
2768 #ifdef NO_ARG_ARRAY
2769 Lisp_Object args[2];
2770 #endif
2771 Lisp_Object handler;
2772 Lisp_Object encoded_file, encoded_newname;
2773 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2774
2775 GCPRO4 (file, newname, encoded_file, encoded_newname);
2776 encoded_file = encoded_newname = Qnil;
2777 CHECK_STRING (file);
2778 CHECK_STRING (newname);
2779 file = Fexpand_file_name (file, Qnil);
2780 newname = Fexpand_file_name (newname, Qnil);
2781
2782 /* If the file name has special constructs in it,
2783 call the corresponding file handler. */
2784 handler = Ffind_file_name_handler (file, Qadd_name_to_file);
2785 if (!NILP (handler))
2786 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2787 newname, ok_if_already_exists));
2788
2789 /* If the new name has special constructs in it,
2790 call the corresponding file handler. */
2791 handler = Ffind_file_name_handler (newname, Qadd_name_to_file);
2792 if (!NILP (handler))
2793 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file,
2794 newname, ok_if_already_exists));
2795
2796 encoded_file = ENCODE_FILE (file);
2797 encoded_newname = ENCODE_FILE (newname);
2798
2799 if (NILP (ok_if_already_exists)
2800 || INTEGERP (ok_if_already_exists))
2801 barf_or_query_if_file_exists (encoded_newname, "make it a new name",
2802 INTEGERP (ok_if_already_exists), 0, 0);
2803
2804 unlink (SDATA (newname));
2805 if (0 > link (SDATA (encoded_file), SDATA (encoded_newname)))
2806 {
2807 #ifdef NO_ARG_ARRAY
2808 args[0] = file;
2809 args[1] = newname;
2810 report_file_error ("Adding new name", Flist (2, args));
2811 #else
2812 report_file_error ("Adding new name", Flist (2, &file));
2813 #endif
2814 }
2815
2816 UNGCPRO;
2817 return Qnil;
2818 }
2819
2820 #ifdef S_IFLNK
2821 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3,
2822 "FMake symbolic link to file: \nFMake symbolic link to file %s: \np",
2823 doc: /* Make a symbolic link to FILENAME, named LINKNAME. Both args strings.
2824 Signals a `file-already-exists' error if a file LINKNAME already exists
2825 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2826 A number as third arg means request confirmation if LINKNAME already exists.
2827 This happens for interactive use with M-x. */)
2828 (filename, linkname, ok_if_already_exists)
2829 Lisp_Object filename, linkname, ok_if_already_exists;
2830 {
2831 #ifdef NO_ARG_ARRAY
2832 Lisp_Object args[2];
2833 #endif
2834 Lisp_Object handler;
2835 Lisp_Object encoded_filename, encoded_linkname;
2836 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
2837
2838 GCPRO4 (filename, linkname, encoded_filename, encoded_linkname);
2839 encoded_filename = encoded_linkname = Qnil;
2840 CHECK_STRING (filename);
2841 CHECK_STRING (linkname);
2842 /* If the link target has a ~, we must expand it to get
2843 a truly valid file name. Otherwise, do not expand;
2844 we want to permit links to relative file names. */
2845 if (SREF (filename, 0) == '~')
2846 filename = Fexpand_file_name (filename, Qnil);
2847 linkname = Fexpand_file_name (linkname, Qnil);
2848
2849 /* If the file name has special constructs in it,
2850 call the corresponding file handler. */
2851 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link);
2852 if (!NILP (handler))
2853 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2854 linkname, ok_if_already_exists));
2855
2856 /* If the new link name has special constructs in it,
2857 call the corresponding file handler. */
2858 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link);
2859 if (!NILP (handler))
2860 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
2861 linkname, ok_if_already_exists));
2862
2863 encoded_filename = ENCODE_FILE (filename);
2864 encoded_linkname = ENCODE_FILE (linkname);
2865
2866 if (NILP (ok_if_already_exists)
2867 || INTEGERP (ok_if_already_exists))
2868 barf_or_query_if_file_exists (encoded_linkname, "make it a link",
2869 INTEGERP (ok_if_already_exists), 0, 0);
2870 if (0 > symlink (SDATA (encoded_filename),
2871 SDATA (encoded_linkname)))
2872 {
2873 /* If we didn't complain already, silently delete existing file. */
2874 if (errno == EEXIST)
2875 {
2876 unlink (SDATA (encoded_linkname));
2877 if (0 <= symlink (SDATA (encoded_filename),
2878 SDATA (encoded_linkname)))
2879 {
2880 UNGCPRO;
2881 return Qnil;
2882 }
2883 }
2884
2885 #ifdef NO_ARG_ARRAY
2886 args[0] = filename;
2887 args[1] = linkname;
2888 report_file_error ("Making symbolic link", Flist (2, args));
2889 #else
2890 report_file_error ("Making symbolic link", Flist (2, &filename));
2891 #endif
2892 }
2893 UNGCPRO;
2894 return Qnil;
2895 }
2896 #endif /* S_IFLNK */
2897
2898 #ifdef VMS
2899
2900 DEFUN ("define-logical-name", Fdefine_logical_name, Sdefine_logical_name,
2901 2, 2, "sDefine logical name: \nsDefine logical name %s as: ",
2902 doc: /* Define the job-wide logical name NAME to have the value STRING.
2903 If STRING is nil or a null string, the logical name NAME is deleted. */)
2904 (name, string)
2905 Lisp_Object name;
2906 Lisp_Object string;
2907 {
2908 CHECK_STRING (name);
2909 if (NILP (string))
2910 delete_logical_name (SDATA (name));
2911 else
2912 {
2913 CHECK_STRING (string);
2914
2915 if (SCHARS (string) == 0)
2916 delete_logical_name (SDATA (name));
2917 else
2918 define_logical_name (SDATA (name), SDATA (string));
2919 }
2920
2921 return string;
2922 }
2923 #endif /* VMS */
2924
2925 #ifdef HPUX_NET
2926
2927 DEFUN ("sysnetunam", Fsysnetunam, Ssysnetunam, 2, 2, 0,
2928 doc: /* Open a network connection to PATH using LOGIN as the login string. */)
2929 (path, login)
2930 Lisp_Object path, login;
2931 {
2932 int netresult;
2933
2934 CHECK_STRING (path);
2935 CHECK_STRING (login);
2936
2937 netresult = netunam (SDATA (path), SDATA (login));
2938
2939 if (netresult == -1)
2940 return Qnil;
2941 else
2942 return Qt;
2943 }
2944 #endif /* HPUX_NET */
2945 \f
2946 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p,
2947 1, 1, 0,
2948 doc: /* Return t if file FILENAME specifies an absolute file name.
2949 On Unix, this is a name starting with a `/' or a `~'. */)
2950 (filename)
2951 Lisp_Object filename;
2952 {
2953 const unsigned char *ptr;
2954
2955 CHECK_STRING (filename);
2956 ptr = SDATA (filename);
2957 if (IS_DIRECTORY_SEP (*ptr) || *ptr == '~'
2958 #ifdef VMS
2959 /* ??? This criterion is probably wrong for '<'. */
2960 || index (ptr, ':') || index (ptr, '<')
2961 || (*ptr == '[' && (ptr[1] != '-' || (ptr[2] != '.' && ptr[2] != ']'))
2962 && ptr[1] != '.')
2963 #endif /* VMS */
2964 #ifdef DOS_NT
2965 || (IS_DRIVE (*ptr) && ptr[1] == ':' && IS_DIRECTORY_SEP (ptr[2]))
2966 #endif
2967 )
2968 return Qt;
2969 else
2970 return Qnil;
2971 }
2972 \f
2973 /* Return nonzero if file FILENAME exists and can be executed. */
2974
2975 static int
2976 check_executable (filename)
2977 char *filename;
2978 {
2979 #ifdef DOS_NT
2980 int len = strlen (filename);
2981 char *suffix;
2982 struct stat st;
2983 if (stat (filename, &st) < 0)
2984 return 0;
2985 #if defined (WINDOWSNT) || (defined (MSDOS) && __DJGPP__ > 1)
2986 return ((st.st_mode & S_IEXEC) != 0);
2987 #else
2988 return (S_ISREG (st.st_mode)
2989 && len >= 5
2990 && (stricmp ((suffix = filename + len-4), ".com") == 0
2991 || stricmp (suffix, ".exe") == 0
2992 || stricmp (suffix, ".bat") == 0)
2993 || (st.st_mode & S_IFMT) == S_IFDIR);
2994 #endif /* not WINDOWSNT */
2995 #else /* not DOS_NT */
2996 #ifdef HAVE_EUIDACCESS
2997 return (euidaccess (filename, 1) >= 0);
2998 #else
2999 /* Access isn't quite right because it uses the real uid
3000 and we really want to test with the effective uid.
3001 But Unix doesn't give us a right way to do it. */
3002 return (access (filename, 1) >= 0);
3003 #endif
3004 #endif /* not DOS_NT */
3005 }
3006
3007 /* Return nonzero if file FILENAME exists and can be written. */
3008
3009 static int
3010 check_writable (filename)
3011 char *filename;
3012 {
3013 #ifdef MSDOS
3014 struct stat st;
3015 if (stat (filename, &st) < 0)
3016 return 0;
3017 return (st.st_mode & S_IWRITE || (st.st_mode & S_IFMT) == S_IFDIR);
3018 #else /* not MSDOS */
3019 #ifdef HAVE_EUIDACCESS
3020 return (euidaccess (filename, 2) >= 0);
3021 #else
3022 /* Access isn't quite right because it uses the real uid
3023 and we really want to test with the effective uid.
3024 But Unix doesn't give us a right way to do it.
3025 Opening with O_WRONLY could work for an ordinary file,
3026 but would lose for directories. */
3027 return (access (filename, 2) >= 0);
3028 #endif
3029 #endif /* not MSDOS */
3030 }
3031
3032 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0,
3033 doc: /* Return t if file FILENAME exists. (This does not mean you can read it.)
3034 See also `file-readable-p' and `file-attributes'. */)
3035 (filename)
3036 Lisp_Object filename;
3037 {
3038 Lisp_Object absname;
3039 Lisp_Object handler;
3040 struct stat statbuf;
3041
3042 CHECK_STRING (filename);
3043 absname = Fexpand_file_name (filename, Qnil);
3044
3045 /* If the file name has special constructs in it,
3046 call the corresponding file handler. */
3047 handler = Ffind_file_name_handler (absname, Qfile_exists_p);
3048 if (!NILP (handler))
3049 return call2 (handler, Qfile_exists_p, absname);
3050
3051 absname = ENCODE_FILE (absname);
3052
3053 return (stat (SDATA (absname), &statbuf) >= 0) ? Qt : Qnil;
3054 }
3055
3056 DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0,
3057 doc: /* Return t if FILENAME can be executed by you.
3058 For a directory, this means you can access files in that directory. */)
3059 (filename)
3060 Lisp_Object filename;
3061 {
3062 Lisp_Object absname;
3063 Lisp_Object handler;
3064
3065 CHECK_STRING (filename);
3066 absname = Fexpand_file_name (filename, Qnil);
3067
3068 /* If the file name has special constructs in it,
3069 call the corresponding file handler. */
3070 handler = Ffind_file_name_handler (absname, Qfile_executable_p);
3071 if (!NILP (handler))
3072 return call2 (handler, Qfile_executable_p, absname);
3073
3074 absname = ENCODE_FILE (absname);
3075
3076 return (check_executable (SDATA (absname)) ? Qt : Qnil);
3077 }
3078
3079 DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0,
3080 doc: /* Return t if file FILENAME exists and you can read it.
3081 See also `file-exists-p' and `file-attributes'. */)
3082 (filename)
3083 Lisp_Object filename;
3084 {
3085 Lisp_Object absname;
3086 Lisp_Object handler;
3087 int desc;
3088 int flags;
3089 struct stat statbuf;
3090
3091 CHECK_STRING (filename);
3092 absname = Fexpand_file_name (filename, Qnil);
3093
3094 /* If the file name has special constructs in it,
3095 call the corresponding file handler. */
3096 handler = Ffind_file_name_handler (absname, Qfile_readable_p);
3097 if (!NILP (handler))
3098 return call2 (handler, Qfile_readable_p, absname);
3099
3100 absname = ENCODE_FILE (absname);
3101
3102 #if defined(DOS_NT) || defined(macintosh)
3103 /* Under MS-DOS, Windows, and Macintosh, open does not work for
3104 directories. */
3105 if (access (SDATA (absname), 0) == 0)
3106 return Qt;
3107 return Qnil;
3108 #else /* not DOS_NT and not macintosh */
3109 flags = O_RDONLY;
3110 #if defined (S_ISFIFO) && defined (O_NONBLOCK)
3111 /* Opening a fifo without O_NONBLOCK can wait.
3112 We don't want to wait. But we don't want to mess wth O_NONBLOCK
3113 except in the case of a fifo, on a system which handles it. */
3114 desc = stat (SDATA (absname), &statbuf);
3115 if (desc < 0)
3116 return Qnil;
3117 if (S_ISFIFO (statbuf.st_mode))
3118 flags |= O_NONBLOCK;
3119 #endif
3120 desc = emacs_open (SDATA (absname), flags, 0);
3121 if (desc < 0)
3122 return Qnil;
3123 emacs_close (desc);
3124 return Qt;
3125 #endif /* not DOS_NT and not macintosh */
3126 }
3127
3128 /* Having this before file-symlink-p mysteriously caused it to be forgotten
3129 on the RT/PC. */
3130 DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0,
3131 doc: /* Return t if file FILENAME can be written or created by you. */)
3132 (filename)
3133 Lisp_Object filename;
3134 {
3135 Lisp_Object absname, dir, encoded;
3136 Lisp_Object handler;
3137 struct stat statbuf;
3138
3139 CHECK_STRING (filename);
3140 absname = Fexpand_file_name (filename, Qnil);
3141
3142 /* If the file name has special constructs in it,
3143 call the corresponding file handler. */
3144 handler = Ffind_file_name_handler (absname, Qfile_writable_p);
3145 if (!NILP (handler))
3146 return call2 (handler, Qfile_writable_p, absname);
3147
3148 encoded = ENCODE_FILE (absname);
3149 if (stat (SDATA (encoded), &statbuf) >= 0)
3150 return (check_writable (SDATA (encoded))
3151 ? Qt : Qnil);
3152
3153 dir = Ffile_name_directory (absname);
3154 #ifdef VMS
3155 if (!NILP (dir))
3156 dir = Fdirectory_file_name (dir);
3157 #endif /* VMS */
3158 #ifdef MSDOS
3159 if (!NILP (dir))
3160 dir = Fdirectory_file_name (dir);
3161 #endif /* MSDOS */
3162
3163 dir = ENCODE_FILE (dir);
3164 #ifdef WINDOWSNT
3165 /* The read-only attribute of the parent directory doesn't affect
3166 whether a file or directory can be created within it. Some day we
3167 should check ACLs though, which do affect this. */
3168 if (stat (SDATA (dir), &statbuf) < 0)
3169 return Qnil;
3170 return (statbuf.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil;
3171 #else
3172 return (check_writable (!NILP (dir) ? (char *) SDATA (dir) : "")
3173 ? Qt : Qnil);
3174 #endif
3175 }
3176 \f
3177 DEFUN ("access-file", Faccess_file, Saccess_file, 2, 2, 0,
3178 doc: /* Access file FILENAME, and get an error if that does not work.
3179 The second argument STRING is used in the error message.
3180 If there is no error, we return nil. */)
3181 (filename, string)
3182 Lisp_Object filename, string;
3183 {
3184 Lisp_Object handler, encoded_filename, absname;
3185 int fd;
3186
3187 CHECK_STRING (filename);
3188 absname = Fexpand_file_name (filename, Qnil);
3189
3190 CHECK_STRING (string);
3191
3192 /* If the file name has special constructs in it,
3193 call the corresponding file handler. */
3194 handler = Ffind_file_name_handler (absname, Qaccess_file);
3195 if (!NILP (handler))
3196 return call3 (handler, Qaccess_file, absname, string);
3197
3198 encoded_filename = ENCODE_FILE (absname);
3199
3200 fd = emacs_open (SDATA (encoded_filename), O_RDONLY, 0);
3201 if (fd < 0)
3202 report_file_error (SDATA (string), Fcons (filename, Qnil));
3203 emacs_close (fd);
3204
3205 return Qnil;
3206 }
3207 \f
3208 DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0,
3209 doc: /* Return non-nil if file FILENAME is the name of a symbolic link.
3210 The value is the link target, as a string.
3211 Otherwise returns nil. */)
3212 (filename)
3213 Lisp_Object filename;
3214 {
3215 Lisp_Object handler;
3216
3217 CHECK_STRING (filename);
3218 filename = Fexpand_file_name (filename, Qnil);
3219
3220 /* If the file name has special constructs in it,
3221 call the corresponding file handler. */
3222 handler = Ffind_file_name_handler (filename, Qfile_symlink_p);
3223 if (!NILP (handler))
3224 return call2 (handler, Qfile_symlink_p, filename);
3225
3226 #ifdef S_IFLNK
3227 {
3228 char *buf;
3229 int bufsize;
3230 int valsize;
3231 Lisp_Object val;
3232
3233 filename = ENCODE_FILE (filename);
3234
3235 bufsize = 50;
3236 buf = NULL;
3237 do
3238 {
3239 bufsize *= 2;
3240 buf = (char *) xrealloc (buf, bufsize);
3241 bzero (buf, bufsize);
3242
3243 errno = 0;
3244 valsize = readlink (SDATA (filename), buf, bufsize);
3245 if (valsize == -1)
3246 {
3247 #ifdef ERANGE
3248 /* HP-UX reports ERANGE if buffer is too small. */
3249 if (errno == ERANGE)
3250 valsize = bufsize;
3251 else
3252 #endif
3253 {
3254 xfree (buf);
3255 return Qnil;
3256 }
3257 }
3258 }
3259 while (valsize >= bufsize);
3260
3261 val = make_string (buf, valsize);
3262 if (buf[0] == '/' && index (buf, ':'))
3263 val = concat2 (build_string ("/:"), val);
3264 xfree (buf);
3265 val = DECODE_FILE (val);
3266 return val;
3267 }
3268 #else /* not S_IFLNK */
3269 return Qnil;
3270 #endif /* not S_IFLNK */
3271 }
3272
3273 DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0,
3274 doc: /* Return t if FILENAME names an existing directory.
3275 Symbolic links to directories count as directories.
3276 See `file-symlink-p' to distinguish symlinks. */)
3277 (filename)
3278 Lisp_Object filename;
3279 {
3280 register Lisp_Object absname;
3281 struct stat st;
3282 Lisp_Object handler;
3283
3284 absname = expand_and_dir_to_file (filename, current_buffer->directory);
3285
3286 /* If the file name has special constructs in it,
3287 call the corresponding file handler. */
3288 handler = Ffind_file_name_handler (absname, Qfile_directory_p);
3289 if (!NILP (handler))
3290 return call2 (handler, Qfile_directory_p, absname);
3291
3292 absname = ENCODE_FILE (absname);
3293
3294 if (stat (SDATA (absname), &st) < 0)
3295 return Qnil;
3296 return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil;
3297 }
3298
3299 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p, Sfile_accessible_directory_p, 1, 1, 0,
3300 doc: /* Return t if file FILENAME names a directory you can open.
3301 For the value to be t, FILENAME must specify the name of a directory as a file,
3302 and the directory must allow you to open files in it. In order to use a
3303 directory as a buffer's current directory, this predicate must return true.
3304 A directory name spec may be given instead; then the value is t
3305 if the directory so specified exists and really is a readable and
3306 searchable directory. */)
3307 (filename)
3308 Lisp_Object filename;
3309 {
3310 Lisp_Object handler;
3311 int tem;
3312 struct gcpro gcpro1;
3313
3314 /* If the file name has special constructs in it,
3315 call the corresponding file handler. */
3316 handler = Ffind_file_name_handler (filename, Qfile_accessible_directory_p);
3317 if (!NILP (handler))
3318 return call2 (handler, Qfile_accessible_directory_p, filename);
3319
3320 GCPRO1 (filename);
3321 tem = (NILP (Ffile_directory_p (filename))
3322 || NILP (Ffile_executable_p (filename)));
3323 UNGCPRO;
3324 return tem ? Qnil : Qt;
3325 }
3326
3327 DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0,
3328 doc: /* Return t if file FILENAME is the name of a regular file.
3329 This is the sort of file that holds an ordinary stream of data bytes. */)
3330 (filename)
3331 Lisp_Object filename;
3332 {
3333 register Lisp_Object absname;
3334 struct stat st;
3335 Lisp_Object handler;
3336
3337 absname = expand_and_dir_to_file (filename, current_buffer->directory);
3338
3339 /* If the file name has special constructs in it,
3340 call the corresponding file handler. */
3341 handler = Ffind_file_name_handler (absname, Qfile_regular_p);
3342 if (!NILP (handler))
3343 return call2 (handler, Qfile_regular_p, absname);
3344
3345 absname = ENCODE_FILE (absname);
3346
3347 #ifdef WINDOWSNT
3348 {
3349 int result;
3350 Lisp_Object tem = Vw32_get_true_file_attributes;
3351
3352 /* Tell stat to use expensive method to get accurate info. */
3353 Vw32_get_true_file_attributes = Qt;
3354 result = stat (SDATA (absname), &st);
3355 Vw32_get_true_file_attributes = tem;
3356
3357 if (result < 0)
3358 return Qnil;
3359 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil;
3360 }
3361 #else
3362 if (stat (SDATA (absname), &st) < 0)
3363 return Qnil;
3364 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil;
3365 #endif
3366 }
3367 \f
3368 DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0,
3369 doc: /* Return mode bits of file named FILENAME, as an integer. */)
3370 (filename)
3371 Lisp_Object filename;
3372 {
3373 Lisp_Object absname;
3374 struct stat st;
3375 Lisp_Object handler;
3376
3377 absname = expand_and_dir_to_file (filename, current_buffer->directory);
3378
3379 /* If the file name has special constructs in it,
3380 call the corresponding file handler. */
3381 handler = Ffind_file_name_handler (absname, Qfile_modes);
3382 if (!NILP (handler))
3383 return call2 (handler, Qfile_modes, absname);
3384
3385 absname = ENCODE_FILE (absname);
3386
3387 if (stat (SDATA (absname), &st) < 0)
3388 return Qnil;
3389 #if defined (MSDOS) && __DJGPP__ < 2
3390 if (check_executable (SDATA (absname)))
3391 st.st_mode |= S_IEXEC;
3392 #endif /* MSDOS && __DJGPP__ < 2 */
3393
3394 return make_number (st.st_mode & 07777);
3395 }
3396
3397 DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2, 0,
3398 doc: /* Set mode bits of file named FILENAME to MODE (an integer).
3399 Only the 12 low bits of MODE are used. */)
3400 (filename, mode)
3401 Lisp_Object filename, mode;
3402 {
3403 Lisp_Object absname, encoded_absname;
3404 Lisp_Object handler;
3405
3406 absname = Fexpand_file_name (filename, current_buffer->directory);
3407 CHECK_NUMBER (mode);
3408
3409 /* If the file name has special constructs in it,
3410 call the corresponding file handler. */
3411 handler = Ffind_file_name_handler (absname, Qset_file_modes);
3412 if (!NILP (handler))
3413 return call3 (handler, Qset_file_modes, absname, mode);
3414
3415 encoded_absname = ENCODE_FILE (absname);
3416
3417 if (chmod (SDATA (encoded_absname), XINT (mode)) < 0)
3418 report_file_error ("Doing chmod", Fcons (absname, Qnil));
3419
3420 return Qnil;
3421 }
3422
3423 DEFUN ("set-default-file-modes", Fset_default_file_modes, Sset_default_file_modes, 1, 1, 0,
3424 doc: /* Set the file permission bits for newly created files.
3425 The argument MODE should be an integer; only the low 9 bits are used.
3426 This setting is inherited by subprocesses. */)
3427 (mode)
3428 Lisp_Object mode;
3429 {
3430 CHECK_NUMBER (mode);
3431
3432 umask ((~ XINT (mode)) & 0777);
3433
3434 return Qnil;
3435 }
3436
3437 DEFUN ("default-file-modes", Fdefault_file_modes, Sdefault_file_modes, 0, 0, 0,
3438 doc: /* Return the default file protection for created files.
3439 The value is an integer. */)
3440 ()
3441 {
3442 int realmask;
3443 Lisp_Object value;
3444
3445 realmask = umask (0);
3446 umask (realmask);
3447
3448 XSETINT (value, (~ realmask) & 0777);
3449 return value;
3450 }
3451 \f
3452 extern int lisp_time_argument P_ ((Lisp_Object, time_t *, int *));
3453
3454 DEFUN ("set-file-times", Fset_file_times, Sset_file_times, 1, 2, 0,
3455 doc: /* Set times of file FILENAME to TIME.
3456 Set both access and modification times.
3457 Return t on success, else nil.
3458 Use the current time if TIME is nil. TIME is in the format of
3459 `current-time'. */)
3460 (filename, time)
3461 Lisp_Object filename, time;
3462 {
3463 Lisp_Object absname, encoded_absname;
3464 Lisp_Object handler;
3465 time_t sec;
3466 int usec;
3467
3468 if (! lisp_time_argument (time, &sec, &usec))
3469 error ("Invalid time specification");
3470
3471 absname = Fexpand_file_name (filename, current_buffer->directory);
3472
3473 /* If the file name has special constructs in it,
3474 call the corresponding file handler. */
3475 handler = Ffind_file_name_handler (absname, Qset_file_times);
3476 if (!NILP (handler))
3477 return call3 (handler, Qset_file_times, absname, time);
3478
3479 encoded_absname = ENCODE_FILE (absname);
3480
3481 {
3482 EMACS_TIME t;
3483
3484 EMACS_SET_SECS (t, sec);
3485 EMACS_SET_USECS (t, usec);
3486
3487 if (set_file_times (SDATA (encoded_absname), t, t))
3488 {
3489 #ifdef DOS_NT
3490 struct stat st;
3491
3492 /* Setting times on a directory always fails. */
3493 if (stat (SDATA (encoded_absname), &st) == 0
3494 && (st.st_mode & S_IFMT) == S_IFDIR)
3495 return Qnil;
3496 #endif
3497 report_file_error ("Setting file times", Fcons (absname, Qnil));
3498 return Qnil;
3499 }
3500 }
3501
3502 return Qt;
3503 }
3504 \f
3505 #ifdef __NetBSD__
3506 #define unix 42
3507 #endif
3508
3509 #ifdef unix
3510 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
3511 doc: /* Tell Unix to finish all pending disk updates. */)
3512 ()
3513 {
3514 sync ();
3515 return Qnil;
3516 }
3517
3518 #endif /* unix */
3519
3520 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
3521 doc: /* Return t if file FILE1 is newer than file FILE2.
3522 If FILE1 does not exist, the answer is nil;
3523 otherwise, if FILE2 does not exist, the answer is t. */)
3524 (file1, file2)
3525 Lisp_Object file1, file2;
3526 {
3527 Lisp_Object absname1, absname2;
3528 struct stat st;
3529 int mtime1;
3530 Lisp_Object handler;
3531 struct gcpro gcpro1, gcpro2;
3532
3533 CHECK_STRING (file1);
3534 CHECK_STRING (file2);
3535
3536 absname1 = Qnil;
3537 GCPRO2 (absname1, file2);
3538 absname1 = expand_and_dir_to_file (file1, current_buffer->directory);
3539 absname2 = expand_and_dir_to_file (file2, current_buffer->directory);
3540 UNGCPRO;
3541
3542 /* If the file name has special constructs in it,
3543 call the corresponding file handler. */
3544 handler = Ffind_file_name_handler (absname1, Qfile_newer_than_file_p);
3545 if (NILP (handler))
3546 handler = Ffind_file_name_handler (absname2, Qfile_newer_than_file_p);
3547 if (!NILP (handler))
3548 return call3 (handler, Qfile_newer_than_file_p, absname1, absname2);
3549
3550 GCPRO2 (absname1, absname2);
3551 absname1 = ENCODE_FILE (absname1);
3552 absname2 = ENCODE_FILE (absname2);
3553 UNGCPRO;
3554
3555 if (stat (SDATA (absname1), &st) < 0)
3556 return Qnil;
3557
3558 mtime1 = st.st_mtime;
3559
3560 if (stat (SDATA (absname2), &st) < 0)
3561 return Qt;
3562
3563 return (mtime1 > st.st_mtime) ? Qt : Qnil;
3564 }
3565 \f
3566 #ifdef DOS_NT
3567 Lisp_Object Qfind_buffer_file_type;
3568 #endif /* DOS_NT */
3569
3570 #ifndef READ_BUF_SIZE
3571 #define READ_BUF_SIZE (64 << 10)
3572 #endif
3573
3574 extern void adjust_markers_for_delete P_ ((int, int, int, int));
3575
3576 /* This function is called after Lisp functions to decide a coding
3577 system are called, or when they cause an error. Before they are
3578 called, the current buffer is set unibyte and it contains only a
3579 newly inserted text (thus the buffer was empty before the
3580 insertion).
3581
3582 The functions may set markers, overlays, text properties, or even
3583 alter the buffer contents, change the current buffer.
3584
3585 Here, we reset all those changes by:
3586 o set back the current buffer.
3587 o move all markers and overlays to BEG.
3588 o remove all text properties.
3589 o set back the buffer multibyteness. */
3590
3591 static Lisp_Object
3592 decide_coding_unwind (unwind_data)
3593 Lisp_Object unwind_data;
3594 {
3595 Lisp_Object multibyte, undo_list, buffer;
3596
3597 multibyte = XCAR (unwind_data);
3598 unwind_data = XCDR (unwind_data);
3599 undo_list = XCAR (unwind_data);
3600 buffer = XCDR (unwind_data);
3601
3602 if (current_buffer != XBUFFER (buffer))
3603 set_buffer_internal (XBUFFER (buffer));
3604 adjust_markers_for_delete (BEG, BEG_BYTE, Z, Z_BYTE);
3605 adjust_overlays_for_delete (BEG, Z - BEG);
3606 BUF_INTERVALS (current_buffer) = 0;
3607 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3608
3609 /* Now we are safe to change the buffer's multibyteness directly. */
3610 current_buffer->enable_multibyte_characters = multibyte;
3611 current_buffer->undo_list = undo_list;
3612
3613 return Qnil;
3614 }
3615
3616
3617 /* Used to pass values from insert-file-contents to read_non_regular. */
3618
3619 static int non_regular_fd;
3620 static int non_regular_inserted;
3621 static int non_regular_nbytes;
3622
3623
3624 /* Read from a non-regular file.
3625 Read non_regular_trytry bytes max from non_regular_fd.
3626 Non_regular_inserted specifies where to put the read bytes.
3627 Value is the number of bytes read. */
3628
3629 static Lisp_Object
3630 read_non_regular ()
3631 {
3632 int nbytes;
3633
3634 immediate_quit = 1;
3635 QUIT;
3636 nbytes = emacs_read (non_regular_fd,
3637 BEG_ADDR + PT_BYTE - BEG_BYTE + non_regular_inserted,
3638 non_regular_nbytes);
3639 immediate_quit = 0;
3640 return make_number (nbytes);
3641 }
3642
3643
3644 /* Condition-case handler used when reading from non-regular files
3645 in insert-file-contents. */
3646
3647 static Lisp_Object
3648 read_non_regular_quit ()
3649 {
3650 return Qnil;
3651 }
3652
3653
3654 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents,
3655 1, 5, 0,
3656 doc: /* Insert contents of file FILENAME after point.
3657 Returns list of absolute file name and number of characters inserted.
3658 If second argument VISIT is non-nil, the buffer's visited filename
3659 and last save file modtime are set, and it is marked unmodified.
3660 If visiting and the file does not exist, visiting is completed
3661 before the error is signaled.
3662 The optional third and fourth arguments BEG and END
3663 specify what portion of the file to insert.
3664 These arguments count bytes in the file, not characters in the buffer.
3665 If VISIT is non-nil, BEG and END must be nil.
3666
3667 If optional fifth argument REPLACE is non-nil,
3668 it means replace the current buffer contents (in the accessible portion)
3669 with the file contents. This is better than simply deleting and inserting
3670 the whole thing because (1) it preserves some marker positions
3671 and (2) it puts less data in the undo list.
3672 When REPLACE is non-nil, the value is the number of characters actually read,
3673 which is often less than the number of characters to be read.
3674
3675 This does code conversion according to the value of
3676 `coding-system-for-read' or `file-coding-system-alist',
3677 and sets the variable `last-coding-system-used' to the coding system
3678 actually used. */)
3679 (filename, visit, beg, end, replace)
3680 Lisp_Object filename, visit, beg, end, replace;
3681 {
3682 struct stat st;
3683 register int fd;
3684 int inserted = 0;
3685 register int how_much;
3686 register int unprocessed;
3687 int count = SPECPDL_INDEX ();
3688 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
3689 Lisp_Object handler, val, insval, orig_filename;
3690 Lisp_Object p;
3691 int total = 0;
3692 int not_regular = 0;
3693 unsigned char read_buf[READ_BUF_SIZE];
3694 struct coding_system coding;
3695 unsigned char buffer[1 << 14];
3696 int replace_handled = 0;
3697 int set_coding_system = 0;
3698 int coding_system_decided = 0;
3699 int read_quit = 0;
3700
3701 if (current_buffer->base_buffer && ! NILP (visit))
3702 error ("Cannot do file visiting in an indirect buffer");
3703
3704 if (!NILP (current_buffer->read_only))
3705 Fbarf_if_buffer_read_only ();
3706
3707 val = Qnil;
3708 p = Qnil;
3709 orig_filename = Qnil;
3710
3711 GCPRO4 (filename, val, p, orig_filename);
3712
3713 CHECK_STRING (filename);
3714 filename = Fexpand_file_name (filename, Qnil);
3715
3716 /* If the file name has special constructs in it,
3717 call the corresponding file handler. */
3718 handler = Ffind_file_name_handler (filename, Qinsert_file_contents);
3719 if (!NILP (handler))
3720 {
3721 val = call6 (handler, Qinsert_file_contents, filename,
3722 visit, beg, end, replace);
3723 if (CONSP (val) && CONSP (XCDR (val)))
3724 inserted = XINT (XCAR (XCDR (val)));
3725 goto handled;
3726 }
3727
3728 orig_filename = filename;
3729 filename = ENCODE_FILE (filename);
3730
3731 fd = -1;
3732
3733 #ifdef WINDOWSNT
3734 {
3735 Lisp_Object tem = Vw32_get_true_file_attributes;
3736
3737 /* Tell stat to use expensive method to get accurate info. */
3738 Vw32_get_true_file_attributes = Qt;
3739 total = stat (SDATA (filename), &st);
3740 Vw32_get_true_file_attributes = tem;
3741 }
3742 if (total < 0)
3743 #else
3744 #ifndef APOLLO
3745 if (stat (SDATA (filename), &st) < 0)
3746 #else
3747 if ((fd = emacs_open (SDATA (filename), O_RDONLY, 0)) < 0
3748 || fstat (fd, &st) < 0)
3749 #endif /* not APOLLO */
3750 #endif /* WINDOWSNT */
3751 {
3752 if (fd >= 0) emacs_close (fd);
3753 badopen:
3754 if (NILP (visit))
3755 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
3756 st.st_mtime = -1;
3757 how_much = 0;
3758 if (!NILP (Vcoding_system_for_read))
3759 Fset (Qbuffer_file_coding_system, Vcoding_system_for_read);
3760 goto notfound;
3761 }
3762
3763 #ifdef S_IFREG
3764 /* This code will need to be changed in order to work on named
3765 pipes, and it's probably just not worth it. So we should at
3766 least signal an error. */
3767 if (!S_ISREG (st.st_mode))
3768 {
3769 not_regular = 1;
3770
3771 if (! NILP (visit))
3772 goto notfound;
3773
3774 if (! NILP (replace) || ! NILP (beg) || ! NILP (end))
3775 Fsignal (Qfile_error,
3776 Fcons (build_string ("not a regular file"),
3777 Fcons (orig_filename, Qnil)));
3778 }
3779 #endif
3780
3781 if (fd < 0)
3782 if ((fd = emacs_open (SDATA (filename), O_RDONLY, 0)) < 0)
3783 goto badopen;
3784
3785 /* Replacement should preserve point as it preserves markers. */
3786 if (!NILP (replace))
3787 record_unwind_protect (restore_point_unwind, Fpoint_marker ());
3788
3789 record_unwind_protect (close_file_unwind, make_number (fd));
3790
3791 /* Supposedly happens on VMS. */
3792 /* Can happen on any platform that uses long as type of off_t, but allows
3793 file sizes to exceed 2Gb. VMS is no longer officially supported, so
3794 give a message suitable for the latter case. */
3795 if (! not_regular && st.st_size < 0)
3796 error ("Maximum buffer size exceeded");
3797
3798 /* Prevent redisplay optimizations. */
3799 current_buffer->clip_changed = 1;
3800
3801 if (!NILP (visit))
3802 {
3803 if (!NILP (beg) || !NILP (end))
3804 error ("Attempt to visit less than an entire file");
3805 if (BEG < Z && NILP (replace))
3806 error ("Cannot do file visiting in a non-empty buffer");
3807 }
3808
3809 if (!NILP (beg))
3810 CHECK_NUMBER (beg);
3811 else
3812 XSETFASTINT (beg, 0);
3813
3814 if (!NILP (end))
3815 CHECK_NUMBER (end);
3816 else
3817 {
3818 if (! not_regular)
3819 {
3820 XSETINT (end, st.st_size);
3821
3822 /* Arithmetic overflow can occur if an Emacs integer cannot
3823 represent the file size, or if the calculations below
3824 overflow. The calculations below double the file size
3825 twice, so check that it can be multiplied by 4 safely. */
3826 if (XINT (end) != st.st_size
3827 || ((int) st.st_size * 4) / 4 != st.st_size)
3828 error ("Maximum buffer size exceeded");
3829
3830 /* The file size returned from stat may be zero, but data
3831 may be readable nonetheless, for example when this is a
3832 file in the /proc filesystem. */
3833 if (st.st_size == 0)
3834 XSETINT (end, READ_BUF_SIZE);
3835 }
3836 }
3837
3838 if (EQ (Vcoding_system_for_read, Qauto_save_coding))
3839 {
3840 /* We use emacs-mule for auto saving... */
3841 setup_coding_system (Qemacs_mule, &coding);
3842 /* ... but with the special flag to indicate to read in a
3843 multibyte sequence for eight-bit-control char as is. */
3844 coding.flags = 1;
3845 coding.src_multibyte = 0;
3846 coding.dst_multibyte
3847 = !NILP (current_buffer->enable_multibyte_characters);
3848 coding.eol_type = CODING_EOL_LF;
3849 coding_system_decided = 1;
3850 }
3851 else if (BEG < Z)
3852 {
3853 /* Decide the coding system to use for reading the file now
3854 because we can't use an optimized method for handling
3855 `coding:' tag if the current buffer is not empty. */
3856 Lisp_Object val;
3857 val = Qnil;
3858
3859 if (!NILP (Vcoding_system_for_read))
3860 val = Vcoding_system_for_read;
3861 else if (! NILP (replace))
3862 /* In REPLACE mode, we can use the same coding system
3863 that was used to visit the file. */
3864 val = current_buffer->buffer_file_coding_system;
3865 else
3866 {
3867 /* Don't try looking inside a file for a coding system
3868 specification if it is not seekable. */
3869 if (! not_regular && ! NILP (Vset_auto_coding_function))
3870 {
3871 /* Find a coding system specified in the heading two
3872 lines or in the tailing several lines of the file.
3873 We assume that the 1K-byte and 3K-byte for heading
3874 and tailing respectively are sufficient for this
3875 purpose. */
3876 int nread;
3877
3878 if (st.st_size <= (1024 * 4))
3879 nread = emacs_read (fd, read_buf, 1024 * 4);
3880 else
3881 {
3882 nread = emacs_read (fd, read_buf, 1024);
3883 if (nread >= 0)
3884 {
3885 if (lseek (fd, st.st_size - (1024 * 3), 0) < 0)
3886 report_file_error ("Setting file position",
3887 Fcons (orig_filename, Qnil));
3888 nread += emacs_read (fd, read_buf + nread, 1024 * 3);
3889 }
3890 }
3891
3892 if (nread < 0)
3893 error ("IO error reading %s: %s",
3894 SDATA (orig_filename), emacs_strerror (errno));
3895 else if (nread > 0)
3896 {
3897 struct buffer *prev = current_buffer;
3898 Lisp_Object buffer;
3899 struct buffer *buf;
3900
3901 record_unwind_protect (Fset_buffer, Fcurrent_buffer ());
3902
3903 buffer = Fget_buffer_create (build_string (" *code-converting-work*"));
3904 buf = XBUFFER (buffer);
3905
3906 delete_all_overlays (buf);
3907 buf->directory = current_buffer->directory;
3908 buf->read_only = Qnil;
3909 buf->filename = Qnil;
3910 buf->undo_list = Qt;
3911 eassert (buf->overlays_before == NULL);
3912 eassert (buf->overlays_after == NULL);
3913
3914 set_buffer_internal (buf);
3915 Ferase_buffer ();
3916 buf->enable_multibyte_characters = Qnil;
3917
3918 insert_1_both (read_buf, nread, nread, 0, 0, 0);
3919 TEMP_SET_PT_BOTH (BEG, BEG_BYTE);
3920 val = call2 (Vset_auto_coding_function,
3921 filename, make_number (nread));
3922 set_buffer_internal (prev);
3923
3924 /* Discard the unwind protect for recovering the
3925 current buffer. */
3926 specpdl_ptr--;
3927
3928 /* Rewind the file for the actual read done later. */
3929 if (lseek (fd, 0, 0) < 0)
3930 report_file_error ("Setting file position",
3931 Fcons (orig_filename, Qnil));
3932 }
3933 }
3934
3935 if (NILP (val))
3936 {
3937 /* If we have not yet decided a coding system, check
3938 file-coding-system-alist. */
3939 Lisp_Object args[6], coding_systems;
3940
3941 args[0] = Qinsert_file_contents, args[1] = orig_filename;
3942 args[2] = visit, args[3] = beg, args[4] = end, args[5] = replace;
3943 coding_systems = Ffind_operation_coding_system (6, args);
3944 if (CONSP (coding_systems))
3945 val = XCAR (coding_systems);
3946 }
3947 }
3948
3949 setup_coding_system (Fcheck_coding_system (val), &coding);
3950 /* Ensure we set Vlast_coding_system_used. */
3951 set_coding_system = 1;
3952
3953 if (NILP (current_buffer->enable_multibyte_characters)
3954 && ! NILP (val))
3955 /* We must suppress all character code conversion except for
3956 end-of-line conversion. */
3957 setup_raw_text_coding_system (&coding);
3958
3959 coding.src_multibyte = 0;
3960 coding.dst_multibyte
3961 = !NILP (current_buffer->enable_multibyte_characters);
3962 coding_system_decided = 1;
3963 }
3964
3965 /* If requested, replace the accessible part of the buffer
3966 with the file contents. Avoid replacing text at the
3967 beginning or end of the buffer that matches the file contents;
3968 that preserves markers pointing to the unchanged parts.
3969
3970 Here we implement this feature in an optimized way
3971 for the case where code conversion is NOT needed.
3972 The following if-statement handles the case of conversion
3973 in a less optimal way.
3974
3975 If the code conversion is "automatic" then we try using this
3976 method and hope for the best.
3977 But if we discover the need for conversion, we give up on this method
3978 and let the following if-statement handle the replace job. */
3979 if (!NILP (replace)
3980 && BEGV < ZV
3981 && !(coding.common_flags & CODING_REQUIRE_DECODING_MASK))
3982 {
3983 /* same_at_start and same_at_end count bytes,
3984 because file access counts bytes
3985 and BEG and END count bytes. */
3986 int same_at_start = BEGV_BYTE;
3987 int same_at_end = ZV_BYTE;
3988 int overlap;
3989 /* There is still a possibility we will find the need to do code
3990 conversion. If that happens, we set this variable to 1 to
3991 give up on handling REPLACE in the optimized way. */
3992 int giveup_match_end = 0;
3993
3994 if (XINT (beg) != 0)
3995 {
3996 if (lseek (fd, XINT (beg), 0) < 0)
3997 report_file_error ("Setting file position",
3998 Fcons (orig_filename, Qnil));
3999 }
4000
4001 immediate_quit = 1;
4002 QUIT;
4003 /* Count how many chars at the start of the file
4004 match the text at the beginning of the buffer. */
4005 while (1)
4006 {
4007 int nread, bufpos;
4008
4009 nread = emacs_read (fd, buffer, sizeof buffer);
4010 if (nread < 0)
4011 error ("IO error reading %s: %s",
4012 SDATA (orig_filename), emacs_strerror (errno));
4013 else if (nread == 0)
4014 break;
4015
4016 if (coding.type == coding_type_undecided)
4017 detect_coding (&coding, buffer, nread);
4018 if (coding.common_flags & CODING_REQUIRE_DECODING_MASK)
4019 /* We found that the file should be decoded somehow.
4020 Let's give up here. */
4021 {
4022 giveup_match_end = 1;
4023 break;
4024 }
4025
4026 if (coding.eol_type == CODING_EOL_UNDECIDED)
4027 detect_eol (&coding, buffer, nread);
4028 if (coding.eol_type != CODING_EOL_UNDECIDED
4029 && coding.eol_type != CODING_EOL_LF)
4030 /* We found that the format of eol should be decoded.
4031 Let's give up here. */
4032 {
4033 giveup_match_end = 1;
4034 break;
4035 }
4036
4037 bufpos = 0;
4038 while (bufpos < nread && same_at_start < ZV_BYTE
4039 && FETCH_BYTE (same_at_start) == buffer[bufpos])
4040 same_at_start++, bufpos++;
4041 /* If we found a discrepancy, stop the scan.
4042 Otherwise loop around and scan the next bufferful. */
4043 if (bufpos != nread)
4044 break;
4045 }
4046 immediate_quit = 0;
4047 /* If the file matches the buffer completely,
4048 there's no need to replace anything. */
4049 if (same_at_start - BEGV_BYTE == XINT (end))
4050 {
4051 emacs_close (fd);
4052 specpdl_ptr--;
4053 /* Truncate the buffer to the size of the file. */
4054 del_range_1 (same_at_start, same_at_end, 0, 0);
4055 goto handled;
4056 }
4057 immediate_quit = 1;
4058 QUIT;
4059 /* Count how many chars at the end of the file
4060 match the text at the end of the buffer. But, if we have
4061 already found that decoding is necessary, don't waste time. */
4062 while (!giveup_match_end)
4063 {
4064 int total_read, nread, bufpos, curpos, trial;
4065
4066 /* At what file position are we now scanning? */
4067 curpos = XINT (end) - (ZV_BYTE - same_at_end);
4068 /* If the entire file matches the buffer tail, stop the scan. */
4069 if (curpos == 0)
4070 break;
4071 /* How much can we scan in the next step? */
4072 trial = min (curpos, sizeof buffer);
4073 if (lseek (fd, curpos - trial, 0) < 0)
4074 report_file_error ("Setting file position",
4075 Fcons (orig_filename, Qnil));
4076
4077 total_read = nread = 0;
4078 while (total_read < trial)
4079 {
4080 nread = emacs_read (fd, buffer + total_read, trial - total_read);
4081 if (nread < 0)
4082 error ("IO error reading %s: %s",
4083 SDATA (orig_filename), emacs_strerror (errno));
4084 else if (nread == 0)
4085 break;
4086 total_read += nread;
4087 }
4088
4089 /* Scan this bufferful from the end, comparing with
4090 the Emacs buffer. */
4091 bufpos = total_read;
4092
4093 /* Compare with same_at_start to avoid counting some buffer text
4094 as matching both at the file's beginning and at the end. */
4095 while (bufpos > 0 && same_at_end > same_at_start
4096 && FETCH_BYTE (same_at_end - 1) == buffer[bufpos - 1])
4097 same_at_end--, bufpos--;
4098
4099 /* If we found a discrepancy, stop the scan.
4100 Otherwise loop around and scan the preceding bufferful. */
4101 if (bufpos != 0)
4102 {
4103 /* If this discrepancy is because of code conversion,
4104 we cannot use this method; giveup and try the other. */
4105 if (same_at_end > same_at_start
4106 && FETCH_BYTE (same_at_end - 1) >= 0200
4107 && ! NILP (current_buffer->enable_multibyte_characters)
4108 && (CODING_MAY_REQUIRE_DECODING (&coding)))
4109 giveup_match_end = 1;
4110 break;
4111 }
4112
4113 if (nread == 0)
4114 break;
4115 }
4116 immediate_quit = 0;
4117
4118 if (! giveup_match_end)
4119 {
4120 int temp;
4121
4122 /* We win! We can handle REPLACE the optimized way. */
4123
4124 /* Extend the start of non-matching text area to multibyte
4125 character boundary. */
4126 if (! NILP (current_buffer->enable_multibyte_characters))
4127 while (same_at_start > BEGV_BYTE
4128 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
4129 same_at_start--;
4130
4131 /* Extend the end of non-matching text area to multibyte
4132 character boundary. */
4133 if (! NILP (current_buffer->enable_multibyte_characters))
4134 while (same_at_end < ZV_BYTE
4135 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
4136 same_at_end++;
4137
4138 /* Don't try to reuse the same piece of text twice. */
4139 overlap = (same_at_start - BEGV_BYTE
4140 - (same_at_end + st.st_size - ZV));
4141 if (overlap > 0)
4142 same_at_end += overlap;
4143
4144 /* Arrange to read only the nonmatching middle part of the file. */
4145 XSETFASTINT (beg, XINT (beg) + (same_at_start - BEGV_BYTE));
4146 XSETFASTINT (end, XINT (end) - (ZV_BYTE - same_at_end));
4147
4148 del_range_byte (same_at_start, same_at_end, 0);
4149 /* Insert from the file at the proper position. */
4150 temp = BYTE_TO_CHAR (same_at_start);
4151 SET_PT_BOTH (temp, same_at_start);
4152
4153 /* If display currently starts at beginning of line,
4154 keep it that way. */
4155 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
4156 XWINDOW (selected_window)->start_at_line_beg = Fbolp ();
4157
4158 replace_handled = 1;
4159 }
4160 }
4161
4162 /* If requested, replace the accessible part of the buffer
4163 with the file contents. Avoid replacing text at the
4164 beginning or end of the buffer that matches the file contents;
4165 that preserves markers pointing to the unchanged parts.
4166
4167 Here we implement this feature for the case where code conversion
4168 is needed, in a simple way that needs a lot of memory.
4169 The preceding if-statement handles the case of no conversion
4170 in a more optimized way. */
4171 if (!NILP (replace) && ! replace_handled && BEGV < ZV)
4172 {
4173 int same_at_start = BEGV_BYTE;
4174 int same_at_end = ZV_BYTE;
4175 int overlap;
4176 int bufpos;
4177 /* Make sure that the gap is large enough. */
4178 int bufsize = 2 * st.st_size;
4179 unsigned char *conversion_buffer = (unsigned char *) xmalloc (bufsize);
4180 int temp;
4181
4182 /* First read the whole file, performing code conversion into
4183 CONVERSION_BUFFER. */
4184
4185 if (lseek (fd, XINT (beg), 0) < 0)
4186 {
4187 xfree (conversion_buffer);
4188 report_file_error ("Setting file position",
4189 Fcons (orig_filename, Qnil));
4190 }
4191
4192 total = st.st_size; /* Total bytes in the file. */
4193 how_much = 0; /* Bytes read from file so far. */
4194 inserted = 0; /* Bytes put into CONVERSION_BUFFER so far. */
4195 unprocessed = 0; /* Bytes not processed in previous loop. */
4196
4197 while (how_much < total)
4198 {
4199 /* try is reserved in some compilers (Microsoft C) */
4200 int trytry = min (total - how_much, READ_BUF_SIZE - unprocessed);
4201 unsigned char *destination = read_buf + unprocessed;
4202 int this;
4203
4204 /* Allow quitting out of the actual I/O. */
4205 immediate_quit = 1;
4206 QUIT;
4207 this = emacs_read (fd, destination, trytry);
4208 immediate_quit = 0;
4209
4210 if (this < 0 || this + unprocessed == 0)
4211 {
4212 how_much = this;
4213 break;
4214 }
4215
4216 how_much += this;
4217
4218 if (CODING_MAY_REQUIRE_DECODING (&coding))
4219 {
4220 int require, result;
4221
4222 this += unprocessed;
4223
4224 /* If we are using more space than estimated,
4225 make CONVERSION_BUFFER bigger. */
4226 require = decoding_buffer_size (&coding, this);
4227 if (inserted + require + 2 * (total - how_much) > bufsize)
4228 {
4229 bufsize = inserted + require + 2 * (total - how_much);
4230 conversion_buffer = (unsigned char *) xrealloc (conversion_buffer, bufsize);
4231 }
4232
4233 /* Convert this batch with results in CONVERSION_BUFFER. */
4234 if (how_much >= total) /* This is the last block. */
4235 coding.mode |= CODING_MODE_LAST_BLOCK;
4236 if (coding.composing != COMPOSITION_DISABLED)
4237 coding_allocate_composition_data (&coding, BEGV);
4238 result = decode_coding (&coding, read_buf,
4239 conversion_buffer + inserted,
4240 this, bufsize - inserted);
4241
4242 /* Save for next iteration whatever we didn't convert. */
4243 unprocessed = this - coding.consumed;
4244 bcopy (read_buf + coding.consumed, read_buf, unprocessed);
4245 if (!NILP (current_buffer->enable_multibyte_characters))
4246 this = coding.produced;
4247 else
4248 this = str_as_unibyte (conversion_buffer + inserted,
4249 coding.produced);
4250 }
4251
4252 inserted += this;
4253 }
4254
4255 /* At this point, INSERTED is how many characters (i.e. bytes)
4256 are present in CONVERSION_BUFFER.
4257 HOW_MUCH should equal TOTAL,
4258 or should be <= 0 if we couldn't read the file. */
4259
4260 if (how_much < 0)
4261 {
4262 xfree (conversion_buffer);
4263
4264 if (how_much == -1)
4265 error ("IO error reading %s: %s",
4266 SDATA (orig_filename), emacs_strerror (errno));
4267 else if (how_much == -2)
4268 error ("maximum buffer size exceeded");
4269 }
4270
4271 /* Compare the beginning of the converted file
4272 with the buffer text. */
4273
4274 bufpos = 0;
4275 while (bufpos < inserted && same_at_start < same_at_end
4276 && FETCH_BYTE (same_at_start) == conversion_buffer[bufpos])
4277 same_at_start++, bufpos++;
4278
4279 /* If the file matches the buffer completely,
4280 there's no need to replace anything. */
4281
4282 if (bufpos == inserted)
4283 {
4284 xfree (conversion_buffer);
4285 emacs_close (fd);
4286 specpdl_ptr--;
4287 /* Truncate the buffer to the size of the file. */
4288 del_range_byte (same_at_start, same_at_end, 0);
4289 inserted = 0;
4290 goto handled;
4291 }
4292
4293 /* Extend the start of non-matching text area to multibyte
4294 character boundary. */
4295 if (! NILP (current_buffer->enable_multibyte_characters))
4296 while (same_at_start > BEGV_BYTE
4297 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start)))
4298 same_at_start--;
4299
4300 /* Scan this bufferful from the end, comparing with
4301 the Emacs buffer. */
4302 bufpos = inserted;
4303
4304 /* Compare with same_at_start to avoid counting some buffer text
4305 as matching both at the file's beginning and at the end. */
4306 while (bufpos > 0 && same_at_end > same_at_start
4307 && FETCH_BYTE (same_at_end - 1) == conversion_buffer[bufpos - 1])
4308 same_at_end--, bufpos--;
4309
4310 /* Extend the end of non-matching text area to multibyte
4311 character boundary. */
4312 if (! NILP (current_buffer->enable_multibyte_characters))
4313 while (same_at_end < ZV_BYTE
4314 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end)))
4315 same_at_end++;
4316
4317 /* Don't try to reuse the same piece of text twice. */
4318 overlap = same_at_start - BEGV_BYTE - (same_at_end + inserted - ZV_BYTE);
4319 if (overlap > 0)
4320 same_at_end += overlap;
4321
4322 /* If display currently starts at beginning of line,
4323 keep it that way. */
4324 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer)
4325 XWINDOW (selected_window)->start_at_line_beg = Fbolp ();
4326
4327 /* Replace the chars that we need to replace,
4328 and update INSERTED to equal the number of bytes
4329 we are taking from the file. */
4330 inserted -= (Z_BYTE - same_at_end) + (same_at_start - BEG_BYTE);
4331
4332 if (same_at_end != same_at_start)
4333 {
4334 del_range_byte (same_at_start, same_at_end, 0);
4335 temp = GPT;
4336 same_at_start = GPT_BYTE;
4337 }
4338 else
4339 {
4340 temp = BYTE_TO_CHAR (same_at_start);
4341 }
4342 /* Insert from the file at the proper position. */
4343 SET_PT_BOTH (temp, same_at_start);
4344 insert_1 (conversion_buffer + same_at_start - BEG_BYTE, inserted,
4345 0, 0, 0);
4346 if (coding.cmp_data && coding.cmp_data->used)
4347 coding_restore_composition (&coding, Fcurrent_buffer ());
4348 coding_free_composition_data (&coding);
4349
4350 /* Set `inserted' to the number of inserted characters. */
4351 inserted = PT - temp;
4352
4353 xfree (conversion_buffer);
4354 emacs_close (fd);
4355 specpdl_ptr--;
4356
4357 goto handled;
4358 }
4359
4360 if (! not_regular)
4361 {
4362 register Lisp_Object temp;
4363
4364 total = XINT (end) - XINT (beg);
4365
4366 /* Make sure point-max won't overflow after this insertion. */
4367 XSETINT (temp, total);
4368 if (total != XINT (temp))
4369 error ("Maximum buffer size exceeded");
4370 }
4371 else
4372 /* For a special file, all we can do is guess. */
4373 total = READ_BUF_SIZE;
4374
4375 if (NILP (visit) && total > 0)
4376 prepare_to_modify_buffer (PT, PT, NULL);
4377
4378 move_gap (PT);
4379 if (GAP_SIZE < total)
4380 make_gap (total - GAP_SIZE);
4381
4382 if (XINT (beg) != 0 || !NILP (replace))
4383 {
4384 if (lseek (fd, XINT (beg), 0) < 0)
4385 report_file_error ("Setting file position",
4386 Fcons (orig_filename, Qnil));
4387 }
4388
4389 /* In the following loop, HOW_MUCH contains the total bytes read so
4390 far for a regular file, and not changed for a special file. But,
4391 before exiting the loop, it is set to a negative value if I/O
4392 error occurs. */
4393 how_much = 0;
4394
4395 /* Total bytes inserted. */
4396 inserted = 0;
4397
4398 /* Here, we don't do code conversion in the loop. It is done by
4399 code_convert_region after all data are read into the buffer. */
4400 {
4401 int gap_size = GAP_SIZE;
4402
4403 while (how_much < total)
4404 {
4405 /* try is reserved in some compilers (Microsoft C) */
4406 int trytry = min (total - how_much, READ_BUF_SIZE);
4407 int this;
4408
4409 if (not_regular)
4410 {
4411 Lisp_Object val;
4412
4413 /* Maybe make more room. */
4414 if (gap_size < trytry)
4415 {
4416 make_gap (total - gap_size);
4417 gap_size = GAP_SIZE;
4418 }
4419
4420 /* Read from the file, capturing `quit'. When an
4421 error occurs, end the loop, and arrange for a quit
4422 to be signaled after decoding the text we read. */
4423 non_regular_fd = fd;
4424 non_regular_inserted = inserted;
4425 non_regular_nbytes = trytry;
4426 val = internal_condition_case_1 (read_non_regular, Qnil, Qerror,
4427 read_non_regular_quit);
4428 if (NILP (val))
4429 {
4430 read_quit = 1;
4431 break;
4432 }
4433
4434 this = XINT (val);
4435 }
4436 else
4437 {
4438 /* Allow quitting out of the actual I/O. We don't make text
4439 part of the buffer until all the reading is done, so a C-g
4440 here doesn't do any harm. */
4441 immediate_quit = 1;
4442 QUIT;
4443 this = emacs_read (fd, BEG_ADDR + PT_BYTE - BEG_BYTE + inserted, trytry);
4444 immediate_quit = 0;
4445 }
4446
4447 if (this <= 0)
4448 {
4449 how_much = this;
4450 break;
4451 }
4452
4453 gap_size -= this;
4454
4455 /* For a regular file, where TOTAL is the real size,
4456 count HOW_MUCH to compare with it.
4457 For a special file, where TOTAL is just a buffer size,
4458 so don't bother counting in HOW_MUCH.
4459 (INSERTED is where we count the number of characters inserted.) */
4460 if (! not_regular)
4461 how_much += this;
4462 inserted += this;
4463 }
4464 }
4465
4466 /* Make the text read part of the buffer. */
4467 GAP_SIZE -= inserted;
4468 GPT += inserted;
4469 GPT_BYTE += inserted;
4470 ZV += inserted;
4471 ZV_BYTE += inserted;
4472 Z += inserted;
4473 Z_BYTE += inserted;
4474
4475 if (GAP_SIZE > 0)
4476 /* Put an anchor to ensure multi-byte form ends at gap. */
4477 *GPT_ADDR = 0;
4478
4479 emacs_close (fd);
4480
4481 /* Discard the unwind protect for closing the file. */
4482 specpdl_ptr--;
4483
4484 if (how_much < 0)
4485 error ("IO error reading %s: %s",
4486 SDATA (orig_filename), emacs_strerror (errno));
4487
4488 notfound:
4489
4490 if (! coding_system_decided)
4491 {
4492 /* The coding system is not yet decided. Decide it by an
4493 optimized method for handling `coding:' tag.
4494
4495 Note that we can get here only if the buffer was empty
4496 before the insertion. */
4497 Lisp_Object val;
4498 val = Qnil;
4499
4500 if (!NILP (Vcoding_system_for_read))
4501 val = Vcoding_system_for_read;
4502 else
4503 {
4504 /* Since we are sure that the current buffer was empty
4505 before the insertion, we can toggle
4506 enable-multibyte-characters directly here without taking
4507 care of marker adjustment and byte combining problem. By
4508 this way, we can run Lisp program safely before decoding
4509 the inserted text. */
4510 Lisp_Object unwind_data;
4511 int count = SPECPDL_INDEX ();
4512
4513 unwind_data = Fcons (current_buffer->enable_multibyte_characters,
4514 Fcons (current_buffer->undo_list,
4515 Fcurrent_buffer ()));
4516 current_buffer->enable_multibyte_characters = Qnil;
4517 current_buffer->undo_list = Qt;
4518 record_unwind_protect (decide_coding_unwind, unwind_data);
4519
4520 if (inserted > 0 && ! NILP (Vset_auto_coding_function))
4521 {
4522 val = call2 (Vset_auto_coding_function,
4523 filename, make_number (inserted));
4524 }
4525
4526 if (NILP (val))
4527 {
4528 /* If the coding system is not yet decided, check
4529 file-coding-system-alist. */
4530 Lisp_Object args[6], coding_systems;
4531
4532 args[0] = Qinsert_file_contents, args[1] = orig_filename;
4533 args[2] = visit, args[3] = beg, args[4] = end, args[5] = Qnil;
4534 coding_systems = Ffind_operation_coding_system (6, args);
4535 if (CONSP (coding_systems))
4536 val = XCAR (coding_systems);
4537 }
4538
4539 unbind_to (count, Qnil);
4540 inserted = Z_BYTE - BEG_BYTE;
4541 }
4542
4543 /* The following kludgy code is to avoid some compiler bug.
4544 We can't simply do
4545 setup_coding_system (val, &coding);
4546 on some system. */
4547 {
4548 struct coding_system temp_coding;
4549 setup_coding_system (val, &temp_coding);
4550 bcopy (&temp_coding, &coding, sizeof coding);
4551 }
4552 /* Ensure we set Vlast_coding_system_used. */
4553 set_coding_system = 1;
4554
4555 if (NILP (current_buffer->enable_multibyte_characters)
4556 && ! NILP (val))
4557 /* We must suppress all character code conversion except for
4558 end-of-line conversion. */
4559 setup_raw_text_coding_system (&coding);
4560 coding.src_multibyte = 0;
4561 coding.dst_multibyte
4562 = !NILP (current_buffer->enable_multibyte_characters);
4563 }
4564
4565 if (!NILP (visit)
4566 /* Can't do this if part of the buffer might be preserved. */
4567 && NILP (replace)
4568 && (coding.type == coding_type_no_conversion
4569 || coding.type == coding_type_raw_text))
4570 {
4571 /* Visiting a file with these coding system makes the buffer
4572 unibyte. */
4573 current_buffer->enable_multibyte_characters = Qnil;
4574 coding.dst_multibyte = 0;
4575 }
4576
4577 if (inserted > 0 || coding.type == coding_type_ccl)
4578 {
4579 if (CODING_MAY_REQUIRE_DECODING (&coding))
4580 {
4581 code_convert_region (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted,
4582 &coding, 0, 0);
4583 inserted = coding.produced_char;
4584 }
4585 else
4586 adjust_after_insert (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted,
4587 inserted);
4588 }
4589
4590 /* Now INSERTED is measured in characters. */
4591
4592 #ifdef DOS_NT
4593 /* Use the conversion type to determine buffer-file-type
4594 (find-buffer-file-type is now used to help determine the
4595 conversion). */
4596 if ((coding.eol_type == CODING_EOL_UNDECIDED
4597 || coding.eol_type == CODING_EOL_LF)
4598 && ! CODING_REQUIRE_DECODING (&coding))
4599 current_buffer->buffer_file_type = Qt;
4600 else
4601 current_buffer->buffer_file_type = Qnil;
4602 #endif
4603
4604 handled:
4605
4606 if (!NILP (visit))
4607 {
4608 if (!EQ (current_buffer->undo_list, Qt))
4609 current_buffer->undo_list = Qnil;
4610 #ifdef APOLLO
4611 stat (SDATA (filename), &st);
4612 #endif
4613
4614 if (NILP (handler))
4615 {
4616 current_buffer->modtime = st.st_mtime;
4617 current_buffer->filename = orig_filename;
4618 }
4619
4620 SAVE_MODIFF = MODIFF;
4621 current_buffer->auto_save_modified = MODIFF;
4622 XSETFASTINT (current_buffer->save_length, Z - BEG);
4623 #ifdef CLASH_DETECTION
4624 if (NILP (handler))
4625 {
4626 if (!NILP (current_buffer->file_truename))
4627 unlock_file (current_buffer->file_truename);
4628 unlock_file (filename);
4629 }
4630 #endif /* CLASH_DETECTION */
4631 if (not_regular)
4632 Fsignal (Qfile_error,
4633 Fcons (build_string ("not a regular file"),
4634 Fcons (orig_filename, Qnil)));
4635 }
4636
4637 if (set_coding_system)
4638 Vlast_coding_system_used = coding.symbol;
4639
4640 if (! NILP (Ffboundp (Qafter_insert_file_set_coding)))
4641 {
4642 insval = call1 (Qafter_insert_file_set_coding, make_number (inserted));
4643 if (! NILP (insval))
4644 {
4645 CHECK_NUMBER (insval);
4646 inserted = XFASTINT (insval);
4647 }
4648 }
4649
4650 /* Decode file format */
4651 if (inserted > 0)
4652 {
4653 int empty_undo_list_p = 0;
4654
4655 /* If we're anyway going to discard undo information, don't
4656 record it in the first place. The buffer's undo list at this
4657 point is either nil or t when visiting a file. */
4658 if (!NILP (visit))
4659 {
4660 empty_undo_list_p = NILP (current_buffer->undo_list);
4661 current_buffer->undo_list = Qt;
4662 }
4663
4664 insval = call3 (Qformat_decode,
4665 Qnil, make_number (inserted), visit);
4666 CHECK_NUMBER (insval);
4667 inserted = XFASTINT (insval);
4668
4669 if (!NILP (visit))
4670 current_buffer->undo_list = empty_undo_list_p ? Qnil : Qt;
4671 }
4672
4673 /* Call after-change hooks for the inserted text, aside from the case
4674 of normal visiting (not with REPLACE), which is done in a new buffer
4675 "before" the buffer is changed. */
4676 if (inserted > 0 && total > 0
4677 && (NILP (visit) || !NILP (replace)))
4678 {
4679 signal_after_change (PT, 0, inserted);
4680 update_compositions (PT, PT, CHECK_BORDER);
4681 }
4682
4683 p = Vafter_insert_file_functions;
4684 while (CONSP (p))
4685 {
4686 insval = call1 (XCAR (p), make_number (inserted));
4687 if (!NILP (insval))
4688 {
4689 CHECK_NUMBER (insval);
4690 inserted = XFASTINT (insval);
4691 }
4692 QUIT;
4693 p = XCDR (p);
4694 }
4695
4696 if (!NILP (visit)
4697 && current_buffer->modtime == -1)
4698 {
4699 /* If visiting nonexistent file, return nil. */
4700 report_file_error ("Opening input file", Fcons (orig_filename, Qnil));
4701 }
4702
4703 if (read_quit)
4704 Fsignal (Qquit, Qnil);
4705
4706 /* ??? Retval needs to be dealt with in all cases consistently. */
4707 if (NILP (val))
4708 val = Fcons (orig_filename,
4709 Fcons (make_number (inserted),
4710 Qnil));
4711
4712 RETURN_UNGCPRO (unbind_to (count, val));
4713 }
4714 \f
4715 static Lisp_Object build_annotations P_ ((Lisp_Object, Lisp_Object));
4716 static Lisp_Object build_annotations_2 P_ ((Lisp_Object, Lisp_Object,
4717 Lisp_Object, Lisp_Object));
4718
4719 /* If build_annotations switched buffers, switch back to BUF.
4720 Kill the temporary buffer that was selected in the meantime.
4721
4722 Since this kill only the last temporary buffer, some buffers remain
4723 not killed if build_annotations switched buffers more than once.
4724 -- K.Handa */
4725
4726 static Lisp_Object
4727 build_annotations_unwind (buf)
4728 Lisp_Object buf;
4729 {
4730 Lisp_Object tembuf;
4731
4732 if (XBUFFER (buf) == current_buffer)
4733 return Qnil;
4734 tembuf = Fcurrent_buffer ();
4735 Fset_buffer (buf);
4736 Fkill_buffer (tembuf);
4737 return Qnil;
4738 }
4739
4740 /* Decide the coding-system to encode the data with. */
4741
4742 void
4743 choose_write_coding_system (start, end, filename,
4744 append, visit, lockname, coding)
4745 Lisp_Object start, end, filename, append, visit, lockname;
4746 struct coding_system *coding;
4747 {
4748 Lisp_Object val;
4749
4750 if (auto_saving
4751 && NILP (Fstring_equal (current_buffer->filename,
4752 current_buffer->auto_save_file_name)))
4753 {
4754 /* We use emacs-mule for auto saving... */
4755 setup_coding_system (Qemacs_mule, coding);
4756 /* ... but with the special flag to indicate not to strip off
4757 leading code of eight-bit-control chars. */
4758 coding->flags = 1;
4759 goto done_setup_coding;
4760 }
4761 else if (!NILP (Vcoding_system_for_write))
4762 {
4763 val = Vcoding_system_for_write;
4764 if (coding_system_require_warning
4765 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4766 /* Confirm that VAL can surely encode the current region. */
4767 val = call5 (Vselect_safe_coding_system_function,
4768 start, end, Fcons (Qt, Fcons (val, Qnil)),
4769 Qnil, filename);
4770 }
4771 else
4772 {
4773 /* If the variable `buffer-file-coding-system' is set locally,
4774 it means that the file was read with some kind of code
4775 conversion or the variable is explicitly set by users. We
4776 had better write it out with the same coding system even if
4777 `enable-multibyte-characters' is nil.
4778
4779 If it is not set locally, we anyway have to convert EOL
4780 format if the default value of `buffer-file-coding-system'
4781 tells that it is not Unix-like (LF only) format. */
4782 int using_default_coding = 0;
4783 int force_raw_text = 0;
4784
4785 val = current_buffer->buffer_file_coding_system;
4786 if (NILP (val)
4787 || NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil)))
4788 {
4789 val = Qnil;
4790 if (NILP (current_buffer->enable_multibyte_characters))
4791 force_raw_text = 1;
4792 }
4793
4794 if (NILP (val))
4795 {
4796 /* Check file-coding-system-alist. */
4797 Lisp_Object args[7], coding_systems;
4798
4799 args[0] = Qwrite_region; args[1] = start; args[2] = end;
4800 args[3] = filename; args[4] = append; args[5] = visit;
4801 args[6] = lockname;
4802 coding_systems = Ffind_operation_coding_system (7, args);
4803 if (CONSP (coding_systems) && !NILP (XCDR (coding_systems)))
4804 val = XCDR (coding_systems);
4805 }
4806
4807 if (NILP (val)
4808 && !NILP (current_buffer->buffer_file_coding_system))
4809 {
4810 /* If we still have not decided a coding system, use the
4811 default value of buffer-file-coding-system. */
4812 val = current_buffer->buffer_file_coding_system;
4813 using_default_coding = 1;
4814 }
4815
4816 if (!force_raw_text
4817 && !NILP (Ffboundp (Vselect_safe_coding_system_function)))
4818 /* Confirm that VAL can surely encode the current region. */
4819 val = call5 (Vselect_safe_coding_system_function,
4820 start, end, val, Qnil, filename);
4821
4822 setup_coding_system (Fcheck_coding_system (val), coding);
4823 if (coding->eol_type == CODING_EOL_UNDECIDED
4824 && !using_default_coding)
4825 {
4826 if (! EQ (default_buffer_file_coding.symbol,
4827 buffer_defaults.buffer_file_coding_system))
4828 setup_coding_system (buffer_defaults.buffer_file_coding_system,
4829 &default_buffer_file_coding);
4830 if (default_buffer_file_coding.eol_type != CODING_EOL_UNDECIDED)
4831 {
4832 Lisp_Object subsidiaries;
4833
4834 coding->eol_type = default_buffer_file_coding.eol_type;
4835 subsidiaries = Fget (coding->symbol, Qeol_type);
4836 if (VECTORP (subsidiaries)
4837 && XVECTOR (subsidiaries)->size == 3)
4838 coding->symbol
4839 = XVECTOR (subsidiaries)->contents[coding->eol_type];
4840 }
4841 }
4842
4843 if (force_raw_text)
4844 setup_raw_text_coding_system (coding);
4845 goto done_setup_coding;
4846 }
4847
4848 setup_coding_system (Fcheck_coding_system (val), coding);
4849
4850 done_setup_coding:
4851 if (!STRINGP (start) && !NILP (current_buffer->selective_display))
4852 coding->mode |= CODING_MODE_SELECTIVE_DISPLAY;
4853 }
4854
4855 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 7,
4856 "r\nFWrite region to file: \ni\ni\ni\np",
4857 doc: /* Write current region into specified file.
4858 When called from a program, requires three arguments:
4859 START, END and FILENAME. START and END are normally buffer positions
4860 specifying the part of the buffer to write.
4861 If START is nil, that means to use the entire buffer contents.
4862 If START is a string, then output that string to the file
4863 instead of any buffer contents; END is ignored.
4864
4865 Optional fourth argument APPEND if non-nil means
4866 append to existing file contents (if any). If it is an integer,
4867 seek to that offset in the file before writing.
4868 Optional fifth argument VISIT if t means
4869 set the last-save-file-modtime of buffer to this file's modtime
4870 and mark buffer not modified.
4871 If VISIT is a string, it is a second file name;
4872 the output goes to FILENAME, but the buffer is marked as visiting VISIT.
4873 VISIT is also the file name to lock and unlock for clash detection.
4874 If VISIT is neither t nor nil nor a string,
4875 that means do not display the \"Wrote file\" message.
4876 The optional sixth arg LOCKNAME, if non-nil, specifies the name to
4877 use for locking and unlocking, overriding FILENAME and VISIT.
4878 The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4879 for an existing file with the same name. If MUSTBENEW is `excl',
4880 that means to get an error if the file already exists; never overwrite.
4881 If MUSTBENEW is neither nil nor `excl', that means ask for
4882 confirmation before overwriting, but do go ahead and overwrite the file
4883 if the user confirms.
4884
4885 This does code conversion according to the value of
4886 `coding-system-for-write', `buffer-file-coding-system', or
4887 `file-coding-system-alist', and sets the variable
4888 `last-coding-system-used' to the coding system actually used. */)
4889 (start, end, filename, append, visit, lockname, mustbenew)
4890 Lisp_Object start, end, filename, append, visit, lockname, mustbenew;
4891 {
4892 register int desc;
4893 int failure;
4894 int save_errno = 0;
4895 const unsigned char *fn;
4896 struct stat st;
4897 int tem;
4898 int count = SPECPDL_INDEX ();
4899 int count1;
4900 #ifdef VMS
4901 unsigned char *fname = 0; /* If non-0, original filename (must rename) */
4902 #endif /* VMS */
4903 Lisp_Object handler;
4904 Lisp_Object visit_file;
4905 Lisp_Object annotations;
4906 Lisp_Object encoded_filename;
4907 int visiting = (EQ (visit, Qt) || STRINGP (visit));
4908 int quietly = !NILP (visit);
4909 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
4910 struct buffer *given_buffer;
4911 #ifdef DOS_NT
4912 int buffer_file_type = O_BINARY;
4913 #endif /* DOS_NT */
4914 struct coding_system coding;
4915
4916 if (current_buffer->base_buffer && visiting)
4917 error ("Cannot do file visiting in an indirect buffer");
4918
4919 if (!NILP (start) && !STRINGP (start))
4920 validate_region (&start, &end);
4921
4922 GCPRO5 (start, filename, visit, visit_file, lockname);
4923
4924 filename = Fexpand_file_name (filename, Qnil);
4925
4926 if (!NILP (mustbenew) && !EQ (mustbenew, Qexcl))
4927 barf_or_query_if_file_exists (filename, "overwrite", 1, 0, 1);
4928
4929 if (STRINGP (visit))
4930 visit_file = Fexpand_file_name (visit, Qnil);
4931 else
4932 visit_file = filename;
4933
4934 if (NILP (lockname))
4935 lockname = visit_file;
4936
4937 annotations = Qnil;
4938
4939 /* If the file name has special constructs in it,
4940 call the corresponding file handler. */
4941 handler = Ffind_file_name_handler (filename, Qwrite_region);
4942 /* If FILENAME has no handler, see if VISIT has one. */
4943 if (NILP (handler) && STRINGP (visit))
4944 handler = Ffind_file_name_handler (visit, Qwrite_region);
4945
4946 if (!NILP (handler))
4947 {
4948 Lisp_Object val;
4949 val = call6 (handler, Qwrite_region, start, end,
4950 filename, append, visit);
4951
4952 if (visiting)
4953 {
4954 SAVE_MODIFF = MODIFF;
4955 XSETFASTINT (current_buffer->save_length, Z - BEG);
4956 current_buffer->filename = visit_file;
4957 }
4958 UNGCPRO;
4959 return val;
4960 }
4961
4962 record_unwind_protect (save_restriction_restore, save_restriction_save ());
4963
4964 /* Special kludge to simplify auto-saving. */
4965 if (NILP (start))
4966 {
4967 XSETFASTINT (start, BEG);
4968 XSETFASTINT (end, Z);
4969 Fwiden ();
4970 }
4971
4972 record_unwind_protect (build_annotations_unwind, Fcurrent_buffer ());
4973 count1 = SPECPDL_INDEX ();
4974
4975 given_buffer = current_buffer;
4976
4977 if (!STRINGP (start))
4978 {
4979 annotations = build_annotations (start, end);
4980
4981 if (current_buffer != given_buffer)
4982 {
4983 XSETFASTINT (start, BEGV);
4984 XSETFASTINT (end, ZV);
4985 }
4986 }
4987
4988 UNGCPRO;
4989
4990 GCPRO5 (start, filename, annotations, visit_file, lockname);
4991
4992 /* Decide the coding-system to encode the data with.
4993 We used to make this choice before calling build_annotations, but that
4994 leads to problems when a write-annotate-function takes care of
4995 unsavable chars (as was the case with X-Symbol). */
4996 choose_write_coding_system (start, end, filename,
4997 append, visit, lockname, &coding);
4998 Vlast_coding_system_used = coding.symbol;
4999
5000 given_buffer = current_buffer;
5001 if (! STRINGP (start))
5002 {
5003 annotations = build_annotations_2 (start, end,
5004 coding.pre_write_conversion, annotations);
5005 if (current_buffer != given_buffer)
5006 {
5007 XSETFASTINT (start, BEGV);
5008 XSETFASTINT (end, ZV);
5009 }
5010 }
5011
5012 #ifdef CLASH_DETECTION
5013 if (!auto_saving)
5014 {
5015 #if 0 /* This causes trouble for GNUS. */
5016 /* If we've locked this file for some other buffer,
5017 query before proceeding. */
5018 if (!visiting && EQ (Ffile_locked_p (lockname), Qt))
5019 call2 (intern ("ask-user-about-lock"), filename, Vuser_login_name);
5020 #endif
5021
5022 lock_file (lockname);
5023 }
5024 #endif /* CLASH_DETECTION */
5025
5026 encoded_filename = ENCODE_FILE (filename);
5027
5028 fn = SDATA (encoded_filename);
5029 desc = -1;
5030 if (!NILP (append))
5031 #ifdef DOS_NT
5032 desc = emacs_open (fn, O_WRONLY | buffer_file_type, 0);
5033 #else /* not DOS_NT */
5034 desc = emacs_open (fn, O_WRONLY, 0);
5035 #endif /* not DOS_NT */
5036
5037 if (desc < 0 && (NILP (append) || errno == ENOENT))
5038 #ifdef VMS
5039 if (auto_saving) /* Overwrite any previous version of autosave file */
5040 {
5041 vms_truncate (fn); /* if fn exists, truncate to zero length */
5042 desc = emacs_open (fn, O_RDWR, 0);
5043 if (desc < 0)
5044 desc = creat_copy_attrs (STRINGP (current_buffer->filename)
5045 ? SDATA (current_buffer->filename) : 0,
5046 fn);
5047 }
5048 else /* Write to temporary name and rename if no errors */
5049 {
5050 Lisp_Object temp_name;
5051 temp_name = Ffile_name_directory (filename);
5052
5053 if (!NILP (temp_name))
5054 {
5055 temp_name = Fmake_temp_name (concat2 (temp_name,
5056 build_string ("$$SAVE$$")));
5057 fname = SDATA (filename);
5058 fn = SDATA (temp_name);
5059 desc = creat_copy_attrs (fname, fn);
5060 if (desc < 0)
5061 {
5062 /* If we can't open the temporary file, try creating a new
5063 version of the original file. VMS "creat" creates a
5064 new version rather than truncating an existing file. */
5065 fn = fname;
5066 fname = 0;
5067 desc = creat (fn, 0666);
5068 #if 0 /* This can clobber an existing file and fail to replace it,
5069 if the user runs out of space. */
5070 if (desc < 0)
5071 {
5072 /* We can't make a new version;
5073 try to truncate and rewrite existing version if any. */
5074 vms_truncate (fn);
5075 desc = emacs_open (fn, O_RDWR, 0);
5076 }
5077 #endif
5078 }
5079 }
5080 else
5081 desc = creat (fn, 0666);
5082 }
5083 #else /* not VMS */
5084 #ifdef DOS_NT
5085 desc = emacs_open (fn,
5086 O_WRONLY | O_CREAT | buffer_file_type
5087 | (EQ (mustbenew, Qexcl) ? O_EXCL : O_TRUNC),
5088 S_IREAD | S_IWRITE);
5089 #else /* not DOS_NT */
5090 desc = emacs_open (fn, O_WRONLY | O_TRUNC | O_CREAT
5091 | (EQ (mustbenew, Qexcl) ? O_EXCL : 0),
5092 auto_saving ? auto_save_mode_bits : 0666);
5093 #endif /* not DOS_NT */
5094 #endif /* not VMS */
5095
5096 if (desc < 0)
5097 {
5098 #ifdef CLASH_DETECTION
5099 save_errno = errno;
5100 if (!auto_saving) unlock_file (lockname);
5101 errno = save_errno;
5102 #endif /* CLASH_DETECTION */
5103 UNGCPRO;
5104 report_file_error ("Opening output file", Fcons (filename, Qnil));
5105 }
5106
5107 record_unwind_protect (close_file_unwind, make_number (desc));
5108
5109 if (!NILP (append) && !NILP (Ffile_regular_p (filename)))
5110 {
5111 long ret;
5112
5113 if (NUMBERP (append))
5114 ret = lseek (desc, XINT (append), 1);
5115 else
5116 ret = lseek (desc, 0, 2);
5117 if (ret < 0)
5118 {
5119 #ifdef CLASH_DETECTION
5120 if (!auto_saving) unlock_file (lockname);
5121 #endif /* CLASH_DETECTION */
5122 UNGCPRO;
5123 report_file_error ("Lseek error", Fcons (filename, Qnil));
5124 }
5125 }
5126
5127 UNGCPRO;
5128
5129 #ifdef VMS
5130 /*
5131 * Kludge Warning: The VMS C RTL likes to insert carriage returns
5132 * if we do writes that don't end with a carriage return. Furthermore
5133 * it cannot handle writes of more then 16K. The modified
5134 * version of "sys_write" in SYSDEP.C (see comment there) copes with
5135 * this EXCEPT for the last record (iff it doesn't end with a carriage
5136 * return). This implies that if your buffer doesn't end with a carriage
5137 * return, you get one free... tough. However it also means that if
5138 * we make two calls to sys_write (a la the following code) you can
5139 * get one at the gap as well. The easiest way to fix this (honest)
5140 * is to move the gap to the next newline (or the end of the buffer).
5141 * Thus this change.
5142 *
5143 * Yech!
5144 */
5145 if (GPT > BEG && GPT_ADDR[-1] != '\n')
5146 move_gap (find_next_newline (GPT, 1));
5147 #else
5148 /* Whether VMS or not, we must move the gap to the next of newline
5149 when we must put designation sequences at beginning of line. */
5150 if (INTEGERP (start)
5151 && coding.type == coding_type_iso2022
5152 && coding.flags & CODING_FLAG_ISO_DESIGNATE_AT_BOL
5153 && GPT > BEG && GPT_ADDR[-1] != '\n')
5154 {
5155 int opoint = PT, opoint_byte = PT_BYTE;
5156 scan_newline (PT, PT_BYTE, ZV, ZV_BYTE, 1, 0);
5157 move_gap_both (PT, PT_BYTE);
5158 SET_PT_BOTH (opoint, opoint_byte);
5159 }
5160 #endif
5161
5162 failure = 0;
5163 immediate_quit = 1;
5164
5165 if (STRINGP (start))
5166 {
5167 failure = 0 > a_write (desc, start, 0, SCHARS (start),
5168 &annotations, &coding);
5169 save_errno = errno;
5170 }
5171 else if (XINT (start) != XINT (end))
5172 {
5173 tem = CHAR_TO_BYTE (XINT (start));
5174
5175 if (XINT (start) < GPT)
5176 {
5177 failure = 0 > a_write (desc, Qnil, XINT (start),
5178 min (GPT, XINT (end)) - XINT (start),
5179 &annotations, &coding);
5180 save_errno = errno;
5181 }
5182
5183 if (XINT (end) > GPT && !failure)
5184 {
5185 tem = max (XINT (start), GPT);
5186 failure = 0 > a_write (desc, Qnil, tem , XINT (end) - tem,
5187 &annotations, &coding);
5188 save_errno = errno;
5189 }
5190 }
5191 else
5192 {
5193 /* If file was empty, still need to write the annotations */
5194 coding.mode |= CODING_MODE_LAST_BLOCK;
5195 failure = 0 > a_write (desc, Qnil, XINT (end), 0, &annotations, &coding);
5196 save_errno = errno;
5197 }
5198
5199 if (CODING_REQUIRE_FLUSHING (&coding)
5200 && !(coding.mode & CODING_MODE_LAST_BLOCK)
5201 && ! failure)
5202 {
5203 /* We have to flush out a data. */
5204 coding.mode |= CODING_MODE_LAST_BLOCK;
5205 failure = 0 > e_write (desc, Qnil, 0, 0, &coding);
5206 save_errno = errno;
5207 }
5208
5209 immediate_quit = 0;
5210
5211 #ifdef HAVE_FSYNC
5212 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
5213 Disk full in NFS may be reported here. */
5214 /* mib says that closing the file will try to write as fast as NFS can do
5215 it, and that means the fsync here is not crucial for autosave files. */
5216 if (!auto_saving && fsync (desc) < 0)
5217 {
5218 /* If fsync fails with EINTR, don't treat that as serious. */
5219 if (errno != EINTR)
5220 failure = 1, save_errno = errno;
5221 }
5222 #endif
5223
5224 /* Spurious "file has changed on disk" warnings have been
5225 observed on Suns as well.
5226 It seems that `close' can change the modtime, under nfs.
5227
5228 (This has supposedly been fixed in Sunos 4,
5229 but who knows about all the other machines with NFS?) */
5230 #if 0
5231
5232 /* On VMS and APOLLO, must do the stat after the close
5233 since closing changes the modtime. */
5234 #ifndef VMS
5235 #ifndef APOLLO
5236 /* Recall that #if defined does not work on VMS. */
5237 #define FOO
5238 fstat (desc, &st);
5239 #endif
5240 #endif
5241 #endif
5242
5243 /* NFS can report a write failure now. */
5244 if (emacs_close (desc) < 0)
5245 failure = 1, save_errno = errno;
5246
5247 #ifdef VMS
5248 /* If we wrote to a temporary name and had no errors, rename to real name. */
5249 if (fname)
5250 {
5251 if (!failure)
5252 failure = (rename (fn, fname) != 0), save_errno = errno;
5253 fn = fname;
5254 }
5255 #endif /* VMS */
5256
5257 #ifndef FOO
5258 stat (fn, &st);
5259 #endif
5260 /* Discard the unwind protect for close_file_unwind. */
5261 specpdl_ptr = specpdl + count1;
5262 /* Restore the original current buffer. */
5263 visit_file = unbind_to (count, visit_file);
5264
5265 #ifdef CLASH_DETECTION
5266 if (!auto_saving)
5267 unlock_file (lockname);
5268 #endif /* CLASH_DETECTION */
5269
5270 /* Do this before reporting IO error
5271 to avoid a "file has changed on disk" warning on
5272 next attempt to save. */
5273 if (visiting)
5274 current_buffer->modtime = st.st_mtime;
5275
5276 if (failure)
5277 error ("IO error writing %s: %s", SDATA (filename),
5278 emacs_strerror (save_errno));
5279
5280 if (visiting)
5281 {
5282 SAVE_MODIFF = MODIFF;
5283 XSETFASTINT (current_buffer->save_length, Z - BEG);
5284 current_buffer->filename = visit_file;
5285 update_mode_lines++;
5286 }
5287 else if (quietly)
5288 {
5289 if (auto_saving
5290 && ! NILP (Fstring_equal (current_buffer->filename,
5291 current_buffer->auto_save_file_name)))
5292 SAVE_MODIFF = MODIFF;
5293
5294 return Qnil;
5295 }
5296
5297 if (!auto_saving)
5298 message_with_string ((INTEGERP (append)
5299 ? "Updated %s"
5300 : ! NILP (append)
5301 ? "Added to %s"
5302 : "Wrote %s"),
5303 visit_file, 1);
5304
5305 return Qnil;
5306 }
5307 \f
5308 Lisp_Object merge ();
5309
5310 DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0,
5311 doc: /* Return t if (car A) is numerically less than (car B). */)
5312 (a, b)
5313 Lisp_Object a, b;
5314 {
5315 return Flss (Fcar (a), Fcar (b));
5316 }
5317
5318 /* Build the complete list of annotations appropriate for writing out
5319 the text between START and END, by calling all the functions in
5320 write-region-annotate-functions and merging the lists they return.
5321 If one of these functions switches to a different buffer, we assume
5322 that buffer contains altered text. Therefore, the caller must
5323 make sure to restore the current buffer in all cases,
5324 as save-excursion would do. */
5325
5326 static Lisp_Object
5327 build_annotations (start, end)
5328 Lisp_Object start, end;
5329 {
5330 Lisp_Object annotations;
5331 Lisp_Object p, res;
5332 struct gcpro gcpro1, gcpro2;
5333 Lisp_Object original_buffer;
5334 int i, used_global = 0;
5335
5336 XSETBUFFER (original_buffer, current_buffer);
5337
5338 annotations = Qnil;
5339 p = Vwrite_region_annotate_functions;
5340 GCPRO2 (annotations, p);
5341 while (CONSP (p))
5342 {
5343 struct buffer *given_buffer = current_buffer;
5344 if (EQ (Qt, XCAR (p)) && !used_global)
5345 { /* Use the global value of the hook. */
5346 Lisp_Object arg[2];
5347 used_global = 1;
5348 arg[0] = Fdefault_value (Qwrite_region_annotate_functions);
5349 arg[1] = XCDR (p);
5350 p = Fappend (2, arg);
5351 continue;
5352 }
5353 Vwrite_region_annotations_so_far = annotations;
5354 res = call2 (XCAR (p), start, end);
5355 /* If the function makes a different buffer current,
5356 assume that means this buffer contains altered text to be output.
5357 Reset START and END from the buffer bounds
5358 and discard all previous annotations because they should have
5359 been dealt with by this function. */
5360 if (current_buffer != given_buffer)
5361 {
5362 XSETFASTINT (start, BEGV);
5363 XSETFASTINT (end, ZV);
5364 annotations = Qnil;
5365 }
5366 Flength (res); /* Check basic validity of return value */
5367 annotations = merge (annotations, res, Qcar_less_than_car);
5368 p = XCDR (p);
5369 }
5370
5371 /* Now do the same for annotation functions implied by the file-format */
5372 if (auto_saving && (!EQ (Vauto_save_file_format, Qt)))
5373 p = Vauto_save_file_format;
5374 else
5375 p = current_buffer->file_format;
5376 for (i = 0; CONSP (p); p = XCDR (p), ++i)
5377 {
5378 struct buffer *given_buffer = current_buffer;
5379
5380 Vwrite_region_annotations_so_far = annotations;
5381
5382 /* Value is either a list of annotations or nil if the function
5383 has written annotations to a temporary buffer, which is now
5384 current. */
5385 res = call5 (Qformat_annotate_function, XCAR (p), start, end,
5386 original_buffer, make_number (i));
5387 if (current_buffer != given_buffer)
5388 {
5389 XSETFASTINT (start, BEGV);
5390 XSETFASTINT (end, ZV);
5391 annotations = Qnil;
5392 }
5393
5394 if (CONSP (res))
5395 annotations = merge (annotations, res, Qcar_less_than_car);
5396 }
5397
5398 UNGCPRO;
5399 return annotations;
5400 }
5401
5402 static Lisp_Object
5403 build_annotations_2 (start, end, pre_write_conversion, annotations)
5404 Lisp_Object start, end, pre_write_conversion, annotations;
5405 {
5406 struct gcpro gcpro1;
5407 Lisp_Object res;
5408
5409 GCPRO1 (annotations);
5410 /* At last, do the same for the function PRE_WRITE_CONVERSION
5411 implied by the current coding-system. */
5412 if (!NILP (pre_write_conversion))
5413 {
5414 struct buffer *given_buffer = current_buffer;
5415 Vwrite_region_annotations_so_far = annotations;
5416 res = call2 (pre_write_conversion, start, end);
5417 Flength (res);
5418 annotations = (current_buffer != given_buffer
5419 ? res
5420 : merge (annotations, res, Qcar_less_than_car));
5421 }
5422
5423 UNGCPRO;
5424 return annotations;
5425 }
5426 \f
5427 /* Write to descriptor DESC the NCHARS chars starting at POS of STRING.
5428 If STRING is nil, POS is the character position in the current buffer.
5429 Intersperse with them the annotations from *ANNOT
5430 which fall within the range of POS to POS + NCHARS,
5431 each at its appropriate position.
5432
5433 We modify *ANNOT by discarding elements as we use them up.
5434
5435 The return value is negative in case of system call failure. */
5436
5437 static int
5438 a_write (desc, string, pos, nchars, annot, coding)
5439 int desc;
5440 Lisp_Object string;
5441 register int nchars;
5442 int pos;
5443 Lisp_Object *annot;
5444 struct coding_system *coding;
5445 {
5446 Lisp_Object tem;
5447 int nextpos;
5448 int lastpos = pos + nchars;
5449
5450 while (NILP (*annot) || CONSP (*annot))
5451 {
5452 tem = Fcar_safe (Fcar (*annot));
5453 nextpos = pos - 1;
5454 if (INTEGERP (tem))
5455 nextpos = XFASTINT (tem);
5456
5457 /* If there are no more annotations in this range,
5458 output the rest of the range all at once. */
5459 if (! (nextpos >= pos && nextpos <= lastpos))
5460 return e_write (desc, string, pos, lastpos, coding);
5461
5462 /* Output buffer text up to the next annotation's position. */
5463 if (nextpos > pos)
5464 {
5465 if (0 > e_write (desc, string, pos, nextpos, coding))
5466 return -1;
5467 pos = nextpos;
5468 }
5469 /* Output the annotation. */
5470 tem = Fcdr (Fcar (*annot));
5471 if (STRINGP (tem))
5472 {
5473 if (0 > e_write (desc, tem, 0, SCHARS (tem), coding))
5474 return -1;
5475 }
5476 *annot = Fcdr (*annot);
5477 }
5478 return 0;
5479 }
5480
5481 #ifndef WRITE_BUF_SIZE
5482 #define WRITE_BUF_SIZE (16 * 1024)
5483 #endif
5484
5485 /* Write text in the range START and END into descriptor DESC,
5486 encoding them with coding system CODING. If STRING is nil, START
5487 and END are character positions of the current buffer, else they
5488 are indexes to the string STRING. */
5489
5490 static int
5491 e_write (desc, string, start, end, coding)
5492 int desc;
5493 Lisp_Object string;
5494 int start, end;
5495 struct coding_system *coding;
5496 {
5497 register char *addr;
5498 register int nbytes;
5499 char buf[WRITE_BUF_SIZE];
5500 int return_val = 0;
5501
5502 if (start >= end)
5503 coding->composing = COMPOSITION_DISABLED;
5504 if (coding->composing != COMPOSITION_DISABLED)
5505 coding_save_composition (coding, start, end, string);
5506
5507 if (STRINGP (string))
5508 {
5509 addr = SDATA (string);
5510 nbytes = SBYTES (string);
5511 coding->src_multibyte = STRING_MULTIBYTE (string);
5512 }
5513 else if (start < end)
5514 {
5515 /* It is assured that the gap is not in the range START and END-1. */
5516 addr = CHAR_POS_ADDR (start);
5517 nbytes = CHAR_TO_BYTE (end) - CHAR_TO_BYTE (start);
5518 coding->src_multibyte
5519 = !NILP (current_buffer->enable_multibyte_characters);
5520 }
5521 else
5522 {
5523 addr = "";
5524 nbytes = 0;
5525 coding->src_multibyte = 1;
5526 }
5527
5528 /* We used to have a code for handling selective display here. But,
5529 now it is handled within encode_coding. */
5530 while (1)
5531 {
5532 int result;
5533
5534 result = encode_coding (coding, addr, buf, nbytes, WRITE_BUF_SIZE);
5535 if (coding->produced > 0)
5536 {
5537 coding->produced -= emacs_write (desc, buf, coding->produced);
5538 if (coding->produced)
5539 {
5540 return_val = -1;
5541 break;
5542 }
5543 }
5544 nbytes -= coding->consumed;
5545 addr += coding->consumed;
5546 if (result == CODING_FINISH_INSUFFICIENT_SRC
5547 && nbytes > 0)
5548 {
5549 /* The source text ends by an incomplete multibyte form.
5550 There's no way other than write it out as is. */
5551 nbytes -= emacs_write (desc, addr, nbytes);
5552 if (nbytes)
5553 {
5554 return_val = -1;
5555 break;
5556 }
5557 }
5558 if (nbytes <= 0)
5559 break;
5560 start += coding->consumed_char;
5561 if (coding->cmp_data)
5562 coding_adjust_composition_offset (coding, start);
5563 }
5564
5565 if (coding->cmp_data)
5566 coding_free_composition_data (coding);
5567
5568 return return_val;
5569 }
5570 \f
5571 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime,
5572 Sverify_visited_file_modtime, 1, 1, 0,
5573 doc: /* Return t if last mod time of BUF's visited file matches what BUF records.
5574 This means that the file has not been changed since it was visited or saved.
5575 See Info node `(elisp)Modification Time' for more details. */)
5576 (buf)
5577 Lisp_Object buf;
5578 {
5579 struct buffer *b;
5580 struct stat st;
5581 Lisp_Object handler;
5582 Lisp_Object filename;
5583
5584 CHECK_BUFFER (buf);
5585 b = XBUFFER (buf);
5586
5587 if (!STRINGP (b->filename)) return Qt;
5588 if (b->modtime == 0) return Qt;
5589
5590 /* If the file name has special constructs in it,
5591 call the corresponding file handler. */
5592 handler = Ffind_file_name_handler (b->filename,
5593 Qverify_visited_file_modtime);
5594 if (!NILP (handler))
5595 return call2 (handler, Qverify_visited_file_modtime, buf);
5596
5597 filename = ENCODE_FILE (b->filename);
5598
5599 if (stat (SDATA (filename), &st) < 0)
5600 {
5601 /* If the file doesn't exist now and didn't exist before,
5602 we say that it isn't modified, provided the error is a tame one. */
5603 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR)
5604 st.st_mtime = -1;
5605 else
5606 st.st_mtime = 0;
5607 }
5608 if (st.st_mtime == b->modtime
5609 /* If both are positive, accept them if they are off by one second. */
5610 || (st.st_mtime > 0 && b->modtime > 0
5611 && (st.st_mtime == b->modtime + 1
5612 || st.st_mtime == b->modtime - 1)))
5613 return Qt;
5614 return Qnil;
5615 }
5616
5617 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime,
5618 Sclear_visited_file_modtime, 0, 0, 0,
5619 doc: /* Clear out records of last mod time of visited file.
5620 Next attempt to save will certainly not complain of a discrepancy. */)
5621 ()
5622 {
5623 current_buffer->modtime = 0;
5624 return Qnil;
5625 }
5626
5627 DEFUN ("visited-file-modtime", Fvisited_file_modtime,
5628 Svisited_file_modtime, 0, 0, 0,
5629 doc: /* Return the current buffer's recorded visited file modification time.
5630 The value is a list of the form (HIGH . LOW), like the time values
5631 that `file-attributes' returns. If the current buffer has no recorded
5632 file modification time, this function returns 0.
5633 See Info node `(elisp)Modification Time' for more details. */)
5634 ()
5635 {
5636 return long_to_cons ((unsigned long) current_buffer->modtime);
5637 }
5638
5639 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime,
5640 Sset_visited_file_modtime, 0, 1, 0,
5641 doc: /* Update buffer's recorded modification time from the visited file's time.
5642 Useful if the buffer was not read from the file normally
5643 or if the file itself has been changed for some known benign reason.
5644 An argument specifies the modification time value to use
5645 \(instead of that of the visited file), in the form of a list
5646 \(HIGH . LOW) or (HIGH LOW). */)
5647 (time_list)
5648 Lisp_Object time_list;
5649 {
5650 if (!NILP (time_list))
5651 current_buffer->modtime = cons_to_long (time_list);
5652 else
5653 {
5654 register Lisp_Object filename;
5655 struct stat st;
5656 Lisp_Object handler;
5657
5658 filename = Fexpand_file_name (current_buffer->filename, Qnil);
5659
5660 /* If the file name has special constructs in it,
5661 call the corresponding file handler. */
5662 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
5663 if (!NILP (handler))
5664 /* The handler can find the file name the same way we did. */
5665 return call2 (handler, Qset_visited_file_modtime, Qnil);
5666
5667 filename = ENCODE_FILE (filename);
5668
5669 if (stat (SDATA (filename), &st) >= 0)
5670 current_buffer->modtime = st.st_mtime;
5671 }
5672
5673 return Qnil;
5674 }
5675 \f
5676 Lisp_Object
5677 auto_save_error (error)
5678 Lisp_Object error;
5679 {
5680 Lisp_Object args[3], msg;
5681 int i, nbytes;
5682 struct gcpro gcpro1;
5683
5684 ring_bell (XFRAME (selected_frame));
5685
5686 args[0] = build_string ("Auto-saving %s: %s");
5687 args[1] = current_buffer->name;
5688 args[2] = Ferror_message_string (error);
5689 msg = Fformat (3, args);
5690 GCPRO1 (msg);
5691 nbytes = SBYTES (msg);
5692
5693 for (i = 0; i < 3; ++i)
5694 {
5695 if (i == 0)
5696 message2 (SDATA (msg), nbytes, STRING_MULTIBYTE (msg));
5697 else
5698 message2_nolog (SDATA (msg), nbytes, STRING_MULTIBYTE (msg));
5699 Fsleep_for (make_number (1), Qnil);
5700 }
5701
5702 UNGCPRO;
5703 return Qnil;
5704 }
5705
5706 Lisp_Object
5707 auto_save_1 ()
5708 {
5709 struct stat st;
5710
5711 /* Get visited file's mode to become the auto save file's mode. */
5712 if (! NILP (current_buffer->filename)
5713 && stat (SDATA (current_buffer->filename), &st) >= 0)
5714 /* But make sure we can overwrite it later! */
5715 auto_save_mode_bits = st.st_mode | 0600;
5716 else
5717 auto_save_mode_bits = 0666;
5718
5719 return
5720 Fwrite_region (Qnil, Qnil,
5721 current_buffer->auto_save_file_name,
5722 Qnil, Qlambda, Qnil, Qnil);
5723 }
5724
5725 static Lisp_Object
5726 do_auto_save_unwind (stream) /* used as unwind-protect function */
5727 Lisp_Object stream;
5728 {
5729 auto_saving = 0;
5730 if (!NILP (stream))
5731 fclose ((FILE *) (XFASTINT (XCAR (stream)) << 16
5732 | XFASTINT (XCDR (stream))));
5733 return Qnil;
5734 }
5735
5736 static Lisp_Object
5737 do_auto_save_unwind_1 (value) /* used as unwind-protect function */
5738 Lisp_Object value;
5739 {
5740 minibuffer_auto_raise = XINT (value);
5741 return Qnil;
5742 }
5743
5744 static Lisp_Object
5745 do_auto_save_make_dir (dir)
5746 Lisp_Object dir;
5747 {
5748 return call2 (Qmake_directory, dir, Qt);
5749 }
5750
5751 static Lisp_Object
5752 do_auto_save_eh (ignore)
5753 Lisp_Object ignore;
5754 {
5755 return Qnil;
5756 }
5757
5758 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "",
5759 doc: /* Auto-save all buffers that need it.
5760 This is all buffers that have auto-saving enabled
5761 and are changed since last auto-saved.
5762 Auto-saving writes the buffer into a file
5763 so that your editing is not lost if the system crashes.
5764 This file is not the file you visited; that changes only when you save.
5765 Normally we run the normal hook `auto-save-hook' before saving.
5766
5767 A non-nil NO-MESSAGE argument means do not print any message if successful.
5768 A non-nil CURRENT-ONLY argument means save only current buffer. */)
5769 (no_message, current_only)
5770 Lisp_Object no_message, current_only;
5771 {
5772 struct buffer *old = current_buffer, *b;
5773 Lisp_Object tail, buf;
5774 int auto_saved = 0;
5775 int do_handled_files;
5776 Lisp_Object oquit;
5777 FILE *stream;
5778 Lisp_Object lispstream;
5779 int count = SPECPDL_INDEX ();
5780 int orig_minibuffer_auto_raise = minibuffer_auto_raise;
5781 int old_message_p = 0;
5782 struct gcpro gcpro1, gcpro2;
5783
5784 if (max_specpdl_size < specpdl_size + 40)
5785 max_specpdl_size = specpdl_size + 40;
5786
5787 if (minibuf_level)
5788 no_message = Qt;
5789
5790 if (NILP (no_message))
5791 {
5792 old_message_p = push_message ();
5793 record_unwind_protect (pop_message_unwind, Qnil);
5794 }
5795
5796 /* Ordinarily don't quit within this function,
5797 but don't make it impossible to quit (in case we get hung in I/O). */
5798 oquit = Vquit_flag;
5799 Vquit_flag = Qnil;
5800
5801 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5802 point to non-strings reached from Vbuffer_alist. */
5803
5804 if (!NILP (Vrun_hooks))
5805 call1 (Vrun_hooks, intern ("auto-save-hook"));
5806
5807 if (STRINGP (Vauto_save_list_file_name))
5808 {
5809 Lisp_Object listfile;
5810
5811 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
5812
5813 /* Don't try to create the directory when shutting down Emacs,
5814 because creating the directory might signal an error, and
5815 that would leave Emacs in a strange state. */
5816 if (!NILP (Vrun_hooks))
5817 {
5818 Lisp_Object dir;
5819 dir = Qnil;
5820 GCPRO2 (dir, listfile);
5821 dir = Ffile_name_directory (listfile);
5822 if (NILP (Ffile_directory_p (dir)))
5823 internal_condition_case_1 (do_auto_save_make_dir,
5824 dir, Fcons (Fcons (Qfile_error, Qnil), Qnil),
5825 do_auto_save_eh);
5826 UNGCPRO;
5827 }
5828
5829 stream = fopen (SDATA (listfile), "w");
5830 if (stream != NULL)
5831 {
5832 /* Arrange to close that file whether or not we get an error.
5833 Also reset auto_saving to 0. */
5834 lispstream = Fcons (Qnil, Qnil);
5835 XSETCARFASTINT (lispstream, (EMACS_UINT)stream >> 16);
5836 XSETCDRFASTINT (lispstream, (EMACS_UINT)stream & 0xffff);
5837 }
5838 else
5839 lispstream = Qnil;
5840 }
5841 else
5842 {
5843 stream = NULL;
5844 lispstream = Qnil;
5845 }
5846
5847 record_unwind_protect (do_auto_save_unwind, lispstream);
5848 record_unwind_protect (do_auto_save_unwind_1,
5849 make_number (minibuffer_auto_raise));
5850 minibuffer_auto_raise = 0;
5851 auto_saving = 1;
5852
5853 /* On first pass, save all files that don't have handlers.
5854 On second pass, save all files that do have handlers.
5855
5856 If Emacs is crashing, the handlers may tweak what is causing
5857 Emacs to crash in the first place, and it would be a shame if
5858 Emacs failed to autosave perfectly ordinary files because it
5859 couldn't handle some ange-ftp'd file. */
5860
5861 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
5862 for (tail = Vbuffer_alist; GC_CONSP (tail); tail = XCDR (tail))
5863 {
5864 buf = XCDR (XCAR (tail));
5865 b = XBUFFER (buf);
5866
5867 /* Record all the buffers that have auto save mode
5868 in the special file that lists them. For each of these buffers,
5869 Record visited name (if any) and auto save name. */
5870 if (STRINGP (b->auto_save_file_name)
5871 && stream != NULL && do_handled_files == 0)
5872 {
5873 if (!NILP (b->filename))
5874 {
5875 fwrite (SDATA (b->filename), 1,
5876 SBYTES (b->filename), stream);
5877 }
5878 putc ('\n', stream);
5879 fwrite (SDATA (b->auto_save_file_name), 1,
5880 SBYTES (b->auto_save_file_name), stream);
5881 putc ('\n', stream);
5882 }
5883
5884 if (!NILP (current_only)
5885 && b != current_buffer)
5886 continue;
5887
5888 /* Don't auto-save indirect buffers.
5889 The base buffer takes care of it. */
5890 if (b->base_buffer)
5891 continue;
5892
5893 /* Check for auto save enabled
5894 and file changed since last auto save
5895 and file changed since last real save. */
5896 if (STRINGP (b->auto_save_file_name)
5897 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
5898 && b->auto_save_modified < BUF_MODIFF (b)
5899 /* -1 means we've turned off autosaving for a while--see below. */
5900 && XINT (b->save_length) >= 0
5901 && (do_handled_files
5902 || NILP (Ffind_file_name_handler (b->auto_save_file_name,
5903 Qwrite_region))))
5904 {
5905 EMACS_TIME before_time, after_time;
5906
5907 EMACS_GET_TIME (before_time);
5908
5909 /* If we had a failure, don't try again for 20 minutes. */
5910 if (b->auto_save_failure_time >= 0
5911 && EMACS_SECS (before_time) - b->auto_save_failure_time < 1200)
5912 continue;
5913
5914 if ((XFASTINT (b->save_length) * 10
5915 > (BUF_Z (b) - BUF_BEG (b)) * 13)
5916 /* A short file is likely to change a large fraction;
5917 spare the user annoying messages. */
5918 && XFASTINT (b->save_length) > 5000
5919 /* These messages are frequent and annoying for `*mail*'. */
5920 && !EQ (b->filename, Qnil)
5921 && NILP (no_message))
5922 {
5923 /* It has shrunk too much; turn off auto-saving here. */
5924 minibuffer_auto_raise = orig_minibuffer_auto_raise;
5925 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save",
5926 b->name, 1);
5927 minibuffer_auto_raise = 0;
5928 /* Turn off auto-saving until there's a real save,
5929 and prevent any more warnings. */
5930 XSETINT (b->save_length, -1);
5931 Fsleep_for (make_number (1), Qnil);
5932 continue;
5933 }
5934 set_buffer_internal (b);
5935 if (!auto_saved && NILP (no_message))
5936 message1 ("Auto-saving...");
5937 internal_condition_case (auto_save_1, Qt, auto_save_error);
5938 auto_saved++;
5939 b->auto_save_modified = BUF_MODIFF (b);
5940 XSETFASTINT (current_buffer->save_length, Z - BEG);
5941 set_buffer_internal (old);
5942
5943 EMACS_GET_TIME (after_time);
5944
5945 /* If auto-save took more than 60 seconds,
5946 assume it was an NFS failure that got a timeout. */
5947 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60)
5948 b->auto_save_failure_time = EMACS_SECS (after_time);
5949 }
5950 }
5951
5952 /* Prevent another auto save till enough input events come in. */
5953 record_auto_save ();
5954
5955 if (auto_saved && NILP (no_message))
5956 {
5957 if (old_message_p)
5958 {
5959 /* If we are going to restore an old message,
5960 give time to read ours. */
5961 sit_for (1, 0, 0, 0, 0);
5962 restore_message ();
5963 }
5964 else
5965 /* If we displayed a message and then restored a state
5966 with no message, leave a "done" message on the screen. */
5967 message1 ("Auto-saving...done");
5968 }
5969
5970 Vquit_flag = oquit;
5971
5972 /* This restores the message-stack status. */
5973 unbind_to (count, Qnil);
5974 return Qnil;
5975 }
5976
5977 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved,
5978 Sset_buffer_auto_saved, 0, 0, 0,
5979 doc: /* Mark current buffer as auto-saved with its current text.
5980 No auto-save file will be written until the buffer changes again. */)
5981 ()
5982 {
5983 current_buffer->auto_save_modified = MODIFF;
5984 XSETFASTINT (current_buffer->save_length, Z - BEG);
5985 current_buffer->auto_save_failure_time = -1;
5986 return Qnil;
5987 }
5988
5989 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure,
5990 Sclear_buffer_auto_save_failure, 0, 0, 0,
5991 doc: /* Clear any record of a recent auto-save failure in the current buffer. */)
5992 ()
5993 {
5994 current_buffer->auto_save_failure_time = -1;
5995 return Qnil;
5996 }
5997
5998 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p,
5999 0, 0, 0,
6000 doc: /* Return t if buffer has been auto-saved since last read in or saved. */)
6001 ()
6002 {
6003 return (SAVE_MODIFF < current_buffer->auto_save_modified) ? Qt : Qnil;
6004 }
6005 \f
6006 /* Reading and completing file names */
6007 extern Lisp_Object Ffile_name_completion (), Ffile_name_all_completions ();
6008
6009 /* In the string VAL, change each $ to $$ and return the result. */
6010
6011 static Lisp_Object
6012 double_dollars (val)
6013 Lisp_Object val;
6014 {
6015 register const unsigned char *old;
6016 register unsigned char *new;
6017 register int n;
6018 int osize, count;
6019
6020 osize = SBYTES (val);
6021
6022 /* Count the number of $ characters. */
6023 for (n = osize, count = 0, old = SDATA (val); n > 0; n--)
6024 if (*old++ == '$') count++;
6025 if (count > 0)
6026 {
6027 old = SDATA (val);
6028 val = make_uninit_multibyte_string (SCHARS (val) + count,
6029 osize + count);
6030 new = SDATA (val);
6031 for (n = osize; n > 0; n--)
6032 if (*old != '$')
6033 *new++ = *old++;
6034 else
6035 {
6036 *new++ = '$';
6037 *new++ = '$';
6038 old++;
6039 }
6040 }
6041 return val;
6042 }
6043
6044 static Lisp_Object
6045 read_file_name_cleanup (arg)
6046 Lisp_Object arg;
6047 {
6048 return (current_buffer->directory = arg);
6049 }
6050
6051 DEFUN ("read-file-name-internal", Fread_file_name_internal, Sread_file_name_internal,
6052 3, 3, 0,
6053 doc: /* Internal subroutine for read-file-name. Do not call this. */)
6054 (string, dir, action)
6055 Lisp_Object string, dir, action;
6056 /* action is nil for complete, t for return list of completions,
6057 lambda for verify final value */
6058 {
6059 Lisp_Object name, specdir, realdir, val, orig_string;
6060 int changed;
6061 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
6062
6063 CHECK_STRING (string);
6064
6065 realdir = dir;
6066 name = string;
6067 orig_string = Qnil;
6068 specdir = Qnil;
6069 changed = 0;
6070 /* No need to protect ACTION--we only compare it with t and nil. */
6071 GCPRO5 (string, realdir, name, specdir, orig_string);
6072
6073 if (SCHARS (string) == 0)
6074 {
6075 if (EQ (action, Qlambda))
6076 {
6077 UNGCPRO;
6078 return Qnil;
6079 }
6080 }
6081 else
6082 {
6083 orig_string = string;
6084 string = Fsubstitute_in_file_name (string);
6085 changed = NILP (Fstring_equal (string, orig_string));
6086 name = Ffile_name_nondirectory (string);
6087 val = Ffile_name_directory (string);
6088 if (! NILP (val))
6089 realdir = Fexpand_file_name (val, realdir);
6090 }
6091
6092 if (NILP (action))
6093 {
6094 specdir = Ffile_name_directory (string);
6095 val = Ffile_name_completion (name, realdir);
6096 UNGCPRO;
6097 if (!STRINGP (val))
6098 {
6099 if (changed)
6100 return double_dollars (string);
6101 return val;
6102 }
6103
6104 if (!NILP (specdir))
6105 val = concat2 (specdir, val);
6106 #ifndef VMS
6107 return double_dollars (val);
6108 #else /* not VMS */
6109 return val;
6110 #endif /* not VMS */
6111 }
6112 UNGCPRO;
6113
6114 if (EQ (action, Qt))
6115 {
6116 Lisp_Object all = Ffile_name_all_completions (name, realdir);
6117 Lisp_Object comp;
6118 int count;
6119
6120 if (NILP (Vread_file_name_predicate)
6121 || EQ (Vread_file_name_predicate, Qfile_exists_p))
6122 return all;
6123
6124 #ifndef VMS
6125 if (EQ (Vread_file_name_predicate, Qfile_directory_p))
6126 {
6127 /* Brute-force speed up for directory checking:
6128 Discard strings which don't end in a slash. */
6129 for (comp = Qnil; CONSP (all); all = XCDR (all))
6130 {
6131 Lisp_Object tem = XCAR (all);
6132 int len;
6133 if (STRINGP (tem) &&
6134 (len = SCHARS (tem), len > 0) &&
6135 IS_DIRECTORY_SEP (SREF (tem, len-1)))
6136 comp = Fcons (tem, comp);
6137 }
6138 }
6139 else
6140 #endif
6141 {
6142 /* Must do it the hard (and slow) way. */
6143 GCPRO3 (all, comp, specdir);
6144 count = SPECPDL_INDEX ();
6145 record_unwind_protect (read_file_name_cleanup, current_buffer->directory);
6146 current_buffer->directory = realdir;
6147 for (comp = Qnil; CONSP (all); all = XCDR (all))
6148 if (!NILP (call1 (Vread_file_name_predicate, XCAR (all))))
6149 comp = Fcons (XCAR (all), comp);
6150 unbind_to (count, Qnil);
6151 UNGCPRO;
6152 }
6153 return Fnreverse (comp);
6154 }
6155
6156 /* Only other case actually used is ACTION = lambda */
6157 #ifdef VMS
6158 /* Supposedly this helps commands such as `cd' that read directory names,
6159 but can someone explain how it helps them? -- RMS */
6160 if (SCHARS (name) == 0)
6161 return Qt;
6162 #endif /* VMS */
6163 string = Fexpand_file_name (string, dir);
6164 if (!NILP (Vread_file_name_predicate))
6165 return call1 (Vread_file_name_predicate, string);
6166 return Ffile_exists_p (string);
6167 }
6168
6169 DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 6, 0,
6170 doc: /* Read file name, prompting with PROMPT and completing in directory DIR.
6171 Value is not expanded---you must call `expand-file-name' yourself.
6172 Default name to DEFAULT-FILENAME if user exits the minibuffer with
6173 the same non-empty string that was inserted by this function.
6174 (If DEFAULT-FILENAME is omitted, the visited file name is used,
6175 except that if INITIAL is specified, that combined with DIR is used.)
6176 If the user exits with an empty minibuffer, this function returns
6177 an empty string. (This can only happen if the user erased the
6178 pre-inserted contents or if `insert-default-directory' is nil.)
6179 Fourth arg MUSTMATCH non-nil means require existing file's name.
6180 Non-nil and non-t means also require confirmation after completion.
6181 Fifth arg INITIAL specifies text to start with.
6182 If optional sixth arg PREDICATE is non-nil, possible completions and
6183 the resulting file name must satisfy (funcall PREDICATE NAME).
6184 DIR should be an absolute directory name. It defaults to the value of
6185 `default-directory'.
6186
6187 If this command was invoked with the mouse, use a file dialog box if
6188 `use-dialog-box' is non-nil, and the window system or X toolkit in use
6189 provides a file dialog box. */)
6190 (prompt, dir, default_filename, mustmatch, initial, predicate)
6191 Lisp_Object prompt, dir, default_filename, mustmatch, initial, predicate;
6192 {
6193 Lisp_Object val, insdef, tem;
6194 struct gcpro gcpro1, gcpro2;
6195 register char *homedir;
6196 Lisp_Object decoded_homedir;
6197 int replace_in_history = 0;
6198 int add_to_history = 0;
6199 int count;
6200
6201 if (NILP (dir))
6202 dir = current_buffer->directory;
6203 if (NILP (Ffile_name_absolute_p (dir)))
6204 dir = Fexpand_file_name (dir, Qnil);
6205 if (NILP (default_filename))
6206 default_filename
6207 = (!NILP (initial)
6208 ? Fexpand_file_name (initial, dir)
6209 : current_buffer->filename);
6210
6211 /* If dir starts with user's homedir, change that to ~. */
6212 homedir = (char *) egetenv ("HOME");
6213 #ifdef DOS_NT
6214 /* homedir can be NULL in temacs, since Vprocess_environment is not
6215 yet set up. We shouldn't crash in that case. */
6216 if (homedir != 0)
6217 {
6218 homedir = strcpy (alloca (strlen (homedir) + 1), homedir);
6219 CORRECT_DIR_SEPS (homedir);
6220 }
6221 #endif
6222 if (homedir != 0)
6223 decoded_homedir
6224 = DECODE_FILE (make_unibyte_string (homedir, strlen (homedir)));
6225 if (homedir != 0
6226 && STRINGP (dir)
6227 && !strncmp (SDATA (decoded_homedir), SDATA (dir),
6228 SBYTES (decoded_homedir))
6229 && IS_DIRECTORY_SEP (SREF (dir, SBYTES (decoded_homedir))))
6230 {
6231 dir = Fsubstring (dir, make_number (SCHARS (decoded_homedir)), Qnil);
6232 dir = concat2 (build_string ("~"), dir);
6233 }
6234 /* Likewise for default_filename. */
6235 if (homedir != 0
6236 && STRINGP (default_filename)
6237 && !strncmp (SDATA (decoded_homedir), SDATA (default_filename),
6238 SBYTES (decoded_homedir))
6239 && IS_DIRECTORY_SEP (SREF (default_filename, SBYTES (decoded_homedir))))
6240 {
6241 default_filename
6242 = Fsubstring (default_filename,
6243 make_number (SCHARS (decoded_homedir)), Qnil);
6244 default_filename = concat2 (build_string ("~"), default_filename);
6245 }
6246 if (!NILP (default_filename))
6247 {
6248 CHECK_STRING (default_filename);
6249 default_filename = double_dollars (default_filename);
6250 }
6251
6252 if (insert_default_directory && STRINGP (dir))
6253 {
6254 insdef = dir;
6255 if (!NILP (initial))
6256 {
6257 Lisp_Object args[2], pos;
6258
6259 args[0] = insdef;
6260 args[1] = initial;
6261 insdef = Fconcat (2, args);
6262 pos = make_number (SCHARS (double_dollars (dir)));
6263 insdef = Fcons (double_dollars (insdef), pos);
6264 }
6265 else
6266 insdef = double_dollars (insdef);
6267 }
6268 else if (STRINGP (initial))
6269 insdef = Fcons (double_dollars (initial), make_number (0));
6270 else
6271 insdef = Qnil;
6272
6273 if (!NILP (Vread_file_name_function))
6274 {
6275 Lisp_Object args[7];
6276
6277 GCPRO2 (insdef, default_filename);
6278 args[0] = Vread_file_name_function;
6279 args[1] = prompt;
6280 args[2] = dir;
6281 args[3] = default_filename;
6282 args[4] = mustmatch;
6283 args[5] = initial;
6284 args[6] = predicate;
6285 RETURN_UNGCPRO (Ffuncall (7, args));
6286 }
6287
6288 count = SPECPDL_INDEX ();
6289 #if defined VMS || defined DOS_NT || defined MAC_OSX
6290 specbind (intern ("completion-ignore-case"), Qt);
6291 #endif
6292
6293 specbind (intern ("minibuffer-completing-file-name"), Qt);
6294 specbind (intern ("read-file-name-predicate"),
6295 (NILP (predicate) ? Qfile_exists_p : predicate));
6296
6297 GCPRO2 (insdef, default_filename);
6298
6299 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK)
6300 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event))
6301 && use_dialog_box
6302 && use_file_dialog
6303 && have_menus_p ())
6304 {
6305 /* If DIR contains a file name, split it. */
6306 Lisp_Object file;
6307 file = Ffile_name_nondirectory (dir);
6308 if (SCHARS (file) && NILP (default_filename))
6309 {
6310 default_filename = file;
6311 dir = Ffile_name_directory (dir);
6312 }
6313 if (!NILP(default_filename))
6314 default_filename = Fexpand_file_name (default_filename, dir);
6315 val = Fx_file_dialog (prompt, dir, default_filename, mustmatch);
6316 add_to_history = 1;
6317 }
6318 else
6319 #endif
6320 val = Fcompleting_read (prompt, intern ("read-file-name-internal"),
6321 dir, mustmatch, insdef,
6322 Qfile_name_history, default_filename, Qnil);
6323
6324 tem = Fsymbol_value (Qfile_name_history);
6325 if (CONSP (tem) && EQ (XCAR (tem), val))
6326 replace_in_history = 1;
6327
6328 /* If Fcompleting_read returned the inserted default string itself
6329 (rather than a new string with the same contents),
6330 it has to mean that the user typed RET with the minibuffer empty.
6331 In that case, we really want to return ""
6332 so that commands such as set-visited-file-name can distinguish. */
6333 if (EQ (val, default_filename))
6334 {
6335 /* In this case, Fcompleting_read has not added an element
6336 to the history. Maybe we should. */
6337 if (! replace_in_history)
6338 add_to_history = 1;
6339
6340 val = empty_string;
6341 }
6342
6343 unbind_to (count, Qnil);
6344 UNGCPRO;
6345 if (NILP (val))
6346 error ("No file name specified");
6347
6348 tem = Fstring_equal (val, CONSP (insdef) ? XCAR (insdef) : insdef);
6349
6350 if (!NILP (tem) && !NILP (default_filename))
6351 val = default_filename;
6352 val = Fsubstitute_in_file_name (val);
6353
6354 if (replace_in_history)
6355 /* Replace what Fcompleting_read added to the history
6356 with what we will actually return. */
6357 XSETCAR (Fsymbol_value (Qfile_name_history), double_dollars (val));
6358 else if (add_to_history)
6359 {
6360 /* Add the value to the history--but not if it matches
6361 the last value already there. */
6362 Lisp_Object val1 = double_dollars (val);
6363 tem = Fsymbol_value (Qfile_name_history);
6364 if (! CONSP (tem) || NILP (Fequal (XCAR (tem), val1)))
6365 Fset (Qfile_name_history,
6366 Fcons (val1, tem));
6367 }
6368
6369 return val;
6370 }
6371
6372 \f
6373 void
6374 init_fileio_once ()
6375 {
6376 /* Must be set before any path manipulation is performed. */
6377 XSETFASTINT (Vdirectory_sep_char, '/');
6378 }
6379
6380 \f
6381 void
6382 syms_of_fileio ()
6383 {
6384 Qexpand_file_name = intern ("expand-file-name");
6385 Qsubstitute_in_file_name = intern ("substitute-in-file-name");
6386 Qdirectory_file_name = intern ("directory-file-name");
6387 Qfile_name_directory = intern ("file-name-directory");
6388 Qfile_name_nondirectory = intern ("file-name-nondirectory");
6389 Qunhandled_file_name_directory = intern ("unhandled-file-name-directory");
6390 Qfile_name_as_directory = intern ("file-name-as-directory");
6391 Qcopy_file = intern ("copy-file");
6392 Qmake_directory_internal = intern ("make-directory-internal");
6393 Qmake_directory = intern ("make-directory");
6394 Qdelete_directory = intern ("delete-directory");
6395 Qdelete_file = intern ("delete-file");
6396 Qrename_file = intern ("rename-file");
6397 Qadd_name_to_file = intern ("add-name-to-file");
6398 Qmake_symbolic_link = intern ("make-symbolic-link");
6399 Qfile_exists_p = intern ("file-exists-p");
6400 Qfile_executable_p = intern ("file-executable-p");
6401 Qfile_readable_p = intern ("file-readable-p");
6402 Qfile_writable_p = intern ("file-writable-p");
6403 Qfile_symlink_p = intern ("file-symlink-p");
6404 Qaccess_file = intern ("access-file");
6405 Qfile_directory_p = intern ("file-directory-p");
6406 Qfile_regular_p = intern ("file-regular-p");
6407 Qfile_accessible_directory_p = intern ("file-accessible-directory-p");
6408 Qfile_modes = intern ("file-modes");
6409 Qset_file_modes = intern ("set-file-modes");
6410 Qset_file_times = intern ("set-file-times");
6411 Qfile_newer_than_file_p = intern ("file-newer-than-file-p");
6412 Qinsert_file_contents = intern ("insert-file-contents");
6413 Qwrite_region = intern ("write-region");
6414 Qverify_visited_file_modtime = intern ("verify-visited-file-modtime");
6415 Qset_visited_file_modtime = intern ("set-visited-file-modtime");
6416 Qauto_save_coding = intern ("auto-save-coding");
6417
6418 staticpro (&Qexpand_file_name);
6419 staticpro (&Qsubstitute_in_file_name);
6420 staticpro (&Qdirectory_file_name);
6421 staticpro (&Qfile_name_directory);
6422 staticpro (&Qfile_name_nondirectory);
6423 staticpro (&Qunhandled_file_name_directory);
6424 staticpro (&Qfile_name_as_directory);
6425 staticpro (&Qcopy_file);
6426 staticpro (&Qmake_directory_internal);
6427 staticpro (&Qmake_directory);
6428 staticpro (&Qdelete_directory);
6429 staticpro (&Qdelete_file);
6430 staticpro (&Qrename_file);
6431 staticpro (&Qadd_name_to_file);
6432 staticpro (&Qmake_symbolic_link);
6433 staticpro (&Qfile_exists_p);
6434 staticpro (&Qfile_executable_p);
6435 staticpro (&Qfile_readable_p);
6436 staticpro (&Qfile_writable_p);
6437 staticpro (&Qaccess_file);
6438 staticpro (&Qfile_symlink_p);
6439 staticpro (&Qfile_directory_p);
6440 staticpro (&Qfile_regular_p);
6441 staticpro (&Qfile_accessible_directory_p);
6442 staticpro (&Qfile_modes);
6443 staticpro (&Qset_file_modes);
6444 staticpro (&Qset_file_times);
6445 staticpro (&Qfile_newer_than_file_p);
6446 staticpro (&Qinsert_file_contents);
6447 staticpro (&Qwrite_region);
6448 staticpro (&Qverify_visited_file_modtime);
6449 staticpro (&Qset_visited_file_modtime);
6450 staticpro (&Qauto_save_coding);
6451
6452 Qfile_name_history = intern ("file-name-history");
6453 Fset (Qfile_name_history, Qnil);
6454 staticpro (&Qfile_name_history);
6455
6456 Qfile_error = intern ("file-error");
6457 staticpro (&Qfile_error);
6458 Qfile_already_exists = intern ("file-already-exists");
6459 staticpro (&Qfile_already_exists);
6460 Qfile_date_error = intern ("file-date-error");
6461 staticpro (&Qfile_date_error);
6462 Qexcl = intern ("excl");
6463 staticpro (&Qexcl);
6464
6465 #ifdef DOS_NT
6466 Qfind_buffer_file_type = intern ("find-buffer-file-type");
6467 staticpro (&Qfind_buffer_file_type);
6468 #endif /* DOS_NT */
6469
6470 DEFVAR_LISP ("file-name-coding-system", &Vfile_name_coding_system,
6471 doc: /* *Coding system for encoding file names.
6472 If it is nil, `default-file-name-coding-system' (which see) is used. */);
6473 Vfile_name_coding_system = Qnil;
6474
6475 DEFVAR_LISP ("default-file-name-coding-system",
6476 &Vdefault_file_name_coding_system,
6477 doc: /* Default coding system for encoding file names.
6478 This variable is used only when `file-name-coding-system' is nil.
6479
6480 This variable is set/changed by the command `set-language-environment'.
6481 User should not set this variable manually,
6482 instead use `file-name-coding-system' to get a constant encoding
6483 of file names regardless of the current language environment. */);
6484 Vdefault_file_name_coding_system = Qnil;
6485
6486 DEFVAR_LISP ("auto-save-file-format", &Vauto_save_file_format,
6487 doc: /* *Format in which to write auto-save files.
6488 Should be a list of symbols naming formats that are defined in `format-alist'.
6489 If it is t, which is the default, auto-save files are written in the
6490 same format as a regular save would use. */);
6491 Vauto_save_file_format = Qt;
6492
6493 Qformat_decode = intern ("format-decode");
6494 staticpro (&Qformat_decode);
6495 Qformat_annotate_function = intern ("format-annotate-function");
6496 staticpro (&Qformat_annotate_function);
6497 Qafter_insert_file_set_coding = intern ("after-insert-file-set-coding");
6498 staticpro (&Qafter_insert_file_set_coding);
6499
6500 Qcar_less_than_car = intern ("car-less-than-car");
6501 staticpro (&Qcar_less_than_car);
6502
6503 Fput (Qfile_error, Qerror_conditions,
6504 Fcons (Qfile_error, Fcons (Qerror, Qnil)));
6505 Fput (Qfile_error, Qerror_message,
6506 build_string ("File error"));
6507
6508 Fput (Qfile_already_exists, Qerror_conditions,
6509 Fcons (Qfile_already_exists,
6510 Fcons (Qfile_error, Fcons (Qerror, Qnil))));
6511 Fput (Qfile_already_exists, Qerror_message,
6512 build_string ("File already exists"));
6513
6514 Fput (Qfile_date_error, Qerror_conditions,
6515 Fcons (Qfile_date_error,
6516 Fcons (Qfile_error, Fcons (Qerror, Qnil))));
6517 Fput (Qfile_date_error, Qerror_message,
6518 build_string ("Cannot set file date"));
6519
6520 DEFVAR_LISP ("read-file-name-function", &Vread_file_name_function,
6521 doc: /* If this is non-nil, `read-file-name' does its work by calling this function. */);
6522 Vread_file_name_function = Qnil;
6523
6524 DEFVAR_LISP ("read-file-name-predicate", &Vread_file_name_predicate,
6525 doc: /* Current predicate used by `read-file-name-internal'. */);
6526 Vread_file_name_predicate = Qnil;
6527
6528 DEFVAR_BOOL ("insert-default-directory", &insert_default_directory,
6529 doc: /* *Non-nil means when reading a filename start with default dir in minibuffer.
6530 If the initial minibuffer contents are non-empty, you can usually
6531 request a default filename by typing RETURN without editing. For some
6532 commands, exiting with an empty minibuffer has a special meaning,
6533 such as making the current buffer visit no file in the case of
6534 `set-visited-file-name'.
6535 If this variable is non-nil, the minibuffer contents are always
6536 initially non-empty and typing RETURN without editing will fetch the
6537 default name, if one is provided. Note however that this default name
6538 is not necessarily the name originally inserted in the minibuffer, if
6539 that is just the default directory.
6540 If this variable is nil, the minibuffer often starts out empty. In
6541 that case you may have to explicitly fetch the next history element to
6542 request the default name. */);
6543 insert_default_directory = 1;
6544
6545 DEFVAR_BOOL ("vms-stmlf-recfm", &vms_stmlf_recfm,
6546 doc: /* *Non-nil means write new files with record format `stmlf'.
6547 nil means use format `var'. This variable is meaningful only on VMS. */);
6548 vms_stmlf_recfm = 0;
6549
6550 DEFVAR_LISP ("directory-sep-char", &Vdirectory_sep_char,
6551 doc: /* Directory separator character for built-in functions that return file names.
6552 The value is always ?/. Don't use this variable, just use `/'. */);
6553
6554 DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist,
6555 doc: /* *Alist of elements (REGEXP . HANDLER) for file names handled specially.
6556 If a file name matches REGEXP, then all I/O on that file is done by calling
6557 HANDLER.
6558
6559 The first argument given to HANDLER is the name of the I/O primitive
6560 to be handled; the remaining arguments are the arguments that were
6561 passed to that primitive. For example, if you do
6562 (file-exists-p FILENAME)
6563 and FILENAME is handled by HANDLER, then HANDLER is called like this:
6564 (funcall HANDLER 'file-exists-p FILENAME)
6565 The function `find-file-name-handler' checks this list for a handler
6566 for its argument. */);
6567 Vfile_name_handler_alist = Qnil;
6568
6569 DEFVAR_LISP ("set-auto-coding-function",
6570 &Vset_auto_coding_function,
6571 doc: /* If non-nil, a function to call to decide a coding system of file.
6572 Two arguments are passed to this function: the file name
6573 and the length of a file contents following the point.
6574 This function should return a coding system to decode the file contents.
6575 It should check the file name against `auto-coding-alist'.
6576 If no coding system is decided, it should check a coding system
6577 specified in the heading lines with the format:
6578 -*- ... coding: CODING-SYSTEM; ... -*-
6579 or local variable spec of the tailing lines with `coding:' tag. */);
6580 Vset_auto_coding_function = Qnil;
6581
6582 DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions,
6583 doc: /* A list of functions to be called at the end of `insert-file-contents'.
6584 Each is passed one argument, the number of characters inserted.
6585 It should return the new character count, and leave point the same.
6586 If `insert-file-contents' is intercepted by a handler from
6587 `file-name-handler-alist', that handler is responsible for calling the
6588 functions in `after-insert-file-functions' if appropriate. */);
6589 Vafter_insert_file_functions = Qnil;
6590
6591 DEFVAR_LISP ("write-region-annotate-functions", &Vwrite_region_annotate_functions,
6592 doc: /* A list of functions to be called at the start of `write-region'.
6593 Each is passed two arguments, START and END as for `write-region'.
6594 These are usually two numbers but not always; see the documentation
6595 for `write-region'. The function should return a list of pairs
6596 of the form (POSITION . STRING), consisting of strings to be effectively
6597 inserted at the specified positions of the file being written (1 means to
6598 insert before the first byte written). The POSITIONs must be sorted into
6599 increasing order. If there are several functions in the list, the several
6600 lists are merged destructively. Alternatively, the function can return
6601 with a different buffer current; in that case it should pay attention
6602 to the annotations returned by previous functions and listed in
6603 `write-region-annotations-so-far'.*/);
6604 Vwrite_region_annotate_functions = Qnil;
6605 staticpro (&Qwrite_region_annotate_functions);
6606 Qwrite_region_annotate_functions
6607 = intern ("write-region-annotate-functions");
6608
6609 DEFVAR_LISP ("write-region-annotations-so-far",
6610 &Vwrite_region_annotations_so_far,
6611 doc: /* When an annotation function is called, this holds the previous annotations.
6612 These are the annotations made by other annotation functions
6613 that were already called. See also `write-region-annotate-functions'. */);
6614 Vwrite_region_annotations_so_far = Qnil;
6615
6616 DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers,
6617 doc: /* A list of file name handlers that temporarily should not be used.
6618 This applies only to the operation `inhibit-file-name-operation'. */);
6619 Vinhibit_file_name_handlers = Qnil;
6620
6621 DEFVAR_LISP ("inhibit-file-name-operation", &Vinhibit_file_name_operation,
6622 doc: /* The operation for which `inhibit-file-name-handlers' is applicable. */);
6623 Vinhibit_file_name_operation = Qnil;
6624
6625 DEFVAR_LISP ("auto-save-list-file-name", &Vauto_save_list_file_name,
6626 doc: /* File name in which we write a list of all auto save file names.
6627 This variable is initialized automatically from `auto-save-list-file-prefix'
6628 shortly after Emacs reads your `.emacs' file, if you have not yet given it
6629 a non-nil value. */);
6630 Vauto_save_list_file_name = Qnil;
6631
6632 defsubr (&Sfind_file_name_handler);
6633 defsubr (&Sfile_name_directory);
6634 defsubr (&Sfile_name_nondirectory);
6635 defsubr (&Sunhandled_file_name_directory);
6636 defsubr (&Sfile_name_as_directory);
6637 defsubr (&Sdirectory_file_name);
6638 defsubr (&Smake_temp_name);
6639 defsubr (&Sexpand_file_name);
6640 defsubr (&Ssubstitute_in_file_name);
6641 defsubr (&Scopy_file);
6642 defsubr (&Smake_directory_internal);
6643 defsubr (&Sdelete_directory);
6644 defsubr (&Sdelete_file);
6645 defsubr (&Srename_file);
6646 defsubr (&Sadd_name_to_file);
6647 #ifdef S_IFLNK
6648 defsubr (&Smake_symbolic_link);
6649 #endif /* S_IFLNK */
6650 #ifdef VMS
6651 defsubr (&Sdefine_logical_name);
6652 #endif /* VMS */
6653 #ifdef HPUX_NET
6654 defsubr (&Ssysnetunam);
6655 #endif /* HPUX_NET */
6656 defsubr (&Sfile_name_absolute_p);
6657 defsubr (&Sfile_exists_p);
6658 defsubr (&Sfile_executable_p);
6659 defsubr (&Sfile_readable_p);
6660 defsubr (&Sfile_writable_p);
6661 defsubr (&Saccess_file);
6662 defsubr (&Sfile_symlink_p);
6663 defsubr (&Sfile_directory_p);
6664 defsubr (&Sfile_accessible_directory_p);
6665 defsubr (&Sfile_regular_p);
6666 defsubr (&Sfile_modes);
6667 defsubr (&Sset_file_modes);
6668 defsubr (&Sset_file_times);
6669 defsubr (&Sset_default_file_modes);
6670 defsubr (&Sdefault_file_modes);
6671 defsubr (&Sfile_newer_than_file_p);
6672 defsubr (&Sinsert_file_contents);
6673 defsubr (&Swrite_region);
6674 defsubr (&Scar_less_than_car);
6675 defsubr (&Sverify_visited_file_modtime);
6676 defsubr (&Sclear_visited_file_modtime);
6677 defsubr (&Svisited_file_modtime);
6678 defsubr (&Sset_visited_file_modtime);
6679 defsubr (&Sdo_auto_save);
6680 defsubr (&Sset_buffer_auto_saved);
6681 defsubr (&Sclear_buffer_auto_save_failure);
6682 defsubr (&Srecent_auto_save_p);
6683
6684 defsubr (&Sread_file_name_internal);
6685 defsubr (&Sread_file_name);
6686
6687 #ifdef unix
6688 defsubr (&Sunix_sync);
6689 #endif
6690 }
6691
6692 /* arch-tag: 64ba3fd7-f844-4fb2-ba4b-427eb928786c
6693 (do not change this comment) */