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