1 /* File IO for GNU Emacs.
2 Copyright (C) 1985,86,87,88,93,94,95,96,1997 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
23 #if defined (USG5) || defined (BSD_SYSTEM) || defined (LINUX)
28 #include <sys/types.h>
35 #if !defined (S_ISLNK) && defined (S_IFLNK)
36 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
39 #if !defined (S_ISFIFO) && defined (S_IFIFO)
40 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO)
43 #if !defined (S_ISREG) && defined (S_IFREG)
44 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
55 #include <sys/param.h>
77 extern char *strerror ();
94 #include "intervals.h"
105 #endif /* not WINDOWSNT */
108 #define CORRECT_DIR_SEPS(s) \
109 do { if ('/' == DIRECTORY_SEP) dostounix_filename (s); \
110 else unixtodos_filename (s); \
112 /* On Windows, drive letters must be alphabetic - on DOS, the Netware
113 redirector allows the six letters between 'Z' and 'a' as well. */
115 #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z')
118 #define IS_DRIVE(x) isalpha (x)
120 /* Need to lower-case the drive letter, or else expanded
121 filenames will sometimes compare inequal, because
122 `expand-file-name' doesn't always down-case the drive letter. */
123 #define DRIVE_LETTER(x) (tolower (x))
152 #define min(a, b) ((a) < (b) ? (a) : (b))
153 #define max(a, b) ((a) > (b) ? (a) : (b))
155 /* Nonzero during writing of auto-save files */
158 /* Set by auto_save_1 to mode of original file so Fwrite_region will create
159 a new file with the same mode as the original */
160 int auto_save_mode_bits
;
162 /* Alist of elements (REGEXP . HANDLER) for file names
163 whose I/O is done with a special handler. */
164 Lisp_Object Vfile_name_handler_alist
;
166 /* Format for auto-save files */
167 Lisp_Object Vauto_save_file_format
;
169 /* Lisp functions for translating file formats */
170 Lisp_Object Qformat_decode
, Qformat_annotate_function
;
172 /* Functions to be called to process text properties in inserted file. */
173 Lisp_Object Vafter_insert_file_functions
;
175 /* Functions to be called to create text property annotations for file. */
176 Lisp_Object Vwrite_region_annotate_functions
;
178 /* During build_annotations, each time an annotation function is called,
179 this holds the annotations made by the previous functions. */
180 Lisp_Object Vwrite_region_annotations_so_far
;
182 /* File name in which we write a list of all our auto save files. */
183 Lisp_Object Vauto_save_list_file_name
;
185 /* Nonzero means, when reading a filename in the minibuffer,
186 start out by inserting the default directory into the minibuffer. */
187 int insert_default_directory
;
189 /* On VMS, nonzero means write new files with record format stmlf.
190 Zero means use var format. */
193 /* On NT, specifies the directory separator character, used (eg.) when
194 expanding file names. This can be bound to / or \. */
195 Lisp_Object Vdirectory_sep_char
;
197 extern Lisp_Object Vuser_login_name
;
199 extern int minibuf_level
;
201 /* These variables describe handlers that have "already" had a chance
202 to handle the current operation.
204 Vinhibit_file_name_handlers is a list of file name handlers.
205 Vinhibit_file_name_operation is the operation being handled.
206 If we try to handle that operation, we ignore those handlers. */
208 static Lisp_Object Vinhibit_file_name_handlers
;
209 static Lisp_Object Vinhibit_file_name_operation
;
211 Lisp_Object Qfile_error
, Qfile_already_exists
, Qfile_date_error
;
213 Lisp_Object Qfile_name_history
;
215 Lisp_Object Qcar_less_than_car
;
217 report_file_error (string
, data
)
221 Lisp_Object errstring
;
223 errstring
= build_string (strerror (errno
));
225 /* System error messages are capitalized. Downcase the initial
226 unless it is followed by a slash. */
227 if (XSTRING (errstring
)->data
[1] != '/')
228 XSTRING (errstring
)->data
[0] = DOWNCASE (XSTRING (errstring
)->data
[0]);
231 Fsignal (Qfile_error
,
232 Fcons (build_string (string
), Fcons (errstring
, data
)));
235 close_file_unwind (fd
)
238 close (XFASTINT (fd
));
241 /* Restore point, having saved it as a marker. */
243 restore_point_unwind (location
)
244 Lisp_Object location
;
246 SET_PT (marker_position (location
));
247 Fset_marker (location
, Qnil
, Qnil
);
250 Lisp_Object Qexpand_file_name
;
251 Lisp_Object Qsubstitute_in_file_name
;
252 Lisp_Object Qdirectory_file_name
;
253 Lisp_Object Qfile_name_directory
;
254 Lisp_Object Qfile_name_nondirectory
;
255 Lisp_Object Qunhandled_file_name_directory
;
256 Lisp_Object Qfile_name_as_directory
;
257 Lisp_Object Qcopy_file
;
258 Lisp_Object Qmake_directory_internal
;
259 Lisp_Object Qdelete_directory
;
260 Lisp_Object Qdelete_file
;
261 Lisp_Object Qrename_file
;
262 Lisp_Object Qadd_name_to_file
;
263 Lisp_Object Qmake_symbolic_link
;
264 Lisp_Object Qfile_exists_p
;
265 Lisp_Object Qfile_executable_p
;
266 Lisp_Object Qfile_readable_p
;
267 Lisp_Object Qfile_writable_p
;
268 Lisp_Object Qfile_symlink_p
;
269 Lisp_Object Qaccess_file
;
270 Lisp_Object Qfile_directory_p
;
271 Lisp_Object Qfile_regular_p
;
272 Lisp_Object Qfile_accessible_directory_p
;
273 Lisp_Object Qfile_modes
;
274 Lisp_Object Qset_file_modes
;
275 Lisp_Object Qfile_newer_than_file_p
;
276 Lisp_Object Qinsert_file_contents
;
277 Lisp_Object Qwrite_region
;
278 Lisp_Object Qverify_visited_file_modtime
;
279 Lisp_Object Qset_visited_file_modtime
;
281 DEFUN ("find-file-name-handler", Ffind_file_name_handler
, Sfind_file_name_handler
, 2, 2, 0,
282 "Return FILENAME's handler function for OPERATION, if it has one.\n\
283 Otherwise, return nil.\n\
284 A file name is handled if one of the regular expressions in\n\
285 `file-name-handler-alist' matches it.\n\n\
286 If OPERATION equals `inhibit-file-name-operation', then we ignore\n\
287 any handlers that are members of `inhibit-file-name-handlers',\n\
288 but we still do run any other handlers. This lets handlers\n\
289 use the standard functions without calling themselves recursively.")
290 (filename
, operation
)
291 Lisp_Object filename
, operation
;
293 /* This function must not munge the match data. */
294 Lisp_Object chain
, inhibited_handlers
;
296 CHECK_STRING (filename
, 0);
298 if (EQ (operation
, Vinhibit_file_name_operation
))
299 inhibited_handlers
= Vinhibit_file_name_handlers
;
301 inhibited_handlers
= Qnil
;
303 for (chain
= Vfile_name_handler_alist
; CONSP (chain
);
304 chain
= XCONS (chain
)->cdr
)
307 elt
= XCONS (chain
)->car
;
311 string
= XCONS (elt
)->car
;
312 if (STRINGP (string
) && fast_string_match (string
, filename
) >= 0)
314 Lisp_Object handler
, tem
;
316 handler
= XCONS (elt
)->cdr
;
317 tem
= Fmemq (handler
, inhibited_handlers
);
328 DEFUN ("file-name-directory", Ffile_name_directory
, Sfile_name_directory
,
330 "Return the directory component in file name FILENAME.\n\
331 Return nil if FILENAME does not include a directory.\n\
332 Otherwise return a directory spec.\n\
333 Given a Unix syntax file name, returns a string ending in slash;\n\
334 on VMS, perhaps instead a string ending in `:', `]' or `>'.")
336 Lisp_Object filename
;
338 register unsigned char *beg
;
339 register unsigned char *p
;
342 CHECK_STRING (filename
, 0);
344 /* If the file name has special constructs in it,
345 call the corresponding file handler. */
346 handler
= Ffind_file_name_handler (filename
, Qfile_name_directory
);
348 return call2 (handler
, Qfile_name_directory
, filename
);
350 #ifdef FILE_SYSTEM_CASE
351 filename
= FILE_SYSTEM_CASE (filename
);
353 beg
= XSTRING (filename
)->data
;
355 beg
= strcpy (alloca (strlen (beg
) + 1), beg
);
357 p
= beg
+ XSTRING (filename
)->size
;
359 while (p
!= beg
&& !IS_DIRECTORY_SEP (p
[-1])
361 && p
[-1] != ':' && p
[-1] != ']' && p
[-1] != '>'
364 /* only recognise drive specifier at beginning */
365 && !(p
[-1] == ':' && p
== beg
+ 2)
372 /* Expansion of "c:" to drive and default directory. */
373 if (p
== beg
+ 2 && beg
[1] == ':')
375 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
376 unsigned char *res
= alloca (MAXPATHLEN
+ 1);
377 if (getdefdir (toupper (*beg
) - 'A' + 1, res
))
379 if (!IS_DIRECTORY_SEP (res
[strlen (res
) - 1]))
382 p
= beg
+ strlen (beg
);
385 CORRECT_DIR_SEPS (beg
);
387 return make_string (beg
, p
- beg
);
390 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory
, Sfile_name_nondirectory
,
392 "Return file name FILENAME sans its directory.\n\
393 For example, in a Unix-syntax file name,\n\
394 this is everything after the last slash,\n\
395 or the entire name if it contains no slash.")
397 Lisp_Object filename
;
399 register unsigned char *beg
, *p
, *end
;
402 CHECK_STRING (filename
, 0);
404 /* If the file name has special constructs in it,
405 call the corresponding file handler. */
406 handler
= Ffind_file_name_handler (filename
, Qfile_name_nondirectory
);
408 return call2 (handler
, Qfile_name_nondirectory
, filename
);
410 beg
= XSTRING (filename
)->data
;
411 end
= p
= beg
+ XSTRING (filename
)->size
;
413 while (p
!= beg
&& !IS_DIRECTORY_SEP (p
[-1])
415 && p
[-1] != ':' && p
[-1] != ']' && p
[-1] != '>'
418 /* only recognise drive specifier at beginning */
419 && !(p
[-1] == ':' && p
== beg
+ 2)
423 return make_string (p
, end
- p
);
426 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory
, Sunhandled_file_name_directory
, 1, 1, 0,
427 "Return a directly usable directory name somehow associated with FILENAME.\n\
428 A `directly usable' directory name is one that may be used without the\n\
429 intervention of any file handler.\n\
430 If FILENAME is a directly usable file itself, return\n\
431 (file-name-directory FILENAME).\n\
432 The `call-process' and `start-process' functions use this function to\n\
433 get a current directory to run processes in.")
435 Lisp_Object filename
;
439 /* If the file name has special constructs in it,
440 call the corresponding file handler. */
441 handler
= Ffind_file_name_handler (filename
, Qunhandled_file_name_directory
);
443 return call2 (handler
, Qunhandled_file_name_directory
, filename
);
445 return Ffile_name_directory (filename
);
450 file_name_as_directory (out
, in
)
453 int size
= strlen (in
) - 1;
458 /* Is it already a directory string? */
459 if (in
[size
] == ':' || in
[size
] == ']' || in
[size
] == '>')
461 /* Is it a VMS directory file name? If so, hack VMS syntax. */
462 else if (! index (in
, '/')
463 && ((size
> 3 && ! strcmp (&in
[size
- 3], ".DIR"))
464 || (size
> 3 && ! strcmp (&in
[size
- 3], ".dir"))
465 || (size
> 5 && (! strncmp (&in
[size
- 5], ".DIR", 4)
466 || ! strncmp (&in
[size
- 5], ".dir", 4))
467 && (in
[size
- 1] == '.' || in
[size
- 1] == ';')
468 && in
[size
] == '1')))
470 register char *p
, *dot
;
474 dir:x.dir --> dir:[x]
475 dir:[x]y.dir --> dir:[x.y] */
477 while (p
!= in
&& *p
!= ':' && *p
!= '>' && *p
!= ']') p
--;
480 strncpy (out
, in
, p
- in
);
499 dot
= index (p
, '.');
502 /* blindly remove any extension */
503 size
= strlen (out
) + (dot
- p
);
504 strncat (out
, p
, dot
- p
);
515 /* For Unix syntax, Append a slash if necessary */
516 if (!IS_DIRECTORY_SEP (out
[size
]))
518 out
[size
+ 1] = DIRECTORY_SEP
;
519 out
[size
+ 2] = '\0';
522 CORRECT_DIR_SEPS (out
);
528 DEFUN ("file-name-as-directory", Ffile_name_as_directory
,
529 Sfile_name_as_directory
, 1, 1, 0,
530 "Return a string representing file FILENAME interpreted as a directory.\n\
531 This operation exists because a directory is also a file, but its name as\n\
532 a directory is different from its name as a file.\n\
533 The result can be used as the value of `default-directory'\n\
534 or passed as second argument to `expand-file-name'.\n\
535 For a Unix-syntax file name, just appends a slash.\n\
536 On VMS, converts \"[X]FOO.DIR\" to \"[X.FOO]\", etc.")
543 CHECK_STRING (file
, 0);
547 /* If the file name has special constructs in it,
548 call the corresponding file handler. */
549 handler
= Ffind_file_name_handler (file
, Qfile_name_as_directory
);
551 return call2 (handler
, Qfile_name_as_directory
, file
);
553 buf
= (char *) alloca (XSTRING (file
)->size
+ 10);
554 return build_string (file_name_as_directory (buf
, XSTRING (file
)->data
));
558 * Convert from directory name to filename.
560 * xyzzy:[mukesh.emacs] => xyzzy:[mukesh]emacs.dir.1
561 * xyzzy:[mukesh] => xyzzy:[000000]mukesh.dir.1
562 * On UNIX, it's simple: just make sure there isn't a terminating /
564 * Value is nonzero if the string output is different from the input.
567 directory_file_name (src
, dst
)
575 struct FAB fab
= cc$rms_fab
;
576 struct NAM nam
= cc$rms_nam
;
577 char esa
[NAM$C_MAXRSS
];
582 if (! index (src
, '/')
583 && (src
[slen
- 1] == ']'
584 || src
[slen
- 1] == ':'
585 || src
[slen
- 1] == '>'))
587 /* VMS style - convert [x.y.z] to [x.y]z, [x] to [000000]x */
589 fab
.fab$b_fns
= slen
;
590 fab
.fab$l_nam
= &nam
;
591 fab
.fab$l_fop
= FAB$M_NAM
;
594 nam
.nam$b_ess
= sizeof esa
;
595 nam
.nam$b_nop
|= NAM$M_SYNCHK
;
597 /* We call SYS$PARSE to handle such things as [--] for us. */
598 if (SYS$
PARSE (&fab
, 0, 0) == RMS$_NORMAL
)
600 slen
= nam
.nam$b_esl
;
601 if (esa
[slen
- 1] == ';' && esa
[slen
- 2] == '.')
606 if (src
[slen
- 1] != ']' && src
[slen
- 1] != '>')
608 /* what about when we have logical_name:???? */
609 if (src
[slen
- 1] == ':')
610 { /* Xlate logical name and see what we get */
611 ptr
= strcpy (dst
, src
); /* upper case for getenv */
614 if ('a' <= *ptr
&& *ptr
<= 'z')
618 dst
[slen
- 1] = 0; /* remove colon */
619 if (!(src
= egetenv (dst
)))
621 /* should we jump to the beginning of this procedure?
622 Good points: allows us to use logical names that xlate
624 Bad points: can be a problem if we just translated to a device
626 For now, I'll punt and always expect VMS names, and hope for
629 if (src
[slen
- 1] != ']' && src
[slen
- 1] != '>')
630 { /* no recursion here! */
636 { /* not a directory spec */
641 bracket
= src
[slen
- 1];
643 /* If bracket is ']' or '>', bracket - 2 is the corresponding
645 ptr
= index (src
, bracket
- 2);
647 { /* no opening bracket */
651 if (!(rptr
= rindex (src
, '.')))
654 strncpy (dst
, src
, slen
);
658 dst
[slen
++] = bracket
;
663 /* If we have the top-level of a rooted directory (i.e. xx:[000000]),
664 then translate the device and recurse. */
665 if (dst
[slen
- 1] == ':'
666 && dst
[slen
- 2] != ':' /* skip decnet nodes */
667 && strcmp (src
+ slen
, "[000000]") == 0)
669 dst
[slen
- 1] = '\0';
670 if ((ptr
= egetenv (dst
))
671 && (rlen
= strlen (ptr
) - 1) > 0
672 && (ptr
[rlen
] == ']' || ptr
[rlen
] == '>')
673 && ptr
[rlen
- 1] == '.')
675 char * buf
= (char *) alloca (strlen (ptr
) + 1);
679 return directory_file_name (buf
, dst
);
684 strcat (dst
, "[000000]");
688 rlen
= strlen (rptr
) - 1;
689 strncat (dst
, rptr
, rlen
);
690 dst
[slen
+ rlen
] = '\0';
691 strcat (dst
, ".DIR.1");
695 /* Process as Unix format: just remove any final slash.
696 But leave "/" unchanged; do not change it to "". */
699 /* Handle // as root for apollo's. */
700 if ((slen
> 2 && dst
[slen
- 1] == '/')
701 || (slen
> 1 && dst
[0] != '/' && dst
[slen
- 1] == '/'))
705 && IS_DIRECTORY_SEP (dst
[slen
- 1])
707 && !IS_ANY_SEP (dst
[slen
- 2])
713 CORRECT_DIR_SEPS (dst
);
718 DEFUN ("directory-file-name", Fdirectory_file_name
, Sdirectory_file_name
,
720 "Returns the file name of the directory named DIRECTORY.\n\
721 This is the name of the file that holds the data for the directory DIRECTORY.\n\
722 This operation exists because a directory is also a file, but its name as\n\
723 a directory is different from its name as a file.\n\
724 In Unix-syntax, this function just removes the final slash.\n\
725 On VMS, given a VMS-syntax directory name such as \"[X.Y]\",\n\
726 it returns a file name such as \"[X]Y.DIR.1\".")
728 Lisp_Object directory
;
733 CHECK_STRING (directory
, 0);
735 if (NILP (directory
))
738 /* If the file name has special constructs in it,
739 call the corresponding file handler. */
740 handler
= Ffind_file_name_handler (directory
, Qdirectory_file_name
);
742 return call2 (handler
, Qdirectory_file_name
, directory
);
745 /* 20 extra chars is insufficient for VMS, since we might perform a
746 logical name translation. an equivalence string can be up to 255
747 chars long, so grab that much extra space... - sss */
748 buf
= (char *) alloca (XSTRING (directory
)->size
+ 20 + 255);
750 buf
= (char *) alloca (XSTRING (directory
)->size
+ 20);
752 directory_file_name (XSTRING (directory
)->data
, buf
);
753 return build_string (buf
);
756 DEFUN ("make-temp-name", Fmake_temp_name
, Smake_temp_name
, 1, 1, 0,
757 "Generate temporary file name (string) starting with PREFIX (a string).\n\
758 The Emacs process number forms part of the result,\n\
759 so there is no danger of generating a name being used by another process.")
765 /* Don't use too many characters of the restricted 8+3 DOS
767 val
= concat2 (prefix
, build_string ("a.XXX"));
769 val
= concat2 (prefix
, build_string ("XXXXXX"));
771 mktemp (XSTRING (val
)->data
);
773 CORRECT_DIR_SEPS (XSTRING (val
)->data
);
778 DEFUN ("expand-file-name", Fexpand_file_name
, Sexpand_file_name
, 1, 2, 0,
779 "Convert filename NAME to absolute, and canonicalize it.\n\
780 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative\n\
781 (does not start with slash); if DEFAULT-DIRECTORY is nil or missing,\n\
782 the current buffer's value of default-directory is used.\n\
783 File name components that are `.' are removed, and \n\
784 so are file name components followed by `..', along with the `..' itself;\n\
785 note that these simplifications are done without checking the resulting\n\
786 file names in the file system.\n\
787 An initial `~/' expands to your home directory.\n\
788 An initial `~USER/' expands to USER's home directory.\n\
789 See also the function `substitute-in-file-name'.")
790 (name
, default_directory
)
791 Lisp_Object name
, default_directory
;
795 register unsigned char *newdir
, *p
, *o
;
797 unsigned char *target
;
800 unsigned char * colon
= 0;
801 unsigned char * close
= 0;
802 unsigned char * slash
= 0;
803 unsigned char * brack
= 0;
804 int lbrack
= 0, rbrack
= 0;
809 int collapse_newdir
= 1;
814 CHECK_STRING (name
, 0);
816 /* If the file name has special constructs in it,
817 call the corresponding file handler. */
818 handler
= Ffind_file_name_handler (name
, Qexpand_file_name
);
820 return call3 (handler
, Qexpand_file_name
, name
, default_directory
);
822 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */
823 if (NILP (default_directory
))
824 default_directory
= current_buffer
->directory
;
825 CHECK_STRING (default_directory
, 1);
827 if (!NILP (default_directory
))
829 handler
= Ffind_file_name_handler (default_directory
, Qexpand_file_name
);
831 return call3 (handler
, Qexpand_file_name
, name
, default_directory
);
834 o
= XSTRING (default_directory
)->data
;
836 /* Make sure DEFAULT_DIRECTORY is properly expanded.
837 It would be better to do this down below where we actually use
838 default_directory. Unfortunately, calling Fexpand_file_name recursively
839 could invoke GC, and the strings might be relocated. This would
840 be annoying because we have pointers into strings lying around
841 that would need adjusting, and people would add new pointers to
842 the code and forget to adjust them, resulting in intermittent bugs.
843 Putting this call here avoids all that crud.
845 The EQ test avoids infinite recursion. */
846 if (! NILP (default_directory
) && !EQ (default_directory
, name
)
847 /* Save time in some common cases - as long as default_directory
848 is not relative, it can be canonicalized with name below (if it
849 is needed at all) without requiring it to be expanded now. */
851 /* Detect MSDOS file names with drive specifiers. */
852 && ! (IS_DRIVE (o
[0]) && (IS_DEVICE_SEP (o
[1]) && IS_DIRECTORY_SEP (o
[2])))
854 /* Detect Windows file names in UNC format. */
855 && ! (IS_DIRECTORY_SEP (o
[0]) && IS_DIRECTORY_SEP (o
[1]))
857 #else /* not DOS_NT */
858 /* Detect Unix absolute file names (/... alone is not absolute on
860 && ! (IS_DIRECTORY_SEP (o
[0]))
861 #endif /* not DOS_NT */
867 default_directory
= Fexpand_file_name (default_directory
, Qnil
);
872 /* Filenames on VMS are always upper case. */
873 name
= Fupcase (name
);
875 #ifdef FILE_SYSTEM_CASE
876 name
= FILE_SYSTEM_CASE (name
);
879 nm
= XSTRING (name
)->data
;
882 /* We will force directory separators to be either all \ or /, so make
883 a local copy to modify, even if there ends up being no change. */
884 nm
= strcpy (alloca (strlen (nm
) + 1), nm
);
886 /* Find and remove drive specifier if present; this makes nm absolute
887 even if the rest of the name appears to be relative. */
889 unsigned char *colon
= rindex (nm
, ':');
892 /* Only recognize colon as part of drive specifier if there is a
893 single alphabetic character preceeding the colon (and if the
894 character before the drive letter, if present, is a directory
895 separator); this is to support the remote system syntax used by
896 ange-ftp, and the "po:username" syntax for POP mailboxes. */
900 else if (IS_DRIVE (colon
[-1])
901 && (colon
== nm
+ 1 || IS_DIRECTORY_SEP (colon
[-2])))
908 while (--colon
>= nm
)
916 /* Discard any previous drive specifier if nm is now in UNC format. */
917 if (IS_DIRECTORY_SEP (nm
[0]) && IS_DIRECTORY_SEP (nm
[1]))
923 /* If nm is absolute, look for /./ or /../ sequences; if none are
924 found, we can probably return right away. We will avoid allocating
925 a new string if name is already fully expanded. */
927 IS_DIRECTORY_SEP (nm
[0])
932 && (drive
|| IS_DIRECTORY_SEP (nm
[1]))
939 /* If it turns out that the filename we want to return is just a
940 suffix of FILENAME, we don't need to go through and edit
941 things; we just need to construct a new string using data
942 starting at the middle of FILENAME. If we set lose to a
943 non-zero value, that means we've discovered that we can't do
950 /* Since we know the name is absolute, we can assume that each
951 element starts with a "/". */
953 /* "." and ".." are hairy. */
954 if (IS_DIRECTORY_SEP (p
[0])
956 && (IS_DIRECTORY_SEP (p
[2])
958 || (p
[2] == '.' && (IS_DIRECTORY_SEP (p
[3])
965 /* if dev:[dir]/, move nm to / */
966 if (!slash
&& p
> nm
&& (brack
|| colon
)) {
967 nm
= (brack
? brack
+ 1 : colon
+ 1);
976 /* VMS pre V4.4,convert '-'s in filenames. */
977 if (lbrack
== rbrack
)
979 if (dots
< 2) /* this is to allow negative version numbers */
984 if (lbrack
> rbrack
&&
985 ((p
[-1] == '.' || p
[-1] == '[' || p
[-1] == '<') &&
986 (p
[1] == '.' || p
[1] == ']' || p
[1] == '>')))
992 /* count open brackets, reset close bracket pointer */
993 if (p
[0] == '[' || p
[0] == '<')
995 /* count close brackets, set close bracket pointer */
996 if (p
[0] == ']' || p
[0] == '>')
998 /* detect ][ or >< */
999 if ((p
[0] == ']' || p
[0] == '>') && (p
[1] == '[' || p
[1] == '<'))
1001 if ((p
[0] == ':' || p
[0] == ']' || p
[0] == '>') && p
[1] == '~')
1002 nm
= p
+ 1, lose
= 1;
1003 if (p
[0] == ':' && (colon
|| slash
))
1004 /* if dev1:[dir]dev2:, move nm to dev2: */
1010 /* if /name/dev:, move nm to dev: */
1013 /* if node::dev:, move colon following dev */
1014 else if (colon
&& colon
[-1] == ':')
1016 /* if dev1:dev2:, move nm to dev2: */
1017 else if (colon
&& colon
[-1] != ':')
1022 if (p
[0] == ':' && !colon
)
1028 if (lbrack
== rbrack
)
1031 else if (p
[0] == '.')
1039 if (index (nm
, '/'))
1040 return build_string (sys_translate_unix (nm
));
1043 /* Make sure directories are all separated with / or \ as
1044 desired, but avoid allocation of a new string when not
1046 CORRECT_DIR_SEPS (nm
);
1048 if (IS_DIRECTORY_SEP (nm
[1]))
1050 if (strcmp (nm
, XSTRING (name
)->data
) != 0)
1051 name
= build_string (nm
);
1055 /* drive must be set, so this is okay */
1056 if (strcmp (nm
- 2, XSTRING (name
)->data
) != 0)
1058 name
= make_string (nm
- 2, p
- nm
+ 2);
1059 XSTRING (name
)->data
[0] = DRIVE_LETTER (drive
);
1060 XSTRING (name
)->data
[1] = ':';
1063 #else /* not DOS_NT */
1064 if (nm
== XSTRING (name
)->data
)
1066 return build_string (nm
);
1067 #endif /* not DOS_NT */
1071 /* At this point, nm might or might not be an absolute file name. We
1072 need to expand ~ or ~user if present, otherwise prefix nm with
1073 default_directory if nm is not absolute, and finally collapse /./
1074 and /foo/../ sequences.
1076 We set newdir to be the appropriate prefix if one is needed:
1077 - the relevant user directory if nm starts with ~ or ~user
1078 - the specified drive's working dir (DOS/NT only) if nm does not
1080 - the value of default_directory.
1082 Note that these prefixes are not guaranteed to be absolute (except
1083 for the working dir of a drive). Therefore, to ensure we always
1084 return an absolute name, if the final prefix is not absolute we
1085 append it to the current working directory. */
1089 if (nm
[0] == '~') /* prefix ~ */
1091 if (IS_DIRECTORY_SEP (nm
[1])
1095 || nm
[1] == 0) /* ~ by itself */
1097 if (!(newdir
= (unsigned char *) egetenv ("HOME")))
1098 newdir
= (unsigned char *) "";
1101 collapse_newdir
= 0;
1104 nm
++; /* Don't leave the slash in nm. */
1107 else /* ~user/filename */
1109 for (p
= nm
; *p
&& (!IS_DIRECTORY_SEP (*p
)
1114 o
= (unsigned char *) alloca (p
- nm
+ 1);
1115 bcopy ((char *) nm
, o
, p
- nm
);
1118 pw
= (struct passwd
*) getpwnam (o
+ 1);
1121 newdir
= (unsigned char *) pw
-> pw_dir
;
1123 nm
= p
+ 1; /* skip the terminator */
1127 collapse_newdir
= 0;
1132 /* If we don't find a user of that name, leave the name
1133 unchanged; don't move nm forward to p. */
1138 /* On DOS and Windows, nm is absolute if a drive name was specified;
1139 use the drive's current directory as the prefix if needed. */
1140 if (!newdir
&& drive
)
1142 /* Get default directory if needed to make nm absolute. */
1143 if (!IS_DIRECTORY_SEP (nm
[0]))
1145 newdir
= alloca (MAXPATHLEN
+ 1);
1146 if (!getdefdir (toupper (drive
) - 'A' + 1, newdir
))
1151 /* Either nm starts with /, or drive isn't mounted. */
1152 newdir
= alloca (4);
1153 newdir
[0] = DRIVE_LETTER (drive
);
1161 /* Finally, if no prefix has been specified and nm is not absolute,
1162 then it must be expanded relative to default_directory. */
1166 /* /... alone is not absolute on DOS and Windows. */
1167 && !IS_DIRECTORY_SEP (nm
[0])
1170 && !(IS_DIRECTORY_SEP (nm
[0]) && IS_DIRECTORY_SEP (nm
[1]))
1177 newdir
= XSTRING (default_directory
)->data
;
1183 /* First ensure newdir is an absolute name. */
1185 /* Detect MSDOS file names with drive specifiers. */
1186 ! (IS_DRIVE (newdir
[0])
1187 && IS_DEVICE_SEP (newdir
[1]) && IS_DIRECTORY_SEP (newdir
[2]))
1189 /* Detect Windows file names in UNC format. */
1190 && ! (IS_DIRECTORY_SEP (newdir
[0]) && IS_DIRECTORY_SEP (newdir
[1]))
1194 /* Effectively, let newdir be (expand-file-name newdir cwd).
1195 Because of the admonition against calling expand-file-name
1196 when we have pointers into lisp strings, we accomplish this
1197 indirectly by prepending newdir to nm if necessary, and using
1198 cwd (or the wd of newdir's drive) as the new newdir. */
1200 if (IS_DRIVE (newdir
[0]) && newdir
[1] == ':')
1205 if (!IS_DIRECTORY_SEP (nm
[0]))
1207 char * tmp
= alloca (strlen (newdir
) + strlen (nm
) + 2);
1208 file_name_as_directory (tmp
, newdir
);
1212 newdir
= alloca (MAXPATHLEN
+ 1);
1215 if (!getdefdir (toupper (drive
) - 'A' + 1, newdir
))
1222 /* Strip off drive name from prefix, if present. */
1223 if (IS_DRIVE (newdir
[0]) && newdir
[1] == ':')
1229 /* Keep only a prefix from newdir if nm starts with slash
1230 (//server/share for UNC, nothing otherwise). */
1231 if (IS_DIRECTORY_SEP (nm
[0]) && collapse_newdir
)
1234 if (IS_DIRECTORY_SEP (newdir
[0]) && IS_DIRECTORY_SEP (newdir
[1]))
1236 newdir
= strcpy (alloca (strlen (newdir
) + 1), newdir
);
1238 while (*p
&& !IS_DIRECTORY_SEP (*p
)) p
++;
1240 while (*p
&& !IS_DIRECTORY_SEP (*p
)) p
++;
1252 /* Get rid of any slash at the end of newdir, unless newdir is
1253 just // (an incomplete UNC name). */
1254 length
= strlen (newdir
);
1255 if (length
> 0 && IS_DIRECTORY_SEP (newdir
[length
- 1])
1257 && !(length
== 2 && IS_DIRECTORY_SEP (newdir
[0]))
1261 unsigned char *temp
= (unsigned char *) alloca (length
);
1262 bcopy (newdir
, temp
, length
- 1);
1263 temp
[length
- 1] = 0;
1271 /* Now concatenate the directory and name to new space in the stack frame */
1272 tlen
+= strlen (nm
) + 1;
1274 /* Add reserved space for drive name. (The Microsoft x86 compiler
1275 produces incorrect code if the following two lines are combined.) */
1276 target
= (unsigned char *) alloca (tlen
+ 2);
1278 #else /* not DOS_NT */
1279 target
= (unsigned char *) alloca (tlen
);
1280 #endif /* not DOS_NT */
1286 if (nm
[0] == 0 || IS_DIRECTORY_SEP (nm
[0]))
1287 strcpy (target
, newdir
);
1290 file_name_as_directory (target
, newdir
);
1293 strcat (target
, nm
);
1295 if (index (target
, '/'))
1296 strcpy (target
, sys_translate_unix (target
));
1299 /* ASSERT (IS_DIRECTORY_SEP (target[0])) if not VMS */
1301 /* Now canonicalize by removing /. and /foo/.. if they appear. */
1309 if (*p
!= ']' && *p
!= '>' && *p
!= '-')
1315 else if ((p
[0] == ']' || p
[0] == '>') && p
[0] == p
[1] + 2)
1316 /* brackets are offset from each other by 2 */
1319 if (*p
!= '.' && *p
!= '-' && o
[-1] != '.')
1320 /* convert [foo][bar] to [bar] */
1321 while (o
[-1] != '[' && o
[-1] != '<')
1323 else if (*p
== '-' && *o
!= '.')
1326 else if (p
[0] == '-' && o
[-1] == '.' &&
1327 (p
[1] == '.' || p
[1] == ']' || p
[1] == '>'))
1328 /* flush .foo.- ; leave - if stopped by '[' or '<' */
1332 while (o
[-1] != '.' && o
[-1] != '[' && o
[-1] != '<');
1333 if (p
[1] == '.') /* foo.-.bar ==> bar. */
1335 else if (o
[-1] == '.') /* '.foo.-]' ==> ']' */
1337 /* else [foo.-] ==> [-] */
1343 o
[-1] != '[' && o
[-1] != '<' && o
[-1] != '.' &&
1344 p
[1] != ']' && p
[1] != '>' && p
[1] != '.')
1350 if (!IS_DIRECTORY_SEP (*p
))
1354 else if (IS_DIRECTORY_SEP (p
[0]) && IS_DIRECTORY_SEP (p
[1])
1355 #if defined (APOLLO) || defined (WINDOWSNT)
1356 /* // at start of filename is meaningful in Apollo
1357 and WindowsNT systems */
1359 #endif /* APOLLO || WINDOWSNT */
1365 else if (IS_DIRECTORY_SEP (p
[0])
1367 && (IS_DIRECTORY_SEP (p
[2])
1370 /* If "/." is the entire filename, keep the "/". Otherwise,
1371 just delete the whole "/.". */
1372 if (o
== target
&& p
[2] == '\0')
1376 else if (IS_DIRECTORY_SEP (p
[0]) && p
[1] == '.' && p
[2] == '.'
1377 /* `/../' is the "superroot" on certain file systems. */
1379 && (IS_DIRECTORY_SEP (p
[3]) || p
[3] == 0))
1381 while (o
!= target
&& (--o
) && !IS_DIRECTORY_SEP (*o
))
1383 /* Keep initial / only if this is the whole name. */
1384 if (o
== target
&& IS_ANY_SEP (*o
) && p
[3] == 0)
1392 #endif /* not VMS */
1396 /* At last, set drive name. */
1398 /* Except for network file name. */
1399 if (!(IS_DIRECTORY_SEP (target
[0]) && IS_DIRECTORY_SEP (target
[1])))
1400 #endif /* WINDOWSNT */
1402 if (!drive
) abort ();
1404 target
[0] = DRIVE_LETTER (drive
);
1407 CORRECT_DIR_SEPS (target
);
1410 return make_string (target
, o
- target
);
1414 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */
1415 DEAFUN ("expand-file-name", Fexpand_file_name
, Sexpand_file_name
, 1, 2, 0,
1416 "Convert FILENAME to absolute, and canonicalize it.\n\
1417 Second arg DEFAULT is directory to start with if FILENAME is relative\n\
1418 (does not start with slash); if DEFAULT is nil or missing,\n\
1419 the current buffer's value of default-directory is used.\n\
1420 Filenames containing `.' or `..' as components are simplified;\n\
1421 initial `~/' expands to your home directory.\n\
1422 See also the function `substitute-in-file-name'.")
1424 Lisp_Object name
, defalt
;
1428 register unsigned char *newdir
, *p
, *o
;
1430 unsigned char *target
;
1434 unsigned char * colon
= 0;
1435 unsigned char * close
= 0;
1436 unsigned char * slash
= 0;
1437 unsigned char * brack
= 0;
1438 int lbrack
= 0, rbrack
= 0;
1442 CHECK_STRING (name
, 0);
1445 /* Filenames on VMS are always upper case. */
1446 name
= Fupcase (name
);
1449 nm
= XSTRING (name
)->data
;
1451 /* If nm is absolute, flush ...// and detect /./ and /../.
1452 If no /./ or /../ we can return right away. */
1464 if (p
[0] == '/' && p
[1] == '/'
1466 /* // at start of filename is meaningful on Apollo system */
1471 if (p
[0] == '/' && p
[1] == '~')
1472 nm
= p
+ 1, lose
= 1;
1473 if (p
[0] == '/' && p
[1] == '.'
1474 && (p
[2] == '/' || p
[2] == 0
1475 || (p
[2] == '.' && (p
[3] == '/' || p
[3] == 0))))
1481 /* if dev:[dir]/, move nm to / */
1482 if (!slash
&& p
> nm
&& (brack
|| colon
)) {
1483 nm
= (brack
? brack
+ 1 : colon
+ 1);
1484 lbrack
= rbrack
= 0;
1492 /* VMS pre V4.4,convert '-'s in filenames. */
1493 if (lbrack
== rbrack
)
1495 if (dots
< 2) /* this is to allow negative version numbers */
1500 if (lbrack
> rbrack
&&
1501 ((p
[-1] == '.' || p
[-1] == '[' || p
[-1] == '<') &&
1502 (p
[1] == '.' || p
[1] == ']' || p
[1] == '>')))
1508 /* count open brackets, reset close bracket pointer */
1509 if (p
[0] == '[' || p
[0] == '<')
1510 lbrack
++, brack
= 0;
1511 /* count close brackets, set close bracket pointer */
1512 if (p
[0] == ']' || p
[0] == '>')
1513 rbrack
++, brack
= p
;
1514 /* detect ][ or >< */
1515 if ((p
[0] == ']' || p
[0] == '>') && (p
[1] == '[' || p
[1] == '<'))
1517 if ((p
[0] == ':' || p
[0] == ']' || p
[0] == '>') && p
[1] == '~')
1518 nm
= p
+ 1, lose
= 1;
1519 if (p
[0] == ':' && (colon
|| slash
))
1520 /* if dev1:[dir]dev2:, move nm to dev2: */
1526 /* If /name/dev:, move nm to dev: */
1529 /* If node::dev:, move colon following dev */
1530 else if (colon
&& colon
[-1] == ':')
1532 /* If dev1:dev2:, move nm to dev2: */
1533 else if (colon
&& colon
[-1] != ':')
1538 if (p
[0] == ':' && !colon
)
1544 if (lbrack
== rbrack
)
1547 else if (p
[0] == '.')
1555 if (index (nm
, '/'))
1556 return build_string (sys_translate_unix (nm
));
1558 if (nm
== XSTRING (name
)->data
)
1560 return build_string (nm
);
1564 /* Now determine directory to start with and put it in NEWDIR */
1568 if (nm
[0] == '~') /* prefix ~ */
1573 || nm
[1] == 0)/* ~/filename */
1575 if (!(newdir
= (unsigned char *) egetenv ("HOME")))
1576 newdir
= (unsigned char *) "";
1579 nm
++; /* Don't leave the slash in nm. */
1582 else /* ~user/filename */
1584 /* Get past ~ to user */
1585 unsigned char *user
= nm
+ 1;
1586 /* Find end of name. */
1587 unsigned char *ptr
= (unsigned char *) index (user
, '/');
1588 int len
= ptr
? ptr
- user
: strlen (user
);
1590 unsigned char *ptr1
= index (user
, ':');
1591 if (ptr1
!= 0 && ptr1
- user
< len
)
1594 /* Copy the user name into temp storage. */
1595 o
= (unsigned char *) alloca (len
+ 1);
1596 bcopy ((char *) user
, o
, len
);
1599 /* Look up the user name. */
1600 pw
= (struct passwd
*) getpwnam (o
+ 1);
1602 error ("\"%s\" isn't a registered user", o
+ 1);
1604 newdir
= (unsigned char *) pw
->pw_dir
;
1606 /* Discard the user name from NM. */
1613 #endif /* not VMS */
1617 defalt
= current_buffer
->directory
;
1618 CHECK_STRING (defalt
, 1);
1619 newdir
= XSTRING (defalt
)->data
;
1622 /* Now concatenate the directory and name to new space in the stack frame */
1624 tlen
= (newdir
? strlen (newdir
) + 1 : 0) + strlen (nm
) + 1;
1625 target
= (unsigned char *) alloca (tlen
);
1631 if (nm
[0] == 0 || nm
[0] == '/')
1632 strcpy (target
, newdir
);
1635 file_name_as_directory (target
, newdir
);
1638 strcat (target
, nm
);
1640 if (index (target
, '/'))
1641 strcpy (target
, sys_translate_unix (target
));
1644 /* Now canonicalize by removing /. and /foo/.. if they appear */
1652 if (*p
!= ']' && *p
!= '>' && *p
!= '-')
1658 else if ((p
[0] == ']' || p
[0] == '>') && p
[0] == p
[1] + 2)
1659 /* brackets are offset from each other by 2 */
1662 if (*p
!= '.' && *p
!= '-' && o
[-1] != '.')
1663 /* convert [foo][bar] to [bar] */
1664 while (o
[-1] != '[' && o
[-1] != '<')
1666 else if (*p
== '-' && *o
!= '.')
1669 else if (p
[0] == '-' && o
[-1] == '.' &&
1670 (p
[1] == '.' || p
[1] == ']' || p
[1] == '>'))
1671 /* flush .foo.- ; leave - if stopped by '[' or '<' */
1675 while (o
[-1] != '.' && o
[-1] != '[' && o
[-1] != '<');
1676 if (p
[1] == '.') /* foo.-.bar ==> bar. */
1678 else if (o
[-1] == '.') /* '.foo.-]' ==> ']' */
1680 /* else [foo.-] ==> [-] */
1686 o
[-1] != '[' && o
[-1] != '<' && o
[-1] != '.' &&
1687 p
[1] != ']' && p
[1] != '>' && p
[1] != '.')
1697 else if (!strncmp (p
, "//", 2)
1699 /* // at start of filename is meaningful in Apollo system */
1707 else if (p
[0] == '/' && p
[1] == '.' &&
1708 (p
[2] == '/' || p
[2] == 0))
1710 else if (!strncmp (p
, "/..", 3)
1711 /* `/../' is the "superroot" on certain file systems. */
1713 && (p
[3] == '/' || p
[3] == 0))
1715 while (o
!= target
&& *--o
!= '/')
1718 if (o
== target
+ 1 && o
[-1] == '/' && o
[0] == '/')
1722 if (o
== target
&& *o
== '/')
1730 #endif /* not VMS */
1733 return make_string (target
, o
- target
);
1737 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name
,
1738 Ssubstitute_in_file_name
, 1, 1, 0,
1739 "Substitute environment variables referred to in FILENAME.\n\
1740 `$FOO' where FOO is an environment variable name means to substitute\n\
1741 the value of that variable. The variable name should be terminated\n\
1742 with a character not a letter, digit or underscore; otherwise, enclose\n\
1743 the entire variable name in braces.\n\
1744 If `/~' appears, all of FILENAME through that `/' is discarded.\n\n\
1745 On VMS, `$' substitution is not done; this function does little and only\n\
1746 duplicates what `expand-file-name' does.")
1748 Lisp_Object filename
;
1752 register unsigned char *s
, *p
, *o
, *x
, *endp
;
1753 unsigned char *target
;
1755 int substituted
= 0;
1757 Lisp_Object handler
;
1759 CHECK_STRING (filename
, 0);
1761 /* If the file name has special constructs in it,
1762 call the corresponding file handler. */
1763 handler
= Ffind_file_name_handler (filename
, Qsubstitute_in_file_name
);
1764 if (!NILP (handler
))
1765 return call2 (handler
, Qsubstitute_in_file_name
, filename
);
1767 nm
= XSTRING (filename
)->data
;
1769 nm
= strcpy (alloca (strlen (nm
) + 1), nm
);
1770 CORRECT_DIR_SEPS (nm
);
1771 substituted
= (strcmp (nm
, XSTRING (filename
)->data
) != 0);
1773 endp
= nm
+ XSTRING (filename
)->size
;
1775 /* If /~ or // appears, discard everything through first slash. */
1777 for (p
= nm
; p
!= endp
; p
++)
1780 #if defined (APOLLO) || defined (WINDOWSNT)
1781 /* // at start of file name is meaningful in Apollo and
1782 WindowsNT systems */
1783 || (IS_DIRECTORY_SEP (p
[0]) && p
- 1 != nm
)
1784 #else /* not (APOLLO || WINDOWSNT) */
1785 || IS_DIRECTORY_SEP (p
[0])
1786 #endif /* not (APOLLO || WINDOWSNT) */
1791 || p
[-1] == ':' || p
[-1] == ']' || p
[-1] == '>'
1793 || IS_DIRECTORY_SEP (p
[-1])))
1799 /* see comment in expand-file-name about drive specifiers */
1800 else if (IS_DRIVE (p
[0]) && p
[1] == ':'
1801 && p
> nm
&& IS_DIRECTORY_SEP (p
[-1]))
1810 return build_string (nm
);
1813 /* See if any variables are substituted into the string
1814 and find the total length of their values in `total' */
1816 for (p
= nm
; p
!= endp
;)
1826 /* "$$" means a single "$" */
1835 while (p
!= endp
&& *p
!= '}') p
++;
1836 if (*p
!= '}') goto missingclose
;
1842 while (p
!= endp
&& (isalnum (*p
) || *p
== '_')) p
++;
1846 /* Copy out the variable name */
1847 target
= (unsigned char *) alloca (s
- o
+ 1);
1848 strncpy (target
, o
, s
- o
);
1851 strupr (target
); /* $home == $HOME etc. */
1854 /* Get variable value */
1855 o
= (unsigned char *) egetenv (target
);
1856 if (!o
) goto badvar
;
1857 total
+= strlen (o
);
1864 /* If substitution required, recopy the string and do it */
1865 /* Make space in stack frame for the new copy */
1866 xnm
= (unsigned char *) alloca (XSTRING (filename
)->size
+ total
+ 1);
1869 /* Copy the rest of the name through, replacing $ constructs with values */
1886 while (p
!= endp
&& *p
!= '}') p
++;
1887 if (*p
!= '}') goto missingclose
;
1893 while (p
!= endp
&& (isalnum (*p
) || *p
== '_')) p
++;
1897 /* Copy out the variable name */
1898 target
= (unsigned char *) alloca (s
- o
+ 1);
1899 strncpy (target
, o
, s
- o
);
1902 strupr (target
); /* $home == $HOME etc. */
1905 /* Get variable value */
1906 o
= (unsigned char *) egetenv (target
);
1916 /* If /~ or // appears, discard everything through first slash. */
1918 for (p
= xnm
; p
!= x
; p
++)
1920 #if defined (APOLLO) || defined (WINDOWSNT)
1921 || (IS_DIRECTORY_SEP (p
[0]) && p
- 1 != xnm
)
1922 #else /* not (APOLLO || WINDOWSNT) */
1923 || IS_DIRECTORY_SEP (p
[0])
1924 #endif /* not (APOLLO || WINDOWSNT) */
1926 && p
!= xnm
&& IS_DIRECTORY_SEP (p
[-1]))
1929 else if (IS_DRIVE (p
[0]) && p
[1] == ':'
1930 && p
> nm
&& IS_DIRECTORY_SEP (p
[-1]))
1934 return make_string (xnm
, x
- xnm
);
1937 error ("Bad format environment-variable substitution");
1939 error ("Missing \"}\" in environment-variable substitution");
1941 error ("Substituting nonexistent environment variable \"%s\"", target
);
1944 #endif /* not VMS */
1947 /* A slightly faster and more convenient way to get
1948 (directory-file-name (expand-file-name FOO)). */
1951 expand_and_dir_to_file (filename
, defdir
)
1952 Lisp_Object filename
, defdir
;
1954 register Lisp_Object absname
;
1956 absname
= Fexpand_file_name (filename
, defdir
);
1959 register int c
= XSTRING (absname
)->data
[XSTRING (absname
)->size
- 1];
1960 if (c
== ':' || c
== ']' || c
== '>')
1961 absname
= Fdirectory_file_name (absname
);
1964 /* Remove final slash, if any (unless this is the root dir).
1965 stat behaves differently depending! */
1966 if (XSTRING (absname
)->size
> 1
1967 && IS_DIRECTORY_SEP (XSTRING (absname
)->data
[XSTRING (absname
)->size
- 1])
1968 && !IS_DEVICE_SEP (XSTRING (absname
)->data
[XSTRING (absname
)->size
-2]))
1969 /* We cannot take shortcuts; they might be wrong for magic file names. */
1970 absname
= Fdirectory_file_name (absname
);
1975 /* Signal an error if the file ABSNAME already exists.
1976 If INTERACTIVE is nonzero, ask the user whether to proceed,
1977 and bypass the error if the user says to go ahead.
1978 QUERYSTRING is a name for the action that is being considered
1980 *STATPTR is used to store the stat information if the file exists.
1981 If the file does not exist, STATPTR->st_mode is set to 0. */
1984 barf_or_query_if_file_exists (absname
, querystring
, interactive
, statptr
)
1985 Lisp_Object absname
;
1986 unsigned char *querystring
;
1988 struct stat
*statptr
;
1990 register Lisp_Object tem
;
1991 struct stat statbuf
;
1992 struct gcpro gcpro1
;
1994 /* stat is a good way to tell whether the file exists,
1995 regardless of what access permissions it has. */
1996 if (stat (XSTRING (absname
)->data
, &statbuf
) >= 0)
1999 Fsignal (Qfile_already_exists
,
2000 Fcons (build_string ("File already exists"),
2001 Fcons (absname
, Qnil
)));
2003 tem
= do_yes_or_no_p (format1 ("File %s already exists; %s anyway? ",
2004 XSTRING (absname
)->data
, querystring
));
2007 Fsignal (Qfile_already_exists
,
2008 Fcons (build_string ("File already exists"),
2009 Fcons (absname
, Qnil
)));
2016 statptr
->st_mode
= 0;
2021 DEFUN ("copy-file", Fcopy_file
, Scopy_file
, 2, 4,
2022 "fCopy file: \nFCopy %s to file: \np\nP",
2023 "Copy FILE to NEWNAME. Both args must be strings.\n\
2024 Signals a `file-already-exists' error if file NEWNAME already exists,\n\
2025 unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.\n\
2026 A number as third arg means request confirmation if NEWNAME already exists.\n\
2027 This is what happens in interactive use with M-x.\n\
2028 Fourth arg KEEP-TIME non-nil means give the new file the same\n\
2029 last-modified time as the old one. (This works on only some systems.)\n\
2030 A prefix arg makes KEEP-TIME non-nil.")
2031 (file
, newname
, ok_if_already_exists
, keep_date
)
2032 Lisp_Object file
, newname
, ok_if_already_exists
, keep_date
;
2035 char buf
[16 * 1024];
2036 struct stat st
, out_st
;
2037 Lisp_Object handler
;
2038 struct gcpro gcpro1
, gcpro2
;
2039 int count
= specpdl_ptr
- specpdl
;
2040 int input_file_statable_p
;
2042 GCPRO2 (file
, newname
);
2043 CHECK_STRING (file
, 0);
2044 CHECK_STRING (newname
, 1);
2045 file
= Fexpand_file_name (file
, Qnil
);
2046 newname
= Fexpand_file_name (newname
, Qnil
);
2048 /* If the input file name has special constructs in it,
2049 call the corresponding file handler. */
2050 handler
= Ffind_file_name_handler (file
, Qcopy_file
);
2051 /* Likewise for output file name. */
2053 handler
= Ffind_file_name_handler (newname
, Qcopy_file
);
2054 if (!NILP (handler
))
2055 RETURN_UNGCPRO (call5 (handler
, Qcopy_file
, file
, newname
,
2056 ok_if_already_exists
, keep_date
));
2058 if (NILP (ok_if_already_exists
)
2059 || INTEGERP (ok_if_already_exists
))
2060 barf_or_query_if_file_exists (newname
, "copy to it",
2061 INTEGERP (ok_if_already_exists
), &out_st
);
2062 else if (stat (XSTRING (newname
)->data
, &out_st
) < 0)
2065 ifd
= open (XSTRING (file
)->data
, O_RDONLY
);
2067 report_file_error ("Opening input file", Fcons (file
, Qnil
));
2069 record_unwind_protect (close_file_unwind
, make_number (ifd
));
2071 /* We can only copy regular files and symbolic links. Other files are not
2073 input_file_statable_p
= (fstat (ifd
, &st
) >= 0);
2075 #if !defined (MSDOS) || __DJGPP__ > 1
2076 if (out_st
.st_mode
!= 0
2077 && st
.st_dev
== out_st
.st_dev
&& st
.st_ino
== out_st
.st_ino
)
2080 report_file_error ("Input and output files are the same",
2081 Fcons (file
, Fcons (newname
, Qnil
)));
2085 #if defined (S_ISREG) && defined (S_ISLNK)
2086 if (input_file_statable_p
)
2088 if (!(S_ISREG (st
.st_mode
)) && !(S_ISLNK (st
.st_mode
)))
2090 #if defined (EISDIR)
2091 /* Get a better looking error message. */
2094 report_file_error ("Non-regular file", Fcons (file
, Qnil
));
2097 #endif /* S_ISREG && S_ISLNK */
2100 /* Create the copy file with the same record format as the input file */
2101 ofd
= sys_creat (XSTRING (newname
)->data
, 0666, ifd
);
2104 /* System's default file type was set to binary by _fmode in emacs.c. */
2105 ofd
= creat (XSTRING (newname
)->data
, S_IREAD
| S_IWRITE
);
2106 #else /* not MSDOS */
2107 ofd
= creat (XSTRING (newname
)->data
, 0666);
2108 #endif /* not MSDOS */
2111 report_file_error ("Opening output file", Fcons (newname
, Qnil
));
2113 record_unwind_protect (close_file_unwind
, make_number (ofd
));
2117 while ((n
= read (ifd
, buf
, sizeof buf
)) > 0)
2118 if (write (ofd
, buf
, n
) != n
)
2119 report_file_error ("I/O error", Fcons (newname
, Qnil
));
2122 /* Closing the output clobbers the file times on some systems. */
2123 if (close (ofd
) < 0)
2124 report_file_error ("I/O error", Fcons (newname
, Qnil
));
2126 if (input_file_statable_p
)
2128 if (!NILP (keep_date
))
2130 EMACS_TIME atime
, mtime
;
2131 EMACS_SET_SECS_USECS (atime
, st
.st_atime
, 0);
2132 EMACS_SET_SECS_USECS (mtime
, st
.st_mtime
, 0);
2133 if (set_file_times (XSTRING (newname
)->data
, atime
, mtime
))
2134 Fsignal (Qfile_date_error
,
2135 Fcons (build_string ("Cannot set file date"),
2136 Fcons (newname
, Qnil
)));
2139 chmod (XSTRING (newname
)->data
, st
.st_mode
& 07777);
2141 #if defined (__DJGPP__) && __DJGPP__ > 1
2142 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
2143 and if it can't, it tells so. Otherwise, under MSDOS we usually
2144 get only the READ bit, which will make the copied file read-only,
2145 so it's better not to chmod at all. */
2146 if ((_djstat_flags
& _STFAIL_WRITEBIT
) == 0)
2147 chmod (XSTRING (newname
)->data
, st
.st_mode
& 07777);
2148 #endif /* DJGPP version 2 or newer */
2154 /* Discard the unwind protects. */
2155 specpdl_ptr
= specpdl
+ count
;
2161 DEFUN ("make-directory-internal", Fmake_directory_internal
,
2162 Smake_directory_internal
, 1, 1, 0,
2163 "Create a new directory named DIRECTORY.")
2165 Lisp_Object directory
;
2168 Lisp_Object handler
;
2170 CHECK_STRING (directory
, 0);
2171 directory
= Fexpand_file_name (directory
, Qnil
);
2173 handler
= Ffind_file_name_handler (directory
, Qmake_directory_internal
);
2174 if (!NILP (handler
))
2175 return call2 (handler
, Qmake_directory_internal
, directory
);
2177 dir
= XSTRING (directory
)->data
;
2180 if (mkdir (dir
) != 0)
2182 if (mkdir (dir
, 0777) != 0)
2184 report_file_error ("Creating directory", Flist (1, &directory
));
2189 DEFUN ("delete-directory", Fdelete_directory
, Sdelete_directory
, 1, 1, "FDelete directory: ",
2190 "Delete the directory named DIRECTORY.")
2192 Lisp_Object directory
;
2195 Lisp_Object handler
;
2197 CHECK_STRING (directory
, 0);
2198 directory
= Fdirectory_file_name (Fexpand_file_name (directory
, Qnil
));
2199 dir
= XSTRING (directory
)->data
;
2201 handler
= Ffind_file_name_handler (directory
, Qdelete_directory
);
2202 if (!NILP (handler
))
2203 return call2 (handler
, Qdelete_directory
, directory
);
2205 if (rmdir (dir
) != 0)
2206 report_file_error ("Removing directory", Flist (1, &directory
));
2211 DEFUN ("delete-file", Fdelete_file
, Sdelete_file
, 1, 1, "fDelete file: ",
2212 "Delete file named FILENAME.\n\
2213 If file has multiple names, it continues to exist with the other names.")
2215 Lisp_Object filename
;
2217 Lisp_Object handler
;
2218 CHECK_STRING (filename
, 0);
2219 filename
= Fexpand_file_name (filename
, Qnil
);
2221 handler
= Ffind_file_name_handler (filename
, Qdelete_file
);
2222 if (!NILP (handler
))
2223 return call2 (handler
, Qdelete_file
, filename
);
2225 if (0 > unlink (XSTRING (filename
)->data
))
2226 report_file_error ("Removing old name", Flist (1, &filename
));
2231 internal_delete_file_1 (ignore
)
2237 /* Delete file FILENAME, returning 1 if successful and 0 if failed. */
2240 internal_delete_file (filename
)
2241 Lisp_Object filename
;
2243 return NILP (internal_condition_case_1 (Fdelete_file
, filename
,
2244 Qt
, internal_delete_file_1
));
2247 DEFUN ("rename-file", Frename_file
, Srename_file
, 2, 3,
2248 "fRename file: \nFRename %s to file: \np",
2249 "Rename FILE as NEWNAME. Both args strings.\n\
2250 If file has names other than FILE, it continues to have those names.\n\
2251 Signals a `file-already-exists' error if a file NEWNAME already exists\n\
2252 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
2253 A number as third arg means request confirmation if NEWNAME already exists.\n\
2254 This is what happens in interactive use with M-x.")
2255 (file
, newname
, ok_if_already_exists
)
2256 Lisp_Object file
, newname
, ok_if_already_exists
;
2259 Lisp_Object args
[2];
2261 Lisp_Object handler
;
2262 struct gcpro gcpro1
, gcpro2
;
2264 GCPRO2 (file
, newname
);
2265 CHECK_STRING (file
, 0);
2266 CHECK_STRING (newname
, 1);
2267 file
= Fexpand_file_name (file
, Qnil
);
2268 newname
= Fexpand_file_name (newname
, Qnil
);
2270 /* If the file name has special constructs in it,
2271 call the corresponding file handler. */
2272 handler
= Ffind_file_name_handler (file
, Qrename_file
);
2274 handler
= Ffind_file_name_handler (newname
, Qrename_file
);
2275 if (!NILP (handler
))
2276 RETURN_UNGCPRO (call4 (handler
, Qrename_file
,
2277 file
, newname
, ok_if_already_exists
));
2279 if (NILP (ok_if_already_exists
)
2280 || INTEGERP (ok_if_already_exists
))
2281 barf_or_query_if_file_exists (newname
, "rename to it",
2282 INTEGERP (ok_if_already_exists
), 0);
2284 if (0 > rename (XSTRING (file
)->data
, XSTRING (newname
)->data
))
2286 if (0 > link (XSTRING (file
)->data
, XSTRING (newname
)->data
)
2287 || 0 > unlink (XSTRING (file
)->data
))
2292 Fcopy_file (file
, newname
,
2293 /* We have already prompted if it was an integer,
2294 so don't have copy-file prompt again. */
2295 NILP (ok_if_already_exists
) ? Qnil
: Qt
, Qt
);
2296 Fdelete_file (file
);
2303 report_file_error ("Renaming", Flist (2, args
));
2306 report_file_error ("Renaming", Flist (2, &file
));
2313 DEFUN ("add-name-to-file", Fadd_name_to_file
, Sadd_name_to_file
, 2, 3,
2314 "fAdd name to file: \nFName to add to %s: \np",
2315 "Give FILE additional name NEWNAME. Both args strings.\n\
2316 Signals a `file-already-exists' error if a file NEWNAME already exists\n\
2317 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
2318 A number as third arg means request confirmation if NEWNAME already exists.\n\
2319 This is what happens in interactive use with M-x.")
2320 (file
, newname
, ok_if_already_exists
)
2321 Lisp_Object file
, newname
, ok_if_already_exists
;
2324 Lisp_Object args
[2];
2326 Lisp_Object handler
;
2327 struct gcpro gcpro1
, gcpro2
;
2329 GCPRO2 (file
, newname
);
2330 CHECK_STRING (file
, 0);
2331 CHECK_STRING (newname
, 1);
2332 file
= Fexpand_file_name (file
, Qnil
);
2333 newname
= Fexpand_file_name (newname
, Qnil
);
2335 /* If the file name has special constructs in it,
2336 call the corresponding file handler. */
2337 handler
= Ffind_file_name_handler (file
, Qadd_name_to_file
);
2338 if (!NILP (handler
))
2339 RETURN_UNGCPRO (call4 (handler
, Qadd_name_to_file
, file
,
2340 newname
, ok_if_already_exists
));
2342 /* If the new name has special constructs in it,
2343 call the corresponding file handler. */
2344 handler
= Ffind_file_name_handler (newname
, Qadd_name_to_file
);
2345 if (!NILP (handler
))
2346 RETURN_UNGCPRO (call4 (handler
, Qadd_name_to_file
, file
,
2347 newname
, ok_if_already_exists
));
2349 if (NILP (ok_if_already_exists
)
2350 || INTEGERP (ok_if_already_exists
))
2351 barf_or_query_if_file_exists (newname
, "make it a new name",
2352 INTEGERP (ok_if_already_exists
), 0);
2354 /* Windows does not support this operation. */
2355 report_file_error ("Adding new name", Flist (2, &file
));
2356 #else /* not WINDOWSNT */
2358 unlink (XSTRING (newname
)->data
);
2359 if (0 > link (XSTRING (file
)->data
, XSTRING (newname
)->data
))
2364 report_file_error ("Adding new name", Flist (2, args
));
2366 report_file_error ("Adding new name", Flist (2, &file
));
2369 #endif /* not WINDOWSNT */
2376 DEFUN ("make-symbolic-link", Fmake_symbolic_link
, Smake_symbolic_link
, 2, 3,
2377 "FMake symbolic link to file: \nFMake symbolic link to file %s: \np",
2378 "Make a symbolic link to FILENAME, named LINKNAME. Both args strings.\n\
2379 Signals a `file-already-exists' error if a file LINKNAME already exists\n\
2380 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\
2381 A number as third arg means request confirmation if LINKNAME already exists.\n\
2382 This happens for interactive use with M-x.")
2383 (filename
, linkname
, ok_if_already_exists
)
2384 Lisp_Object filename
, linkname
, ok_if_already_exists
;
2387 Lisp_Object args
[2];
2389 Lisp_Object handler
;
2390 struct gcpro gcpro1
, gcpro2
;
2392 GCPRO2 (filename
, linkname
);
2393 CHECK_STRING (filename
, 0);
2394 CHECK_STRING (linkname
, 1);
2395 /* If the link target has a ~, we must expand it to get
2396 a truly valid file name. Otherwise, do not expand;
2397 we want to permit links to relative file names. */
2398 if (XSTRING (filename
)->data
[0] == '~')
2399 filename
= Fexpand_file_name (filename
, Qnil
);
2400 linkname
= Fexpand_file_name (linkname
, Qnil
);
2402 /* If the file name has special constructs in it,
2403 call the corresponding file handler. */
2404 handler
= Ffind_file_name_handler (filename
, Qmake_symbolic_link
);
2405 if (!NILP (handler
))
2406 RETURN_UNGCPRO (call4 (handler
, Qmake_symbolic_link
, filename
,
2407 linkname
, ok_if_already_exists
));
2409 /* If the new link name has special constructs in it,
2410 call the corresponding file handler. */
2411 handler
= Ffind_file_name_handler (linkname
, Qmake_symbolic_link
);
2412 if (!NILP (handler
))
2413 RETURN_UNGCPRO (call4 (handler
, Qmake_symbolic_link
, filename
,
2414 linkname
, ok_if_already_exists
));
2416 if (NILP (ok_if_already_exists
)
2417 || INTEGERP (ok_if_already_exists
))
2418 barf_or_query_if_file_exists (linkname
, "make it a link",
2419 INTEGERP (ok_if_already_exists
), 0);
2420 if (0 > symlink (XSTRING (filename
)->data
, XSTRING (linkname
)->data
))
2422 /* If we didn't complain already, silently delete existing file. */
2423 if (errno
== EEXIST
)
2425 unlink (XSTRING (linkname
)->data
);
2426 if (0 <= symlink (XSTRING (filename
)->data
, XSTRING (linkname
)->data
))
2436 report_file_error ("Making symbolic link", Flist (2, args
));
2438 report_file_error ("Making symbolic link", Flist (2, &filename
));
2444 #endif /* S_IFLNK */
2448 DEFUN ("define-logical-name", Fdefine_logical_name
, Sdefine_logical_name
,
2449 2, 2, "sDefine logical name: \nsDefine logical name %s as: ",
2450 "Define the job-wide logical name NAME to have the value STRING.\n\
2451 If STRING is nil or a null string, the logical name NAME is deleted.")
2456 CHECK_STRING (name
, 0);
2458 delete_logical_name (XSTRING (name
)->data
);
2461 CHECK_STRING (string
, 1);
2463 if (XSTRING (string
)->size
== 0)
2464 delete_logical_name (XSTRING (name
)->data
);
2466 define_logical_name (XSTRING (name
)->data
, XSTRING (string
)->data
);
2475 DEFUN ("sysnetunam", Fsysnetunam
, Ssysnetunam
, 2, 2, 0,
2476 "Open a network connection to PATH using LOGIN as the login string.")
2478 Lisp_Object path
, login
;
2482 CHECK_STRING (path
, 0);
2483 CHECK_STRING (login
, 0);
2485 netresult
= netunam (XSTRING (path
)->data
, XSTRING (login
)->data
);
2487 if (netresult
== -1)
2492 #endif /* HPUX_NET */
2494 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p
, Sfile_name_absolute_p
,
2496 "Return t if file FILENAME specifies an absolute file name.\n\
2497 On Unix, this is a name starting with a `/' or a `~'.")
2499 Lisp_Object filename
;
2503 CHECK_STRING (filename
, 0);
2504 ptr
= XSTRING (filename
)->data
;
2505 if (IS_DIRECTORY_SEP (*ptr
) || *ptr
== '~'
2507 /* ??? This criterion is probably wrong for '<'. */
2508 || index (ptr
, ':') || index (ptr
, '<')
2509 || (*ptr
== '[' && (ptr
[1] != '-' || (ptr
[2] != '.' && ptr
[2] != ']'))
2513 || (IS_DRIVE (*ptr
) && ptr
[1] == ':' && IS_DIRECTORY_SEP (ptr
[2]))
2521 /* Return nonzero if file FILENAME exists and can be executed. */
2524 check_executable (filename
)
2528 int len
= strlen (filename
);
2531 if (stat (filename
, &st
) < 0)
2533 #if defined (WINDOWSNT) || (defined (MSDOS) && __DJGPP__ > 1)
2534 return ((st
.st_mode
& S_IEXEC
) != 0);
2536 return (S_ISREG (st
.st_mode
)
2538 && (stricmp ((suffix
= filename
+ len
-4), ".com") == 0
2539 || stricmp (suffix
, ".exe") == 0
2540 || stricmp (suffix
, ".bat") == 0)
2541 || (st
.st_mode
& S_IFMT
) == S_IFDIR
);
2542 #endif /* not WINDOWSNT */
2543 #else /* not DOS_NT */
2544 #ifdef HAVE_EUIDACCESS
2545 return (euidaccess (filename
, 1) >= 0);
2547 /* Access isn't quite right because it uses the real uid
2548 and we really want to test with the effective uid.
2549 But Unix doesn't give us a right way to do it. */
2550 return (access (filename
, 1) >= 0);
2552 #endif /* not DOS_NT */
2555 /* Return nonzero if file FILENAME exists and can be written. */
2558 check_writable (filename
)
2563 if (stat (filename
, &st
) < 0)
2565 return (st
.st_mode
& S_IWRITE
|| (st
.st_mode
& S_IFMT
) == S_IFDIR
);
2566 #else /* not MSDOS */
2567 #ifdef HAVE_EUIDACCESS
2568 return (euidaccess (filename
, 2) >= 0);
2570 /* Access isn't quite right because it uses the real uid
2571 and we really want to test with the effective uid.
2572 But Unix doesn't give us a right way to do it.
2573 Opening with O_WRONLY could work for an ordinary file,
2574 but would lose for directories. */
2575 return (access (filename
, 2) >= 0);
2577 #endif /* not MSDOS */
2580 DEFUN ("file-exists-p", Ffile_exists_p
, Sfile_exists_p
, 1, 1, 0,
2581 "Return t if file FILENAME exists. (This does not mean you can read it.)\n\
2582 See also `file-readable-p' and `file-attributes'.")
2584 Lisp_Object filename
;
2586 Lisp_Object absname
;
2587 Lisp_Object handler
;
2588 struct stat statbuf
;
2590 CHECK_STRING (filename
, 0);
2591 absname
= Fexpand_file_name (filename
, Qnil
);
2593 /* If the file name has special constructs in it,
2594 call the corresponding file handler. */
2595 handler
= Ffind_file_name_handler (absname
, Qfile_exists_p
);
2596 if (!NILP (handler
))
2597 return call2 (handler
, Qfile_exists_p
, absname
);
2599 return (stat (XSTRING (absname
)->data
, &statbuf
) >= 0) ? Qt
: Qnil
;
2602 DEFUN ("file-executable-p", Ffile_executable_p
, Sfile_executable_p
, 1, 1, 0,
2603 "Return t if FILENAME can be executed by you.\n\
2604 For a directory, this means you can access files in that directory.")
2606 Lisp_Object filename
;
2609 Lisp_Object absname
;
2610 Lisp_Object handler
;
2612 CHECK_STRING (filename
, 0);
2613 absname
= Fexpand_file_name (filename
, Qnil
);
2615 /* If the file name has special constructs in it,
2616 call the corresponding file handler. */
2617 handler
= Ffind_file_name_handler (absname
, Qfile_executable_p
);
2618 if (!NILP (handler
))
2619 return call2 (handler
, Qfile_executable_p
, absname
);
2621 return (check_executable (XSTRING (absname
)->data
) ? Qt
: Qnil
);
2624 DEFUN ("file-readable-p", Ffile_readable_p
, Sfile_readable_p
, 1, 1, 0,
2625 "Return t if file FILENAME exists and you can read it.\n\
2626 See also `file-exists-p' and `file-attributes'.")
2628 Lisp_Object filename
;
2630 Lisp_Object absname
;
2631 Lisp_Object handler
;
2634 struct stat statbuf
;
2636 CHECK_STRING (filename
, 0);
2637 absname
= Fexpand_file_name (filename
, Qnil
);
2639 /* If the file name has special constructs in it,
2640 call the corresponding file handler. */
2641 handler
= Ffind_file_name_handler (absname
, Qfile_readable_p
);
2642 if (!NILP (handler
))
2643 return call2 (handler
, Qfile_readable_p
, absname
);
2646 /* Under MS-DOS and Windows, open does not work for directories. */
2647 if (access (XSTRING (absname
)->data
, 0) == 0)
2650 #else /* not DOS_NT */
2652 #if defined (S_ISFIFO) && defined (O_NONBLOCK)
2653 /* Opening a fifo without O_NONBLOCK can wait.
2654 We don't want to wait. But we don't want to mess wth O_NONBLOCK
2655 except in the case of a fifo, on a system which handles it. */
2656 desc
= stat (XSTRING (absname
)->data
, &statbuf
);
2659 if (S_ISFIFO (statbuf
.st_mode
))
2660 flags
|= O_NONBLOCK
;
2662 desc
= open (XSTRING (absname
)->data
, flags
);
2667 #endif /* not DOS_NT */
2670 /* Having this before file-symlink-p mysteriously caused it to be forgotten
2672 DEFUN ("file-writable-p", Ffile_writable_p
, Sfile_writable_p
, 1, 1, 0,
2673 "Return t if file FILENAME can be written or created by you.")
2675 Lisp_Object filename
;
2677 Lisp_Object absname
, dir
;
2678 Lisp_Object handler
;
2679 struct stat statbuf
;
2681 CHECK_STRING (filename
, 0);
2682 absname
= Fexpand_file_name (filename
, Qnil
);
2684 /* If the file name has special constructs in it,
2685 call the corresponding file handler. */
2686 handler
= Ffind_file_name_handler (absname
, Qfile_writable_p
);
2687 if (!NILP (handler
))
2688 return call2 (handler
, Qfile_writable_p
, absname
);
2690 if (stat (XSTRING (absname
)->data
, &statbuf
) >= 0)
2691 return (check_writable (XSTRING (absname
)->data
)
2693 dir
= Ffile_name_directory (absname
);
2696 dir
= Fdirectory_file_name (dir
);
2700 dir
= Fdirectory_file_name (dir
);
2702 return (check_writable (!NILP (dir
) ? (char *) XSTRING (dir
)->data
: "")
2706 DEFUN ("access-file", Faccess_file
, Saccess_file
, 2, 2, 0,
2707 "Access file FILENAME, and get an error if that does not work.\n\
2708 The second argument STRING is used in the error message.\n\
2709 If there is no error, we return nil.")
2711 Lisp_Object filename
, string
;
2713 Lisp_Object handler
;
2716 CHECK_STRING (filename
, 0);
2718 /* If the file name has special constructs in it,
2719 call the corresponding file handler. */
2720 handler
= Ffind_file_name_handler (filename
, Qaccess_file
);
2721 if (!NILP (handler
))
2722 return call3 (handler
, Qaccess_file
, filename
, string
);
2724 fd
= open (XSTRING (filename
)->data
, O_RDONLY
);
2726 report_file_error (XSTRING (string
)->data
, Fcons (filename
, Qnil
));
2732 DEFUN ("file-symlink-p", Ffile_symlink_p
, Sfile_symlink_p
, 1, 1, 0,
2733 "Return non-nil if file FILENAME is the name of a symbolic link.\n\
2734 The value is the name of the file to which it is linked.\n\
2735 Otherwise returns nil.")
2737 Lisp_Object filename
;
2744 Lisp_Object handler
;
2746 CHECK_STRING (filename
, 0);
2747 filename
= Fexpand_file_name (filename
, Qnil
);
2749 /* If the file name has special constructs in it,
2750 call the corresponding file handler. */
2751 handler
= Ffind_file_name_handler (filename
, Qfile_symlink_p
);
2752 if (!NILP (handler
))
2753 return call2 (handler
, Qfile_symlink_p
, filename
);
2758 buf
= (char *) xmalloc (bufsize
);
2759 bzero (buf
, bufsize
);
2760 valsize
= readlink (XSTRING (filename
)->data
, buf
, bufsize
);
2761 if (valsize
< bufsize
) break;
2762 /* Buffer was not long enough */
2771 val
= make_string (buf
, valsize
);
2774 #else /* not S_IFLNK */
2776 #endif /* not S_IFLNK */
2779 DEFUN ("file-directory-p", Ffile_directory_p
, Sfile_directory_p
, 1, 1, 0,
2780 "Return t if FILENAME names an existing directory.")
2782 Lisp_Object filename
;
2784 register Lisp_Object absname
;
2786 Lisp_Object handler
;
2788 absname
= expand_and_dir_to_file (filename
, current_buffer
->directory
);
2790 /* If the file name has special constructs in it,
2791 call the corresponding file handler. */
2792 handler
= Ffind_file_name_handler (absname
, Qfile_directory_p
);
2793 if (!NILP (handler
))
2794 return call2 (handler
, Qfile_directory_p
, absname
);
2796 if (stat (XSTRING (absname
)->data
, &st
) < 0)
2798 return (st
.st_mode
& S_IFMT
) == S_IFDIR
? Qt
: Qnil
;
2801 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p
, Sfile_accessible_directory_p
, 1, 1, 0,
2802 "Return t if file FILENAME is the name of a directory as a file,\n\
2803 and files in that directory can be opened by you. In order to use a\n\
2804 directory as a buffer's current directory, this predicate must return true.\n\
2805 A directory name spec may be given instead; then the value is t\n\
2806 if the directory so specified exists and really is a readable and\n\
2807 searchable directory.")
2809 Lisp_Object filename
;
2811 Lisp_Object handler
;
2813 struct gcpro gcpro1
;
2815 /* If the file name has special constructs in it,
2816 call the corresponding file handler. */
2817 handler
= Ffind_file_name_handler (filename
, Qfile_accessible_directory_p
);
2818 if (!NILP (handler
))
2819 return call2 (handler
, Qfile_accessible_directory_p
, filename
);
2821 /* It's an unlikely combination, but yes we really do need to gcpro:
2822 Suppose that file-accessible-directory-p has no handler, but
2823 file-directory-p does have a handler; this handler causes a GC which
2824 relocates the string in `filename'; and finally file-directory-p
2825 returns non-nil. Then we would end up passing a garbaged string
2826 to file-executable-p. */
2828 tem
= (NILP (Ffile_directory_p (filename
))
2829 || NILP (Ffile_executable_p (filename
)));
2831 return tem
? Qnil
: Qt
;
2834 DEFUN ("file-regular-p", Ffile_regular_p
, Sfile_regular_p
, 1, 1, 0,
2835 "Return t if file FILENAME is the name of a regular file.\n\
2836 This is the sort of file that holds an ordinary stream of data bytes.")
2838 Lisp_Object filename
;
2840 register Lisp_Object absname
;
2842 Lisp_Object handler
;
2844 absname
= expand_and_dir_to_file (filename
, current_buffer
->directory
);
2846 /* If the file name has special constructs in it,
2847 call the corresponding file handler. */
2848 handler
= Ffind_file_name_handler (absname
, Qfile_regular_p
);
2849 if (!NILP (handler
))
2850 return call2 (handler
, Qfile_regular_p
, absname
);
2852 if (stat (XSTRING (absname
)->data
, &st
) < 0)
2854 return (st
.st_mode
& S_IFMT
) == S_IFREG
? Qt
: Qnil
;
2857 DEFUN ("file-modes", Ffile_modes
, Sfile_modes
, 1, 1, 0,
2858 "Return mode bits of file named FILENAME, as an integer.")
2860 Lisp_Object filename
;
2862 Lisp_Object absname
;
2864 Lisp_Object handler
;
2866 absname
= expand_and_dir_to_file (filename
, current_buffer
->directory
);
2868 /* If the file name has special constructs in it,
2869 call the corresponding file handler. */
2870 handler
= Ffind_file_name_handler (absname
, Qfile_modes
);
2871 if (!NILP (handler
))
2872 return call2 (handler
, Qfile_modes
, absname
);
2874 if (stat (XSTRING (absname
)->data
, &st
) < 0)
2876 #if defined (MSDOS) && __DJGPP__ < 2
2877 if (check_executable (XSTRING (absname
)->data
))
2878 st
.st_mode
|= S_IEXEC
;
2879 #endif /* MSDOS && __DJGPP__ < 2 */
2881 return make_number (st
.st_mode
& 07777);
2884 DEFUN ("set-file-modes", Fset_file_modes
, Sset_file_modes
, 2, 2, 0,
2885 "Set mode bits of file named FILENAME to MODE (an integer).\n\
2886 Only the 12 low bits of MODE are used.")
2888 Lisp_Object filename
, mode
;
2890 Lisp_Object absname
;
2891 Lisp_Object handler
;
2893 absname
= Fexpand_file_name (filename
, current_buffer
->directory
);
2894 CHECK_NUMBER (mode
, 1);
2896 /* If the file name has special constructs in it,
2897 call the corresponding file handler. */
2898 handler
= Ffind_file_name_handler (absname
, Qset_file_modes
);
2899 if (!NILP (handler
))
2900 return call3 (handler
, Qset_file_modes
, absname
, mode
);
2902 if (chmod (XSTRING (absname
)->data
, XINT (mode
)) < 0)
2903 report_file_error ("Doing chmod", Fcons (absname
, Qnil
));
2908 DEFUN ("set-default-file-modes", Fset_default_file_modes
, Sset_default_file_modes
, 1, 1, 0,
2909 "Set the file permission bits for newly created files.\n\
2910 The argument MODE should be an integer; only the low 9 bits are used.\n\
2911 This setting is inherited by subprocesses.")
2915 CHECK_NUMBER (mode
, 0);
2917 umask ((~ XINT (mode
)) & 0777);
2922 DEFUN ("default-file-modes", Fdefault_file_modes
, Sdefault_file_modes
, 0, 0, 0,
2923 "Return the default file protection for created files.\n\
2924 The value is an integer.")
2930 realmask
= umask (0);
2933 XSETINT (value
, (~ realmask
) & 0777);
2939 DEFUN ("unix-sync", Funix_sync
, Sunix_sync
, 0, 0, "",
2940 "Tell Unix to finish all pending disk updates.")
2949 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p
, Sfile_newer_than_file_p
, 2, 2, 0,
2950 "Return t if file FILE1 is newer than file FILE2.\n\
2951 If FILE1 does not exist, the answer is nil;\n\
2952 otherwise, if FILE2 does not exist, the answer is t.")
2954 Lisp_Object file1
, file2
;
2956 Lisp_Object absname1
, absname2
;
2959 Lisp_Object handler
;
2960 struct gcpro gcpro1
, gcpro2
;
2962 CHECK_STRING (file1
, 0);
2963 CHECK_STRING (file2
, 0);
2966 GCPRO2 (absname1
, file2
);
2967 absname1
= expand_and_dir_to_file (file1
, current_buffer
->directory
);
2968 absname2
= expand_and_dir_to_file (file2
, current_buffer
->directory
);
2971 /* If the file name has special constructs in it,
2972 call the corresponding file handler. */
2973 handler
= Ffind_file_name_handler (absname1
, Qfile_newer_than_file_p
);
2975 handler
= Ffind_file_name_handler (absname2
, Qfile_newer_than_file_p
);
2976 if (!NILP (handler
))
2977 return call3 (handler
, Qfile_newer_than_file_p
, absname1
, absname2
);
2979 if (stat (XSTRING (absname1
)->data
, &st
) < 0)
2982 mtime1
= st
.st_mtime
;
2984 if (stat (XSTRING (absname2
)->data
, &st
) < 0)
2987 return (mtime1
> st
.st_mtime
) ? Qt
: Qnil
;
2991 Lisp_Object Qfind_buffer_file_type
;
2994 #ifndef READ_BUF_SIZE
2995 #define READ_BUF_SIZE (64 << 10)
2998 DEFUN ("insert-file-contents", Finsert_file_contents
, Sinsert_file_contents
,
3000 "Insert contents of file FILENAME after point.\n\
3001 Returns list of absolute file name and length of data inserted.\n\
3002 If second argument VISIT is non-nil, the buffer's visited filename\n\
3003 and last save file modtime are set, and it is marked unmodified.\n\
3004 If visiting and the file does not exist, visiting is completed\n\
3005 before the error is signaled.\n\
3006 The optional third and fourth arguments BEG and END\n\
3007 specify what portion of the file to insert.\n\
3008 If VISIT is non-nil, BEG and END must be nil.\n\
3010 If optional fifth argument REPLACE is non-nil,\n\
3011 it means replace the current buffer contents (in the accessible portion)\n\
3012 with the file contents. This is better than simply deleting and inserting\n\
3013 the whole thing because (1) it preserves some marker positions\n\
3014 and (2) it puts less data in the undo list.\n\
3015 When REPLACE is non-nil, the value is the number of characters actually read,\n\
3016 which is often less than the number of characters to be read.\n\
3017 This does code conversion according to the value of\n\
3018 `coding-system-for-read' or `file-coding-system-alist',\n\
3019 and sets the variable `last-coding-system-used' to the coding system\n\
3021 (filename
, visit
, beg
, end
, replace
)
3022 Lisp_Object filename
, visit
, beg
, end
, replace
;
3026 register int inserted
= 0;
3027 register int how_much
;
3028 register int unprocessed
;
3029 int count
= specpdl_ptr
- specpdl
;
3030 struct gcpro gcpro1
, gcpro2
, gcpro3
;
3031 Lisp_Object handler
, val
, insval
;
3034 int not_regular
= 0;
3035 char read_buf
[READ_BUF_SIZE
];
3036 struct coding_system coding
;
3037 unsigned char buffer
[1 << 14];
3038 int replace_handled
= 0;
3040 if (current_buffer
->base_buffer
&& ! NILP (visit
))
3041 error ("Cannot do file visiting in an indirect buffer");
3043 if (!NILP (current_buffer
->read_only
))
3044 Fbarf_if_buffer_read_only ();
3049 GCPRO3 (filename
, val
, p
);
3051 CHECK_STRING (filename
, 0);
3052 filename
= Fexpand_file_name (filename
, Qnil
);
3054 /* If the file name has special constructs in it,
3055 call the corresponding file handler. */
3056 handler
= Ffind_file_name_handler (filename
, Qinsert_file_contents
);
3057 if (!NILP (handler
))
3059 val
= call6 (handler
, Qinsert_file_contents
, filename
,
3060 visit
, beg
, end
, replace
);
3064 /* Decide the coding-system of the file. */
3068 if (!NILP (Vcoding_system_for_read
))
3069 val
= Vcoding_system_for_read
;
3070 else if (NILP (current_buffer
->enable_multibyte_characters
))
3074 Lisp_Object args
[6], coding_systems
;
3076 args
[0] = Qinsert_file_contents
, args
[1] = filename
, args
[2] = visit
,
3077 args
[3] = beg
, args
[4] = end
, args
[5] = replace
;
3078 coding_systems
= Ffind_operation_coding_system (6, args
);
3079 val
= CONSP (coding_systems
) ? XCONS (coding_systems
)->car
: Qnil
;
3081 setup_coding_system (Fcheck_coding_system (val
), &coding
);
3087 if (stat (XSTRING (filename
)->data
, &st
) < 0)
3089 if ((fd
= open (XSTRING (filename
)->data
, O_RDONLY
)) < 0
3090 || fstat (fd
, &st
) < 0)
3091 #endif /* not APOLLO */
3093 if (fd
>= 0) close (fd
);
3096 report_file_error ("Opening input file", Fcons (filename
, Qnil
));
3103 /* This code will need to be changed in order to work on named
3104 pipes, and it's probably just not worth it. So we should at
3105 least signal an error. */
3106 if (!S_ISREG (st
.st_mode
))
3113 if (! NILP (replace
) || ! NILP (beg
) || ! NILP (end
))
3114 Fsignal (Qfile_error
,
3115 Fcons (build_string ("not a regular file"),
3116 Fcons (filename
, Qnil
)));
3121 if ((fd
= open (XSTRING (filename
)->data
, O_RDONLY
)) < 0)
3124 /* Replacement should preserve point as it preserves markers. */
3125 if (!NILP (replace
))
3126 record_unwind_protect (restore_point_unwind
, Fpoint_marker ());
3128 record_unwind_protect (close_file_unwind
, make_number (fd
));
3130 /* Supposedly happens on VMS. */
3131 if (! not_regular
&& st
.st_size
< 0)
3132 error ("File size is negative");
3134 if (!NILP (beg
) || !NILP (end
))
3136 error ("Attempt to visit less than an entire file");
3139 CHECK_NUMBER (beg
, 0);
3141 XSETFASTINT (beg
, 0);
3144 CHECK_NUMBER (end
, 0);
3149 XSETINT (end
, st
.st_size
);
3150 if (XINT (end
) != st
.st_size
)
3151 error ("Maximum buffer size exceeded");
3155 /* If requested, replace the accessible part of the buffer
3156 with the file contents. Avoid replacing text at the
3157 beginning or end of the buffer that matches the file contents;
3158 that preserves markers pointing to the unchanged parts.
3160 Here we implement this feature in an optimized way
3161 for the case where code conversion is NOT needed.
3162 The following if-statement handles the case of conversion
3163 in a less optimal way.
3165 If the code conversion is "automatic" then we try using this
3166 method and hope for the best.
3167 But if we discover the need for conversion, we give up on this method
3168 and let the following if-statement handle the replace job. */
3170 && (! CODING_REQUIRE_CONVERSION (&coding
)
3171 || (coding
.type
== coding_type_undecided
3172 && ! CODING_REQUIRE_EOL_CONVERSION (&coding
))
3173 || (coding
.eol_type
== CODING_EOL_UNDECIDED
3174 && ! CODING_REQUIRE_TEXT_CONVERSION (&coding
))))
3176 int same_at_start
= BEGV
;
3177 int same_at_end
= ZV
;
3179 /* There is still a possibility we will find the need to do code
3180 conversion. If that happens, we set this variable to 1 to
3181 give up on handling REPLACE in the optimized way. */
3182 int giveup_match_end
= 0;
3184 if (XINT (beg
) != 0)
3186 if (lseek (fd
, XINT (beg
), 0) < 0)
3187 report_file_error ("Setting file position",
3188 Fcons (filename
, Qnil
));
3193 /* Count how many chars at the start of the file
3194 match the text at the beginning of the buffer. */
3199 nread
= read (fd
, buffer
, sizeof buffer
);
3201 error ("IO error reading %s: %s",
3202 XSTRING (filename
)->data
, strerror (errno
));
3203 else if (nread
== 0)
3206 if (coding
.type
== coding_type_undecided
)
3207 detect_coding (&coding
, buffer
, nread
);
3208 if (coding
.type
!= coding_type_undecided
3209 && CODING_REQUIRE_TEXT_CONVERSION (&coding
))
3210 /* We found that the file should be decoded somehow.
3211 Let's give up here. */
3213 giveup_match_end
= 1;
3217 if (coding
.eol_type
== CODING_EOL_UNDECIDED
)
3218 detect_eol (&coding
, buffer
, nread
);
3219 if (coding
.eol_type
!= CODING_EOL_UNDECIDED
3220 && CODING_REQUIRE_EOL_CONVERSION (&coding
))
3221 /* We found that the format of eol should be decoded.
3222 Let's give up here. */
3224 giveup_match_end
= 1;
3229 while (bufpos
< nread
&& same_at_start
< ZV
3230 && FETCH_BYTE (same_at_start
) == buffer
[bufpos
])
3231 same_at_start
++, bufpos
++;
3232 /* If we found a discrepancy, stop the scan.
3233 Otherwise loop around and scan the next bufferful. */
3234 if (bufpos
!= nread
)
3238 /* If the file matches the buffer completely,
3239 there's no need to replace anything. */
3240 if (same_at_start
- BEGV
== XINT (end
))
3244 /* Truncate the buffer to the size of the file. */
3245 del_range_1 (same_at_start
, same_at_end
, 0);
3250 /* Count how many chars at the end of the file
3251 match the text at the end of the buffer. But, if we have
3252 already found that decoding is necessary, don't waste time. */
3253 while (!giveup_match_end
)
3255 int total_read
, nread
, bufpos
, curpos
, trial
;
3257 /* At what file position are we now scanning? */
3258 curpos
= XINT (end
) - (ZV
- same_at_end
);
3259 /* If the entire file matches the buffer tail, stop the scan. */
3262 /* How much can we scan in the next step? */
3263 trial
= min (curpos
, sizeof buffer
);
3264 if (lseek (fd
, curpos
- trial
, 0) < 0)
3265 report_file_error ("Setting file position",
3266 Fcons (filename
, Qnil
));
3269 while (total_read
< trial
)
3271 nread
= read (fd
, buffer
+ total_read
, trial
- total_read
);
3273 error ("IO error reading %s: %s",
3274 XSTRING (filename
)->data
, strerror (errno
));
3275 total_read
+= nread
;
3277 /* Scan this bufferful from the end, comparing with
3278 the Emacs buffer. */
3279 bufpos
= total_read
;
3280 /* Compare with same_at_start to avoid counting some buffer text
3281 as matching both at the file's beginning and at the end. */
3282 while (bufpos
> 0 && same_at_end
> same_at_start
3283 && FETCH_BYTE (same_at_end
- 1) == buffer
[bufpos
- 1])
3284 same_at_end
--, bufpos
--;
3286 /* If we found a discrepancy, stop the scan.
3287 Otherwise loop around and scan the preceding bufferful. */
3290 /* If this discrepancy is because of code conversion,
3291 we cannot use this method; giveup and try the other. */
3292 if (same_at_end
> same_at_start
3293 && FETCH_BYTE (same_at_end
- 1) >= 0200
3294 && ! NILP (current_buffer
->enable_multibyte_characters
)
3295 && CODING_REQUIRE_CONVERSION (&coding
))
3296 giveup_match_end
= 1;
3302 if (! giveup_match_end
)
3304 /* We win! We can handle REPLACE the optimized way. */
3306 /* Extends the end of non-matching text area to multibyte
3307 character boundary. */
3308 if (! NILP (current_buffer
->enable_multibyte_characters
))
3309 while (same_at_end
< ZV
&& ! CHAR_HEAD_P (POS_ADDR (same_at_end
)))
3312 /* Don't try to reuse the same piece of text twice. */
3313 overlap
= same_at_start
- BEGV
- (same_at_end
+ st
.st_size
- ZV
);
3315 same_at_end
+= overlap
;
3317 /* Arrange to read only the nonmatching middle part of the file. */
3318 XSETFASTINT (beg
, XINT (beg
) + (same_at_start
- BEGV
));
3319 XSETFASTINT (end
, XINT (end
) - (ZV
- same_at_end
));
3321 del_range_1 (same_at_start
, same_at_end
, 0);
3322 /* Insert from the file at the proper position. */
3323 SET_PT (same_at_start
);
3325 /* If display currently starts at beginning of line,
3326 keep it that way. */
3327 if (XBUFFER (XWINDOW (selected_window
)->buffer
) == current_buffer
)
3328 XWINDOW (selected_window
)->start_at_line_beg
= Fbolp ();
3330 replace_handled
= 1;
3334 /* If requested, replace the accessible part of the buffer
3335 with the file contents. Avoid replacing text at the
3336 beginning or end of the buffer that matches the file contents;
3337 that preserves markers pointing to the unchanged parts.
3339 Here we implement this feature for the case where code conversion
3340 is needed, in a simple way that needs a lot of memory.
3341 The preceding if-statement handles the case of no conversion
3342 in a more optimized way. */
3343 if (!NILP (replace
) && ! replace_handled
)
3345 int same_at_start
= BEGV
;
3346 int same_at_end
= ZV
;
3349 /* Make sure that the gap is large enough. */
3350 int bufsize
= 2 * st
.st_size
;
3351 unsigned char *conversion_buffer
= (unsigned char *) xmalloc (bufsize
);
3353 /* First read the whole file, performing code conversion into
3354 CONVERSION_BUFFER. */
3356 if (lseek (fd
, XINT (beg
), 0) < 0)
3358 free (conversion_buffer
);
3359 report_file_error ("Setting file position",
3360 Fcons (filename
, Qnil
));
3363 total
= st
.st_size
; /* Total bytes in the file. */
3364 how_much
= 0; /* Bytes read from file so far. */
3365 inserted
= 0; /* Bytes put into CONVERSION_BUFFER so far. */
3366 unprocessed
= 0; /* Bytes not processed in previous loop. */
3368 while (how_much
< total
)
3370 /* try is reserved in some compilers (Microsoft C) */
3371 int trytry
= min (total
- how_much
, READ_BUF_SIZE
- unprocessed
);
3372 char *destination
= read_buf
+ unprocessed
;
3375 /* Allow quitting out of the actual I/O. */
3378 this = read (fd
, destination
, trytry
);
3381 if (this < 0 || this + unprocessed
== 0)
3389 if (CODING_REQUIRE_CONVERSION (&coding
))
3391 int require
, produced
, consumed
;
3393 this += unprocessed
;
3395 /* If we are using more space than estimated,
3396 make CONVERSION_BUFFER bigger. */
3397 require
= decoding_buffer_size (&coding
, this);
3398 if (inserted
+ require
+ 2 * (total
- how_much
) > bufsize
)
3400 bufsize
= inserted
+ require
+ 2 * (total
- how_much
);
3401 conversion_buffer
= (unsigned char *) xrealloc (conversion_buffer
, bufsize
);
3404 /* Convert this batch with results in CONVERSION_BUFFER. */
3405 if (how_much
>= total
) /* This is the last block. */
3406 coding
.last_block
= 1;
3407 produced
= decode_coding (&coding
, read_buf
,
3408 conversion_buffer
+ inserted
,
3409 this, bufsize
- inserted
,
3412 /* Save for next iteration whatever we didn't convert. */
3413 unprocessed
= this - consumed
;
3414 bcopy (read_buf
+ consumed
, read_buf
, unprocessed
);
3421 /* At this point, INSERTED is how many characters
3422 are present in CONVERSION_BUFFER.
3423 HOW_MUCH should equal TOTAL,
3424 or should be <= 0 if we couldn't read the file. */
3428 free (conversion_buffer
);
3431 error ("IO error reading %s: %s",
3432 XSTRING (filename
)->data
, strerror (errno
));
3433 else if (how_much
== -2)
3434 error ("maximum buffer size exceeded");
3437 /* Compare the beginning of the converted file
3438 with the buffer text. */
3441 while (bufpos
< inserted
&& same_at_start
< same_at_end
3442 && FETCH_BYTE (same_at_start
) == conversion_buffer
[bufpos
])
3443 same_at_start
++, bufpos
++;
3445 /* If the file matches the buffer completely,
3446 there's no need to replace anything. */
3448 if (bufpos
== inserted
)
3450 free (conversion_buffer
);
3453 /* Truncate the buffer to the size of the file. */
3454 del_range_1 (same_at_start
, same_at_end
, 0);
3458 /* Scan this bufferful from the end, comparing with
3459 the Emacs buffer. */
3462 /* Compare with same_at_start to avoid counting some buffer text
3463 as matching both at the file's beginning and at the end. */
3464 while (bufpos
> 0 && same_at_end
> same_at_start
3465 && FETCH_BYTE (same_at_end
- 1) == conversion_buffer
[bufpos
- 1])
3466 same_at_end
--, bufpos
--;
3468 /* Don't try to reuse the same piece of text twice. */
3469 overlap
= same_at_start
- BEGV
- (same_at_end
+ inserted
- ZV
);
3471 same_at_end
+= overlap
;
3473 /* If display currently starts at beginning of line,
3474 keep it that way. */
3475 if (XBUFFER (XWINDOW (selected_window
)->buffer
) == current_buffer
)
3476 XWINDOW (selected_window
)->start_at_line_beg
= Fbolp ();
3478 /* Replace the chars that we need to replace,
3479 and update INSERTED to equal the number of bytes
3480 we are taking from the file. */
3481 inserted
-= (Z
- same_at_end
) + (same_at_start
- BEG
);
3482 move_gap (same_at_start
);
3483 del_range_1 (same_at_start
, same_at_end
, 0);
3484 SET_PT (same_at_start
);
3485 insert_1 (conversion_buffer
+ same_at_start
- BEG
, inserted
, 0, 0);
3487 free (conversion_buffer
);
3496 register Lisp_Object temp
;
3498 total
= XINT (end
) - XINT (beg
);
3500 /* Make sure point-max won't overflow after this insertion. */
3501 XSETINT (temp
, total
);
3502 if (total
!= XINT (temp
))
3503 error ("Maximum buffer size exceeded");
3506 /* For a special file, all we can do is guess. */
3507 total
= READ_BUF_SIZE
;
3509 if (NILP (visit
) && total
> 0)
3510 prepare_to_modify_buffer (PT
, PT
, NULL
);
3513 if (GAP_SIZE
< total
)
3514 make_gap (total
- GAP_SIZE
);
3516 if (XINT (beg
) != 0 || !NILP (replace
))
3518 if (lseek (fd
, XINT (beg
), 0) < 0)
3519 report_file_error ("Setting file position", Fcons (filename
, Qnil
));
3522 /* In the following loop, HOW_MUCH contains the total bytes read so
3523 far. Before exiting the loop, it is set to -1 if I/O error
3524 occurs, set to -2 if the maximum buffer size is exceeded. */
3526 /* Total bytes inserted. */
3528 /* Bytes not processed in the previous loop because short gap size. */
3530 while (how_much
< total
)
3532 /* try is reserved in some compilers (Microsoft C) */
3533 int trytry
= min (total
- how_much
, READ_BUF_SIZE
- unprocessed
);
3534 char *destination
= (CODING_REQUIRE_CONVERSION (&coding
)
3535 ? read_buf
+ unprocessed
3536 : (char *) (POS_ADDR (PT
+ inserted
- 1) + 1));
3539 /* Allow quitting out of the actual I/O. */
3542 this = read (fd
, destination
, trytry
);
3545 if (this < 0 || this + unprocessed
== 0)
3551 /* For a regular file, where TOTAL is the real size,
3552 count HOW_MUCH to compare with it.
3553 For a special file, where TOTAL is just a buffer size,
3554 so don't bother counting in HOW_MUCH.
3555 (INSERTED is where we count the number of characters inserted.) */
3559 if (CODING_REQUIRE_CONVERSION (&coding
))
3561 int require
, produced
, consumed
;
3563 this += unprocessed
;
3564 /* Make sure that the gap is large enough. */
3565 require
= decoding_buffer_size (&coding
, this);
3566 if (GAP_SIZE
< require
)
3567 make_gap (require
- GAP_SIZE
);
3571 if (how_much
>= total
) /* This is the last block. */
3572 coding
.last_block
= 1;
3576 /* If we encounter EOF, say it is the last block. (The
3577 data this will apply to is the UNPROCESSED characters
3578 carried over from the last batch.) */
3580 coding
.last_block
= 1;
3583 produced
= decode_coding (&coding
, read_buf
,
3584 POS_ADDR (PT
+ inserted
- 1) + 1,
3585 this, GAP_SIZE
, &consumed
);
3590 XSET (temp
, Lisp_Int
, Z
+ produced
);
3591 if (Z
+ produced
!= XINT (temp
))
3597 unprocessed
= this - consumed
;
3598 bcopy (read_buf
+ consumed
, read_buf
, unprocessed
);
3607 /* Put an anchor to ensure multi-byte form ends at gap. */
3612 /* We don't have to consider file type of MSDOS because all files
3613 are read as binary and end-of-line format has already been
3614 decoded appropriately. */
3617 /* Demacs 1.1.1 91/10/16 HIRANO Satoshi, MW July 1993 */
3618 /* Determine file type from name and remove LFs from CR-LFs if the file
3619 is deemed to be a text file. */
3621 current_buffer
->buffer_file_type
3622 = call1 (Qfind_buffer_file_type
, filename
);
3623 if (NILP (current_buffer
->buffer_file_type
))
3626 = inserted
- crlf_to_lf (inserted
, POS_ADDR (PT
- 1) + 1);
3629 GPT
-= reduced_size
;
3630 GAP_SIZE
+= reduced_size
;
3631 inserted
-= reduced_size
;
3639 record_insert (PT
, inserted
);
3641 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */
3642 offset_intervals (current_buffer
, PT
, inserted
);
3648 /* Discard the unwind protect for closing the file. */
3652 error ("IO error reading %s: %s",
3653 XSTRING (filename
)->data
, strerror (errno
));
3654 else if (how_much
== -2)
3655 error ("maximum buffer size exceeded");
3662 if (!EQ (current_buffer
->undo_list
, Qt
))
3663 current_buffer
->undo_list
= Qnil
;
3665 stat (XSTRING (filename
)->data
, &st
);
3670 current_buffer
->modtime
= st
.st_mtime
;
3671 current_buffer
->filename
= filename
;
3674 SAVE_MODIFF
= MODIFF
;
3675 current_buffer
->auto_save_modified
= MODIFF
;
3676 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
3677 #ifdef CLASH_DETECTION
3680 if (!NILP (current_buffer
->file_truename
))
3681 unlock_file (current_buffer
->file_truename
);
3682 unlock_file (filename
);
3684 #endif /* CLASH_DETECTION */
3686 Fsignal (Qfile_error
,
3687 Fcons (build_string ("not a regular file"),
3688 Fcons (filename
, Qnil
)));
3690 /* If visiting nonexistent file, return nil. */
3691 if (current_buffer
->modtime
== -1)
3692 report_file_error ("Opening input file", Fcons (filename
, Qnil
));
3695 /* Decode file format */
3698 insval
= call3 (Qformat_decode
,
3699 Qnil
, make_number (inserted
), visit
);
3700 CHECK_NUMBER (insval
, 0);
3701 inserted
= XFASTINT (insval
);
3704 /* Call after-change hooks for the inserted text, aside from the case
3705 of normal visiting (not with REPLACE), which is done in a new buffer
3706 "before" the buffer is changed. */
3707 if (inserted
> 0 && total
> 0
3708 && (NILP (visit
) || !NILP (replace
)))
3709 signal_after_change (PT
, 0, inserted
);
3713 p
= Vafter_insert_file_functions
;
3714 if (!NILP (coding
.post_read_conversion
))
3715 p
= Fcons (coding
.post_read_conversion
, p
);
3719 insval
= call1 (Fcar (p
), make_number (inserted
));
3722 CHECK_NUMBER (insval
, 0);
3723 inserted
= XFASTINT (insval
);
3731 val
= Fcons (filename
,
3732 Fcons (make_number (inserted
),
3735 RETURN_UNGCPRO (unbind_to (count
, val
));
3738 static Lisp_Object
build_annotations ();
3739 extern Lisp_Object
Ffile_locked_p ();
3741 /* If build_annotations switched buffers, switch back to BUF.
3742 Kill the temporary buffer that was selected in the meantime.
3744 Since this kill only the last temporary buffer, some buffers remain
3745 not killed if build_annotations switched buffers more than once.
3749 build_annotations_unwind (buf
)
3754 if (XBUFFER (buf
) == current_buffer
)
3756 tembuf
= Fcurrent_buffer ();
3758 Fkill_buffer (tembuf
);
3762 DEFUN ("write-region", Fwrite_region
, Swrite_region
, 3, 6,
3763 "r\nFWrite region to file: ",
3764 "Write current region into specified file.\n\
3765 When called from a program, takes three arguments:\n\
3766 START, END and FILENAME. START and END are buffer positions.\n\
3767 Optional fourth argument APPEND if non-nil means\n\
3768 append to existing file contents (if any).\n\
3769 Optional fifth argument VISIT if t means\n\
3770 set the last-save-file-modtime of buffer to this file's modtime\n\
3771 and mark buffer not modified.\n\
3772 If VISIT is a string, it is a second file name;\n\
3773 the output goes to FILENAME, but the buffer is marked as visiting VISIT.\n\
3774 VISIT is also the file name to lock and unlock for clash detection.\n\
3775 If VISIT is neither t nor nil nor a string,\n\
3776 that means do not print the \"Wrote file\" message.\n\
3777 The optional sixth arg LOCKNAME, if non-nil, specifies the name to\n\
3778 use for locking and unlocking, overriding FILENAME and VISIT.\n\
3779 Kludgy feature: if START is a string, then that string is written\n\
3780 to the file, instead of any buffer contents, and END is ignored.")
3781 (start
, end
, filename
, append
, visit
, lockname
)
3782 Lisp_Object start
, end
, filename
, append
, visit
, lockname
;
3790 int count
= specpdl_ptr
- specpdl
;
3793 unsigned char *fname
= 0; /* If non-0, original filename (must rename) */
3795 Lisp_Object handler
;
3796 Lisp_Object visit_file
;
3797 Lisp_Object annotations
;
3798 int visiting
, quietly
;
3799 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
3800 struct buffer
*given_buffer
;
3802 int buffer_file_type
= O_BINARY
;
3804 struct coding_system coding
;
3806 if (current_buffer
->base_buffer
&& ! NILP (visit
))
3807 error ("Cannot do file visiting in an indirect buffer");
3809 if (!NILP (start
) && !STRINGP (start
))
3810 validate_region (&start
, &end
);
3812 GCPRO4 (start
, filename
, visit
, lockname
);
3814 /* Decide the coding-system to be encoded to. */
3820 else if (!NILP (Vcoding_system_for_write
))
3821 val
= Vcoding_system_for_write
;
3822 else if (NILP (current_buffer
->enable_multibyte_characters
)
3823 || !NILP (Flocal_variable_if_set_p (Qbuffer_file_coding_system
,
3825 val
= Fsymbol_value (Qbuffer_file_coding_system
);
3828 Lisp_Object args
[7], coding_systems
;
3830 args
[0] = Qwrite_region
, args
[1] = start
, args
[2] = end
,
3831 args
[3] = filename
, args
[4] = append
, args
[5] = visit
,
3833 coding_systems
= Ffind_operation_coding_system (7, args
);
3834 val
= (CONSP (coding_systems
)
3835 ? XCONS (coding_systems
)->cdr
3836 : current_buffer
->buffer_file_coding_system
);
3838 setup_coding_system (Fcheck_coding_system (val
), &coding
);
3839 if (!STRINGP (start
) && !NILP (current_buffer
->selective_display
))
3840 coding
.selective
= 1;
3842 if (!NILP (current_buffer
->buffer_file_type
))
3843 coding
.eol_type
= CODING_EOL_LF
;
3847 filename
= Fexpand_file_name (filename
, Qnil
);
3848 if (STRINGP (visit
))
3849 visit_file
= Fexpand_file_name (visit
, Qnil
);
3851 visit_file
= filename
;
3854 visiting
= (EQ (visit
, Qt
) || STRINGP (visit
));
3855 quietly
= !NILP (visit
);
3859 if (NILP (lockname
))
3860 lockname
= visit_file
;
3862 GCPRO5 (start
, filename
, annotations
, visit_file
, lockname
);
3864 /* If the file name has special constructs in it,
3865 call the corresponding file handler. */
3866 handler
= Ffind_file_name_handler (filename
, Qwrite_region
);
3867 /* If FILENAME has no handler, see if VISIT has one. */
3868 if (NILP (handler
) && STRINGP (visit
))
3869 handler
= Ffind_file_name_handler (visit
, Qwrite_region
);
3871 if (!NILP (handler
))
3874 val
= call6 (handler
, Qwrite_region
, start
, end
,
3875 filename
, append
, visit
);
3879 SAVE_MODIFF
= MODIFF
;
3880 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
3881 current_buffer
->filename
= visit_file
;
3887 /* Special kludge to simplify auto-saving. */
3890 XSETFASTINT (start
, BEG
);
3891 XSETFASTINT (end
, Z
);
3894 record_unwind_protect (build_annotations_unwind
, Fcurrent_buffer ());
3895 count1
= specpdl_ptr
- specpdl
;
3897 given_buffer
= current_buffer
;
3898 annotations
= build_annotations (start
, end
, coding
.pre_write_conversion
);
3899 if (current_buffer
!= given_buffer
)
3901 XSETFASTINT (start
, BEGV
);
3902 XSETFASTINT (end
, ZV
);
3905 #ifdef CLASH_DETECTION
3908 /* If we've locked this file for some other buffer,
3909 query before proceeding. */
3910 if (!visiting
&& EQ (Ffile_locked_p (lockname
), Qt
))
3911 call2 (intern ("ask-user-about-lock"), filename
, Vuser_login_name
);
3913 lock_file (lockname
);
3915 #endif /* CLASH_DETECTION */
3917 fn
= XSTRING (filename
)->data
;
3921 desc
= open (fn
, O_WRONLY
| buffer_file_type
);
3922 #else /* not DOS_NT */
3923 desc
= open (fn
, O_WRONLY
);
3924 #endif /* not DOS_NT */
3926 if (desc
< 0 && (NILP (append
) || errno
== ENOENT
) )
3928 if (auto_saving
) /* Overwrite any previous version of autosave file */
3930 vms_truncate (fn
); /* if fn exists, truncate to zero length */
3931 desc
= open (fn
, O_RDWR
);
3933 desc
= creat_copy_attrs (STRINGP (current_buffer
->filename
)
3934 ? XSTRING (current_buffer
->filename
)->data
: 0,
3937 else /* Write to temporary name and rename if no errors */
3939 Lisp_Object temp_name
;
3940 temp_name
= Ffile_name_directory (filename
);
3942 if (!NILP (temp_name
))
3944 temp_name
= Fmake_temp_name (concat2 (temp_name
,
3945 build_string ("$$SAVE$$")));
3946 fname
= XSTRING (filename
)->data
;
3947 fn
= XSTRING (temp_name
)->data
;
3948 desc
= creat_copy_attrs (fname
, fn
);
3951 /* If we can't open the temporary file, try creating a new
3952 version of the original file. VMS "creat" creates a
3953 new version rather than truncating an existing file. */
3956 desc
= creat (fn
, 0666);
3957 #if 0 /* This can clobber an existing file and fail to replace it,
3958 if the user runs out of space. */
3961 /* We can't make a new version;
3962 try to truncate and rewrite existing version if any. */
3964 desc
= open (fn
, O_RDWR
);
3970 desc
= creat (fn
, 0666);
3975 O_WRONLY
| O_TRUNC
| O_CREAT
| buffer_file_type
,
3976 S_IREAD
| S_IWRITE
);
3977 #else /* not DOS_NT */
3978 desc
= creat (fn
, auto_saving
? auto_save_mode_bits
: 0666);
3979 #endif /* not DOS_NT */
3980 #endif /* not VMS */
3986 #ifdef CLASH_DETECTION
3988 if (!auto_saving
) unlock_file (lockname
);
3990 #endif /* CLASH_DETECTION */
3991 report_file_error ("Opening output file", Fcons (filename
, Qnil
));
3994 record_unwind_protect (close_file_unwind
, make_number (desc
));
3997 if (lseek (desc
, 0, 2) < 0)
3999 #ifdef CLASH_DETECTION
4000 if (!auto_saving
) unlock_file (lockname
);
4001 #endif /* CLASH_DETECTION */
4002 report_file_error ("Lseek error", Fcons (filename
, Qnil
));
4007 * Kludge Warning: The VMS C RTL likes to insert carriage returns
4008 * if we do writes that don't end with a carriage return. Furthermore
4009 * it cannot handle writes of more then 16K. The modified
4010 * version of "sys_write" in SYSDEP.C (see comment there) copes with
4011 * this EXCEPT for the last record (iff it doesn't end with a carriage
4012 * return). This implies that if your buffer doesn't end with a carriage
4013 * return, you get one free... tough. However it also means that if
4014 * we make two calls to sys_write (a la the following code) you can
4015 * get one at the gap as well. The easiest way to fix this (honest)
4016 * is to move the gap to the next newline (or the end of the buffer).
4021 if (GPT
> BEG
&& GPT_ADDR
[-1] != '\n')
4022 move_gap (find_next_newline (GPT
, 1));
4024 /* Whether VMS or not, we must move the gap to the next of newline
4025 when we must put designation sequences at beginning of line. */
4026 if (INTEGERP (start
)
4027 && coding
.type
== coding_type_iso2022
4028 && coding
.flags
& CODING_FLAG_ISO_DESIGNATE_AT_BOL
4029 && GPT
> BEG
&& GPT_ADDR
[-1] != '\n')
4030 move_gap (find_next_newline (GPT
, 1));
4036 if (STRINGP (start
))
4038 failure
= 0 > a_write (desc
, XSTRING (start
)->data
,
4039 XSTRING (start
)->size
, 0, &annotations
, &coding
);
4042 else if (XINT (start
) != XINT (end
))
4045 if (XINT (start
) < GPT
)
4047 register int end1
= XINT (end
);
4049 failure
= 0 > a_write (desc
, POS_ADDR (tem
),
4050 min (GPT
, end1
) - tem
, tem
, &annotations
,
4052 nwritten
+= min (GPT
, end1
) - tem
;
4056 if (XINT (end
) > GPT
&& !failure
)
4059 tem
= max (tem
, GPT
);
4060 failure
= 0 > a_write (desc
, POS_ADDR (tem
), XINT (end
) - tem
,
4061 tem
, &annotations
, &coding
);
4062 nwritten
+= XINT (end
) - tem
;
4068 /* If file was empty, still need to write the annotations */
4069 coding
.last_block
= 1;
4070 failure
= 0 > a_write (desc
, "", 0, XINT (start
), &annotations
, &coding
);
4074 if (coding
.require_flushing
)
4076 /* We have to flush out a data. */
4077 coding
.last_block
= 1;
4078 failure
= 0 > e_write (desc
, "", 0, &coding
);
4085 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
4086 Disk full in NFS may be reported here. */
4087 /* mib says that closing the file will try to write as fast as NFS can do
4088 it, and that means the fsync here is not crucial for autosave files. */
4089 if (!auto_saving
&& fsync (desc
) < 0)
4091 /* If fsync fails with EINTR, don't treat that as serious. */
4093 failure
= 1, save_errno
= errno
;
4097 /* Spurious "file has changed on disk" warnings have been
4098 observed on Suns as well.
4099 It seems that `close' can change the modtime, under nfs.
4101 (This has supposedly been fixed in Sunos 4,
4102 but who knows about all the other machines with NFS?) */
4105 /* On VMS and APOLLO, must do the stat after the close
4106 since closing changes the modtime. */
4109 /* Recall that #if defined does not work on VMS. */
4116 /* NFS can report a write failure now. */
4117 if (close (desc
) < 0)
4118 failure
= 1, save_errno
= errno
;
4121 /* If we wrote to a temporary name and had no errors, rename to real name. */
4125 failure
= (rename (fn
, fname
) != 0), save_errno
= errno
;
4133 /* Discard the unwind protect for close_file_unwind. */
4134 specpdl_ptr
= specpdl
+ count1
;
4135 /* Restore the original current buffer. */
4136 visit_file
= unbind_to (count
, visit_file
);
4138 #ifdef CLASH_DETECTION
4140 unlock_file (lockname
);
4141 #endif /* CLASH_DETECTION */
4143 /* Do this before reporting IO error
4144 to avoid a "file has changed on disk" warning on
4145 next attempt to save. */
4147 current_buffer
->modtime
= st
.st_mtime
;
4150 error ("IO error writing %s: %s", fn
, strerror (save_errno
));
4154 SAVE_MODIFF
= MODIFF
;
4155 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
4156 current_buffer
->filename
= visit_file
;
4157 update_mode_lines
++;
4163 message ("Wrote %s", XSTRING (visit_file
)->data
);
4168 Lisp_Object
merge ();
4170 DEFUN ("car-less-than-car", Fcar_less_than_car
, Scar_less_than_car
, 2, 2, 0,
4171 "Return t if (car A) is numerically less than (car B).")
4175 return Flss (Fcar (a
), Fcar (b
));
4178 /* Build the complete list of annotations appropriate for writing out
4179 the text between START and END, by calling all the functions in
4180 write-region-annotate-functions and merging the lists they return.
4181 If one of these functions switches to a different buffer, we assume
4182 that buffer contains altered text. Therefore, the caller must
4183 make sure to restore the current buffer in all cases,
4184 as save-excursion would do. */
4187 build_annotations (start
, end
, pre_write_conversion
)
4188 Lisp_Object start
, end
, pre_write_conversion
;
4190 Lisp_Object annotations
;
4192 struct gcpro gcpro1
, gcpro2
;
4193 Lisp_Object original_buffer
;
4195 XSETBUFFER (original_buffer
, current_buffer
);
4198 p
= Vwrite_region_annotate_functions
;
4199 GCPRO2 (annotations
, p
);
4202 struct buffer
*given_buffer
= current_buffer
;
4203 Vwrite_region_annotations_so_far
= annotations
;
4204 res
= call2 (Fcar (p
), start
, end
);
4205 /* If the function makes a different buffer current,
4206 assume that means this buffer contains altered text to be output.
4207 Reset START and END from the buffer bounds
4208 and discard all previous annotations because they should have
4209 been dealt with by this function. */
4210 if (current_buffer
!= given_buffer
)
4212 XSETFASTINT (start
, BEGV
);
4213 XSETFASTINT (end
, ZV
);
4216 Flength (res
); /* Check basic validity of return value */
4217 annotations
= merge (annotations
, res
, Qcar_less_than_car
);
4221 /* Now do the same for annotation functions implied by the file-format */
4222 if (auto_saving
&& (!EQ (Vauto_save_file_format
, Qt
)))
4223 p
= Vauto_save_file_format
;
4225 p
= current_buffer
->file_format
;
4228 struct buffer
*given_buffer
= current_buffer
;
4229 Vwrite_region_annotations_so_far
= annotations
;
4230 res
= call4 (Qformat_annotate_function
, Fcar (p
), start
, end
,
4232 if (current_buffer
!= given_buffer
)
4234 XSETFASTINT (start
, BEGV
);
4235 XSETFASTINT (end
, ZV
);
4239 annotations
= merge (annotations
, res
, Qcar_less_than_car
);
4243 /* At last, do the same for the function PRE_WRITE_CONVERSION
4244 implied by the current coding-system. */
4245 if (!NILP (pre_write_conversion
))
4247 struct buffer
*given_buffer
= current_buffer
;
4248 Vwrite_region_annotations_so_far
= annotations
;
4249 res
= call2 (pre_write_conversion
, start
, end
);
4251 annotations
= (current_buffer
!= given_buffer
4253 : merge (annotations
, res
, Qcar_less_than_car
));
4260 /* Write to descriptor DESC the LEN characters starting at ADDR,
4261 assuming they start at position POS in the buffer.
4262 Intersperse with them the annotations from *ANNOT
4263 (those which fall within the range of positions POS to POS + LEN),
4264 each at its appropriate position.
4266 Modify *ANNOT by discarding elements as we output them.
4267 The return value is negative in case of system call failure. */
4270 a_write (desc
, addr
, len
, pos
, annot
, coding
)
4272 register char *addr
;
4276 struct coding_system
*coding
;
4280 int lastpos
= pos
+ len
;
4282 while (NILP (*annot
) || CONSP (*annot
))
4284 tem
= Fcar_safe (Fcar (*annot
));
4285 if (INTEGERP (tem
) && XINT (tem
) >= pos
&& XFASTINT (tem
) <= lastpos
)
4286 nextpos
= XFASTINT (tem
);
4288 return e_write (desc
, addr
, lastpos
- pos
, coding
);
4291 if (0 > e_write (desc
, addr
, nextpos
- pos
, coding
))
4293 addr
+= nextpos
- pos
;
4296 tem
= Fcdr (Fcar (*annot
));
4299 if (0 > e_write (desc
, XSTRING (tem
)->data
, XSTRING (tem
)->size
,
4303 *annot
= Fcdr (*annot
);
4307 #ifndef WRITE_BUF_SIZE
4308 #define WRITE_BUF_SIZE (16 * 1024)
4312 e_write (desc
, addr
, len
, coding
)
4314 register char *addr
;
4316 struct coding_system
*coding
;
4318 char buf
[WRITE_BUF_SIZE
];
4319 int produced
, consumed
;
4321 /* We used to have a code for handling selective display here. But,
4322 now it is handled within encode_coding. */
4325 produced
= encode_coding (coding
, addr
, buf
, len
, WRITE_BUF_SIZE
,
4327 len
-= consumed
, addr
+= consumed
;
4330 produced
-= write (desc
, buf
, produced
);
4331 if (produced
) return -1;
4339 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime
,
4340 Sverify_visited_file_modtime
, 1, 1, 0,
4341 "Return t if last mod time of BUF's visited file matches what BUF records.\n\
4342 This means that the file has not been changed since it was visited or saved.")
4348 Lisp_Object handler
;
4350 CHECK_BUFFER (buf
, 0);
4353 if (!STRINGP (b
->filename
)) return Qt
;
4354 if (b
->modtime
== 0) return Qt
;
4356 /* If the file name has special constructs in it,
4357 call the corresponding file handler. */
4358 handler
= Ffind_file_name_handler (b
->filename
,
4359 Qverify_visited_file_modtime
);
4360 if (!NILP (handler
))
4361 return call2 (handler
, Qverify_visited_file_modtime
, buf
);
4363 if (stat (XSTRING (b
->filename
)->data
, &st
) < 0)
4365 /* If the file doesn't exist now and didn't exist before,
4366 we say that it isn't modified, provided the error is a tame one. */
4367 if (errno
== ENOENT
|| errno
== EACCES
|| errno
== ENOTDIR
)
4372 if (st
.st_mtime
== b
->modtime
4373 /* If both are positive, accept them if they are off by one second. */
4374 || (st
.st_mtime
> 0 && b
->modtime
> 0
4375 && (st
.st_mtime
== b
->modtime
+ 1
4376 || st
.st_mtime
== b
->modtime
- 1)))
4381 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime
,
4382 Sclear_visited_file_modtime
, 0, 0, 0,
4383 "Clear out records of last mod time of visited file.\n\
4384 Next attempt to save will certainly not complain of a discrepancy.")
4387 current_buffer
->modtime
= 0;
4391 DEFUN ("visited-file-modtime", Fvisited_file_modtime
,
4392 Svisited_file_modtime
, 0, 0, 0,
4393 "Return the current buffer's recorded visited file modification time.\n\
4394 The value is a list of the form (HIGH . LOW), like the time values\n\
4395 that `file-attributes' returns.")
4398 return long_to_cons ((unsigned long) current_buffer
->modtime
);
4401 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime
,
4402 Sset_visited_file_modtime
, 0, 1, 0,
4403 "Update buffer's recorded modification time from the visited file's time.\n\
4404 Useful if the buffer was not read from the file normally\n\
4405 or if the file itself has been changed for some known benign reason.\n\
4406 An argument specifies the modification time value to use\n\
4407 \(instead of that of the visited file), in the form of a list\n\
4408 \(HIGH . LOW) or (HIGH LOW).")
4410 Lisp_Object time_list
;
4412 if (!NILP (time_list
))
4413 current_buffer
->modtime
= cons_to_long (time_list
);
4416 register Lisp_Object filename
;
4418 Lisp_Object handler
;
4420 filename
= Fexpand_file_name (current_buffer
->filename
, Qnil
);
4422 /* If the file name has special constructs in it,
4423 call the corresponding file handler. */
4424 handler
= Ffind_file_name_handler (filename
, Qset_visited_file_modtime
);
4425 if (!NILP (handler
))
4426 /* The handler can find the file name the same way we did. */
4427 return call2 (handler
, Qset_visited_file_modtime
, Qnil
);
4428 else if (stat (XSTRING (filename
)->data
, &st
) >= 0)
4429 current_buffer
->modtime
= st
.st_mtime
;
4439 message ("Autosaving...error for %s", XSTRING (current_buffer
->name
)->data
);
4440 Fsleep_for (make_number (1), Qnil
);
4441 message ("Autosaving...error!for %s", XSTRING (current_buffer
->name
)->data
);
4442 Fsleep_for (make_number (1), Qnil
);
4443 message ("Autosaving...error for %s", XSTRING (current_buffer
->name
)->data
);
4444 Fsleep_for (make_number (1), Qnil
);
4454 /* Get visited file's mode to become the auto save file's mode. */
4455 if (stat (XSTRING (current_buffer
->filename
)->data
, &st
) >= 0)
4456 /* But make sure we can overwrite it later! */
4457 auto_save_mode_bits
= st
.st_mode
| 0600;
4459 auto_save_mode_bits
= 0666;
4462 Fwrite_region (Qnil
, Qnil
,
4463 current_buffer
->auto_save_file_name
,
4464 Qnil
, Qlambda
, Qnil
);
4468 do_auto_save_unwind (stream
) /* used as unwind-protect function */
4473 fclose ((FILE *) (XFASTINT (XCONS (stream
)->car
) << 16
4474 | XFASTINT (XCONS (stream
)->cdr
)));
4478 DEFUN ("do-auto-save", Fdo_auto_save
, Sdo_auto_save
, 0, 2, "",
4479 "Auto-save all buffers that need it.\n\
4480 This is all buffers that have auto-saving enabled\n\
4481 and are changed since last auto-saved.\n\
4482 Auto-saving writes the buffer into a file\n\
4483 so that your editing is not lost if the system crashes.\n\
4484 This file is not the file you visited; that changes only when you save.\n\
4485 Normally we run the normal hook `auto-save-hook' before saving.\n\n\
4486 A non-nil NO-MESSAGE argument means do not print any message if successful.\n\
4487 A non-nil CURRENT-ONLY argument means save only current buffer.")
4488 (no_message
, current_only
)
4489 Lisp_Object no_message
, current_only
;
4491 struct buffer
*old
= current_buffer
, *b
;
4492 Lisp_Object tail
, buf
;
4494 char *omessage
= echo_area_glyphs
;
4495 int omessage_length
= echo_area_glyphs_length
;
4496 int do_handled_files
;
4499 Lisp_Object lispstream
;
4500 int count
= specpdl_ptr
- specpdl
;
4503 /* Ordinarily don't quit within this function,
4504 but don't make it impossible to quit (in case we get hung in I/O). */
4508 /* No GCPRO needed, because (when it matters) all Lisp_Object variables
4509 point to non-strings reached from Vbuffer_alist. */
4514 if (!NILP (Vrun_hooks
))
4515 call1 (Vrun_hooks
, intern ("auto-save-hook"));
4517 if (STRINGP (Vauto_save_list_file_name
))
4519 Lisp_Object listfile
;
4520 listfile
= Fexpand_file_name (Vauto_save_list_file_name
, Qnil
);
4521 stream
= fopen (XSTRING (listfile
)->data
, "w");
4523 /* Arrange to close that file whether or not we get an error.
4524 Also reset auto_saving to 0. */
4525 lispstream
= Fcons (Qnil
, Qnil
);
4526 XSETFASTINT (XCONS (lispstream
)->car
, (EMACS_UINT
)stream
>> 16);
4527 XSETFASTINT (XCONS (lispstream
)->cdr
, (EMACS_UINT
)stream
& 0xffff);
4535 record_unwind_protect (do_auto_save_unwind
, lispstream
);
4539 /* First, save all files which don't have handlers. If Emacs is
4540 crashing, the handlers may tweak what is causing Emacs to crash
4541 in the first place, and it would be a shame if Emacs failed to
4542 autosave perfectly ordinary files because it couldn't handle some
4544 for (do_handled_files
= 0; do_handled_files
< 2; do_handled_files
++)
4545 for (tail
= Vbuffer_alist
; GC_CONSP (tail
); tail
= XCONS (tail
)->cdr
)
4547 buf
= XCONS (XCONS (tail
)->car
)->cdr
;
4550 /* Record all the buffers that have auto save mode
4551 in the special file that lists them. For each of these buffers,
4552 Record visited name (if any) and auto save name. */
4553 if (STRINGP (b
->auto_save_file_name
)
4554 && stream
!= NULL
&& do_handled_files
== 0)
4556 if (!NILP (b
->filename
))
4558 fwrite (XSTRING (b
->filename
)->data
, 1,
4559 XSTRING (b
->filename
)->size
, stream
);
4561 putc ('\n', stream
);
4562 fwrite (XSTRING (b
->auto_save_file_name
)->data
, 1,
4563 XSTRING (b
->auto_save_file_name
)->size
, stream
);
4564 putc ('\n', stream
);
4567 if (!NILP (current_only
)
4568 && b
!= current_buffer
)
4571 /* Don't auto-save indirect buffers.
4572 The base buffer takes care of it. */
4576 /* Check for auto save enabled
4577 and file changed since last auto save
4578 and file changed since last real save. */
4579 if (STRINGP (b
->auto_save_file_name
)
4580 && BUF_SAVE_MODIFF (b
) < BUF_MODIFF (b
)
4581 && b
->auto_save_modified
< BUF_MODIFF (b
)
4582 /* -1 means we've turned off autosaving for a while--see below. */
4583 && XINT (b
->save_length
) >= 0
4584 && (do_handled_files
4585 || NILP (Ffind_file_name_handler (b
->auto_save_file_name
,
4588 EMACS_TIME before_time
, after_time
;
4590 EMACS_GET_TIME (before_time
);
4592 /* If we had a failure, don't try again for 20 minutes. */
4593 if (b
->auto_save_failure_time
>= 0
4594 && EMACS_SECS (before_time
) - b
->auto_save_failure_time
< 1200)
4597 if ((XFASTINT (b
->save_length
) * 10
4598 > (BUF_Z (b
) - BUF_BEG (b
)) * 13)
4599 /* A short file is likely to change a large fraction;
4600 spare the user annoying messages. */
4601 && XFASTINT (b
->save_length
) > 5000
4602 /* These messages are frequent and annoying for `*mail*'. */
4603 && !EQ (b
->filename
, Qnil
)
4604 && NILP (no_message
))
4606 /* It has shrunk too much; turn off auto-saving here. */
4607 message ("Buffer %s has shrunk a lot; auto save turned off there",
4608 XSTRING (b
->name
)->data
);
4609 /* Turn off auto-saving until there's a real save,
4610 and prevent any more warnings. */
4611 XSETINT (b
->save_length
, -1);
4612 Fsleep_for (make_number (1), Qnil
);
4615 set_buffer_internal (b
);
4616 if (!auto_saved
&& NILP (no_message
))
4617 message1 ("Auto-saving...");
4618 internal_condition_case (auto_save_1
, Qt
, auto_save_error
);
4620 b
->auto_save_modified
= BUF_MODIFF (b
);
4621 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
4622 set_buffer_internal (old
);
4624 EMACS_GET_TIME (after_time
);
4626 /* If auto-save took more than 60 seconds,
4627 assume it was an NFS failure that got a timeout. */
4628 if (EMACS_SECS (after_time
) - EMACS_SECS (before_time
) > 60)
4629 b
->auto_save_failure_time
= EMACS_SECS (after_time
);
4633 /* Prevent another auto save till enough input events come in. */
4634 record_auto_save ();
4636 if (auto_saved
&& NILP (no_message
))
4640 sit_for (1, 0, 0, 0, 0);
4641 message2 (omessage
, omessage_length
);
4644 message1 ("Auto-saving...done");
4649 unbind_to (count
, Qnil
);
4653 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved
,
4654 Sset_buffer_auto_saved
, 0, 0, 0,
4655 "Mark current buffer as auto-saved with its current text.\n\
4656 No auto-save file will be written until the buffer changes again.")
4659 current_buffer
->auto_save_modified
= MODIFF
;
4660 XSETFASTINT (current_buffer
->save_length
, Z
- BEG
);
4661 current_buffer
->auto_save_failure_time
= -1;
4665 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure
,
4666 Sclear_buffer_auto_save_failure
, 0, 0, 0,
4667 "Clear any record of a recent auto-save failure in the current buffer.")
4670 current_buffer
->auto_save_failure_time
= -1;
4674 DEFUN ("recent-auto-save-p", Frecent_auto_save_p
, Srecent_auto_save_p
,
4676 "Return t if buffer has been auto-saved since last read in or saved.")
4679 return (SAVE_MODIFF
< current_buffer
->auto_save_modified
) ? Qt
: Qnil
;
4682 /* Reading and completing file names */
4683 extern Lisp_Object
Ffile_name_completion (), Ffile_name_all_completions ();
4685 /* In the string VAL, change each $ to $$ and return the result. */
4688 double_dollars (val
)
4691 register unsigned char *old
, *new;
4695 osize
= XSTRING (val
)->size
;
4696 /* Quote "$" as "$$" to get it past substitute-in-file-name */
4697 for (n
= osize
, count
= 0, old
= XSTRING (val
)->data
; n
> 0; n
--)
4698 if (*old
++ == '$') count
++;
4701 old
= XSTRING (val
)->data
;
4702 val
= Fmake_string (make_number (osize
+ count
), make_number (0));
4703 new = XSTRING (val
)->data
;
4704 for (n
= osize
; n
> 0; n
--)
4717 DEFUN ("read-file-name-internal", Fread_file_name_internal
, Sread_file_name_internal
,
4719 "Internal subroutine for read-file-name. Do not call this.")
4720 (string
, dir
, action
)
4721 Lisp_Object string
, dir
, action
;
4722 /* action is nil for complete, t for return list of completions,
4723 lambda for verify final value */
4725 Lisp_Object name
, specdir
, realdir
, val
, orig_string
;
4727 struct gcpro gcpro1
, gcpro2
, gcpro3
, gcpro4
, gcpro5
;
4729 CHECK_STRING (string
, 0);
4736 /* No need to protect ACTION--we only compare it with t and nil. */
4737 GCPRO5 (string
, realdir
, name
, specdir
, orig_string
);
4739 if (XSTRING (string
)->size
== 0)
4741 if (EQ (action
, Qlambda
))
4749 orig_string
= string
;
4750 string
= Fsubstitute_in_file_name (string
);
4751 changed
= NILP (Fstring_equal (string
, orig_string
));
4752 name
= Ffile_name_nondirectory (string
);
4753 val
= Ffile_name_directory (string
);
4755 realdir
= Fexpand_file_name (val
, realdir
);
4760 specdir
= Ffile_name_directory (string
);
4761 val
= Ffile_name_completion (name
, realdir
);
4766 return double_dollars (string
);
4770 if (!NILP (specdir
))
4771 val
= concat2 (specdir
, val
);
4773 return double_dollars (val
);
4776 #endif /* not VMS */
4780 if (EQ (action
, Qt
))
4781 return Ffile_name_all_completions (name
, realdir
);
4782 /* Only other case actually used is ACTION = lambda */
4784 /* Supposedly this helps commands such as `cd' that read directory names,
4785 but can someone explain how it helps them? -- RMS */
4786 if (XSTRING (name
)->size
== 0)
4789 return Ffile_exists_p (string
);
4792 DEFUN ("read-file-name", Fread_file_name
, Sread_file_name
, 1, 5, 0,
4793 "Read file name, prompting with PROMPT and completing in directory DIR.\n\
4794 Value is not expanded---you must call `expand-file-name' yourself.\n\
4795 Default name to DEFAULT-FILENAME if user enters a null string.\n\
4796 (If DEFAULT-FILENAME is omitted, the visited file name is used,\n\
4797 except that if INITIAL is specified, that combined with DIR is used.)\n\
4798 Fourth arg MUSTMATCH non-nil means require existing file's name.\n\
4799 Non-nil and non-t means also require confirmation after completion.\n\
4800 Fifth arg INITIAL specifies text to start with.\n\
4801 DIR defaults to current buffer's directory default.")
4802 (prompt
, dir
, default_filename
, mustmatch
, initial
)
4803 Lisp_Object prompt
, dir
, default_filename
, mustmatch
, initial
;
4805 Lisp_Object val
, insdef
, insdef1
, tem
;
4806 struct gcpro gcpro1
, gcpro2
;
4807 register char *homedir
;
4811 dir
= current_buffer
->directory
;
4812 if (NILP (default_filename
))
4814 if (! NILP (initial
))
4815 default_filename
= Fexpand_file_name (initial
, dir
);
4817 default_filename
= current_buffer
->filename
;
4820 /* If dir starts with user's homedir, change that to ~. */
4821 homedir
= (char *) egetenv ("HOME");
4823 homedir
= strcpy (alloca (strlen (homedir
) + 1), homedir
);
4824 CORRECT_DIR_SEPS (homedir
);
4828 && !strncmp (homedir
, XSTRING (dir
)->data
, strlen (homedir
))
4829 && IS_DIRECTORY_SEP (XSTRING (dir
)->data
[strlen (homedir
)]))
4831 dir
= make_string (XSTRING (dir
)->data
+ strlen (homedir
) - 1,
4832 XSTRING (dir
)->size
- strlen (homedir
) + 1);
4833 XSTRING (dir
)->data
[0] = '~';
4836 if (insert_default_directory
&& STRINGP (dir
))
4839 if (!NILP (initial
))
4841 Lisp_Object args
[2], pos
;
4845 insdef
= Fconcat (2, args
);
4846 pos
= make_number (XSTRING (double_dollars (dir
))->size
);
4847 insdef1
= Fcons (double_dollars (insdef
), pos
);
4850 insdef1
= double_dollars (insdef
);
4852 else if (STRINGP (initial
))
4855 insdef1
= Fcons (double_dollars (insdef
), make_number (0));
4858 insdef
= Qnil
, insdef1
= Qnil
;
4861 count
= specpdl_ptr
- specpdl
;
4862 specbind (intern ("completion-ignore-case"), Qt
);
4865 GCPRO2 (insdef
, default_filename
);
4866 val
= Fcompleting_read (prompt
, intern ("read-file-name-internal"),
4867 dir
, mustmatch
, insdef1
,
4868 Qfile_name_history
, default_filename
);
4871 unbind_to (count
, Qnil
);
4876 error ("No file name specified");
4877 tem
= Fstring_equal (val
, insdef
);
4878 if (!NILP (tem
) && !NILP (default_filename
))
4879 return default_filename
;
4880 if (XSTRING (val
)->size
== 0 && NILP (insdef
))
4882 if (!NILP (default_filename
))
4883 return default_filename
;
4885 error ("No default file name");
4887 return Fsubstitute_in_file_name (val
);
4890 #if 0 /* Old version */
4891 DEFUN ("read-file-name", Fread_file_name
, Sread_file_name
, 1, 5, 0,
4892 /* Don't confuse make-docfile by having two doc strings for this function.
4893 make-docfile does not pay attention to #if, for good reason! */
4895 (prompt
, dir
, defalt
, mustmatch
, initial
)
4896 Lisp_Object prompt
, dir
, defalt
, mustmatch
, initial
;
4898 Lisp_Object val
, insdef
, tem
;
4899 struct gcpro gcpro1
, gcpro2
;
4900 register char *homedir
;
4904 dir
= current_buffer
->directory
;
4906 defalt
= current_buffer
->filename
;
4908 /* If dir starts with user's homedir, change that to ~. */
4909 homedir
= (char *) egetenv ("HOME");
4912 && !strncmp (homedir
, XSTRING (dir
)->data
, strlen (homedir
))
4913 && XSTRING (dir
)->data
[strlen (homedir
)] == '/')
4915 dir
= make_string (XSTRING (dir
)->data
+ strlen (homedir
) - 1,
4916 XSTRING (dir
)->size
- strlen (homedir
) + 1);
4917 XSTRING (dir
)->data
[0] = '~';
4920 if (!NILP (initial
))
4922 else if (insert_default_directory
)
4925 insdef
= build_string ("");
4928 count
= specpdl_ptr
- specpdl
;
4929 specbind (intern ("completion-ignore-case"), Qt
);
4932 GCPRO2 (insdef
, defalt
);
4933 val
= Fcompleting_read (prompt
, intern ("read-file-name-internal"),
4935 insert_default_directory
? insdef
: Qnil
,
4936 Qfile_name_history
, Qnil
);
4939 unbind_to (count
, Qnil
);
4944 error ("No file name specified");
4945 tem
= Fstring_equal (val
, insdef
);
4946 if (!NILP (tem
) && !NILP (defalt
))
4948 return Fsubstitute_in_file_name (val
);
4950 #endif /* Old version */
4954 Qexpand_file_name
= intern ("expand-file-name");
4955 Qsubstitute_in_file_name
= intern ("substitute-in-file-name");
4956 Qdirectory_file_name
= intern ("directory-file-name");
4957 Qfile_name_directory
= intern ("file-name-directory");
4958 Qfile_name_nondirectory
= intern ("file-name-nondirectory");
4959 Qunhandled_file_name_directory
= intern ("unhandled-file-name-directory");
4960 Qfile_name_as_directory
= intern ("file-name-as-directory");
4961 Qcopy_file
= intern ("copy-file");
4962 Qmake_directory_internal
= intern ("make-directory-internal");
4963 Qdelete_directory
= intern ("delete-directory");
4964 Qdelete_file
= intern ("delete-file");
4965 Qrename_file
= intern ("rename-file");
4966 Qadd_name_to_file
= intern ("add-name-to-file");
4967 Qmake_symbolic_link
= intern ("make-symbolic-link");
4968 Qfile_exists_p
= intern ("file-exists-p");
4969 Qfile_executable_p
= intern ("file-executable-p");
4970 Qfile_readable_p
= intern ("file-readable-p");
4971 Qfile_writable_p
= intern ("file-writable-p");
4972 Qfile_symlink_p
= intern ("file-symlink-p");
4973 Qaccess_file
= intern ("access-file");
4974 Qfile_directory_p
= intern ("file-directory-p");
4975 Qfile_regular_p
= intern ("file-regular-p");
4976 Qfile_accessible_directory_p
= intern ("file-accessible-directory-p");
4977 Qfile_modes
= intern ("file-modes");
4978 Qset_file_modes
= intern ("set-file-modes");
4979 Qfile_newer_than_file_p
= intern ("file-newer-than-file-p");
4980 Qinsert_file_contents
= intern ("insert-file-contents");
4981 Qwrite_region
= intern ("write-region");
4982 Qverify_visited_file_modtime
= intern ("verify-visited-file-modtime");
4983 Qset_visited_file_modtime
= intern ("set-visited-file-modtime");
4985 staticpro (&Qexpand_file_name
);
4986 staticpro (&Qsubstitute_in_file_name
);
4987 staticpro (&Qdirectory_file_name
);
4988 staticpro (&Qfile_name_directory
);
4989 staticpro (&Qfile_name_nondirectory
);
4990 staticpro (&Qunhandled_file_name_directory
);
4991 staticpro (&Qfile_name_as_directory
);
4992 staticpro (&Qcopy_file
);
4993 staticpro (&Qmake_directory_internal
);
4994 staticpro (&Qdelete_directory
);
4995 staticpro (&Qdelete_file
);
4996 staticpro (&Qrename_file
);
4997 staticpro (&Qadd_name_to_file
);
4998 staticpro (&Qmake_symbolic_link
);
4999 staticpro (&Qfile_exists_p
);
5000 staticpro (&Qfile_executable_p
);
5001 staticpro (&Qfile_readable_p
);
5002 staticpro (&Qfile_writable_p
);
5003 staticpro (&Qaccess_file
);
5004 staticpro (&Qfile_symlink_p
);
5005 staticpro (&Qfile_directory_p
);
5006 staticpro (&Qfile_regular_p
);
5007 staticpro (&Qfile_accessible_directory_p
);
5008 staticpro (&Qfile_modes
);
5009 staticpro (&Qset_file_modes
);
5010 staticpro (&Qfile_newer_than_file_p
);
5011 staticpro (&Qinsert_file_contents
);
5012 staticpro (&Qwrite_region
);
5013 staticpro (&Qverify_visited_file_modtime
);
5014 staticpro (&Qset_visited_file_modtime
);
5016 Qfile_name_history
= intern ("file-name-history");
5017 Fset (Qfile_name_history
, Qnil
);
5018 staticpro (&Qfile_name_history
);
5020 Qfile_error
= intern ("file-error");
5021 staticpro (&Qfile_error
);
5022 Qfile_already_exists
= intern ("file-already-exists");
5023 staticpro (&Qfile_already_exists
);
5024 Qfile_date_error
= intern ("file-date-error");
5025 staticpro (&Qfile_date_error
);
5028 Qfind_buffer_file_type
= intern ("find-buffer-file-type");
5029 staticpro (&Qfind_buffer_file_type
);
5032 DEFVAR_LISP ("auto-save-file-format", &Vauto_save_file_format
,
5033 "*Format in which to write auto-save files.\n\
5034 Should be a list of symbols naming formats that are defined in `format-alist'.\n\
5035 If it is t, which is the default, auto-save files are written in the\n\
5036 same format as a regular save would use.");
5037 Vauto_save_file_format
= Qt
;
5039 Qformat_decode
= intern ("format-decode");
5040 staticpro (&Qformat_decode
);
5041 Qformat_annotate_function
= intern ("format-annotate-function");
5042 staticpro (&Qformat_annotate_function
);
5044 Qcar_less_than_car
= intern ("car-less-than-car");
5045 staticpro (&Qcar_less_than_car
);
5047 Fput (Qfile_error
, Qerror_conditions
,
5048 Fcons (Qfile_error
, Fcons (Qerror
, Qnil
)));
5049 Fput (Qfile_error
, Qerror_message
,
5050 build_string ("File error"));
5052 Fput (Qfile_already_exists
, Qerror_conditions
,
5053 Fcons (Qfile_already_exists
,
5054 Fcons (Qfile_error
, Fcons (Qerror
, Qnil
))));
5055 Fput (Qfile_already_exists
, Qerror_message
,
5056 build_string ("File already exists"));
5058 Fput (Qfile_date_error
, Qerror_conditions
,
5059 Fcons (Qfile_date_error
,
5060 Fcons (Qfile_error
, Fcons (Qerror
, Qnil
))));
5061 Fput (Qfile_date_error
, Qerror_message
,
5062 build_string ("Cannot set file date"));
5064 DEFVAR_BOOL ("insert-default-directory", &insert_default_directory
,
5065 "*Non-nil means when reading a filename start with default dir in minibuffer.");
5066 insert_default_directory
= 1;
5068 DEFVAR_BOOL ("vms-stmlf-recfm", &vms_stmlf_recfm
,
5069 "*Non-nil means write new files with record format `stmlf'.\n\
5070 nil means use format `var'. This variable is meaningful only on VMS.");
5071 vms_stmlf_recfm
= 0;
5073 DEFVAR_LISP ("directory-sep-char", &Vdirectory_sep_char
,
5074 "Directory separator character for built-in functions that return file names.\n\
5075 The value should be either ?/ or ?\\ (any other value is treated as ?\\).\n\
5076 This variable affects the built-in functions only on Windows,\n\
5077 on other platforms, it is initialized so that Lisp code can find out\n\
5078 what the normal separator is.");
5079 XSETFASTINT (Vdirectory_sep_char
, '/');
5081 DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist
,
5082 "*Alist of elements (REGEXP . HANDLER) for file names handled specially.\n\
5083 If a file name matches REGEXP, then all I/O on that file is done by calling\n\
5086 The first argument given to HANDLER is the name of the I/O primitive\n\
5087 to be handled; the remaining arguments are the arguments that were\n\
5088 passed to that primitive. For example, if you do\n\
5089 (file-exists-p FILENAME)\n\
5090 and FILENAME is handled by HANDLER, then HANDLER is called like this:\n\
5091 (funcall HANDLER 'file-exists-p FILENAME)\n\
5092 The function `find-file-name-handler' checks this list for a handler\n\
5093 for its argument.");
5094 Vfile_name_handler_alist
= Qnil
;
5096 DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions
,
5097 "A list of functions to be called at the end of `insert-file-contents'.\n\
5098 Each is passed one argument, the number of bytes inserted. It should return\n\
5099 the new byte count, and leave point the same. If `insert-file-contents' is\n\
5100 intercepted by a handler from `file-name-handler-alist', that handler is\n\
5101 responsible for calling the after-insert-file-functions if appropriate.");
5102 Vafter_insert_file_functions
= Qnil
;
5104 DEFVAR_LISP ("write-region-annotate-functions", &Vwrite_region_annotate_functions
,
5105 "A list of functions to be called at the start of `write-region'.\n\
5106 Each is passed two arguments, START and END as for `write-region'.\n\
5107 These are usually two numbers but not always; see the documentation\n\
5108 for `write-region'. The function should return a list of pairs\n\
5109 of the form (POSITION . STRING), consisting of strings to be effectively\n\
5110 inserted at the specified positions of the file being written (1 means to\n\
5111 insert before the first byte written). The POSITIONs must be sorted into\n\
5112 increasing order. If there are several functions in the list, the several\n\
5113 lists are merged destructively.");
5114 Vwrite_region_annotate_functions
= Qnil
;
5116 DEFVAR_LISP ("write-region-annotations-so-far",
5117 &Vwrite_region_annotations_so_far
,
5118 "When an annotation function is called, this holds the previous annotations.\n\
5119 These are the annotations made by other annotation functions\n\
5120 that were already called. See also `write-region-annotate-functions'.");
5121 Vwrite_region_annotations_so_far
= Qnil
;
5123 DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers
,
5124 "A list of file name handlers that temporarily should not be used.\n\
5125 This applies only to the operation `inhibit-file-name-operation'.");
5126 Vinhibit_file_name_handlers
= Qnil
;
5128 DEFVAR_LISP ("inhibit-file-name-operation", &Vinhibit_file_name_operation
,
5129 "The operation for which `inhibit-file-name-handlers' is applicable.");
5130 Vinhibit_file_name_operation
= Qnil
;
5132 DEFVAR_LISP ("auto-save-list-file-name", &Vauto_save_list_file_name
,
5133 "File name in which we write a list of all auto save file names.\n\
5134 This variable is initialized automatically from `auto-save-list-file-prefix'\n\
5135 shortly after Emacs reads your `.emacs' file, if you have not yet given it\n\
5137 Vauto_save_list_file_name
= Qnil
;
5139 defsubr (&Sfind_file_name_handler
);
5140 defsubr (&Sfile_name_directory
);
5141 defsubr (&Sfile_name_nondirectory
);
5142 defsubr (&Sunhandled_file_name_directory
);
5143 defsubr (&Sfile_name_as_directory
);
5144 defsubr (&Sdirectory_file_name
);
5145 defsubr (&Smake_temp_name
);
5146 defsubr (&Sexpand_file_name
);
5147 defsubr (&Ssubstitute_in_file_name
);
5148 defsubr (&Scopy_file
);
5149 defsubr (&Smake_directory_internal
);
5150 defsubr (&Sdelete_directory
);
5151 defsubr (&Sdelete_file
);
5152 defsubr (&Srename_file
);
5153 defsubr (&Sadd_name_to_file
);
5155 defsubr (&Smake_symbolic_link
);
5156 #endif /* S_IFLNK */
5158 defsubr (&Sdefine_logical_name
);
5161 defsubr (&Ssysnetunam
);
5162 #endif /* HPUX_NET */
5163 defsubr (&Sfile_name_absolute_p
);
5164 defsubr (&Sfile_exists_p
);
5165 defsubr (&Sfile_executable_p
);
5166 defsubr (&Sfile_readable_p
);
5167 defsubr (&Sfile_writable_p
);
5168 defsubr (&Saccess_file
);
5169 defsubr (&Sfile_symlink_p
);
5170 defsubr (&Sfile_directory_p
);
5171 defsubr (&Sfile_accessible_directory_p
);
5172 defsubr (&Sfile_regular_p
);
5173 defsubr (&Sfile_modes
);
5174 defsubr (&Sset_file_modes
);
5175 defsubr (&Sset_default_file_modes
);
5176 defsubr (&Sdefault_file_modes
);
5177 defsubr (&Sfile_newer_than_file_p
);
5178 defsubr (&Sinsert_file_contents
);
5179 defsubr (&Swrite_region
);
5180 defsubr (&Scar_less_than_car
);
5181 defsubr (&Sverify_visited_file_modtime
);
5182 defsubr (&Sclear_visited_file_modtime
);
5183 defsubr (&Svisited_file_modtime
);
5184 defsubr (&Sset_visited_file_modtime
);
5185 defsubr (&Sdo_auto_save
);
5186 defsubr (&Sset_buffer_auto_saved
);
5187 defsubr (&Sclear_buffer_auto_save_failure
);
5188 defsubr (&Srecent_auto_save_p
);
5190 defsubr (&Sread_file_name_internal
);
5191 defsubr (&Sread_file_name
);
5194 defsubr (&Sunix_sync
);