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