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