1 /* File IO for GNU Emacs.
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1996,
3 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
31 #include <sys/types.h>
38 #if !defined (S_ISLNK) && defined (S_IFLNK)
39 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
42 #if !defined (S_ISFIFO) && defined (S_IFIFO)
43 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
46 #if !defined (S_ISREG) && defined (S_IFREG)
47 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
72 #include "intervals.h"
74 #include "character.h"
77 #include "blockinput.h"
79 #include "dispextern.h"
86 #endif /* not WINDOWSNT */
90 #include <sys/param.h>
98 #define CORRECT_DIR_SEPS(s) \
99 do { if ('/' == DIRECTORY_SEP) dostounix_filename (s); \
100 else unixtodos_filename (s); \
102 /* On Windows, drive letters must be alphabetic - on DOS, the Netware
103 redirector allows the six letters between 'Z' and 'a' as well. */
105 #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z')
108 #define IS_DRIVE(x) isalpha (x)
110 /* Need to lower-case the drive letter, or else expanded
111 filenames will sometimes compare inequal, because
112 `expand-file-name' doesn't always down-case the drive letter. */
113 #define DRIVE_LETTER(x) (tolower (x))
134 #include "commands.h"
135 extern int use_dialog_box
;
136 extern int use_file_dialog
;
150 #ifndef FILE_SYSTEM_CASE
151 #define FILE_SYSTEM_CASE(filename) (filename)
154 /* Nonzero during writing of auto-save files */
157 /* Set by auto_save_1 to mode of original file so Fwrite_region will create
158 a new file with the same mode as the original */
159 int auto_save_mode_bits
;
161 /* The symbol bound to coding-system-for-read when
162 insert-file-contents is called for recovering a file. This is not
163 an actual coding system name, but just an indicator to tell
164 insert-file-contents to use `emacs-mule' with a special flag for
165 auto saving and recovering a file. */
166 Lisp_Object Qauto_save_coding
;
168 /* Coding system for file names, or nil if none. */
169 Lisp_Object Vfile_name_coding_system
;
171 /* Coding system for file names used only when
172 Vfile_name_coding_system is nil. */
173 Lisp_Object Vdefault_file_name_coding_system
;
175 /* Alist of elements (REGEXP . HANDLER) for file names
176 whose I/O is done with a special handler. */
177 Lisp_Object Vfile_name_handler_alist
;
179 /* Property name of a file name handler,
180 which gives a list of operations it handles.. */
181 Lisp_Object Qoperations
;
183 /* Lisp functions for translating file formats */
184 Lisp_Object Qformat_decode
, Qformat_annotate_function
;
186 /* Function to be called to decide a coding system of a reading file. */
187 Lisp_Object Vset_auto_coding_function
;
189 /* Functions to be called to process text properties in inserted file. */
190 Lisp_Object Vafter_insert_file_functions
;
192 /* Lisp function for setting buffer-file-coding-system and the
193 multibyteness of the current buffer after inserting a file. */
194 Lisp_Object Qafter_insert_file_set_coding
;
196 /* Functions to be called to create text property annotations for file. */
197 Lisp_Object Vwrite_region_annotate_functions
;
198 Lisp_Object Qwrite_region_annotate_functions
;
200 /* During build_annotations, each time an annotation function is called,
201 this holds the annotations made by the previous functions. */
202 Lisp_Object Vwrite_region_annotations_so_far
;
204 /* File name in which we write a list of all our auto save files. */
205 Lisp_Object Vauto_save_list_file_name
;
207 /* Function to call to read a file name. */
208 Lisp_Object Vread_file_name_function
;
210 /* Current predicate used by read_file_name_internal. */
211 Lisp_Object Vread_file_name_predicate
;
213 /* Nonzero means completion ignores case when reading file name. */
214 int read_file_name_completion_ignore_case
;
216 /* Nonzero means, when reading a filename in the minibuffer,
217 start out by inserting the default directory into the minibuffer. */
218 int insert_default_directory
;
220 /* On VMS, nonzero means write new files with record format stmlf.
221 Zero means use var format. */
224 /* On NT, specifies the directory separator character, used (eg.) when
225 expanding file names. This can be bound to / or \. */
226 Lisp_Object Vdirectory_sep_char
;
229 /* Nonzero means skip the call to fsync in Fwrite-region. */
230 int write_region_inhibit_fsync
;
233 extern Lisp_Object Vuser_login_name
;
236 extern Lisp_Object Vw32_get_true_file_attributes
;
239 extern int minibuf_level
;
241 extern int minibuffer_auto_raise
;
243 extern int history_delete_duplicates
;
245 /* These variables describe handlers that have "already" had a chance
246 to handle the current operation.
248 Vinhibit_file_name_handlers is a list of file name handlers.
249 Vinhibit_file_name_operation is the operation being handled.
250 If we try to handle that operation, we ignore those handlers. */
252 static Lisp_Object Vinhibit_file_name_handlers
;
253 static Lisp_Object Vinhibit_file_name_operation
;
255 Lisp_Object Qfile_error
, Qfile_already_exists
, Qfile_date_error
;
257 Lisp_Object Qfile_name_history
;
259 Lisp_Object Qcar_less_than_car
;
261 static int a_write
P_ ((int, Lisp_Object
, int, int,
262 Lisp_Object
*, struct coding_system
*));
263 static int e_write
P_ ((int, Lisp_Object
, int, int, struct coding_system
*));
267 report_file_error (string
, data
)
271 Lisp_Object errstring
;
275 synchronize_system_messages_locale ();
276 str
= strerror (errorno
);
277 errstring
= code_convert_string_norecord (make_unibyte_string (str
,
279 Vlocale_coding_system
, 0);
285 xsignal (Qfile_already_exists
, Fcons (errstring
, data
));
288 /* System error messages are capitalized. Downcase the initial
289 unless it is followed by a slash. */
290 if (SREF (errstring
, 1) != '/')
291 SSET (errstring
, 0, DOWNCASE (SREF (errstring
, 0)));
293 xsignal (Qfile_error
,
294 Fcons (build_string (string
), Fcons (errstring
, data
)));
299 close_file_unwind (fd
)
302 emacs_close (XFASTINT (fd
));
306 /* Restore point, having saved it as a marker. */
309 restore_point_unwind (location
)
310 Lisp_Object location
;
312 Fgoto_char (location
);
313 Fset_marker (location
, Qnil
, Qnil
);
318 Lisp_Object Qexpand_file_name
;
319 Lisp_Object Qsubstitute_in_file_name
;
320 Lisp_Object Qdirectory_file_name
;
321 Lisp_Object Qfile_name_directory
;
322 Lisp_Object Qfile_name_nondirectory
;
323 Lisp_Object Qunhandled_file_name_directory
;
324 Lisp_Object Qfile_name_as_directory
;
325 Lisp_Object Qcopy_file
;
326 Lisp_Object Qmake_directory_internal
;
327 Lisp_Object Qmake_directory
;
328 Lisp_Object Qdelete_directory
;
329 Lisp_Object Qdelete_file
;
330 Lisp_Object Qrename_file
;
331 Lisp_Object Qadd_name_to_file
;
332 Lisp_Object Qmake_symbolic_link
;
333 Lisp_Object Qfile_exists_p
;
334 Lisp_Object Qfile_executable_p
;
335 Lisp_Object Qfile_readable_p
;
336 Lisp_Object Qfile_writable_p
;
337 Lisp_Object Qfile_symlink_p
;
338 Lisp_Object Qaccess_file
;
339 Lisp_Object Qfile_directory_p
;
340 Lisp_Object Qfile_regular_p
;
341 Lisp_Object Qfile_accessible_directory_p
;
342 Lisp_Object Qfile_modes
;
343 Lisp_Object Qset_file_modes
;
344 Lisp_Object Qset_file_times
;
345 Lisp_Object Qfile_newer_than_file_p
;
346 Lisp_Object Qinsert_file_contents
;
347 Lisp_Object Qwrite_region
;
348 Lisp_Object Qverify_visited_file_modtime
;
349 Lisp_Object Qset_visited_file_modtime
;
351 DEFUN ("find-file-name-handler", Ffind_file_name_handler
, Sfind_file_name_handler
, 2, 2, 0,
352 doc
: /* Return FILENAME's handler function for OPERATION, if it has one.
353 Otherwise, return nil.
354 A file name is handled if one of the regular expressions in
355 `file-name-handler-alist' matches it.
357 If OPERATION equals `inhibit-file-name-operation', then we ignore
358 any handlers that are members of `inhibit-file-name-handlers',
359 but we still do run any other handlers. This lets handlers
360 use the standard functions without calling themselves recursively. */)
361 (filename
, operation
)
362 Lisp_Object filename
, operation
;
364 /* This function must not munge the match data. */
365 Lisp_Object chain
, inhibited_handlers
, result
;
369 CHECK_STRING (filename
);
371 if (EQ (operation
, Vinhibit_file_name_operation
))
372 inhibited_handlers
= Vinhibit_file_name_handlers
;
374 inhibited_handlers
= Qnil
;
376 for (chain
= Vfile_name_handler_alist
; CONSP (chain
);
377 chain
= XCDR (chain
))
383 Lisp_Object string
= XCAR (elt
);
385 Lisp_Object handler
= XCDR (elt
);
386 Lisp_Object operations
= Qnil
;
388 if (SYMBOLP (handler
))
389 operations
= Fget (handler
, Qoperations
);
392 && (match_pos
= fast_string_match (string
, filename
)) > pos
393 && (NILP (operations
) || ! NILP (Fmemq (operation
, operations
))))
397 handler
= XCDR (elt
);
398 tem
= Fmemq (handler
, inhibited_handlers
);
412 DEFUN ("file-name-directory", Ffile_name_directory
, Sfile_name_directory
,
414 doc
: /* Return the directory component in file name FILENAME.
415 Return nil if FILENAME does not include a directory.
416 Otherwise return a directory name.
417 Given a Unix syntax file name, returns a string ending in slash;
418 on VMS, perhaps instead a string ending in `:', `]' or `>'. */)
420 Lisp_Object filename
;
423 register const unsigned char *beg
;
425 register unsigned char *beg
;
427 register const unsigned char *p
;
430 CHECK_STRING (filename
);
432 /* If the file name has special constructs in it,
433 call the corresponding file handler. */
434 handler
= Ffind_file_name_handler (filename
, Qfile_name_directory
);
436 return call2 (handler
, Qfile_name_directory
, filename
);
438 filename
= FILE_SYSTEM_CASE (filename
);
439 beg
= SDATA (filename
);
441 beg
= strcpy (alloca (strlen (beg
) + 1), beg
);
443 p
= beg
+ SBYTES (filename
);
445 while (p
!= beg
&& !IS_DIRECTORY_SEP (p
[-1])
447 && p
[-1] != ':' && p
[-1] != ']' && p
[-1] != '>'
450 /* only recognise drive specifier at the beginning */
452 /* handle the "/:d:foo" and "/:foo" cases correctly */
453 && ((p
== beg
+ 2 && !IS_DIRECTORY_SEP (*beg
))
454 || (p
== beg
+ 4 && IS_DIRECTORY_SEP (*beg
))))
461 /* Expansion of "c:" to drive and default directory. */
464 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
465 unsigned char *res
= alloca (MAXPATHLEN
+ 1);
466 unsigned char *r
= res
;
468 if (p
== beg
+ 4 && IS_DIRECTORY_SEP (*beg
) && beg
[1] == ':')
470 strncpy (res
, beg
, 2);
475 if (getdefdir (toupper (*beg
) - 'A' + 1, r
))
477 if (!IS_DIRECTORY_SEP (res
[strlen (res
) - 1]))
480 p
= beg
+ strlen (beg
);
483 CORRECT_DIR_SEPS (beg
);
486 return make_specified_string (beg
, -1, p
- beg
, STRING_MULTIBYTE (filename
));
489 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory
,
490 Sfile_name_nondirectory
, 1, 1, 0,
491 doc
: /* Return file name FILENAME sans its directory.
492 For example, in a Unix-syntax file name,
493 this is everything after the last slash,
494 or the entire name if it contains no slash. */)
496 Lisp_Object filename
;
498 register const unsigned char *beg
, *p
, *end
;
501 CHECK_STRING (filename
);
503 /* If the file name has special constructs in it,
504 call the corresponding file handler. */
505 handler
= Ffind_file_name_handler (filename
, Qfile_name_nondirectory
);
507 return call2 (handler
, Qfile_name_nondirectory
, filename
);
509 beg
= SDATA (filename
);
510 end
= p
= beg
+ SBYTES (filename
);
512 while (p
!= beg
&& !IS_DIRECTORY_SEP (p
[-1])
514 && p
[-1] != ':' && p
[-1] != ']' && p
[-1] != '>'
517 /* only recognise drive specifier at beginning */
519 /* handle the "/:d:foo" case correctly */
520 && (p
== beg
+ 2 || (p
== beg
+ 4 && IS_DIRECTORY_SEP (*beg
))))
525 return make_specified_string (p
, -1, end
- p
, STRING_MULTIBYTE (filename
));
528 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory
,
529 Sunhandled_file_name_directory
, 1, 1, 0,
530 doc
: /* Return a directly usable directory name somehow associated with FILENAME.
531 A `directly usable' directory name is one that may be used without the
532 intervention of any file handler.
533 If FILENAME is a directly usable file itself, return
534 \(file-name-directory FILENAME).
535 If FILENAME refers to a file which is not accessible from a local process,
536 then this should return nil.
537 The `call-process' and `start-process' functions use this function to
538 get a current directory to run processes in. */)
540 Lisp_Object filename
;
544 /* If the file name has special constructs in it,
545 call the corresponding file handler. */
546 handler
= Ffind_file_name_handler (filename
, Qunhandled_file_name_directory
);
548 return call2 (handler
, Qunhandled_file_name_directory
, filename
);
550 return Ffile_name_directory (filename
);
555 file_name_as_directory (out
, in
)
558 int size
= strlen (in
) - 1;
571 /* Is it already a directory string? */
572 if (in
[size
] == ':' || in
[size
] == ']' || in
[size
] == '>')
574 /* Is it a VMS directory file name? If so, hack VMS syntax. */
575 else if (! index (in
, '/')
576 && ((size
> 3 && ! strcmp (&in
[size
- 3], ".DIR"))
577 || (size
> 3 && ! strcmp (&in
[size
- 3], ".dir"))
578 || (size
> 5 && (! strncmp (&in
[size
- 5], ".DIR", 4)
579 || ! strncmp (&in
[size
- 5], ".dir", 4))
580 && (in
[size
- 1] == '.' || in
[size
- 1] == ';')
581 && in
[size
] == '1')))
583 register char *p
, *dot
;
587 dir:x.dir --> dir:[x]
588 dir:[x]y.dir --> dir:[x.y] */
590 while (p
!= in
&& *p
!= ':' && *p
!= '>' && *p
!= ']') p
--;
593 strncpy (out
, in
, p
- in
);
612 dot
= index (p
, '.');
615 /* blindly remove any extension */
616 size
= strlen (out
) + (dot
- p
);
617 strncat (out
, p
, dot
- p
);
628 /* For Unix syntax, Append a slash if necessary */
629 if (!IS_DIRECTORY_SEP (out
[size
]))
631 /* Cannot use DIRECTORY_SEP, which could have any value */
633 out
[size
+ 2] = '\0';
636 CORRECT_DIR_SEPS (out
);
642 DEFUN ("file-name-as-directory", Ffile_name_as_directory
,
643 Sfile_name_as_directory
, 1, 1, 0,
644 doc
: /* Return a string representing the file name FILE interpreted as a directory.
645 This operation exists because a directory is also a file, but its name as
646 a directory is different from its name as a file.
647 The result can be used as the value of `default-directory'
648 or passed as second argument to `expand-file-name'.
649 For a Unix-syntax file name, just appends a slash.
650 On VMS, converts \"[X]FOO.DIR\" to \"[X.FOO]\", etc. */)
661 /* If the file name has special constructs in it,
662 call the corresponding file handler. */
663 handler
= Ffind_file_name_handler (file
, Qfile_name_as_directory
);
665 return call2 (handler
, Qfile_name_as_directory
, file
);
667 buf
= (char *) alloca (SBYTES (file
) + 10);
668 file_name_as_directory (buf
, SDATA (file
));
669 return make_specified_string (buf
, -1, strlen (buf
),
670 STRING_MULTIBYTE (file
));
674 * Convert from directory name to filename.
676 * xyzzy:[mukesh.emacs] => xyzzy:[mukesh]emacs.dir.1
677 * xyzzy:[mukesh] => xyzzy:[000000]mukesh.dir.1
678 * On UNIX, it's simple: just make sure there isn't a terminating /
680 * Value is nonzero if the string output is different from the input.
684 directory_file_name (src
, dst
)
692 struct FAB fab
= cc$rms_fab
;
693 struct NAM nam
= cc$rms_nam
;
694 char esa
[NAM$C_MAXRSS
];
699 if (! index (src
, '/')
700 && (src
[slen
- 1] == ']'
701 || src
[slen
- 1] == ':'
702 || src
[slen
- 1] == '>'))
704 /* VMS style - convert [x.y.z] to [x.y]z, [x] to [000000]x */
706 fab
.fab$b_fns
= slen
;
707 fab
.fab$l_nam
= &nam
;
708 fab
.fab$l_fop
= FAB$M_NAM
;
711 nam
.nam$b_ess
= sizeof esa
;
712 nam
.nam$b_nop
|= NAM$M_SYNCHK
;
714 /* We call SYS$PARSE to handle such things as [--] for us. */
715 if (SYS$
PARSE (&fab
, 0, 0) == RMS$_NORMAL
)
717 slen
= nam
.nam$b_esl
;
718 if (esa
[slen
- 1] == ';' && esa
[slen
- 2] == '.')
723 if (src
[slen
- 1] != ']' && src
[slen
- 1] != '>')
725 /* what about when we have logical_name:???? */
726 if (src
[slen
- 1] == ':')
727 { /* Xlate logical name and see what we get */
728 ptr
= strcpy (dst
, src
); /* upper case for getenv */
731 if ('a' <= *ptr
&& *ptr
<= 'z')
735 dst
[slen
- 1] = 0; /* remove colon */
736 if (!(src
= egetenv (dst
)))
738 /* should we jump to the beginning of this procedure?
739 Good points: allows us to use logical names that xlate
741 Bad points: can be a problem if we just translated to a device
743 For now, I'll punt and always expect VMS names, and hope for
746 if (src
[slen
- 1] != ']' && src
[slen
- 1] != '>')
747 { /* no recursion here! */
753 { /* not a directory spec */
758 bracket
= src
[slen
- 1];
760 /* If bracket is ']' or '>', bracket - 2 is the corresponding
762 ptr
= index (src
, bracket
- 2);
764 { /* no opening bracket */
768 if (!(rptr
= rindex (src
, '.')))
771 strncpy (dst
, src
, slen
);
775 dst
[slen
++] = bracket
;
780 /* If we have the top-level of a rooted directory (i.e. xx:[000000]),
781 then translate the device and recurse. */
782 if (dst
[slen
- 1] == ':'
783 && dst
[slen
- 2] != ':' /* skip decnet nodes */
784 && strcmp (src
+ slen
, "[000000]") == 0)
786 dst
[slen
- 1] = '\0';
787 if ((ptr
= egetenv (dst
))
788 && (rlen
= strlen (ptr
) - 1) > 0
789 && (ptr
[rlen
] == ']' || ptr
[rlen
] == '>')
790 && ptr
[rlen
- 1] == '.')
792 char * buf
= (char *) alloca (strlen (ptr
) + 1);
796 return directory_file_name (buf
, dst
);
801 strcat (dst
, "[000000]");
805 rlen
= strlen (rptr
) - 1;
806 strncat (dst
, rptr
, rlen
);
807 dst
[slen
+ rlen
] = '\0';
808 strcat (dst
, ".DIR.1");
812 /* Process as Unix format: just remove any final slash.
813 But leave "/" unchanged; do not change it to "". */
816 && IS_DIRECTORY_SEP (dst
[slen
- 1])
818 && !IS_ANY_SEP (dst
[slen
- 2])
823 CORRECT_DIR_SEPS (dst
);
828 DEFUN ("directory-file-name", Fdirectory_file_name
, Sdirectory_file_name
,
830 doc
: /* Returns the file name of the directory named DIRECTORY.
831 This is the name of the file that holds the data for the directory DIRECTORY.
832 This operation exists because a directory is also a file, but its name as
833 a directory is different from its name as a file.
834 In Unix-syntax, this function just removes the final slash.
835 On VMS, given a VMS-syntax directory name such as \"[X.Y]\",
836 it returns a file name such as \"[X]Y.DIR.1\". */)
838 Lisp_Object directory
;
843 CHECK_STRING (directory
);
845 if (NILP (directory
))
848 /* If the file name has special constructs in it,
849 call the corresponding file handler. */
850 handler
= Ffind_file_name_handler (directory
, Qdirectory_file_name
);
852 return call2 (handler
, Qdirectory_file_name
, directory
);
855 /* 20 extra chars is insufficient for VMS, since we might perform a
856 logical name translation. an equivalence string can be up to 255
857 chars long, so grab that much extra space... - sss */
858 buf
= (char *) alloca (SBYTES (directory
) + 20 + 255);
860 buf
= (char *) alloca (SBYTES (directory
) + 20);
862 directory_file_name (SDATA (directory
), buf
);
863 return make_specified_string (buf
, -1, strlen (buf
),
864 STRING_MULTIBYTE (directory
));
867 static char make_temp_name_tbl
[64] =
869 'A','B','C','D','E','F','G','H',
870 'I','J','K','L','M','N','O','P',
871 'Q','R','S','T','U','V','W','X',
872 'Y','Z','a','b','c','d','e','f',
873 'g','h','i','j','k','l','m','n',
874 'o','p','q','r','s','t','u','v',
875 'w','x','y','z','0','1','2','3',
876 '4','5','6','7','8','9','-','_'
879 static unsigned make_temp_name_count
, make_temp_name_count_initialized_p
;
881 /* Value is a temporary file name starting with PREFIX, a string.
883 The Emacs process number forms part of the result, so there is
884 no danger of generating a name being used by another process.
885 In addition, this function makes an attempt to choose a name
886 which has no existing file. To make this work, PREFIX should be
887 an absolute file name.
889 BASE64_P non-zero means add the pid as 3 characters in base64
890 encoding. In this case, 6 characters will be added to PREFIX to
891 form the file name. Otherwise, if Emacs is running on a system
892 with long file names, add the pid as a decimal number.
894 This function signals an error if no unique file name could be
898 make_temp_name (prefix
, base64_p
)
905 unsigned char *p
, *data
;
909 CHECK_STRING (prefix
);
911 /* VAL is created by adding 6 characters to PREFIX. The first
912 three are the PID of this process, in base 64, and the second
913 three are incremented if the file already exists. This ensures
914 262144 unique file names per PID per PREFIX. */
916 pid
= (int) getpid ();
920 pidbuf
[0] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
921 pidbuf
[1] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
922 pidbuf
[2] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
927 #ifdef HAVE_LONG_FILE_NAMES
928 sprintf (pidbuf
, "%d", pid
);
929 pidlen
= strlen (pidbuf
);
931 pidbuf
[0] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
932 pidbuf
[1] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
933 pidbuf
[2] = make_temp_name_tbl
[pid
& 63], pid
>>= 6;
938 len
= SBYTES (prefix
); clen
= SCHARS (prefix
);
939 val
= make_uninit_multibyte_string (clen
+ 3 + pidlen
, len
+ 3 + pidlen
);
940 if (!STRING_MULTIBYTE (prefix
))
941 STRING_SET_UNIBYTE (val
);
943 bcopy(SDATA (prefix
), data
, len
);
946 bcopy (pidbuf
, p
, pidlen
);
949 /* Here we try to minimize useless stat'ing when this function is
950 invoked many times successively with the same PREFIX. We achieve
951 this by initializing count to a random value, and incrementing it
954 We don't want make-temp-name to be called while dumping,
955 because then make_temp_name_count_initialized_p would get set
956 and then make_temp_name_count would not be set when Emacs starts. */
958 if (!make_temp_name_count_initialized_p
)
960 make_temp_name_count
= (unsigned) time (NULL
);
961 make_temp_name_count_initialized_p
= 1;
967 unsigned num
= make_temp_name_count
;
969 p
[0] = make_temp_name_tbl
[num
& 63], num
>>= 6;
970 p
[1] = make_temp_name_tbl
[num
& 63], num
>>= 6;
971 p
[2] = make_temp_name_tbl
[num
& 63], num
>>= 6;
973 /* Poor man's congruential RN generator. Replace with
974 ++make_temp_name_count for debugging. */
975 make_temp_name_count
+= 25229;
976 make_temp_name_count
%= 225307;
978 if (stat (data
, &ignored
) < 0)
980 /* We want to return only if errno is ENOENT. */
984 /* The error here is dubious, but there is little else we
985 can do. The alternatives are to return nil, which is
986 as bad as (and in many cases worse than) throwing the
987 error, or to ignore the error, which will likely result
988 in looping through 225307 stat's, which is not only
989 dog-slow, but also useless since it will fallback to
990 the errow below, anyway. */
991 report_file_error ("Cannot create temporary name for prefix",
992 Fcons (prefix
, Qnil
));
997 error ("Cannot create temporary name for prefix `%s'",
1003 DEFUN ("make-temp-name", Fmake_temp_name
, Smake_temp_name
, 1, 1, 0,
1004 doc
: /* Generate temporary file name (string) starting with PREFIX (a string).
1005 The Emacs process number forms part of the result,
1006 so there is no danger of generating a name being used by another process.
1008 In addition, this function makes an attempt to choose a name
1009 which has no existing file. To make this work,
1010 PREFIX should be an absolute file name.
1012 There is a race condition between calling `make-temp-name' and creating the
1013 file which opens all kinds of security holes. For that reason, you should
1014 probably use `make-temp-file' instead, except in three circumstances:
1016 * If you are creating the file in the user's home directory.
1017 * If you are creating a directory rather than an ordinary file.
1018 * If you are taking special precautions as `make-temp-file' does. */)
1022 return make_temp_name (prefix
, 0);
1027 DEFUN ("expand-file-name", Fexpand_file_name
, Sexpand_file_name
, 1, 2, 0,
1028 doc
: /* Convert filename NAME to absolute, and canonicalize it.
1029 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative
1030 \(does not start with slash or tilde); if DEFAULT-DIRECTORY is nil or missing,
1031 the current buffer's value of `default-directory' is used.
1032 File name components that are `.' are removed, and
1033 so are file name components followed by `..', along with the `..' itself;
1034 note that these simplifications are done without checking the resulting
1035 file names in the file system.
1036 An initial `~/' expands to your home directory.
1037 An initial `~USER/' expands to USER's home directory.
1038 See also the function `substitute-in-file-name'. */)
1039 (name
, default_directory
)
1040 Lisp_Object name
, default_directory
;
1044 register unsigned char *newdir
, *p
, *o
;
1046 unsigned char *target
;
1049 unsigned char * colon
= 0;
1050 unsigned char * close
= 0;
1051 unsigned char * slash
= 0;
1052 unsigned char * brack
= 0;
1053 int lbrack
= 0, rbrack
= 0;
1058 int collapse_newdir
= 1;
1062 Lisp_Object handler
, result
;
1065 CHECK_STRING (name
);
1067 /* If the file name has special constructs in it,
1068 call the corresponding file handler. */
1069 handler
= Ffind_file_name_handler (name
, Qexpand_file_name
);
1070 if (!NILP (handler
))
1071 return call3 (handler
, Qexpand_file_name
, name
, default_directory
);
1073 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */
1074 if (NILP (default_directory
))
1075 default_directory
= current_buffer
->directory
;
1076 if (! STRINGP (default_directory
))
1079 /* "/" is not considered a root directory on DOS_NT, so using "/"
1080 here causes an infinite recursion in, e.g., the following:
1082 (let (default-directory)
1083 (expand-file-name "a"))
1085 To avoid this, we set default_directory to the root of the
1087 extern char *emacs_root_dir (void);
1089 default_directory
= build_string (emacs_root_dir ());
1091 default_directory
= build_string ("/");
1095 if (!NILP (default_directory
))
1097 handler
= Ffind_file_name_handler (default_directory
, Qexpand_file_name
);
1098 if (!NILP (handler
))
1099 return call3 (handler
, Qexpand_file_name
, name
, default_directory
);
1102 o
= SDATA (default_directory
);
1104 /* Make sure DEFAULT_DIRECTORY is properly expanded.
1105 It would be better to do this down below where we actually use
1106 default_directory. Unfortunately, calling Fexpand_file_name recursively
1107 could invoke GC, and the strings might be relocated. This would
1108 be annoying because we have pointers into strings lying around
1109 that would need adjusting, and people would add new pointers to
1110 the code and forget to adjust them, resulting in intermittent bugs.
1111 Putting this call here avoids all that crud.
1113 The EQ test avoids infinite recursion. */
1114 if (! NILP (default_directory
) && !EQ (default_directory
, name
)
1115 /* Save time in some common cases - as long as default_directory
1116 is not relative, it can be canonicalized with name below (if it
1117 is needed at all) without requiring it to be expanded now. */
1119 /* Detect MSDOS file names with drive specifiers. */
1120 && ! (IS_DRIVE (o
[0]) && IS_DEVICE_SEP (o
[1]) && IS_DIRECTORY_SEP (o
[2]))
1122 /* Detect Windows file names in UNC format. */
1123 && ! (IS_DIRECTORY_SEP (o
[0]) && IS_DIRECTORY_SEP (o
[1]))
1125 #else /* not DOS_NT */
1126 /* Detect Unix absolute file names (/... alone is not absolute on
1128 && ! (IS_DIRECTORY_SEP (o
[0]))
1129 #endif /* not DOS_NT */
1132 struct gcpro gcpro1
;
1135 default_directory
= Fexpand_file_name (default_directory
, Qnil
);
1139 name
= FILE_SYSTEM_CASE (name
);
1140 multibyte
= STRING_MULTIBYTE (name
);
1141 if (multibyte
!= STRING_MULTIBYTE (default_directory
))
1144 default_directory
= string_to_multibyte (default_directory
);
1147 name
= string_to_multibyte (name
);
1155 /* We will force directory separators to be either all \ or /, so make
1156 a local copy to modify, even if there ends up being no change. */
1157 nm
= strcpy (alloca (strlen (nm
) + 1), nm
);
1159 /* Note if special escape prefix is present, but remove for now. */
1160 if (nm
[0] == '/' && nm
[1] == ':')
1166 /* Find and remove drive specifier if present; this makes nm absolute
1167 even if the rest of the name appears to be relative. Only look for
1168 drive specifier at the beginning. */
1169 if (IS_DRIVE (nm
[0]) && IS_DEVICE_SEP (nm
[1]))
1176 /* If we see "c://somedir", we want to strip the first slash after the
1177 colon when stripping the drive letter. Otherwise, this expands to
1179 if (drive
&& IS_DIRECTORY_SEP (nm
[0]) && IS_DIRECTORY_SEP (nm
[1]))
1181 #endif /* WINDOWSNT */
1185 /* Discard any previous drive specifier if nm is now in UNC format. */
1186 if (IS_DIRECTORY_SEP (nm
[0]) && IS_DIRECTORY_SEP (nm
[1]))
1192 /* If nm is absolute, look for `/./' or `/../' or `//''sequences; if
1193 none are found, we can probably return right away. We will avoid
1194 allocating a new string if name is already fully expanded. */
1196 IS_DIRECTORY_SEP (nm
[0])
1198 && drive
&& !is_escaped
1201 && (drive
|| IS_DIRECTORY_SEP (nm
[1])) && !is_escaped
1208 /* If it turns out that the filename we want to return is just a
1209 suffix of FILENAME, we don't need to go through and edit
1210 things; we just need to construct a new string using data
1211 starting at the middle of FILENAME. If we set lose to a
1212 non-zero value, that means we've discovered that we can't do
1219 /* Since we know the name is absolute, we can assume that each
1220 element starts with a "/". */
1222 /* "." and ".." are hairy. */
1223 if (IS_DIRECTORY_SEP (p
[0])
1225 && (IS_DIRECTORY_SEP (p
[2])
1227 || (p
[2] == '.' && (IS_DIRECTORY_SEP (p
[3])
1230 /* We want to replace multiple `/' in a row with a single
1233 && IS_DIRECTORY_SEP (p
[0])
1234 && IS_DIRECTORY_SEP (p
[1]))
1241 /* if dev:[dir]/, move nm to / */
1242 if (!slash
&& p
> nm
&& (brack
|| colon
)) {
1243 nm
= (brack
? brack
+ 1 : colon
+ 1);
1244 lbrack
= rbrack
= 0;
1251 #ifdef NO_HYPHENS_IN_FILENAMES
1252 if (lbrack
== rbrack
)
1254 /* Avoid clobbering negative version numbers. */
1259 #endif /* NO_HYPHENS_IN_FILENAMES */
1261 && ((p
[-1] == '.' || p
[-1] == '[' || p
[-1] == '<')
1262 && (p
[1] == '.' || p
[1] == ']' || p
[1] == '>')))
1264 #ifdef NO_HYPHENS_IN_FILENAMES
1267 #endif /* NO_HYPHENS_IN_FILENAMES */
1268 /* count open brackets, reset close bracket pointer */
1269 if (p
[0] == '[' || p
[0] == '<')
1270 lbrack
++, brack
= 0;
1271 /* count close brackets, set close bracket pointer */
1272 if (p
[0] == ']' || p
[0] == '>')
1273 rbrack
++, brack
= p
;
1274 /* detect ][ or >< */
1275 if ((p
[0] == ']' || p
[0] == '>') && (p
[1] == '[' || p
[1] == '<'))
1277 if ((p
[0] == ':' || p
[0] == ']' || p
[0] == '>') && p
[1] == '~')
1278 nm
= p
+ 1, lose
= 1;
1279 if (p
[0] == ':' && (colon
|| slash
))
1280 /* if dev1:[dir]dev2:, move nm to dev2: */
1286 /* if /name/dev:, move nm to dev: */
1289 /* if node::dev:, move colon following dev */
1290 else if (colon
&& colon
[-1] == ':')
1292 /* if dev1:dev2:, move nm to dev2: */
1293 else if (colon
&& colon
[-1] != ':')
1298 if (p
[0] == ':' && !colon
)
1304 if (lbrack
== rbrack
)
1307 else if (p
[0] == '.')
1315 if (index (nm
, '/'))
1317 nm
= sys_translate_unix (nm
);
1318 return make_specified_string (nm
, -1, strlen (nm
), multibyte
);
1322 /* Make sure directories are all separated with / or \ as
1323 desired, but avoid allocation of a new string when not
1325 CORRECT_DIR_SEPS (nm
);
1327 if (IS_DIRECTORY_SEP (nm
[1]))
1329 if (strcmp (nm
, SDATA (name
)) != 0)
1330 name
= make_specified_string (nm
, -1, strlen (nm
), multibyte
);
1334 /* drive must be set, so this is okay */
1335 if (strcmp (nm
- 2, SDATA (name
)) != 0)
1339 name
= make_specified_string (nm
, -1, p
- nm
, multibyte
);
1340 temp
[0] = DRIVE_LETTER (drive
);
1341 name
= concat2 (build_string (temp
), name
);
1344 #else /* not DOS_NT */
1345 if (nm
== SDATA (name
))
1347 return make_specified_string (nm
, -1, strlen (nm
), multibyte
);
1348 #endif /* not DOS_NT */
1352 /* At this point, nm might or might not be an absolute file name. We
1353 need to expand ~ or ~user if present, otherwise prefix nm with
1354 default_directory if nm is not absolute, and finally collapse /./
1355 and /foo/../ sequences.
1357 We set newdir to be the appropriate prefix if one is needed:
1358 - the relevant user directory if nm starts with ~ or ~user
1359 - the specified drive's working dir (DOS/NT only) if nm does not
1361 - the value of default_directory.
1363 Note that these prefixes are not guaranteed to be absolute (except
1364 for the working dir of a drive). Therefore, to ensure we always
1365 return an absolute name, if the final prefix is not absolute we
1366 append it to the current working directory. */
1370 if (nm
[0] == '~') /* prefix ~ */
1372 if (IS_DIRECTORY_SEP (nm
[1])
1376 || nm
[1] == 0) /* ~ by itself */
1378 if (!(newdir
= (unsigned char *) egetenv ("HOME")))
1379 newdir
= (unsigned char *) "";
1382 collapse_newdir
= 0;
1385 nm
++; /* Don't leave the slash in nm. */
1388 else /* ~user/filename */
1390 for (p
= nm
; *p
&& (!IS_DIRECTORY_SEP (*p
)
1395 o
= (unsigned char *) alloca (p
- nm
+ 1);
1396 bcopy ((char *) nm
, o
, p
- nm
);
1400 pw
= (struct passwd
*) getpwnam (o
+ 1);
1404 newdir
= (unsigned char *) pw
-> pw_dir
;
1406 nm
= p
+ 1; /* skip the terminator */
1410 collapse_newdir
= 0;
1415 /* If we don't find a user of that name, leave the name
1416 unchanged; don't move nm forward to p. */
1421 /* On DOS and Windows, nm is absolute if a drive name was specified;
1422 use the drive's current directory as the prefix if needed. */
1423 if (!newdir
&& drive
)
1425 /* Get default directory if needed to make nm absolute. */
1426 if (!IS_DIRECTORY_SEP (nm
[0]))
1428 newdir
= alloca (MAXPATHLEN
+ 1);
1429 if (!getdefdir (toupper (drive
) - 'A' + 1, newdir
))
1434 /* Either nm starts with /, or drive isn't mounted. */
1435 newdir
= alloca (4);
1436 newdir
[0] = DRIVE_LETTER (drive
);
1444 /* Finally, if no prefix has been specified and nm is not absolute,
1445 then it must be expanded relative to default_directory. */
1449 /* /... alone is not absolute on DOS and Windows. */
1450 && !IS_DIRECTORY_SEP (nm
[0])
1453 && !(IS_DIRECTORY_SEP (nm
[0]) && IS_DIRECTORY_SEP (nm
[1]))
1460 newdir
= SDATA (default_directory
);
1462 /* Note if special escape prefix is present, but remove for now. */
1463 if (newdir
[0] == '/' && newdir
[1] == ':')
1474 /* First ensure newdir is an absolute name. */
1476 /* Detect MSDOS file names with drive specifiers. */
1477 ! (IS_DRIVE (newdir
[0])
1478 && IS_DEVICE_SEP (newdir
[1]) && IS_DIRECTORY_SEP (newdir
[2]))
1480 /* Detect Windows file names in UNC format. */
1481 && ! (IS_DIRECTORY_SEP (newdir
[0]) && IS_DIRECTORY_SEP (newdir
[1]))
1485 /* Effectively, let newdir be (expand-file-name newdir cwd).
1486 Because of the admonition against calling expand-file-name
1487 when we have pointers into lisp strings, we accomplish this
1488 indirectly by prepending newdir to nm if necessary, and using
1489 cwd (or the wd of newdir's drive) as the new newdir. */
1491 if (IS_DRIVE (newdir
[0]) && IS_DEVICE_SEP (newdir
[1]))
1496 if (!IS_DIRECTORY_SEP (nm
[0]))
1498 char * tmp
= alloca (strlen (newdir
) + strlen (nm
) + 2);
1499 file_name_as_directory (tmp
, newdir
);
1503 newdir
= alloca (MAXPATHLEN
+ 1);
1506 if (!getdefdir (toupper (drive
) - 'A' + 1, newdir
))
1513 /* Strip off drive name from prefix, if present. */
1514 if (IS_DRIVE (newdir
[0]) && IS_DEVICE_SEP (newdir
[1]))
1520 /* Keep only a prefix from newdir if nm starts with slash
1521 (//server/share for UNC, nothing otherwise). */
1522 if (IS_DIRECTORY_SEP (nm
[0]) && collapse_newdir
)
1525 if (IS_DIRECTORY_SEP (newdir
[0]) && IS_DIRECTORY_SEP (newdir
[1]))
1527 newdir
= strcpy (alloca (strlen (newdir
) + 1), newdir
);
1529 while (*p
&& !IS_DIRECTORY_SEP (*p
)) p
++;
1531 while (*p
&& !IS_DIRECTORY_SEP (*p
)) p
++;
1543 /* Get rid of any slash at the end of newdir, unless newdir is
1544 just / or // (an incomplete UNC name). */
1545 length
= strlen (newdir
);
1546 if (length
> 1 && IS_DIRECTORY_SEP (newdir
[length
- 1])
1548 && !(length
== 2 && IS_DIRECTORY_SEP (newdir
[0]))
1552 unsigned char *temp
= (unsigned char *) alloca (length
);
1553 bcopy (newdir
, temp
, length
- 1);
1554 temp
[length
- 1] = 0;
1562 /* Now concatenate the directory and name to new space in the stack frame */
1563 tlen
+= strlen (nm
) + 1;
1565 /* Reserve space for drive specifier and escape prefix, since either
1566 or both may need to be inserted. (The Microsoft x86 compiler
1567 produces incorrect code if the following two lines are combined.) */
1568 target
= (unsigned char *) alloca (tlen
+ 4);
1570 #else /* not DOS_NT */
1571 target
= (unsigned char *) alloca (tlen
);
1572 #endif /* not DOS_NT */
1578 if (nm
[0] == 0 || IS_DIRECTORY_SEP (nm
[0]))
1581 /* If newdir is effectively "C:/", then the drive letter will have
1582 been stripped and newdir will be "/". Concatenating with an
1583 absolute directory in nm produces "//", which will then be
1584 incorrectly treated as a network share. Ignore newdir in
1585 this case (keeping the drive letter). */
1586 if (!(drive
&& nm
[0] && IS_DIRECTORY_SEP (newdir
[0])
1587 && newdir
[1] == '\0'))
1589 strcpy (target
, newdir
);
1593 file_name_as_directory (target
, newdir
);
1596 strcat (target
, nm
);
1598 if (index (target
, '/'))
1599 strcpy (target
, sys_translate_unix (target
));
1602 /* ASSERT (IS_DIRECTORY_SEP (target[0])) if not VMS */
1604 /* Now canonicalize by removing `//', `/.' and `/foo/..' if they
1613 if (*p
!= ']' && *p
!= '>' && *p
!= '-')
1619 else if ((p
[0] == ']' || p
[0] == '>') && p
[0] == p
[1] + 2)
1620 /* brackets are offset from each other by 2 */
1623 if (*p
!= '.' && *p
!= '-' && o
[-1] != '.')
1624 /* convert [foo][bar] to [bar] */
1625 while (o
[-1] != '[' && o
[-1] != '<')
1627 else if (*p
== '-' && *o
!= '.')
1630 else if (p
[0] == '-' && o
[-1] == '.'
1631 && (p
[1] == '.' || p
[1] == ']' || p
[1] == '>'))
1632 /* flush .foo.- ; leave - if stopped by '[' or '<' */
1636 while (o
[-1] != '.' && o
[-1] != '[' && o
[-1] != '<');
1637 if (p
[1] == '.') /* foo.-.bar ==> bar. */
1639 else if (o
[-1] == '.') /* '.foo.-]' ==> ']' */
1641 /* else [foo.-] ==> [-] */
1645 #ifdef NO_HYPHENS_IN_FILENAMES
1647 && o
[-1] != '[' && o
[-1] != '<' && o
[-1] != '.'
1648 && p
[1] != ']' && p
[1] != '>' && p
[1] != '.')
1650 #endif /* NO_HYPHENS_IN_FILENAMES */
1654 if (!IS_DIRECTORY_SEP (*p
))
1658 else if (p
[1] == '.'
1659 && (IS_DIRECTORY_SEP (p
[2])
1662 /* If "/." is the entire filename, keep the "/". Otherwise,
1663 just delete the whole "/.". */
1664 if (o
== target
&& p
[2] == '\0')
1668 else if (p
[1] == '.' && p
[2] == '.'
1669 /* `/../' is the "superroot" on certain file systems.
1670 Turned off on DOS_NT systems because they have no
1671 "superroot" and because this causes us to produce
1672 file names like "d:/../foo" which fail file-related
1673 functions of the underlying OS. (To reproduce, try a
1674 long series of "../../" in default_directory, longer
1675 than the number of levels from the root.) */
1679 && (IS_DIRECTORY_SEP (p
[3]) || p
[3] == 0))
1681 while (o
!= target
&& (--o
) && !IS_DIRECTORY_SEP (*o
))
1683 /* Keep initial / only if this is the whole name. */
1684 if (o
== target
&& IS_ANY_SEP (*o
) && p
[3] == 0)
1688 else if (p
> target
&& IS_DIRECTORY_SEP (p
[1]))
1689 /* Collapse multiple `/' in a row. */
1695 #endif /* not VMS */
1699 /* At last, set drive name. */
1701 /* Except for network file name. */
1702 if (!(IS_DIRECTORY_SEP (target
[0]) && IS_DIRECTORY_SEP (target
[1])))
1703 #endif /* WINDOWSNT */
1705 if (!drive
) abort ();
1707 target
[0] = DRIVE_LETTER (drive
);
1710 /* Reinsert the escape prefix if required. */
1717 CORRECT_DIR_SEPS (target
);
1720 result
= make_specified_string (target
, -1, o
- target
, multibyte
);
1722 /* Again look to see if the file name has special constructs in it
1723 and perhaps call the corresponding file handler. This is needed
1724 for filenames such as "/foo/../user@host:/bar/../baz". Expanding
1725 the ".." component gives us "/user@host:/bar/../baz" which needs
1726 to be expanded again. */
1727 handler
= Ffind_file_name_handler (result
, Qexpand_file_name
);
1728 if (!NILP (handler
))
1729 return call3 (handler
, Qexpand_file_name
, result
, default_directory
);
1735 /* PLEASE DO NOT DELETE THIS COMMENTED-OUT VERSION!
1736 This is the old version of expand-file-name, before it was thoroughly
1737 rewritten for Emacs 10.31. We leave this version here commented-out,
1738 because the code is very complex and likely to have subtle bugs. If
1739 bugs _are_ found, it might be of interest to look at the old code and
1740 see what did it do in the relevant situation.
1742 Don't remove this code: it's true that it will be accessible via CVS,
1743 but a few years from deletion, people will forget it is there. */
1745 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */
1746 DEAFUN ("expand-file-name", Fexpand_file_name
, Sexpand_file_name
, 1, 2, 0,
1747 "Convert FILENAME to absolute, and canonicalize it.\n\
1748 Second arg DEFAULT is directory to start with if FILENAME is relative\n\
1749 \(does not start with slash); if DEFAULT is nil or missing,\n\
1750 the current buffer's value of default-directory is used.\n\
1751 Filenames containing `.' or `..' as components are simplified;\n\
1752 initial `~/' expands to your home directory.\n\
1753 See also the function `substitute-in-file-name'.")
1755 Lisp_Object name
, defalt
;
1759 register unsigned char *newdir
, *p
, *o
;
1761 unsigned char *target
;
1765 unsigned char * colon
= 0;
1766 unsigned char * close
= 0;
1767 unsigned char * slash
= 0;
1768 unsigned char * brack
= 0;
1769 int lbrack
= 0, rbrack
= 0;
1773 CHECK_STRING (name
);
1776 /* Filenames on VMS are always upper case. */
1777 name
= Fupcase (name
);
1782 /* If nm is absolute, flush ...// and detect /./ and /../.
1783 If no /./ or /../ we can return right away. */
1795 if (p
[0] == '/' && p
[1] == '/'
1798 if (p
[0] == '/' && p
[1] == '~')
1799 nm
= p
+ 1, lose
= 1;
1800 if (p
[0] == '/' && p
[1] == '.'
1801 && (p
[2] == '/' || p
[2] == 0
1802 || (p
[2] == '.' && (p
[3] == '/' || p
[3] == 0))))
1808 /* if dev:[dir]/, move nm to / */
1809 if (!slash
&& p
> nm
&& (brack
|| colon
)) {
1810 nm
= (brack
? brack
+ 1 : colon
+ 1);
1811 lbrack
= rbrack
= 0;
1819 /* VMS pre V4.4,convert '-'s in filenames. */
1820 if (lbrack
== rbrack
)
1822 if (dots
< 2) /* this is to allow negative version numbers */
1828 && ((p
[-1] == '.' || p
[-1] == '[' || p
[-1] == '<')
1829 && (p
[1] == '.' || p
[1] == ']' || p
[1] == '>')))
1835 /* count open brackets, reset close bracket pointer */
1836 if (p
[0] == '[' || p
[0] == '<')
1837 lbrack
++, brack
= 0;
1838 /* count close brackets, set close bracket pointer */
1839 if (p
[0] == ']' || p
[0] == '>')
1840 rbrack
++, brack
= p
;
1841 /* detect ][ or >< */
1842 if ((p
[0] == ']' || p
[0] == '>') && (p
[1] == '[' || p
[1] == '<'))
1844 if ((p
[0] == ':' || p
[0] == ']' || p
[0] == '>') && p
[1] == '~')
1845 nm
= p
+ 1, lose
= 1;
1846 if (p
[0] == ':' && (colon
|| slash
))
1847 /* if dev1:[dir]dev2:, move nm to dev2: */
1853 /* If /name/dev:, move nm to dev: */
1856 /* If node::dev:, move colon following dev */
1857 else if (colon
&& colon
[-1] == ':')
1859 /* If dev1:dev2:, move nm to dev2: */
1860 else if (colon
&& colon
[-1] != ':')
1865 if (p
[0] == ':' && !colon
)
1871 if (lbrack
== rbrack
)
1874 else if (p
[0] == '.')
1882 if (index (nm
, '/'))
1883 return build_string (sys_translate_unix (nm
));
1885 if (nm
== SDATA (name
))
1887 return build_string (nm
);
1891 /* Now determine directory to start with and put it in NEWDIR */
1895 if (nm
[0] == '~') /* prefix ~ */
1900 || nm
[1] == 0)/* ~/filename */
1902 if (!(newdir
= (unsigned char *) egetenv ("HOME")))
1903 newdir
= (unsigned char *) "";
1906 nm
++; /* Don't leave the slash in nm. */
1909 else /* ~user/filename */
1911 /* Get past ~ to user */
1912 unsigned char *user
= nm
+ 1;
1913 /* Find end of name. */
1914 unsigned char *ptr
= (unsigned char *) index (user
, '/');
1915 int len
= ptr
? ptr
- user
: strlen (user
);
1917 unsigned char *ptr1
= index (user
, ':');
1918 if (ptr1
!= 0 && ptr1
- user
< len
)
1921 /* Copy the user name into temp storage. */
1922 o
= (unsigned char *) alloca (len
+ 1);
1923 bcopy ((char *) user
, o
, len
);
1926 /* Look up the user name. */
1928 pw
= (struct passwd
*) getpwnam (o
+ 1);
1931 error ("\"%s\" isn't a registered user", o
+ 1);
1933 newdir
= (unsigned char *) pw
->pw_dir
;
1935 /* Discard the user name from NM. */
1942 #endif /* not VMS */
1946 defalt
= current_buffer
->directory
;
1947 CHECK_STRING (defalt
);
1948 newdir
= SDATA (defalt
);
1951 /* Now concatenate the directory and name to new space in the stack frame */
1953 tlen
= (newdir
? strlen (newdir
) + 1 : 0) + strlen (nm
) + 1;
1954 target
= (unsigned char *) alloca (tlen
);
1960 if (nm
[0] == 0 || nm
[0] == '/')
1961 strcpy (target
, newdir
);
1964 file_name_as_directory (target
, newdir
);
1967 strcat (target
, nm
);
1969 if (index (target
, '/'))
1970 strcpy (target
, sys_translate_unix (target
));
1973 /* Now canonicalize by removing /. and /foo/.. if they appear */
1981 if (*p
!= ']' && *p
!= '>' && *p
!= '-')
1987 else if ((p
[0] == ']' || p
[0] == '>') && p
[0] == p
[1] + 2)
1988 /* brackets are offset from each other by 2 */
1991 if (*p
!= '.' && *p
!= '-' && o
[-1] != '.')
1992 /* convert [foo][bar] to [bar] */
1993 while (o
[-1] != '[' && o
[-1] != '<')
1995 else if (*p
== '-' && *o
!= '.')
1998 else if (p
[0] == '-' && o
[-1] == '.'
1999 && (p
[1] == '.' || p
[1] == ']' || p
[1] == '>'))
2000 /* flush .foo.- ; leave - if stopped by '[' or '<' */
2004 while (o
[-1] != '.' && o
[-1] != '[' && o
[-1] != '<');
2005 if (p
[1] == '.') /* foo.-.bar ==> bar. */
2007 else if (o
[-1] == '.') /* '.foo.-]' ==> ']' */
2009 /* else [foo.-] ==> [-] */
2015 && o
[-1] != '[' && o
[-1] != '<' && o
[-1] != '.'
2016 && p
[1] != ']' && p
[1] != '>' && p
[1] != '.')
2026 else if (!strncmp (p
, "//", 2)
2032 else if (p
[0] == '/' && p
[1] == '.'
2033 && (p
[2] == '/' || p
[2] == 0))
2035 else if (!strncmp (p
, "/..", 3)
2036 /* `/../' is the "superroot" on certain file systems. */
2038 && (p
[3] == '/' || p
[3] == 0))
2040 while (o
!= target
&& *--o
!= '/')
2042 if (o
== target
&& *o
== '/')
2050 #endif /* not VMS */
2053 return make_string (target
, o
- target
);
2057 /* If /~ or // appears, discard everything through first slash. */
2059 file_name_absolute_p (filename
)
2060 const unsigned char *filename
;
2063 (IS_DIRECTORY_SEP (*filename
) || *filename
== '~'
2065 /* ??? This criterion is probably wrong for '<'. */
2066 || index (filename
, ':') || index (filename
, '<')
2067 || (*filename
== '[' && (filename
[1] != '-'
2068 || (filename
[2] != '.' && filename
[2] != ']'))
2069 && filename
[1] != '.')
2072 || (IS_DRIVE (*filename
) && IS_DEVICE_SEP (filename
[1])
2073 && IS_DIRECTORY_SEP (filename
[2]))
2078 static unsigned char *
2079 search_embedded_absfilename (nm
, endp
)
2080 unsigned char *nm
, *endp
;
2082 unsigned char *p
, *s
;
2084 for (p
= nm
+ 1; p
< endp
; p
++)
2088 || p
[-1] == ':' || p
[-1] == ']' || p
[-1] == '>'
2090 || IS_DIRECTORY_SEP (p
[-1]))
2091 && file_name_absolute_p (p
)
2092 #if defined (WINDOWSNT) || defined(CYGWIN)
2093 /* // at start of file name is meaningful in Apollo,
2094 WindowsNT and Cygwin systems. */
2095 && !(IS_DIRECTORY_SEP (p
[0]) && p
- 1 == nm
)
2096 #endif /* not (WINDOWSNT || CYGWIN) */
2099 for (s
= p
; *s
&& (!IS_DIRECTORY_SEP (*s
)
2104 if (p
[0] == '~' && s
> p
+ 1) /* we've got "/~something/" */
2106 unsigned char *o
= alloca (s
- p
+ 1);
2108 bcopy (p
, o
, s
- p
);
2111 /* If we have ~user and `user' exists, discard
2112 everything up to ~. But if `user' does not exist, leave
2113 ~user alone, it might be a literal file name. */
2115 pw
= getpwnam (o
+ 1);
2127 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name
,
2128 Ssubstitute_in_file_name
, 1, 1, 0,
2129 doc
: /* Substitute environment variables referred to in FILENAME.
2130 `$FOO' where FOO is an environment variable name means to substitute
2131 the value of that variable. The variable name should be terminated
2132 with a character not a letter, digit or underscore; otherwise, enclose
2133 the entire variable name in braces.
2134 If `/~' appears, all of FILENAME through that `/' is discarded.
2136 On VMS, `$' substitution is not done; this function does little and only
2137 duplicates what `expand-file-name' does. */)
2139 Lisp_Object filename
;
2143 register unsigned char *s
, *p
, *o
, *x
, *endp
;
2144 unsigned char *target
= NULL
;
2146 int substituted
= 0;
2148 Lisp_Object handler
;
2150 CHECK_STRING (filename
);
2152 /* If the file name has special constructs in it,
2153 call the corresponding file handler. */
2154 handler
= Ffind_file_name_handler (filename
, Qsubstitute_in_file_name
);
2155 if (!NILP (handler
))
2156 return call2 (handler
, Qsubstitute_in_file_name
, filename
);
2158 nm
= SDATA (filename
);
2160 nm
= strcpy (alloca (strlen (nm
) + 1), nm
);
2161 CORRECT_DIR_SEPS (nm
);
2162 substituted
= (strcmp (nm
, SDATA (filename
)) != 0);
2164 endp
= nm
+ SBYTES (filename
);
2166 /* If /~ or // appears, discard everything through first slash. */
2167 p
= search_embedded_absfilename (nm
, endp
);
2169 /* Start over with the new string, so we check the file-name-handler
2170 again. Important with filenames like "/home/foo//:/hello///there"
2171 which whould substitute to "/:/hello///there" rather than "/there". */
2172 return Fsubstitute_in_file_name
2173 (make_specified_string (p
, -1, endp
- p
,
2174 STRING_MULTIBYTE (filename
)));
2180 /* See if any variables are substituted into the string
2181 and find the total length of their values in `total' */
2183 for (p
= nm
; p
!= endp
;)
2193 /* "$$" means a single "$" */
2202 while (p
!= endp
&& *p
!= '}') p
++;
2203 if (*p
!= '}') goto missingclose
;
2209 while (p
!= endp
&& (isalnum (*p
) || *p
== '_')) p
++;
2213 /* Copy out the variable name */
2214 target
= (unsigned char *) alloca (s
- o
+ 1);
2215 strncpy (target
, o
, s
- o
);
2218 strupr (target
); /* $home == $HOME etc. */
2221 /* Get variable value */
2222 o
= (unsigned char *) egetenv (target
);
2225 total
+= strlen (o
);
2235 /* If substitution required, recopy the string and do it */
2236 /* Make space in stack frame for the new copy */
2237 xnm
= (unsigned char *) alloca (SBYTES (filename
) + total
+ 1);
2240 /* Copy the rest of the name through, replacing $ constructs with values */
2257 while (p
!= endp
&& *p
!= '}') p
++;
2258 if (*p
!= '}') goto missingclose
;
2264 while (p
!= endp
&& (isalnum (*p
) || *p
== '_')) p
++;
2268 /* Copy out the variable name */
2269 target
= (unsigned char *) alloca (s
- o
+ 1);
2270 strncpy (target
, o
, s
- o
);
2273 strupr (target
); /* $home == $HOME etc. */
2276 /* Get variable value */
2277 o
= (unsigned char *) egetenv (target
);
2281 strcpy (x
, target
); x
+= strlen (target
);
2283 else if (STRING_MULTIBYTE (filename
))
2285 /* If the original string is multibyte,
2286 convert what we substitute into multibyte. */
2290 c
= unibyte_char_to_multibyte (c
);
2291 x
+= CHAR_STRING (c
, x
);
2303 /* If /~ or // appears, discard everything through first slash. */
2304 while ((p
= search_embedded_absfilename (xnm
, x
)))
2305 /* This time we do not start over because we've already expanded envvars
2306 and replaced $$ with $. Maybe we should start over as well, but we'd
2307 need to quote some $ to $$ first. */
2310 return make_specified_string (xnm
, -1, x
- xnm
, STRING_MULTIBYTE (filename
));
2313 error ("Bad format environment-variable substitution");
2315 error ("Missing \"}\" in environment-variable substitution");
2317 error ("Substituting nonexistent environment variable \"%s\"", target
);
2320 #endif /* not VMS */
2324 /* A slightly faster and more convenient way to get
2325 (directory-file-name (expand-file-name FOO)). */
2328 expand_and_dir_to_file (filename
, defdir
)
2329 Lisp_Object filename
, defdir
;
2331 register Lisp_Object absname
;
2333 absname
= Fexpand_file_name (filename
, defdir
);
2336 register int c
= SREF (absname
, SBYTES (absname
) - 1);
2337 if (c
== ':' || c
== ']' || c
== '>')
2338 absname
= Fdirectory_file_name (absname
);
2341 /* Remove final slash, if any (unless this is the root dir).
2342 stat behaves differently depending! */
2343 if (SCHARS (absname
) > 1
2344 && IS_DIRECTORY_SEP (SREF (absname
, SBYTES (absname
) - 1))
2345 && !IS_DEVICE_SEP (SREF (absname
, SBYTES (absname
)-2)))
2346 /* We cannot take shortcuts; they might be wrong for magic file names. */
2347 absname
= Fdirectory_file_name (absname
);
2352 /* Signal an error if the file ABSNAME already exists.
2353 If INTERACTIVE is nonzero, ask the user whether to proceed,
2354 and bypass the error if the user says to go ahead.
2355 QUERYSTRING is a name for the action that is being considered
2358 *STATPTR is used to store the stat information if the file exists.
2359 If the file does not exist, STATPTR->st_mode is set to 0.
2360 If STATPTR is null, we don't store into it.
2362 If QUICK is nonzero, we ask for y or n, not yes or no. */
2365 barf_or_query_if_file_exists (absname
, querystring
, interactive
, statptr
, quick
)
2366 Lisp_Object absname
;
2367 unsigned char *querystring
;
2369 struct stat
*statptr
;
2372 register Lisp_Object tem
, encoded_filename
;
2373 struct stat statbuf
;
2374 struct gcpro gcpro1
;
2376 encoded_filename
= ENCODE_FILE (absname
);
2378 /* stat is a good way to tell whether the file exists,
2379 regardless of what access permissions it has. */
2380 if (lstat (SDATA (encoded_filename
), &statbuf
) >= 0)
2383 xsignal2 (Qfile_already_exists
,
2384 build_string ("File already exists"), absname
);
2386 tem
= format2 ("File %s already exists; %s anyway? ",
2387 absname
, build_string (querystring
));
2389 tem
= Fy_or_n_p (tem
);
2391 tem
= do_yes_or_no_p (tem
);
2394 xsignal2 (Qfile_already_exists
,
2395 build_string ("File already exists"), absname
);
2402 statptr
->st_mode
= 0;
2407 DEFUN ("copy-file", Fcopy_file
, Scopy_file
, 2, 5,
2408 "fCopy file: \nGCopy %s to file: \np\nP",
2409 doc
: /* Copy FILE to NEWNAME. Both args must be strings.
2410 If NEWNAME names a directory, copy FILE there.
2412 This function always sets the file modes of the output file to match
2415 The optional third argument OK-IF-ALREADY-EXISTS specifies what to do
2416 if file NEWNAME already exists. If OK-IF-ALREADY-EXISTS is nil, we
2417 signal a `file-already-exists' error without overwriting. If
2418 OK-IF-ALREADY-EXISTS is a number, we request confirmation from the user
2419 about overwriting; this is what happens in interactive use with M-x.
2420 Any other value for OK-IF-ALREADY-EXISTS means to overwrite the
2423 Fourth arg KEEP-TIME non-nil means give the output file the same
2424 last-modified time as the old one. (This works on only some systems.)
2426 A prefix arg makes KEEP-TIME non-nil.
2428 If PRESERVE-UID-GID is non-nil, we try to transfer the
2429 uid and gid of FILE to NEWNAME. */)
2430 (file
, newname
, ok_if_already_exists
, keep_time
, preserve_uid_gid
)
2431 Lisp_Object file
, newname
, ok_if_already_exists
, keep_time
;
2432 Lisp_Object preserve_uid_gid
;
2435 char buf
[16 * 1024];
2436 struct stat st
, out_st
;
2437 Lisp_Object handler
;
2438 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
2439 int count
= SPECPDL_INDEX ();
2440 int input_file_statable_p
;
2441 Lisp_Object encoded_file
, encoded_newname
;
2443 encoded_file
= encoded_newname
= Qnil
;
2444 GCPRO4 (file
, newname
, encoded_file
, encoded_newname
);
2445 CHECK_STRING (file
);
2446 CHECK_STRING (newname
);
2448 if (!NILP (Ffile_directory_p (newname
)))
2449 newname
= Fexpand_file_name (Ffile_name_nondirectory (file
), newname
);
2451 newname
= Fexpand_file_name (newname
, Qnil
);
2453 file
= Fexpand_file_name (file
, Qnil
);
2455 /* If the input file name has special constructs in it,
2456 call the corresponding file handler. */
2457 handler
= Ffind_file_name_handler (file
, Qcopy_file
);
2458 /* Likewise for output file name. */
2460 handler
= Ffind_file_name_handler (newname
, Qcopy_file
);
2461 if (!NILP (handler
))
2462 RETURN_UNGCPRO (call6 (handler
, Qcopy_file
, file
, newname
,
2463 ok_if_already_exists
, keep_time
, preserve_uid_gid
));
2465 encoded_file
= ENCODE_FILE (file
);
2466 encoded_newname
= ENCODE_FILE (newname
);
2468 if (NILP (ok_if_already_exists
)
2469 || INTEGERP (ok_if_already_exists
))
2470 barf_or_query_if_file_exists (newname
, "copy to it",
2471 INTEGERP (ok_if_already_exists
), &out_st
, 0);
2472 else if (stat (SDATA (encoded_newname
), &out_st
) < 0)
2476 if (!CopyFile (SDATA (encoded_file
),
2477 SDATA (encoded_newname
),
2479 report_file_error ("Copying file", Fcons (file
, Fcons (newname
, Qnil
)));
2480 /* CopyFile retains the timestamp by default. */
2481 else if (NILP (keep_time
))
2487 EMACS_GET_TIME (now
);
2488 filename
= SDATA (encoded_newname
);
2490 /* Ensure file is writable while its modified time is set. */
2491 attributes
= GetFileAttributes (filename
);
2492 SetFileAttributes (filename
, attributes
& ~FILE_ATTRIBUTE_READONLY
);
2493 if (set_file_times (filename
, now
, now
))
2495 /* Restore original attributes. */
2496 SetFileAttributes (filename
, attributes
);
2497 xsignal2 (Qfile_date_error
,
2498 build_string ("Cannot set file date"), newname
);
2500 /* Restore original attributes. */
2501 SetFileAttributes (filename
, attributes
);
2503 #else /* not WINDOWSNT */
2505 ifd
= emacs_open (SDATA (encoded_file
), O_RDONLY
, 0);
2509 report_file_error ("Opening input file", Fcons (file
, Qnil
));
2511 record_unwind_protect (close_file_unwind
, make_number (ifd
));
2513 /* We can only copy regular files and symbolic links. Other files are not
2515 input_file_statable_p
= (fstat (ifd
, &st
) >= 0);
2517 #if !defined (MSDOS) || __DJGPP__ > 1
2518 if (out_st
.st_mode
!= 0
2519 && st
.st_dev
== out_st
.st_dev
&& st
.st_ino
== out_st
.st_ino
)
2522 report_file_error ("Input and output files are the same",
2523 Fcons (file
, Fcons (newname
, Qnil
)));
2527 #if defined (S_ISREG) && defined (S_ISLNK)
2528 if (input_file_statable_p
)
2530 if (!(S_ISREG (st
.st_mode
)) && !(S_ISLNK (st
.st_mode
)))
2532 #if defined (EISDIR)
2533 /* Get a better looking error message. */
2536 report_file_error ("Non-regular file", Fcons (file
, Qnil
));
2539 #endif /* S_ISREG && S_ISLNK */
2542 /* Create the copy file with the same record format as the input file */
2543 ofd
= sys_creat (SDATA (encoded_newname
), 0666, ifd
);
2546 /* System's default file type was set to binary by _fmode in emacs.c. */
2547 ofd
= emacs_open (SDATA (encoded_newname
),
2548 O_WRONLY
| O_TRUNC
| O_CREAT
2549 | (NILP (ok_if_already_exists
) ? O_EXCL
: 0),
2550 S_IREAD
| S_IWRITE
);
2551 #else /* not MSDOS */
2552 ofd
= emacs_open (SDATA (encoded_newname
),
2553 O_WRONLY
| O_TRUNC
| O_CREAT
2554 | (NILP (ok_if_already_exists
) ? O_EXCL
: 0),
2556 #endif /* not MSDOS */
2559 report_file_error ("Opening output file", Fcons (newname
, Qnil
));
2561 record_unwind_protect (close_file_unwind
, make_number (ofd
));
2565 while ((n
= emacs_read (ifd
, buf
, sizeof buf
)) > 0)
2566 if (emacs_write (ofd
, buf
, n
) != n
)
2567 report_file_error ("I/O error", Fcons (newname
, Qnil
));
2571 /* Preserve the original file modes, and if requested, also its
2573 if (input_file_statable_p
)
2575 if (! NILP (preserve_uid_gid
))
2576 fchown (ofd
, st
.st_uid
, st
.st_gid
);
2577 fchmod (ofd
, st
.st_mode
& 07777);
2579 #endif /* not MSDOS */
2581 /* Closing the output clobbers the file times on some systems. */
2582 if (emacs_close (ofd
) < 0)
2583 report_file_error ("I/O error", Fcons (newname
, Qnil
));
2585 if (input_file_statable_p
)
2587 if (!NILP (keep_time
))
2589 EMACS_TIME atime
, mtime
;
2590 EMACS_SET_SECS_USECS (atime
, st
.st_atime
, 0);
2591 EMACS_SET_SECS_USECS (mtime
, st
.st_mtime
, 0);
2592 if (set_file_times (SDATA (encoded_newname
),
2594 xsignal2 (Qfile_date_error
,
2595 build_string ("Cannot set file date"), newname
);
2601 #if defined (__DJGPP__) && __DJGPP__ > 1
2602 if (input_file_statable_p
)
2604 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
2605 and if it can't, it tells so. Otherwise, under MSDOS we usually
2606 get only the READ bit, which will make the copied file read-only,
2607 so it's better not to chmod at all. */
2608 if ((_djstat_flags
& _STFAIL_WRITEBIT
) == 0)
2609 chmod (SDATA (encoded_newname
), st
.st_mode
& 07777);
2611 #endif /* DJGPP version 2 or newer */
2612 #endif /* not WINDOWSNT */
2614 /* Discard the unwind protects. */
2615 specpdl_ptr
= specpdl
+ count
;
2621 DEFUN ("make-directory-internal", Fmake_directory_internal
,
2622 Smake_directory_internal
, 1, 1, 0,
2623 doc
: /* Create a new directory named DIRECTORY. */)
2625 Lisp_Object directory
;
2627 const unsigned char *dir
;
2628 Lisp_Object handler
;
2629 Lisp_Object encoded_dir
;
2631 CHECK_STRING (directory
);
2632 directory
= Fexpand_file_name (directory
, Qnil
);
2634 handler
= Ffind_file_name_handler (directory
, Qmake_directory_internal
);
2635 if (!NILP (handler
))
2636 return call2 (handler
, Qmake_directory_internal
, directory
);
2638 encoded_dir
= ENCODE_FILE (directory
);
2640 dir
= SDATA (encoded_dir
);
2643 if (mkdir (dir
) != 0)
2645 if (mkdir (dir
, 0777) != 0)
2647 report_file_error ("Creating directory", list1 (directory
));
2652 DEFUN ("delete-directory", Fdelete_directory
, Sdelete_directory
, 1, 1, "FDelete directory: ",
2653 doc
: /* Delete the directory named DIRECTORY. Does not follow symlinks. */)
2655 Lisp_Object directory
;
2657 const unsigned char *dir
;
2658 Lisp_Object handler
;
2659 Lisp_Object encoded_dir
;
2661 CHECK_STRING (directory
);
2662 directory
= Fdirectory_file_name (Fexpand_file_name (directory
, Qnil
));
2664 handler
= Ffind_file_name_handler (directory
, Qdelete_directory
);
2665 if (!NILP (handler
))
2666 return call2 (handler
, Qdelete_directory
, directory
);
2668 encoded_dir
= ENCODE_FILE (directory
);
2670 dir
= SDATA (encoded_dir
);
2672 if (rmdir (dir
) != 0)
2673 report_file_error ("Removing directory", list1 (directory
));
2678 DEFUN ("delete-file", Fdelete_file
, Sdelete_file
, 1, 1, "fDelete file: ",
2679 doc
: /* Delete file named FILENAME. If it is a symlink, remove the symlink.
2680 If file has multiple names, it continues to exist with the other names. */)
2682 Lisp_Object filename
;
2684 Lisp_Object handler
;
2685 Lisp_Object encoded_file
;
2686 struct gcpro gcpro1
;
2689 if (!NILP (Ffile_directory_p (filename
))
2690 && NILP (Ffile_symlink_p (filename
)))
2691 xsignal2 (Qfile_error
,
2692 build_string ("Removing old name: is a directory"),
2695 filename
= Fexpand_file_name (filename
, Qnil
);
2697 handler
= Ffind_file_name_handler (filename
, Qdelete_file
);
2698 if (!NILP (handler
))
2699 return call2 (handler
, Qdelete_file
, filename
);
2701 encoded_file
= ENCODE_FILE (filename
);
2703 if (0 > unlink (SDATA (encoded_file
)))
2704 report_file_error ("Removing old name", list1 (filename
));
2709 internal_delete_file_1 (ignore
)
2715 /* Delete file FILENAME, returning 1 if successful and 0 if failed. */
2718 internal_delete_file (filename
)
2719 Lisp_Object filename
;
2722 tem
= internal_condition_case_1 (Fdelete_file
, filename
,
2723 Qt
, internal_delete_file_1
);
2727 DEFUN ("rename-file", Frename_file
, Srename_file
, 2, 3,
2728 "fRename file: \nGRename %s to file: \np",
2729 doc
: /* Rename FILE as NEWNAME. Both args must be strings.
2730 If file has names other than FILE, it continues to have those names.
2731 Signals a `file-already-exists' error if a file NEWNAME already exists
2732 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2733 A number as third arg means request confirmation if NEWNAME already exists.
2734 This is what happens in interactive use with M-x. */)
2735 (file
, newname
, ok_if_already_exists
)
2736 Lisp_Object file
, newname
, ok_if_already_exists
;
2738 Lisp_Object handler
;
2739 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
2740 Lisp_Object encoded_file
, encoded_newname
, symlink_target
;
2742 symlink_target
= encoded_file
= encoded_newname
= Qnil
;
2743 GCPRO5 (file
, newname
, encoded_file
, encoded_newname
, symlink_target
);
2744 CHECK_STRING (file
);
2745 CHECK_STRING (newname
);
2746 file
= Fexpand_file_name (file
, Qnil
);
2748 if ((!NILP (Ffile_directory_p (newname
)))
2750 /* If the file names are identical but for the case,
2751 don't attempt to move directory to itself. */
2752 && (NILP (Fstring_equal (Fdowncase (file
), Fdowncase (newname
))))
2755 newname
= Fexpand_file_name (Ffile_name_nondirectory (file
), newname
);
2757 newname
= Fexpand_file_name (newname
, Qnil
);
2759 /* If the file name has special constructs in it,
2760 call the corresponding file handler. */
2761 handler
= Ffind_file_name_handler (file
, Qrename_file
);
2763 handler
= Ffind_file_name_handler (newname
, Qrename_file
);
2764 if (!NILP (handler
))
2765 RETURN_UNGCPRO (call4 (handler
, Qrename_file
,
2766 file
, newname
, ok_if_already_exists
));
2768 encoded_file
= ENCODE_FILE (file
);
2769 encoded_newname
= ENCODE_FILE (newname
);
2772 /* If the file names are identical but for the case, don't ask for
2773 confirmation: they simply want to change the letter-case of the
2775 if (NILP (Fstring_equal (Fdowncase (file
), Fdowncase (newname
))))
2777 if (NILP (ok_if_already_exists
)
2778 || INTEGERP (ok_if_already_exists
))
2779 barf_or_query_if_file_exists (newname
, "rename to it",
2780 INTEGERP (ok_if_already_exists
), 0, 0);
2782 if (0 > rename (SDATA (encoded_file
), SDATA (encoded_newname
)))
2784 if (0 > link (SDATA (encoded_file
), SDATA (encoded_newname
))
2785 || 0 > unlink (SDATA (encoded_file
)))
2791 symlink_target
= Ffile_symlink_p (file
);
2792 if (! NILP (symlink_target
))
2793 Fmake_symbolic_link (symlink_target
, newname
,
2794 NILP (ok_if_already_exists
) ? Qnil
: Qt
);
2797 Fcopy_file (file
, newname
,
2798 /* We have already prompted if it was an integer,
2799 so don't have copy-file prompt again. */
2800 NILP (ok_if_already_exists
) ? Qnil
: Qt
,
2803 Fdelete_file (file
);
2806 report_file_error ("Renaming", list2 (file
, newname
));
2812 DEFUN ("add-name-to-file", Fadd_name_to_file
, Sadd_name_to_file
, 2, 3,
2813 "fAdd name to file: \nGName to add to %s: \np",
2814 doc
: /* Give FILE additional name NEWNAME. Both args must be strings.
2815 Signals a `file-already-exists' error if a file NEWNAME already exists
2816 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2817 A number as third arg means request confirmation if NEWNAME already exists.
2818 This is what happens in interactive use with M-x. */)
2819 (file
, newname
, ok_if_already_exists
)
2820 Lisp_Object file
, newname
, ok_if_already_exists
;
2822 Lisp_Object handler
;
2823 Lisp_Object encoded_file
, encoded_newname
;
2824 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
2826 GCPRO4 (file
, newname
, encoded_file
, encoded_newname
);
2827 encoded_file
= encoded_newname
= Qnil
;
2828 CHECK_STRING (file
);
2829 CHECK_STRING (newname
);
2830 file
= Fexpand_file_name (file
, Qnil
);
2832 if (!NILP (Ffile_directory_p (newname
)))
2833 newname
= Fexpand_file_name (Ffile_name_nondirectory (file
), newname
);
2835 newname
= Fexpand_file_name (newname
, Qnil
);
2837 /* If the file name has special constructs in it,
2838 call the corresponding file handler. */
2839 handler
= Ffind_file_name_handler (file
, Qadd_name_to_file
);
2840 if (!NILP (handler
))
2841 RETURN_UNGCPRO (call4 (handler
, Qadd_name_to_file
, file
,
2842 newname
, ok_if_already_exists
));
2844 /* If the new name has special constructs in it,
2845 call the corresponding file handler. */
2846 handler
= Ffind_file_name_handler (newname
, Qadd_name_to_file
);
2847 if (!NILP (handler
))
2848 RETURN_UNGCPRO (call4 (handler
, Qadd_name_to_file
, file
,
2849 newname
, ok_if_already_exists
));
2851 encoded_file
= ENCODE_FILE (file
);
2852 encoded_newname
= ENCODE_FILE (newname
);
2854 if (NILP (ok_if_already_exists
)
2855 || INTEGERP (ok_if_already_exists
))
2856 barf_or_query_if_file_exists (newname
, "make it a new name",
2857 INTEGERP (ok_if_already_exists
), 0, 0);
2859 unlink (SDATA (newname
));
2860 if (0 > link (SDATA (encoded_file
), SDATA (encoded_newname
)))
2861 report_file_error ("Adding new name", list2 (file
, newname
));
2868 DEFUN ("make-symbolic-link", Fmake_symbolic_link
, Smake_symbolic_link
, 2, 3,
2869 "FMake symbolic link to file: \nGMake symbolic link to file %s: \np",
2870 doc
: /* Make a symbolic link to FILENAME, named LINKNAME.
2871 Both args must be strings.
2872 Signals a `file-already-exists' error if a file LINKNAME already exists
2873 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
2874 A number as third arg means request confirmation if LINKNAME already exists.
2875 This happens for interactive use with M-x. */)
2876 (filename
, linkname
, ok_if_already_exists
)
2877 Lisp_Object filename
, linkname
, ok_if_already_exists
;
2879 Lisp_Object handler
;
2880 Lisp_Object encoded_filename
, encoded_linkname
;
2881 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
;
2883 GCPRO4 (filename
, linkname
, encoded_filename
, encoded_linkname
);
2884 encoded_filename
= encoded_linkname
= Qnil
;
2885 CHECK_STRING (filename
);
2886 CHECK_STRING (linkname
);
2887 /* If the link target has a ~, we must expand it to get
2888 a truly valid file name. Otherwise, do not expand;
2889 we want to permit links to relative file names. */
2890 if (SREF (filename
, 0) == '~')
2891 filename
= Fexpand_file_name (filename
, Qnil
);
2893 if (!NILP (Ffile_directory_p (linkname
)))
2894 linkname
= Fexpand_file_name (Ffile_name_nondirectory (filename
), linkname
);
2896 linkname
= Fexpand_file_name (linkname
, Qnil
);
2898 /* If the file name has special constructs in it,
2899 call the corresponding file handler. */
2900 handler
= Ffind_file_name_handler (filename
, Qmake_symbolic_link
);
2901 if (!NILP (handler
))
2902 RETURN_UNGCPRO (call4 (handler
, Qmake_symbolic_link
, filename
,
2903 linkname
, ok_if_already_exists
));
2905 /* If the new link name has special constructs in it,
2906 call the corresponding file handler. */
2907 handler
= Ffind_file_name_handler (linkname
, Qmake_symbolic_link
);
2908 if (!NILP (handler
))
2909 RETURN_UNGCPRO (call4 (handler
, Qmake_symbolic_link
, filename
,
2910 linkname
, ok_if_already_exists
));
2912 encoded_filename
= ENCODE_FILE (filename
);
2913 encoded_linkname
= ENCODE_FILE (linkname
);
2915 if (NILP (ok_if_already_exists
)
2916 || INTEGERP (ok_if_already_exists
))
2917 barf_or_query_if_file_exists (linkname
, "make it a link",
2918 INTEGERP (ok_if_already_exists
), 0, 0);
2919 if (0 > symlink (SDATA (encoded_filename
),
2920 SDATA (encoded_linkname
)))
2922 /* If we didn't complain already, silently delete existing file. */
2923 if (errno
== EEXIST
)
2925 unlink (SDATA (encoded_linkname
));
2926 if (0 <= symlink (SDATA (encoded_filename
),
2927 SDATA (encoded_linkname
)))
2934 report_file_error ("Making symbolic link", list2 (filename
, linkname
));
2939 #endif /* S_IFLNK */
2943 DEFUN ("define-logical-name", Fdefine_logical_name
, Sdefine_logical_name
,
2944 2, 2, "sDefine logical name: \nsDefine logical name %s as: ",
2945 doc
: /* Define the job-wide logical name NAME to have the value STRING.
2946 If STRING is nil or a null string, the logical name NAME is deleted. */)
2951 CHECK_STRING (name
);
2953 delete_logical_name (SDATA (name
));
2956 CHECK_STRING (string
);
2958 if (SCHARS (string
) == 0)
2959 delete_logical_name (SDATA (name
));
2961 define_logical_name (SDATA (name
), SDATA (string
));
2970 DEFUN ("sysnetunam", Fsysnetunam
, Ssysnetunam
, 2, 2, 0,
2971 doc
: /* Open a network connection to PATH using LOGIN as the login string. */)
2973 Lisp_Object path
, login
;
2977 CHECK_STRING (path
);
2978 CHECK_STRING (login
);
2980 netresult
= netunam (SDATA (path
), SDATA (login
));
2982 if (netresult
== -1)
2987 #endif /* HPUX_NET */
2989 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p
, Sfile_name_absolute_p
,
2991 doc
: /* Return t if file FILENAME specifies an absolute file name.
2992 On Unix, this is a name starting with a `/' or a `~'. */)
2994 Lisp_Object filename
;
2996 CHECK_STRING (filename
);
2997 return file_name_absolute_p (SDATA (filename
)) ? Qt
: Qnil
;
3000 /* Return nonzero if file FILENAME exists and can be executed. */
3003 check_executable (filename
)
3007 int len
= strlen (filename
);
3010 if (stat (filename
, &st
) < 0)
3012 #if defined (WINDOWSNT) || (defined (MSDOS) && __DJGPP__ > 1)
3013 return ((st
.st_mode
& S_IEXEC
) != 0);
3015 return (S_ISREG (st
.st_mode
)
3017 && (stricmp ((suffix
= filename
+ len
-4), ".com") == 0
3018 || stricmp (suffix
, ".exe") == 0
3019 || stricmp (suffix
, ".bat") == 0)
3020 || (st
.st_mode
& S_IFMT
) == S_IFDIR
);
3021 #endif /* not WINDOWSNT */
3022 #else /* not DOS_NT */
3023 #ifdef HAVE_EUIDACCESS
3024 return (euidaccess (filename
, 1) >= 0);
3026 /* Access isn't quite right because it uses the real uid
3027 and we really want to test with the effective uid.
3028 But Unix doesn't give us a right way to do it. */
3029 return (access (filename
, 1) >= 0);
3031 #endif /* not DOS_NT */
3034 /* Return nonzero if file FILENAME exists and can be written. */
3037 check_writable (filename
)
3042 if (stat (filename
, &st
) < 0)
3044 return (st
.st_mode
& S_IWRITE
|| (st
.st_mode
& S_IFMT
) == S_IFDIR
);
3045 #else /* not MSDOS */
3046 #ifdef HAVE_EUIDACCESS
3047 return (euidaccess (filename
, 2) >= 0);
3049 /* Access isn't quite right because it uses the real uid
3050 and we really want to test with the effective uid.
3051 But Unix doesn't give us a right way to do it.
3052 Opening with O_WRONLY could work for an ordinary file,
3053 but would lose for directories. */
3054 return (access (filename
, 2) >= 0);
3056 #endif /* not MSDOS */
3059 DEFUN ("file-exists-p", Ffile_exists_p
, Sfile_exists_p
, 1, 1, 0,
3060 doc
: /* Return t if file FILENAME exists (whether or not you can read it.)
3061 See also `file-readable-p' and `file-attributes'.
3062 This returns nil for a symlink to a nonexistent file.
3063 Use `file-symlink-p' to test for such links. */)
3065 Lisp_Object filename
;
3067 Lisp_Object absname
;
3068 Lisp_Object handler
;
3069 struct stat statbuf
;
3071 CHECK_STRING (filename
);
3072 absname
= Fexpand_file_name (filename
, Qnil
);
3074 /* If the file name has special constructs in it,
3075 call the corresponding file handler. */
3076 handler
= Ffind_file_name_handler (absname
, Qfile_exists_p
);
3077 if (!NILP (handler
))
3078 return call2 (handler
, Qfile_exists_p
, absname
);
3080 absname
= ENCODE_FILE (absname
);
3082 return (stat (SDATA (absname
), &statbuf
) >= 0) ? Qt
: Qnil
;
3085 DEFUN ("file-executable-p", Ffile_executable_p
, Sfile_executable_p
, 1, 1, 0,
3086 doc
: /* Return t if FILENAME can be executed by you.
3087 For a directory, this means you can access files in that directory. */)
3089 Lisp_Object filename
;
3091 Lisp_Object absname
;
3092 Lisp_Object handler
;
3094 CHECK_STRING (filename
);
3095 absname
= Fexpand_file_name (filename
, Qnil
);
3097 /* If the file name has special constructs in it,
3098 call the corresponding file handler. */
3099 handler
= Ffind_file_name_handler (absname
, Qfile_executable_p
);
3100 if (!NILP (handler
))
3101 return call2 (handler
, Qfile_executable_p
, absname
);
3103 absname
= ENCODE_FILE (absname
);
3105 return (check_executable (SDATA (absname
)) ? Qt
: Qnil
);
3108 DEFUN ("file-readable-p", Ffile_readable_p
, Sfile_readable_p
, 1, 1, 0,
3109 doc
: /* Return t if file FILENAME exists and you can read it.
3110 See also `file-exists-p' and `file-attributes'. */)
3112 Lisp_Object filename
;
3114 Lisp_Object absname
;
3115 Lisp_Object handler
;
3118 struct stat statbuf
;
3120 CHECK_STRING (filename
);
3121 absname
= Fexpand_file_name (filename
, Qnil
);
3123 /* If the file name has special constructs in it,
3124 call the corresponding file handler. */
3125 handler
= Ffind_file_name_handler (absname
, Qfile_readable_p
);
3126 if (!NILP (handler
))
3127 return call2 (handler
, Qfile_readable_p
, absname
);
3129 absname
= ENCODE_FILE (absname
);
3131 #if defined(DOS_NT) || defined(macintosh)
3132 /* Under MS-DOS, Windows, and Macintosh, open does not work for
3134 if (access (SDATA (absname
), 0) == 0)
3137 #else /* not DOS_NT and not macintosh */
3139 #if defined (S_ISFIFO) && defined (O_NONBLOCK)
3140 /* Opening a fifo without O_NONBLOCK can wait.
3141 We don't want to wait. But we don't want to mess wth O_NONBLOCK
3142 except in the case of a fifo, on a system which handles it. */
3143 desc
= stat (SDATA (absname
), &statbuf
);
3146 if (S_ISFIFO (statbuf
.st_mode
))
3147 flags
|= O_NONBLOCK
;
3149 desc
= emacs_open (SDATA (absname
), flags
, 0);
3154 #endif /* not DOS_NT and not macintosh */
3157 /* Having this before file-symlink-p mysteriously caused it to be forgotten
3159 DEFUN ("file-writable-p", Ffile_writable_p
, Sfile_writable_p
, 1, 1, 0,
3160 doc
: /* Return t if file FILENAME can be written or created by you. */)
3162 Lisp_Object filename
;
3164 Lisp_Object absname
, dir
, encoded
;
3165 Lisp_Object handler
;
3166 struct stat statbuf
;
3168 CHECK_STRING (filename
);
3169 absname
= Fexpand_file_name (filename
, Qnil
);
3171 /* If the file name has special constructs in it,
3172 call the corresponding file handler. */
3173 handler
= Ffind_file_name_handler (absname
, Qfile_writable_p
);
3174 if (!NILP (handler
))
3175 return call2 (handler
, Qfile_writable_p
, absname
);
3177 encoded
= ENCODE_FILE (absname
);
3178 if (stat (SDATA (encoded
), &statbuf
) >= 0)
3179 return (check_writable (SDATA (encoded
))
3182 dir
= Ffile_name_directory (absname
);
3185 dir
= Fdirectory_file_name (dir
);
3189 dir
= Fdirectory_file_name (dir
);
3192 dir
= ENCODE_FILE (dir
);
3194 /* The read-only attribute of the parent directory doesn't affect
3195 whether a file or directory can be created within it. Some day we
3196 should check ACLs though, which do affect this. */
3197 if (stat (SDATA (dir
), &statbuf
) < 0)
3199 return (statbuf
.st_mode
& S_IFMT
) == S_IFDIR
? Qt
: Qnil
;
3201 return (check_writable (!NILP (dir
) ? (char *) SDATA (dir
) : "")
3206 DEFUN ("access-file", Faccess_file
, Saccess_file
, 2, 2, 0,
3207 doc
: /* Access file FILENAME, and get an error if that does not work.
3208 The second argument STRING is used in the error message.
3209 If there is no error, returns nil. */)
3211 Lisp_Object filename
, string
;
3213 Lisp_Object handler
, encoded_filename
, absname
;
3216 CHECK_STRING (filename
);
3217 absname
= Fexpand_file_name (filename
, Qnil
);
3219 CHECK_STRING (string
);
3221 /* If the file name has special constructs in it,
3222 call the corresponding file handler. */
3223 handler
= Ffind_file_name_handler (absname
, Qaccess_file
);
3224 if (!NILP (handler
))
3225 return call3 (handler
, Qaccess_file
, absname
, string
);
3227 encoded_filename
= ENCODE_FILE (absname
);
3229 fd
= emacs_open (SDATA (encoded_filename
), O_RDONLY
, 0);
3231 report_file_error (SDATA (string
), Fcons (filename
, Qnil
));
3237 DEFUN ("file-symlink-p", Ffile_symlink_p
, Sfile_symlink_p
, 1, 1, 0,
3238 doc
: /* Return non-nil if file FILENAME is the name of a symbolic link.
3239 The value is the link target, as a string.
3240 Otherwise it returns nil.
3242 This function returns t when given the name of a symlink that
3243 points to a nonexistent file. */)
3245 Lisp_Object filename
;
3247 Lisp_Object handler
;
3249 CHECK_STRING (filename
);
3250 filename
= Fexpand_file_name (filename
, Qnil
);
3252 /* If the file name has special constructs in it,
3253 call the corresponding file handler. */
3254 handler
= Ffind_file_name_handler (filename
, Qfile_symlink_p
);
3255 if (!NILP (handler
))
3256 return call2 (handler
, Qfile_symlink_p
, filename
);
3265 filename
= ENCODE_FILE (filename
);
3272 buf
= (char *) xrealloc (buf
, bufsize
);
3273 bzero (buf
, bufsize
);
3276 valsize
= readlink (SDATA (filename
), buf
, bufsize
);
3280 /* HP-UX reports ERANGE if buffer is too small. */
3281 if (errno
== ERANGE
)
3291 while (valsize
>= bufsize
);
3293 val
= make_string (buf
, valsize
);
3294 if (buf
[0] == '/' && index (buf
, ':'))
3295 val
= concat2 (build_string ("/:"), val
);
3297 val
= DECODE_FILE (val
);
3300 #else /* not S_IFLNK */
3302 #endif /* not S_IFLNK */
3305 DEFUN ("file-directory-p", Ffile_directory_p
, Sfile_directory_p
, 1, 1, 0,
3306 doc
: /* Return t if FILENAME names an existing directory.
3307 Symbolic links to directories count as directories.
3308 See `file-symlink-p' to distinguish symlinks. */)
3310 Lisp_Object filename
;
3312 register Lisp_Object absname
;
3314 Lisp_Object handler
;
3316 absname
= expand_and_dir_to_file (filename
, current_buffer
->directory
);
3318 /* If the file name has special constructs in it,
3319 call the corresponding file handler. */
3320 handler
= Ffind_file_name_handler (absname
, Qfile_directory_p
);
3321 if (!NILP (handler
))
3322 return call2 (handler
, Qfile_directory_p
, absname
);
3324 absname
= ENCODE_FILE (absname
);
3326 if (stat (SDATA (absname
), &st
) < 0)
3328 return (st
.st_mode
& S_IFMT
) == S_IFDIR
? Qt
: Qnil
;
3331 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p
, Sfile_accessible_directory_p
, 1, 1, 0,
3332 doc
: /* Return t if file FILENAME names a directory you can open.
3333 For the value to be t, FILENAME must specify the name of a directory as a file,
3334 and the directory must allow you to open files in it. In order to use a
3335 directory as a buffer's current directory, this predicate must return true.
3336 A directory name spec may be given instead; then the value is t
3337 if the directory so specified exists and really is a readable and
3338 searchable directory. */)
3340 Lisp_Object filename
;
3342 Lisp_Object handler
;
3344 struct gcpro gcpro1
;
3346 /* If the file name has special constructs in it,
3347 call the corresponding file handler. */
3348 handler
= Ffind_file_name_handler (filename
, Qfile_accessible_directory_p
);
3349 if (!NILP (handler
))
3350 return call2 (handler
, Qfile_accessible_directory_p
, filename
);
3353 tem
= (NILP (Ffile_directory_p (filename
))
3354 || NILP (Ffile_executable_p (filename
)));
3356 return tem
? Qnil
: Qt
;
3359 DEFUN ("file-regular-p", Ffile_regular_p
, Sfile_regular_p
, 1, 1, 0,
3360 doc
: /* Return t if FILENAME names a regular file.
3361 This is the sort of file that holds an ordinary stream of data bytes.
3362 Symbolic links to regular files count as regular files.
3363 See `file-symlink-p' to distinguish symlinks. */)
3365 Lisp_Object filename
;
3367 register Lisp_Object absname
;
3369 Lisp_Object handler
;
3371 absname
= expand_and_dir_to_file (filename
, current_buffer
->directory
);
3373 /* If the file name has special constructs in it,
3374 call the corresponding file handler. */
3375 handler
= Ffind_file_name_handler (absname
, Qfile_regular_p
);
3376 if (!NILP (handler
))
3377 return call2 (handler
, Qfile_regular_p
, absname
);
3379 absname
= ENCODE_FILE (absname
);
3384 Lisp_Object tem
= Vw32_get_true_file_attributes
;
3386 /* Tell stat to use expensive method to get accurate info. */
3387 Vw32_get_true_file_attributes
= Qt
;
3388 result
= stat (SDATA (absname
), &st
);
3389 Vw32_get_true_file_attributes
= tem
;
3393 return (st
.st_mode
& S_IFMT
) == S_IFREG
? Qt
: Qnil
;
3396 if (stat (SDATA (absname
), &st
) < 0)
3398 return (st
.st_mode
& S_IFMT
) == S_IFREG
? Qt
: Qnil
;
3402 DEFUN ("file-modes", Ffile_modes
, Sfile_modes
, 1, 1, 0,
3403 doc
: /* Return mode bits of file named FILENAME, as an integer.
3404 Return nil, if file does not exist or is not accessible. */)
3406 Lisp_Object filename
;
3408 Lisp_Object absname
;
3410 Lisp_Object handler
;
3412 absname
= expand_and_dir_to_file (filename
, current_buffer
->directory
);
3414 /* If the file name has special constructs in it,
3415 call the corresponding file handler. */
3416 handler
= Ffind_file_name_handler (absname
, Qfile_modes
);
3417 if (!NILP (handler
))
3418 return call2 (handler
, Qfile_modes
, absname
);
3420 absname
= ENCODE_FILE (absname
);
3422 if (stat (SDATA (absname
), &st
) < 0)
3424 #if defined (MSDOS) && __DJGPP__ < 2
3425 if (check_executable (SDATA (absname
)))
3426 st
.st_mode
|= S_IEXEC
;
3427 #endif /* MSDOS && __DJGPP__ < 2 */
3429 return make_number (st
.st_mode
& 07777);
3432 DEFUN ("set-file-modes", Fset_file_modes
, Sset_file_modes
, 2, 2,
3433 "(let ((file (read-file-name \"File: \"))) \
3434 (list file (read-file-modes nil file)))",
3435 doc
: /* Set mode bits of file named FILENAME to MODE (an integer).
3436 Only the 12 low bits of MODE are used. */)
3438 Lisp_Object filename
, mode
;
3440 Lisp_Object absname
, encoded_absname
;
3441 Lisp_Object handler
;
3443 absname
= Fexpand_file_name (filename
, current_buffer
->directory
);
3444 CHECK_NUMBER (mode
);
3446 /* If the file name has special constructs in it,
3447 call the corresponding file handler. */
3448 handler
= Ffind_file_name_handler (absname
, Qset_file_modes
);
3449 if (!NILP (handler
))
3450 return call3 (handler
, Qset_file_modes
, absname
, mode
);
3452 encoded_absname
= ENCODE_FILE (absname
);
3454 if (chmod (SDATA (encoded_absname
), XINT (mode
)) < 0)
3455 report_file_error ("Doing chmod", Fcons (absname
, Qnil
));
3460 DEFUN ("set-default-file-modes", Fset_default_file_modes
, Sset_default_file_modes
, 1, 1, 0,
3461 doc
: /* Set the file permission bits for newly created files.
3462 The argument MODE should be an integer; only the low 9 bits are used.
3463 This setting is inherited by subprocesses. */)
3467 CHECK_NUMBER (mode
);
3469 umask ((~ XINT (mode
)) & 0777);
3474 DEFUN ("default-file-modes", Fdefault_file_modes
, Sdefault_file_modes
, 0, 0, 0,
3475 doc
: /* Return the default file protection for created files.
3476 The value is an integer. */)
3482 realmask
= umask (0);
3485 XSETINT (value
, (~ realmask
) & 0777);
3489 extern int lisp_time_argument
P_ ((Lisp_Object
, time_t *, int *));
3491 DEFUN ("set-file-times", Fset_file_times
, Sset_file_times
, 1, 2, 0,
3492 doc
: /* Set times of file FILENAME to TIME.
3493 Set both access and modification times.
3494 Return t on success, else nil.
3495 Use the current time if TIME is nil. TIME is in the format of
3498 Lisp_Object filename
, time
;
3500 Lisp_Object absname
, encoded_absname
;
3501 Lisp_Object handler
;
3505 if (! lisp_time_argument (time
, &sec
, &usec
))
3506 error ("Invalid time specification");
3508 absname
= Fexpand_file_name (filename
, current_buffer
->directory
);
3510 /* If the file name has special constructs in it,
3511 call the corresponding file handler. */
3512 handler
= Ffind_file_name_handler (absname
, Qset_file_times
);
3513 if (!NILP (handler
))
3514 return call3 (handler
, Qset_file_times
, absname
, time
);
3516 encoded_absname
= ENCODE_FILE (absname
);
3521 EMACS_SET_SECS (t
, sec
);
3522 EMACS_SET_USECS (t
, usec
);
3524 if (set_file_times (SDATA (encoded_absname
), t
, t
))
3529 /* Setting times on a directory always fails. */
3530 if (stat (SDATA (encoded_absname
), &st
) == 0
3531 && (st
.st_mode
& S_IFMT
) == S_IFDIR
)
3534 report_file_error ("Setting file times", Fcons (absname
, Qnil
));
3543 DEFUN ("unix-sync", Funix_sync
, Sunix_sync
, 0, 0, "",
3544 doc
: /* Tell Unix to finish all pending disk updates. */)
3551 #endif /* HAVE_SYNC */
3553 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p
, Sfile_newer_than_file_p
, 2, 2, 0,
3554 doc
: /* Return t if file FILE1 is newer than file FILE2.
3555 If FILE1 does not exist, the answer is nil;
3556 otherwise, if FILE2 does not exist, the answer is t. */)
3558 Lisp_Object file1
, file2
;
3560 Lisp_Object absname1
, absname2
;
3563 Lisp_Object handler
;
3564 struct gcpro gcpro1
, gcpro2
;
3566 CHECK_STRING (file1
);
3567 CHECK_STRING (file2
);
3570 GCPRO2 (absname1
, file2
);
3571 absname1
= expand_and_dir_to_file (file1
, current_buffer
->directory
);
3572 absname2
= expand_and_dir_to_file (file2
, current_buffer
->directory
);
3575 /* If the file name has special constructs in it,
3576 call the corresponding file handler. */
3577 handler
= Ffind_file_name_handler (absname1
, Qfile_newer_than_file_p
);
3579 handler
= Ffind_file_name_handler (absname2
, Qfile_newer_than_file_p
);
3580 if (!NILP (handler
))
3581 return call3 (handler
, Qfile_newer_than_file_p
, absname1
, absname2
);
3583 GCPRO2 (absname1
, absname2
);
3584 absname1
= ENCODE_FILE (absname1
);
3585 absname2
= ENCODE_FILE (absname2
);
3588 if (stat (SDATA (absname1
), &st
) < 0)
3591 mtime1
= st
.st_mtime
;
3593 if (stat (SDATA (absname2
), &st
) < 0)
3596 return (mtime1
> st
.st_mtime
) ? Qt
: Qnil
;
3600 Lisp_Object Qfind_buffer_file_type
;
3603 #ifndef READ_BUF_SIZE
3604 #define READ_BUF_SIZE (64 << 10)
3607 extern void adjust_markers_for_delete
P_ ((int, int, int, int));
3609 /* This function is called after Lisp functions to decide a coding
3610 system are called, or when they cause an error. Before they are
3611 called, the current buffer is set unibyte and it contains only a
3612 newly inserted text (thus the buffer was empty before the
3615 The functions may set markers, overlays, text properties, or even
3616 alter the buffer contents, change the current buffer.
3618 Here, we reset all those changes by:
3619 o set back the current buffer.
3620 o move all markers and overlays to BEG.
3621 o remove all text properties.
3622 o set back the buffer multibyteness. */
3625 decide_coding_unwind (unwind_data
)
3626 Lisp_Object unwind_data
;
3628 Lisp_Object multibyte
, undo_list
, buffer
;
3630 multibyte
= XCAR (unwind_data
);
3631 unwind_data
= XCDR (unwind_data
);
3632 undo_list
= XCAR (unwind_data
);
3633 buffer
= XCDR (unwind_data
);
3635 if (current_buffer
!= XBUFFER (buffer
))
3636 set_buffer_internal (XBUFFER (buffer
));
3637 adjust_markers_for_delete (BEG
, BEG_BYTE
, Z
, Z_BYTE
);
3638 adjust_overlays_for_delete (BEG
, Z
- BEG
);
3639 BUF_INTERVALS (current_buffer
) = 0;
3640 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
3642 /* Now we are safe to change the buffer's multibyteness directly. */
3643 current_buffer
->enable_multibyte_characters
= multibyte
;
3644 current_buffer
->undo_list
= undo_list
;
3650 /* Used to pass values from insert-file-contents to read_non_regular. */
3652 static int non_regular_fd
;
3653 static int non_regular_inserted
;
3654 static int non_regular_nbytes
;
3657 /* Read from a non-regular file.
3658 Read non_regular_trytry bytes max from non_regular_fd.
3659 Non_regular_inserted specifies where to put the read bytes.
3660 Value is the number of bytes read. */
3669 nbytes
= emacs_read (non_regular_fd
,
3670 BEG_ADDR
+ PT_BYTE
- BEG_BYTE
+ non_regular_inserted
,
3671 non_regular_nbytes
);
3673 return make_number (nbytes
);
3677 /* Condition-case handler used when reading from non-regular files
3678 in insert-file-contents. */
3681 read_non_regular_quit ()
3687 DEFUN ("insert-file-contents", Finsert_file_contents
, Sinsert_file_contents
,
3689 doc
: /* Insert contents of file FILENAME after point.
3690 Returns list of absolute file name and number of characters inserted.
3691 If second argument VISIT is non-nil, the buffer's visited filename and
3692 last save file modtime are set, and it is marked unmodified. If
3693 visiting and the file does not exist, visiting is completed before the
3696 The optional third and fourth arguments BEG and END specify what portion
3697 of the file to insert. These arguments count bytes in the file, not
3698 characters in the buffer. If VISIT is non-nil, BEG and END must be nil.
3700 If optional fifth argument REPLACE is non-nil, replace the current
3701 buffer contents (in the accessible portion) with the file contents.
3702 This is better than simply deleting and inserting the whole thing
3703 because (1) it preserves some marker positions and (2) it puts less data
3704 in the undo list. When REPLACE is non-nil, the second return value is
3705 the number of characters that replace previous buffer contents.
3707 This function does code conversion according to the value of
3708 `coding-system-for-read' or `file-coding-system-alist', and sets the
3709 variable `last-coding-system-used' to the coding system actually used. */)
3710 (filename
, visit
, beg
, end
, replace
)
3711 Lisp_Object filename
, visit
, beg
, end
, replace
;
3716 register int how_much
;
3717 register int unprocessed
;
3718 int count
= SPECPDL_INDEX ();
3719 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
3720 Lisp_Object handler
, val
, insval
, orig_filename
, old_undo
;
3723 int not_regular
= 0;
3724 unsigned char read_buf
[READ_BUF_SIZE
];
3725 struct coding_system coding
;
3726 unsigned char buffer
[1 << 14];
3727 int replace_handled
= 0;
3728 int set_coding_system
= 0;
3729 Lisp_Object coding_system
;
3731 Lisp_Object old_Vdeactivate_mark
= Vdeactivate_mark
;
3732 int we_locked_file
= 0;
3734 if (current_buffer
->base_buffer
&& ! NILP (visit
))
3735 error ("Cannot do file visiting in an indirect buffer");
3737 if (!NILP (current_buffer
->read_only
))
3738 Fbarf_if_buffer_read_only ();
3742 orig_filename
= Qnil
;
3745 GCPRO5 (filename
, val
, p
, orig_filename
, old_undo
);
3747 CHECK_STRING (filename
);
3748 filename
= Fexpand_file_name (filename
, Qnil
);
3750 /* The value Qnil means that the coding system is not yet
3752 coding_system
= Qnil
;
3754 /* If the file name has special constructs in it,
3755 call the corresponding file handler. */
3756 handler
= Ffind_file_name_handler (filename
, Qinsert_file_contents
);
3757 if (!NILP (handler
))
3759 val
= call6 (handler
, Qinsert_file_contents
, filename
,
3760 visit
, beg
, end
, replace
);
3761 if (CONSP (val
) && CONSP (XCDR (val
)))
3762 inserted
= XINT (XCAR (XCDR (val
)));
3766 orig_filename
= filename
;
3767 filename
= ENCODE_FILE (filename
);
3773 Lisp_Object tem
= Vw32_get_true_file_attributes
;
3775 /* Tell stat to use expensive method to get accurate info. */
3776 Vw32_get_true_file_attributes
= Qt
;
3777 total
= stat (SDATA (filename
), &st
);
3778 Vw32_get_true_file_attributes
= tem
;
3782 if (stat (SDATA (filename
), &st
) < 0)
3783 #endif /* WINDOWSNT */
3785 if (fd
>= 0) emacs_close (fd
);
3788 report_file_error ("Opening input file", Fcons (orig_filename
, Qnil
));
3791 if (!NILP (Vcoding_system_for_read
))
3792 Fset (Qbuffer_file_coding_system
, Vcoding_system_for_read
);
3797 /* This code will need to be changed in order to work on named
3798 pipes, and it's probably just not worth it. So we should at
3799 least signal an error. */
3800 if (!S_ISREG (st
.st_mode
))
3807 if (! NILP (replace
) || ! NILP (beg
) || ! NILP (end
))
3808 xsignal2 (Qfile_error
,
3809 build_string ("not a regular file"), orig_filename
);
3814 if ((fd
= emacs_open (SDATA (filename
), O_RDONLY
, 0)) < 0)
3817 /* Replacement should preserve point as it preserves markers. */
3818 if (!NILP (replace
))
3819 record_unwind_protect (restore_point_unwind
, Fpoint_marker ());
3821 record_unwind_protect (close_file_unwind
, make_number (fd
));
3823 /* Supposedly happens on VMS. */
3824 /* Can happen on any platform that uses long as type of off_t, but allows
3825 file sizes to exceed 2Gb. VMS is no longer officially supported, so
3826 give a message suitable for the latter case. */
3827 if (! not_regular
&& st
.st_size
< 0)
3828 error ("Maximum buffer size exceeded");
3830 /* Prevent redisplay optimizations. */
3831 current_buffer
->clip_changed
= 1;
3835 if (!NILP (beg
) || !NILP (end
))
3836 error ("Attempt to visit less than an entire file");
3837 if (BEG
< Z
&& NILP (replace
))
3838 error ("Cannot do file visiting in a non-empty buffer");
3844 XSETFASTINT (beg
, 0);
3852 XSETINT (end
, st
.st_size
);
3854 /* Arithmetic overflow can occur if an Emacs integer cannot
3855 represent the file size, or if the calculations below
3856 overflow. The calculations below double the file size
3857 twice, so check that it can be multiplied by 4 safely. */
3858 if (XINT (end
) != st
.st_size
3859 || st
.st_size
> INT_MAX
/ 4)
3860 error ("Maximum buffer size exceeded");
3862 /* The file size returned from stat may be zero, but data
3863 may be readable nonetheless, for example when this is a
3864 file in the /proc filesystem. */
3865 if (st
.st_size
== 0)
3866 XSETINT (end
, READ_BUF_SIZE
);
3870 if (EQ (Vcoding_system_for_read
, Qauto_save_coding
))
3872 coding_system
= coding_inherit_eol_type (Qutf_8_emacs
, Qunix
);
3873 setup_coding_system (coding_system
, &coding
);
3874 /* Ensure we set Vlast_coding_system_used. */
3875 set_coding_system
= 1;
3879 /* Decide the coding system to use for reading the file now
3880 because we can't use an optimized method for handling
3881 `coding:' tag if the current buffer is not empty. */
3882 if (!NILP (Vcoding_system_for_read
))
3883 coding_system
= Vcoding_system_for_read
;
3886 /* Don't try looking inside a file for a coding system
3887 specification if it is not seekable. */
3888 if (! not_regular
&& ! NILP (Vset_auto_coding_function
))
3890 /* Find a coding system specified in the heading two
3891 lines or in the tailing several lines of the file.
3892 We assume that the 1K-byte and 3K-byte for heading
3893 and tailing respectively are sufficient for this
3897 if (st
.st_size
<= (1024 * 4))
3898 nread
= emacs_read (fd
, read_buf
, 1024 * 4);
3901 nread
= emacs_read (fd
, read_buf
, 1024);
3904 if (lseek (fd
, st
.st_size
- (1024 * 3), 0) < 0)
3905 report_file_error ("Setting file position",
3906 Fcons (orig_filename
, Qnil
));
3907 nread
+= emacs_read (fd
, read_buf
+ nread
, 1024 * 3);
3912 error ("IO error reading %s: %s",
3913 SDATA (orig_filename
), emacs_strerror (errno
));
3916 struct buffer
*prev
= current_buffer
;
3920 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
3922 buffer
= Fget_buffer_create (build_string (" *code-converting-work*"));
3923 buf
= XBUFFER (buffer
);
3925 delete_all_overlays (buf
);
3926 buf
->directory
= current_buffer
->directory
;
3927 buf
->read_only
= Qnil
;
3928 buf
->filename
= Qnil
;
3929 buf
->undo_list
= Qt
;
3930 eassert (buf
->overlays_before
== NULL
);
3931 eassert (buf
->overlays_after
== NULL
);
3933 set_buffer_internal (buf
);
3935 buf
->enable_multibyte_characters
= Qnil
;
3937 insert_1_both (read_buf
, nread
, nread
, 0, 0, 0);
3938 TEMP_SET_PT_BOTH (BEG
, BEG_BYTE
);
3939 coding_system
= call2 (Vset_auto_coding_function
,
3940 filename
, make_number (nread
));
3941 set_buffer_internal (prev
);
3943 /* Discard the unwind protect for recovering the
3947 /* Rewind the file for the actual read done later. */
3948 if (lseek (fd
, 0, 0) < 0)
3949 report_file_error ("Setting file position",
3950 Fcons (orig_filename
, Qnil
));
3954 if (NILP (coding_system
))
3956 /* If we have not yet decided a coding system, check
3957 file-coding-system-alist. */
3958 Lisp_Object args
[6];
3960 args
[0] = Qinsert_file_contents
, args
[1] = orig_filename
;
3961 args
[2] = visit
, args
[3] = beg
, args
[4] = end
, args
[5] = replace
;
3962 coding_system
= Ffind_operation_coding_system (6, args
);
3963 if (CONSP (coding_system
))
3964 coding_system
= XCAR (coding_system
);
3968 if (NILP (coding_system
))
3969 coding_system
= Qundecided
;
3971 CHECK_CODING_SYSTEM (coding_system
);
3973 if (NILP (current_buffer
->enable_multibyte_characters
))
3974 /* We must suppress all character code conversion except for
3975 end-of-line conversion. */
3976 coding_system
= raw_text_coding_system (coding_system
);
3978 setup_coding_system (coding_system
, &coding
);
3979 /* Ensure we set Vlast_coding_system_used. */
3980 set_coding_system
= 1;
3983 /* If requested, replace the accessible part of the buffer
3984 with the file contents. Avoid replacing text at the
3985 beginning or end of the buffer that matches the file contents;
3986 that preserves markers pointing to the unchanged parts.
3988 Here we implement this feature in an optimized way
3989 for the case where code conversion is NOT needed.
3990 The following if-statement handles the case of conversion
3991 in a less optimal way.
3993 If the code conversion is "automatic" then we try using this
3994 method and hope for the best.
3995 But if we discover the need for conversion, we give up on this method
3996 and let the following if-statement handle the replace job. */
3999 && (NILP (coding_system
)
4000 || ! CODING_REQUIRE_DECODING (&coding
)))
4002 /* same_at_start and same_at_end count bytes,
4003 because file access counts bytes
4004 and BEG and END count bytes. */
4005 int same_at_start
= BEGV_BYTE
;
4006 int same_at_end
= ZV_BYTE
;
4008 /* There is still a possibility we will find the need to do code
4009 conversion. If that happens, we set this variable to 1 to
4010 give up on handling REPLACE in the optimized way. */
4011 int giveup_match_end
= 0;
4013 if (XINT (beg
) != 0)
4015 if (lseek (fd
, XINT (beg
), 0) < 0)
4016 report_file_error ("Setting file position",
4017 Fcons (orig_filename
, Qnil
));
4022 /* Count how many chars at the start of the file
4023 match the text at the beginning of the buffer. */
4028 nread
= emacs_read (fd
, buffer
, sizeof buffer
);
4030 error ("IO error reading %s: %s",
4031 SDATA (orig_filename
), emacs_strerror (errno
));
4032 else if (nread
== 0)
4035 if (CODING_REQUIRE_DETECTION (&coding
))
4037 coding_system
= detect_coding_system (buffer
, nread
, nread
, 1, 0,
4039 setup_coding_system (coding_system
, &coding
);
4042 if (CODING_REQUIRE_DECODING (&coding
))
4043 /* We found that the file should be decoded somehow.
4044 Let's give up here. */
4046 giveup_match_end
= 1;
4051 while (bufpos
< nread
&& same_at_start
< ZV_BYTE
4052 && FETCH_BYTE (same_at_start
) == buffer
[bufpos
])
4053 same_at_start
++, bufpos
++;
4054 /* If we found a discrepancy, stop the scan.
4055 Otherwise loop around and scan the next bufferful. */
4056 if (bufpos
!= nread
)
4060 /* If the file matches the buffer completely,
4061 there's no need to replace anything. */
4062 if (same_at_start
- BEGV_BYTE
== XINT (end
))
4066 /* Truncate the buffer to the size of the file. */
4067 del_range_1 (same_at_start
, same_at_end
, 0, 0);
4072 /* Count how many chars at the end of the file
4073 match the text at the end of the buffer. But, if we have
4074 already found that decoding is necessary, don't waste time. */
4075 while (!giveup_match_end
)
4077 int total_read
, nread
, bufpos
, curpos
, trial
;
4079 /* At what file position are we now scanning? */
4080 curpos
= XINT (end
) - (ZV_BYTE
- same_at_end
);
4081 /* If the entire file matches the buffer tail, stop the scan. */
4084 /* How much can we scan in the next step? */
4085 trial
= min (curpos
, sizeof buffer
);
4086 if (lseek (fd
, curpos
- trial
, 0) < 0)
4087 report_file_error ("Setting file position",
4088 Fcons (orig_filename
, Qnil
));
4090 total_read
= nread
= 0;
4091 while (total_read
< trial
)
4093 nread
= emacs_read (fd
, buffer
+ total_read
, trial
- total_read
);
4095 error ("IO error reading %s: %s",
4096 SDATA (orig_filename
), emacs_strerror (errno
));
4097 else if (nread
== 0)
4099 total_read
+= nread
;
4102 /* Scan this bufferful from the end, comparing with
4103 the Emacs buffer. */
4104 bufpos
= total_read
;
4106 /* Compare with same_at_start to avoid counting some buffer text
4107 as matching both at the file's beginning and at the end. */
4108 while (bufpos
> 0 && same_at_end
> same_at_start
4109 && FETCH_BYTE (same_at_end
- 1) == buffer
[bufpos
- 1])
4110 same_at_end
--, bufpos
--;
4112 /* If we found a discrepancy, stop the scan.
4113 Otherwise loop around and scan the preceding bufferful. */
4116 /* If this discrepancy is because of code conversion,
4117 we cannot use this method; giveup and try the other. */
4118 if (same_at_end
> same_at_start
4119 && FETCH_BYTE (same_at_end
- 1) >= 0200
4120 && ! NILP (current_buffer
->enable_multibyte_characters
)
4121 && (CODING_MAY_REQUIRE_DECODING (&coding
)))
4122 giveup_match_end
= 1;
4131 if (! giveup_match_end
)
4135 /* We win! We can handle REPLACE the optimized way. */
4137 /* Extend the start of non-matching text area to multibyte
4138 character boundary. */
4139 if (! NILP (current_buffer
->enable_multibyte_characters
))
4140 while (same_at_start
> BEGV_BYTE
4141 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start
)))
4144 /* Extend the end of non-matching text area to multibyte
4145 character boundary. */
4146 if (! NILP (current_buffer
->enable_multibyte_characters
))
4147 while (same_at_end
< ZV_BYTE
4148 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end
)))
4151 /* Don't try to reuse the same piece of text twice. */
4152 overlap
= (same_at_start
- BEGV_BYTE
4153 - (same_at_end
+ st
.st_size
- ZV
));
4155 same_at_end
+= overlap
;
4157 /* Arrange to read only the nonmatching middle part of the file. */
4158 XSETFASTINT (beg
, XINT (beg
) + (same_at_start
- BEGV_BYTE
));
4159 XSETFASTINT (end
, XINT (end
) - (ZV_BYTE
- same_at_end
));
4161 del_range_byte (same_at_start
, same_at_end
, 0);
4162 /* Insert from the file at the proper position. */
4163 temp
= BYTE_TO_CHAR (same_at_start
);
4164 SET_PT_BOTH (temp
, same_at_start
);
4166 /* If display currently starts at beginning of line,
4167 keep it that way. */
4168 if (XBUFFER (XWINDOW (selected_window
)->buffer
) == current_buffer
)
4169 XWINDOW (selected_window
)->start_at_line_beg
= Fbolp ();
4171 replace_handled
= 1;
4175 /* If requested, replace the accessible part of the buffer
4176 with the file contents. Avoid replacing text at the
4177 beginning or end of the buffer that matches the file contents;
4178 that preserves markers pointing to the unchanged parts.
4180 Here we implement this feature for the case where code conversion
4181 is needed, in a simple way that needs a lot of memory.
4182 The preceding if-statement handles the case of no conversion
4183 in a more optimized way. */
4184 if (!NILP (replace
) && ! replace_handled
&& BEGV
< ZV
)
4186 int same_at_start
= BEGV_BYTE
;
4187 int same_at_end
= ZV_BYTE
;
4188 int same_at_start_charpos
;
4192 unsigned char *decoded
;
4194 int this_count
= SPECPDL_INDEX ();
4195 int multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
4196 Lisp_Object conversion_buffer
;
4198 conversion_buffer
= code_conversion_save (1, multibyte
);
4200 /* First read the whole file, performing code conversion into
4201 CONVERSION_BUFFER. */
4203 if (lseek (fd
, XINT (beg
), 0) < 0)
4204 report_file_error ("Setting file position",
4205 Fcons (orig_filename
, Qnil
));
4207 total
= st
.st_size
; /* Total bytes in the file. */
4208 how_much
= 0; /* Bytes read from file so far. */
4209 inserted
= 0; /* Bytes put into CONVERSION_BUFFER so far. */
4210 unprocessed
= 0; /* Bytes not processed in previous loop. */
4212 GCPRO1 (conversion_buffer
);
4213 while (how_much
< total
)
4215 /* We read one bunch by one (READ_BUF_SIZE bytes) to allow
4216 quitting while reading a huge while. */
4217 /* try is reserved in some compilers (Microsoft C) */
4218 int trytry
= min (total
- how_much
, READ_BUF_SIZE
- unprocessed
);
4221 /* Allow quitting out of the actual I/O. */
4224 this = emacs_read (fd
, read_buf
+ unprocessed
, trytry
);
4236 BUF_SET_PT (XBUFFER (conversion_buffer
),
4237 BUF_Z (XBUFFER (conversion_buffer
)));
4238 decode_coding_c_string (&coding
, read_buf
, unprocessed
+ this,
4240 unprocessed
= coding
.carryover_bytes
;
4241 if (coding
.carryover_bytes
> 0)
4242 bcopy (coding
.carryover
, read_buf
, unprocessed
);
4247 /* At this point, HOW_MUCH should equal TOTAL, or should be <= 0
4248 if we couldn't read the file. */
4251 error ("IO error reading %s: %s",
4252 SDATA (orig_filename
), emacs_strerror (errno
));
4254 if (unprocessed
> 0)
4256 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
4257 decode_coding_c_string (&coding
, read_buf
, unprocessed
,
4259 coding
.mode
&= ~CODING_MODE_LAST_BLOCK
;
4262 decoded
= BUF_BEG_ADDR (XBUFFER (conversion_buffer
));
4263 inserted
= (BUF_Z_BYTE (XBUFFER (conversion_buffer
))
4264 - BUF_BEG_BYTE (XBUFFER (conversion_buffer
)));
4266 /* Compare the beginning of the converted string with the buffer
4270 while (bufpos
< inserted
&& same_at_start
< same_at_end
4271 && FETCH_BYTE (same_at_start
) == decoded
[bufpos
])
4272 same_at_start
++, bufpos
++;
4274 /* If the file matches the head of buffer completely,
4275 there's no need to replace anything. */
4277 if (bufpos
== inserted
)
4280 /* Truncate the buffer to the size of the file. */
4281 del_range_byte (same_at_start
, same_at_end
, 0);
4284 unbind_to (this_count
, Qnil
);
4288 /* Extend the start of non-matching text area to the previous
4289 multibyte character boundary. */
4290 if (! NILP (current_buffer
->enable_multibyte_characters
))
4291 while (same_at_start
> BEGV_BYTE
4292 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start
)))
4295 /* Scan this bufferful from the end, comparing with
4296 the Emacs buffer. */
4299 /* Compare with same_at_start to avoid counting some buffer text
4300 as matching both at the file's beginning and at the end. */
4301 while (bufpos
> 0 && same_at_end
> same_at_start
4302 && FETCH_BYTE (same_at_end
- 1) == decoded
[bufpos
- 1])
4303 same_at_end
--, bufpos
--;
4305 /* Extend the end of non-matching text area to the next
4306 multibyte character boundary. */
4307 if (! NILP (current_buffer
->enable_multibyte_characters
))
4308 while (same_at_end
< ZV_BYTE
4309 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end
)))
4312 /* Don't try to reuse the same piece of text twice. */
4313 overlap
= same_at_start
- BEGV_BYTE
- (same_at_end
+ inserted
- ZV_BYTE
);
4315 same_at_end
+= overlap
;
4317 /* If display currently starts at beginning of line,
4318 keep it that way. */
4319 if (XBUFFER (XWINDOW (selected_window
)->buffer
) == current_buffer
)
4320 XWINDOW (selected_window
)->start_at_line_beg
= Fbolp ();
4322 /* Replace the chars that we need to replace,
4323 and update INSERTED to equal the number of bytes
4324 we are taking from the decoded string. */
4325 inserted
-= (ZV_BYTE
- same_at_end
) + (same_at_start
- BEGV_BYTE
);
4327 if (same_at_end
!= same_at_start
)
4329 del_range_byte (same_at_start
, same_at_end
, 0);
4331 same_at_start
= GPT_BYTE
;
4335 temp
= BYTE_TO_CHAR (same_at_start
);
4337 /* Insert from the file at the proper position. */
4338 SET_PT_BOTH (temp
, same_at_start
);
4339 same_at_start_charpos
4340 = buf_bytepos_to_charpos (XBUFFER (conversion_buffer
),
4343 = (buf_bytepos_to_charpos (XBUFFER (conversion_buffer
),
4344 same_at_start
+ inserted
)
4345 - same_at_start_charpos
);
4346 /* This binding is to avoid ask-user-about-supersession-threat
4347 being called in insert_from_buffer (via in
4348 prepare_to_modify_buffer). */
4349 specbind (intern ("buffer-file-name"), Qnil
);
4350 insert_from_buffer (XBUFFER (conversion_buffer
),
4351 same_at_start_charpos
, inserted_chars
, 0);
4352 /* Set `inserted' to the number of inserted characters. */
4353 inserted
= PT
- temp
;
4354 /* Set point before the inserted characters. */
4355 SET_PT_BOTH (temp
, same_at_start
);
4357 unbind_to (this_count
, Qnil
);
4364 register Lisp_Object temp
;
4366 total
= XINT (end
) - XINT (beg
);
4368 /* Make sure point-max won't overflow after this insertion. */
4369 XSETINT (temp
, total
);
4370 if (total
!= XINT (temp
))
4371 error ("Maximum buffer size exceeded");
4374 /* For a special file, all we can do is guess. */
4375 total
= READ_BUF_SIZE
;
4377 if (NILP (visit
) && inserted
> 0)
4379 #ifdef CLASH_DETECTION
4380 if (!NILP (current_buffer
->file_truename
)
4381 /* Make binding buffer-file-name to nil effective. */
4382 && !NILP (current_buffer
->filename
)
4383 && SAVE_MODIFF
>= MODIFF
)
4385 #endif /* CLASH_DETECTION */
4386 prepare_to_modify_buffer (GPT
, GPT
, NULL
);
4390 if (GAP_SIZE
< total
)
4391 make_gap (total
- GAP_SIZE
);
4393 if (XINT (beg
) != 0 || !NILP (replace
))
4395 if (lseek (fd
, XINT (beg
), 0) < 0)
4396 report_file_error ("Setting file position",
4397 Fcons (orig_filename
, Qnil
));
4400 /* In the following loop, HOW_MUCH contains the total bytes read so
4401 far for a regular file, and not changed for a special file. But,
4402 before exiting the loop, it is set to a negative value if I/O
4406 /* Total bytes inserted. */
4409 /* Here, we don't do code conversion in the loop. It is done by
4410 decode_coding_gap after all data are read into the buffer. */
4412 int gap_size
= GAP_SIZE
;
4414 while (how_much
< total
)
4416 /* try is reserved in some compilers (Microsoft C) */
4417 int trytry
= min (total
- how_much
, READ_BUF_SIZE
);
4424 /* Maybe make more room. */
4425 if (gap_size
< trytry
)
4427 make_gap (total
- gap_size
);
4428 gap_size
= GAP_SIZE
;
4431 /* Read from the file, capturing `quit'. When an
4432 error occurs, end the loop, and arrange for a quit
4433 to be signaled after decoding the text we read. */
4434 non_regular_fd
= fd
;
4435 non_regular_inserted
= inserted
;
4436 non_regular_nbytes
= trytry
;
4437 val
= internal_condition_case_1 (read_non_regular
, Qnil
, Qerror
,
4438 read_non_regular_quit
);
4449 /* Allow quitting out of the actual I/O. We don't make text
4450 part of the buffer until all the reading is done, so a C-g
4451 here doesn't do any harm. */
4454 this = emacs_read (fd
, BEG_ADDR
+ PT_BYTE
- BEG_BYTE
+ inserted
, trytry
);
4466 /* For a regular file, where TOTAL is the real size,
4467 count HOW_MUCH to compare with it.
4468 For a special file, where TOTAL is just a buffer size,
4469 so don't bother counting in HOW_MUCH.
4470 (INSERTED is where we count the number of characters inserted.) */
4477 /* Now we have read all the file data into the gap.
4478 If it was empty, undo marking the buffer modified. */
4482 #ifdef CLASH_DETECTION
4484 unlock_file (current_buffer
->file_truename
);
4486 Vdeactivate_mark
= old_Vdeactivate_mark
;
4489 Vdeactivate_mark
= Qt
;
4491 /* Make the text read part of the buffer. */
4492 GAP_SIZE
-= inserted
;
4494 GPT_BYTE
+= inserted
;
4496 ZV_BYTE
+= inserted
;
4501 /* Put an anchor to ensure multi-byte form ends at gap. */
4506 /* Discard the unwind protect for closing the file. */
4510 error ("IO error reading %s: %s",
4511 SDATA (orig_filename
), emacs_strerror (errno
));
4515 if (NILP (coding_system
))
4517 /* The coding system is not yet decided. Decide it by an
4518 optimized method for handling `coding:' tag.
4520 Note that we can get here only if the buffer was empty
4521 before the insertion. */
4523 if (!NILP (Vcoding_system_for_read
))
4524 coding_system
= Vcoding_system_for_read
;
4527 /* Since we are sure that the current buffer was empty
4528 before the insertion, we can toggle
4529 enable-multibyte-characters directly here without taking
4530 care of marker adjustment. By this way, we can run Lisp
4531 program safely before decoding the inserted text. */
4532 Lisp_Object unwind_data
;
4533 int count
= SPECPDL_INDEX ();
4535 unwind_data
= Fcons (current_buffer
->enable_multibyte_characters
,
4536 Fcons (current_buffer
->undo_list
,
4537 Fcurrent_buffer ()));
4538 current_buffer
->enable_multibyte_characters
= Qnil
;
4539 current_buffer
->undo_list
= Qt
;
4540 record_unwind_protect (decide_coding_unwind
, unwind_data
);
4542 if (inserted
> 0 && ! NILP (Vset_auto_coding_function
))
4544 coding_system
= call2 (Vset_auto_coding_function
,
4545 filename
, make_number (inserted
));
4548 if (NILP (coding_system
))
4550 /* If the coding system is not yet decided, check
4551 file-coding-system-alist. */
4552 Lisp_Object args
[6];
4554 args
[0] = Qinsert_file_contents
, args
[1] = orig_filename
;
4555 args
[2] = visit
, args
[3] = beg
, args
[4] = end
, args
[5] = Qnil
;
4556 coding_system
= Ffind_operation_coding_system (6, args
);
4557 if (CONSP (coding_system
))
4558 coding_system
= XCAR (coding_system
);
4560 unbind_to (count
, Qnil
);
4561 inserted
= Z_BYTE
- BEG_BYTE
;
4564 if (NILP (coding_system
))
4565 coding_system
= Qundecided
;
4567 CHECK_CODING_SYSTEM (coding_system
);
4569 if (NILP (current_buffer
->enable_multibyte_characters
))
4570 /* We must suppress all character code conversion except for
4571 end-of-line conversion. */
4572 coding_system
= raw_text_coding_system (coding_system
);
4573 setup_coding_system (coding_system
, &coding
);
4574 /* Ensure we set Vlast_coding_system_used. */
4575 set_coding_system
= 1;
4580 /* When we visit a file by raw-text, we change the buffer to
4582 if (CODING_FOR_UNIBYTE (&coding
)
4583 /* Can't do this if part of the buffer might be preserved. */
4585 /* Visiting a file with these coding system makes the buffer
4587 current_buffer
->enable_multibyte_characters
= Qnil
;
4590 coding
.dst_multibyte
= ! NILP (current_buffer
->enable_multibyte_characters
);
4591 if (CODING_MAY_REQUIRE_DECODING (&coding
)
4592 && (inserted
> 0 || CODING_REQUIRE_FLUSHING (&coding
)))
4594 move_gap_both (PT
, PT_BYTE
);
4595 GAP_SIZE
+= inserted
;
4596 ZV_BYTE
-= inserted
;
4600 decode_coding_gap (&coding
, inserted
, inserted
);
4601 inserted
= coding
.produced_char
;
4602 coding_system
= CODING_ID_NAME (coding
.id
);
4604 else if (inserted
> 0)
4605 adjust_after_insert (PT
, PT_BYTE
, PT
+ inserted
, PT_BYTE
+ inserted
,
4608 /* Now INSERTED is measured in characters. */
4611 /* Use the conversion type to determine buffer-file-type
4612 (find-buffer-file-type is now used to help determine the
4614 if ((VECTORP (CODING_ID_EOL_TYPE (coding
.id
))
4615 || EQ (CODING_ID_EOL_TYPE (coding
.id
), Qunix
))
4616 && ! CODING_REQUIRE_DECODING (&coding
))
4617 current_buffer
->buffer_file_type
= Qt
;
4619 current_buffer
->buffer_file_type
= Qnil
;
4626 if (!EQ (current_buffer
->undo_list
, Qt
))
4627 current_buffer
->undo_list
= Qnil
;
4631 current_buffer
->modtime
= st
.st_mtime
;
4632 current_buffer
->filename
= orig_filename
;
4635 SAVE_MODIFF
= MODIFF
;
4636 current_buffer
->auto_save_modified
= MODIFF
;
4637 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
4638 #ifdef CLASH_DETECTION
4641 if (!NILP (current_buffer
->file_truename
))
4642 unlock_file (current_buffer
->file_truename
);
4643 unlock_file (filename
);
4645 #endif /* CLASH_DETECTION */
4647 xsignal2 (Qfile_error
,
4648 build_string ("not a regular file"), orig_filename
);
4651 if (set_coding_system
)
4652 Vlast_coding_system_used
= coding_system
;
4654 if (! NILP (Ffboundp (Qafter_insert_file_set_coding
)))
4656 insval
= call2 (Qafter_insert_file_set_coding
, make_number (inserted
),
4658 if (! NILP (insval
))
4660 CHECK_NUMBER (insval
);
4661 inserted
= XFASTINT (insval
);
4665 /* Decode file format */
4668 /* Don't run point motion or modification hooks when decoding. */
4669 int count
= SPECPDL_INDEX ();
4670 specbind (Qinhibit_point_motion_hooks
, Qt
);
4671 specbind (Qinhibit_modification_hooks
, Qt
);
4673 /* Save old undo list and don't record undo for decoding. */
4674 old_undo
= current_buffer
->undo_list
;
4675 current_buffer
->undo_list
= Qt
;
4679 insval
= call3 (Qformat_decode
,
4680 Qnil
, make_number (inserted
), visit
);
4681 CHECK_NUMBER (insval
);
4682 inserted
= XFASTINT (insval
);
4686 /* If REPLACE is non-nil and we succeeded in not replacing the
4687 beginning or end of the buffer text with the file's contents,
4688 call format-decode with `point' positioned at the beginning of
4689 the buffer and `inserted' equalling the number of characters
4690 in the buffer. Otherwise, format-decode might fail to
4691 correctly analyze the beginning or end of the buffer. Hence
4692 we temporarily save `point' and `inserted' here and restore
4693 `point' iff format-decode did not insert or delete any text.
4694 Otherwise we leave `point' at point-min. */
4696 int opoint_byte
= PT_BYTE
;
4697 int oinserted
= ZV
- BEGV
;
4698 int ochars_modiff
= CHARS_MODIFF
;
4700 TEMP_SET_PT_BOTH (BEGV
, BEGV_BYTE
);
4701 insval
= call3 (Qformat_decode
,
4702 Qnil
, make_number (oinserted
), visit
);
4703 CHECK_NUMBER (insval
);
4704 if (ochars_modiff
== CHARS_MODIFF
)
4705 /* format_decode didn't modify buffer's characters => move
4706 point back to position before inserted text and leave
4707 value of inserted alone. */
4708 SET_PT_BOTH (opoint
, opoint_byte
);
4710 /* format_decode modified buffer's characters => consider
4711 entire buffer changed and leave point at point-min. */
4712 inserted
= XFASTINT (insval
);
4715 /* For consistency with format-decode call these now iff inserted > 0
4716 (martin 2007-06-28) */
4717 p
= Vafter_insert_file_functions
;
4722 insval
= call1 (XCAR (p
), make_number (inserted
));
4725 CHECK_NUMBER (insval
);
4726 inserted
= XFASTINT (insval
);
4731 /* For the rationale of this see the comment on format-decode above. */
4733 int opoint_byte
= PT_BYTE
;
4734 int oinserted
= ZV
- BEGV
;
4735 int ochars_modiff
= CHARS_MODIFF
;
4737 TEMP_SET_PT_BOTH (BEGV
, BEGV_BYTE
);
4738 insval
= call1 (XCAR (p
), make_number (oinserted
));
4741 CHECK_NUMBER (insval
);
4742 if (ochars_modiff
== CHARS_MODIFF
)
4743 /* after_insert_file_functions didn't modify
4744 buffer's characters => move point back to
4745 position before inserted text and leave value of
4747 SET_PT_BOTH (opoint
, opoint_byte
);
4749 /* after_insert_file_functions did modify buffer's
4750 characters => consider entire buffer changed and
4751 leave point at point-min. */
4752 inserted
= XFASTINT (insval
);
4762 Lisp_Object lbeg
, lend
;
4764 XSETINT (lend
, PT
+ inserted
);
4765 if (CONSP (old_undo
))
4767 Lisp_Object tem
= XCAR (old_undo
);
4768 if (CONSP (tem
) && INTEGERP (XCAR (tem
)) &&
4769 INTEGERP (XCDR (tem
)) && EQ (XCAR (tem
), lbeg
))
4770 /* In the non-visiting case record only the final insertion. */
4771 current_buffer
->undo_list
=
4772 Fcons (Fcons (lbeg
, lend
), Fcdr (old_undo
));
4776 /* If undo_list was Qt before, keep it that way.
4777 Otherwise start with an empty undo_list. */
4778 current_buffer
->undo_list
= EQ (old_undo
, Qt
) ? Qt
: Qnil
;
4780 unbind_to (count
, Qnil
);
4783 /* Call after-change hooks for the inserted text, aside from the case
4784 of normal visiting (not with REPLACE), which is done in a new buffer
4785 "before" the buffer is changed. */
4786 if (inserted
> 0 && total
> 0
4787 && (NILP (visit
) || !NILP (replace
)))
4789 signal_after_change (PT
, 0, inserted
);
4790 update_compositions (PT
, PT
, CHECK_BORDER
);
4794 && current_buffer
->modtime
== -1)
4796 /* If visiting nonexistent file, return nil. */
4797 report_file_error ("Opening input file", Fcons (orig_filename
, Qnil
));
4801 Fsignal (Qquit
, Qnil
);
4803 /* ??? Retval needs to be dealt with in all cases consistently. */
4805 val
= Fcons (orig_filename
,
4806 Fcons (make_number (inserted
),
4809 RETURN_UNGCPRO (unbind_to (count
, val
));
4812 static Lisp_Object build_annotations
P_ ((Lisp_Object
, Lisp_Object
));
4814 /* If build_annotations switched buffers, switch back to BUF.
4815 Kill the temporary buffer that was selected in the meantime.
4817 Since this kill only the last temporary buffer, some buffers remain
4818 not killed if build_annotations switched buffers more than once.
4822 build_annotations_unwind (buf
)
4827 if (XBUFFER (buf
) == current_buffer
)
4829 tembuf
= Fcurrent_buffer ();
4831 Fkill_buffer (tembuf
);
4835 /* Decide the coding-system to encode the data with. */
4838 choose_write_coding_system (start
, end
, filename
,
4839 append
, visit
, lockname
, coding
)
4840 Lisp_Object start
, end
, filename
, append
, visit
, lockname
;
4841 struct coding_system
*coding
;
4844 Lisp_Object eol_parent
= Qnil
;
4847 && NILP (Fstring_equal (current_buffer
->filename
,
4848 current_buffer
->auto_save_file_name
)))
4853 else if (!NILP (Vcoding_system_for_write
))
4855 val
= Vcoding_system_for_write
;
4856 if (coding_system_require_warning
4857 && !NILP (Ffboundp (Vselect_safe_coding_system_function
)))
4858 /* Confirm that VAL can surely encode the current region. */
4859 val
= call5 (Vselect_safe_coding_system_function
,
4860 start
, end
, Fcons (Qt
, Fcons (val
, Qnil
)),
4865 /* If the variable `buffer-file-coding-system' is set locally,
4866 it means that the file was read with some kind of code
4867 conversion or the variable is explicitly set by users. We
4868 had better write it out with the same coding system even if
4869 `enable-multibyte-characters' is nil.
4871 If it is not set locally, we anyway have to convert EOL
4872 format if the default value of `buffer-file-coding-system'
4873 tells that it is not Unix-like (LF only) format. */
4874 int using_default_coding
= 0;
4875 int force_raw_text
= 0;
4877 val
= current_buffer
->buffer_file_coding_system
;
4879 || NILP (Flocal_variable_p (Qbuffer_file_coding_system
, Qnil
)))
4882 if (NILP (current_buffer
->enable_multibyte_characters
))
4888 /* Check file-coding-system-alist. */
4889 Lisp_Object args
[7], coding_systems
;
4891 args
[0] = Qwrite_region
; args
[1] = start
; args
[2] = end
;
4892 args
[3] = filename
; args
[4] = append
; args
[5] = visit
;
4894 coding_systems
= Ffind_operation_coding_system (7, args
);
4895 if (CONSP (coding_systems
) && !NILP (XCDR (coding_systems
)))
4896 val
= XCDR (coding_systems
);
4901 /* If we still have not decided a coding system, use the
4902 default value of buffer-file-coding-system. */
4903 val
= current_buffer
->buffer_file_coding_system
;
4904 using_default_coding
= 1;
4907 if (! NILP (val
) && ! force_raw_text
)
4909 Lisp_Object spec
, attrs
;
4911 CHECK_CODING_SYSTEM_GET_SPEC (val
, spec
);
4912 attrs
= AREF (spec
, 0);
4913 if (EQ (CODING_ATTR_TYPE (attrs
), Qraw_text
))
4918 && !NILP (Ffboundp (Vselect_safe_coding_system_function
)))
4919 /* Confirm that VAL can surely encode the current region. */
4920 val
= call5 (Vselect_safe_coding_system_function
,
4921 start
, end
, val
, Qnil
, filename
);
4923 /* If the decided coding-system doesn't specify end-of-line
4924 format, we use that of
4925 `default-buffer-file-coding-system'. */
4926 if (! using_default_coding
4927 && ! NILP (buffer_defaults
.buffer_file_coding_system
))
4928 val
= (coding_inherit_eol_type
4929 (val
, buffer_defaults
.buffer_file_coding_system
));
4931 /* If we decide not to encode text, use `raw-text' or one of its
4934 val
= raw_text_coding_system (val
);
4937 val
= coding_inherit_eol_type (val
, eol_parent
);
4938 setup_coding_system (val
, coding
);
4940 if (!STRINGP (start
) && !NILP (current_buffer
->selective_display
))
4941 coding
->mode
|= CODING_MODE_SELECTIVE_DISPLAY
;
4945 DEFUN ("write-region", Fwrite_region
, Swrite_region
, 3, 7,
4946 "r\nFWrite region to file: \ni\ni\ni\np",
4947 doc
: /* Write current region into specified file.
4948 When called from a program, requires three arguments:
4949 START, END and FILENAME. START and END are normally buffer positions
4950 specifying the part of the buffer to write.
4951 If START is nil, that means to use the entire buffer contents.
4952 If START is a string, then output that string to the file
4953 instead of any buffer contents; END is ignored.
4955 Optional fourth argument APPEND if non-nil means
4956 append to existing file contents (if any). If it is an integer,
4957 seek to that offset in the file before writing.
4958 Optional fifth argument VISIT, if t or a string, means
4959 set the last-save-file-modtime of buffer to this file's modtime
4960 and mark buffer not modified.
4961 If VISIT is a string, it is a second file name;
4962 the output goes to FILENAME, but the buffer is marked as visiting VISIT.
4963 VISIT is also the file name to lock and unlock for clash detection.
4964 If VISIT is neither t nor nil nor a string,
4965 that means do not display the \"Wrote file\" message.
4966 The optional sixth arg LOCKNAME, if non-nil, specifies the name to
4967 use for locking and unlocking, overriding FILENAME and VISIT.
4968 The optional seventh arg MUSTBENEW, if non-nil, insists on a check
4969 for an existing file with the same name. If MUSTBENEW is `excl',
4970 that means to get an error if the file already exists; never overwrite.
4971 If MUSTBENEW is neither nil nor `excl', that means ask for
4972 confirmation before overwriting, but do go ahead and overwrite the file
4973 if the user confirms.
4975 This does code conversion according to the value of
4976 `coding-system-for-write', `buffer-file-coding-system', or
4977 `file-coding-system-alist', and sets the variable
4978 `last-coding-system-used' to the coding system actually used. */)
4979 (start
, end
, filename
, append
, visit
, lockname
, mustbenew
)
4980 Lisp_Object start
, end
, filename
, append
, visit
, lockname
, mustbenew
;
4985 const unsigned char *fn
;
4987 int count
= SPECPDL_INDEX ();
4990 unsigned char *fname
= 0; /* If non-0, original filename (must rename) */
4992 Lisp_Object handler
;
4993 Lisp_Object visit_file
;
4994 Lisp_Object annotations
;
4995 Lisp_Object encoded_filename
;
4996 int visiting
= (EQ (visit
, Qt
) || STRINGP (visit
));
4997 int quietly
= !NILP (visit
);
4998 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
4999 struct buffer
*given_buffer
;
5001 int buffer_file_type
= O_BINARY
;
5003 struct coding_system coding
;
5005 if (current_buffer
->base_buffer
&& visiting
)
5006 error ("Cannot do file visiting in an indirect buffer");
5008 if (!NILP (start
) && !STRINGP (start
))
5009 validate_region (&start
, &end
);
5012 GCPRO5 (start
, filename
, visit
, visit_file
, lockname
);
5014 filename
= Fexpand_file_name (filename
, Qnil
);
5016 if (!NILP (mustbenew
) && !EQ (mustbenew
, Qexcl
))
5017 barf_or_query_if_file_exists (filename
, "overwrite", 1, 0, 1);
5019 if (STRINGP (visit
))
5020 visit_file
= Fexpand_file_name (visit
, Qnil
);
5022 visit_file
= filename
;
5024 if (NILP (lockname
))
5025 lockname
= visit_file
;
5029 /* If the file name has special constructs in it,
5030 call the corresponding file handler. */
5031 handler
= Ffind_file_name_handler (filename
, Qwrite_region
);
5032 /* If FILENAME has no handler, see if VISIT has one. */
5033 if (NILP (handler
) && STRINGP (visit
))
5034 handler
= Ffind_file_name_handler (visit
, Qwrite_region
);
5036 if (!NILP (handler
))
5039 val
= call6 (handler
, Qwrite_region
, start
, end
,
5040 filename
, append
, visit
);
5044 SAVE_MODIFF
= MODIFF
;
5045 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
5046 current_buffer
->filename
= visit_file
;
5052 record_unwind_protect (save_restriction_restore
, save_restriction_save ());
5054 /* Special kludge to simplify auto-saving. */
5057 XSETFASTINT (start
, BEG
);
5058 XSETFASTINT (end
, Z
);
5062 record_unwind_protect (build_annotations_unwind
, Fcurrent_buffer ());
5063 count1
= SPECPDL_INDEX ();
5065 given_buffer
= current_buffer
;
5067 if (!STRINGP (start
))
5069 annotations
= build_annotations (start
, end
);
5071 if (current_buffer
!= given_buffer
)
5073 XSETFASTINT (start
, BEGV
);
5074 XSETFASTINT (end
, ZV
);
5080 GCPRO5 (start
, filename
, annotations
, visit_file
, lockname
);
5082 /* Decide the coding-system to encode the data with.
5083 We used to make this choice before calling build_annotations, but that
5084 leads to problems when a write-annotate-function takes care of
5085 unsavable chars (as was the case with X-Symbol). */
5086 Vlast_coding_system_used
5087 = choose_write_coding_system (start
, end
, filename
,
5088 append
, visit
, lockname
, &coding
);
5090 #ifdef CLASH_DETECTION
5093 #if 0 /* This causes trouble for GNUS. */
5094 /* If we've locked this file for some other buffer,
5095 query before proceeding. */
5096 if (!visiting
&& EQ (Ffile_locked_p (lockname
), Qt
))
5097 call2 (intern ("ask-user-about-lock"), filename
, Vuser_login_name
);
5100 lock_file (lockname
);
5102 #endif /* CLASH_DETECTION */
5104 encoded_filename
= ENCODE_FILE (filename
);
5106 fn
= SDATA (encoded_filename
);
5110 desc
= emacs_open (fn
, O_WRONLY
| buffer_file_type
, 0);
5111 #else /* not DOS_NT */
5112 desc
= emacs_open (fn
, O_WRONLY
, 0);
5113 #endif /* not DOS_NT */
5115 if (desc
< 0 && (NILP (append
) || errno
== ENOENT
))
5117 if (auto_saving
) /* Overwrite any previous version of autosave file */
5119 vms_truncate (fn
); /* if fn exists, truncate to zero length */
5120 desc
= emacs_open (fn
, O_RDWR
, 0);
5122 desc
= creat_copy_attrs (STRINGP (current_buffer
->filename
)
5123 ? SDATA (current_buffer
->filename
) : 0,
5126 else /* Write to temporary name and rename if no errors */
5128 Lisp_Object temp_name
;
5129 temp_name
= Ffile_name_directory (filename
);
5131 if (!NILP (temp_name
))
5133 temp_name
= Fmake_temp_name (concat2 (temp_name
,
5134 build_string ("$$SAVE$$")));
5135 fname
= SDATA (filename
);
5136 fn
= SDATA (temp_name
);
5137 desc
= creat_copy_attrs (fname
, fn
);
5140 /* If we can't open the temporary file, try creating a new
5141 version of the original file. VMS "creat" creates a
5142 new version rather than truncating an existing file. */
5145 desc
= creat (fn
, 0666);
5146 #if 0 /* This can clobber an existing file and fail to replace it,
5147 if the user runs out of space. */
5150 /* We can't make a new version;
5151 try to truncate and rewrite existing version if any. */
5153 desc
= emacs_open (fn
, O_RDWR
, 0);
5159 desc
= creat (fn
, 0666);
5163 desc
= emacs_open (fn
,
5164 O_WRONLY
| O_CREAT
| buffer_file_type
5165 | (EQ (mustbenew
, Qexcl
) ? O_EXCL
: O_TRUNC
),
5166 S_IREAD
| S_IWRITE
);
5167 #else /* not DOS_NT */
5168 desc
= emacs_open (fn
, O_WRONLY
| O_TRUNC
| O_CREAT
5169 | (EQ (mustbenew
, Qexcl
) ? O_EXCL
: 0),
5170 auto_saving
? auto_save_mode_bits
: 0666);
5171 #endif /* not DOS_NT */
5172 #endif /* not VMS */
5176 #ifdef CLASH_DETECTION
5178 if (!auto_saving
) unlock_file (lockname
);
5180 #endif /* CLASH_DETECTION */
5182 report_file_error ("Opening output file", Fcons (filename
, Qnil
));
5185 record_unwind_protect (close_file_unwind
, make_number (desc
));
5187 if (!NILP (append
) && !NILP (Ffile_regular_p (filename
)))
5191 if (NUMBERP (append
))
5192 ret
= lseek (desc
, XINT (append
), 1);
5194 ret
= lseek (desc
, 0, 2);
5197 #ifdef CLASH_DETECTION
5198 if (!auto_saving
) unlock_file (lockname
);
5199 #endif /* CLASH_DETECTION */
5201 report_file_error ("Lseek error", Fcons (filename
, Qnil
));
5209 * Kludge Warning: The VMS C RTL likes to insert carriage returns
5210 * if we do writes that don't end with a carriage return. Furthermore
5211 * it cannot handle writes of more then 16K. The modified
5212 * version of "sys_write" in SYSDEP.C (see comment there) copes with
5213 * this EXCEPT for the last record (if it doesn't end with a carriage
5214 * return). This implies that if your buffer doesn't end with a carriage
5215 * return, you get one free... tough. However it also means that if
5216 * we make two calls to sys_write (a la the following code) you can
5217 * get one at the gap as well. The easiest way to fix this (honest)
5218 * is to move the gap to the next newline (or the end of the buffer).
5223 if (GPT
> BEG
&& GPT_ADDR
[-1] != '\n')
5224 move_gap (find_next_newline (GPT
, 1));
5227 /* The new encoding routine doesn't require the following. */
5229 /* Whether VMS or not, we must move the gap to the next of newline
5230 when we must put designation sequences at beginning of line. */
5231 if (INTEGERP (start
)
5232 && coding
.type
== coding_type_iso2022
5233 && coding
.flags
& CODING_FLAG_ISO_DESIGNATE_AT_BOL
5234 && GPT
> BEG
&& GPT_ADDR
[-1] != '\n')
5236 int opoint
= PT
, opoint_byte
= PT_BYTE
;
5237 scan_newline (PT
, PT_BYTE
, ZV
, ZV_BYTE
, 1, 0);
5238 move_gap_both (PT
, PT_BYTE
);
5239 SET_PT_BOTH (opoint
, opoint_byte
);
5247 if (STRINGP (start
))
5249 failure
= 0 > a_write (desc
, start
, 0, SCHARS (start
),
5250 &annotations
, &coding
);
5253 else if (XINT (start
) != XINT (end
))
5255 failure
= 0 > a_write (desc
, Qnil
,
5256 XINT (start
), XINT (end
) - XINT (start
),
5257 &annotations
, &coding
);
5262 /* If file was empty, still need to write the annotations */
5263 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
5264 failure
= 0 > a_write (desc
, Qnil
, XINT (end
), 0, &annotations
, &coding
);
5268 if (CODING_REQUIRE_FLUSHING (&coding
)
5269 && !(coding
.mode
& CODING_MODE_LAST_BLOCK
)
5272 /* We have to flush out a data. */
5273 coding
.mode
|= CODING_MODE_LAST_BLOCK
;
5274 failure
= 0 > e_write (desc
, Qnil
, 1, 1, &coding
);
5281 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
5282 Disk full in NFS may be reported here. */
5283 /* mib says that closing the file will try to write as fast as NFS can do
5284 it, and that means the fsync here is not crucial for autosave files. */
5285 if (!auto_saving
&& !write_region_inhibit_fsync
&& fsync (desc
) < 0)
5287 /* If fsync fails with EINTR, don't treat that as serious. Also
5288 ignore EINVAL which happens when fsync is not supported on this
5290 if (errno
!= EINTR
&& errno
!= EINVAL
)
5291 failure
= 1, save_errno
= errno
;
5295 /* Spurious "file has changed on disk" warnings have been
5296 observed on Suns as well.
5297 It seems that `close' can change the modtime, under nfs.
5299 (This has supposedly been fixed in Sunos 4,
5300 but who knows about all the other machines with NFS?) */
5303 /* On VMS, must do the stat after the close
5304 since closing changes the modtime. */
5306 /* Recall that #if defined does not work on VMS. */
5312 /* NFS can report a write failure now. */
5313 if (emacs_close (desc
) < 0)
5314 failure
= 1, save_errno
= errno
;
5317 /* If we wrote to a temporary name and had no errors, rename to real name. */
5321 failure
= (rename (fn
, fname
) != 0), save_errno
= errno
;
5329 /* Discard the unwind protect for close_file_unwind. */
5330 specpdl_ptr
= specpdl
+ count1
;
5331 /* Restore the original current buffer. */
5332 visit_file
= unbind_to (count
, visit_file
);
5334 #ifdef CLASH_DETECTION
5336 unlock_file (lockname
);
5337 #endif /* CLASH_DETECTION */
5339 /* Do this before reporting IO error
5340 to avoid a "file has changed on disk" warning on
5341 next attempt to save. */
5343 current_buffer
->modtime
= st
.st_mtime
;
5346 error ("IO error writing %s: %s", SDATA (filename
),
5347 emacs_strerror (save_errno
));
5351 SAVE_MODIFF
= MODIFF
;
5352 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
5353 current_buffer
->filename
= visit_file
;
5354 update_mode_lines
++;
5359 && ! NILP (Fstring_equal (current_buffer
->filename
,
5360 current_buffer
->auto_save_file_name
)))
5361 SAVE_MODIFF
= MODIFF
;
5367 message_with_string ((INTEGERP (append
)
5377 Lisp_Object
merge ();
5379 DEFUN ("car-less-than-car", Fcar_less_than_car
, Scar_less_than_car
, 2, 2, 0,
5380 doc
: /* Return t if (car A) is numerically less than (car B). */)
5384 return Flss (Fcar (a
), Fcar (b
));
5387 /* Build the complete list of annotations appropriate for writing out
5388 the text between START and END, by calling all the functions in
5389 write-region-annotate-functions and merging the lists they return.
5390 If one of these functions switches to a different buffer, we assume
5391 that buffer contains altered text. Therefore, the caller must
5392 make sure to restore the current buffer in all cases,
5393 as save-excursion would do. */
5396 build_annotations (start
, end
)
5397 Lisp_Object start
, end
;
5399 Lisp_Object annotations
;
5401 struct gcpro gcpro1
, gcpro2
;
5402 Lisp_Object original_buffer
;
5403 int i
, used_global
= 0;
5405 XSETBUFFER (original_buffer
, current_buffer
);
5408 p
= Vwrite_region_annotate_functions
;
5409 GCPRO2 (annotations
, p
);
5412 struct buffer
*given_buffer
= current_buffer
;
5413 if (EQ (Qt
, XCAR (p
)) && !used_global
)
5414 { /* Use the global value of the hook. */
5417 arg
[0] = Fdefault_value (Qwrite_region_annotate_functions
);
5419 p
= Fappend (2, arg
);
5422 Vwrite_region_annotations_so_far
= annotations
;
5423 res
= call2 (XCAR (p
), start
, end
);
5424 /* If the function makes a different buffer current,
5425 assume that means this buffer contains altered text to be output.
5426 Reset START and END from the buffer bounds
5427 and discard all previous annotations because they should have
5428 been dealt with by this function. */
5429 if (current_buffer
!= given_buffer
)
5431 XSETFASTINT (start
, BEGV
);
5432 XSETFASTINT (end
, ZV
);
5435 Flength (res
); /* Check basic validity of return value */
5436 annotations
= merge (annotations
, res
, Qcar_less_than_car
);
5440 /* Now do the same for annotation functions implied by the file-format */
5441 if (auto_saving
&& (!EQ (current_buffer
->auto_save_file_format
, Qt
)))
5442 p
= current_buffer
->auto_save_file_format
;
5444 p
= current_buffer
->file_format
;
5445 for (i
= 0; CONSP (p
); p
= XCDR (p
), ++i
)
5447 struct buffer
*given_buffer
= current_buffer
;
5449 Vwrite_region_annotations_so_far
= annotations
;
5451 /* Value is either a list of annotations or nil if the function
5452 has written annotations to a temporary buffer, which is now
5454 res
= call5 (Qformat_annotate_function
, XCAR (p
), start
, end
,
5455 original_buffer
, make_number (i
));
5456 if (current_buffer
!= given_buffer
)
5458 XSETFASTINT (start
, BEGV
);
5459 XSETFASTINT (end
, ZV
);
5464 annotations
= merge (annotations
, res
, Qcar_less_than_car
);
5472 /* Write to descriptor DESC the NCHARS chars starting at POS of STRING.
5473 If STRING is nil, POS is the character position in the current buffer.
5474 Intersperse with them the annotations from *ANNOT
5475 which fall within the range of POS to POS + NCHARS,
5476 each at its appropriate position.
5478 We modify *ANNOT by discarding elements as we use them up.
5480 The return value is negative in case of system call failure. */
5483 a_write (desc
, string
, pos
, nchars
, annot
, coding
)
5486 register int nchars
;
5489 struct coding_system
*coding
;
5493 int lastpos
= pos
+ nchars
;
5495 while (NILP (*annot
) || CONSP (*annot
))
5497 tem
= Fcar_safe (Fcar (*annot
));
5500 nextpos
= XFASTINT (tem
);
5502 /* If there are no more annotations in this range,
5503 output the rest of the range all at once. */
5504 if (! (nextpos
>= pos
&& nextpos
<= lastpos
))
5505 return e_write (desc
, string
, pos
, lastpos
, coding
);
5507 /* Output buffer text up to the next annotation's position. */
5510 if (0 > e_write (desc
, string
, pos
, nextpos
, coding
))
5514 /* Output the annotation. */
5515 tem
= Fcdr (Fcar (*annot
));
5518 if (0 > e_write (desc
, tem
, 0, SCHARS (tem
), coding
))
5521 *annot
= Fcdr (*annot
);
5527 /* Write text in the range START and END into descriptor DESC,
5528 encoding them with coding system CODING. If STRING is nil, START
5529 and END are character positions of the current buffer, else they
5530 are indexes to the string STRING. */
5533 e_write (desc
, string
, start
, end
, coding
)
5537 struct coding_system
*coding
;
5539 if (STRINGP (string
))
5542 end
= SCHARS (string
);
5545 /* We used to have a code for handling selective display here. But,
5546 now it is handled within encode_coding. */
5550 if (STRINGP (string
))
5552 coding
->src_multibyte
= SCHARS (string
) < SBYTES (string
);
5553 if (CODING_REQUIRE_ENCODING (coding
))
5555 encode_coding_object (coding
, string
,
5556 start
, string_char_to_byte (string
, start
),
5557 end
, string_char_to_byte (string
, end
), Qt
);
5561 coding
->dst_object
= string
;
5562 coding
->consumed_char
= SCHARS (string
);
5563 coding
->produced
= SBYTES (string
);
5568 int start_byte
= CHAR_TO_BYTE (start
);
5569 int end_byte
= CHAR_TO_BYTE (end
);
5571 coding
->src_multibyte
= (end
- start
) < (end_byte
- start_byte
);
5572 if (CODING_REQUIRE_ENCODING (coding
))
5574 encode_coding_object (coding
, Fcurrent_buffer (),
5575 start
, start_byte
, end
, end_byte
, Qt
);
5579 coding
->dst_object
= Qnil
;
5580 coding
->dst_pos_byte
= start_byte
;
5581 if (start
>= GPT
|| end
<= GPT
)
5583 coding
->consumed_char
= end
- start
;
5584 coding
->produced
= end_byte
- start_byte
;
5588 coding
->consumed_char
= GPT
- start
;
5589 coding
->produced
= GPT_BYTE
- start_byte
;
5594 if (coding
->produced
> 0)
5598 STRINGP (coding
->dst_object
)
5599 ? SDATA (coding
->dst_object
)
5600 : BYTE_POS_ADDR (coding
->dst_pos_byte
),
5603 if (coding
->produced
)
5606 start
+= coding
->consumed_char
;
5612 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime
,
5613 Sverify_visited_file_modtime
, 1, 1, 0,
5614 doc
: /* Return t if last mod time of BUF's visited file matches what BUF records.
5615 This means that the file has not been changed since it was visited or saved.
5616 See Info node `(elisp)Modification Time' for more details. */)
5622 Lisp_Object handler
;
5623 Lisp_Object filename
;
5628 if (!STRINGP (b
->filename
)) return Qt
;
5629 if (b
->modtime
== 0) return Qt
;
5631 /* If the file name has special constructs in it,
5632 call the corresponding file handler. */
5633 handler
= Ffind_file_name_handler (b
->filename
,
5634 Qverify_visited_file_modtime
);
5635 if (!NILP (handler
))
5636 return call2 (handler
, Qverify_visited_file_modtime
, buf
);
5638 filename
= ENCODE_FILE (b
->filename
);
5640 if (stat (SDATA (filename
), &st
) < 0)
5642 /* If the file doesn't exist now and didn't exist before,
5643 we say that it isn't modified, provided the error is a tame one. */
5644 if (errno
== ENOENT
|| errno
== EACCES
|| errno
== ENOTDIR
)
5649 if (st
.st_mtime
== b
->modtime
5650 /* If both are positive, accept them if they are off by one second. */
5651 || (st
.st_mtime
> 0 && b
->modtime
> 0
5652 && (st
.st_mtime
== b
->modtime
+ 1
5653 || st
.st_mtime
== b
->modtime
- 1)))
5658 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime
,
5659 Sclear_visited_file_modtime
, 0, 0, 0,
5660 doc
: /* Clear out records of last mod time of visited file.
5661 Next attempt to save will certainly not complain of a discrepancy. */)
5664 current_buffer
->modtime
= 0;
5668 DEFUN ("visited-file-modtime", Fvisited_file_modtime
,
5669 Svisited_file_modtime
, 0, 0, 0,
5670 doc
: /* Return the current buffer's recorded visited file modification time.
5671 The value is a list of the form (HIGH LOW), like the time values
5672 that `file-attributes' returns. If the current buffer has no recorded
5673 file modification time, this function returns 0.
5674 See Info node `(elisp)Modification Time' for more details. */)
5677 if (! current_buffer
->modtime
)
5678 return make_number (0);
5679 return make_time ((time_t) current_buffer
->modtime
);
5682 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime
,
5683 Sset_visited_file_modtime
, 0, 1, 0,
5684 doc
: /* Update buffer's recorded modification time from the visited file's time.
5685 Useful if the buffer was not read from the file normally
5686 or if the file itself has been changed for some known benign reason.
5687 An argument specifies the modification time value to use
5688 \(instead of that of the visited file), in the form of a list
5689 \(HIGH . LOW) or (HIGH LOW). */)
5691 Lisp_Object time_list
;
5693 if (!NILP (time_list
))
5694 current_buffer
->modtime
= cons_to_long (time_list
);
5697 register Lisp_Object filename
;
5699 Lisp_Object handler
;
5701 filename
= Fexpand_file_name (current_buffer
->filename
, Qnil
);
5703 /* If the file name has special constructs in it,
5704 call the corresponding file handler. */
5705 handler
= Ffind_file_name_handler (filename
, Qset_visited_file_modtime
);
5706 if (!NILP (handler
))
5707 /* The handler can find the file name the same way we did. */
5708 return call2 (handler
, Qset_visited_file_modtime
, Qnil
);
5710 filename
= ENCODE_FILE (filename
);
5712 if (stat (SDATA (filename
), &st
) >= 0)
5713 current_buffer
->modtime
= st
.st_mtime
;
5720 auto_save_error (error
)
5723 Lisp_Object args
[3], msg
;
5725 struct gcpro gcpro1
;
5729 ring_bell (XFRAME (selected_frame
));
5731 args
[0] = build_string ("Auto-saving %s: %s");
5732 args
[1] = current_buffer
->name
;
5733 args
[2] = Ferror_message_string (error
);
5734 msg
= Fformat (3, args
);
5736 nbytes
= SBYTES (msg
);
5737 SAFE_ALLOCA (msgbuf
, char *, nbytes
);
5738 bcopy (SDATA (msg
), msgbuf
, nbytes
);
5740 for (i
= 0; i
< 3; ++i
)
5743 message2 (msgbuf
, nbytes
, STRING_MULTIBYTE (msg
));
5745 message2_nolog (msgbuf
, nbytes
, STRING_MULTIBYTE (msg
));
5746 Fsleep_for (make_number (1), Qnil
);
5760 auto_save_mode_bits
= 0666;
5762 /* Get visited file's mode to become the auto save file's mode. */
5763 if (! NILP (current_buffer
->filename
))
5765 if (stat (SDATA (current_buffer
->filename
), &st
) >= 0)
5766 /* But make sure we can overwrite it later! */
5767 auto_save_mode_bits
= st
.st_mode
| 0600;
5768 else if ((modes
= Ffile_modes (current_buffer
->filename
),
5770 /* Remote files don't cooperate with stat. */
5771 auto_save_mode_bits
= XINT (modes
) | 0600;
5775 Fwrite_region (Qnil
, Qnil
,
5776 current_buffer
->auto_save_file_name
,
5777 Qnil
, Qlambda
, Qnil
, Qnil
);
5781 do_auto_save_unwind (arg
) /* used as unwind-protect function */
5784 FILE *stream
= (FILE *) XSAVE_VALUE (arg
)->pointer
;
5796 do_auto_save_unwind_1 (value
) /* used as unwind-protect function */
5799 minibuffer_auto_raise
= XINT (value
);
5804 do_auto_save_make_dir (dir
)
5809 call2 (Qmake_directory
, dir
, Qt
);
5810 XSETFASTINT (mode
, 0700);
5811 return Fset_file_modes (dir
, mode
);
5815 do_auto_save_eh (ignore
)
5821 DEFUN ("do-auto-save", Fdo_auto_save
, Sdo_auto_save
, 0, 2, "",
5822 doc
: /* Auto-save all buffers that need it.
5823 This is all buffers that have auto-saving enabled
5824 and are changed since last auto-saved.
5825 Auto-saving writes the buffer into a file
5826 so that your editing is not lost if the system crashes.
5827 This file is not the file you visited; that changes only when you save.
5828 Normally we run the normal hook `auto-save-hook' before saving.
5830 A non-nil NO-MESSAGE argument means do not print any message if successful.
5831 A non-nil CURRENT-ONLY argument means save only current buffer. */)
5832 (no_message
, current_only
)
5833 Lisp_Object no_message
, current_only
;
5835 struct buffer
*old
= current_buffer
, *b
;
5836 Lisp_Object tail
, buf
;
5838 int do_handled_files
;
5840 FILE *stream
= NULL
;
5841 int count
= SPECPDL_INDEX ();
5842 int orig_minibuffer_auto_raise
= minibuffer_auto_raise
;
5843 int old_message_p
= 0;
5844 struct gcpro gcpro1
, gcpro2
;
5846 if (max_specpdl_size
< specpdl_size
+ 40)
5847 max_specpdl_size
= specpdl_size
+ 40;
5852 if (NILP (no_message
))
5854 old_message_p
= push_message ();
5855 record_unwind_protect (pop_message_unwind
, Qnil
);
5858 /* Ordinarily don't quit within this function,
5859 but don't make it impossible to quit (in case we get hung in I/O). */
5863 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
5864 point to non-strings reached from Vbuffer_alist. */
5866 if (!NILP (Vrun_hooks
))
5867 call1 (Vrun_hooks
, intern ("auto-save-hook"));
5869 if (STRINGP (Vauto_save_list_file_name
))
5871 Lisp_Object listfile
;
5873 listfile
= Fexpand_file_name (Vauto_save_list_file_name
, Qnil
);
5875 /* Don't try to create the directory when shutting down Emacs,
5876 because creating the directory might signal an error, and
5877 that would leave Emacs in a strange state. */
5878 if (!NILP (Vrun_hooks
))
5882 GCPRO2 (dir
, listfile
);
5883 dir
= Ffile_name_directory (listfile
);
5884 if (NILP (Ffile_directory_p (dir
)))
5885 internal_condition_case_1 (do_auto_save_make_dir
,
5886 dir
, Fcons (Fcons (Qfile_error
, Qnil
), Qnil
),
5891 stream
= fopen (SDATA (listfile
), "w");
5894 record_unwind_protect (do_auto_save_unwind
,
5895 make_save_value (stream
, 0));
5896 record_unwind_protect (do_auto_save_unwind_1
,
5897 make_number (minibuffer_auto_raise
));
5898 minibuffer_auto_raise
= 0;
5901 /* On first pass, save all files that don't have handlers.
5902 On second pass, save all files that do have handlers.
5904 If Emacs is crashing, the handlers may tweak what is causing
5905 Emacs to crash in the first place, and it would be a shame if
5906 Emacs failed to autosave perfectly ordinary files because it
5907 couldn't handle some ange-ftp'd file. */
5909 for (do_handled_files
= 0; do_handled_files
< 2; do_handled_files
++)
5910 for (tail
= Vbuffer_alist
; CONSP (tail
); tail
= XCDR (tail
))
5912 buf
= XCDR (XCAR (tail
));
5915 /* Record all the buffers that have auto save mode
5916 in the special file that lists them. For each of these buffers,
5917 Record visited name (if any) and auto save name. */
5918 if (STRINGP (b
->auto_save_file_name
)
5919 && stream
!= NULL
&& do_handled_files
== 0)
5922 if (!NILP (b
->filename
))
5924 fwrite (SDATA (b
->filename
), 1,
5925 SBYTES (b
->filename
), stream
);
5927 putc ('\n', stream
);
5928 fwrite (SDATA (b
->auto_save_file_name
), 1,
5929 SBYTES (b
->auto_save_file_name
), stream
);
5930 putc ('\n', stream
);
5934 if (!NILP (current_only
)
5935 && b
!= current_buffer
)
5938 /* Don't auto-save indirect buffers.
5939 The base buffer takes care of it. */
5943 /* Check for auto save enabled
5944 and file changed since last auto save
5945 and file changed since last real save. */
5946 if (STRINGP (b
->auto_save_file_name
)
5947 && BUF_SAVE_MODIFF (b
) < BUF_MODIFF (b
)
5948 && b
->auto_save_modified
< BUF_MODIFF (b
)
5949 /* -1 means we've turned off autosaving for a while--see below. */
5950 && XINT (b
->save_length
) >= 0
5951 && (do_handled_files
5952 || NILP (Ffind_file_name_handler (b
->auto_save_file_name
,
5955 EMACS_TIME before_time
, after_time
;
5957 EMACS_GET_TIME (before_time
);
5959 /* If we had a failure, don't try again for 20 minutes. */
5960 if (b
->auto_save_failure_time
>= 0
5961 && EMACS_SECS (before_time
) - b
->auto_save_failure_time
< 1200)
5964 if ((XFASTINT (b
->save_length
) * 10
5965 > (BUF_Z (b
) - BUF_BEG (b
)) * 13)
5966 /* A short file is likely to change a large fraction;
5967 spare the user annoying messages. */
5968 && XFASTINT (b
->save_length
) > 5000
5969 /* These messages are frequent and annoying for `*mail*'. */
5970 && !EQ (b
->filename
, Qnil
)
5971 && NILP (no_message
))
5973 /* It has shrunk too much; turn off auto-saving here. */
5974 minibuffer_auto_raise
= orig_minibuffer_auto_raise
;
5975 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save",
5977 minibuffer_auto_raise
= 0;
5978 /* Turn off auto-saving until there's a real save,
5979 and prevent any more warnings. */
5980 XSETINT (b
->save_length
, -1);
5981 Fsleep_for (make_number (1), Qnil
);
5984 set_buffer_internal (b
);
5985 if (!auto_saved
&& NILP (no_message
))
5986 message1 ("Auto-saving...");
5987 internal_condition_case (auto_save_1
, Qt
, auto_save_error
);
5989 b
->auto_save_modified
= BUF_MODIFF (b
);
5990 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
5991 set_buffer_internal (old
);
5993 EMACS_GET_TIME (after_time
);
5995 /* If auto-save took more than 60 seconds,
5996 assume it was an NFS failure that got a timeout. */
5997 if (EMACS_SECS (after_time
) - EMACS_SECS (before_time
) > 60)
5998 b
->auto_save_failure_time
= EMACS_SECS (after_time
);
6002 /* Prevent another auto save till enough input events come in. */
6003 record_auto_save ();
6005 if (auto_saved
&& NILP (no_message
))
6009 /* If we are going to restore an old message,
6010 give time to read ours. */
6011 sit_for (make_number (1), 0, 0);
6015 /* If we displayed a message and then restored a state
6016 with no message, leave a "done" message on the screen. */
6017 message1 ("Auto-saving...done");
6022 /* This restores the message-stack status. */
6023 unbind_to (count
, Qnil
);
6027 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved
,
6028 Sset_buffer_auto_saved
, 0, 0, 0,
6029 doc
: /* Mark current buffer as auto-saved with its current text.
6030 No auto-save file will be written until the buffer changes again. */)
6033 current_buffer
->auto_save_modified
= MODIFF
;
6034 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
6035 current_buffer
->auto_save_failure_time
= -1;
6039 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure
,
6040 Sclear_buffer_auto_save_failure
, 0, 0, 0,
6041 doc
: /* Clear any record of a recent auto-save failure in the current buffer. */)
6044 current_buffer
->auto_save_failure_time
= -1;
6048 DEFUN ("recent-auto-save-p", Frecent_auto_save_p
, Srecent_auto_save_p
,
6050 doc
: /* Return t if current buffer has been auto-saved recently.
6051 More precisely, if it has been auto-saved since last read from or saved
6052 in the visited file. If the buffer has no visited file,
6053 then any auto-save counts as "recent". */)
6056 return (SAVE_MODIFF
< current_buffer
->auto_save_modified
) ? Qt
: Qnil
;
6059 /* Reading and completing file names */
6060 extern Lisp_Object
Ffile_name_completion (), Ffile_name_all_completions ();
6061 extern Lisp_Object Qcompletion_ignore_case
;
6063 /* In the string VAL, change each $ to $$ and return the result. */
6066 double_dollars (val
)
6069 register const unsigned char *old
;
6070 register unsigned char *new;
6074 osize
= SBYTES (val
);
6076 /* Count the number of $ characters. */
6077 for (n
= osize
, count
= 0, old
= SDATA (val
); n
> 0; n
--)
6078 if (*old
++ == '$') count
++;
6082 val
= make_uninit_multibyte_string (SCHARS (val
) + count
,
6085 for (n
= osize
; n
> 0; n
--)
6099 read_file_name_cleanup (arg
)
6102 return (current_buffer
->directory
= arg
);
6105 DEFUN ("read-file-name-internal", Fread_file_name_internal
, Sread_file_name_internal
,
6107 doc
: /* Internal subroutine for read-file-name. Do not call this. */)
6108 (string
, dir
, action
)
6109 Lisp_Object string
, dir
, action
;
6110 /* action is nil for complete, t for return list of completions,
6111 lambda for verify final value */
6113 Lisp_Object name
, specdir
, realdir
, val
, orig_string
;
6115 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
6117 CHECK_STRING (string
);
6124 /* No need to protect ACTION--we only compare it with t and nil. */
6125 GCPRO5 (string
, realdir
, name
, specdir
, orig_string
);
6127 if (SCHARS (string
) == 0)
6129 if (EQ (action
, Qlambda
))
6137 orig_string
= string
;
6138 string
= Fsubstitute_in_file_name (string
);
6139 changed
= NILP (Fstring_equal (string
, orig_string
));
6140 name
= Ffile_name_nondirectory (string
);
6141 val
= Ffile_name_directory (string
);
6143 realdir
= Fexpand_file_name (val
, realdir
);
6148 specdir
= Ffile_name_directory (string
);
6149 val
= Ffile_name_completion (name
, realdir
, Vread_file_name_predicate
);
6154 return double_dollars (string
);
6158 if (!NILP (specdir
))
6159 val
= concat2 (specdir
, val
);
6161 return double_dollars (val
);
6164 #endif /* not VMS */
6168 if (EQ (action
, Qt
))
6170 Lisp_Object all
= Ffile_name_all_completions (name
, realdir
);
6174 if (NILP (Vread_file_name_predicate
)
6175 || EQ (Vread_file_name_predicate
, Qfile_exists_p
))
6179 if (EQ (Vread_file_name_predicate
, Qfile_directory_p
))
6181 /* Brute-force speed up for directory checking:
6182 Discard strings which don't end in a slash. */
6183 for (comp
= Qnil
; CONSP (all
); all
= XCDR (all
))
6185 Lisp_Object tem
= XCAR (all
);
6187 if (STRINGP (tem
) &&
6188 (len
= SBYTES (tem
), len
> 0) &&
6189 IS_DIRECTORY_SEP (SREF (tem
, len
-1)))
6190 comp
= Fcons (tem
, comp
);
6196 /* Must do it the hard (and slow) way. */
6198 GCPRO3 (all
, comp
, specdir
);
6199 count
= SPECPDL_INDEX ();
6200 record_unwind_protect (read_file_name_cleanup
, current_buffer
->directory
);
6201 current_buffer
->directory
= realdir
;
6202 for (comp
= Qnil
; CONSP (all
); all
= XCDR (all
))
6204 tem
= call1 (Vread_file_name_predicate
, XCAR (all
));
6206 comp
= Fcons (XCAR (all
), comp
);
6208 unbind_to (count
, Qnil
);
6211 return Fnreverse (comp
);
6214 /* Only other case actually used is ACTION = lambda */
6216 /* Supposedly this helps commands such as `cd' that read directory names,
6217 but can someone explain how it helps them? -- RMS */
6218 if (SCHARS (name
) == 0)
6221 string
= Fexpand_file_name (string
, dir
);
6222 if (!NILP (Vread_file_name_predicate
))
6223 return call1 (Vread_file_name_predicate
, string
);
6224 return Ffile_exists_p (string
);
6227 DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p
,
6228 Snext_read_file_uses_dialog_p
, 0, 0, 0,
6229 doc
: /* Return t if a call to `read-file-name' will use a dialog.
6230 The return value is only relevant for a call to `read-file-name' that happens
6231 before any other event (mouse or keypress) is handeled. */)
6234 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK) || defined (HAVE_CARBON)
6235 if ((NILP (last_nonmenu_event
) || CONSP (last_nonmenu_event
))
6244 DEFUN ("read-file-name", Fread_file_name
, Sread_file_name
, 1, 6, 0,
6245 doc
: /* Read file name, prompting with PROMPT and completing in directory DIR.
6246 Value is not expanded---you must call `expand-file-name' yourself.
6247 Default name to DEFAULT-FILENAME if user exits the minibuffer with
6248 the same non-empty string that was inserted by this function.
6249 (If DEFAULT-FILENAME is omitted, the visited file name is used,
6250 except that if INITIAL is specified, that combined with DIR is used.)
6251 If the user exits with an empty minibuffer, this function returns
6252 an empty string. (This can only happen if the user erased the
6253 pre-inserted contents or if `insert-default-directory' is nil.)
6254 Fourth arg MUSTMATCH non-nil means require existing file's name.
6255 Non-nil and non-t means also require confirmation after completion.
6256 Fifth arg INITIAL specifies text to start with.
6257 If optional sixth arg PREDICATE is non-nil, possible completions and
6258 the resulting file name must satisfy (funcall PREDICATE NAME).
6259 DIR should be an absolute directory name. It defaults to the value of
6260 `default-directory'.
6262 If this command was invoked with the mouse, use a file dialog box if
6263 `use-dialog-box' is non-nil, and the window system or X toolkit in use
6264 provides a file dialog box.
6266 See also `read-file-name-completion-ignore-case'
6267 and `read-file-name-function'. */)
6268 (prompt
, dir
, default_filename
, mustmatch
, initial
, predicate
)
6269 Lisp_Object prompt
, dir
, default_filename
, mustmatch
, initial
, predicate
;
6271 Lisp_Object val
, insdef
, tem
;
6272 struct gcpro gcpro1
, gcpro2
;
6273 register char *homedir
;
6274 Lisp_Object decoded_homedir
;
6275 int replace_in_history
= 0;
6276 int add_to_history
= 0;
6280 dir
= current_buffer
->directory
;
6281 if (NILP (Ffile_name_absolute_p (dir
)))
6282 dir
= Fexpand_file_name (dir
, Qnil
);
6283 if (NILP (default_filename
))
6286 ? Fexpand_file_name (initial
, dir
)
6287 : current_buffer
->filename
);
6289 /* If dir starts with user's homedir, change that to ~. */
6290 homedir
= (char *) egetenv ("HOME");
6292 /* homedir can be NULL in temacs, since Vglobal_environment is not
6293 yet set up. We shouldn't crash in that case. */
6296 homedir
= strcpy (alloca (strlen (homedir
) + 1), homedir
);
6297 CORRECT_DIR_SEPS (homedir
);
6302 = DECODE_FILE (make_unibyte_string (homedir
, strlen (homedir
)));
6305 && !strncmp (SDATA (decoded_homedir
), SDATA (dir
),
6306 SBYTES (decoded_homedir
))
6307 && IS_DIRECTORY_SEP (SREF (dir
, SBYTES (decoded_homedir
))))
6309 dir
= Fsubstring (dir
, make_number (SCHARS (decoded_homedir
)), Qnil
);
6310 dir
= concat2 (build_string ("~"), dir
);
6312 /* Likewise for default_filename. */
6314 && STRINGP (default_filename
)
6315 && !strncmp (SDATA (decoded_homedir
), SDATA (default_filename
),
6316 SBYTES (decoded_homedir
))
6317 && IS_DIRECTORY_SEP (SREF (default_filename
, SBYTES (decoded_homedir
))))
6320 = Fsubstring (default_filename
,
6321 make_number (SCHARS (decoded_homedir
)), Qnil
);
6322 default_filename
= concat2 (build_string ("~"), default_filename
);
6324 if (!NILP (default_filename
))
6326 CHECK_STRING (default_filename
);
6327 default_filename
= double_dollars (default_filename
);
6330 if (insert_default_directory
&& STRINGP (dir
))
6333 if (!NILP (initial
))
6335 Lisp_Object args
[2], pos
;
6339 insdef
= Fconcat (2, args
);
6340 pos
= make_number (SCHARS (double_dollars (dir
)));
6341 insdef
= Fcons (double_dollars (insdef
), pos
);
6344 insdef
= double_dollars (insdef
);
6346 else if (STRINGP (initial
))
6347 insdef
= Fcons (double_dollars (initial
), make_number (0));
6351 if (!NILP (Vread_file_name_function
))
6353 Lisp_Object args
[7];
6355 GCPRO2 (insdef
, default_filename
);
6356 args
[0] = Vread_file_name_function
;
6359 args
[3] = default_filename
;
6360 args
[4] = mustmatch
;
6362 args
[6] = predicate
;
6363 RETURN_UNGCPRO (Ffuncall (7, args
));
6366 count
= SPECPDL_INDEX ();
6367 specbind (Qcompletion_ignore_case
,
6368 read_file_name_completion_ignore_case
? Qt
: Qnil
);
6369 specbind (intern ("minibuffer-completing-file-name"), Qt
);
6370 specbind (intern ("read-file-name-predicate"),
6371 (NILP (predicate
) ? Qfile_exists_p
: predicate
));
6373 GCPRO2 (insdef
, default_filename
);
6375 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK) || defined (HAVE_CARBON)
6376 if (! NILP (Fnext_read_file_uses_dialog_p ()))
6378 /* If DIR contains a file name, split it. */
6380 file
= Ffile_name_nondirectory (dir
);
6381 if (SCHARS (file
) && NILP (default_filename
))
6383 default_filename
= file
;
6384 dir
= Ffile_name_directory (dir
);
6386 if (!NILP(default_filename
))
6387 default_filename
= Fexpand_file_name (default_filename
, dir
);
6388 val
= Fx_file_dialog (prompt
, dir
, default_filename
, mustmatch
,
6389 EQ (predicate
, Qfile_directory_p
) ? Qt
: Qnil
);
6394 val
= Fcompleting_read (prompt
, intern ("read-file-name-internal"),
6395 dir
, mustmatch
, insdef
,
6396 Qfile_name_history
, default_filename
, Qnil
);
6398 tem
= Fsymbol_value (Qfile_name_history
);
6399 if (CONSP (tem
) && EQ (XCAR (tem
), val
))
6400 replace_in_history
= 1;
6402 /* If Fcompleting_read returned the inserted default string itself
6403 (rather than a new string with the same contents),
6404 it has to mean that the user typed RET with the minibuffer empty.
6405 In that case, we really want to return ""
6406 so that commands such as set-visited-file-name can distinguish. */
6407 if (EQ (val
, default_filename
))
6409 /* In this case, Fcompleting_read has not added an element
6410 to the history. Maybe we should. */
6411 if (! replace_in_history
)
6414 val
= empty_unibyte_string
;
6417 unbind_to (count
, Qnil
);
6420 error ("No file name specified");
6422 tem
= Fstring_equal (val
, CONSP (insdef
) ? XCAR (insdef
) : insdef
);
6424 if (!NILP (tem
) && !NILP (default_filename
))
6425 val
= default_filename
;
6426 val
= Fsubstitute_in_file_name (val
);
6428 if (replace_in_history
)
6429 /* Replace what Fcompleting_read added to the history
6430 with what we will actually return. */
6432 Lisp_Object val1
= double_dollars (val
);
6433 tem
= Fsymbol_value (Qfile_name_history
);
6434 if (history_delete_duplicates
)
6435 XSETCDR (tem
, Fdelete (val1
, XCDR(tem
)));
6436 XSETCAR (tem
, val1
);
6438 else if (add_to_history
)
6440 /* Add the value to the history--but not if it matches
6441 the last value already there. */
6442 Lisp_Object val1
= double_dollars (val
);
6443 tem
= Fsymbol_value (Qfile_name_history
);
6444 if (! CONSP (tem
) || NILP (Fequal (XCAR (tem
), val1
)))
6446 if (history_delete_duplicates
) tem
= Fdelete (val1
, tem
);
6447 Fset (Qfile_name_history
, Fcons (val1
, tem
));
6458 /* Must be set before any path manipulation is performed. */
6459 XSETFASTINT (Vdirectory_sep_char
, '/');
6466 Qoperations
= intern ("operations");
6467 Qexpand_file_name
= intern ("expand-file-name");
6468 Qsubstitute_in_file_name
= intern ("substitute-in-file-name");
6469 Qdirectory_file_name
= intern ("directory-file-name");
6470 Qfile_name_directory
= intern ("file-name-directory");
6471 Qfile_name_nondirectory
= intern ("file-name-nondirectory");
6472 Qunhandled_file_name_directory
= intern ("unhandled-file-name-directory");
6473 Qfile_name_as_directory
= intern ("file-name-as-directory");
6474 Qcopy_file
= intern ("copy-file");
6475 Qmake_directory_internal
= intern ("make-directory-internal");
6476 Qmake_directory
= intern ("make-directory");
6477 Qdelete_directory
= intern ("delete-directory");
6478 Qdelete_file
= intern ("delete-file");
6479 Qrename_file
= intern ("rename-file");
6480 Qadd_name_to_file
= intern ("add-name-to-file");
6481 Qmake_symbolic_link
= intern ("make-symbolic-link");
6482 Qfile_exists_p
= intern ("file-exists-p");
6483 Qfile_executable_p
= intern ("file-executable-p");
6484 Qfile_readable_p
= intern ("file-readable-p");
6485 Qfile_writable_p
= intern ("file-writable-p");
6486 Qfile_symlink_p
= intern ("file-symlink-p");
6487 Qaccess_file
= intern ("access-file");
6488 Qfile_directory_p
= intern ("file-directory-p");
6489 Qfile_regular_p
= intern ("file-regular-p");
6490 Qfile_accessible_directory_p
= intern ("file-accessible-directory-p");
6491 Qfile_modes
= intern ("file-modes");
6492 Qset_file_modes
= intern ("set-file-modes");
6493 Qset_file_times
= intern ("set-file-times");
6494 Qfile_newer_than_file_p
= intern ("file-newer-than-file-p");
6495 Qinsert_file_contents
= intern ("insert-file-contents");
6496 Qwrite_region
= intern ("write-region");
6497 Qverify_visited_file_modtime
= intern ("verify-visited-file-modtime");
6498 Qset_visited_file_modtime
= intern ("set-visited-file-modtime");
6499 Qauto_save_coding
= intern ("auto-save-coding");
6501 staticpro (&Qoperations
);
6502 staticpro (&Qexpand_file_name
);
6503 staticpro (&Qsubstitute_in_file_name
);
6504 staticpro (&Qdirectory_file_name
);
6505 staticpro (&Qfile_name_directory
);
6506 staticpro (&Qfile_name_nondirectory
);
6507 staticpro (&Qunhandled_file_name_directory
);
6508 staticpro (&Qfile_name_as_directory
);
6509 staticpro (&Qcopy_file
);
6510 staticpro (&Qmake_directory_internal
);
6511 staticpro (&Qmake_directory
);
6512 staticpro (&Qdelete_directory
);
6513 staticpro (&Qdelete_file
);
6514 staticpro (&Qrename_file
);
6515 staticpro (&Qadd_name_to_file
);
6516 staticpro (&Qmake_symbolic_link
);
6517 staticpro (&Qfile_exists_p
);
6518 staticpro (&Qfile_executable_p
);
6519 staticpro (&Qfile_readable_p
);
6520 staticpro (&Qfile_writable_p
);
6521 staticpro (&Qaccess_file
);
6522 staticpro (&Qfile_symlink_p
);
6523 staticpro (&Qfile_directory_p
);
6524 staticpro (&Qfile_regular_p
);
6525 staticpro (&Qfile_accessible_directory_p
);
6526 staticpro (&Qfile_modes
);
6527 staticpro (&Qset_file_modes
);
6528 staticpro (&Qset_file_times
);
6529 staticpro (&Qfile_newer_than_file_p
);
6530 staticpro (&Qinsert_file_contents
);
6531 staticpro (&Qwrite_region
);
6532 staticpro (&Qverify_visited_file_modtime
);
6533 staticpro (&Qset_visited_file_modtime
);
6534 staticpro (&Qauto_save_coding
);
6536 Qfile_name_history
= intern ("file-name-history");
6537 Fset (Qfile_name_history
, Qnil
);
6538 staticpro (&Qfile_name_history
);
6540 Qfile_error
= intern ("file-error");
6541 staticpro (&Qfile_error
);
6542 Qfile_already_exists
= intern ("file-already-exists");
6543 staticpro (&Qfile_already_exists
);
6544 Qfile_date_error
= intern ("file-date-error");
6545 staticpro (&Qfile_date_error
);
6546 Qexcl
= intern ("excl");
6550 Qfind_buffer_file_type
= intern ("find-buffer-file-type");
6551 staticpro (&Qfind_buffer_file_type
);
6554 DEFVAR_LISP ("file-name-coding-system", &Vfile_name_coding_system
,
6555 doc
: /* *Coding system for encoding file names.
6556 If it is nil, `default-file-name-coding-system' (which see) is used. */);
6557 Vfile_name_coding_system
= Qnil
;
6559 DEFVAR_LISP ("default-file-name-coding-system",
6560 &Vdefault_file_name_coding_system
,
6561 doc
: /* Default coding system for encoding file names.
6562 This variable is used only when `file-name-coding-system' is nil.
6564 This variable is set/changed by the command `set-language-environment'.
6565 User should not set this variable manually,
6566 instead use `file-name-coding-system' to get a constant encoding
6567 of file names regardless of the current language environment. */);
6568 Vdefault_file_name_coding_system
= Qnil
;
6570 Qformat_decode
= intern ("format-decode");
6571 staticpro (&Qformat_decode
);
6572 Qformat_annotate_function
= intern ("format-annotate-function");
6573 staticpro (&Qformat_annotate_function
);
6574 Qafter_insert_file_set_coding
= intern ("after-insert-file-set-coding");
6575 staticpro (&Qafter_insert_file_set_coding
);
6577 Qcar_less_than_car
= intern ("car-less-than-car");
6578 staticpro (&Qcar_less_than_car
);
6580 Fput (Qfile_error
, Qerror_conditions
,
6581 list2 (Qfile_error
, Qerror
));
6582 Fput (Qfile_error
, Qerror_message
,
6583 build_string ("File error"));
6585 Fput (Qfile_already_exists
, Qerror_conditions
,
6586 list3 (Qfile_already_exists
, Qfile_error
, Qerror
));
6587 Fput (Qfile_already_exists
, Qerror_message
,
6588 build_string ("File already exists"));
6590 Fput (Qfile_date_error
, Qerror_conditions
,
6591 list3 (Qfile_date_error
, Qfile_error
, Qerror
));
6592 Fput (Qfile_date_error
, Qerror_message
,
6593 build_string ("Cannot set file date"));
6595 DEFVAR_LISP ("read-file-name-function", &Vread_file_name_function
,
6596 doc
: /* If this is non-nil, `read-file-name' does its work by calling this function. */);
6597 Vread_file_name_function
= Qnil
;
6599 DEFVAR_LISP ("read-file-name-predicate", &Vread_file_name_predicate
,
6600 doc
: /* Current predicate used by `read-file-name-internal'. */);
6601 Vread_file_name_predicate
= Qnil
;
6603 DEFVAR_BOOL ("read-file-name-completion-ignore-case", &read_file_name_completion_ignore_case
,
6604 doc
: /* *Non-nil means when reading a file name completion ignores case. */);
6605 #if defined VMS || defined DOS_NT || defined MAC_OS
6606 read_file_name_completion_ignore_case
= 1;
6608 read_file_name_completion_ignore_case
= 0;
6611 DEFVAR_BOOL ("insert-default-directory", &insert_default_directory
,
6612 doc
: /* *Non-nil means when reading a filename start with default dir in minibuffer.
6613 If the initial minibuffer contents are non-empty, you can usually
6614 request a default filename by typing RETURN without editing. For some
6615 commands, exiting with an empty minibuffer has a special meaning,
6616 such as making the current buffer visit no file in the case of
6617 `set-visited-file-name'.
6618 If this variable is non-nil, the minibuffer contents are always
6619 initially non-empty and typing RETURN without editing will fetch the
6620 default name, if one is provided. Note however that this default name
6621 is not necessarily the name originally inserted in the minibuffer, if
6622 that is just the default directory.
6623 If this variable is nil, the minibuffer often starts out empty. In
6624 that case you may have to explicitly fetch the next history element to
6625 request the default name. */);
6626 insert_default_directory
= 1;
6628 DEFVAR_BOOL ("vms-stmlf-recfm", &vms_stmlf_recfm
,
6629 doc
: /* *Non-nil means write new files with record format `stmlf'.
6630 nil means use format `var'. This variable is meaningful only on VMS. */);
6631 vms_stmlf_recfm
= 0;
6633 DEFVAR_LISP ("directory-sep-char", &Vdirectory_sep_char
,
6634 doc
: /* Directory separator character for built-in functions that return file names.
6635 The value is always ?/. Don't use this variable, just use `/'. */);
6637 DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist
,
6638 doc
: /* *Alist of elements (REGEXP . HANDLER) for file names handled specially.
6639 If a file name matches REGEXP, then all I/O on that file is done by calling
6642 The first argument given to HANDLER is the name of the I/O primitive
6643 to be handled; the remaining arguments are the arguments that were
6644 passed to that primitive. For example, if you do
6645 (file-exists-p FILENAME)
6646 and FILENAME is handled by HANDLER, then HANDLER is called like this:
6647 (funcall HANDLER 'file-exists-p FILENAME)
6648 The function `find-file-name-handler' checks this list for a handler
6649 for its argument. */);
6650 Vfile_name_handler_alist
= Qnil
;
6652 DEFVAR_LISP ("set-auto-coding-function",
6653 &Vset_auto_coding_function
,
6654 doc
: /* If non-nil, a function to call to decide a coding system of file.
6655 Two arguments are passed to this function: the file name
6656 and the length of a file contents following the point.
6657 This function should return a coding system to decode the file contents.
6658 It should check the file name against `auto-coding-alist'.
6659 If no coding system is decided, it should check a coding system
6660 specified in the heading lines with the format:
6661 -*- ... coding: CODING-SYSTEM; ... -*-
6662 or local variable spec of the tailing lines with `coding:' tag. */);
6663 Vset_auto_coding_function
= Qnil
;
6665 DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions
,
6666 doc
: /* A list of functions to be called at the end of `insert-file-contents'.
6667 Each is passed one argument, the number of characters inserted,
6668 with point at the start of the inserted text. Each function
6669 should leave point the same, and return the new character count.
6670 If `insert-file-contents' is intercepted by a handler from
6671 `file-name-handler-alist', that handler is responsible for calling the
6672 functions in `after-insert-file-functions' if appropriate. */);
6673 Vafter_insert_file_functions
= Qnil
;
6675 DEFVAR_LISP ("write-region-annotate-functions", &Vwrite_region_annotate_functions
,
6676 doc
: /* A list of functions to be called at the start of `write-region'.
6677 Each is passed two arguments, START and END as for `write-region'.
6678 These are usually two numbers but not always; see the documentation
6679 for `write-region'. The function should return a list of pairs
6680 of the form (POSITION . STRING), consisting of strings to be effectively
6681 inserted at the specified positions of the file being written (1 means to
6682 insert before the first byte written). The POSITIONs must be sorted into
6683 increasing order. If there are several functions in the list, the several
6684 lists are merged destructively. Alternatively, the function can return
6685 with a different buffer current; in that case it should pay attention
6686 to the annotations returned by previous functions and listed in
6687 `write-region-annotations-so-far'.*/);
6688 Vwrite_region_annotate_functions
= Qnil
;
6689 staticpro (&Qwrite_region_annotate_functions
);
6690 Qwrite_region_annotate_functions
6691 = intern ("write-region-annotate-functions");
6693 DEFVAR_LISP ("write-region-annotations-so-far",
6694 &Vwrite_region_annotations_so_far
,
6695 doc
: /* When an annotation function is called, this holds the previous annotations.
6696 These are the annotations made by other annotation functions
6697 that were already called. See also `write-region-annotate-functions'. */);
6698 Vwrite_region_annotations_so_far
= Qnil
;
6700 DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers
,
6701 doc
: /* A list of file name handlers that temporarily should not be used.
6702 This applies only to the operation `inhibit-file-name-operation'. */);
6703 Vinhibit_file_name_handlers
= Qnil
;
6705 DEFVAR_LISP ("inhibit-file-name-operation", &Vinhibit_file_name_operation
,
6706 doc
: /* The operation for which `inhibit-file-name-handlers' is applicable. */);
6707 Vinhibit_file_name_operation
= Qnil
;
6709 DEFVAR_LISP ("auto-save-list-file-name", &Vauto_save_list_file_name
,
6710 doc
: /* File name in which we write a list of all auto save file names.
6711 This variable is initialized automatically from `auto-save-list-file-prefix'
6712 shortly after Emacs reads your `.emacs' file, if you have not yet given it
6713 a non-nil value. */);
6714 Vauto_save_list_file_name
= Qnil
;
6717 DEFVAR_BOOL ("write-region-inhibit-fsync", &write_region_inhibit_fsync
,
6718 doc
: /* *Non-nil means don't call fsync in `write-region'.
6719 This variable affects calls to `write-region' as well as save commands.
6720 A non-nil value may result in data loss! */);
6721 write_region_inhibit_fsync
= 0;
6724 defsubr (&Sfind_file_name_handler
);
6725 defsubr (&Sfile_name_directory
);
6726 defsubr (&Sfile_name_nondirectory
);
6727 defsubr (&Sunhandled_file_name_directory
);
6728 defsubr (&Sfile_name_as_directory
);
6729 defsubr (&Sdirectory_file_name
);
6730 defsubr (&Smake_temp_name
);
6731 defsubr (&Sexpand_file_name
);
6732 defsubr (&Ssubstitute_in_file_name
);
6733 defsubr (&Scopy_file
);
6734 defsubr (&Smake_directory_internal
);
6735 defsubr (&Sdelete_directory
);
6736 defsubr (&Sdelete_file
);
6737 defsubr (&Srename_file
);
6738 defsubr (&Sadd_name_to_file
);
6740 defsubr (&Smake_symbolic_link
);
6741 #endif /* S_IFLNK */
6743 defsubr (&Sdefine_logical_name
);
6746 defsubr (&Ssysnetunam
);
6747 #endif /* HPUX_NET */
6748 defsubr (&Sfile_name_absolute_p
);
6749 defsubr (&Sfile_exists_p
);
6750 defsubr (&Sfile_executable_p
);
6751 defsubr (&Sfile_readable_p
);
6752 defsubr (&Sfile_writable_p
);
6753 defsubr (&Saccess_file
);
6754 defsubr (&Sfile_symlink_p
);
6755 defsubr (&Sfile_directory_p
);
6756 defsubr (&Sfile_accessible_directory_p
);
6757 defsubr (&Sfile_regular_p
);
6758 defsubr (&Sfile_modes
);
6759 defsubr (&Sset_file_modes
);
6760 defsubr (&Sset_file_times
);
6761 defsubr (&Sset_default_file_modes
);
6762 defsubr (&Sdefault_file_modes
);
6763 defsubr (&Sfile_newer_than_file_p
);
6764 defsubr (&Sinsert_file_contents
);
6765 defsubr (&Swrite_region
);
6766 defsubr (&Scar_less_than_car
);
6767 defsubr (&Sverify_visited_file_modtime
);
6768 defsubr (&Sclear_visited_file_modtime
);
6769 defsubr (&Svisited_file_modtime
);
6770 defsubr (&Sset_visited_file_modtime
);
6771 defsubr (&Sdo_auto_save
);
6772 defsubr (&Sset_buffer_auto_saved
);
6773 defsubr (&Sclear_buffer_auto_save_failure
);
6774 defsubr (&Srecent_auto_save_p
);
6776 defsubr (&Sread_file_name_internal
);
6777 defsubr (&Sread_file_name
);
6778 defsubr (&Snext_read_file_uses_dialog_p
);
6781 defsubr (&Sunix_sync
);
6785 /* arch-tag: 64ba3fd7-f844-4fb2-ba4b-427eb928786c
6786 (do not change this comment) */