0
|
1 /* File IO for XEmacs.
|
|
2 Copyright (C) 1985-1988, 1992-1995 Free Software Foundation, Inc.
|
|
3 Copyright (C) 1996 Ben Wing.
|
|
4
|
|
5 This file is part of XEmacs.
|
|
6
|
|
7 XEmacs is free software; you can redistribute it and/or modify it
|
|
8 under the terms of the GNU General Public License as published by the
|
|
9 Free Software Foundation; either version 2, or (at your option) any
|
|
10 later version.
|
|
11
|
|
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
|
22 /* Synched up with: Mule 2.0, FSF 19.30. */
|
|
23
|
|
24 #include <config.h>
|
|
25 #include "lisp.h"
|
|
26
|
|
27 #include "buffer.h"
|
|
28 #include "events.h"
|
|
29 #include "frame.h"
|
|
30 #include "insdel.h"
|
|
31 #include "lstream.h"
|
|
32 #include "redisplay.h"
|
|
33 #include "sysdep.h"
|
|
34 #include "window.h" /* minibuf_level */
|
70
|
35 #ifdef MULE
|
|
36 #include "mule-coding.h"
|
|
37 #endif
|
0
|
38
|
2
|
39 #ifdef HAVE_LIBGEN_H /* Must come before sysfile.h */
|
|
40 #include <libgen.h>
|
|
41 #endif
|
0
|
42 #include "sysfile.h"
|
|
43 #include "sysproc.h"
|
|
44 #include "syspwd.h"
|
|
45 #include "systime.h"
|
|
46 #include "sysdir.h"
|
|
47
|
|
48 #ifdef HPUX
|
|
49 #include <netio.h>
|
|
50 #ifdef HPUX_PRE_8_0
|
|
51 #include <errnet.h>
|
|
52 #endif
|
|
53 #endif
|
|
54
|
|
55 /* Nonzero during writing of auto-save files */
|
|
56 static int auto_saving;
|
|
57
|
|
58 /* Set by auto_save_1 to mode of original file so Fwrite_region_internal
|
|
59 will create a new file with the same mode as the original */
|
|
60 static int auto_save_mode_bits;
|
|
61
|
|
62 /* Alist of elements (REGEXP . HANDLER) for file names
|
|
63 whose I/O is done with a special handler. */
|
|
64 Lisp_Object Vfile_name_handler_alist;
|
|
65
|
|
66 /* Format for auto-save files */
|
|
67 Lisp_Object Vauto_save_file_format;
|
|
68
|
|
69 /* Lisp functions for translating file formats */
|
|
70 Lisp_Object Qformat_decode, Qformat_annotate_function;
|
|
71
|
|
72 /* Functions to be called to process text properties in inserted file. */
|
|
73 Lisp_Object Vafter_insert_file_functions;
|
|
74
|
|
75 /* Functions to be called to create text property annotations for file. */
|
|
76 Lisp_Object Vwrite_region_annotate_functions;
|
|
77
|
|
78 /* During build_annotations, each time an annotation function is called,
|
|
79 this holds the annotations made by the previous functions. */
|
|
80 Lisp_Object Vwrite_region_annotations_so_far;
|
|
81
|
|
82 /* File name in which we write a list of all our auto save files. */
|
|
83 Lisp_Object Vauto_save_list_file_name;
|
|
84
|
|
85 /* On VMS, nonzero means write new files with record format stmlf.
|
|
86 Zero means use var format. */
|
|
87 int vms_stmlf_recfm;
|
|
88
|
|
89 int disable_auto_save_when_buffer_shrinks;
|
|
90
|
|
91 Lisp_Object Qfile_name_handler_alist;
|
|
92
|
|
93 /* These variables describe handlers that have "already" had a chance
|
|
94 to handle the current operation.
|
|
95
|
|
96 Vinhibit_file_name_handlers is a list of file name handlers.
|
|
97 Vinhibit_file_name_operation is the operation being handled.
|
|
98 If we try to handle that operation, we ignore those handlers. */
|
|
99
|
|
100 static Lisp_Object Vinhibit_file_name_handlers;
|
|
101 static Lisp_Object Vinhibit_file_name_operation;
|
|
102
|
|
103 Lisp_Object Qfile_error, Qfile_already_exists;
|
|
104
|
|
105 Lisp_Object Qauto_save_hook;
|
|
106 Lisp_Object Qauto_save_error;
|
|
107 Lisp_Object Qauto_saving;
|
|
108
|
|
109 Lisp_Object Qcar_less_than_car;
|
|
110
|
|
111 Lisp_Object Qcompute_buffer_file_truename;
|
|
112
|
|
113 /* signal a file error when errno contains a meaningful value. */
|
|
114
|
|
115 DOESNT_RETURN
|
|
116 report_file_error (CONST char *string, Lisp_Object data)
|
|
117 {
|
|
118 /* mrb: #### Needs to be fixed at a lower level; errstring needs to
|
|
119 be MULEized. The following at least prevents a crash... */
|
|
120 Lisp_Object errstring = build_ext_string (strerror (errno), FORMAT_BINARY);
|
|
121
|
|
122 /* System error messages are capitalized. Downcase the initial
|
|
123 unless it is followed by a slash. */
|
70
|
124 if (string_char (XSTRING (errstring), 1) != '/')
|
0
|
125 set_string_char (XSTRING (errstring), 0,
|
|
126 DOWNCASE (current_buffer,
|
|
127 string_char (XSTRING (errstring), 0)));
|
|
128
|
|
129 signal_error (Qfile_error,
|
|
130 Fcons (build_translated_string (string),
|
|
131 Fcons (errstring, data)));
|
|
132 }
|
|
133
|
|
134 void
|
|
135 maybe_report_file_error (CONST char *string, Lisp_Object data,
|
|
136 Lisp_Object class, Error_behavior errb)
|
|
137 {
|
|
138 Lisp_Object errstring;
|
|
139
|
|
140 /* Optimization: */
|
|
141 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
142 return;
|
|
143
|
|
144 errstring = build_string (strerror (errno));
|
|
145
|
|
146 /* System error messages are capitalized. Downcase the initial
|
|
147 unless it is followed by a slash. */
|
|
148 if (string_char (XSTRING (errstring), 1) != '/')
|
|
149 set_string_char (XSTRING (errstring), 0,
|
|
150 DOWNCASE (current_buffer,
|
|
151 string_char (XSTRING (errstring), 0)));
|
|
152
|
|
153 maybe_signal_error (Qfile_error,
|
|
154 Fcons (build_translated_string (string),
|
|
155 Fcons (errstring, data)),
|
|
156 class, errb);
|
|
157 }
|
|
158
|
|
159 /* signal a file error when errno does not contain a meaningful value. */
|
|
160
|
|
161 DOESNT_RETURN
|
|
162 signal_file_error (CONST char *string, Lisp_Object data)
|
|
163 {
|
|
164 signal_error (Qfile_error,
|
|
165 list2 (build_translated_string (string), data));
|
|
166 }
|
|
167
|
|
168 void
|
|
169 maybe_signal_file_error (CONST char *string, Lisp_Object data,
|
|
170 Lisp_Object class, Error_behavior errb)
|
|
171 {
|
|
172 /* Optimization: */
|
|
173 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
174 return;
|
|
175 maybe_signal_error (Qfile_error,
|
|
176 list2 (build_translated_string (string), data),
|
|
177 class, errb);
|
|
178 }
|
|
179
|
|
180 DOESNT_RETURN
|
|
181 signal_double_file_error (CONST char *string1, CONST char *string2,
|
|
182 Lisp_Object data)
|
|
183 {
|
|
184 signal_error (Qfile_error,
|
|
185 list3 (build_translated_string (string1),
|
|
186 build_translated_string (string2),
|
|
187 data));
|
|
188 }
|
|
189
|
|
190 void
|
|
191 maybe_signal_double_file_error (CONST char *string1, CONST char *string2,
|
|
192 Lisp_Object data, Lisp_Object class,
|
|
193 Error_behavior errb)
|
|
194 {
|
|
195 /* Optimization: */
|
|
196 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
197 return;
|
|
198 maybe_signal_error (Qfile_error,
|
|
199 list3 (build_translated_string (string1),
|
|
200 build_translated_string (string2),
|
|
201 data),
|
|
202 class, errb);
|
|
203 }
|
|
204
|
|
205 DOESNT_RETURN
|
|
206 signal_double_file_error_2 (CONST char *string1, CONST char *string2,
|
|
207 Lisp_Object data1, Lisp_Object data2)
|
|
208 {
|
|
209 signal_error (Qfile_error,
|
|
210 list4 (build_translated_string (string1),
|
|
211 build_translated_string (string2),
|
|
212 data1, data2));
|
|
213 }
|
|
214
|
|
215 void
|
|
216 maybe_signal_double_file_error_2 (CONST char *string1, CONST char *string2,
|
|
217 Lisp_Object data1, Lisp_Object data2,
|
|
218 Lisp_Object class, Error_behavior errb)
|
|
219 {
|
|
220 /* Optimization: */
|
|
221 if (ERRB_EQ (errb, ERROR_ME_NOT))
|
|
222 return;
|
|
223 maybe_signal_error (Qfile_error,
|
|
224 list4 (build_translated_string (string1),
|
|
225 build_translated_string (string2),
|
|
226 data1, data2),
|
|
227 class, errb);
|
|
228 }
|
|
229
|
|
230 static Lisp_Object
|
|
231 close_file_unwind (Lisp_Object fd)
|
|
232 {
|
|
233 if (CONSP (fd))
|
|
234 {
|
|
235 if (INTP (XCAR (fd)))
|
|
236 close (XINT (XCAR (fd)));
|
|
237
|
|
238 free_cons (XCONS (fd));
|
|
239 }
|
|
240 else
|
|
241 close (XINT (fd));
|
|
242
|
|
243 return Qnil;
|
|
244 }
|
|
245
|
|
246 static Lisp_Object
|
|
247 close_stream_unwind (Lisp_Object stream)
|
|
248 {
|
|
249 Lstream_close (XLSTREAM (stream));
|
|
250 return Qnil;
|
|
251 }
|
|
252
|
|
253 /* Restore point, having saved it as a marker. */
|
|
254
|
|
255 static Lisp_Object
|
|
256 restore_point_unwind (Lisp_Object point_marker)
|
|
257 {
|
|
258 BUF_SET_PT (current_buffer, marker_position (point_marker));
|
|
259 return (Fset_marker (point_marker, Qnil, Qnil));
|
|
260 }
|
|
261
|
|
262 /* Versions of read() and write() that allow quitting out of the actual
|
|
263 I/O. We don't use immediate_quit (i.e. direct longjmp() out of the
|
|
264 signal handler) because that's way too losing.
|
|
265
|
|
266 (#### Actually, longjmp()ing out of the signal handler may not be
|
|
267 as losing as I thought. See sys_do_signal() in sysdep.c.)
|
|
268
|
|
269 Solaris include files declare the return value as ssize_t.
|
|
270 Is that standard? */
|
|
271 int
|
|
272 read_allowing_quit (int fildes, void *buf, unsigned int nbyte)
|
|
273 {
|
|
274 int nread;
|
|
275 QUIT;
|
|
276
|
|
277 nread = sys_read_1 (fildes, buf, nbyte, 1);
|
|
278 return nread;
|
|
279 }
|
|
280
|
|
281 int
|
|
282 write_allowing_quit (int fildes, CONST void *buf, unsigned int nbyte)
|
|
283 {
|
|
284 int nread;
|
|
285
|
|
286 QUIT;
|
|
287 nread = sys_write_1 (fildes, buf, nbyte, 1);
|
|
288 return nread;
|
|
289 }
|
|
290
|
|
291
|
|
292 Lisp_Object Qexpand_file_name;
|
|
293 Lisp_Object Qfile_truename;
|
|
294 Lisp_Object Qsubstitute_in_file_name;
|
|
295 Lisp_Object Qdirectory_file_name;
|
|
296 Lisp_Object Qfile_name_directory;
|
|
297 Lisp_Object Qfile_name_nondirectory;
|
|
298 Lisp_Object Qunhandled_file_name_directory;
|
|
299 Lisp_Object Qfile_name_as_directory;
|
|
300 Lisp_Object Qcopy_file;
|
|
301 Lisp_Object Qmake_directory_internal;
|
|
302 Lisp_Object Qdelete_directory;
|
|
303 Lisp_Object Qdelete_file;
|
|
304 Lisp_Object Qrename_file;
|
|
305 Lisp_Object Qadd_name_to_file;
|
|
306 Lisp_Object Qmake_symbolic_link;
|
|
307 Lisp_Object Qfile_exists_p;
|
|
308 Lisp_Object Qfile_executable_p;
|
|
309 Lisp_Object Qfile_readable_p;
|
|
310 Lisp_Object Qfile_symlink_p;
|
|
311 Lisp_Object Qfile_writable_p;
|
|
312 Lisp_Object Qfile_directory_p;
|
|
313 Lisp_Object Qfile_regular_p;
|
|
314 Lisp_Object Qfile_accessible_directory_p;
|
|
315 Lisp_Object Qfile_modes;
|
|
316 Lisp_Object Qset_file_modes;
|
|
317 Lisp_Object Qfile_newer_than_file_p;
|
|
318 Lisp_Object Qinsert_file_contents;
|
|
319 Lisp_Object Qwrite_region;
|
|
320 Lisp_Object Qverify_visited_file_modtime;
|
|
321 Lisp_Object Qset_visited_file_modtime;
|
|
322 Lisp_Object Qset_buffer_modtime;
|
|
323
|
|
324 /* If FILENAME is handled specially on account of its syntax,
|
|
325 return its handler function. Otherwise, return nil. */
|
|
326
|
20
|
327 DEFUN ("find-file-name-handler", Ffind_file_name_handler, 1, 2, 0, /*
|
0
|
328 Return FILENAME's handler function for OPERATION, if it has one.
|
|
329 Otherwise, return nil.
|
|
330 A file name is handled if one of the regular expressions in
|
|
331 `file-name-handler-alist' matches it.
|
|
332
|
|
333 If OPERATION equals `inhibit-file-name-operation', then we ignore
|
|
334 any handlers that are members of `inhibit-file-name-handlers',
|
|
335 but we still do run any other handlers. This lets handlers
|
|
336 use the standard functions without calling themselves recursively.
|
20
|
337 */
|
|
338 (filename, operation))
|
0
|
339 {
|
|
340 /* This function must not munge the match data. */
|
|
341 Lisp_Object chain, inhibited_handlers;
|
|
342
|
|
343 CHECK_STRING (filename);
|
|
344
|
|
345 if (EQ (operation, Vinhibit_file_name_operation))
|
|
346 inhibited_handlers = Vinhibit_file_name_handlers;
|
|
347 else
|
|
348 inhibited_handlers = Qnil;
|
|
349
|
|
350 for (chain = Vfile_name_handler_alist; CONSP (chain);
|
|
351 chain = XCDR (chain))
|
|
352 {
|
|
353 Lisp_Object elt = XCAR (chain);
|
|
354 if (CONSP (elt))
|
|
355 {
|
|
356 Lisp_Object string;
|
|
357 string = XCAR (elt);
|
|
358 if (STRINGP (string)
|
|
359 && (fast_lisp_string_match (string, filename) >= 0))
|
|
360 {
|
|
361 Lisp_Object handler = XCDR (elt);
|
|
362 if (NILP (Fmemq (handler, inhibited_handlers)))
|
|
363 return (handler);
|
|
364 }
|
|
365 }
|
|
366 QUIT;
|
|
367 }
|
|
368 return Qnil;
|
|
369 }
|
|
370
|
|
371 static Lisp_Object
|
|
372 call2_check_string (Lisp_Object fn, Lisp_Object arg0, Lisp_Object arg1)
|
|
373 {
|
70
|
374 /* This function can GC */
|
0
|
375 Lisp_Object result = call2 (fn, arg0, arg1);
|
|
376 CHECK_STRING (result);
|
|
377 return (result);
|
|
378 }
|
|
379
|
|
380 static Lisp_Object
|
|
381 call3_check_string (Lisp_Object fn, Lisp_Object arg0,
|
|
382 Lisp_Object arg1, Lisp_Object arg2)
|
|
383 {
|
70
|
384 /* This function can GC */
|
0
|
385 Lisp_Object result = call3 (fn, arg0, arg1, arg2);
|
|
386 CHECK_STRING (result);
|
|
387 return (result);
|
|
388 }
|
|
389
|
|
390
|
20
|
391 DEFUN ("file-name-directory", Ffile_name_directory, 1, 1, 0, /*
|
0
|
392 Return the directory component in file name NAME.
|
|
393 Return nil if NAME does not include a directory.
|
|
394 Otherwise return a directory spec.
|
|
395 Given a Unix syntax file name, returns a string ending in slash;
|
|
396 on VMS, perhaps instead a string ending in `:', `]' or `>'.
|
20
|
397 */
|
|
398 (file))
|
0
|
399 {
|
70
|
400 /* This function can GC */
|
0
|
401 Bufbyte *beg;
|
|
402 Bufbyte *p;
|
|
403 Lisp_Object handler;
|
|
404
|
|
405 CHECK_STRING (file);
|
|
406
|
|
407 /* If the file name has special constructs in it,
|
|
408 call the corresponding file handler. */
|
|
409 handler = Ffind_file_name_handler (file, Qfile_name_directory);
|
|
410 if (!NILP (handler))
|
70
|
411 {
|
|
412 Lisp_Object retval = call2 (handler, Qfile_name_directory,
|
|
413 file);
|
|
414
|
|
415 if (!NILP (retval))
|
|
416 CHECK_STRING (retval);
|
|
417 return retval;
|
|
418 }
|
0
|
419
|
|
420 #ifdef FILE_SYSTEM_CASE
|
|
421 file = FILE_SYSTEM_CASE (file);
|
|
422 #endif
|
16
|
423 beg = XSTRING_DATA (file);
|
|
424 p = beg + XSTRING_LENGTH (file);
|
0
|
425
|
|
426 while (p != beg && !IS_ANY_SEP (p[-1])
|
|
427 #ifdef VMS
|
|
428 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>'
|
|
429 #endif /* VMS */
|
|
430 ) p--;
|
|
431
|
|
432 if (p == beg)
|
|
433 return Qnil;
|
|
434 #ifdef DOS_NT
|
|
435 /* Expansion of "c:" to drive and default directory. */
|
|
436 /* (NT does the right thing.) */
|
|
437 if (p == beg + 2 && beg[1] == ':')
|
|
438 {
|
|
439 int drive = (*beg) - 'a';
|
|
440 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */
|
|
441 Bufbyte *res = (Bufbyte *) alloca (MAXPATHLEN + 5);
|
|
442 unsigned char *res1;
|
|
443 #ifdef WINDOWSNT
|
|
444 res1 = res;
|
|
445 /* The NT version places the drive letter at the beginning already. */
|
|
446 #else /* not WINDOWSNT */
|
|
447 /* On MSDOG we must put the drive letter in by hand. */
|
|
448 res1 = res + 2;
|
|
449 #endif /* not WINDOWSNT */
|
|
450 if (getdefdir (drive + 1, res))
|
|
451 {
|
|
452 #ifdef MSDOS
|
|
453 res[0] = drive + 'a';
|
|
454 res[1] = ':';
|
|
455 #endif /* MSDOS */
|
|
456 if (IS_DIRECTORY_SEP (res[strlen ((char *) res) - 1]))
|
|
457 strcat ((char *) res, "/");
|
|
458 beg = res;
|
|
459 p = beg + strlen ((char *) beg);
|
|
460 }
|
|
461 }
|
|
462 #endif /* DOS_NT */
|
|
463 return make_string (beg, p - beg);
|
|
464 }
|
|
465
|
20
|
466 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory, 1, 1, 0, /*
|
0
|
467 Return file name NAME sans its directory.
|
|
468 For example, in a Unix-syntax file name,
|
|
469 this is everything after the last slash,
|
|
470 or the entire name if it contains no slash.
|
20
|
471 */
|
|
472 (file))
|
0
|
473 {
|
70
|
474 /* This function can GC */
|
0
|
475 Bufbyte *beg, *p, *end;
|
|
476 Lisp_Object handler;
|
|
477
|
|
478 CHECK_STRING (file);
|
|
479
|
|
480 /* If the file name has special constructs in it,
|
|
481 call the corresponding file handler. */
|
|
482 handler = Ffind_file_name_handler (file, Qfile_name_nondirectory);
|
|
483 if (!NILP (handler))
|
|
484 return (call2_check_string (handler, Qfile_name_nondirectory,
|
|
485 file));
|
|
486
|
16
|
487 beg = XSTRING_DATA (file);
|
|
488 end = p = beg + XSTRING_LENGTH (file);
|
0
|
489
|
|
490 while (p != beg && !IS_ANY_SEP (p[-1])
|
|
491 #ifdef VMS
|
|
492 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>'
|
|
493 #endif /* VMS */
|
|
494 ) p--;
|
|
495
|
|
496 return make_string (p, end - p);
|
|
497 }
|
|
498
|
20
|
499 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory, 1, 1, 0, /*
|
0
|
500 Return a directly usable directory name somehow associated with FILENAME.
|
|
501 A `directly usable' directory name is one that may be used without the
|
|
502 intervention of any file handler.
|
|
503 If FILENAME is a directly usable file itself, return
|
|
504 (file-name-directory FILENAME).
|
|
505 The `call-process' and `start-process' functions use this function to
|
|
506 get a current directory to run processes in.
|
20
|
507 */
|
70
|
508 (filename))
|
0
|
509 {
|
70
|
510 /* This function can GC */
|
0
|
511 Lisp_Object handler;
|
|
512
|
|
513 /* If the file name has special constructs in it,
|
|
514 call the corresponding file handler. */
|
|
515 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory);
|
|
516 if (!NILP (handler))
|
|
517 return call2 (handler, Qunhandled_file_name_directory,
|
|
518 filename);
|
|
519
|
|
520 return Ffile_name_directory (filename);
|
|
521 }
|
|
522
|
|
523
|
|
524 static char *
|
|
525 file_name_as_directory (char *out, char *in)
|
|
526 {
|
|
527 int size = strlen (in) - 1;
|
|
528
|
|
529 strcpy (out, in);
|
|
530
|
|
531 #ifdef VMS
|
|
532 /* Is it already a directory string? */
|
|
533 if (in[size] == ':' || in[size] == ']' || in[size] == '>')
|
|
534 return out;
|
|
535 /* Is it a VMS directory file name? If so, hack VMS syntax. */
|
|
536 else if (! strchr (in, '/')
|
|
537 && ((size > 3 && ! strcmp (&in[size - 3], ".DIR"))
|
|
538 || (size > 3 && ! strcmp (&in[size - 3], ".dir"))
|
|
539 || (size > 5 && (! strncmp (&in[size - 5], ".DIR", 4)
|
|
540 || ! strncmp (&in[size - 5], ".dir", 4))
|
|
541 && (in[size - 1] == '.' || in[size - 1] == ';')
|
|
542 && in[size] == '1')))
|
|
543 {
|
|
544 char *p, *dot;
|
|
545 char brack;
|
|
546
|
|
547 /* x.dir -> [.x]
|
|
548 dir:x.dir --> dir:[x]
|
|
549 dir:[x]y.dir --> dir:[x.y] */
|
|
550 p = in + size;
|
|
551 while (p != in && *p != ':' && *p != '>' && *p != ']') p--;
|
|
552 if (p != in)
|
|
553 {
|
|
554 strncpy (out, in, p - in);
|
|
555 out[p - in] = '\0';
|
|
556 if (*p == ':')
|
|
557 {
|
|
558 brack = ']';
|
|
559 strcat (out, ":[");
|
|
560 }
|
|
561 else
|
|
562 {
|
|
563 brack = *p;
|
|
564 strcat (out, ".");
|
|
565 }
|
|
566 p++;
|
|
567 }
|
|
568 else
|
|
569 {
|
|
570 brack = ']';
|
|
571 strcpy (out, "[.");
|
|
572 }
|
|
573 dot = strchr (p, '.');
|
|
574 if (dot)
|
|
575 {
|
|
576 /* blindly remove any extension */
|
|
577 size = strlen (out) + (dot - p);
|
|
578 strncat (out, p, dot - p);
|
|
579 }
|
|
580 else
|
|
581 {
|
|
582 strcat (out, p);
|
|
583 size = strlen (out);
|
|
584 }
|
|
585 out[size++] = brack;
|
|
586 out[size] = '\0';
|
|
587 }
|
|
588 #else /* not VMS */
|
|
589 /* For Unix syntax, Append a slash if necessary */
|
|
590 if (!IS_ANY_SEP (out[size]))
|
|
591 {
|
|
592 out[size + 1] = DIRECTORY_SEP;
|
|
593 out[size + 2] = '\0';
|
|
594 }
|
|
595 #endif /* not VMS */
|
|
596 return out;
|
|
597 }
|
|
598
|
20
|
599 DEFUN ("file-name-as-directory", Ffile_name_as_directory, 1, 1, 0, /*
|
0
|
600 Return a string representing file FILENAME interpreted as a directory.
|
|
601 This operation exists because a directory is also a file, but its name as
|
|
602 a directory is different from its name as a file.
|
|
603 The result can be used as the value of `default-directory'
|
|
604 or passed as second argument to `expand-file-name'.
|
|
605 For a Unix-syntax file name, just appends a slash.
|
|
606 On VMS, converts \"[X]FOO.DIR\" to \"[X.FOO]\", etc.
|
20
|
607 */
|
|
608 (file))
|
0
|
609 {
|
70
|
610 /* This function can GC */
|
0
|
611 char *buf;
|
|
612 Lisp_Object handler;
|
|
613
|
|
614 CHECK_STRING (file);
|
|
615
|
|
616 /* If the file name has special constructs in it,
|
|
617 call the corresponding file handler. */
|
|
618 handler = Ffind_file_name_handler (file, Qfile_name_as_directory);
|
|
619 if (!NILP (handler))
|
|
620 return (call2_check_string (handler, Qfile_name_as_directory,
|
|
621 file));
|
|
622
|
16
|
623 buf = (char *) alloca (XSTRING_LENGTH (file) + 10);
|
0
|
624 return build_string (file_name_as_directory
|
16
|
625 (buf, (char *) XSTRING_DATA (file)));
|
0
|
626 }
|
|
627
|
|
628 /*
|
|
629 * Convert from directory name to filename.
|
|
630 * On VMS:
|
|
631 * xyzzy:[mukesh.emacs] => xyzzy:[mukesh]emacs.dir.1
|
|
632 * xyzzy:[mukesh] => xyzzy:[000000]mukesh.dir.1
|
|
633 * On UNIX, it's simple: just make sure there is a terminating /
|
|
634
|
|
635 * Value is nonzero if the string output is different from the input.
|
|
636 */
|
|
637
|
|
638 static int
|
|
639 directory_file_name (CONST char *src, char *dst)
|
|
640 {
|
|
641 long slen;
|
|
642 #ifdef VMS
|
|
643 long rlen;
|
|
644 char * ptr, * rptr;
|
|
645 char bracket;
|
|
646 struct FAB fab = cc$rms_fab;
|
|
647 struct NAM nam = cc$rms_nam;
|
|
648 char esa[NAM$C_MAXRSS];
|
|
649 #endif /* VMS */
|
|
650
|
|
651 slen = strlen (src);
|
|
652 #ifdef VMS
|
|
653 if (! strchr (src, '/')
|
|
654 && (src[slen - 1] == ']'
|
|
655 || src[slen - 1] == ':'
|
|
656 || src[slen - 1] == '>'))
|
|
657 {
|
|
658 /* VMS style - convert [x.y.z] to [x.y]z, [x] to [000000]x */
|
|
659 fab.fab$l_fna = src;
|
|
660 fab.fab$b_fns = slen;
|
|
661 fab.fab$l_nam = &nam;
|
|
662 fab.fab$l_fop = FAB$M_NAM;
|
|
663
|
|
664 nam.nam$l_esa = esa;
|
|
665 nam.nam$b_ess = sizeof esa;
|
|
666 nam.nam$b_nop |= NAM$M_SYNCHK;
|
|
667
|
|
668 /* We call SYS$PARSE to handle such things as [--] for us. */
|
|
669 if (SYS$PARSE(&fab, 0, 0) == RMS$_NORMAL)
|
|
670 {
|
|
671 slen = nam.nam$b_esl;
|
|
672 if (esa[slen - 1] == ';' && esa[slen - 2] == '.')
|
|
673 slen -= 2;
|
|
674 esa[slen] = '\0';
|
|
675 src = esa;
|
|
676 }
|
|
677 if (src[slen - 1] != ']' && src[slen - 1] != '>')
|
|
678 {
|
|
679 /* what about when we have logical_name:???? */
|
|
680 if (src[slen - 1] == ':')
|
|
681 { /* Xlate logical name and see what we get */
|
|
682 ptr = strcpy (dst, src); /* upper case for getenv */
|
|
683 while (*ptr)
|
|
684 {
|
|
685 *ptr = toupper ((unsigned char) *ptr);
|
|
686 ptr++;
|
|
687 }
|
|
688 dst[slen - 1] = 0; /* remove colon */
|
|
689 if (!(src = egetenv (dst)))
|
|
690 return 0;
|
|
691 /* should we jump to the beginning of this procedure?
|
|
692 Good points: allows us to use logical names that xlate
|
|
693 to Unix names,
|
|
694 Bad points: can be a problem if we just translated to a device
|
|
695 name...
|
|
696 For now, I'll punt and always expect VMS names, and hope for
|
|
697 the best! */
|
|
698 slen = strlen (src);
|
|
699 if (src[slen - 1] != ']' && src[slen - 1] != '>')
|
|
700 { /* no recursion here! */
|
|
701 strcpy (dst, src);
|
|
702 return 0;
|
|
703 }
|
|
704 }
|
|
705 else
|
|
706 { /* not a directory spec */
|
|
707 strcpy (dst, src);
|
|
708 return 0;
|
|
709 }
|
|
710 }
|
|
711 bracket = src[slen - 1];
|
|
712
|
|
713 /* If bracket is ']' or '>', bracket - 2 is the corresponding
|
|
714 opening bracket. */
|
|
715 ptr = strchr (src, bracket - 2);
|
|
716 if (ptr == 0)
|
|
717 { /* no opening bracket */
|
|
718 strcpy (dst, src);
|
|
719 return 0;
|
|
720 }
|
|
721 if (!(rptr = strrchr (src, '.')))
|
|
722 rptr = ptr;
|
|
723 slen = rptr - src;
|
|
724 strncpy (dst, src, slen);
|
|
725 dst[slen] = '\0';
|
|
726 if (*rptr == '.')
|
|
727 {
|
|
728 dst[slen++] = bracket;
|
|
729 dst[slen] = '\0';
|
|
730 }
|
|
731 else
|
|
732 {
|
|
733 /* If we have the top-level of a rooted directory (i.e. xx:[000000]),
|
|
734 then translate the device and recurse. */
|
|
735 if (dst[slen - 1] == ':'
|
|
736 && dst[slen - 2] != ':' /* skip decnet nodes */
|
|
737 && strcmp(src + slen, "[000000]") == 0)
|
|
738 {
|
|
739 dst[slen - 1] = '\0';
|
|
740 if ((ptr = egetenv (dst))
|
|
741 && (rlen = strlen (ptr) - 1) > 0
|
|
742 && (ptr[rlen] == ']' || ptr[rlen] == '>')
|
|
743 && ptr[rlen - 1] == '.')
|
|
744 {
|
|
745 char * buf = (char *) alloca (strlen (ptr) + 1);
|
|
746 strcpy (buf, ptr);
|
|
747 buf[rlen - 1] = ']';
|
|
748 buf[rlen] = '\0';
|
|
749 return directory_file_name (buf, dst);
|
|
750 }
|
|
751 else
|
|
752 dst[slen - 1] = ':';
|
|
753 }
|
|
754 strcat (dst, "[000000]");
|
|
755 slen += 8;
|
|
756 }
|
|
757 rptr++;
|
|
758 rlen = strlen (rptr) - 1;
|
|
759 strncat (dst, rptr, rlen);
|
|
760 dst[slen + rlen] = '\0';
|
|
761 strcat (dst, ".DIR.1");
|
|
762 return 1;
|
|
763 }
|
|
764 #endif /* VMS */
|
|
765 /* Process as Unix format: just remove any final slash.
|
|
766 But leave "/" unchanged; do not change it to "". */
|
|
767 strcpy (dst, src);
|
|
768 #ifdef APOLLO
|
|
769 /* Handle // as root for apollo's. */
|
|
770 if ((slen > 2 && dst[slen - 1] == '/')
|
|
771 || (slen > 1 && dst[0] != '/' && dst[slen - 1] == '/'))
|
|
772 dst[slen - 1] = 0;
|
|
773 #else
|
|
774 if (slen > 1
|
|
775 && IS_DIRECTORY_SEP (dst[slen - 1])
|
|
776 #ifdef DOS_NT
|
|
777 && !IS_ANY_SEP (dst[slen - 2])
|
|
778 #endif
|
|
779 )
|
|
780 dst[slen - 1] = 0;
|
|
781 #endif
|
|
782 return 1;
|
|
783 }
|
|
784
|
20
|
785 DEFUN ("directory-file-name", Fdirectory_file_name, 1, 1, 0, /*
|
0
|
786 Return the file name of the directory named DIR.
|
|
787 This is the name of the file that holds the data for the directory DIR.
|
|
788 This operation exists because a directory is also a file, but its name as
|
|
789 a directory is different from its name as a file.
|
|
790 In Unix-syntax, this function just removes the final slash.
|
|
791 On VMS, given a VMS-syntax directory name such as \"[X.Y]\",
|
|
792 it returns a file name such as \"[X]Y.DIR.1\".
|
20
|
793 */
|
|
794 (directory))
|
0
|
795 {
|
70
|
796 /* This function can GC */
|
0
|
797 char *buf;
|
|
798 Lisp_Object handler;
|
|
799
|
|
800 CHECK_STRING (directory);
|
|
801
|
|
802 #if 0 /* #### WTF? */
|
|
803 if (NILP (directory))
|
|
804 return Qnil;
|
|
805 #endif
|
|
806
|
|
807 /* If the file name has special constructs in it,
|
|
808 call the corresponding file handler. */
|
|
809 handler = Ffind_file_name_handler (directory, Qdirectory_file_name);
|
|
810 if (!NILP (handler))
|
|
811 return (call2_check_string (handler, Qdirectory_file_name,
|
|
812 directory));
|
|
813 #ifdef VMS
|
|
814 /* 20 extra chars is insufficient for VMS, since we might perform a
|
|
815 logical name translation. an equivalence string can be up to 255
|
|
816 chars long, so grab that much extra space... - sss */
|
16
|
817 buf = (char *) alloca (XSTRING_LENGTH (directory) + 20 + 255);
|
0
|
818 #else
|
16
|
819 buf = (char *) alloca (XSTRING_LENGTH (directory) + 20);
|
0
|
820 #endif
|
16
|
821 directory_file_name ((char *) XSTRING_DATA (directory), buf);
|
0
|
822 return build_string (buf);
|
|
823 }
|
|
824
|
20
|
825 DEFUN ("make-temp-name", Fmake_temp_name, 1, 1, 0, /*
|
0
|
826 Generate temporary file name (string) starting with PREFIX (a string).
|
|
827 The Emacs process number forms part of the result,
|
|
828 so there is no danger of generating a name being used by another process.
|
20
|
829 */
|
|
830 (prefix))
|
0
|
831 {
|
|
832 CONST char suffix[] = "XXXXXX";
|
|
833 Bufbyte *data;
|
|
834 Bytecount len;
|
|
835 Lisp_Object val;
|
|
836
|
|
837 CHECK_STRING (prefix);
|
16
|
838 len = XSTRING_LENGTH (prefix);
|
0
|
839 val = make_uninit_string (len + countof (suffix) - 1);
|
16
|
840 data = XSTRING_DATA (val);
|
|
841 memcpy (data, XSTRING_DATA (prefix), len);
|
0
|
842 memcpy (data + len, suffix, countof (suffix));
|
|
843 /* !!#### does mktemp() Mule-encapsulate? */
|
|
844 mktemp ((char *) data);
|
|
845
|
|
846 return val;
|
|
847 }
|
|
848
|
20
|
849 DEFUN ("expand-file-name", Fexpand_file_name, 1, 2, 0, /*
|
0
|
850 Convert FILENAME to absolute, and canonicalize it.
|
|
851 Second arg DEFAULT is directory to start with if FILENAME is relative
|
|
852 (does not start with slash); if DEFAULT is nil or missing,
|
|
853 the current buffer's value of default-directory is used.
|
|
854 Path components that are `.' are removed, and
|
|
855 path components followed by `..' are removed, along with the `..' itself;
|
|
856 note that these simplifications are done without checking the resulting
|
|
857 paths in the file system.
|
|
858 An initial `~/' expands to your home directory.
|
|
859 An initial `~USER/' expands to USER's home directory.
|
|
860 See also the function `substitute-in-file-name'.
|
20
|
861 */
|
|
862 (name, defalt))
|
0
|
863 {
|
70
|
864 /* This function can GC */
|
0
|
865 Bufbyte *nm;
|
|
866
|
|
867 Bufbyte *newdir, *p, *o;
|
|
868 int tlen;
|
|
869 Bufbyte *target;
|
|
870 struct passwd *pw;
|
|
871 #ifdef VMS
|
|
872 Bufbyte * colon = 0;
|
|
873 Bufbyte * close = 0;
|
|
874 Bufbyte * slash = 0;
|
|
875 Bufbyte * brack = 0;
|
|
876 int lbrack = 0, rbrack = 0;
|
|
877 int dots = 0;
|
|
878 #endif /* VMS */
|
|
879 #ifdef DOS_NT
|
|
880 /* Demacs 1.1.2 91/10/20 Manabu Higashida */
|
|
881 int drive = -1;
|
|
882 int relpath = 0;
|
|
883 Bufbyte *tmp, *defdir;
|
|
884 #endif /* DOS_NT */
|
|
885 Lisp_Object handler;
|
|
886
|
|
887 CHECK_STRING (name);
|
|
888
|
|
889 /* If the file name has special constructs in it,
|
|
890 call the corresponding file handler. */
|
|
891 handler = Ffind_file_name_handler (name, Qexpand_file_name);
|
|
892 if (!NILP (handler))
|
|
893 return (call3_check_string (handler, Qexpand_file_name, name,
|
|
894 defalt));
|
|
895
|
|
896 /* Use the buffer's default-directory if DEFALT is omitted. */
|
|
897 if (NILP (defalt))
|
|
898 defalt = current_buffer->directory;
|
|
899 if (NILP (defalt)) /* this should be a meaningful error */
|
|
900 {
|
|
901 /* #### If we had a minibuffer-only frame up then current_buffer
|
|
902 is likely to not have a directory setting. We should
|
|
903 probably redo things to make sure that current_buffer stays
|
|
904 set to something sensible. */
|
|
905 if (!preparing_for_armageddon)
|
|
906 signal_simple_error ("default-directory is not set",
|
|
907 make_buffer (current_buffer));
|
|
908 }
|
|
909 else
|
|
910 CHECK_STRING (defalt);
|
|
911
|
|
912 if (!NILP (defalt))
|
|
913 {
|
|
914 handler = Ffind_file_name_handler (defalt, Qexpand_file_name);
|
|
915 if (!NILP (handler))
|
|
916 return call3 (handler, Qexpand_file_name, name, defalt);
|
|
917 }
|
|
918
|
|
919 /* Make sure DEFALT is properly expanded.
|
|
920 It would be better to do this down below where we actually use
|
|
921 defalt. Unfortunately, calling Fexpand_file_name recursively
|
|
922 could invoke GC, and the strings might be relocated. This would
|
|
923 be annoying because we have pointers into strings lying around
|
|
924 that would need adjusting, and people would add new pointers to
|
|
925 the code and forget to adjust them, resulting in intermittent bugs.
|
|
926 Putting this call here avoids all that crud.
|
|
927
|
|
928 The EQ test avoids infinite recursion. */
|
70
|
929 if (! NILP (defalt) && !EQ (defalt, name)
|
0
|
930 /* This saves time in a common case. */
|
16
|
931 && ! (XSTRING_LENGTH (defalt) >= 3
|
70
|
932 && IS_DIRECTORY_SEP (string_byte (XSTRING (defalt), 0))
|
|
933 && IS_DEVICE_SEP (string_byte (XSTRING (defalt), 1))))
|
0
|
934 {
|
|
935 struct gcpro gcpro1;
|
|
936
|
70
|
937 GCPRO1 (name);
|
0
|
938 defalt = Fexpand_file_name (defalt, Qnil);
|
|
939 UNGCPRO;
|
|
940 }
|
|
941
|
|
942 #ifdef VMS
|
|
943 /* Filenames on VMS are always upper case. */
|
|
944 name = Fupcase (name, Fcurrent_buffer ());
|
|
945 #endif
|
|
946 #ifdef FILE_SYSTEM_CASE
|
|
947 name = FILE_SYSTEM_CASE (name);
|
|
948 #endif
|
|
949
|
16
|
950 nm = XSTRING_DATA (name);
|
0
|
951
|
|
952 #ifdef MSDOS
|
|
953 /* First map all backslashes to slashes. */
|
|
954 dostounix_filename (nm = strcpy (alloca (strlen (nm) + 1), nm));
|
|
955 #endif
|
|
956
|
|
957 #ifdef DOS_NT
|
|
958 /* Now strip drive name. */
|
|
959 {
|
|
960 Bufbyte *colon = strrchr (nm, ':');
|
|
961 if (colon)
|
|
962 if (nm == colon)
|
|
963 nm++;
|
|
964 else
|
|
965 {
|
|
966 drive = colon[-1];
|
|
967 nm = colon + 1;
|
|
968 if (!IS_DIRECTORY_SEP (*nm))
|
|
969 {
|
|
970 defdir = alloca (MAXPATHLEN + 1);
|
|
971 relpath = getdefdir (tolower (drive) - 'a' + 1, defdir);
|
|
972 }
|
|
973 }
|
|
974 }
|
|
975 #endif /* DOS_NT */
|
|
976
|
|
977 /* Handle // and /~ in middle of file name
|
|
978 by discarding everything through the first / of that sequence. */
|
|
979 p = nm;
|
|
980 while (*p)
|
|
981 {
|
|
982 /* Since we know the path is absolute, we can assume that each
|
|
983 element starts with a "/". */
|
|
984
|
|
985 /* "//" anywhere isn't necessarily hairy; we just start afresh
|
|
986 with the second slash. */
|
|
987 if (IS_DIRECTORY_SEP (p[0]) && IS_DIRECTORY_SEP (p[1])
|
|
988 #if defined (APOLLO) || defined (WINDOWSNT)
|
|
989 /* // at start of filename is meaningful on Apollo
|
|
990 and WindowsNT systems */
|
|
991 && nm != p
|
|
992 #endif /* APOLLO || WINDOWSNT */
|
|
993 )
|
|
994 nm = p + 1;
|
|
995
|
|
996 /* "~" is hairy as the start of any path element. */
|
|
997 if (IS_DIRECTORY_SEP (p[0]) && p[1] == '~')
|
|
998 nm = p + 1;
|
|
999
|
|
1000 p++;
|
|
1001 }
|
|
1002
|
|
1003 /* If nm is absolute, flush ...// and detect /./ and /../.
|
|
1004 If no /./ or /../ we can return right away. */
|
|
1005 if (
|
|
1006 IS_DIRECTORY_SEP (nm[0])
|
|
1007 #ifdef VMS
|
|
1008 || strchr (nm, ':')
|
|
1009 #endif /* VMS */
|
|
1010 )
|
|
1011 {
|
|
1012 /* If it turns out that the filename we want to return is just a
|
|
1013 suffix of FILENAME, we don't need to go through and edit
|
|
1014 things; we just need to construct a new string using data
|
|
1015 starting at the middle of FILENAME. If we set lose to a
|
|
1016 non-zero value, that means we've discovered that we can't do
|
|
1017 that cool trick. */
|
|
1018 int lose = 0;
|
|
1019
|
|
1020 p = nm;
|
|
1021 while (*p)
|
|
1022 {
|
|
1023 /* Since we know the path is absolute, we can assume that each
|
|
1024 element starts with a "/". */
|
|
1025
|
|
1026 /* "." and ".." are hairy. */
|
|
1027 if (IS_DIRECTORY_SEP (p[0])
|
|
1028 && p[1] == '.'
|
|
1029 && (IS_DIRECTORY_SEP (p[2])
|
|
1030 || p[2] == 0
|
|
1031 || (p[2] == '.' && (IS_DIRECTORY_SEP (p[3])
|
|
1032 || p[3] == 0))))
|
|
1033 lose = 1;
|
|
1034 #ifdef VMS
|
|
1035 if (p[0] == '\\')
|
|
1036 lose = 1;
|
|
1037 if (p[0] == '/') {
|
|
1038 /* if dev:[dir]/, move nm to / */
|
|
1039 if (!slash && p > nm && (brack || colon)) {
|
|
1040 nm = (brack ? brack + 1 : colon + 1);
|
|
1041 lbrack = rbrack = 0;
|
|
1042 brack = 0;
|
|
1043 colon = 0;
|
|
1044 }
|
|
1045 slash = p;
|
|
1046 }
|
|
1047 if (p[0] == '-')
|
|
1048 #ifndef VMS4_4
|
|
1049 /* VMS pre V4.4,convert '-'s in filenames. */
|
|
1050 if (lbrack == rbrack)
|
|
1051 {
|
|
1052 if (dots < 2) /* this is to allow negative version numbers */
|
|
1053 p[0] = '_';
|
|
1054 }
|
|
1055 else
|
|
1056 #endif /* VMS4_4 */
|
|
1057 if (lbrack > rbrack &&
|
|
1058 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') &&
|
|
1059 (p[1] == '.' || p[1] == ']' || p[1] == '>')))
|
|
1060 lose = 1;
|
|
1061 #ifndef VMS4_4
|
|
1062 else
|
|
1063 p[0] = '_';
|
|
1064 #endif /* VMS4_4 */
|
|
1065 /* count open brackets, reset close bracket pointer */
|
|
1066 if (p[0] == '[' || p[0] == '<')
|
|
1067 lbrack++, brack = 0;
|
|
1068 /* count close brackets, set close bracket pointer */
|
|
1069 if (p[0] == ']' || p[0] == '>')
|
|
1070 rbrack++, brack = p;
|
|
1071 /* detect ][ or >< */
|
|
1072 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<'))
|
|
1073 lose = 1;
|
|
1074 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~')
|
|
1075 nm = p + 1, lose = 1;
|
|
1076 if (p[0] == ':' && (colon || slash))
|
|
1077 /* if dev1:[dir]dev2:, move nm to dev2: */
|
|
1078 if (brack)
|
|
1079 {
|
|
1080 nm = brack + 1;
|
|
1081 brack = 0;
|
|
1082 }
|
|
1083 /* if /pathname/dev:, move nm to dev: */
|
|
1084 else if (slash)
|
|
1085 nm = slash + 1;
|
|
1086 /* if node::dev:, move colon following dev */
|
|
1087 else if (colon && colon[-1] == ':')
|
|
1088 colon = p;
|
|
1089 /* if dev1:dev2:, move nm to dev2: */
|
|
1090 else if (colon && colon[-1] != ':')
|
|
1091 {
|
|
1092 nm = colon + 1;
|
|
1093 colon = 0;
|
|
1094 }
|
|
1095 if (p[0] == ':' && !colon)
|
|
1096 {
|
|
1097 if (p[1] == ':')
|
|
1098 p++;
|
|
1099 colon = p;
|
|
1100 }
|
|
1101 if (lbrack == rbrack)
|
|
1102 if (p[0] == ';')
|
|
1103 dots = 2;
|
|
1104 else if (p[0] == '.')
|
|
1105 dots++;
|
|
1106 #endif /* VMS */
|
|
1107 p++;
|
|
1108 }
|
|
1109 if (!lose)
|
|
1110 {
|
|
1111 #ifdef VMS
|
|
1112 if (strchr (nm, '/'))
|
|
1113 return build_string (sys_translate_unix (nm));
|
|
1114 #endif /* VMS */
|
|
1115 #ifndef DOS_NT
|
16
|
1116 if (nm == XSTRING_DATA (name))
|
0
|
1117 return name;
|
|
1118 return build_string ((char *) nm);
|
|
1119 #endif /* not DOS_NT */
|
|
1120 }
|
|
1121 }
|
|
1122
|
|
1123 /* Now determine directory to start with and put it in newdir */
|
|
1124
|
|
1125 newdir = 0;
|
|
1126
|
|
1127 if (nm[0] == '~') /* prefix ~ */
|
|
1128 {
|
|
1129 if (IS_DIRECTORY_SEP (nm[1])
|
|
1130 #ifdef VMS
|
|
1131 || nm[1] == ':'
|
|
1132 #endif /* VMS */
|
|
1133 || nm[1] == 0) /* ~ by itself */
|
|
1134 {
|
|
1135 if (!(newdir = (Bufbyte *) egetenv ("HOME")))
|
|
1136 newdir = (Bufbyte *) "";
|
|
1137 #ifdef DOS_NT
|
|
1138 /* Problem when expanding "~\" if HOME is not on current drive.
|
|
1139 Ulrich Leodolter, Wed Jan 11 10:20:35 1995 */
|
|
1140 if (newdir[1] == ':')
|
|
1141 drive = newdir[0];
|
|
1142 dostounix_filename (newdir);
|
|
1143 #endif
|
|
1144 nm++;
|
|
1145 #ifdef VMS
|
|
1146 nm++; /* Don't leave the slash in nm. */
|
|
1147 #endif /* VMS */
|
|
1148 }
|
|
1149 else /* ~user/filename */
|
|
1150 {
|
|
1151 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p)
|
|
1152 #ifdef VMS
|
|
1153 && *p != ':'
|
|
1154 #endif /* VMS */
|
|
1155 ); p++);
|
|
1156 o = (Bufbyte *) alloca (p - nm + 1);
|
|
1157 memcpy (o, (char *) nm, p - nm);
|
|
1158 o [p - nm] = 0;
|
|
1159
|
|
1160 #ifdef WINDOWSNT
|
|
1161 newdir = (unsigned char *) egetenv ("HOME");
|
|
1162 dostounix_filename (newdir);
|
|
1163 #else /* not WINDOWSNT */
|
|
1164 /* Jamie reports that getpwnam() can get wedged by SIGIO/SIGALARM
|
|
1165 occurring in it. (It can call select()). */
|
|
1166 slow_down_interrupts ();
|
|
1167 pw = (struct passwd *) getpwnam ((char *) o + 1);
|
|
1168 speed_up_interrupts ();
|
|
1169 if (pw)
|
|
1170 {
|
|
1171 newdir = (Bufbyte *) pw -> pw_dir;
|
|
1172 #ifdef VMS
|
|
1173 nm = p + 1; /* skip the terminator */
|
|
1174 #else
|
|
1175 nm = p;
|
|
1176 #endif /* VMS */
|
|
1177 }
|
|
1178 #endif /* not WINDOWSNT */
|
|
1179
|
|
1180 /* If we don't find a user of that name, leave the name
|
|
1181 unchanged; don't move nm forward to p. */
|
|
1182 }
|
|
1183 }
|
|
1184
|
|
1185 if (!IS_ANY_SEP (nm[0])
|
|
1186 #ifdef VMS
|
|
1187 && !strchr (nm, ':')
|
|
1188 #endif /* not VMS */
|
|
1189 #ifdef DOS_NT
|
|
1190 && drive == -1
|
|
1191 #endif /* DOS_NT */
|
|
1192 && !newdir
|
|
1193 && STRINGP (defalt))
|
|
1194 {
|
16
|
1195 newdir = XSTRING_DATA (defalt);
|
0
|
1196 }
|
|
1197
|
|
1198 #ifdef DOS_NT
|
|
1199 if (newdir == 0 && relpath)
|
|
1200 newdir = defdir;
|
|
1201 #endif /* DOS_NT */
|
|
1202 if (newdir != 0)
|
|
1203 {
|
|
1204 /* Get rid of any slash at the end of newdir. */
|
|
1205 int length = strlen ((char *) newdir);
|
|
1206 /* Adding `length > 1 &&' makes ~ expand into / when homedir
|
|
1207 is the root dir. People disagree about whether that is right.
|
|
1208 Anyway, we can't take the risk of this change now. */
|
|
1209 #ifdef DOS_NT
|
|
1210 if (newdir[1] != ':' && length > 1)
|
|
1211 #endif
|
|
1212 if (IS_DIRECTORY_SEP (newdir[length - 1]))
|
|
1213 {
|
|
1214 Bufbyte *temp = (Bufbyte *) alloca (length);
|
|
1215 memcpy (temp, newdir, length - 1);
|
|
1216 temp[length - 1] = 0;
|
|
1217 newdir = temp;
|
|
1218 }
|
|
1219 tlen = length + 1;
|
|
1220 }
|
|
1221 else
|
|
1222 tlen = 0;
|
|
1223
|
|
1224 /* Now concatenate the directory and name to new space in the stack frame */
|
|
1225 tlen += strlen ((char *) nm) + 1;
|
|
1226 #ifdef DOS_NT
|
|
1227 /* Add reserved space for drive name. (The Microsoft x86 compiler
|
|
1228 produces incorrect code if the following two lines are combined.) */
|
|
1229 target = (Bufbyte *) alloca (tlen + 2);
|
|
1230 target += 2;
|
|
1231 #else /* not DOS_NT */
|
|
1232 target = (Bufbyte *) alloca (tlen);
|
|
1233 #endif /* not DOS_NT */
|
|
1234 *target = 0;
|
|
1235
|
|
1236 if (newdir)
|
|
1237 {
|
|
1238 #ifndef VMS
|
|
1239 if (nm[0] == 0 || IS_DIRECTORY_SEP (nm[0]))
|
|
1240 strcpy ((char *) target, (char *) newdir);
|
|
1241 else
|
|
1242 #endif
|
|
1243 file_name_as_directory ((char *) target, (char *) newdir);
|
|
1244 }
|
|
1245
|
|
1246 strcat ((char *) target, (char *) nm);
|
|
1247 #ifdef VMS
|
|
1248 if (strchr (target, '/'))
|
|
1249 strcpy (target, sys_translate_unix (target));
|
|
1250 #endif /* VMS */
|
|
1251
|
|
1252 /* Now canonicalize by removing /. and /foo/.. if they appear. */
|
|
1253
|
|
1254 p = target;
|
|
1255 o = target;
|
|
1256
|
|
1257 while (*p)
|
|
1258 {
|
|
1259 #ifdef VMS
|
|
1260 if (*p != ']' && *p != '>' && *p != '-')
|
|
1261 {
|
|
1262 if (*p == '\\')
|
|
1263 p++;
|
|
1264 *o++ = *p++;
|
|
1265 }
|
|
1266 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2)
|
|
1267 /* brackets are offset from each other by 2 */
|
|
1268 {
|
|
1269 p += 2;
|
|
1270 if (*p != '.' && *p != '-' && o[-1] != '.')
|
|
1271 /* convert [foo][bar] to [bar] */
|
|
1272 while (o[-1] != '[' && o[-1] != '<')
|
|
1273 o--;
|
|
1274 else if (*p == '-' && *o != '.')
|
|
1275 *--p = '.';
|
|
1276 }
|
|
1277 else if (p[0] == '-' && o[-1] == '.' &&
|
|
1278 (p[1] == '.' || p[1] == ']' || p[1] == '>'))
|
|
1279 /* flush .foo.- ; leave - if stopped by '[' or '<' */
|
|
1280 {
|
|
1281 do
|
|
1282 o--;
|
|
1283 while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<');
|
|
1284 if (p[1] == '.') /* foo.-.bar ==> bar. */
|
|
1285 p += 2;
|
|
1286 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */
|
|
1287 p++, o--;
|
|
1288 /* else [foo.-] ==> [-] */
|
|
1289 }
|
|
1290 else
|
|
1291 {
|
|
1292 #ifndef VMS4_4
|
|
1293 if (*p == '-' &&
|
|
1294 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' &&
|
|
1295 p[1] != ']' && p[1] != '>' && p[1] != '.')
|
|
1296 *p = '_';
|
|
1297 #endif /* VMS4_4 */
|
|
1298 *o++ = *p++;
|
|
1299 }
|
|
1300 #else /* not VMS */
|
|
1301 if (!IS_DIRECTORY_SEP (*p))
|
|
1302 {
|
|
1303 *o++ = *p++;
|
|
1304 }
|
|
1305 else if (IS_DIRECTORY_SEP (p[0]) && IS_DIRECTORY_SEP (p[1])
|
|
1306 #if defined (APOLLO) || defined (WINDOWSNT)
|
|
1307 /* // at start of filename is meaningful in Apollo
|
|
1308 and WindowsNT systems */
|
|
1309 && o != target
|
|
1310 #endif /* APOLLO */
|
|
1311 )
|
|
1312 {
|
|
1313 o = target;
|
|
1314 p++;
|
|
1315 }
|
|
1316 else if (IS_DIRECTORY_SEP (p[0])
|
|
1317 && p[1] == '.'
|
|
1318 && (IS_DIRECTORY_SEP (p[2])
|
|
1319 || p[2] == 0))
|
|
1320 {
|
|
1321 /* If "/." is the entire filename, keep the "/". Otherwise,
|
|
1322 just delete the whole "/.". */
|
|
1323 if (o == target && p[2] == '\0')
|
|
1324 *o++ = *p;
|
|
1325 p += 2;
|
|
1326 }
|
|
1327 else if (IS_DIRECTORY_SEP (p[0]) && p[1] == '.' && p[2] == '.'
|
|
1328 /* `/../' is the "superroot" on certain file systems. */
|
|
1329 && o != target
|
|
1330 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0))
|
|
1331 {
|
|
1332 while (o != target && (--o) && !IS_DIRECTORY_SEP (*o))
|
|
1333 ;
|
|
1334 #if defined (APOLLO) || defined (WINDOWSNT)
|
|
1335 if (o == target + 1
|
|
1336 && IS_DIRECTORY_SEP (o[-1]) && IS_DIRECTORY_SEP (o[0]))
|
|
1337 ++o;
|
|
1338 else
|
|
1339 #endif /* APOLLO || WINDOWSNT */
|
|
1340 if (o == target && IS_ANY_SEP (*o))
|
|
1341 ++o;
|
|
1342 p += 3;
|
|
1343 }
|
|
1344 else
|
|
1345 {
|
|
1346 *o++ = *p++;
|
|
1347 }
|
|
1348 #endif /* not VMS */
|
|
1349 }
|
|
1350
|
|
1351 #ifdef DOS_NT
|
|
1352 /* at last, set drive name. */
|
|
1353 if (target[1] != ':'
|
|
1354 #ifdef WINDOWSNT
|
|
1355 /* Allow network paths that look like "\\foo" */
|
|
1356 && !(IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1]))
|
|
1357 #endif /* WINDOWSNT */
|
|
1358 )
|
|
1359 {
|
|
1360 target -= 2;
|
|
1361 target[0] = (drive < 0 ? getdisk () + 'A' : drive);
|
|
1362 target[1] = ':';
|
|
1363 }
|
|
1364 #endif /* DOS_NT */
|
|
1365
|
|
1366 return make_string (target, o - target);
|
|
1367 }
|
|
1368
|
|
1369 #if 0 /* FSFmacs */
|
|
1370 another older version of expand-file-name;
|
|
1371 #endif
|
|
1372
|
|
1373 /* not a full declaration because realpath() is typed differently
|
|
1374 on different systems */
|
|
1375 extern char *realpath ();
|
|
1376
|
20
|
1377 DEFUN ("file-truename", Ffile_truename, 1, 2, 0, /*
|
0
|
1378 Return the canonical name of the given FILE.
|
|
1379 Second arg DEFAULT is directory to start with if FILE is relative
|
|
1380 (does not start with slash); if DEFAULT is nil or missing,
|
|
1381 the current buffer's value of default-directory is used.
|
|
1382 No component of the resulting pathname will be a symbolic link, as
|
|
1383 in the realpath() function.
|
20
|
1384 */
|
|
1385 (filename, defalt))
|
0
|
1386 {
|
70
|
1387 /* This function can GC */
|
|
1388 struct gcpro gcpro1;
|
0
|
1389 Lisp_Object expanded_name;
|
|
1390 Lisp_Object handler;
|
|
1391
|
|
1392 CHECK_STRING (filename);
|
|
1393
|
70
|
1394 GCPRO1 (filename);
|
0
|
1395 expanded_name = Fexpand_file_name (filename, defalt);
|
70
|
1396 UNGCPRO;
|
0
|
1397
|
|
1398 if (!STRINGP (expanded_name))
|
|
1399 return Qnil;
|
|
1400
|
|
1401 GCPRO1 (expanded_name);
|
|
1402 handler = Ffind_file_name_handler (expanded_name, Qfile_truename);
|
|
1403 UNGCPRO;
|
|
1404
|
|
1405 if (!NILP (handler))
|
|
1406 return (call2_check_string (handler, Qfile_truename,
|
|
1407 expanded_name));
|
|
1408
|
|
1409 #ifdef VMS
|
|
1410 return (expanded_name);
|
|
1411 #else
|
|
1412 {
|
|
1413 char resolved_path[MAXPATHLEN];
|
|
1414 char path[MAXPATHLEN];
|
|
1415 char *p = path;
|
16
|
1416 int elen = XSTRING_LENGTH (expanded_name);
|
0
|
1417
|
|
1418 if (elen >= countof (path))
|
|
1419 goto toolong;
|
|
1420
|
16
|
1421 memcpy (path, XSTRING_DATA (expanded_name), elen + 1);
|
0
|
1422 /* memset (resolved_path, 0, sizeof (resolved_path)); */
|
|
1423
|
|
1424 /* Try doing it all at once. */
|
|
1425 /* !!#### Does realpath() Mule-encapsulate? */
|
|
1426 if (!realpath (path, resolved_path))
|
|
1427 {
|
|
1428 /* Didn't resolve it -- have to do it one component at a time. */
|
|
1429 /* "realpath" is a typically useless, stupid un*x piece of crap.
|
|
1430 It claims to return a useful value in the "error" case, but since
|
|
1431 there is no indication provided of how far along the pathname
|
|
1432 the function went before erring, there is no way to use the
|
|
1433 partial result returned. What a piece of junk. */
|
|
1434 for (;;)
|
|
1435 {
|
|
1436 p = (char *) memchr (p + 1, '/', elen - (p + 1 - path));
|
|
1437 if (p)
|
|
1438 *p = 0;
|
|
1439
|
|
1440 /* memset (resolved_path, 0, sizeof (resolved_path)); */
|
|
1441 if (realpath (path, resolved_path))
|
|
1442 {
|
|
1443 if (p)
|
|
1444 *p = '/';
|
|
1445 else
|
|
1446 break;
|
|
1447
|
|
1448 }
|
|
1449 else if (errno == ENOENT)
|
|
1450 {
|
|
1451 /* Failed on this component. Just tack on the rest of
|
|
1452 the string and we are done. */
|
|
1453 int rlen = strlen (resolved_path);
|
|
1454
|
|
1455 /* "On failure, it returns NULL, sets errno to indicate
|
|
1456 the error, and places in resolved_path the absolute pathname
|
|
1457 of the path component which could not be resolved." */
|
|
1458 if (p)
|
|
1459 {
|
|
1460 int plen = elen - (p - path);
|
|
1461
|
|
1462 if (rlen > 1 && resolved_path[rlen - 1] == '/')
|
|
1463 rlen = rlen - 1;
|
|
1464
|
|
1465 if (plen + rlen + 1 > countof (resolved_path))
|
|
1466 goto toolong;
|
|
1467
|
|
1468 resolved_path[rlen] = '/';
|
|
1469 memcpy (resolved_path + rlen + 1, p + 1, plen + 1 - 1);
|
|
1470 }
|
|
1471 break;
|
|
1472 }
|
|
1473 else
|
|
1474 goto lose;
|
|
1475 }
|
|
1476 }
|
|
1477
|
|
1478 {
|
|
1479 int rlen = strlen (resolved_path);
|
70
|
1480 if (elen > 0 && string_byte (XSTRING (expanded_name), elen - 1) == '/'
|
0
|
1481 && !(rlen > 0 && resolved_path[rlen - 1] == '/'))
|
|
1482 {
|
|
1483 if (rlen + 1 > countof (resolved_path))
|
|
1484 goto toolong;
|
|
1485 resolved_path[rlen] = '/';
|
|
1486 resolved_path[rlen + 1] = 0;
|
|
1487 rlen = rlen + 1;
|
|
1488 }
|
|
1489 return make_string ((Bufbyte *) resolved_path, rlen);
|
|
1490 }
|
|
1491
|
|
1492 toolong:
|
|
1493 errno = ENAMETOOLONG;
|
|
1494 goto lose;
|
|
1495 lose:
|
|
1496 report_file_error ("Finding truename", list1 (expanded_name));
|
|
1497 }
|
|
1498 return Qnil; /* suppress compiler warning */
|
|
1499 #endif /* not VMS */
|
|
1500 }
|
|
1501
|
|
1502
|
20
|
1503 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name, 1, 1, 0, /*
|
0
|
1504 Substitute environment variables referred to in FILENAME.
|
|
1505 `$FOO' where FOO is an environment variable name means to substitute
|
|
1506 the value of that variable. The variable name should be terminated
|
|
1507 with a character not a letter, digit or underscore; otherwise, enclose
|
|
1508 the entire variable name in braces.
|
|
1509 If `/~' appears, all of FILENAME through that `/' is discarded.
|
|
1510
|
|
1511 On VMS, `$' substitution is not done; this function does little and only
|
|
1512 duplicates what `expand-file-name' does.
|
20
|
1513 */
|
|
1514 (string))
|
0
|
1515 {
|
|
1516 Bufbyte *nm;
|
|
1517
|
|
1518 Bufbyte *s, *p, *o, *x, *endp;
|
|
1519 Bufbyte *target = 0;
|
|
1520 int total = 0;
|
|
1521 int substituted = 0;
|
|
1522 Bufbyte *xnm;
|
|
1523 Lisp_Object handler;
|
|
1524
|
|
1525 CHECK_STRING (string);
|
|
1526
|
|
1527 /* If the file name has special constructs in it,
|
|
1528 call the corresponding file handler. */
|
|
1529 handler = Ffind_file_name_handler (string, Qsubstitute_in_file_name);
|
|
1530 if (!NILP (handler))
|
70
|
1531 {
|
|
1532 Lisp_Object retval = call2 (handler, Qsubstitute_in_file_name,
|
|
1533 string);
|
|
1534
|
|
1535 if (!NILP (retval))
|
|
1536 CHECK_STRING (retval);
|
|
1537 return retval;
|
|
1538 }
|
0
|
1539
|
16
|
1540 nm = XSTRING_DATA (string);
|
0
|
1541 #ifdef MSDOS
|
|
1542 dostounix_filename (nm = strcpy (alloca (strlen (nm) + 1), nm));
|
16
|
1543 substituted = !strcmp (nm, XSTRING_DATA (string));
|
0
|
1544 #endif
|
16
|
1545 endp = nm + XSTRING_LENGTH (string);
|
0
|
1546
|
|
1547 /* If /~ or // appears, discard everything through first slash. */
|
|
1548
|
|
1549 for (p = nm; p != endp; p++)
|
|
1550 {
|
|
1551 if ((p[0] == '~' ||
|
|
1552 #ifdef APOLLO
|
|
1553 /* // at start of file name is meaningful in Apollo system */
|
|
1554 (p[0] == '/' && p - 1 != nm)
|
|
1555 #else /* not APOLLO */
|
|
1556 #ifdef WINDOWSNT
|
|
1557 (IS_DIRECTORY_SEP (p[0]) && p - 1 != nm)
|
|
1558 #else /* not WINDOWSNT */
|
|
1559 p[0] == '/'
|
|
1560 #endif /* not WINDOWSNT */
|
|
1561 #endif /* not APOLLO */
|
|
1562 )
|
|
1563 && p != nm
|
|
1564 && (0
|
|
1565 #ifdef VMS
|
|
1566 || p[-1] == ':' || p[-1] == ']' || p[-1] == '>'
|
|
1567 #endif /* VMS */
|
|
1568 || IS_DIRECTORY_SEP (p[-1])))
|
|
1569 {
|
|
1570 nm = p;
|
|
1571 substituted = 1;
|
|
1572 }
|
|
1573 #ifdef DOS_NT
|
|
1574 if (p[0] && p[1] == ':')
|
|
1575 {
|
|
1576 nm = p;
|
|
1577 substituted = 1;
|
|
1578 }
|
|
1579 #endif /* DOS_NT */
|
|
1580 }
|
|
1581
|
|
1582 #ifdef VMS
|
|
1583 return build_string (nm);
|
|
1584 #else
|
|
1585
|
|
1586 /* See if any variables are substituted into the string
|
|
1587 and find the total length of their values in `total' */
|
|
1588
|
|
1589 for (p = nm; p != endp;)
|
|
1590 if (*p != '$')
|
|
1591 p++;
|
|
1592 else
|
|
1593 {
|
|
1594 p++;
|
|
1595 if (p == endp)
|
|
1596 goto badsubst;
|
|
1597 else if (*p == '$')
|
|
1598 {
|
|
1599 /* "$$" means a single "$" */
|
|
1600 p++;
|
|
1601 total -= 1;
|
|
1602 substituted = 1;
|
|
1603 continue;
|
|
1604 }
|
|
1605 else if (*p == '{')
|
|
1606 {
|
|
1607 o = ++p;
|
|
1608 while (p != endp && *p != '}') p++;
|
|
1609 if (*p != '}') goto missingclose;
|
|
1610 s = p;
|
|
1611 }
|
|
1612 else
|
|
1613 {
|
|
1614 o = p;
|
|
1615 while (p != endp && (isalnum (*p) || *p == '_')) p++;
|
|
1616 s = p;
|
|
1617 }
|
|
1618
|
|
1619 /* Copy out the variable name */
|
|
1620 target = (Bufbyte *) alloca (s - o + 1);
|
|
1621 strncpy ((char *) target, (char *) o, s - o);
|
|
1622 target[s - o] = 0;
|
|
1623 #ifdef DOS_NT
|
|
1624 strupr (target); /* $home == $HOME etc. */
|
|
1625 #endif /* DOS_NT */
|
|
1626
|
|
1627 /* Get variable value */
|
|
1628 o = (Bufbyte *) egetenv ((char *) target);
|
|
1629 if (!o) goto badvar;
|
|
1630 total += strlen ((char *) o);
|
|
1631 substituted = 1;
|
|
1632 }
|
|
1633
|
|
1634 if (!substituted)
|
|
1635 return string;
|
|
1636
|
|
1637 /* If substitution required, recopy the string and do it */
|
|
1638 /* Make space in stack frame for the new copy */
|
16
|
1639 xnm = (Bufbyte *) alloca (XSTRING_LENGTH (string) + total + 1);
|
0
|
1640 x = xnm;
|
|
1641
|
|
1642 /* Copy the rest of the name through, replacing $ constructs with values */
|
|
1643 for (p = nm; *p;)
|
|
1644 if (*p != '$')
|
|
1645 *x++ = *p++;
|
|
1646 else
|
|
1647 {
|
|
1648 p++;
|
|
1649 if (p == endp)
|
|
1650 goto badsubst;
|
|
1651 else if (*p == '$')
|
|
1652 {
|
|
1653 *x++ = *p++;
|
|
1654 continue;
|
|
1655 }
|
|
1656 else if (*p == '{')
|
|
1657 {
|
|
1658 o = ++p;
|
|
1659 while (p != endp && *p != '}') p++;
|
|
1660 if (*p != '}') goto missingclose;
|
|
1661 s = p++;
|
|
1662 }
|
|
1663 else
|
|
1664 {
|
|
1665 o = p;
|
|
1666 while (p != endp && (isalnum (*p) || *p == '_')) p++;
|
|
1667 s = p;
|
|
1668 }
|
|
1669
|
|
1670 /* Copy out the variable name */
|
|
1671 target = (Bufbyte *) alloca (s - o + 1);
|
|
1672 strncpy ((char *) target, (char *) o, s - o);
|
|
1673 target[s - o] = 0;
|
|
1674 #ifdef DOS_NT
|
|
1675 strupr (target); /* $home == $HOME etc. */
|
|
1676 #endif /* DOS_NT */
|
|
1677
|
|
1678 /* Get variable value */
|
|
1679 o = (Bufbyte *) egetenv ((char *) target);
|
|
1680 if (!o)
|
|
1681 goto badvar;
|
|
1682
|
|
1683 strcpy ((char *) x, (char *) o);
|
|
1684 x += strlen ((char *) o);
|
|
1685 }
|
|
1686
|
|
1687 *x = 0;
|
|
1688
|
|
1689 /* If /~ or // appears, discard everything through first slash. */
|
|
1690
|
|
1691 for (p = xnm; p != x; p++)
|
|
1692 if ((p[0] == '~'
|
|
1693 #ifdef APOLLO
|
|
1694 /* // at start of file name is meaningful in Apollo system */
|
|
1695 || (p[0] == '/' && p - 1 != xnm)
|
|
1696 #else /* not APOLLO */
|
|
1697 #ifdef WINDOWSNT
|
|
1698 || (IS_DIRECTORY_SEP (p[0]) && p - 1 != xnm)
|
|
1699 #else /* not WINDOWSNT */
|
|
1700 || p[0] == '/'
|
|
1701 #endif /* not WINDOWSNT */
|
|
1702 #endif /* not APOLLO */
|
|
1703 )
|
|
1704 /* don't do p[-1] if that would go off the beginning --jwz */
|
|
1705 && p != nm && p > xnm && IS_DIRECTORY_SEP (p[-1]))
|
|
1706 xnm = p;
|
|
1707 #ifdef DOS_NT
|
|
1708 else if (p[0] && p[1] == ':')
|
|
1709 xnm = p;
|
|
1710 #endif
|
|
1711
|
|
1712 return make_string (xnm, x - xnm);
|
|
1713
|
|
1714 badsubst:
|
|
1715 error ("Bad format environment-variable substitution");
|
|
1716 missingclose:
|
|
1717 error ("Missing \"}\" in environment-variable substitution");
|
|
1718 badvar:
|
|
1719 error ("Substituting nonexistent environment variable \"%s\"",
|
|
1720 target);
|
|
1721
|
|
1722 /* NOTREACHED */
|
|
1723 return Qnil; /* suppress compiler warning */
|
|
1724 #endif /* not VMS */
|
|
1725 }
|
|
1726
|
|
1727 /* (directory-file-name (expand-file-name FOO)) */
|
|
1728
|
|
1729 Lisp_Object
|
|
1730 expand_and_dir_to_file (Lisp_Object filename, Lisp_Object defdir)
|
|
1731 {
|
70
|
1732 /* This function can GC */
|
0
|
1733 Lisp_Object abspath;
|
|
1734 struct gcpro gcpro1;
|
|
1735
|
70
|
1736 GCPRO1 (filename);
|
0
|
1737 abspath = Fexpand_file_name (filename, defdir);
|
|
1738 #ifdef VMS
|
|
1739 {
|
|
1740 Bufbyte c =
|
70
|
1741 string_byte (XSTRING (abspath), XSTRING_LENGTH (abspath) - 1);
|
0
|
1742 if (c == ':' || c == ']' || c == '>')
|
|
1743 abspath = Fdirectory_file_name (abspath);
|
|
1744 }
|
|
1745 #else
|
|
1746 /* Remove final slash, if any (unless path is root).
|
|
1747 stat behaves differently depending! */
|
16
|
1748 if (XSTRING_LENGTH (abspath) > 1
|
70
|
1749 && IS_DIRECTORY_SEP (string_byte (XSTRING (abspath),
|
|
1750 XSTRING_LENGTH (abspath) - 1))
|
|
1751 && !IS_DEVICE_SEP (string_byte (XSTRING (abspath),
|
|
1752 XSTRING_LENGTH (abspath) - 2)))
|
0
|
1753 /* We cannot take shortcuts; they might be wrong for magic file names. */
|
|
1754 abspath = Fdirectory_file_name (abspath);
|
|
1755 #endif
|
|
1756 UNGCPRO;
|
|
1757 return abspath;
|
|
1758 }
|
|
1759
|
|
1760 /* Signal an error if the file ABSNAME already exists.
|
|
1761 If INTERACTIVE is nonzero, ask the user whether to proceed,
|
|
1762 and bypass the error if the user says to go ahead.
|
|
1763 QUERYSTRING is a name for the action that is being considered
|
|
1764 to alter the file.
|
|
1765 *STATPTR is used to store the stat information if the file exists.
|
|
1766 If the file does not exist, STATPTR->st_mode is set to 0. */
|
|
1767
|
|
1768 static void
|
|
1769 barf_or_query_if_file_exists (Lisp_Object absname, CONST char *querystring,
|
|
1770 int interactive, struct stat *statptr)
|
|
1771 {
|
|
1772 struct stat statbuf;
|
|
1773
|
|
1774 /* stat is a good way to tell whether the file exists,
|
|
1775 regardless of what access permissions it has. */
|
16
|
1776 if (stat ((char *) XSTRING_DATA (absname), &statbuf) >= 0)
|
0
|
1777 {
|
|
1778 Lisp_Object tem;
|
70
|
1779 struct gcpro gcpro1;
|
|
1780
|
|
1781 GCPRO1 (absname);
|
0
|
1782 if (interactive)
|
70
|
1783 tem = call1
|
|
1784 (Qyes_or_no_p,
|
|
1785 (emacs_doprnt_string_c
|
0
|
1786 ((CONST Bufbyte *) GETTEXT ("File %s already exists; %s anyway? "),
|
16
|
1787 Qnil, -1, XSTRING_DATA (absname),
|
70
|
1788 GETTEXT (querystring))));
|
0
|
1789 else
|
|
1790 tem = Qnil;
|
70
|
1791 UNGCPRO;
|
0
|
1792 if (NILP (tem))
|
|
1793 Fsignal (Qfile_already_exists,
|
|
1794 list2 (build_translated_string ("File already exists"),
|
|
1795 absname));
|
|
1796 if (statptr)
|
|
1797 *statptr = statbuf;
|
|
1798 }
|
|
1799 else
|
|
1800 {
|
|
1801 if (statptr)
|
|
1802 statptr->st_mode = 0;
|
|
1803 }
|
|
1804 return;
|
|
1805 }
|
|
1806
|
20
|
1807 DEFUN ("copy-file", Fcopy_file, 2, 4,
|
|
1808 "fCopy file: \nFCopy %s to file: \np\nP", /*
|
0
|
1809 Copy FILE to NEWNAME. Both args must be strings.
|
|
1810 Signals a `file-already-exists' error if file NEWNAME already exists,
|
|
1811 unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.
|
|
1812 A number as third arg means request confirmation if NEWNAME already exists.
|
|
1813 This is what happens in interactive use with M-x.
|
|
1814 Fourth arg KEEP-TIME non-nil means give the new file the same
|
|
1815 last-modified time as the old one. (This works on only some systems.)
|
|
1816 A prefix arg makes KEEP-TIME non-nil.
|
20
|
1817 */
|
74
|
1818 (filename, newname, ok_if_already_exists, keep_time))
|
0
|
1819 {
|
70
|
1820 /* This function can GC */
|
0
|
1821 int ifd, ofd, n;
|
|
1822 char buf[16 * 1024];
|
|
1823 struct stat st, out_st;
|
|
1824 Lisp_Object handler;
|
|
1825 int speccount = specpdl_depth ();
|
|
1826 struct gcpro gcpro1, gcpro2;
|
|
1827 /* Lisp_Object args[6]; */
|
|
1828 int input_file_statable_p;
|
|
1829
|
|
1830 GCPRO2 (filename, newname);
|
|
1831 CHECK_STRING (filename);
|
|
1832 CHECK_STRING (newname);
|
|
1833 filename = Fexpand_file_name (filename, Qnil);
|
|
1834 newname = Fexpand_file_name (newname, Qnil);
|
|
1835
|
|
1836 /* If the input file name has special constructs in it,
|
|
1837 call the corresponding file handler. */
|
|
1838 handler = Ffind_file_name_handler (filename, Qcopy_file);
|
|
1839 /* Likewise for output file name. */
|
|
1840 if (NILP (handler))
|
|
1841 handler = Ffind_file_name_handler (newname, Qcopy_file);
|
|
1842 if (!NILP (handler))
|
|
1843 {
|
|
1844 UNGCPRO;
|
|
1845 return call5 (handler, Qcopy_file, filename, newname,
|
74
|
1846 ok_if_already_exists, keep_time);
|
0
|
1847 }
|
|
1848
|
|
1849 /* When second argument is a directory, copy the file into it.
|
|
1850 (copy-file "foo" "bar/") == (copy-file "foo" "bar/foo")
|
|
1851 */
|
|
1852 if (!NILP (Ffile_directory_p (newname)))
|
|
1853 {
|
|
1854 Lisp_Object args[3];
|
|
1855 struct gcpro ngcpro1;
|
|
1856 int i = 1;
|
|
1857
|
|
1858 args[0] = newname;
|
|
1859 args[1] = Qnil; args[2] = Qnil;
|
|
1860 NGCPRO1 (*args);
|
|
1861 ngcpro1.nvars = 3;
|
70
|
1862 if (string_byte (XSTRING (newname),
|
|
1863 XSTRING_LENGTH (newname) - 1) != '/')
|
0
|
1864 args[i++] = build_string ("/");
|
|
1865 args[i++] = Ffile_name_nondirectory (filename);
|
|
1866 newname = Fconcat (i, args);
|
|
1867 NUNGCPRO;
|
|
1868 }
|
|
1869
|
|
1870 if (NILP (ok_if_already_exists)
|
|
1871 || INTP (ok_if_already_exists))
|
|
1872 barf_or_query_if_file_exists (newname, "copy to it",
|
|
1873 INTP (ok_if_already_exists), &out_st);
|
16
|
1874 else if (stat ((CONST char *) XSTRING_DATA (newname), &out_st) < 0)
|
0
|
1875 out_st.st_mode = 0;
|
|
1876
|
16
|
1877 ifd = open ((char *) XSTRING_DATA (filename), O_RDONLY, 0);
|
0
|
1878 if (ifd < 0)
|
|
1879 report_file_error ("Opening input file", Fcons (filename, Qnil));
|
|
1880
|
|
1881 record_unwind_protect (close_file_unwind, make_int (ifd));
|
|
1882
|
|
1883 /* We can only copy regular files and symbolic links. Other files are not
|
|
1884 copyable by us. */
|
|
1885 input_file_statable_p = (fstat (ifd, &st) >= 0);
|
|
1886
|
|
1887 #ifndef DOS_NT
|
|
1888 if (out_st.st_mode != 0
|
|
1889 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino)
|
|
1890 {
|
|
1891 errno = 0;
|
|
1892 report_file_error ("Input and output files are the same",
|
|
1893 Fcons (filename, Fcons (newname, Qnil)));
|
|
1894 }
|
|
1895 #endif
|
|
1896
|
|
1897 #if defined (S_ISREG) && defined (S_ISLNK)
|
|
1898 if (input_file_statable_p)
|
|
1899 {
|
|
1900 if (!(S_ISREG (st.st_mode))
|
|
1901 /* XEmacs: have to allow S_ISCHR in order to copy /dev/null */
|
|
1902 #ifdef S_ISCHR
|
|
1903 && !(S_ISCHR (st.st_mode))
|
|
1904 #endif
|
|
1905 && !(S_ISLNK (st.st_mode)))
|
|
1906 {
|
|
1907 #if defined (EISDIR)
|
|
1908 /* Get a better looking error message. */
|
|
1909 errno = EISDIR;
|
|
1910 #endif /* EISDIR */
|
|
1911 report_file_error ("Non-regular file", Fcons (filename, Qnil));
|
|
1912 }
|
|
1913 }
|
|
1914 #endif /* S_ISREG && S_ISLNK */
|
|
1915
|
|
1916 #ifdef VMS
|
|
1917 /* Create the copy file with the same record format as the input file */
|
16
|
1918 ofd = sys_creat ((char *) XSTRING_DATA (newname), 0666, ifd);
|
0
|
1919 #else
|
|
1920 #ifdef MSDOS
|
|
1921 /* System's default file type was set to binary by _fmode in emacs.c. */
|
16
|
1922 ofd = creat ((char *) XSTRING_DATA (newname), S_IREAD | S_IWRITE);
|
0
|
1923 #else /* not MSDOS */
|
16
|
1924 ofd = creat ((char *) XSTRING_DATA (newname), 0666);
|
0
|
1925 #endif /* not MSDOS */
|
|
1926 #endif /* VMS */
|
|
1927 if (ofd < 0)
|
|
1928 report_file_error ("Opening output file", list1 (newname));
|
|
1929
|
|
1930 {
|
|
1931 Lisp_Object ofd_locative = noseeum_cons (make_int (ofd), Qnil);
|
|
1932
|
|
1933 record_unwind_protect (close_file_unwind, ofd_locative);
|
|
1934
|
|
1935 while ((n = read_allowing_quit (ifd, buf, sizeof (buf))) > 0)
|
|
1936 {
|
|
1937 if (write_allowing_quit (ofd, buf, n) != n)
|
|
1938 report_file_error ("I/O error", list1 (newname));
|
|
1939 }
|
|
1940
|
|
1941 /* Closing the output clobbers the file times on some systems. */
|
|
1942 if (close (ofd) < 0)
|
|
1943 report_file_error ("I/O error", Fcons (newname, Qnil));
|
|
1944
|
|
1945 if (input_file_statable_p)
|
|
1946 {
|
74
|
1947 if (!NILP (keep_time))
|
0
|
1948 {
|
|
1949 EMACS_TIME atime, mtime;
|
|
1950 EMACS_SET_SECS_USECS (atime, st.st_atime, 0);
|
|
1951 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0);
|
16
|
1952 if (set_file_times ((char *) XSTRING_DATA (newname), atime,
|
0
|
1953 mtime))
|
|
1954 report_file_error ("I/O error", Fcons (newname, Qnil));
|
|
1955 }
|
|
1956 #ifndef MSDOS
|
16
|
1957 chmod ((CONST char *) XSTRING_DATA (newname),
|
0
|
1958 st.st_mode & 07777);
|
|
1959 #else /* MSDOS */
|
|
1960 #if defined (__DJGPP__) && __DJGPP__ > 1
|
|
1961 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits,
|
|
1962 and if it can't, it tells so. Otherwise, under MSDOS we usually
|
|
1963 get only the READ bit, which will make the copied file read-only,
|
|
1964 so it's better not to chmod at all. */
|
|
1965 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0)
|
16
|
1966 chmod ((char *) XSTRING_DATA (newname), st.st_mode & 07777);
|
0
|
1967 #endif /* DJGPP version 2 or newer */
|
|
1968 #endif /* MSDOS */
|
|
1969 }
|
|
1970
|
|
1971 /* We'll close it by hand */
|
|
1972 XCAR (ofd_locative) = Qnil;
|
|
1973
|
|
1974 /* Close ifd */
|
|
1975 unbind_to (speccount, Qnil);
|
|
1976 }
|
|
1977
|
|
1978 UNGCPRO;
|
|
1979 return Qnil;
|
|
1980 }
|
|
1981
|
20
|
1982 DEFUN ("make-directory-internal", Fmake_directory_internal, 1, 1, 0, /*
|
0
|
1983 Create a directory. One argument, a file name string.
|
20
|
1984 */
|
|
1985 (dirname))
|
0
|
1986 {
|
70
|
1987 /* This function can GC */
|
0
|
1988 char dir [MAXPATHLEN];
|
|
1989 Lisp_Object handler;
|
70
|
1990
|
0
|
1991 struct gcpro gcpro1;
|
|
1992
|
70
|
1993 GCPRO1 (dirname);
|
0
|
1994 CHECK_STRING (dirname);
|
|
1995 dirname = Fexpand_file_name (dirname, Qnil);
|
|
1996
|
|
1997 handler = Ffind_file_name_handler (dirname, Qmake_directory_internal);
|
|
1998 UNGCPRO;
|
|
1999 if (!NILP (handler))
|
70
|
2000 return (call2 (handler, Qmake_directory_internal,
|
|
2001 dirname));
|
0
|
2002
|
16
|
2003 if (XSTRING_LENGTH (dirname) > (sizeof (dir) - 1))
|
0
|
2004 {
|
|
2005 return Fsignal (Qfile_error,
|
|
2006 list3 (build_translated_string ("Creating directory"),
|
|
2007 build_translated_string ("pathame too long"),
|
|
2008 dirname));
|
|
2009 }
|
16
|
2010 strncpy (dir, (char *) XSTRING_DATA (dirname),
|
|
2011 XSTRING_LENGTH (dirname) + 1);
|
0
|
2012
|
|
2013 #ifndef VMS
|
16
|
2014 if (dir [XSTRING_LENGTH (dirname) - 1] == '/')
|
|
2015 dir [XSTRING_LENGTH (dirname) - 1] = 0;
|
0
|
2016 #endif
|
|
2017
|
|
2018 #ifdef WINDOWSNT
|
|
2019 if (mkdir (dir) != 0)
|
|
2020 #else
|
|
2021 if (mkdir (dir, 0777) != 0)
|
|
2022 #endif
|
|
2023 report_file_error ("Creating directory", list1 (dirname));
|
|
2024
|
|
2025 return Qnil;
|
|
2026 }
|
|
2027
|
20
|
2028 DEFUN ("delete-directory", Fdelete_directory, 1, 1, "FDelete directory: ", /*
|
0
|
2029 Delete a directory. One argument, a file name or directory name string.
|
20
|
2030 */
|
|
2031 (dirname))
|
0
|
2032 {
|
70
|
2033 /* This function can GC */
|
0
|
2034 Lisp_Object handler;
|
|
2035 struct gcpro gcpro1;
|
|
2036
|
70
|
2037 GCPRO1 (dirname);
|
40
|
2038 CHECK_STRING (dirname);
|
70
|
2039 dirname =
|
|
2040 Fdirectory_file_name (Fexpand_file_name (dirname, Qnil));
|
0
|
2041
|
|
2042 handler = Ffind_file_name_handler (dirname, Qdelete_directory);
|
|
2043 UNGCPRO;
|
|
2044 if (!NILP (handler))
|
|
2045 return (call2 (handler, Qdelete_directory, dirname));
|
|
2046
|
16
|
2047 if (rmdir ((char *) XSTRING_DATA (dirname)) != 0)
|
0
|
2048 report_file_error ("Removing directory", list1 (dirname));
|
|
2049
|
|
2050 return Qnil;
|
|
2051 }
|
|
2052
|
20
|
2053 DEFUN ("delete-file", Fdelete_file, 1, 1, "fDelete file: ", /*
|
0
|
2054 Delete specified file. One argument, a file name string.
|
|
2055 If file has multiple names, it continues to exist with the other names.
|
20
|
2056 */
|
|
2057 (filename))
|
0
|
2058 {
|
70
|
2059 /* This function can GC */
|
0
|
2060 Lisp_Object handler;
|
|
2061 struct gcpro gcpro1;
|
|
2062
|
70
|
2063 GCPRO1 (filename);
|
0
|
2064 CHECK_STRING (filename);
|
|
2065 filename = Fexpand_file_name (filename, Qnil);
|
|
2066
|
|
2067 handler = Ffind_file_name_handler (filename, Qdelete_file);
|
|
2068 UNGCPRO;
|
|
2069 if (!NILP (handler))
|
|
2070 return call2 (handler, Qdelete_file, filename);
|
|
2071
|
16
|
2072 if (0 > unlink ((char *) XSTRING_DATA (filename)))
|
0
|
2073 report_file_error ("Removing old name", list1 (filename));
|
|
2074 return Qnil;
|
|
2075 }
|
|
2076
|
|
2077 static Lisp_Object
|
|
2078 internal_delete_file_1 (Lisp_Object ignore, Lisp_Object ignore2)
|
|
2079 {
|
|
2080 return Qt;
|
|
2081 }
|
|
2082
|
|
2083 /* Delete file FILENAME, returning 1 if successful and 0 if failed. */
|
|
2084
|
|
2085 int
|
|
2086 internal_delete_file (Lisp_Object filename)
|
|
2087 {
|
|
2088 return NILP (condition_case_1 (Qt, Fdelete_file, filename,
|
|
2089 internal_delete_file_1, Qnil));
|
|
2090 }
|
|
2091
|
20
|
2092 DEFUN ("rename-file", Frename_file, 2, 3,
|
|
2093 "fRename file: \nFRename %s to file: \np", /*
|
0
|
2094 Rename FILE as NEWNAME. Both args strings.
|
|
2095 If file has names other than FILE, it continues to have those names.
|
|
2096 Signals a `file-already-exists' error if a file NEWNAME already exists
|
|
2097 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
|
|
2098 A number as third arg means request confirmation if NEWNAME already exists.
|
|
2099 This is what happens in interactive use with M-x.
|
20
|
2100 */
|
|
2101 (filename, newname, ok_if_already_exists))
|
0
|
2102 {
|
70
|
2103 /* This function can GC */
|
0
|
2104 Lisp_Object handler;
|
|
2105 struct gcpro gcpro1, gcpro2;
|
|
2106
|
|
2107 GCPRO2 (filename, newname);
|
|
2108 CHECK_STRING (filename);
|
|
2109 CHECK_STRING (newname);
|
|
2110 filename = Fexpand_file_name (filename, Qnil);
|
|
2111 newname = Fexpand_file_name (newname, Qnil);
|
|
2112
|
|
2113 /* If the file name has special constructs in it,
|
|
2114 call the corresponding file handler. */
|
|
2115 handler = Ffind_file_name_handler (filename, Qrename_file);
|
|
2116 if (NILP (handler))
|
|
2117 handler = Ffind_file_name_handler (newname, Qrename_file);
|
|
2118 if (!NILP (handler))
|
|
2119 {
|
|
2120 UNGCPRO;
|
|
2121 return call4 (handler, Qrename_file,
|
|
2122 filename, newname, ok_if_already_exists);
|
|
2123 }
|
|
2124
|
|
2125 /* When second argument is a directory, rename the file into it.
|
|
2126 (rename-file "foo" "bar/") == (rename-file "foo" "bar/foo")
|
|
2127 */
|
|
2128 if (!NILP (Ffile_directory_p (newname)))
|
|
2129 {
|
|
2130 Lisp_Object args[3];
|
|
2131 struct gcpro ngcpro1;
|
|
2132 int i = 1;
|
|
2133
|
|
2134 args[0] = newname;
|
|
2135 args[1] = Qnil; args[2] = Qnil;
|
|
2136 NGCPRO1 (*args);
|
|
2137 ngcpro1.nvars = 3;
|
16
|
2138 if (XSTRING_BYTE (newname, XSTRING_LENGTH (newname) - 1) != '/')
|
0
|
2139 args[i++] = build_string ("/");
|
|
2140 args[i++] = Ffile_name_nondirectory (filename);
|
|
2141 newname = Fconcat (i, args);
|
|
2142 NUNGCPRO;
|
|
2143 }
|
|
2144
|
|
2145 if (NILP (ok_if_already_exists)
|
|
2146 || INTP (ok_if_already_exists))
|
|
2147 barf_or_query_if_file_exists (newname, "rename to it",
|
|
2148 INTP (ok_if_already_exists), 0);
|
|
2149
|
|
2150 #ifdef WINDOWSNT
|
|
2151 if (!MoveFile (XSTRING (filename)->data, XSTRING (newname)->data))
|
|
2152 #else /* not WINDOWSNT */
|
|
2153 /* FSFmacs only calls rename() here under BSD 4.1, and calls
|
|
2154 link() and unlink() otherwise, but that's bogus. Sometimes
|
|
2155 rename() succeeds where link()/unlink() fail, and we have
|
|
2156 configure check for rename() and emulate using link()/unlink()
|
|
2157 if necessary. */
|
16
|
2158 if (0 > rename ((char *) XSTRING_DATA (filename),
|
|
2159 (char *) XSTRING_DATA (newname)))
|
0
|
2160 #endif /* not WINDOWSNT */
|
|
2161 {
|
|
2162 #ifdef WINDOWSNT
|
|
2163 /* Why two? And why doesn't MS document what MoveFile will return? */
|
|
2164 if (GetLastError () == ERROR_FILE_EXISTS
|
|
2165 || GetLastError () == ERROR_ALREADY_EXISTS)
|
|
2166 #else /* not WINDOWSNT */
|
|
2167 if (errno == EXDEV)
|
|
2168 #endif /* not WINDOWSNT */
|
|
2169 {
|
|
2170 Fcopy_file (filename, newname,
|
|
2171 /* We have already prompted if it was an integer,
|
|
2172 so don't have copy-file prompt again. */
|
|
2173 ((NILP (ok_if_already_exists)) ? Qnil : Qt),
|
|
2174 Qt);
|
|
2175 Fdelete_file (filename);
|
|
2176 }
|
|
2177 else
|
|
2178 {
|
|
2179 report_file_error ("Renaming", list2 (filename, newname));
|
|
2180 }
|
|
2181 }
|
|
2182 UNGCPRO;
|
|
2183 return Qnil;
|
|
2184 }
|
|
2185
|
20
|
2186 DEFUN ("add-name-to-file", Fadd_name_to_file, 2, 3,
|
|
2187 "fAdd name to file: \nFName to add to %s: \np", /*
|
0
|
2188 Give FILE additional name NEWNAME. Both args strings.
|
|
2189 Signals a `file-already-exists' error if a file NEWNAME already exists
|
|
2190 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
|
|
2191 A number as third arg means request confirmation if NEWNAME already exists.
|
|
2192 This is what happens in interactive use with M-x.
|
20
|
2193 */
|
|
2194 (filename, newname, ok_if_already_exists))
|
0
|
2195 {
|
70
|
2196 /* This function can GC */
|
0
|
2197 Lisp_Object handler;
|
|
2198 struct gcpro gcpro1, gcpro2;
|
|
2199
|
|
2200 GCPRO2 (filename, newname);
|
|
2201 CHECK_STRING (filename);
|
|
2202 CHECK_STRING (newname);
|
|
2203 filename = Fexpand_file_name (filename, Qnil);
|
|
2204 newname = Fexpand_file_name (newname, Qnil);
|
|
2205
|
|
2206 /* If the file name has special constructs in it,
|
|
2207 call the corresponding file handler. */
|
|
2208 handler = Ffind_file_name_handler (filename, Qadd_name_to_file);
|
|
2209 if (!NILP (handler))
|
|
2210 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, filename,
|
|
2211 newname, ok_if_already_exists));
|
|
2212
|
|
2213 /* If the new name has special constructs in it,
|
|
2214 call the corresponding file handler. */
|
|
2215 handler = Ffind_file_name_handler (newname, Qadd_name_to_file);
|
|
2216 if (!NILP (handler))
|
|
2217 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, filename,
|
|
2218 newname, ok_if_already_exists));
|
|
2219
|
|
2220 if (NILP (ok_if_already_exists)
|
|
2221 || INTP (ok_if_already_exists))
|
|
2222 barf_or_query_if_file_exists (newname, "make it a new name",
|
|
2223 INTP (ok_if_already_exists), 0);
|
|
2224 #ifdef WINDOWSNT
|
|
2225 /* Windows does not support this operation. */
|
|
2226 report_file_error ("Adding new name", Flist (2, &filename));
|
|
2227 #else /* not WINDOWSNT */
|
|
2228
|
16
|
2229 unlink ((char *) XSTRING_DATA (newname));
|
|
2230 if (0 > link ((char *) XSTRING_DATA (filename),
|
|
2231 (char *) XSTRING_DATA (newname)))
|
0
|
2232 {
|
|
2233 report_file_error ("Adding new name",
|
|
2234 list2 (filename, newname));
|
|
2235 }
|
|
2236 #endif /* not WINDOWSNT */
|
|
2237
|
|
2238 UNGCPRO;
|
|
2239 return Qnil;
|
|
2240 }
|
|
2241
|
|
2242 #ifdef S_IFLNK
|
20
|
2243 DEFUN ("make-symbolic-link", Fmake_symbolic_link, 2, 3,
|
|
2244 "FMake symbolic link to file: \nFMake symbolic link to file %s: \np", /*
|
0
|
2245 Make a symbolic link to FILENAME, named LINKNAME. Both args strings.
|
|
2246 Signals a `file-already-exists' error if a file LINKNAME already exists
|
|
2247 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.
|
|
2248 A number as third arg means request confirmation if LINKNAME already exists.
|
|
2249 This happens for interactive use with M-x.
|
20
|
2250 */
|
|
2251 (filename, linkname, ok_if_already_exists))
|
0
|
2252 {
|
70
|
2253 /* This function can GC */
|
0
|
2254 Lisp_Object handler;
|
|
2255 struct gcpro gcpro1, gcpro2;
|
|
2256
|
|
2257 GCPRO2 (filename, linkname);
|
|
2258 CHECK_STRING (filename);
|
|
2259 CHECK_STRING (linkname);
|
|
2260 /* If the link target has a ~, we must expand it to get
|
|
2261 a truly valid file name. Otherwise, do not expand;
|
|
2262 we want to permit links to relative file names. */
|
70
|
2263 if (string_byte (XSTRING (filename), 0) == '~') /* #### Un*x-specific */
|
0
|
2264 filename = Fexpand_file_name (filename, Qnil);
|
|
2265 linkname = Fexpand_file_name (linkname, Qnil);
|
|
2266
|
|
2267 /* If the file name has special constructs in it,
|
|
2268 call the corresponding file handler. */
|
|
2269 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link);
|
|
2270 if (!NILP (handler))
|
|
2271 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename, linkname,
|
|
2272 ok_if_already_exists));
|
|
2273
|
|
2274 /* If the new link name has special constructs in it,
|
|
2275 call the corresponding file handler. */
|
|
2276 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link);
|
|
2277 if (!NILP (handler))
|
|
2278 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename,
|
|
2279 linkname, ok_if_already_exists));
|
|
2280
|
|
2281 if (NILP (ok_if_already_exists)
|
|
2282 || INTP (ok_if_already_exists))
|
|
2283 barf_or_query_if_file_exists (linkname, "make it a link",
|
|
2284 INTP (ok_if_already_exists), 0);
|
|
2285
|
16
|
2286 unlink ((char *) XSTRING_DATA (linkname));
|
|
2287 if (0 > symlink ((char *) XSTRING_DATA (filename),
|
|
2288 (char *) XSTRING_DATA (linkname)))
|
0
|
2289 {
|
|
2290 report_file_error ("Making symbolic link",
|
|
2291 list2 (filename, linkname));
|
|
2292 }
|
|
2293 UNGCPRO;
|
|
2294 return Qnil;
|
|
2295 }
|
|
2296 #endif /* S_IFLNK */
|
|
2297
|
|
2298 #ifdef VMS
|
|
2299
|
20
|
2300 DEFUN ("define-logical-name", Fdefine_logical_name, 2, 2,
|
|
2301 "sDefine logical name: \nsDefine logical name %s as: ", /*
|
0
|
2302 Define the job-wide logical name NAME to have the value STRING.
|
|
2303 If STRING is nil or a null string, the logical name NAME is deleted.
|
20
|
2304 */
|
|
2305 (varname, string))
|
0
|
2306 {
|
|
2307 CHECK_STRING (varname);
|
|
2308 if (NILP (string))
|
16
|
2309 delete_logical_name ((char *) XSTRING_DATA (varname));
|
0
|
2310 else
|
|
2311 {
|
|
2312 CHECK_STRING (string);
|
|
2313
|
16
|
2314 if (XSTRING_LENGTH (string) == 0)
|
|
2315 delete_logical_name ((char *) XSTRING_DATA (varname));
|
0
|
2316 else
|
16
|
2317 define_logical_name ((char *) XSTRING_DATA (varname), (char *) XSTRING_DATA (string));
|
0
|
2318 }
|
|
2319
|
|
2320 return string;
|
|
2321 }
|
|
2322 #endif /* VMS */
|
|
2323
|
|
2324 #ifdef HPUX_NET
|
|
2325
|
20
|
2326 DEFUN ("sysnetunam", Fsysnetunam, 2, 2, 0, /*
|
0
|
2327 Open a network connection to PATH using LOGIN as the login string.
|
20
|
2328 */
|
|
2329 (path, login))
|
0
|
2330 {
|
|
2331 int netresult;
|
|
2332
|
|
2333 CHECK_STRING (path);
|
|
2334 CHECK_STRING (login);
|
|
2335
|
|
2336 /* netunam, being a strange-o system call only used once, is not
|
|
2337 encapsulated. */
|
|
2338 {
|
|
2339 char *path_ext;
|
|
2340 char *login_ext;
|
|
2341
|
|
2342 GET_C_STRING_FILENAME_DATA_ALLOCA (path, path_ext);
|
|
2343 GET_C_STRING_EXT_DATA_ALLOCA (login, FORMAT_OS, login_ext);
|
|
2344
|
|
2345 netresult = netunam (path_ext, login_ext);
|
|
2346 }
|
|
2347
|
|
2348 if (netresult == -1)
|
|
2349 return Qnil;
|
|
2350 else
|
|
2351 return Qt;
|
|
2352 }
|
|
2353 #endif /* HPUX_NET */
|
|
2354
|
20
|
2355 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, 1, 1, 0, /*
|
0
|
2356 Return t if file FILENAME specifies an absolute path name.
|
|
2357 On Unix, this is a name starting with a `/' or a `~'.
|
20
|
2358 */
|
|
2359 (filename))
|
0
|
2360 {
|
|
2361 Bufbyte *ptr;
|
|
2362
|
|
2363 CHECK_STRING (filename);
|
16
|
2364 ptr = XSTRING_DATA (filename);
|
0
|
2365 if (IS_DIRECTORY_SEP (*ptr) || *ptr == '~'
|
|
2366 #ifdef VMS
|
|
2367 /* ??? This criterion is probably wrong for '<'. */
|
|
2368 || strchr (ptr, ':') || strchr (ptr, '<')
|
|
2369 || (*ptr == '[' && (ptr[1] != '-' || (ptr[2] != '.' && ptr[2] != ']'))
|
|
2370 && ptr[1] != '.')
|
|
2371 #endif /* VMS */
|
|
2372 #ifdef DOS_NT
|
|
2373 || (*ptr != 0 && ptr[1] == ':' && (ptr[2] == '/' || ptr[2] == '\\'))
|
|
2374 #endif
|
|
2375 )
|
|
2376 return Qt;
|
|
2377 else
|
|
2378 return Qnil;
|
|
2379 }
|
|
2380
|
|
2381 /* Return nonzero if file FILENAME exists and can be executed. */
|
|
2382
|
|
2383 static int
|
|
2384 check_executable (char *filename)
|
|
2385 {
|
|
2386 #ifdef DOS_NT
|
|
2387 int len = strlen (filename);
|
|
2388 char *suffix;
|
|
2389 struct stat st;
|
|
2390 if (stat (filename, &st) < 0)
|
|
2391 return 0;
|
|
2392 return (S_ISREG (st.st_mode)
|
|
2393 && len >= 5
|
|
2394 && (stricmp ((suffix = filename + len-4), ".com") == 0
|
|
2395 || stricmp (suffix, ".exe") == 0
|
|
2396 || stricmp (suffix, ".bat") == 0)
|
|
2397 || (st.st_mode & S_IFMT) == S_IFDIR);
|
|
2398 #else /* not DOS_NT */
|
|
2399 #ifdef HAVE_EACCESS
|
|
2400 return (eaccess (filename, 1) >= 0);
|
|
2401 #else
|
|
2402 /* Access isn't quite right because it uses the real uid
|
|
2403 and we really want to test with the effective uid.
|
|
2404 But Unix doesn't give us a right way to do it. */
|
|
2405 return (access (filename, 1) >= 0);
|
|
2406 #endif
|
|
2407 #endif /* not DOS_NT */
|
|
2408 }
|
|
2409
|
|
2410 /* Return nonzero if file FILENAME exists and can be written. */
|
|
2411
|
|
2412 static int
|
|
2413 check_writable (CONST char *filename)
|
|
2414 {
|
|
2415 #ifdef MSDOS
|
|
2416 struct stat st;
|
|
2417 if (stat (filename, &st) < 0)
|
|
2418 return 0;
|
|
2419 return (st.st_mode & S_IWRITE || (st.st_mode & S_IFMT) == S_IFDIR);
|
|
2420 #else /* not MSDOS */
|
|
2421 #ifdef HAVE_EACCESS
|
|
2422 return (eaccess (filename, 2) >= 0);
|
|
2423 #else
|
|
2424 /* Access isn't quite right because it uses the real uid
|
|
2425 and we really want to test with the effective uid.
|
|
2426 But Unix doesn't give us a right way to do it.
|
|
2427 Opening with O_WRONLY could work for an ordinary file,
|
|
2428 but would lose for directories. */
|
|
2429 return (access (filename, 2) >= 0);
|
|
2430 #endif
|
|
2431 #endif /* not MSDOS */
|
|
2432 }
|
|
2433
|
20
|
2434 DEFUN ("file-exists-p", Ffile_exists_p, 1, 1, 0, /*
|
0
|
2435 Return t if file FILENAME exists. (This does not mean you can read it.)
|
|
2436 See also `file-readable-p' and `file-attributes'.
|
20
|
2437 */
|
|
2438 (filename))
|
0
|
2439 {
|
70
|
2440 /* This function can GC */
|
0
|
2441 Lisp_Object abspath;
|
|
2442 Lisp_Object handler;
|
|
2443 struct stat statbuf;
|
|
2444 struct gcpro gcpro1;
|
|
2445
|
70
|
2446 GCPRO1 (filename);
|
0
|
2447 CHECK_STRING (filename);
|
|
2448 abspath = Fexpand_file_name (filename, Qnil);
|
70
|
2449 UNGCPRO;
|
0
|
2450
|
|
2451 /* If the file name has special constructs in it,
|
|
2452 call the corresponding file handler. */
|
|
2453 GCPRO1 (abspath);
|
|
2454 handler = Ffind_file_name_handler (abspath, Qfile_exists_p);
|
|
2455 UNGCPRO;
|
|
2456 if (!NILP (handler))
|
|
2457 return call2 (handler, Qfile_exists_p, abspath);
|
|
2458
|
16
|
2459 if (stat ((char *) XSTRING_DATA (abspath), &statbuf) >= 0)
|
0
|
2460 return (Qt);
|
|
2461 else
|
|
2462 return (Qnil);
|
|
2463 }
|
|
2464
|
20
|
2465 DEFUN ("file-executable-p", Ffile_executable_p, 1, 1, 0, /*
|
0
|
2466 Return t if FILENAME can be executed by you.
|
|
2467 For a directory, this means you can access files in that directory.
|
20
|
2468 */
|
|
2469 (filename))
|
70
|
2470
|
0
|
2471 {
|
70
|
2472 /* This function can GC */
|
0
|
2473 Lisp_Object abspath;
|
|
2474 Lisp_Object handler;
|
|
2475 struct gcpro gcpro1;
|
|
2476
|
|
2477 GCPRO1 (filename);
|
|
2478 CHECK_STRING (filename);
|
|
2479 abspath = Fexpand_file_name (filename, Qnil);
|
|
2480 UNGCPRO;
|
|
2481
|
|
2482 /* If the file name has special constructs in it,
|
|
2483 call the corresponding file handler. */
|
|
2484 GCPRO1 (abspath);
|
|
2485 handler = Ffind_file_name_handler (abspath, Qfile_executable_p);
|
|
2486 UNGCPRO;
|
|
2487 if (!NILP (handler))
|
|
2488 return call2 (handler, Qfile_executable_p, abspath);
|
|
2489
|
16
|
2490 return (check_executable ((char *) XSTRING_DATA (abspath))
|
0
|
2491 ? Qt : Qnil);
|
|
2492 }
|
|
2493
|
20
|
2494 DEFUN ("file-readable-p", Ffile_readable_p, 1, 1, 0, /*
|
0
|
2495 Return t if file FILENAME exists and you can read it.
|
|
2496 See also `file-exists-p' and `file-attributes'.
|
20
|
2497 */
|
|
2498 (filename))
|
0
|
2499 {
|
70
|
2500 /* This function can GC */
|
0
|
2501 Lisp_Object abspath;
|
|
2502 Lisp_Object handler;
|
|
2503 int desc;
|
|
2504 struct gcpro gcpro1;
|
|
2505
|
70
|
2506 GCPRO1 (filename);
|
0
|
2507 CHECK_STRING (filename);
|
|
2508 abspath = Fexpand_file_name (filename, Qnil);
|
70
|
2509 UNGCPRO;
|
0
|
2510
|
|
2511 /* If the file name has special constructs in it,
|
|
2512 call the corresponding file handler. */
|
|
2513 GCPRO1 (abspath);
|
|
2514 handler = Ffind_file_name_handler (abspath, Qfile_readable_p);
|
|
2515 UNGCPRO;
|
|
2516 if (!NILP (handler))
|
|
2517 return call2 (handler, Qfile_readable_p, abspath);
|
|
2518
|
16
|
2519 desc = open ((char *) XSTRING_DATA (abspath), O_RDONLY, 0);
|
0
|
2520 if (desc < 0)
|
|
2521 return Qnil;
|
|
2522 close (desc);
|
|
2523 return Qt;
|
|
2524 }
|
|
2525
|
|
2526 /* Having this before file-symlink-p mysteriously caused it to be forgotten
|
|
2527 on the RT/PC. */
|
20
|
2528 DEFUN ("file-writable-p", Ffile_writable_p, 1, 1, 0, /*
|
0
|
2529 Return t if file FILENAME can be written or created by you.
|
20
|
2530 */
|
|
2531 (filename))
|
0
|
2532 {
|
70
|
2533 /* This function can GC */
|
0
|
2534 Lisp_Object abspath, dir;
|
|
2535 Lisp_Object handler;
|
|
2536 struct stat statbuf;
|
|
2537 struct gcpro gcpro1;
|
|
2538
|
70
|
2539 GCPRO1 (filename);
|
0
|
2540 CHECK_STRING (filename);
|
|
2541 abspath = Fexpand_file_name (filename, Qnil);
|
70
|
2542 UNGCPRO;
|
0
|
2543
|
|
2544 /* If the file name has special constructs in it,
|
|
2545 call the corresponding file handler. */
|
|
2546 GCPRO1 (abspath);
|
|
2547 handler = Ffind_file_name_handler (abspath, Qfile_writable_p);
|
|
2548 UNGCPRO;
|
|
2549 if (!NILP (handler))
|
|
2550 return call2 (handler, Qfile_writable_p, abspath);
|
|
2551
|
16
|
2552 if (stat ((char *) XSTRING_DATA (abspath), &statbuf) >= 0)
|
|
2553 return (check_writable ((char *) XSTRING_DATA (abspath))
|
0
|
2554 ? Qt : Qnil);
|
|
2555
|
|
2556
|
|
2557 dir = Ffile_name_directory (abspath);
|
|
2558 #if defined (VMS) || defined (MSDOS)
|
|
2559 if (!NILP (dir))
|
70
|
2560 dir = Fdirectory_file_name (dir);
|
0
|
2561 #endif /* VMS or MSDOS */
|
16
|
2562 return (check_writable (!NILP (dir) ? (char *) XSTRING_DATA (dir)
|
0
|
2563 : "")
|
|
2564 ? Qt : Qnil);
|
|
2565 }
|
|
2566
|
20
|
2567 DEFUN ("file-symlink-p", Ffile_symlink_p, 1, 1, 0, /*
|
0
|
2568 Return non-nil if file FILENAME is the name of a symbolic link.
|
|
2569 The value is the name of the file to which it is linked.
|
|
2570 Otherwise returns nil.
|
20
|
2571 */
|
|
2572 (filename))
|
0
|
2573 {
|
70
|
2574 /* This function can GC */
|
0
|
2575 #ifdef S_IFLNK
|
|
2576 char *buf;
|
|
2577 int bufsize;
|
|
2578 int valsize;
|
|
2579 Lisp_Object val;
|
|
2580 Lisp_Object handler;
|
|
2581 struct gcpro gcpro1;
|
|
2582
|
70
|
2583 GCPRO1 (filename);
|
0
|
2584 CHECK_STRING (filename);
|
|
2585 filename = Fexpand_file_name (filename, Qnil);
|
70
|
2586 UNGCPRO;
|
0
|
2587
|
|
2588 /* If the file name has special constructs in it,
|
|
2589 call the corresponding file handler. */
|
|
2590 handler = Ffind_file_name_handler (filename, Qfile_symlink_p);
|
|
2591 if (!NILP (handler))
|
|
2592 return call2 (handler, Qfile_symlink_p, filename);
|
|
2593
|
|
2594 bufsize = 100;
|
|
2595 while (1)
|
|
2596 {
|
|
2597 buf = (char *) xmalloc (bufsize);
|
|
2598 memset (buf, 0, bufsize);
|
16
|
2599 valsize = readlink ((char *) XSTRING_DATA (filename),
|
0
|
2600 buf, bufsize);
|
|
2601 if (valsize < bufsize) break;
|
|
2602 /* Buffer was not long enough */
|
|
2603 xfree (buf);
|
|
2604 bufsize *= 2;
|
|
2605 }
|
|
2606 if (valsize == -1)
|
|
2607 {
|
|
2608 xfree (buf);
|
|
2609 return Qnil;
|
|
2610 }
|
|
2611 val = make_string ((Bufbyte *) buf, valsize);
|
|
2612 xfree (buf);
|
|
2613 return val;
|
|
2614 #else /* not S_IFLNK */
|
|
2615 return Qnil;
|
|
2616 #endif /* not S_IFLNK */
|
|
2617 }
|
|
2618
|
20
|
2619 DEFUN ("file-directory-p", Ffile_directory_p, 1, 1, 0, /*
|
0
|
2620 Return t if file FILENAME is the name of a directory as a file.
|
|
2621 A directory name spec may be given instead; then the value is t
|
|
2622 if the directory so specified exists and really is a directory.
|
20
|
2623 */
|
|
2624 (filename))
|
0
|
2625 {
|
70
|
2626 /* This function can GC */
|
0
|
2627 Lisp_Object abspath;
|
|
2628 struct stat st;
|
|
2629 Lisp_Object handler;
|
|
2630 struct gcpro gcpro1;
|
|
2631
|
70
|
2632 GCPRO1 (filename);
|
0
|
2633 abspath = expand_and_dir_to_file (filename,
|
|
2634 current_buffer->directory);
|
|
2635 UNGCPRO;
|
|
2636
|
|
2637 /* If the file name has special constructs in it,
|
|
2638 call the corresponding file handler. */
|
|
2639 GCPRO1 (abspath);
|
|
2640 handler = Ffind_file_name_handler (abspath, Qfile_directory_p);
|
|
2641 UNGCPRO;
|
|
2642 if (!NILP (handler))
|
|
2643 return call2 (handler, Qfile_directory_p, abspath);
|
|
2644
|
16
|
2645 if (stat ((char *) XSTRING_DATA (abspath), &st) < 0)
|
0
|
2646 return Qnil;
|
|
2647 return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil;
|
|
2648 }
|
|
2649
|
20
|
2650 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p, 1, 1, 0, /*
|
0
|
2651 Return t if file FILENAME is the name of a directory as a file,
|
|
2652 and files in that directory can be opened by you. In order to use a
|
|
2653 directory as a buffer's current directory, this predicate must return true.
|
|
2654 A directory name spec may be given instead; then the value is t
|
|
2655 if the directory so specified exists and really is a readable and
|
|
2656 searchable directory.
|
20
|
2657 */
|
|
2658 (filename))
|
0
|
2659 {
|
70
|
2660 /* This function can GC */
|
0
|
2661 Lisp_Object handler;
|
70
|
2662 struct gcpro gcpro1;
|
0
|
2663
|
|
2664 /* If the file name has special constructs in it,
|
|
2665 call the corresponding file handler. */
|
|
2666 handler = Ffind_file_name_handler (filename, Qfile_accessible_directory_p);
|
|
2667 if (!NILP (handler))
|
|
2668 return call2 (handler, Qfile_accessible_directory_p,
|
|
2669 filename);
|
|
2670
|
70
|
2671 GCPRO1 (filename);
|
0
|
2672 if (NILP (Ffile_directory_p (filename)))
|
70
|
2673 {
|
|
2674 UNGCPRO;
|
0
|
2675 return (Qnil);
|
70
|
2676 }
|
|
2677 handler = Ffile_executable_p (filename);
|
|
2678 UNGCPRO;
|
|
2679 return (handler);
|
0
|
2680 }
|
|
2681
|
20
|
2682 DEFUN ("file-regular-p", Ffile_regular_p, 1, 1, 0, /*
|
0
|
2683 "Return t if file FILENAME is the name of a regular file.
|
|
2684 This is the sort of file that holds an ordinary stream of data bytes.
|
20
|
2685 */
|
|
2686 (filename))
|
0
|
2687 {
|
70
|
2688 REGISTER Lisp_Object abspath;
|
0
|
2689 struct stat st;
|
|
2690 Lisp_Object handler;
|
70
|
2691
|
0
|
2692 abspath = expand_and_dir_to_file (filename, current_buffer->directory);
|
|
2693
|
|
2694 /* If the file name has special constructs in it,
|
|
2695 call the corresponding file handler. */
|
|
2696 handler = Ffind_file_name_handler (abspath, Qfile_regular_p);
|
|
2697 if (!NILP (handler))
|
|
2698 return call2 (handler, Qfile_regular_p, abspath);
|
|
2699
|
16
|
2700 if (stat ((char *) XSTRING_DATA (abspath), &st) < 0)
|
0
|
2701 return Qnil;
|
|
2702 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil;
|
|
2703 }
|
|
2704
|
20
|
2705 DEFUN ("file-modes", Ffile_modes, 1, 1, 0, /*
|
0
|
2706 Return mode bits of FILE, as an integer.
|
20
|
2707 */
|
|
2708 (filename))
|
0
|
2709 {
|
70
|
2710 /* This function can GC */
|
0
|
2711 Lisp_Object abspath;
|
|
2712 struct stat st;
|
|
2713 Lisp_Object handler;
|
|
2714 struct gcpro gcpro1;
|
|
2715
|
70
|
2716 GCPRO1 (filename);
|
0
|
2717 abspath = expand_and_dir_to_file (filename,
|
|
2718 current_buffer->directory);
|
|
2719 UNGCPRO;
|
|
2720
|
|
2721 /* If the file name has special constructs in it,
|
|
2722 call the corresponding file handler. */
|
|
2723 GCPRO1 (abspath);
|
|
2724 handler = Ffind_file_name_handler (abspath, Qfile_modes);
|
|
2725 UNGCPRO;
|
|
2726 if (!NILP (handler))
|
|
2727 return call2 (handler, Qfile_modes, abspath);
|
|
2728
|
16
|
2729 if (stat ((char *) XSTRING_DATA (abspath), &st) < 0)
|
0
|
2730 return Qnil;
|
|
2731 #ifdef DOS_NT
|
|
2732 if (check_executable (XSTRING (abspath)->data))
|
|
2733 st.st_mode |= S_IEXEC;
|
|
2734 #endif /* DOS_NT */
|
|
2735
|
|
2736 return make_int (st.st_mode & 07777);
|
|
2737 }
|
|
2738
|
20
|
2739 DEFUN ("set-file-modes", Fset_file_modes, 2, 2, 0, /*
|
0
|
2740 Set mode bits of FILE to MODE (an integer).
|
|
2741 Only the 12 low bits of MODE are used.
|
20
|
2742 */
|
|
2743 (filename, mode))
|
0
|
2744 {
|
70
|
2745 /* This function can GC */
|
0
|
2746 Lisp_Object abspath;
|
|
2747 Lisp_Object handler;
|
70
|
2748 struct gcpro gcpro1, gcpro2;
|
0
|
2749
|
70
|
2750 GCPRO2 (filename, mode);
|
0
|
2751 abspath = Fexpand_file_name (filename, current_buffer->directory);
|
70
|
2752 CHECK_INT (mode);
|
44
|
2753 UNGCPRO;
|
|
2754
|
0
|
2755 /* If the file name has special constructs in it,
|
|
2756 call the corresponding file handler. */
|
|
2757 GCPRO1 (abspath);
|
|
2758 handler = Ffind_file_name_handler (abspath, Qset_file_modes);
|
|
2759 UNGCPRO;
|
|
2760 if (!NILP (handler))
|
|
2761 return call3 (handler, Qset_file_modes, abspath, mode);
|
|
2762
|
16
|
2763 if (chmod ((char *) XSTRING_DATA (abspath), XINT (mode)) < 0)
|
0
|
2764 report_file_error ("Doing chmod", Fcons (abspath, Qnil));
|
|
2765
|
|
2766 return Qnil;
|
|
2767 }
|
|
2768
|
20
|
2769 DEFUN ("set-default-file-modes", Fset_default_file_modes, 1, 1, 0, /*
|
0
|
2770 Set the file permission bits for newly created files.
|
|
2771 MASK should be an integer; if a permission's bit in MASK is 1,
|
|
2772 subsequently created files will not have that permission enabled.
|
|
2773 Only the low 9 bits are used.
|
|
2774 This setting is inherited by subprocesses.
|
20
|
2775 */
|
|
2776 (mode))
|
0
|
2777 {
|
|
2778 CHECK_INT (mode);
|
|
2779
|
|
2780 umask ((~ XINT (mode)) & 0777);
|
|
2781
|
|
2782 return Qnil;
|
|
2783 }
|
|
2784
|
20
|
2785 DEFUN ("default-file-modes", Fdefault_file_modes, 0, 0, 0, /*
|
0
|
2786 Return the default file protection for created files.
|
|
2787 The umask value determines which permissions are enabled in newly
|
|
2788 created files. If a permission's bit in the umask is 1, subsequently
|
|
2789 created files will not have that permission enabled.
|
20
|
2790 */
|
|
2791 ())
|
0
|
2792 {
|
|
2793 int mode;
|
|
2794
|
|
2795 mode = umask (0);
|
|
2796 umask (mode);
|
|
2797
|
|
2798 return make_int ((~ mode) & 0777);
|
|
2799 }
|
|
2800
|
|
2801 #ifndef VMS
|
20
|
2802 DEFUN ("unix-sync", Funix_sync, 0, 0, "", /*
|
0
|
2803 Tell Unix to finish all pending disk updates.
|
20
|
2804 */
|
|
2805 ())
|
0
|
2806 {
|
|
2807 sync ();
|
|
2808 return Qnil;
|
|
2809 }
|
|
2810 #endif /* !VMS */
|
|
2811
|
|
2812
|
20
|
2813 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, 2, 2, 0, /*
|
0
|
2814 Return t if file FILE1 is newer than file FILE2.
|
|
2815 If FILE1 does not exist, the answer is nil;
|
|
2816 otherwise, if FILE2 does not exist, the answer is t.
|
20
|
2817 */
|
|
2818 (file1, file2))
|
0
|
2819 {
|
70
|
2820 /* This function can GC */
|
0
|
2821 Lisp_Object abspath1, abspath2;
|
|
2822 struct stat st;
|
|
2823 int mtime1;
|
|
2824 Lisp_Object handler;
|
70
|
2825 struct gcpro gcpro1, gcpro2;
|
0
|
2826
|
|
2827 CHECK_STRING (file1);
|
|
2828 CHECK_STRING (file2);
|
|
2829
|
|
2830 abspath1 = Qnil;
|
70
|
2831 GCPRO2 (abspath1, file2);
|
|
2832 abspath1 = expand_and_dir_to_file (file1,
|
|
2833 current_buffer->directory);
|
|
2834 abspath2 = expand_and_dir_to_file (file2,
|
|
2835 current_buffer->directory);
|
|
2836 UNGCPRO;
|
0
|
2837
|
|
2838 /* If the file name has special constructs in it,
|
|
2839 call the corresponding file handler. */
|
70
|
2840 GCPRO2 (abspath1, abspath2);
|
0
|
2841 handler = Ffind_file_name_handler (abspath1, Qfile_newer_than_file_p);
|
|
2842 if (NILP (handler))
|
|
2843 handler = Ffind_file_name_handler (abspath2, Qfile_newer_than_file_p);
|
|
2844 UNGCPRO;
|
|
2845 if (!NILP (handler))
|
|
2846 return call3 (handler, Qfile_newer_than_file_p, abspath1,
|
|
2847 abspath2);
|
|
2848
|
16
|
2849 if (stat ((char *) XSTRING_DATA (abspath1), &st) < 0)
|
0
|
2850 return Qnil;
|
|
2851
|
|
2852 mtime1 = st.st_mtime;
|
|
2853
|
16
|
2854 if (stat ((char *) XSTRING_DATA (abspath2), &st) < 0)
|
0
|
2855 return Qt;
|
|
2856
|
|
2857 return (mtime1 > st.st_mtime) ? Qt : Qnil;
|
|
2858 }
|
|
2859
|
|
2860
|
|
2861 #ifdef DOS_NT
|
|
2862 Lisp_Object Qfind_buffer_file_type;
|
|
2863 #endif /* DOS_NT */
|
|
2864
|
2
|
2865 /* Stack sizes > 2**16 is a good way to elicit compiler bugs */
|
|
2866 /* #define READ_BUF_SIZE (2 << 16) */
|
|
2867 #define READ_BUF_SIZE (1 << 15)
|
0
|
2868
|
20
|
2869 DEFUN ("insert-file-contents-internal",
|
70
|
2870 Finsert_file_contents_internal, 1, 7, 0, /*
|
|
2871 Insert contents of file FILENAME after point; no coding-system frobbing.
|
|
2872 This function is identical to `insert-file-contents' except for the
|
|
2873 handling of the CODESYS and USED-CODESYS arguments under
|
|
2874 XEmacs/Mule. (When Mule support is not present, both functions are
|
|
2875 identical and ignore the CODESYS and USED-CODESYS arguments.)
|
|
2876
|
|
2877 If support for Mule exists in this Emacs, the file is decoded according
|
|
2878 to CODESYS; if omitted, no conversion happens. If USED-CODESYS is non-nil,
|
|
2879 it should be a symbol, and the actual coding system that was used for the
|
|
2880 decoding is stored into it. It will in general be different from CODESYS
|
|
2881 if CODESYS specifies automatic encoding detection or end-of-line detection.
|
|
2882
|
|
2883 Currently BEG and END refer to byte positions (as opposed to character
|
|
2884 positions), even in Mule. (Fixing this is very difficult.)
|
20
|
2885 */
|
70
|
2886 (filename, visit, beg, end, replace, codesys, used_codesys))
|
0
|
2887 {
|
70
|
2888 /* This function can GC */
|
0
|
2889 struct stat st;
|
|
2890 int fd;
|
|
2891 int saverrno = 0;
|
|
2892 Charcount inserted = 0;
|
|
2893 int speccount;
|
70
|
2894 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
0
|
2895 Lisp_Object handler = Qnil, val;
|
|
2896 int total;
|
|
2897 Bufbyte read_buf[READ_BUF_SIZE];
|
|
2898 int mc_count;
|
|
2899 struct buffer *buf = current_buffer;
|
|
2900 int not_regular = 0;
|
|
2901
|
|
2902 if (buf->base_buffer && ! NILP (visit))
|
|
2903 error ("Cannot do file visiting in an indirect buffer");
|
|
2904
|
|
2905 /* No need to call Fbarf_if_buffer_read_only() here.
|
|
2906 That's called in begin_multiple_change() or wherever. */
|
|
2907
|
|
2908 val = Qnil;
|
|
2909
|
70
|
2910 GCPRO4 (filename, val, visit, handler);
|
0
|
2911
|
|
2912 mc_count = (NILP (replace)) ?
|
|
2913 begin_multiple_change (buf, BUF_PT (buf), BUF_PT (buf)) :
|
|
2914 begin_multiple_change (buf, BUF_BEG (buf), BUF_Z (buf));
|
|
2915
|
|
2916 speccount = specpdl_depth (); /* begin_multiple_change also adds
|
|
2917 an unwind_protect */
|
|
2918
|
|
2919 filename = Fexpand_file_name (filename, Qnil);
|
|
2920
|
|
2921 /* If the file name has special constructs in it,
|
|
2922 call the corresponding file handler. */
|
|
2923 handler = Ffind_file_name_handler (filename, Qinsert_file_contents);
|
|
2924 if (!NILP (handler))
|
|
2925 {
|
74
|
2926 val = call6 (handler, Qinsert_file_contents, filename,
|
|
2927 visit, beg, end, replace);
|
0
|
2928 goto handled;
|
|
2929 }
|
|
2930
|
70
|
2931 #ifdef MULE
|
|
2932 if (!NILP (used_codesys))
|
|
2933 CHECK_SYMBOL (used_codesys);
|
|
2934 #endif
|
|
2935
|
0
|
2936 if ( (!NILP (beg) || !NILP (end)) && !NILP (visit) )
|
|
2937 error ("Attempt to visit less than an entire file");
|
|
2938
|
|
2939 if (!NILP (beg))
|
|
2940 CHECK_INT (beg);
|
|
2941 else
|
|
2942 beg = Qzero;
|
|
2943
|
|
2944 if (!NILP (end))
|
|
2945 CHECK_INT (end);
|
|
2946
|
|
2947 fd = -1;
|
|
2948
|
|
2949 #ifndef APOLLO
|
16
|
2950 if (stat ((char *) XSTRING_DATA (filename), &st) < 0)
|
0
|
2951 #else /* APOLLO */
|
16
|
2952 if ((fd = open ((char *) XSTRING_DATA (filename), O_RDONLY, 0)) < 0
|
0
|
2953 || fstat (fd, &st) < 0)
|
|
2954 #endif /* APOLLO */
|
|
2955 {
|
|
2956 if (fd >= 0) close (fd);
|
|
2957 badopen:
|
|
2958 if (NILP (visit))
|
|
2959 report_file_error ("Opening input file",
|
|
2960 Fcons (filename, Qnil));
|
|
2961 st.st_mtime = -1;
|
|
2962 goto notfound;
|
|
2963 }
|
|
2964
|
|
2965 #ifdef S_IFREG
|
|
2966 /* This code will need to be changed in order to work on named
|
|
2967 pipes, and it's probably just not worth it. So we should at
|
|
2968 least signal an error. */
|
|
2969 if (!S_ISREG (st.st_mode))
|
|
2970 {
|
|
2971 if (NILP (visit))
|
|
2972 {
|
|
2973 end_multiple_change (buf, mc_count);
|
|
2974
|
|
2975 return Fsignal (Qfile_error,
|
|
2976 list2 (build_translated_string("not a regular file"),
|
|
2977 filename));
|
|
2978 }
|
|
2979 else
|
|
2980 {
|
|
2981 not_regular = 1;
|
|
2982 goto notfound;
|
|
2983 }
|
|
2984 }
|
|
2985 #endif
|
|
2986
|
|
2987 if (fd < 0)
|
16
|
2988 if ((fd = open ((char *) XSTRING_DATA (filename), O_RDONLY, 0)) < 0)
|
0
|
2989 goto badopen;
|
|
2990
|
|
2991 /* Replacement should preserve point as it preserves markers. */
|
|
2992 if (!NILP (replace))
|
|
2993 record_unwind_protect (restore_point_unwind, Fpoint_marker (Qnil, Qnil));
|
|
2994
|
|
2995 record_unwind_protect (close_file_unwind, make_int (fd));
|
|
2996
|
|
2997 /* Supposedly happens on VMS. */
|
|
2998 if (st.st_size < 0)
|
|
2999 error ("File size is negative");
|
|
3000
|
|
3001 if (NILP (end))
|
|
3002 {
|
|
3003 end = make_int (st.st_size);
|
|
3004 if (XINT (end) != st.st_size)
|
|
3005 error ("maximum buffer size exceeded");
|
|
3006 }
|
|
3007
|
|
3008 /* If requested, replace the accessible part of the buffer
|
|
3009 with the file contents. Avoid replacing text at the
|
|
3010 beginning or end of the buffer that matches the file contents;
|
|
3011 that preserves markers pointing to the unchanged parts. */
|
16
|
3012 #if !defined (DOS_NT) && !defined (MULE)
|
0
|
3013 /* The replace-mode code currently only works when the assumption
|
|
3014 'one byte == one char' holds true. This fails under MSDOS and
|
|
3015 Windows NT (because newlines are represented as CR-LF in text
|
20
|
3016 files) and under Mule because files may contain multibyte characters. */
|
0
|
3017 # define FSFMACS_SPEEDY_INSERT
|
|
3018 #endif
|
|
3019 #ifndef FSFMACS_SPEEDY_INSERT
|
|
3020 if (!NILP (replace))
|
|
3021 {
|
|
3022 buffer_delete_range (buf, BUF_BEG (buf), BUF_Z (buf),
|
|
3023 !NILP (visit) ? INSDEL_NO_LOCKING : 0);
|
|
3024 }
|
|
3025 #else /* FSFMACS_SPEEDY_INSERT */
|
|
3026 if (!NILP (replace))
|
|
3027 {
|
|
3028 char buffer[1 << 14];
|
|
3029 Bufpos same_at_start = BUF_BEGV (buf);
|
|
3030 Bufpos same_at_end = BUF_ZV (buf);
|
|
3031 int overlap;
|
|
3032
|
|
3033 /* Count how many chars at the start of the file
|
|
3034 match the text at the beginning of the buffer. */
|
|
3035 while (1)
|
|
3036 {
|
|
3037 int nread;
|
|
3038 Bufpos bufpos;
|
|
3039
|
|
3040 nread = read_allowing_quit (fd, buffer, sizeof buffer);
|
|
3041 if (nread < 0)
|
|
3042 error ("IO error reading %s: %s",
|
16
|
3043 XSTRING_DATA (filename), strerror (errno));
|
0
|
3044 else if (nread == 0)
|
|
3045 break;
|
|
3046 bufpos = 0;
|
|
3047 while (bufpos < nread && same_at_start < BUF_ZV (buf)
|
|
3048 && BUF_FETCH_CHAR (buf, same_at_start) == buffer[bufpos])
|
|
3049 same_at_start++, bufpos++;
|
|
3050 /* If we found a discrepancy, stop the scan.
|
|
3051 Otherwise loop around and scan the next bufferfull. */
|
|
3052 if (bufpos != nread)
|
|
3053 break;
|
|
3054 }
|
|
3055 /* If the file matches the buffer completely,
|
|
3056 there's no need to replace anything. */
|
|
3057 if (same_at_start - BUF_BEGV (buf) == st.st_size)
|
|
3058 {
|
|
3059 close (fd);
|
|
3060 unbind_to (speccount, Qnil);
|
|
3061 /* Truncate the buffer to the size of the file. */
|
|
3062 buffer_delete_range (buf, same_at_start, same_at_end,
|
|
3063 !NILP (visit) ? INSDEL_NO_LOCKING : 0);
|
|
3064 goto handled;
|
|
3065 }
|
|
3066 /* Count how many chars at the end of the file
|
|
3067 match the text at the end of the buffer. */
|
|
3068 while (1)
|
|
3069 {
|
|
3070 int total_read, nread;
|
|
3071 Bufpos bufpos, curpos, trial;
|
|
3072
|
|
3073 /* At what file position are we now scanning? */
|
|
3074 curpos = st.st_size - (BUF_ZV (buf) - same_at_end);
|
|
3075 /* If the entire file matches the buffer tail, stop the scan. */
|
|
3076 if (curpos == 0)
|
|
3077 break;
|
|
3078 /* How much can we scan in the next step? */
|
|
3079 trial = min (curpos, sizeof buffer);
|
|
3080 if (lseek (fd, curpos - trial, 0) < 0)
|
|
3081 report_file_error ("Setting file position",
|
|
3082 Fcons (filename, Qnil));
|
|
3083
|
|
3084 total_read = 0;
|
|
3085 while (total_read < trial)
|
|
3086 {
|
|
3087 nread = read_allowing_quit (fd, buffer + total_read,
|
|
3088 trial - total_read);
|
|
3089 if (nread <= 0)
|
|
3090 error ("IO error reading %s: %s",
|
16
|
3091 XSTRING_DATA (filename), strerror (errno));
|
0
|
3092 total_read += nread;
|
|
3093 }
|
|
3094 /* Scan this bufferfull from the end, comparing with
|
|
3095 the Emacs buffer. */
|
|
3096 bufpos = total_read;
|
|
3097 /* Compare with same_at_start to avoid counting some buffer text
|
|
3098 as matching both at the file's beginning and at the end. */
|
|
3099 while (bufpos > 0 && same_at_end > same_at_start
|
|
3100 && BUF_FETCH_CHAR (buf, same_at_end - 1) ==
|
|
3101 buffer[bufpos - 1])
|
|
3102 same_at_end--, bufpos--;
|
|
3103 /* If we found a discrepancy, stop the scan.
|
|
3104 Otherwise loop around and scan the preceding bufferfull. */
|
|
3105 if (bufpos != 0)
|
|
3106 break;
|
|
3107 /* If display current starts at beginning of line,
|
|
3108 keep it that way. */
|
|
3109 if (XBUFFER (XWINDOW (Fselected_window (Qnil))->buffer) == buf)
|
|
3110 XWINDOW (Fselected_window (Qnil))->start_at_line_beg =
|
|
3111 !NILP (Fbolp (make_buffer (buf)));
|
|
3112 }
|
|
3113
|
|
3114 /* Don't try to reuse the same piece of text twice. */
|
|
3115 overlap = same_at_start - BUF_BEGV (buf) -
|
|
3116 (same_at_end + st.st_size - BUF_ZV (buf));
|
|
3117 if (overlap > 0)
|
|
3118 same_at_end += overlap;
|
|
3119
|
|
3120 /* Arrange to read only the nonmatching middle part of the file. */
|
|
3121 beg = make_int (same_at_start - BUF_BEGV (buf));
|
|
3122 end = make_int (st.st_size - (BUF_ZV (buf) - same_at_end));
|
|
3123
|
|
3124 buffer_delete_range (buf, same_at_start, same_at_end,
|
|
3125 !NILP (visit) ? INSDEL_NO_LOCKING : 0);
|
|
3126 /* Insert from the file at the proper position. */
|
|
3127 BUF_SET_PT (buf, same_at_start);
|
|
3128 }
|
|
3129 #endif /* FSFMACS_SPEEDY_INSERT */
|
|
3130
|
|
3131 total = XINT (end) - XINT (beg);
|
|
3132
|
|
3133 if (XINT (beg) != 0
|
|
3134 #ifdef FSFMACS_SPEEDY_INSERT
|
|
3135 /* why was this here? asked jwz. The reason is that the replace-mode
|
|
3136 connivings above will normally put the file pointer other than
|
|
3137 where it should be. */
|
|
3138 || !NILP (replace)
|
|
3139 #endif /* !FSFMACS_SPEEDY_INSERT */
|
|
3140 )
|
|
3141 {
|
|
3142 if (lseek (fd, XINT (beg), 0) < 0)
|
|
3143 report_file_error ("Setting file position",
|
|
3144 Fcons (filename, Qnil));
|
|
3145 }
|
|
3146
|
|
3147 {
|
|
3148 Bufpos cur_point = BUF_PT (buf);
|
|
3149 struct gcpro ngcpro1;
|
|
3150 Lisp_Object stream = make_filedesc_input_stream (fd, 0, total,
|
|
3151 LSTR_ALLOW_QUIT);
|
|
3152
|
|
3153 NGCPRO1 (stream);
|
|
3154 Lstream_set_buffering (XLSTREAM (stream), LSTREAM_BLOCKN_BUFFERED, 65536);
|
70
|
3155 #ifdef MULE
|
|
3156 stream = make_decoding_input_stream
|
|
3157 (XLSTREAM (stream), Fget_coding_system (codesys));
|
|
3158 Lstream_set_character_mode (XLSTREAM (stream));
|
|
3159 Lstream_set_buffering (XLSTREAM (stream), LSTREAM_BLOCKN_BUFFERED, 65536);
|
|
3160 #endif
|
0
|
3161
|
|
3162 record_unwind_protect (close_stream_unwind, stream);
|
|
3163
|
16
|
3164 /* No need to limit the amount of stuff we attempt to read. (It would
|
|
3165 be incorrect, anyway, when Mule is enabled.) Instead, the limiting
|
|
3166 occurs inside of the filedesc stream. */
|
0
|
3167 while (1)
|
|
3168 {
|
|
3169 Bytecount this_len;
|
|
3170 Charcount cc_inserted;
|
|
3171
|
|
3172 QUIT;
|
|
3173 this_len = Lstream_read (XLSTREAM (stream), read_buf,
|
|
3174 sizeof (read_buf));
|
|
3175
|
|
3176 if (this_len <= 0)
|
|
3177 {
|
|
3178 if (this_len < 0)
|
|
3179 saverrno = errno;
|
|
3180 break;
|
|
3181 }
|
|
3182
|
|
3183 cc_inserted = buffer_insert_raw_string_1 (buf, cur_point, read_buf,
|
|
3184 this_len,
|
|
3185 !NILP (visit)
|
|
3186 ? INSDEL_NO_LOCKING : 0);
|
|
3187 inserted += cc_inserted;
|
|
3188 cur_point += cc_inserted;
|
|
3189 }
|
70
|
3190 #ifdef MULE
|
|
3191 if (!NILP (used_codesys))
|
|
3192 {
|
|
3193 Fset (used_codesys,
|
|
3194 XCODING_SYSTEM_NAME (decoding_stream_coding_system (XLSTREAM (stream))));
|
|
3195 }
|
|
3196 #endif
|
0
|
3197 NUNGCPRO;
|
|
3198 }
|
|
3199
|
|
3200 #ifdef DOS_NT
|
|
3201 /* Determine file type from name and remove LFs from CR-LFs if the file
|
|
3202 is deemed to be a text file. */
|
|
3203 {
|
|
3204 struct gcpro gcpro1;
|
|
3205 GCPRO1 (filename);
|
|
3206 buf->buffer_file_type
|
|
3207 = call1_in_buffer (buf, Qfind_buffer_file_type, filename);
|
|
3208 UNGCPRO;
|
|
3209 if (NILP (buf->buffer_file_type))
|
|
3210 {
|
|
3211 buffer_do_msdos_crlf_to_lf (buf, ####);
|
|
3212 }
|
|
3213 }
|
|
3214 #endif
|
|
3215
|
|
3216 /* Close the file/stream */
|
|
3217 unbind_to (speccount, Qnil);
|
|
3218
|
|
3219 if (saverrno != 0)
|
|
3220 {
|
|
3221 error ("IO error reading %s: %s",
|
16
|
3222 XSTRING_DATA (filename), strerror (saverrno));
|
0
|
3223 }
|
|
3224
|
|
3225 notfound:
|
|
3226 handled:
|
|
3227
|
|
3228 end_multiple_change (buf, mc_count);
|
|
3229
|
|
3230 if (!NILP (visit))
|
|
3231 {
|
|
3232 if (!EQ (buf->undo_list, Qt))
|
|
3233 buf->undo_list = Qnil;
|
|
3234 #ifdef APOLLO
|
16
|
3235 stat ((char *) XSTRING_DATA (filename), &st);
|
0
|
3236 #endif
|
|
3237 if (NILP (handler))
|
|
3238 {
|
|
3239 buf->modtime = st.st_mtime;
|
|
3240 buf->filename = filename;
|
|
3241 /* XEmacs addition: */
|
|
3242 /* This function used to be in C, ostensibly so that
|
|
3243 it could be called here. But that's just silly.
|
|
3244 There's no reason C code can't call out to Lisp
|
|
3245 code, and it's a lot cleaner this way. */
|
|
3246 if (!NILP (Ffboundp (Qcompute_buffer_file_truename)))
|
|
3247 call1 (Qcompute_buffer_file_truename, make_buffer (buf));
|
|
3248 }
|
|
3249 BUF_SAVE_MODIFF (buf) = BUF_MODIFF (buf);
|
|
3250 buf->auto_save_modified = BUF_MODIFF (buf);
|
|
3251 buf->save_length = make_int (BUF_SIZE (buf));
|
|
3252 #ifdef CLASH_DETECTION
|
|
3253 if (NILP (handler))
|
|
3254 {
|
|
3255 if (!NILP (buf->file_truename))
|
|
3256 unlock_file (buf->file_truename);
|
|
3257 unlock_file (filename);
|
|
3258 }
|
|
3259 #endif /* CLASH_DETECTION */
|
|
3260 if (not_regular)
|
|
3261 RETURN_UNGCPRO (Fsignal (Qfile_error,
|
|
3262 list2 (build_string ("not a regular file"),
|
|
3263 filename)));
|
|
3264
|
|
3265 /* If visiting nonexistent file, return nil. */
|
|
3266 if (buf->modtime == -1)
|
|
3267 report_file_error ("Opening input file",
|
|
3268 list1 (filename));
|
|
3269 }
|
|
3270
|
|
3271 /* Decode file format */
|
|
3272 if (inserted > 0)
|
|
3273 {
|
|
3274 Lisp_Object insval = call3 (Qformat_decode,
|
|
3275 Qnil, make_int (inserted), visit);
|
|
3276 CHECK_INT (insval);
|
|
3277 inserted = XINT (insval);
|
|
3278 }
|
|
3279
|
|
3280 if (inserted > 0)
|
|
3281 {
|
|
3282 Lisp_Object p = Vafter_insert_file_functions;
|
|
3283 struct gcpro ngcpro1;
|
|
3284
|
|
3285 NGCPRO1 (p);
|
|
3286 while (!NILP (p))
|
|
3287 {
|
|
3288 Lisp_Object insval =
|
|
3289 call1 (Fcar (p), make_int (inserted));
|
|
3290 if (!NILP (insval))
|
|
3291 {
|
|
3292 CHECK_NATNUM (insval);
|
|
3293 inserted = XINT (insval);
|
|
3294 }
|
|
3295 QUIT;
|
|
3296 p = Fcdr (p);
|
|
3297 }
|
|
3298 NUNGCPRO;
|
|
3299 }
|
|
3300
|
|
3301 UNGCPRO;
|
|
3302
|
|
3303 if (!NILP (val))
|
|
3304 return (val);
|
|
3305 else
|
|
3306 return (list2 (filename, make_int (inserted)));
|
|
3307 }
|
|
3308
|
|
3309
|
|
3310 static int a_write (Lisp_Object outstream, Lisp_Object instream, int pos,
|
|
3311 Lisp_Object *annot);
|
|
3312 static Lisp_Object build_annotations (Lisp_Object start, Lisp_Object end);
|
|
3313
|
|
3314 /* If build_annotations switched buffers, switch back to BUF.
|
|
3315 Kill the temporary buffer that was selected in the meantime. */
|
|
3316
|
|
3317 static Lisp_Object
|
|
3318 build_annotations_unwind (Lisp_Object buf)
|
|
3319 {
|
|
3320 Lisp_Object tembuf;
|
|
3321
|
|
3322 if (XBUFFER (buf) == current_buffer)
|
|
3323 return Qnil;
|
|
3324 tembuf = Fcurrent_buffer ();
|
|
3325 Fset_buffer (buf);
|
|
3326 Fkill_buffer (tembuf);
|
|
3327 return Qnil;
|
|
3328 }
|
|
3329
|
70
|
3330 DEFUN ("write-region-internal", Fwrite_region_internal, 3, 7,
|
20
|
3331 "r\nFWrite region to file: ", /*
|
70
|
3332 Write current region into specified file; no coding-system frobbing.
|
|
3333 This function is identical to `write-region' except for the handling
|
|
3334 of the CODESYS argument under XEmacs/Mule. (When Mule support is not
|
|
3335 present, both functions are identical and ignore the CODESYS argument.)
|
|
3336 If support for Mule exists in this Emacs, the file is encoded according
|
|
3337 to the value of CODESYS. If this is nil, no code conversion occurs.
|
20
|
3338 */
|
70
|
3339 (start, end, filename, append, visit, lockname, codesys))
|
0
|
3340 {
|
70
|
3341 /* This function can GC */
|
0
|
3342 int desc;
|
|
3343 int failure;
|
|
3344 int save_errno = 0;
|
|
3345 struct stat st;
|
|
3346 Lisp_Object fn;
|
|
3347 int speccount = specpdl_depth ();
|
|
3348 #ifdef VMS
|
|
3349 unsigned char *fname = 0; /* If non-0, original filename (must rename) */
|
|
3350 #endif /* VMS */
|
|
3351 int visiting_other = STRINGP (visit);
|
|
3352 int visiting = (EQ (visit, Qt) || visiting_other);
|
|
3353 int quietly = (!visiting && !NILP (visit));
|
|
3354 Lisp_Object visit_file = Qnil;
|
|
3355 Lisp_Object annotations = Qnil;
|
|
3356 struct buffer *given_buffer;
|
|
3357 Bufpos start1, end1;
|
|
3358
|
|
3359 #ifdef DOS_NT
|
|
3360 int buffer_file_type
|
|
3361 = NILP (current_buffer->buffer_file_type) ? O_TEXT : O_BINARY;
|
|
3362 #endif /* DOS_NT */
|
|
3363
|
70
|
3364 #ifdef MULE
|
|
3365 codesys = Fget_coding_system (codesys);
|
|
3366 #endif /* MULE */
|
|
3367
|
0
|
3368 if (current_buffer->base_buffer && ! NILP (visit))
|
|
3369 error ("Cannot do file visiting in an indirect buffer");
|
|
3370
|
|
3371 if (!NILP (start) && !STRINGP (start))
|
|
3372 get_buffer_range_char (current_buffer, start, end, &start1, &end1, 0);
|
|
3373
|
|
3374 {
|
|
3375 Lisp_Object handler;
|
|
3376 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5;
|
|
3377 GCPRO5 (start, filename, visit, visit_file, lockname);
|
|
3378
|
|
3379 if (visiting_other)
|
|
3380 visit_file = Fexpand_file_name (visit, Qnil);
|
|
3381 else
|
|
3382 visit_file = filename;
|
|
3383 filename = Fexpand_file_name (filename, Qnil);
|
|
3384
|
|
3385 UNGCPRO;
|
|
3386
|
|
3387 if (NILP (lockname))
|
|
3388 lockname = visit_file;
|
|
3389
|
|
3390 /* If the file name has special constructs in it,
|
|
3391 call the corresponding file handler. */
|
|
3392 handler = Ffind_file_name_handler (filename, Qwrite_region);
|
|
3393 /* If FILENAME has no handler, see if VISIT has one. */
|
|
3394 if (NILP (handler) && STRINGP (visit))
|
|
3395 handler = Ffind_file_name_handler (visit, Qwrite_region);
|
|
3396
|
|
3397 if (!NILP (handler))
|
|
3398 {
|
70
|
3399 Lisp_Object val = call7 (handler, Qwrite_region, start, end,
|
|
3400 filename, append, visit, codesys);
|
0
|
3401 if (visiting)
|
|
3402 {
|
|
3403 BUF_SAVE_MODIFF (current_buffer) = BUF_MODIFF (current_buffer);
|
|
3404 current_buffer->save_length =
|
|
3405 make_int (BUF_SIZE (current_buffer));
|
|
3406 current_buffer->filename = visit_file;
|
|
3407 MARK_MODELINE_CHANGED;
|
|
3408 }
|
|
3409 return val;
|
|
3410 }
|
|
3411 }
|
|
3412
|
|
3413 #ifdef CLASH_DETECTION
|
|
3414 if (!auto_saving)
|
|
3415 {
|
70
|
3416 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4;
|
|
3417 GCPRO4 (start, filename, visit_file, lockname);
|
0
|
3418 lock_file (lockname);
|
|
3419 UNGCPRO;
|
|
3420 }
|
|
3421 #endif /* CLASH_DETECTION */
|
|
3422
|
|
3423 /* Special kludge to simplify auto-saving. */
|
|
3424 if (NILP (start))
|
|
3425 {
|
|
3426 start1 = BUF_BEG (current_buffer);
|
|
3427 end1 = BUF_Z (current_buffer);
|
|
3428 }
|
|
3429
|
|
3430 record_unwind_protect (build_annotations_unwind, Fcurrent_buffer ());
|
|
3431
|
|
3432 given_buffer = current_buffer;
|
|
3433 annotations = build_annotations (start, end);
|
|
3434 if (current_buffer != given_buffer)
|
|
3435 {
|
|
3436 start1 = BUF_BEGV (current_buffer);
|
|
3437 end1 = BUF_ZV (current_buffer);
|
|
3438 }
|
|
3439
|
|
3440 fn = filename;
|
|
3441 desc = -1;
|
|
3442 if (!NILP (append))
|
|
3443 #ifdef DOS_NT
|
16
|
3444 desc = open ((char *) XSTRING_DATA (fn),
|
0
|
3445 (O_WRONLY | buffer_file_type), 0);
|
|
3446 #else /* not DOS_NT */
|
16
|
3447 desc = open ((char *) XSTRING_DATA (fn), O_WRONLY, 0);
|
0
|
3448 #endif /* not DOS_NT */
|
|
3449
|
|
3450 if (desc < 0)
|
|
3451 #ifndef VMS
|
|
3452 {
|
|
3453 #ifdef DOS_NT
|
16
|
3454 desc = open ((char *) XSTRING_DATA (fn),
|
0
|
3455 (O_WRONLY | O_TRUNC | O_CREAT | buffer_file_type),
|
|
3456 (S_IREAD | S_IWRITE));
|
|
3457 #else /* not DOS_NT */
|
16
|
3458 desc = creat ((char *) XSTRING_DATA (fn),
|
0
|
3459 ((auto_saving) ? auto_save_mode_bits : 0666));
|
|
3460 #endif /* DOS_NT */
|
|
3461 }
|
|
3462 #else /* VMS */
|
|
3463 {
|
|
3464 if (auto_saving) /* Overwrite any previous version of autosave file */
|
|
3465 {
|
16
|
3466 char *fn_data = XSTRING_DATA (fn);
|
0
|
3467 /* if fn exists, truncate to zero length */
|
|
3468 vms_truncate (fn_data);
|
|
3469 desc = open (fn_data, O_RDWR, 0);
|
|
3470 if (desc < 0)
|
|
3471 desc = creat_copy_attrs ((STRINGP (current_buffer->filename)
|
70
|
3472 ? (char *) XSTRING_DATA (current_buffer->filename)
|
0
|
3473 : 0),
|
|
3474 fn_data);
|
|
3475 }
|
|
3476 else /* Write to temporary name and rename if no errors */
|
|
3477 {
|
|
3478 Lisp_Object temp_name;
|
|
3479
|
|
3480 struct gcpro gcpro1, gcpro2, gcpro3;
|
|
3481 GCPRO3 (start, filename, visit_file);
|
|
3482 {
|
|
3483 struct gcpro gcpro1, gcpro2, gcpro3; /* Don't have GCPRO6 */
|
|
3484
|
|
3485 GCPRO3 (fn, fname, annotations);
|
|
3486
|
|
3487 temp_name = Ffile_name_directory (filename);
|
|
3488
|
|
3489 if (NILP (temp_name))
|
16
|
3490 desc = creat ((char *) XSTRING_DATA (fn), 0666);
|
0
|
3491 else
|
|
3492 {
|
|
3493 temp_name =
|
|
3494 Fmake_temp_name (concat2 (temp_name,
|
|
3495 build_string ("$$SAVE$$")));
|
|
3496 fname = filename;
|
|
3497 fn = temp_name;
|
|
3498 desc = creat_copy_attrs (fname,
|
16
|
3499 (char *) XSTRING_DATA (fn));
|
0
|
3500 if (desc < 0)
|
|
3501 {
|
|
3502 char *fn_data;
|
|
3503 /* If we can't open the temporary file, try creating a new
|
|
3504 version of the original file. VMS "creat" creates a
|
|
3505 new version rather than truncating an existing file. */
|
|
3506 fn = fname;
|
|
3507 fname = Qnil;
|
16
|
3508 fn_data = XSTRING_DATA (fn);
|
0
|
3509 desc = creat (fn_data, 0666);
|
|
3510 #if 0 /* This can clobber an existing file and fail
|
|
3511 to replace it, if the user runs out of
|
|
3512 space. */
|
|
3513 if (desc < 0)
|
|
3514 {
|
|
3515 /* We can't make a new version;
|
|
3516 try to truncate and rewrite existing version if any.
|
|
3517 */
|
|
3518 vms_truncate (fn_data);
|
|
3519 desc = open (fn_data, O_RDWR, 0);
|
|
3520 }
|
|
3521 #endif
|
|
3522 }
|
|
3523 }
|
|
3524 UNGCPRO;
|
|
3525 }
|
|
3526 UNGCPRO;
|
|
3527 }
|
|
3528 }
|
|
3529 #endif /* VMS */
|
|
3530
|
|
3531 if (desc < 0)
|
|
3532 {
|
|
3533 #ifdef CLASH_DETECTION
|
|
3534 save_errno = errno;
|
|
3535 if (!auto_saving) unlock_file (lockname);
|
|
3536 errno = save_errno;
|
|
3537 #endif /* CLASH_DETECTION */
|
|
3538 report_file_error ("Opening output file",
|
|
3539 Fcons (filename, Qnil));
|
|
3540 }
|
|
3541
|
|
3542 {
|
|
3543 Lisp_Object desc_locative = Fcons (make_int (desc), Qnil);
|
|
3544 Lisp_Object instream = Qnil, outstream = Qnil;
|
|
3545 struct gcpro gcpro1, gcpro2;
|
|
3546 /* need to gcpro; QUIT could happen out of call to write() */
|
|
3547 GCPRO2 (instream, outstream);
|
|
3548
|
|
3549 record_unwind_protect (close_file_unwind, desc_locative);
|
|
3550
|
|
3551 if (!NILP (append))
|
|
3552 {
|
|
3553 if (lseek (desc, 0, 2) < 0)
|
|
3554 {
|
|
3555 #ifdef CLASH_DETECTION
|
|
3556 if (!auto_saving) unlock_file (lockname);
|
|
3557 #endif /* CLASH_DETECTION */
|
|
3558 report_file_error ("Lseek error",
|
|
3559 list1 (filename));
|
|
3560 }
|
|
3561 }
|
|
3562
|
|
3563 #ifdef VMS
|
|
3564 /*
|
|
3565 * Kludge Warning: The VMS C RTL likes to insert carriage returns
|
|
3566 * if we do writes that don't end with a carriage return. Furthermore
|
|
3567 * it cannot handle writes of more then 16K. The modified
|
|
3568 * version of "sys_write" in SYSDEP.C (see comment there) copes with
|
|
3569 * this EXCEPT for the last record (iff it doesn't end with a carriage
|
|
3570 * return). This implies that if your buffer doesn't end with a carriage
|
|
3571 * return, you get one free... tough. However it also means that if
|
|
3572 * we make two calls to sys_write (a la the following code) you can
|
|
3573 * get one at the gap as well. The easiest way to fix this (honest)
|
|
3574 * is to move the gap to the next newline (or the end of the buffer).
|
|
3575 * Thus this change.
|
|
3576 *
|
|
3577 * Yech!
|
|
3578 */
|
|
3579 you lose -- fix this
|
|
3580 if (GPT > BUF_BEG (current_buffer) && *GPT_ADDR[-1] != '\n')
|
|
3581 move_gap (find_next_newline (current_buffer, GPT, 1));
|
|
3582 #endif
|
|
3583
|
|
3584 failure = 0;
|
|
3585
|
|
3586 /* Note: I tried increasing the buffering size, along with
|
|
3587 various other tricks, but nothing seemed to make much of
|
|
3588 a difference in the time it took to save a large file.
|
|
3589 (Actually that's not true. With a local disk, changing
|
|
3590 the buffer size doesn't seem to make much difference.
|
|
3591 With an NFS-mounted disk, it could make a lot of difference
|
|
3592 because you're affecting the number of network requests
|
|
3593 that need to be made, and there could be a large latency
|
|
3594 for each request. So I've increased the buffer size
|
|
3595 to 64K.) */
|
|
3596 outstream = make_filedesc_output_stream (desc, 0, -1, 0);
|
|
3597 Lstream_set_buffering (XLSTREAM (outstream),
|
|
3598 LSTREAM_BLOCKN_BUFFERED, 65536);
|
70
|
3599 #ifdef MULE
|
|
3600 outstream =
|
|
3601 make_encoding_output_stream ( XLSTREAM (outstream), codesys);
|
|
3602 Lstream_set_buffering (XLSTREAM (outstream),
|
|
3603 LSTREAM_BLOCKN_BUFFERED, 65536);
|
|
3604 #endif
|
0
|
3605 if (STRINGP (start))
|
|
3606 {
|
|
3607 instream = make_lisp_string_input_stream (start, 0, -1);
|
|
3608 start1 = 0;
|
|
3609 }
|
|
3610 else
|
|
3611 instream = make_lisp_buffer_input_stream (current_buffer, start1, end1,
|
|
3612 LSTR_SELECTIVE |
|
|
3613 LSTR_IGNORE_ACCESSIBLE);
|
|
3614 failure = (0 > (a_write (outstream, instream, start1,
|
|
3615 &annotations)));
|
|
3616 save_errno = errno;
|
|
3617 /* Note that this doesn't close the desc since we created the
|
|
3618 stream without the LSTR_CLOSING flag, but it does
|
|
3619 flush out any buffered data. */
|
|
3620 if (Lstream_close (XLSTREAM (outstream)) < 0)
|
|
3621 {
|
|
3622 failure = 1;
|
|
3623 save_errno = errno;
|
|
3624 }
|
|
3625 Lstream_close (XLSTREAM (instream));
|
|
3626 UNGCPRO;
|
|
3627
|
|
3628 #ifdef HAVE_FSYNC
|
|
3629 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun).
|
|
3630 Disk full in NFS may be reported here. */
|
|
3631 /* mib says that closing the file will try to write as fast as NFS can do
|
|
3632 it, and that means the fsync here is not crucial for autosave files. */
|
|
3633 if (!auto_saving && fsync (desc) < 0
|
|
3634 /* If fsync fails with EINTR, don't treat that as serious. */
|
|
3635 && errno != EINTR)
|
|
3636 {
|
|
3637 failure = 1;
|
|
3638 save_errno = errno;
|
|
3639 }
|
|
3640 #endif
|
|
3641
|
|
3642 /* Spurious "file has changed on disk" warnings have been
|
|
3643 observed on Suns as well.
|
|
3644 It seems that `close' can change the modtime, under nfs.
|
|
3645
|
|
3646 (This has supposedly been fixed in Sunos 4,
|
|
3647 but who knows about all the other machines with NFS?) */
|
|
3648 /* On VMS and APOLLO, must do the stat after the close
|
|
3649 since closing changes the modtime. */
|
|
3650 #if 0 /* !defined (VMS) && !defined (APOLLO) */
|
|
3651 fstat (desc, &st);
|
|
3652 #endif
|
|
3653
|
|
3654 /* NFS can report a write failure now. */
|
|
3655 if (close (desc) < 0)
|
|
3656 {
|
|
3657 failure = 1;
|
|
3658 save_errno = errno;
|
|
3659 }
|
|
3660
|
|
3661 /* Discard the close unwind-protect. Execute the one for
|
|
3662 build_annotations (switches back to the original current buffer
|
|
3663 as necessary). */
|
|
3664 XCAR (desc_locative) = Qnil;
|
|
3665 unbind_to (speccount, Qnil);
|
|
3666 }
|
|
3667
|
|
3668
|
|
3669 #ifdef VMS
|
|
3670 /* If we wrote to a temporary name and had no errors, rename to real name. */
|
|
3671 if (!NILP (fname))
|
|
3672 {
|
|
3673 if (!failure)
|
|
3674 {
|
16
|
3675 failure = (rename ((char *) XSTRING_DATA (fn),
|
|
3676 (char *) XSTRING_DATA (fname))
|
0
|
3677 != 0);
|
|
3678 save_errno = errno;
|
|
3679 }
|
|
3680 fn = fname;
|
|
3681 }
|
|
3682 #endif /* VMS */
|
|
3683
|
|
3684 #if 1 /* defined (VMS) || defined (APOLLO) */
|
16
|
3685 stat ((char *) XSTRING_DATA (fn), &st);
|
0
|
3686 #endif
|
|
3687
|
|
3688 #ifdef CLASH_DETECTION
|
|
3689 if (!auto_saving)
|
|
3690 unlock_file (lockname);
|
|
3691 #endif /* CLASH_DETECTION */
|
|
3692
|
|
3693 /* Do this before reporting IO error
|
|
3694 to avoid a "file has changed on disk" warning on
|
|
3695 next attempt to save. */
|
|
3696 if (visiting)
|
|
3697 current_buffer->modtime = st.st_mtime;
|
|
3698
|
|
3699 if (failure)
|
|
3700 error ("IO error writing %s: %s",
|
16
|
3701 XSTRING_DATA (fn),
|
0
|
3702 strerror (save_errno));
|
|
3703
|
|
3704 if (visiting)
|
|
3705 {
|
|
3706 BUF_SAVE_MODIFF (current_buffer) = BUF_MODIFF (current_buffer);
|
|
3707 current_buffer->save_length = make_int (BUF_SIZE (current_buffer));
|
|
3708 current_buffer->filename = visit_file;
|
|
3709 MARK_MODELINE_CHANGED;
|
|
3710 }
|
|
3711 else if (quietly)
|
|
3712 {
|
|
3713 return Qnil;
|
|
3714 }
|
|
3715
|
|
3716 if (!auto_saving)
|
|
3717 {
|
|
3718 if (visiting_other)
|
16
|
3719 message ("Wrote %s", XSTRING_DATA (visit_file));
|
0
|
3720 else
|
|
3721 {
|
|
3722 struct gcpro gcpro1;
|
|
3723 Lisp_Object fsp;
|
|
3724 GCPRO1 (fn);
|
|
3725
|
|
3726 fsp = Ffile_symlink_p (fn);
|
|
3727 if (NILP (fsp))
|
16
|
3728 message ("Wrote %s", XSTRING_DATA (fn));
|
0
|
3729 else
|
|
3730 message ("Wrote %s (symlink to %s)",
|
16
|
3731 XSTRING_DATA (fn), XSTRING_DATA (fsp));
|
0
|
3732 UNGCPRO;
|
|
3733 }
|
|
3734 }
|
|
3735 return Qnil;
|
|
3736 }
|
|
3737
|
|
3738 /* #### This is such a load of shit!!!! There is no way we should define
|
|
3739 something so stupid as a subr, just sort the fucking list more
|
|
3740 intelligently. */
|
20
|
3741 DEFUN ("car-less-than-car", Fcar_less_than_car, 2, 2, 0, /*
|
0
|
3742 Return t if (car A) is numerically less than (car B).
|
20
|
3743 */
|
|
3744 (a, b))
|
0
|
3745 {
|
|
3746 return Flss (Fcar (a), Fcar (b));
|
|
3747 }
|
|
3748
|
|
3749 /* Heh heh heh, let's define this too, just to aggravate the person who
|
|
3750 wrote the above comment. */
|
20
|
3751 DEFUN ("cdr-less-than-cdr", Fcdr_less_than_cdr, 2, 2, 0, /*
|
0
|
3752 Return t if (cdr A) is numerically less than (cdr B).
|
20
|
3753 */
|
|
3754 (a, b))
|
0
|
3755 {
|
|
3756 return Flss (Fcdr (a), Fcdr (b));
|
|
3757 }
|
|
3758
|
|
3759 /* Build the complete list of annotations appropriate for writing out
|
|
3760 the text between START and END, by calling all the functions in
|
|
3761 write-region-annotate-functions and merging the lists they return.
|
|
3762 If one of these functions switches to a different buffer, we assume
|
|
3763 that buffer contains altered text. Therefore, the caller must
|
|
3764 make sure to restore the current buffer in all cases,
|
|
3765 as save-excursion would do. */
|
|
3766
|
|
3767 static Lisp_Object
|
|
3768 build_annotations (Lisp_Object start, Lisp_Object end)
|
|
3769 {
|
|
3770 /* This function can GC */
|
|
3771 Lisp_Object annotations;
|
|
3772 Lisp_Object p, res;
|
|
3773 struct gcpro gcpro1, gcpro2;
|
|
3774
|
|
3775 annotations = Qnil;
|
|
3776 p = Vwrite_region_annotate_functions;
|
|
3777 GCPRO2 (annotations, p);
|
|
3778 while (!NILP (p))
|
|
3779 {
|
|
3780 struct buffer *given_buffer = current_buffer;
|
|
3781 Vwrite_region_annotations_so_far = annotations;
|
|
3782 res = call2 (Fcar (p), start, end);
|
|
3783 /* If the function makes a different buffer current,
|
|
3784 assume that means this buffer contains altered text to be output.
|
|
3785 Reset START and END from the buffer bounds
|
|
3786 and discard all previous annotations because they should have
|
|
3787 been dealt with by this function. */
|
|
3788 if (current_buffer != given_buffer)
|
|
3789 {
|
|
3790 start = make_int (BUF_BEGV (current_buffer));
|
|
3791 end = make_int (BUF_ZV (current_buffer));
|
|
3792 annotations = Qnil;
|
|
3793 }
|
|
3794 (void) Flength (res); /* Check basic validity of return value */
|
|
3795 annotations = merge (annotations, res, Qcar_less_than_car);
|
|
3796 p = Fcdr (p);
|
|
3797 }
|
|
3798
|
|
3799 /* Now do the same for annotation functions implied by the file-format */
|
|
3800 if (auto_saving && (!EQ (Vauto_save_file_format, Qt)))
|
|
3801 p = Vauto_save_file_format;
|
|
3802 else
|
|
3803 p = current_buffer->file_format;
|
|
3804 while (!NILP (p))
|
|
3805 {
|
|
3806 struct buffer *given_buffer = current_buffer;
|
|
3807 Vwrite_region_annotations_so_far = annotations;
|
|
3808 res = call3 (Qformat_annotate_function, Fcar (p), start, end);
|
|
3809 if (current_buffer != given_buffer)
|
|
3810 {
|
|
3811 start = make_int (BUF_BEGV (current_buffer));
|
|
3812 end = make_int (BUF_ZV (current_buffer));
|
|
3813 annotations = Qnil;
|
|
3814 }
|
|
3815 (void) Flength (res);
|
|
3816 annotations = merge (annotations, res, Qcar_less_than_car);
|
|
3817 p = Fcdr (p);
|
|
3818 }
|
|
3819 UNGCPRO;
|
|
3820 return annotations;
|
|
3821 }
|
|
3822
|
|
3823 /* Write to stream OUTSTREAM the characters from INSTREAM (it is read until
|
|
3824 EOF is encountered), assuming they start at position POS in the buffer
|
|
3825 of string that STREAM refers to. Intersperse with them the annotations
|
|
3826 from *ANNOT that fall into the range of positions we are reading from,
|
|
3827 each at its appropriate position.
|
|
3828
|
|
3829 Modify *ANNOT by discarding elements as we output them.
|
|
3830 The return value is negative in case of system call failure. */
|
|
3831
|
|
3832 /* 4K should probably be fine. We just need to reduce the number of
|
|
3833 function calls to reasonable level. The Lstream stuff itself will
|
|
3834 batch to 64K to reduce the number of system calls. */
|
|
3835
|
|
3836 #define A_WRITE_BATCH_SIZE 4096
|
|
3837
|
|
3838 static int
|
|
3839 a_write (Lisp_Object outstream, Lisp_Object instream, int pos,
|
|
3840 Lisp_Object *annot)
|
|
3841 {
|
|
3842 Lisp_Object tem;
|
|
3843 int nextpos;
|
|
3844 unsigned char largebuf[A_WRITE_BATCH_SIZE];
|
|
3845 Lstream *instr = XLSTREAM (instream);
|
|
3846 Lstream *outstr = XLSTREAM (outstream);
|
|
3847
|
|
3848 while (NILP (*annot) || CONSP (*annot))
|
|
3849 {
|
|
3850 tem = Fcar_safe (Fcar (*annot));
|
|
3851 if (INTP (tem))
|
|
3852 nextpos = XINT (tem);
|
|
3853 else
|
|
3854 nextpos = INT_MAX;
|
70
|
3855 #ifdef MULE
|
|
3856 /* If there are annotations left and we have Mule, then we
|
|
3857 have to do the I/O one emchar at a time so we can
|
|
3858 determine when to insert the annotation. */
|
|
3859 if (!NILP (*annot))
|
|
3860 {
|
|
3861 Emchar ch;
|
|
3862 while (pos != nextpos && (ch = Lstream_get_emchar (instr)) != EOF)
|
|
3863 {
|
|
3864 if (Lstream_put_emchar (outstr, ch) < 0)
|
|
3865 return -1;
|
|
3866 pos++;
|
|
3867 }
|
|
3868 }
|
|
3869 else
|
|
3870 #endif
|
0
|
3871 {
|
|
3872 while (pos != nextpos)
|
|
3873 {
|
|
3874 /* Otherwise there is no point to that. Just go in batches. */
|
|
3875 int chunk = min (nextpos - pos, A_WRITE_BATCH_SIZE);
|
|
3876
|
|
3877 chunk = Lstream_read (instr, largebuf, chunk);
|
|
3878 if (chunk < 0)
|
|
3879 return -1;
|
|
3880 if (chunk == 0) /* EOF */
|
|
3881 break;
|
|
3882 if (Lstream_write (outstr, largebuf, chunk) < chunk)
|
|
3883 return -1;
|
|
3884 pos += chunk;
|
|
3885 }
|
|
3886 }
|
|
3887 if (pos == nextpos)
|
|
3888 {
|
|
3889 tem = Fcdr (Fcar (*annot));
|
|
3890 if (STRINGP (tem))
|
|
3891 {
|
16
|
3892 if (Lstream_write (outstr, XSTRING_DATA (tem),
|
|
3893 XSTRING_LENGTH (tem)) < 0)
|
0
|
3894 return -1;
|
|
3895 }
|
|
3896 *annot = Fcdr (*annot);
|
|
3897 }
|
|
3898 else
|
|
3899 return 0;
|
|
3900 }
|
|
3901 return -1;
|
|
3902 }
|
|
3903
|
|
3904
|
|
3905
|
|
3906 #if 0
|
|
3907 #include <des_crypt.h>
|
|
3908
|
|
3909 #define CRYPT_BLOCK_SIZE 8 /* bytes */
|
|
3910 #define CRYPT_KEY_SIZE 8 /* bytes */
|
|
3911
|
20
|
3912 DEFUN ("encrypt-string", Fencrypt_string, 2, 2, 0, /*
|
0
|
3913 Encrypt STRING using KEY.
|
20
|
3914 */
|
|
3915 (string, key))
|
0
|
3916 {
|
|
3917 char *encrypted_string, *raw_key;
|
|
3918 int rounded_size, extra, key_size;
|
|
3919
|
|
3920 /* !!#### May produce bogus data under Mule. */
|
|
3921 CHECK_STRING (string);
|
|
3922 CHECK_STRING (key);
|
|
3923
|
16
|
3924 extra = XSTRING_LENGTH (string) % CRYPT_BLOCK_SIZE;
|
|
3925 rounded_size = XSTRING_LENGTH (string) + extra;
|
0
|
3926 encrypted_string = alloca (rounded_size + 1);
|
16
|
3927 memcpy (encrypted_string, XSTRING_DATA (string), XSTRING_LENGTH (string));
|
0
|
3928 memset (encrypted_string + rounded_size - extra, 0, extra + 1);
|
|
3929
|
16
|
3930 if (XSTRING_LENGTH (key) > CRYPT_KEY_SIZE)
|
0
|
3931 key_size = CRYPT_KEY_SIZE;
|
|
3932 else
|
16
|
3933 key_size = XSTRING_LENGTH (key);
|
0
|
3934
|
|
3935 raw_key = alloca (CRYPT_KEY_SIZE + 1);
|
16
|
3936 memcpy (raw_key, XSTRING_DATA (key), key_size);
|
0
|
3937 memset (raw_key + key_size, 0, (CRYPT_KEY_SIZE + 1) - key_size);
|
|
3938
|
|
3939 (void) ecb_crypt (raw_key, encrypted_string, rounded_size,
|
|
3940 DES_ENCRYPT | DES_SW);
|
|
3941 return make_string (encrypted_string, rounded_size);
|
|
3942 }
|
|
3943
|
20
|
3944 DEFUN ("decrypt-string", Fdecrypt_string, 2, 2, 0, /*
|
0
|
3945 Decrypt STRING using KEY.
|
20
|
3946 */
|
|
3947 (string, key))
|
0
|
3948 {
|
|
3949 char *decrypted_string, *raw_key;
|
|
3950 int string_size, key_size;
|
|
3951
|
|
3952 CHECK_STRING (string);
|
|
3953 CHECK_STRING (key);
|
|
3954
|
16
|
3955 string_size = XSTRING_LENGTH (string) + 1;
|
0
|
3956 decrypted_string = alloca (string_size);
|
16
|
3957 memcpy (decrypted_string, XSTRING_DATA (string), string_size);
|
0
|
3958 decrypted_string[string_size - 1] = '\0';
|
|
3959
|
16
|
3960 if (XSTRING_LENGTH (key) > CRYPT_KEY_SIZE)
|
0
|
3961 key_size = CRYPT_KEY_SIZE;
|
|
3962 else
|
16
|
3963 key_size = XSTRING_LENGTH (key);
|
0
|
3964
|
|
3965 raw_key = alloca (CRYPT_KEY_SIZE + 1);
|
16
|
3966 memcpy (raw_key, XSTRING_DATA (key), key_size);
|
0
|
3967 memset (raw_key + key_size, 0, (CRYPT_KEY_SIZE + 1) - key_size);
|
|
3968
|
|
3969
|
|
3970 (void) ecb_crypt (raw_key, decrypted_string, string_size,
|
|
3971 DES_DECRYPT | DES_SW);
|
|
3972 return make_string (decrypted_string, string_size - 1);
|
|
3973 }
|
|
3974 #endif
|
|
3975
|
|
3976
|
20
|
3977 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime, 1, 1, 0, /*
|
0
|
3978 Return t if last mod time of BUF's visited file matches what BUF records.
|
|
3979 This means that the file has not been changed since it was visited or saved.
|
20
|
3980 */
|
|
3981 (buf))
|
0
|
3982 {
|
70
|
3983 /* This function can GC */
|
0
|
3984 struct buffer *b;
|
|
3985 struct stat st;
|
|
3986 Lisp_Object handler;
|
|
3987
|
|
3988 CHECK_BUFFER (buf);
|
|
3989 b = XBUFFER (buf);
|
|
3990
|
|
3991 if (!STRINGP (b->filename)) return Qt;
|
|
3992 if (b->modtime == 0) return Qt;
|
|
3993
|
|
3994 /* If the file name has special constructs in it,
|
|
3995 call the corresponding file handler. */
|
|
3996 handler = Ffind_file_name_handler (b->filename,
|
|
3997 Qverify_visited_file_modtime);
|
|
3998 if (!NILP (handler))
|
|
3999 return call2 (handler, Qverify_visited_file_modtime, buf);
|
|
4000
|
16
|
4001 if (stat ((char *) XSTRING_DATA (b->filename), &st) < 0)
|
0
|
4002 {
|
|
4003 /* If the file doesn't exist now and didn't exist before,
|
|
4004 we say that it isn't modified, provided the error is a tame one. */
|
|
4005 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR)
|
|
4006 st.st_mtime = -1;
|
|
4007 else
|
|
4008 st.st_mtime = 0;
|
|
4009 }
|
|
4010 if (st.st_mtime == b->modtime
|
|
4011 /* If both are positive, accept them if they are off by one second. */
|
|
4012 || (st.st_mtime > 0 && b->modtime > 0
|
|
4013 && (st.st_mtime == b->modtime + 1
|
|
4014 || st.st_mtime == b->modtime - 1)))
|
|
4015 return Qt;
|
|
4016 return Qnil;
|
|
4017 }
|
|
4018
|
20
|
4019 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime, 0, 0, 0, /*
|
0
|
4020 Clear out records of last mod time of visited file.
|
|
4021 Next attempt to save will certainly not complain of a discrepancy.
|
20
|
4022 */
|
|
4023 ())
|
0
|
4024 {
|
|
4025 current_buffer->modtime = 0;
|
|
4026 return Qnil;
|
|
4027 }
|
|
4028
|
20
|
4029 DEFUN ("visited-file-modtime", Fvisited_file_modtime, 0, 0, 0, /*
|
0
|
4030 Return the current buffer's recorded visited file modification time.
|
|
4031 The value is a list of the form (HIGH . LOW), like the time values
|
|
4032 that `file-attributes' returns.
|
20
|
4033 */
|
|
4034 ())
|
0
|
4035 {
|
|
4036 return time_to_lisp ((time_t) current_buffer->modtime);
|
|
4037 }
|
|
4038
|
20
|
4039 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime, 0, 1, 0, /*
|
0
|
4040 Update buffer's recorded modification time from the visited file's time.
|
|
4041 Useful if the buffer was not read from the file normally
|
|
4042 or if the file itself has been changed for some known benign reason.
|
|
4043 An argument specifies the modification time value to use
|
|
4044 (instead of that of the visited file), in the form of a list
|
|
4045 (HIGH . LOW) or (HIGH LOW).
|
20
|
4046 */
|
|
4047 (time_list))
|
0
|
4048 {
|
70
|
4049 /* This function can GC */
|
0
|
4050 if (!NILP (time_list))
|
|
4051 {
|
|
4052 time_t the_time;
|
|
4053 lisp_to_time (time_list, &the_time);
|
|
4054 current_buffer->modtime = (int) the_time;
|
|
4055 }
|
|
4056 else
|
|
4057 {
|
|
4058 Lisp_Object filename;
|
|
4059 struct stat st;
|
|
4060 Lisp_Object handler;
|
70
|
4061 struct gcpro gcpro1, gcpro2;
|
0
|
4062
|
70
|
4063 GCPRO2 (filename, time_list);
|
|
4064 filename = Fexpand_file_name (current_buffer->filename,
|
|
4065 Qnil);
|
0
|
4066
|
|
4067 /* If the file name has special constructs in it,
|
|
4068 call the corresponding file handler. */
|
|
4069 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime);
|
|
4070 UNGCPRO;
|
|
4071 if (!NILP (handler))
|
|
4072 /* The handler can find the file name the same way we did. */
|
|
4073 return call2 (handler, Qset_visited_file_modtime, Qnil);
|
16
|
4074 else if (stat ((char *) XSTRING_DATA (filename), &st) >= 0)
|
0
|
4075 current_buffer->modtime = st.st_mtime;
|
|
4076 }
|
|
4077
|
|
4078 return Qnil;
|
|
4079 }
|
|
4080
|
20
|
4081 DEFUN ("set-buffer-modtime", Fset_buffer_modtime, 1, 2, 0, /*
|
0
|
4082 Update BUFFER's recorded modification time from the associated
|
|
4083 file's modtime, if there is an associated file. If not, use the
|
|
4084 current time. In either case, if the optional arg TIME is supplied,
|
|
4085 it will be used if it is either an integer or a cons of two integers.
|
20
|
4086 */
|
|
4087 (buf, in_time))
|
0
|
4088 {
|
70
|
4089 /* This function can GC */
|
0
|
4090 unsigned long time_to_use = 0;
|
|
4091 int set_time_to_use = 0;
|
|
4092 struct stat st;
|
|
4093
|
|
4094 CHECK_BUFFER (buf);
|
|
4095
|
|
4096 if (!NILP (in_time))
|
|
4097 {
|
|
4098 if (INTP (in_time))
|
|
4099 {
|
|
4100 time_to_use = XINT (in_time);
|
|
4101 set_time_to_use = 1;
|
|
4102 }
|
|
4103 else if ((CONSP (in_time)) &&
|
|
4104 (INTP (Fcar (in_time))) &&
|
|
4105 (INTP (Fcdr (in_time))))
|
|
4106 {
|
|
4107 time_t the_time;
|
|
4108 lisp_to_time (in_time, &the_time);
|
|
4109 time_to_use = (unsigned long) the_time;
|
|
4110 set_time_to_use = 1;
|
|
4111 }
|
|
4112 }
|
|
4113
|
|
4114 if (!set_time_to_use)
|
|
4115 {
|
|
4116 Lisp_Object filename = Qnil;
|
70
|
4117 struct gcpro gcpro1, gcpro2;
|
|
4118 GCPRO2 (buf, filename);
|
0
|
4119
|
|
4120 if (STRINGP (XBUFFER (buf)->filename))
|
70
|
4121 filename = Fexpand_file_name (XBUFFER (buf)->filename,
|
|
4122 Qnil);
|
0
|
4123 else
|
|
4124 filename = Qnil;
|
70
|
4125
|
|
4126 UNGCPRO;
|
0
|
4127
|
|
4128 if (!NILP (filename) && !NILP (Ffile_exists_p (filename)))
|
|
4129 {
|
|
4130 Lisp_Object handler;
|
|
4131
|
|
4132 /* If the file name has special constructs in it,
|
|
4133 call the corresponding file handler. */
|
70
|
4134 GCPRO1 (filename);
|
0
|
4135 handler = Ffind_file_name_handler (filename, Qset_buffer_modtime);
|
|
4136 UNGCPRO;
|
|
4137 if (!NILP (handler))
|
|
4138 /* The handler can find the file name the same way we did. */
|
|
4139 return (call2 (handler, Qset_buffer_modtime, Qnil));
|
|
4140 else
|
|
4141 {
|
16
|
4142 if (stat ((char *) XSTRING_DATA (filename), &st) >= 0)
|
0
|
4143 time_to_use = st.st_mtime;
|
|
4144 else
|
|
4145 time_to_use = time ((time_t *) 0);
|
|
4146 }
|
|
4147 }
|
|
4148 else
|
70
|
4149 time_to_use = time ((time_t *) 0);
|
0
|
4150 }
|
|
4151
|
|
4152 XBUFFER (buf)->modtime = time_to_use;
|
70
|
4153
|
0
|
4154 return Qnil;
|
|
4155 }
|
|
4156
|
|
4157
|
|
4158 static Lisp_Object
|
|
4159 auto_save_error (Lisp_Object condition_object, Lisp_Object ignored)
|
|
4160 {
|
70
|
4161 /* This function can GC */
|
0
|
4162 if (gc_in_progress)
|
|
4163 return Qnil;
|
|
4164 clear_echo_area (selected_frame (), Qauto_saving, 1);
|
|
4165 Fding (Qt, Qauto_save_error, Qnil);
|
70
|
4166 message ("Auto-saving...error for %s",
|
|
4167 XSTRING_DATA (current_buffer->name));
|
0
|
4168 Fsleep_for (make_int (1));
|
70
|
4169 message ("Auto-saving...error!for %s",
|
|
4170 XSTRING_DATA (current_buffer->name));
|
0
|
4171 Fsleep_for (make_int (1));
|
70
|
4172 message ("Auto-saving...error for %s",
|
|
4173 XSTRING_DATA (current_buffer->name));
|
0
|
4174 Fsleep_for (make_int (1));
|
|
4175 return Qnil;
|
|
4176 }
|
|
4177
|
|
4178 static Lisp_Object
|
|
4179 auto_save_1 (Lisp_Object ignored)
|
|
4180 {
|
70
|
4181 /* This function can GC */
|
0
|
4182 struct stat st;
|
|
4183 Lisp_Object fn = current_buffer->filename;
|
|
4184 Lisp_Object a = current_buffer->auto_save_file_name;
|
|
4185
|
|
4186 if (!STRINGP (a))
|
|
4187 return (Qnil);
|
|
4188
|
|
4189 /* Get visited file's mode to become the auto save file's mode. */
|
|
4190 if (STRINGP (fn) &&
|
16
|
4191 stat ((char *) XSTRING_DATA (fn), &st) >= 0)
|
0
|
4192 /* But make sure we can overwrite it later! */
|
|
4193 auto_save_mode_bits = st.st_mode | 0600;
|
|
4194 else
|
|
4195 /* default mode for auto-save files of buffers with no file is
|
|
4196 readable by owner only. This may annoy some small number of
|
|
4197 people, but the alternative removes all privacy from email. */
|
|
4198 auto_save_mode_bits = 0600;
|
|
4199
|
|
4200 return
|
70
|
4201 /* !!#### need to deal with this 'escape-quoted everywhere */
|
|
4202 Fwrite_region_internal (Qnil, Qnil, a, Qnil, Qlambda, Qnil,
|
|
4203 #ifdef MULE
|
|
4204 Qescape_quoted
|
|
4205 #else
|
|
4206 Qnil
|
|
4207 #endif
|
|
4208 );
|
44
|
4209 }
|
|
4210
|
0
|
4211
|
|
4212 static Lisp_Object
|
|
4213 do_auto_save_unwind (Lisp_Object fd)
|
|
4214 {
|
|
4215 close (XINT (fd));
|
|
4216 return (fd);
|
|
4217 }
|
|
4218
|
|
4219 static Lisp_Object
|
|
4220 do_auto_save_unwind_2 (Lisp_Object old_auto_saving)
|
|
4221 {
|
|
4222 auto_saving = XINT (old_auto_saving);
|
|
4223 return Qnil;
|
|
4224 }
|
|
4225
|
|
4226 /* Fdo_auto_save() checks whether a GC is in progress when it is called,
|
|
4227 and if so, tries to avoid touching lisp objects.
|
|
4228
|
|
4229 The only time that Fdo_auto_save() is called while GC is in progress
|
|
4230 is if we're going down, as a result of an abort() or a kill signal.
|
|
4231 It's fairly important that we generate autosave files in that case!
|
|
4232 */
|
|
4233
|
20
|
4234 DEFUN ("do-auto-save", Fdo_auto_save, 0, 2, "", /*
|
0
|
4235 Auto-save all buffers that need it.
|
|
4236 This is all buffers that have auto-saving enabled
|
|
4237 and are changed since last auto-saved.
|
|
4238 Auto-saving writes the buffer into a file
|
|
4239 so that your editing is not lost if the system crashes.
|
|
4240 This file is not the file you visited; that changes only when you save.
|
|
4241 Normally we run the normal hook `auto-save-hook' before saving.
|
|
4242
|
|
4243 Non-nil first argument means do not print any message if successful.
|
|
4244 Non-nil second argument means save only current buffer.
|
20
|
4245 */
|
|
4246 (no_message, current_only))
|
0
|
4247 {
|
70
|
4248 /* This function can GC */
|
|
4249 struct buffer *old = current_buffer, *b;
|
0
|
4250 Lisp_Object tail, buf;
|
|
4251 int auto_saved = 0;
|
|
4252 int do_handled_files;
|
|
4253 Lisp_Object oquit = Qnil;
|
|
4254 Lisp_Object listfile = Qnil;
|
|
4255 int listdesc = -1;
|
|
4256 int speccount = specpdl_depth ();
|
70
|
4257 struct gcpro gcpro1, gcpro2;
|
|
4258
|
|
4259 GCPRO2 (oquit, listfile);
|
0
|
4260 check_quit (); /* make Vquit_flag accurate */
|
|
4261 /* Ordinarily don't quit within this function,
|
|
4262 but don't make it impossible to quit (in case we get hung in I/O). */
|
|
4263 oquit = Vquit_flag;
|
|
4264 Vquit_flag = Qnil;
|
|
4265
|
|
4266 /* No further GCPRO needed, because (when it matters) all Lisp_Object
|
|
4267 variables point to non-strings reached from Vbuffer_alist. */
|
|
4268
|
|
4269 if (minibuf_level != 0 || preparing_for_armageddon)
|
|
4270 no_message = Qt;
|
|
4271
|
|
4272 run_hook (Qauto_save_hook);
|
|
4273
|
|
4274 if (GC_STRINGP (Vauto_save_list_file_name))
|
70
|
4275 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil);
|
0
|
4276
|
|
4277 /* Make sure auto_saving is reset. */
|
|
4278 record_unwind_protect (do_auto_save_unwind_2, make_int (auto_saving));
|
|
4279
|
|
4280 auto_saving = 1;
|
|
4281
|
|
4282 /* First, save all files which don't have handlers. If Emacs is
|
|
4283 crashing, the handlers may tweak what is causing Emacs to crash
|
|
4284 in the first place, and it would be a shame if Emacs failed to
|
|
4285 autosave perfectly ordinary files because it couldn't handle some
|
|
4286 ange-ftp'd file. */
|
|
4287 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++)
|
|
4288 {
|
|
4289 for (tail = Vbuffer_alist;
|
|
4290 GC_CONSP (tail);
|
|
4291 tail = XCDR (tail))
|
|
4292 {
|
|
4293 buf = XCDR (XCAR (tail));
|
|
4294 b = XBUFFER (buf);
|
|
4295
|
|
4296 if (!GC_NILP (current_only)
|
|
4297 && b != current_buffer)
|
|
4298 continue;
|
|
4299
|
|
4300 /* Don't auto-save indirect buffers.
|
|
4301 The base buffer takes care of it. */
|
|
4302 if (b->base_buffer)
|
|
4303 continue;
|
|
4304
|
|
4305 /* Check for auto save enabled
|
|
4306 and file changed since last auto save
|
|
4307 and file changed since last real save. */
|
|
4308 if (GC_STRINGP (b->auto_save_file_name)
|
|
4309 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b)
|
|
4310 && b->auto_save_modified < BUF_MODIFF (b)
|
|
4311 /* -1 means we've turned off autosaving for a while--see below. */
|
|
4312 && XINT (b->save_length) >= 0
|
|
4313 && (do_handled_files
|
|
4314 || NILP (Ffind_file_name_handler (b->auto_save_file_name,
|
|
4315 Qwrite_region))))
|
|
4316 {
|
|
4317 EMACS_TIME before_time, after_time;
|
|
4318
|
|
4319 EMACS_GET_TIME (before_time);
|
|
4320 /* If we had a failure, don't try again for 20 minutes. */
|
|
4321 if (!preparing_for_armageddon
|
|
4322 && b->auto_save_failure_time >= 0
|
|
4323 && (EMACS_SECS (before_time) - b->auto_save_failure_time <
|
|
4324 1200))
|
|
4325 continue;
|
|
4326
|
|
4327 if (!preparing_for_armageddon &&
|
|
4328 (XINT (b->save_length) * 10
|
|
4329 > (BUF_Z (b) - BUF_BEG (b)) * 13)
|
|
4330 /* A short file is likely to change a large fraction;
|
|
4331 spare the user annoying messages. */
|
|
4332 && XINT (b->save_length) > 5000
|
|
4333 /* These messages are frequent and annoying for `*mail*'. */
|
|
4334 && !EQ (b->filename, Qnil)
|
|
4335 && NILP (no_message)
|
|
4336 && disable_auto_save_when_buffer_shrinks)
|
|
4337 {
|
|
4338 /* It has shrunk too much; turn off auto-saving here.
|
|
4339 Unless we're about to crash, in which case auto-save it
|
|
4340 anyway.
|
|
4341 */
|
|
4342 message
|
|
4343 ("Buffer %s has shrunk a lot; auto save turned off there",
|
16
|
4344 XSTRING_DATA (b->name));
|
0
|
4345 /* Turn off auto-saving until there's a real save,
|
|
4346 and prevent any more warnings. */
|
|
4347 b->save_length = make_int (-1);
|
|
4348 if (!gc_in_progress)
|
|
4349 Fsleep_for (make_int (1));
|
|
4350 continue;
|
|
4351 }
|
|
4352 set_buffer_internal (b);
|
|
4353 if (!auto_saved && GC_NILP (no_message))
|
|
4354 {
|
|
4355 static CONST unsigned char *msg
|
|
4356 = (CONST unsigned char *) "Auto-saving...";
|
|
4357 echo_area_message (selected_frame (), msg, Qnil,
|
|
4358 0, strlen ((CONST char *) msg),
|
|
4359 Qauto_saving);
|
|
4360 }
|
|
4361
|
|
4362 /* Open the auto-save list file, if necessary.
|
|
4363 We only do this now so that the file only exists
|
|
4364 if we actually auto-saved any files. */
|
|
4365 if (!auto_saved && GC_STRINGP (listfile) && listdesc < 0)
|
|
4366 {
|
|
4367 #ifdef DOS_NT
|
70
|
4368 listdesc = open ((char *) XSTRING_DATA (listfile),
|
0
|
4369 O_WRONLY | O_TRUNC | O_CREAT | O_TEXT,
|
|
4370 S_IREAD | S_IWRITE);
|
|
4371 #else /* not DOS_NT */
|
16
|
4372 listdesc = creat ((char *) XSTRING_DATA (listfile), 0666);
|
0
|
4373 #endif /* not DOS_NT */
|
|
4374
|
|
4375 /* Arrange to close that file whether or not we get
|
|
4376 an error. */
|
|
4377 if (listdesc >= 0)
|
|
4378 record_unwind_protect (do_auto_save_unwind,
|
|
4379 make_int (listdesc));
|
|
4380 }
|
|
4381
|
|
4382 /* Record all the buffers that we are auto-saving in
|
|
4383 the special file that lists them. For each of
|
|
4384 these buffers, record visited name (if any) and
|
|
4385 auto save name. */
|
|
4386 if (listdesc >= 0)
|
|
4387 {
|
|
4388 Extbyte *auto_save_file_name_ext;
|
|
4389 Extcount auto_save_file_name_ext_len;
|
|
4390
|
|
4391 GET_STRING_FILENAME_DATA_ALLOCA
|
|
4392 (b->auto_save_file_name,
|
|
4393 auto_save_file_name_ext,
|
|
4394 auto_save_file_name_ext_len);
|
|
4395 if (!NILP (b->filename))
|
|
4396 {
|
|
4397 Extbyte *filename_ext;
|
|
4398 Extcount filename_ext_len;
|
|
4399
|
|
4400 GET_STRING_FILENAME_DATA_ALLOCA (b->filename,
|
|
4401 filename_ext,
|
|
4402 filename_ext_len);
|
|
4403 write (listdesc, filename_ext, filename_ext_len);
|
|
4404 }
|
|
4405 write (listdesc, "\n", 1);
|
|
4406 write (listdesc, auto_save_file_name_ext,
|
|
4407 auto_save_file_name_ext_len);
|
|
4408 write (listdesc, "\n", 1);
|
|
4409 }
|
|
4410
|
70
|
4411 condition_case_1 (Qt,
|
|
4412 auto_save_1, Qnil,
|
|
4413 auto_save_error, Qnil);
|
0
|
4414 auto_saved++;
|
|
4415 b->auto_save_modified = BUF_MODIFF (b);
|
|
4416 b->save_length = make_int (BUF_SIZE (b));
|
70
|
4417 set_buffer_internal (old);
|
|
4418
|
0
|
4419 EMACS_GET_TIME (after_time);
|
|
4420 /* If auto-save took more than 60 seconds,
|
|
4421 assume it was an NFS failure that got a timeout. */
|
|
4422 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60)
|
|
4423 b->auto_save_failure_time = EMACS_SECS (after_time);
|
|
4424 }
|
|
4425 }
|
|
4426 }
|
|
4427
|
|
4428 /* Prevent another auto save till enough input events come in. */
|
|
4429 if (auto_saved)
|
|
4430 record_auto_save ();
|
|
4431
|
|
4432 /* If we didn't save anything into the listfile, remove the old
|
|
4433 one because nothing needed to be auto-saved. Do this afterwards
|
|
4434 rather than before in case we get a crash attempting to autosave
|
|
4435 (in that case we'd still want the old one around). */
|
|
4436 if (listdesc < 0 && !auto_saved && GC_STRINGP (listfile))
|
16
|
4437 unlink ((char *) XSTRING_DATA (listfile));
|
0
|
4438
|
|
4439 /* Show "...done" only if the echo area would otherwise be empty. */
|
|
4440 if (auto_saved && NILP (no_message)
|
|
4441 && NILP (clear_echo_area (selected_frame (), Qauto_saving, 0)))
|
|
4442 {
|
|
4443 static CONST unsigned char *msg
|
|
4444 = (CONST unsigned char *)"Auto-saving...done";
|
|
4445 echo_area_message (selected_frame (), msg, Qnil, 0,
|
|
4446 strlen ((CONST char *) msg), Qauto_saving);
|
|
4447 }
|
|
4448
|
|
4449 Vquit_flag = oquit;
|
|
4450
|
|
4451 RETURN_UNGCPRO (unbind_to (speccount, Qnil));
|
|
4452 }
|
|
4453
|
20
|
4454 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved, 0, 0, 0, /*
|
0
|
4455 Mark current buffer as auto-saved with its current text.
|
|
4456 No auto-save file will be written until the buffer changes again.
|
20
|
4457 */
|
|
4458 ())
|
0
|
4459 {
|
|
4460 current_buffer->auto_save_modified = BUF_MODIFF (current_buffer);
|
|
4461 current_buffer->save_length = make_int (BUF_SIZE (current_buffer));
|
|
4462 current_buffer->auto_save_failure_time = -1;
|
|
4463 return Qnil;
|
|
4464 }
|
|
4465
|
20
|
4466 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure, 0, 0, 0, /*
|
0
|
4467 Clear any record of a recent auto-save failure in the current buffer.
|
20
|
4468 */
|
|
4469 ())
|
0
|
4470 {
|
|
4471 current_buffer->auto_save_failure_time = -1;
|
|
4472 return Qnil;
|
|
4473 }
|
|
4474
|
20
|
4475 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, 0, 0, 0, /*
|
0
|
4476 Return t if buffer has been auto-saved since last read in or saved.
|
20
|
4477 */
|
|
4478 ())
|
0
|
4479 {
|
|
4480 return (BUF_SAVE_MODIFF (current_buffer) <
|
|
4481 current_buffer->auto_save_modified) ? Qt : Qnil;
|
|
4482 }
|
|
4483
|
|
4484
|
|
4485 /************************************************************************/
|
|
4486 /* initialization */
|
|
4487 /************************************************************************/
|
|
4488
|
|
4489 void
|
|
4490 syms_of_fileio (void)
|
|
4491 {
|
|
4492 defsymbol (&Qexpand_file_name, "expand-file-name");
|
|
4493 defsymbol (&Qfile_truename, "file-truename");
|
|
4494 defsymbol (&Qsubstitute_in_file_name, "substitute-in-file-name");
|
|
4495 defsymbol (&Qdirectory_file_name, "directory-file-name");
|
|
4496 defsymbol (&Qfile_name_directory, "file-name-directory");
|
|
4497 defsymbol (&Qfile_name_nondirectory, "file-name-nondirectory");
|
|
4498 defsymbol (&Qunhandled_file_name_directory, "unhandled-file-name-directory");
|
|
4499 defsymbol (&Qfile_name_as_directory, "file-name-as-directory");
|
|
4500 defsymbol (&Qcopy_file, "copy-file");
|
|
4501 defsymbol (&Qmake_directory_internal, "make-directory-internal");
|
|
4502 defsymbol (&Qdelete_directory, "delete-directory");
|
|
4503 defsymbol (&Qdelete_file, "delete-file");
|
|
4504 defsymbol (&Qrename_file, "rename-file");
|
|
4505 defsymbol (&Qadd_name_to_file, "add-name-to-file");
|
|
4506 defsymbol (&Qmake_symbolic_link, "make-symbolic-link");
|
|
4507 defsymbol (&Qfile_exists_p, "file-exists-p");
|
|
4508 defsymbol (&Qfile_executable_p, "file-executable-p");
|
|
4509 defsymbol (&Qfile_readable_p, "file-readable-p");
|
|
4510 defsymbol (&Qfile_symlink_p, "file-symlink-p");
|
|
4511 defsymbol (&Qfile_writable_p, "file-writable-p");
|
|
4512 defsymbol (&Qfile_directory_p, "file-directory-p");
|
|
4513 defsymbol (&Qfile_regular_p, "file-regular-p");
|
|
4514 defsymbol (&Qfile_accessible_directory_p, "file-accessible-directory-p");
|
|
4515 defsymbol (&Qfile_modes, "file-modes");
|
|
4516 defsymbol (&Qset_file_modes, "set-file-modes");
|
|
4517 defsymbol (&Qfile_newer_than_file_p, "file-newer-than-file-p");
|
|
4518 defsymbol (&Qinsert_file_contents, "insert-file-contents");
|
|
4519 defsymbol (&Qwrite_region, "write-region");
|
|
4520 defsymbol (&Qverify_visited_file_modtime, "verify-visited-file-modtime");
|
|
4521 defsymbol (&Qset_visited_file_modtime, "set-visited-file-modtime");
|
|
4522 defsymbol (&Qset_buffer_modtime, "set-buffer-modtime");
|
|
4523 #ifdef DOS_NT
|
|
4524 defsymbol (&Qfind_buffer_file_type, "find-buffer-file-type");
|
|
4525 #endif /* DOS_NT */
|
|
4526 defsymbol (&Qcar_less_than_car, "car-less-than-car"); /* Vomitous! */
|
|
4527
|
|
4528 defsymbol (&Qfile_name_handler_alist, "file-name-handler-alist");
|
|
4529 defsymbol (&Qauto_save_hook, "auto-save-hook");
|
|
4530 defsymbol (&Qauto_save_error, "auto-save-error");
|
|
4531 defsymbol (&Qauto_saving, "auto-saving");
|
|
4532
|
|
4533 defsymbol (&Qformat_decode, "format-decode");
|
|
4534 defsymbol (&Qformat_annotate_function, "format-annotate-function");
|
|
4535
|
|
4536 defsymbol (&Qcompute_buffer_file_truename, "compute-buffer-file-truename");
|
|
4537 deferror (&Qfile_error, "file-error", "File error", Qio_error);
|
|
4538 deferror (&Qfile_already_exists, "file-already-exists",
|
|
4539 "File already exists", Qfile_error);
|
|
4540
|
20
|
4541 DEFSUBR (Ffind_file_name_handler);
|
|
4542
|
|
4543 DEFSUBR (Ffile_name_directory);
|
|
4544 DEFSUBR (Ffile_name_nondirectory);
|
|
4545 DEFSUBR (Funhandled_file_name_directory);
|
|
4546 DEFSUBR (Ffile_name_as_directory);
|
|
4547 DEFSUBR (Fdirectory_file_name);
|
|
4548 DEFSUBR (Fmake_temp_name);
|
|
4549 DEFSUBR (Fexpand_file_name);
|
|
4550 DEFSUBR (Ffile_truename);
|
|
4551 DEFSUBR (Fsubstitute_in_file_name);
|
|
4552 DEFSUBR (Fcopy_file);
|
|
4553 DEFSUBR (Fmake_directory_internal);
|
|
4554 DEFSUBR (Fdelete_directory);
|
|
4555 DEFSUBR (Fdelete_file);
|
|
4556 DEFSUBR (Frename_file);
|
|
4557 DEFSUBR (Fadd_name_to_file);
|
0
|
4558 #ifdef S_IFLNK
|
20
|
4559 DEFSUBR (Fmake_symbolic_link);
|
0
|
4560 #endif /* S_IFLNK */
|
|
4561 #ifdef VMS
|
20
|
4562 DEFSUBR (Fdefine_logical_name);
|
0
|
4563 #endif /* VMS */
|
|
4564 #ifdef HPUX_NET
|
20
|
4565 DEFSUBR (Fsysnetunam);
|
0
|
4566 #endif /* HPUX_NET */
|
20
|
4567 DEFSUBR (Ffile_name_absolute_p);
|
|
4568 DEFSUBR (Ffile_exists_p);
|
|
4569 DEFSUBR (Ffile_executable_p);
|
|
4570 DEFSUBR (Ffile_readable_p);
|
|
4571 DEFSUBR (Ffile_writable_p);
|
|
4572 DEFSUBR (Ffile_symlink_p);
|
|
4573 DEFSUBR (Ffile_directory_p);
|
|
4574 DEFSUBR (Ffile_accessible_directory_p);
|
|
4575 DEFSUBR (Ffile_regular_p);
|
|
4576 DEFSUBR (Ffile_modes);
|
|
4577 DEFSUBR (Fset_file_modes);
|
|
4578 DEFSUBR (Fset_default_file_modes);
|
|
4579 DEFSUBR (Fdefault_file_modes);
|
|
4580 DEFSUBR (Funix_sync);
|
|
4581 DEFSUBR (Ffile_newer_than_file_p);
|
|
4582 DEFSUBR (Finsert_file_contents_internal);
|
|
4583 DEFSUBR (Fwrite_region_internal);
|
|
4584 DEFSUBR (Fcar_less_than_car); /* Vomitous! */
|
|
4585 DEFSUBR (Fcdr_less_than_cdr); /* Yeah oh yeah bucko .... */
|
0
|
4586 #if 0
|
20
|
4587 DEFSUBR (Fencrypt_string);
|
|
4588 DEFSUBR (Fdecrypt_string);
|
0
|
4589 #endif
|
20
|
4590 DEFSUBR (Fverify_visited_file_modtime);
|
|
4591 DEFSUBR (Fclear_visited_file_modtime);
|
|
4592 DEFSUBR (Fvisited_file_modtime);
|
|
4593 DEFSUBR (Fset_visited_file_modtime);
|
|
4594 DEFSUBR (Fset_buffer_modtime);
|
|
4595
|
|
4596 DEFSUBR (Fdo_auto_save);
|
|
4597 DEFSUBR (Fset_buffer_auto_saved);
|
|
4598 DEFSUBR (Fclear_buffer_auto_save_failure);
|
|
4599 DEFSUBR (Frecent_auto_save_p);
|
0
|
4600 }
|
|
4601
|
|
4602 void
|
|
4603 vars_of_fileio (void)
|
|
4604 {
|
|
4605 DEFVAR_LISP ("auto-save-file-format", &Vauto_save_file_format /*
|
|
4606 *Format in which to write auto-save files.
|
|
4607 Should be a list of symbols naming formats that are defined in `format-alist'.
|
|
4608 If it is t, which is the default, auto-save files are written in the
|
|
4609 same format as a regular save would use.
|
|
4610 */ );
|
|
4611 Vauto_save_file_format = Qt;
|
|
4612
|
|
4613 DEFVAR_BOOL ("vms-stmlf-recfm", &vms_stmlf_recfm /*
|
|
4614 *Non-nil means write new files with record format `stmlf'.
|
|
4615 nil means use format `var'. This variable is meaningful only on VMS.
|
|
4616 */ );
|
|
4617 vms_stmlf_recfm = 0;
|
|
4618
|
|
4619 DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist /*
|
|
4620 *Alist of elements (REGEXP . HANDLER) for file names handled specially.
|
|
4621 If a file name matches REGEXP, then all I/O on that file is done by calling
|
|
4622 HANDLER.
|
|
4623
|
|
4624 The first argument given to HANDLER is the name of the I/O primitive
|
|
4625 to be handled; the remaining arguments are the arguments that were
|
|
4626 passed to that primitive. For example, if you do
|
|
4627 (file-exists-p FILENAME)
|
|
4628 and FILENAME is handled by HANDLER, then HANDLER is called like this:
|
|
4629 (funcall HANDLER 'file-exists-p FILENAME)
|
|
4630 The function `find-file-name-handler' checks this list for a handler
|
|
4631 for its argument.
|
|
4632 */ );
|
|
4633 Vfile_name_handler_alist = Qnil;
|
|
4634
|
|
4635 DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions /*
|
|
4636 A list of functions to be called at the end of `insert-file-contents'.
|
|
4637 Each is passed one argument, the number of bytes inserted. It should return
|
|
4638 the new byte count, and leave point the same. If `insert-file-contents' is
|
|
4639 intercepted by a handler from `file-name-handler-alist', that handler is
|
|
4640 responsible for calling the after-insert-file-functions if appropriate.
|
|
4641 */ );
|
|
4642 Vafter_insert_file_functions = Qnil;
|
|
4643
|
|
4644 DEFVAR_LISP ("write-region-annotate-functions",
|
|
4645 &Vwrite_region_annotate_functions /*
|
|
4646 A list of functions to be called at the start of `write-region'.
|
|
4647 Each is passed two arguments, START and END as for `write-region'.
|
|
4648 It should return a list of pairs (POSITION . STRING) of strings to be
|
|
4649 effectively inserted at the specified positions of the file being written
|
|
4650 \(1 means to insert before the first byte written). The POSITIONs must be
|
|
4651 sorted into increasing order. If there are several functions in the list,
|
|
4652 the several lists are merged destructively.
|
|
4653 */ );
|
|
4654 Vwrite_region_annotate_functions = Qnil;
|
|
4655
|
|
4656 DEFVAR_LISP ("write-region-annotations-so-far",
|
|
4657 &Vwrite_region_annotations_so_far /*
|
|
4658 When an annotation function is called, this holds the previous annotations.
|
|
4659 These are the annotations made by other annotation functions
|
|
4660 that were already called. See also `write-region-annotate-functions'.
|
|
4661 */ );
|
|
4662 Vwrite_region_annotations_so_far = Qnil;
|
|
4663
|
|
4664 DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers /*
|
|
4665 A list of file name handlers that temporarily should not be used.
|
|
4666 This applies only to the operation `inhibit-file-name-operation'.
|
|
4667 */ );
|
|
4668 Vinhibit_file_name_handlers = Qnil;
|
|
4669
|
|
4670 DEFVAR_LISP ("inhibit-file-name-operation", &Vinhibit_file_name_operation /*
|
|
4671 The operation for which `inhibit-file-name-handlers' is applicable.
|
|
4672 */ );
|
|
4673 Vinhibit_file_name_operation = Qnil;
|
|
4674
|
|
4675 DEFVAR_LISP ("auto-save-list-file-name", &Vauto_save_list_file_name /*
|
|
4676 File name in which we write a list of all auto save file names.
|
|
4677 */ );
|
|
4678 Vauto_save_list_file_name = Qnil;
|
|
4679
|
|
4680 DEFVAR_BOOL ("disable-auto-save-when-buffer-shrinks",
|
|
4681 &disable_auto_save_when_buffer_shrinks /*
|
|
4682 If non-nil, auto-saving is disabled when a buffer shrinks too much.
|
|
4683 This is to prevent you from losing your edits if you accidentally
|
|
4684 delete a large chunk of the buffer and don't notice it until too late.
|
|
4685 Saving the buffer normally turns auto-save back on.
|
|
4686 */ );
|
|
4687 disable_auto_save_when_buffer_shrinks = 1;
|
|
4688 }
|