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