Mercurial > emacs
annotate src/fileio.c @ 13407:5ebb99bc06bb
[HAVE_NTGUI]: Include win32.h.
HAVE_NTGUI] (struct frame_glyphs): Include pixel fields.
Use HAVE_WINDOW_SYSTEM instead of testing for specific window systems.
| author | Geoff Voelker <voelker@cs.washington.edu> |
|---|---|
| date | Tue, 07 Nov 1995 07:13:46 +0000 |
| parents | 994440ef957f |
| children | 3a69848f7892 |
| rev | line source |
|---|---|
| 230 | 1 /* File IO for GNU Emacs. |
| 11235 | 2 Copyright (C) 1985, 86, 87, 88, 93, 94, 95 Free Software Foundation, Inc. |
| 230 | 3 |
| 4 This file is part of GNU Emacs. | |
| 5 | |
| 6 GNU Emacs is free software; you can redistribute it and/or modify | |
| 7 it under the terms of the GNU General Public License as published by | |
| 621 | 8 the Free Software Foundation; either version 2, or (at your option) |
| 230 | 9 any later version. |
| 10 | |
| 11 GNU Emacs is distributed in the hope that it will be useful, | |
| 12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 GNU General Public License for more details. | |
| 15 | |
| 16 You should have received a copy of the GNU General Public License | |
| 17 along with GNU Emacs; see the file COPYING. If not, write to | |
| 18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
| 19 | |
|
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4483
diff
changeset
|
20 #include <config.h> |
| 230 | 21 |
| 22 #include <sys/types.h> | |
| 23 #include <sys/stat.h> | |
| 372 | 24 |
|
6862
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
25 #ifdef HAVE_UNISTD_H |
|
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
26 #include <unistd.h> |
|
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
27 #endif |
|
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
28 |
|
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
29 #if !defined (S_ISLNK) && defined (S_IFLNK) |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
30 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
31 #endif |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
32 |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
33 #if !defined (S_ISREG) && defined (S_IFREG) |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
34 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
35 #endif |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
36 |
| 372 | 37 #ifdef VMS |
| 564 | 38 #include "vms-pwd.h" |
| 372 | 39 #else |
| 230 | 40 #include <pwd.h> |
| 372 | 41 #endif |
| 42 | |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
43 #ifdef MSDOS |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
44 #include "msdos.h" |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
45 #include <sys/param.h> |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
46 #endif |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
47 |
| 230 | 48 #include <ctype.h> |
| 372 | 49 |
| 50 #ifdef VMS | |
| 5877 | 51 #include "vmsdir.h" |
| 372 | 52 #include <perror.h> |
| 53 #include <stddef.h> | |
| 54 #include <string.h> | |
| 55 #endif | |
| 56 | |
| 230 | 57 #include <errno.h> |
| 58 | |
| 372 | 59 #ifndef vax11c |
| 230 | 60 extern int errno; |
| 61 #endif | |
| 62 | |
|
5517
8b2b6a296cda
Don't declare sys_errlist; declare strerror instead.
Roland McGrath <roland@gnu.org>
parents:
5494
diff
changeset
|
63 extern char *strerror (); |
| 230 | 64 |
| 65 #ifdef APOLLO | |
| 66 #include <sys/time.h> | |
| 67 #endif | |
| 68 | |
|
2280
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
69 #ifndef USG |
|
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
70 #ifndef VMS |
|
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
71 #ifndef BSD4_1 |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
72 #ifndef WINDOWSNT |
|
2280
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
73 #define HAVE_FSYNC |
|
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
74 #endif |
|
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
75 #endif |
|
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
76 #endif |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
77 #endif |
|
2280
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
78 |
| 230 | 79 #include "lisp.h" |
|
1299
b8337cdf2e8b
* fileio.c (Finsert_file_contents): Call offset_intervals() if
Joseph Arceneaux <jla@gnu.org>
parents:
1240
diff
changeset
|
80 #include "intervals.h" |
| 230 | 81 #include "buffer.h" |
| 82 #include "window.h" | |
| 83 | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
84 #ifdef WINDOWSNT |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
85 #define NOMINMAX 1 |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
86 #include <windows.h> |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
87 #include <stdlib.h> |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
88 #include <fcntl.h> |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
89 #endif /* not WINDOWSNT */ |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
90 |
| 230 | 91 #ifdef VMS |
| 92 #include <file.h> | |
| 93 #include <rmsdef.h> | |
| 94 #include <fab.h> | |
| 95 #include <nam.h> | |
| 96 #endif | |
| 97 | |
| 564 | 98 #include "systime.h" |
| 230 | 99 |
| 100 #ifdef HPUX | |
| 101 #include <netio.h> | |
| 350 | 102 #ifndef HPUX8 |
|
3410
47b51faf6c4e
[HPUX9]: Don't include errnet.h.
Richard M. Stallman <rms@gnu.org>
parents:
3032
diff
changeset
|
103 #ifndef HPUX9 |
| 230 | 104 #include <errnet.h> |
| 105 #endif | |
| 350 | 106 #endif |
|
3410
47b51faf6c4e
[HPUX9]: Don't include errnet.h.
Richard M. Stallman <rms@gnu.org>
parents:
3032
diff
changeset
|
107 #endif |
| 230 | 108 |
| 109 #ifndef O_WRONLY | |
| 110 #define O_WRONLY 1 | |
| 111 #endif | |
| 112 | |
| 8597 | 113 #ifndef O_RDONLY |
| 114 #define O_RDONLY 0 | |
| 115 #endif | |
| 116 | |
| 230 | 117 #define min(a, b) ((a) < (b) ? (a) : (b)) |
| 118 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
| 119 | |
| 120 /* Nonzero during writing of auto-save files */ | |
| 121 int auto_saving; | |
| 122 | |
| 123 /* Set by auto_save_1 to mode of original file so Fwrite_region will create | |
| 124 a new file with the same mode as the original */ | |
| 125 int auto_save_mode_bits; | |
| 126 | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
127 /* Alist of elements (REGEXP . HANDLER) for file names |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
128 whose I/O is done with a special handler. */ |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
129 Lisp_Object Vfile_name_handler_alist; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
130 |
|
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
131 /* Format for auto-save files */ |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
132 Lisp_Object Vauto_save_file_format; |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
133 |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
134 /* Lisp functions for translating file formats */ |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
135 Lisp_Object Qformat_decode, Qformat_annotate_function; |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
136 |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
137 /* Functions to be called to process text properties in inserted file. */ |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
138 Lisp_Object Vafter_insert_file_functions; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
139 |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
140 /* Functions to be called to create text property annotations for file. */ |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
141 Lisp_Object Vwrite_region_annotate_functions; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
142 |
|
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
143 /* During build_annotations, each time an annotation function is called, |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
144 this holds the annotations made by the previous functions. */ |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
145 Lisp_Object Vwrite_region_annotations_so_far; |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
146 |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
147 /* File name in which we write a list of all our auto save files. */ |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
148 Lisp_Object Vauto_save_list_file_name; |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
149 |
| 230 | 150 /* Nonzero means, when reading a filename in the minibuffer, |
| 151 start out by inserting the default directory into the minibuffer. */ | |
| 152 int insert_default_directory; | |
| 153 | |
| 154 /* On VMS, nonzero means write new files with record format stmlf. | |
| 155 Zero means use var format. */ | |
| 156 int vms_stmlf_recfm; | |
| 157 | |
|
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
158 /* These variables describe handlers that have "already" had a chance |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
159 to handle the current operation. |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
160 |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
161 Vinhibit_file_name_handlers is a list of file name handlers. |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
162 Vinhibit_file_name_operation is the operation being handled. |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
163 If we try to handle that operation, we ignore those handlers. */ |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
164 |
|
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
165 static Lisp_Object Vinhibit_file_name_handlers; |
|
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
166 static Lisp_Object Vinhibit_file_name_operation; |
|
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
167 |
| 230 | 168 Lisp_Object Qfile_error, Qfile_already_exists; |
| 169 | |
|
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
170 Lisp_Object Qfile_name_history; |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
171 |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
172 Lisp_Object Qcar_less_than_car; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
173 |
| 230 | 174 report_file_error (string, data) |
| 175 char *string; | |
| 176 Lisp_Object data; | |
| 177 { | |
| 178 Lisp_Object errstring; | |
| 179 | |
|
5529
708b422cf8df
(report_file_error): Use strerror instead of sys_errlist.
Roland McGrath <roland@gnu.org>
parents:
5517
diff
changeset
|
180 errstring = build_string (strerror (errno)); |
| 230 | 181 |
| 182 /* System error messages are capitalized. Downcase the initial | |
| 183 unless it is followed by a slash. */ | |
| 184 if (XSTRING (errstring)->data[1] != '/') | |
| 185 XSTRING (errstring)->data[0] = DOWNCASE (XSTRING (errstring)->data[0]); | |
| 186 | |
| 187 while (1) | |
| 188 Fsignal (Qfile_error, | |
| 189 Fcons (build_string (string), Fcons (errstring, data))); | |
| 190 } | |
|
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
191 |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
192 close_file_unwind (fd) |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
193 Lisp_Object fd; |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
194 { |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
195 close (XFASTINT (fd)); |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
196 } |
|
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
197 |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
198 /* Restore point, having saved it as a marker. */ |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
199 |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
200 restore_point_unwind (location) |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
201 Lisp_Object location; |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
202 { |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
203 SET_PT (marker_position (location)); |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
204 Fset_marker (location, Qnil, Qnil); |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
205 } |
| 230 | 206 |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
207 Lisp_Object Qexpand_file_name; |
|
10719
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
208 Lisp_Object Qsubstitute_in_file_name; |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
209 Lisp_Object Qdirectory_file_name; |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
210 Lisp_Object Qfile_name_directory; |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
211 Lisp_Object Qfile_name_nondirectory; |
|
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
212 Lisp_Object Qunhandled_file_name_directory; |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
213 Lisp_Object Qfile_name_as_directory; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
214 Lisp_Object Qcopy_file; |
|
8227
0e6b7eeedc3b
(Fmake_directory_internal): Use Qmake_directory_internal.
Richard M. Stallman <rms@gnu.org>
parents:
8185
diff
changeset
|
215 Lisp_Object Qmake_directory_internal; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
216 Lisp_Object Qdelete_directory; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
217 Lisp_Object Qdelete_file; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
218 Lisp_Object Qrename_file; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
219 Lisp_Object Qadd_name_to_file; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
220 Lisp_Object Qmake_symbolic_link; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
221 Lisp_Object Qfile_exists_p; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
222 Lisp_Object Qfile_executable_p; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
223 Lisp_Object Qfile_readable_p; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
224 Lisp_Object Qfile_symlink_p; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
225 Lisp_Object Qfile_writable_p; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
226 Lisp_Object Qfile_directory_p; |
|
11599
51bc10be0dc7
(Ffile_regular_p): Use Qfile_regular_p.
Richard M. Stallman <rms@gnu.org>
parents:
11426
diff
changeset
|
227 Lisp_Object Qfile_regular_p; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
228 Lisp_Object Qfile_accessible_directory_p; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
229 Lisp_Object Qfile_modes; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
230 Lisp_Object Qset_file_modes; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
231 Lisp_Object Qfile_newer_than_file_p; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
232 Lisp_Object Qinsert_file_contents; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
233 Lisp_Object Qwrite_region; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
234 Lisp_Object Qverify_visited_file_modtime; |
|
3560
95021dcb923b
(syms_of_fileio): Set up Qset_visited_file_modtime.
Richard M. Stallman <rms@gnu.org>
parents:
3415
diff
changeset
|
235 Lisp_Object Qset_visited_file_modtime; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
236 |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
237 DEFUN ("find-file-name-handler", Ffind_file_name_handler, Sfind_file_name_handler, 2, 2, 0, |
|
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
238 "Return FILENAME's handler function for OPERATION, if it has one.\n\ |
|
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
239 Otherwise, return nil.\n\ |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
240 A file name is handled if one of the regular expressions in\n\ |
|
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
241 `file-name-handler-alist' matches it.\n\n\ |
|
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
242 If OPERATION equals `inhibit-file-name-operation', then we ignore\n\ |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
243 any handlers that are members of `inhibit-file-name-handlers',\n\ |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
244 but we still do run any other handlers. This lets handlers\n\ |
|
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
245 use the standard functions without calling themselves recursively.") |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
246 (filename, operation) |
|
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
247 Lisp_Object filename, operation; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
248 { |
|
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
249 /* This function must not munge the match data. */ |
|
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
250 Lisp_Object chain, inhibited_handlers; |
|
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
251 |
|
2895
1ed91566882a
* fileio.c (Ffind_file_name_handler): Check that FILENAME is a
Jim Blandy <jimb@redhat.com>
parents:
2741
diff
changeset
|
252 CHECK_STRING (filename, 0); |
|
1ed91566882a
* fileio.c (Ffind_file_name_handler): Check that FILENAME is a
Jim Blandy <jimb@redhat.com>
parents:
2741
diff
changeset
|
253 |
|
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
254 if (EQ (operation, Vinhibit_file_name_operation)) |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
255 inhibited_handlers = Vinhibit_file_name_handlers; |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
256 else |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
257 inhibited_handlers = Qnil; |
|
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
258 |
|
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
259 for (chain = Vfile_name_handler_alist; CONSP (chain); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
260 chain = XCONS (chain)->cdr) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
261 { |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
262 Lisp_Object elt; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
263 elt = XCONS (chain)->car; |
|
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
264 if (CONSP (elt)) |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
265 { |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
266 Lisp_Object string; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
267 string = XCONS (elt)->car; |
|
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
268 if (STRINGP (string) && fast_string_match (string, filename) >= 0) |
|
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
269 { |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
270 Lisp_Object handler, tem; |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
271 |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
272 handler = XCONS (elt)->cdr; |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
273 tem = Fmemq (handler, inhibited_handlers); |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
274 if (NILP (tem)) |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
275 return handler; |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
276 } |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
277 } |
|
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
278 |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
279 QUIT; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
280 } |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
281 return Qnil; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
282 } |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
283 |
| 230 | 284 DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory, |
| 285 1, 1, 0, | |
| 286 "Return the directory component in file name NAME.\n\ | |
| 287 Return nil if NAME does not include a directory.\n\ | |
| 288 Otherwise return a directory spec.\n\ | |
| 289 Given a Unix syntax file name, returns a string ending in slash;\n\ | |
| 290 on VMS, perhaps instead a string ending in `:', `]' or `>'.") | |
| 291 (file) | |
| 292 Lisp_Object file; | |
| 293 { | |
| 294 register unsigned char *beg; | |
| 295 register unsigned char *p; | |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
296 Lisp_Object handler; |
| 230 | 297 |
| 298 CHECK_STRING (file, 0); | |
| 299 | |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
300 /* If the file name has special constructs in it, |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
301 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
302 handler = Ffind_file_name_handler (file, Qfile_name_directory); |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
303 if (!NILP (handler)) |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
304 return call2 (handler, Qfile_name_directory, file); |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
305 |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
306 #ifdef FILE_SYSTEM_CASE |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
307 file = FILE_SYSTEM_CASE (file); |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
308 #endif |
| 230 | 309 beg = XSTRING (file)->data; |
| 310 p = beg + XSTRING (file)->size; | |
| 311 | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
312 while (p != beg && !IS_ANY_SEP (p[-1]) |
| 230 | 313 #ifdef VMS |
| 314 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>' | |
| 315 #endif /* VMS */ | |
| 316 ) p--; | |
| 317 | |
| 318 if (p == beg) | |
| 319 return Qnil; | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
320 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
321 /* Expansion of "c:" to drive and default directory. */ |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
322 /* (NT does the right thing.) */ |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
323 if (p == beg + 2 && beg[1] == ':') |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
324 { |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
325 int drive = (*beg) - 'a'; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
326 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */ |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
327 unsigned char *res = alloca (MAXPATHLEN + 5); |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
328 unsigned char *res1; |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
329 #ifdef WINDOWSNT |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
330 res1 = res; |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
331 /* The NT version places the drive letter at the beginning already. */ |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
332 #else /* not WINDOWSNT */ |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
333 /* On MSDOG we must put the drive letter in by hand. */ |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
334 res1 = res + 2; |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
335 #endif /* not WINDOWSNT */ |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
336 if (getdefdir (drive + 1, res)) |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
337 { |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
338 #ifdef MSDOS |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
339 res[0] = drive + 'a'; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
340 res[1] = ':'; |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
341 #endif /* MSDOS */ |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
342 if (IS_DIRECTORY_SEP (res[strlen (res) - 1])) |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
343 strcat (res, "/"); |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
344 beg = res; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
345 p = beg + strlen (beg); |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
346 } |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
347 } |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
348 #endif /* DOS_NT */ |
| 230 | 349 return make_string (beg, p - beg); |
| 350 } | |
| 351 | |
| 352 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory, Sfile_name_nondirectory, | |
| 353 1, 1, 0, | |
| 354 "Return file name NAME sans its directory.\n\ | |
| 355 For example, in a Unix-syntax file name,\n\ | |
| 356 this is everything after the last slash,\n\ | |
| 357 or the entire name if it contains no slash.") | |
| 358 (file) | |
| 359 Lisp_Object file; | |
| 360 { | |
| 361 register unsigned char *beg, *p, *end; | |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
362 Lisp_Object handler; |
| 230 | 363 |
| 364 CHECK_STRING (file, 0); | |
| 365 | |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
366 /* If the file name has special constructs in it, |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
367 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
368 handler = Ffind_file_name_handler (file, Qfile_name_nondirectory); |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
369 if (!NILP (handler)) |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
370 return call2 (handler, Qfile_name_nondirectory, file); |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
371 |
| 230 | 372 beg = XSTRING (file)->data; |
| 373 end = p = beg + XSTRING (file)->size; | |
| 374 | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
375 while (p != beg && !IS_ANY_SEP (p[-1]) |
| 230 | 376 #ifdef VMS |
| 377 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>' | |
| 378 #endif /* VMS */ | |
| 379 ) p--; | |
| 380 | |
| 381 return make_string (p, end - p); | |
| 382 } | |
|
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
383 |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
384 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory, Sunhandled_file_name_directory, 1, 1, 0, |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
385 "Return a directly usable directory name somehow associated with FILENAME.\n\ |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
386 A `directly usable' directory name is one that may be used without the\n\ |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
387 intervention of any file handler.\n\ |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
388 If FILENAME is a directly usable file itself, return\n\ |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
389 (file-name-directory FILENAME).\n\ |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
390 The `call-process' and `start-process' functions use this function to\n\ |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
391 get a current directory to run processes in.") |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
392 (filename) |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
393 Lisp_Object filename; |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
394 { |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
395 Lisp_Object handler; |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
396 |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
397 /* If the file name has special constructs in it, |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
398 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
399 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory); |
|
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
400 if (!NILP (handler)) |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
401 return call2 (handler, Qunhandled_file_name_directory, filename); |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
402 |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
403 return Ffile_name_directory (filename); |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
404 } |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
405 |
| 230 | 406 |
| 407 char * | |
| 408 file_name_as_directory (out, in) | |
| 409 char *out, *in; | |
| 410 { | |
| 411 int size = strlen (in) - 1; | |
| 412 | |
| 413 strcpy (out, in); | |
| 414 | |
| 415 #ifdef VMS | |
| 416 /* Is it already a directory string? */ | |
| 417 if (in[size] == ':' || in[size] == ']' || in[size] == '>') | |
| 418 return out; | |
| 419 /* Is it a VMS directory file name? If so, hack VMS syntax. */ | |
| 420 else if (! index (in, '/') | |
| 421 && ((size > 3 && ! strcmp (&in[size - 3], ".DIR")) | |
| 422 || (size > 3 && ! strcmp (&in[size - 3], ".dir")) | |
| 423 || (size > 5 && (! strncmp (&in[size - 5], ".DIR", 4) | |
| 424 || ! strncmp (&in[size - 5], ".dir", 4)) | |
| 425 && (in[size - 1] == '.' || in[size - 1] == ';') | |
| 426 && in[size] == '1'))) | |
| 427 { | |
| 428 register char *p, *dot; | |
| 429 char brack; | |
| 430 | |
| 431 /* x.dir -> [.x] | |
| 432 dir:x.dir --> dir:[x] | |
| 433 dir:[x]y.dir --> dir:[x.y] */ | |
| 434 p = in + size; | |
| 435 while (p != in && *p != ':' && *p != '>' && *p != ']') p--; | |
| 436 if (p != in) | |
| 437 { | |
| 438 strncpy (out, in, p - in); | |
| 439 out[p - in] = '\0'; | |
| 440 if (*p == ':') | |
| 441 { | |
| 442 brack = ']'; | |
| 443 strcat (out, ":["); | |
| 444 } | |
| 445 else | |
| 446 { | |
| 447 brack = *p; | |
| 448 strcat (out, "."); | |
| 449 } | |
| 450 p++; | |
| 451 } | |
| 452 else | |
| 453 { | |
| 454 brack = ']'; | |
| 455 strcpy (out, "[."); | |
| 456 } | |
| 372 | 457 dot = index (p, '.'); |
| 458 if (dot) | |
| 230 | 459 { |
| 460 /* blindly remove any extension */ | |
| 461 size = strlen (out) + (dot - p); | |
| 462 strncat (out, p, dot - p); | |
| 463 } | |
| 464 else | |
| 465 { | |
| 466 strcat (out, p); | |
| 467 size = strlen (out); | |
| 468 } | |
| 469 out[size++] = brack; | |
| 470 out[size] = '\0'; | |
| 471 } | |
| 472 #else /* not VMS */ | |
| 473 /* For Unix syntax, Append a slash if necessary */ | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
474 if (!IS_ANY_SEP (out[size])) |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
475 { |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
476 out[size + 1] = DIRECTORY_SEP; |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
477 out[size + 2] = '\0'; |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
478 } |
| 230 | 479 #endif /* not VMS */ |
| 480 return out; | |
| 481 } | |
| 482 | |
| 483 DEFUN ("file-name-as-directory", Ffile_name_as_directory, | |
| 484 Sfile_name_as_directory, 1, 1, 0, | |
| 485 "Return a string representing file FILENAME interpreted as a directory.\n\ | |
| 486 This operation exists because a directory is also a file, but its name as\n\ | |
| 487 a directory is different from its name as a file.\n\ | |
| 488 The result can be used as the value of `default-directory'\n\ | |
| 489 or passed as second argument to `expand-file-name'.\n\ | |
| 490 For a Unix-syntax file name, just appends a slash.\n\ | |
| 491 On VMS, converts \"[X]FOO.DIR\" to \"[X.FOO]\", etc.") | |
| 492 (file) | |
| 493 Lisp_Object file; | |
| 494 { | |
| 495 char *buf; | |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
496 Lisp_Object handler; |
| 230 | 497 |
| 498 CHECK_STRING (file, 0); | |
| 485 | 499 if (NILP (file)) |
| 230 | 500 return Qnil; |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
501 |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
502 /* If the file name has special constructs in it, |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
503 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
504 handler = Ffind_file_name_handler (file, Qfile_name_as_directory); |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
505 if (!NILP (handler)) |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
506 return call2 (handler, Qfile_name_as_directory, file); |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
507 |
| 230 | 508 buf = (char *) alloca (XSTRING (file)->size + 10); |
| 509 return build_string (file_name_as_directory (buf, XSTRING (file)->data)); | |
| 510 } | |
| 511 | |
| 512 /* | |
| 513 * Convert from directory name to filename. | |
| 514 * On VMS: | |
| 515 * xyzzy:[mukesh.emacs] => xyzzy:[mukesh]emacs.dir.1 | |
| 516 * xyzzy:[mukesh] => xyzzy:[000000]mukesh.dir.1 | |
| 517 * On UNIX, it's simple: just make sure there is a terminating / | |
| 518 | |
| 519 * Value is nonzero if the string output is different from the input. | |
| 520 */ | |
| 521 | |
| 522 directory_file_name (src, dst) | |
| 523 char *src, *dst; | |
| 524 { | |
| 525 long slen; | |
| 526 #ifdef VMS | |
| 527 long rlen; | |
| 528 char * ptr, * rptr; | |
| 529 char bracket; | |
| 530 struct FAB fab = cc$rms_fab; | |
| 531 struct NAM nam = cc$rms_nam; | |
| 532 char esa[NAM$C_MAXRSS]; | |
| 533 #endif /* VMS */ | |
| 534 | |
| 535 slen = strlen (src); | |
| 536 #ifdef VMS | |
| 537 if (! index (src, '/') | |
| 538 && (src[slen - 1] == ']' | |
| 539 || src[slen - 1] == ':' | |
| 540 || src[slen - 1] == '>')) | |
| 541 { | |
| 542 /* VMS style - convert [x.y.z] to [x.y]z, [x] to [000000]x */ | |
| 543 fab.fab$l_fna = src; | |
| 544 fab.fab$b_fns = slen; | |
| 545 fab.fab$l_nam = &nam; | |
| 546 fab.fab$l_fop = FAB$M_NAM; | |
| 547 | |
| 548 nam.nam$l_esa = esa; | |
| 549 nam.nam$b_ess = sizeof esa; | |
| 550 nam.nam$b_nop |= NAM$M_SYNCHK; | |
| 551 | |
| 552 /* We call SYS$PARSE to handle such things as [--] for us. */ | |
| 553 if (SYS$PARSE(&fab, 0, 0) == RMS$_NORMAL) | |
| 554 { | |
| 555 slen = nam.nam$b_esl; | |
| 556 if (esa[slen - 1] == ';' && esa[slen - 2] == '.') | |
| 557 slen -= 2; | |
| 558 esa[slen] = '\0'; | |
| 559 src = esa; | |
| 560 } | |
| 561 if (src[slen - 1] != ']' && src[slen - 1] != '>') | |
| 562 { | |
| 563 /* what about when we have logical_name:???? */ | |
| 564 if (src[slen - 1] == ':') | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
565 { /* Xlate logical name and see what we get */ |
| 230 | 566 ptr = strcpy (dst, src); /* upper case for getenv */ |
| 567 while (*ptr) | |
| 568 { | |
| 569 if ('a' <= *ptr && *ptr <= 'z') | |
| 570 *ptr -= 040; | |
| 571 ptr++; | |
| 572 } | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
573 dst[slen - 1] = 0; /* remove colon */ |
| 230 | 574 if (!(src = egetenv (dst))) |
| 575 return 0; | |
| 576 /* should we jump to the beginning of this procedure? | |
| 577 Good points: allows us to use logical names that xlate | |
| 578 to Unix names, | |
| 579 Bad points: can be a problem if we just translated to a device | |
| 580 name... | |
| 581 For now, I'll punt and always expect VMS names, and hope for | |
| 582 the best! */ | |
| 583 slen = strlen (src); | |
| 584 if (src[slen - 1] != ']' && src[slen - 1] != '>') | |
| 585 { /* no recursion here! */ | |
| 586 strcpy (dst, src); | |
| 587 return 0; | |
| 588 } | |
| 589 } | |
| 590 else | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
591 { /* not a directory spec */ |
| 230 | 592 strcpy (dst, src); |
| 593 return 0; | |
| 594 } | |
| 595 } | |
| 596 bracket = src[slen - 1]; | |
| 597 | |
| 598 /* If bracket is ']' or '>', bracket - 2 is the corresponding | |
| 599 opening bracket. */ | |
| 372 | 600 ptr = index (src, bracket - 2); |
| 601 if (ptr == 0) | |
| 230 | 602 { /* no opening bracket */ |
| 603 strcpy (dst, src); | |
| 604 return 0; | |
| 605 } | |
| 606 if (!(rptr = rindex (src, '.'))) | |
| 607 rptr = ptr; | |
| 608 slen = rptr - src; | |
| 609 strncpy (dst, src, slen); | |
| 610 dst[slen] = '\0'; | |
| 611 if (*rptr == '.') | |
| 612 { | |
| 613 dst[slen++] = bracket; | |
| 614 dst[slen] = '\0'; | |
| 615 } | |
| 616 else | |
| 617 { | |
| 618 /* If we have the top-level of a rooted directory (i.e. xx:[000000]), | |
| 619 then translate the device and recurse. */ | |
| 620 if (dst[slen - 1] == ':' | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
621 && dst[slen - 2] != ':' /* skip decnet nodes */ |
| 230 | 622 && strcmp(src + slen, "[000000]") == 0) |
| 623 { | |
| 624 dst[slen - 1] = '\0'; | |
| 625 if ((ptr = egetenv (dst)) | |
| 626 && (rlen = strlen (ptr) - 1) > 0 | |
| 627 && (ptr[rlen] == ']' || ptr[rlen] == '>') | |
| 628 && ptr[rlen - 1] == '.') | |
| 629 { | |
|
1358
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
630 char * buf = (char *) alloca (strlen (ptr) + 1); |
|
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
631 strcpy (buf, ptr); |
|
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
632 buf[rlen - 1] = ']'; |
|
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
633 buf[rlen] = '\0'; |
|
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
634 return directory_file_name (buf, dst); |
| 230 | 635 } |
| 636 else | |
| 637 dst[slen - 1] = ':'; | |
| 638 } | |
| 639 strcat (dst, "[000000]"); | |
| 640 slen += 8; | |
| 641 } | |
| 642 rptr++; | |
| 643 rlen = strlen (rptr) - 1; | |
| 644 strncat (dst, rptr, rlen); | |
| 645 dst[slen + rlen] = '\0'; | |
| 646 strcat (dst, ".DIR.1"); | |
| 647 return 1; | |
| 648 } | |
| 649 #endif /* VMS */ | |
| 650 /* Process as Unix format: just remove any final slash. | |
| 651 But leave "/" unchanged; do not change it to "". */ | |
| 652 strcpy (dst, src); | |
|
11667
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
653 #ifdef APOLLO |
|
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
654 /* Handle // as root for apollo's. */ |
|
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
655 if ((slen > 2 && dst[slen - 1] == '/') |
|
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
656 || (slen > 1 && dst[0] != '/' && dst[slen - 1] == '/')) |
|
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
657 dst[slen - 1] = 0; |
|
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
658 #else |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
659 if (slen > 1 |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
660 && IS_DIRECTORY_SEP (dst[slen - 1]) |
|
12369
54271828fd4e
(directory_file_name): Don't get confused by // at end on Unix-like systems.
Richard M. Stallman <rms@gnu.org>
parents:
11878
diff
changeset
|
661 #ifdef DOS_NT |
|
54271828fd4e
(directory_file_name): Don't get confused by // at end on Unix-like systems.
Richard M. Stallman <rms@gnu.org>
parents:
11878
diff
changeset
|
662 && !IS_ANY_SEP (dst[slen - 2]) |
|
54271828fd4e
(directory_file_name): Don't get confused by // at end on Unix-like systems.
Richard M. Stallman <rms@gnu.org>
parents:
11878
diff
changeset
|
663 #endif |
|
54271828fd4e
(directory_file_name): Don't get confused by // at end on Unix-like systems.
Richard M. Stallman <rms@gnu.org>
parents:
11878
diff
changeset
|
664 ) |
| 230 | 665 dst[slen - 1] = 0; |
|
11667
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
666 #endif |
| 230 | 667 return 1; |
| 668 } | |
| 669 | |
| 670 DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name, | |
| 671 1, 1, 0, | |
| 672 "Returns the file name of the directory named DIR.\n\ | |
| 673 This is the name of the file that holds the data for the directory DIR.\n\ | |
| 674 This operation exists because a directory is also a file, but its name as\n\ | |
| 675 a directory is different from its name as a file.\n\ | |
| 676 In Unix-syntax, this function just removes the final slash.\n\ | |
| 677 On VMS, given a VMS-syntax directory name such as \"[X.Y]\",\n\ | |
| 678 it returns a file name such as \"[X]Y.DIR.1\".") | |
| 679 (directory) | |
| 680 Lisp_Object directory; | |
| 681 { | |
| 682 char *buf; | |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
683 Lisp_Object handler; |
| 230 | 684 |
| 685 CHECK_STRING (directory, 0); | |
| 686 | |
| 485 | 687 if (NILP (directory)) |
| 230 | 688 return Qnil; |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
689 |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
690 /* If the file name has special constructs in it, |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
691 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
692 handler = Ffind_file_name_handler (directory, Qdirectory_file_name); |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
693 if (!NILP (handler)) |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
694 return call2 (handler, Qdirectory_file_name, directory); |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
695 |
| 230 | 696 #ifdef VMS |
| 697 /* 20 extra chars is insufficient for VMS, since we might perform a | |
| 698 logical name translation. an equivalence string can be up to 255 | |
| 699 chars long, so grab that much extra space... - sss */ | |
| 700 buf = (char *) alloca (XSTRING (directory)->size + 20 + 255); | |
| 701 #else | |
| 702 buf = (char *) alloca (XSTRING (directory)->size + 20); | |
| 703 #endif | |
| 704 directory_file_name (XSTRING (directory)->data, buf); | |
| 705 return build_string (buf); | |
| 706 } | |
| 707 | |
| 708 DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0, | |
| 709 "Generate temporary file name (string) starting with PREFIX (a string).\n\ | |
| 710 The Emacs process number forms part of the result,\n\ | |
| 711 so there is no danger of generating a name being used by another process.") | |
| 712 (prefix) | |
| 713 Lisp_Object prefix; | |
| 714 { | |
| 715 Lisp_Object val; | |
| 716 val = concat2 (prefix, build_string ("XXXXXX")); | |
| 717 mktemp (XSTRING (val)->data); | |
| 718 return val; | |
| 719 } | |
| 720 | |
| 721 DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0, | |
| 722 "Convert FILENAME to absolute, and canonicalize it.\n\ | |
| 723 Second arg DEFAULT is directory to start with if FILENAME is relative\n\ | |
| 724 (does not start with slash); if DEFAULT is nil or missing,\n\ | |
| 725 the current buffer's value of default-directory is used.\n\ | |
| 536 | 726 Path components that are `.' are removed, and \n\ |
| 727 path components followed by `..' are removed, along with the `..' itself;\n\ | |
| 728 note that these simplifications are done without checking the resulting\n\ | |
| 729 paths in the file system.\n\ | |
| 730 An initial `~/' expands to your home directory.\n\ | |
| 731 An initial `~USER/' expands to USER's home directory.\n\ | |
| 230 | 732 See also the function `substitute-in-file-name'.") |
| 733 (name, defalt) | |
| 734 Lisp_Object name, defalt; | |
| 735 { | |
| 736 unsigned char *nm; | |
| 737 | |
| 738 register unsigned char *newdir, *p, *o; | |
| 739 int tlen; | |
| 740 unsigned char *target; | |
| 741 struct passwd *pw; | |
| 742 #ifdef VMS | |
| 743 unsigned char * colon = 0; | |
| 744 unsigned char * close = 0; | |
| 745 unsigned char * slash = 0; | |
| 746 unsigned char * brack = 0; | |
| 747 int lbrack = 0, rbrack = 0; | |
| 748 int dots = 0; | |
| 749 #endif /* VMS */ | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
750 #ifdef DOS_NT |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
751 /* Demacs 1.1.2 91/10/20 Manabu Higashida */ |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
752 int drive = -1; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
753 int relpath = 0; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
754 unsigned char *tmp, *defdir; |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
755 #endif /* DOS_NT */ |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
756 Lisp_Object handler; |
| 230 | 757 |
| 758 CHECK_STRING (name, 0); | |
| 759 | |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
760 /* If the file name has special constructs in it, |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
761 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
762 handler = Ffind_file_name_handler (name, Qexpand_file_name); |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
763 if (!NILP (handler)) |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
764 return call3 (handler, Qexpand_file_name, name, defalt); |
|
10734
634120aac320
(Fexpand_file_name): Copy default-directory
Richard M. Stallman <rms@gnu.org>
parents:
10719
diff
changeset
|
765 |
|
634120aac320
(Fexpand_file_name): Copy default-directory
Richard M. Stallman <rms@gnu.org>
parents:
10719
diff
changeset
|
766 /* Use the buffer's default-directory if DEFALT is omitted. */ |
|
634120aac320
(Fexpand_file_name): Copy default-directory
Richard M. Stallman <rms@gnu.org>
parents:
10719
diff
changeset
|
767 if (NILP (defalt)) |
|
634120aac320
(Fexpand_file_name): Copy default-directory
Richard M. Stallman <rms@gnu.org>
parents:
10719
diff
changeset
|
768 defalt = current_buffer->directory; |
|
634120aac320
(Fexpand_file_name): Copy default-directory
Richard M. Stallman <rms@gnu.org>
parents:
10719
diff
changeset
|
769 CHECK_STRING (defalt, 1); |
|
634120aac320
(Fexpand_file_name): Copy default-directory
Richard M. Stallman <rms@gnu.org>
parents:
10719
diff
changeset
|
770 |
|
10719
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
771 if (!NILP (defalt)) |
|
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
772 { |
|
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
773 handler = Ffind_file_name_handler (defalt, Qexpand_file_name); |
|
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
774 if (!NILP (handler)) |
|
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
775 return call3 (handler, Qexpand_file_name, name, defalt); |
|
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
776 } |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
777 |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
778 o = XSTRING (defalt)->data; |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
779 |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
780 /* Make sure DEFALT is properly expanded. |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
781 It would be better to do this down below where we actually use |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
782 defalt. Unfortunately, calling Fexpand_file_name recursively |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
783 could invoke GC, and the strings might be relocated. This would |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
784 be annoying because we have pointers into strings lying around |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
785 that would need adjusting, and people would add new pointers to |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
786 the code and forget to adjust them, resulting in intermittent bugs. |
|
2407
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
787 Putting this call here avoids all that crud. |
|
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
788 |
|
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
789 The EQ test avoids infinite recursion. */ |
|
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
790 if (! NILP (defalt) && !EQ (defalt, name) |
|
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
791 /* This saves time in a common case. */ |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
792 && ! (XSTRING (defalt)->size >= 3 |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
793 && IS_DIRECTORY_SEP (XSTRING (defalt)->data[0]) |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
794 && IS_DEVICE_SEP (XSTRING (defalt)->data[1]))) |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
795 { |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
796 struct gcpro gcpro1; |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
797 |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
798 GCPRO1 (name); |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
799 defalt = Fexpand_file_name (defalt, Qnil); |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
800 UNGCPRO; |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
801 } |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
802 |
| 230 | 803 #ifdef VMS |
| 804 /* Filenames on VMS are always upper case. */ | |
| 805 name = Fupcase (name); | |
| 806 #endif | |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
807 #ifdef FILE_SYSTEM_CASE |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
808 name = FILE_SYSTEM_CASE (name); |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
809 #endif |
| 230 | 810 |
| 811 nm = XSTRING (name)->data; | |
| 812 | |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
813 #ifdef MSDOS |
|
8185
b5cc015a3698
(Ffile_name_directory, Ffile_name_nondirectory,
Richard M. Stallman <rms@gnu.org>
parents:
8079
diff
changeset
|
814 /* First map all backslashes to slashes. */ |
|
b5cc015a3698
(Ffile_name_directory, Ffile_name_nondirectory,
Richard M. Stallman <rms@gnu.org>
parents:
8079
diff
changeset
|
815 dostounix_filename (nm = strcpy (alloca (strlen (nm) + 1), nm)); |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
816 #endif |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
817 |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
818 #ifdef DOS_NT |
|
8185
b5cc015a3698
(Ffile_name_directory, Ffile_name_nondirectory,
Richard M. Stallman <rms@gnu.org>
parents:
8079
diff
changeset
|
819 /* Now strip drive name. */ |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
820 { |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
821 unsigned char *colon = rindex (nm, ':'); |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
822 if (colon) |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
823 if (nm == colon) |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
824 nm++; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
825 else |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
826 { |
|
11381
e5591c7b9e17
(directory_file_name) [WINDOWSNT]: Handle UNC format.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
827 drive = colon[-1]; |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
828 nm = colon + 1; |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
829 if (!IS_DIRECTORY_SEP (*nm)) |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
830 { |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
831 defdir = alloca (MAXPATHLEN + 1); |
| 11392 | 832 relpath = getdefdir (tolower (drive) - 'a' + 1, defdir); |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
833 } |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
834 } |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
835 } |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
836 #endif /* DOS_NT */ |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
837 |
|
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
838 /* Handle // and /~ in middle of file name |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
839 by discarding everything through the first / of that sequence. */ |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
840 p = nm; |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
841 while (*p) |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
842 { |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
843 /* Since we know the path is absolute, we can assume that each |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
844 element starts with a "/". */ |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
845 |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
846 /* "//" anywhere isn't necessarily hairy; we just start afresh |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
847 with the second slash. */ |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
848 if (IS_DIRECTORY_SEP (p[0]) && IS_DIRECTORY_SEP (p[1]) |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
849 #if defined (APOLLO) || defined (WINDOWSNT) |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
850 /* // at start of filename is meaningful on Apollo |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
851 and WindowsNT systems */ |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
852 && nm != p |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
853 #endif /* APOLLO || WINDOWSNT */ |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
854 ) |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
855 nm = p + 1; |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
856 |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
857 /* "~" is hairy as the start of any path element. */ |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
858 if (IS_DIRECTORY_SEP (p[0]) && p[1] == '~') |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
859 nm = p + 1; |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
860 |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
861 p++; |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
862 } |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
863 |
| 230 | 864 /* If nm is absolute, flush ...// and detect /./ and /../. |
| 865 If no /./ or /../ we can return right away. */ | |
| 866 if ( | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
867 IS_DIRECTORY_SEP (nm[0]) |
| 230 | 868 #ifdef VMS |
| 869 || index (nm, ':') | |
| 870 #endif /* VMS */ | |
| 871 ) | |
| 872 { | |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
873 /* If it turns out that the filename we want to return is just a |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
874 suffix of FILENAME, we don't need to go through and edit |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
875 things; we just need to construct a new string using data |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
876 starting at the middle of FILENAME. If we set lose to a |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
877 non-zero value, that means we've discovered that we can't do |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
878 that cool trick. */ |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
879 int lose = 0; |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
880 |
| 230 | 881 p = nm; |
| 882 while (*p) | |
| 883 { | |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
884 /* Since we know the path is absolute, we can assume that each |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
885 element starts with a "/". */ |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
886 |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
887 /* "." and ".." are hairy. */ |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
888 if (IS_DIRECTORY_SEP (p[0]) |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
889 && p[1] == '.' |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
890 && (IS_DIRECTORY_SEP (p[2]) |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
891 || p[2] == 0 |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
892 || (p[2] == '.' && (IS_DIRECTORY_SEP (p[3]) |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
893 || p[3] == 0)))) |
| 230 | 894 lose = 1; |
| 895 #ifdef VMS | |
| 896 if (p[0] == '\\') | |
| 897 lose = 1; | |
| 898 if (p[0] == '/') { | |
| 899 /* if dev:[dir]/, move nm to / */ | |
| 900 if (!slash && p > nm && (brack || colon)) { | |
| 901 nm = (brack ? brack + 1 : colon + 1); | |
| 902 lbrack = rbrack = 0; | |
| 903 brack = 0; | |
| 904 colon = 0; | |
| 905 } | |
| 906 slash = p; | |
| 907 } | |
| 908 if (p[0] == '-') | |
| 909 #ifndef VMS4_4 | |
| 910 /* VMS pre V4.4,convert '-'s in filenames. */ | |
| 911 if (lbrack == rbrack) | |
| 912 { | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
913 if (dots < 2) /* this is to allow negative version numbers */ |
| 230 | 914 p[0] = '_'; |
| 915 } | |
| 916 else | |
| 917 #endif /* VMS4_4 */ | |
| 918 if (lbrack > rbrack && | |
| 919 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') && | |
| 920 (p[1] == '.' || p[1] == ']' || p[1] == '>'))) | |
| 921 lose = 1; | |
| 922 #ifndef VMS4_4 | |
| 923 else | |
| 924 p[0] = '_'; | |
| 925 #endif /* VMS4_4 */ | |
| 926 /* count open brackets, reset close bracket pointer */ | |
| 927 if (p[0] == '[' || p[0] == '<') | |
| 928 lbrack++, brack = 0; | |
| 929 /* count close brackets, set close bracket pointer */ | |
| 930 if (p[0] == ']' || p[0] == '>') | |
| 931 rbrack++, brack = p; | |
| 932 /* detect ][ or >< */ | |
| 933 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<')) | |
| 934 lose = 1; | |
| 935 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~') | |
| 936 nm = p + 1, lose = 1; | |
| 937 if (p[0] == ':' && (colon || slash)) | |
| 938 /* if dev1:[dir]dev2:, move nm to dev2: */ | |
| 939 if (brack) | |
| 940 { | |
| 941 nm = brack + 1; | |
| 942 brack = 0; | |
| 943 } | |
| 944 /* if /pathname/dev:, move nm to dev: */ | |
| 945 else if (slash) | |
| 946 nm = slash + 1; | |
| 947 /* if node::dev:, move colon following dev */ | |
| 948 else if (colon && colon[-1] == ':') | |
| 949 colon = p; | |
| 950 /* if dev1:dev2:, move nm to dev2: */ | |
| 951 else if (colon && colon[-1] != ':') | |
| 952 { | |
| 953 nm = colon + 1; | |
| 954 colon = 0; | |
| 955 } | |
| 956 if (p[0] == ':' && !colon) | |
| 957 { | |
| 958 if (p[1] == ':') | |
| 959 p++; | |
| 960 colon = p; | |
| 961 } | |
| 962 if (lbrack == rbrack) | |
| 963 if (p[0] == ';') | |
| 964 dots = 2; | |
| 965 else if (p[0] == '.') | |
| 966 dots++; | |
| 967 #endif /* VMS */ | |
| 968 p++; | |
| 969 } | |
| 970 if (!lose) | |
| 971 { | |
| 972 #ifdef VMS | |
| 973 if (index (nm, '/')) | |
| 974 return build_string (sys_translate_unix (nm)); | |
| 975 #endif /* VMS */ | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
976 #ifndef DOS_NT |
| 230 | 977 if (nm == XSTRING (name)->data) |
| 978 return name; | |
| 979 return build_string (nm); | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
980 #endif /* not DOS_NT */ |
| 230 | 981 } |
| 982 } | |
| 983 | |
| 984 /* Now determine directory to start with and put it in newdir */ | |
| 985 | |
| 986 newdir = 0; | |
| 987 | |
| 988 if (nm[0] == '~') /* prefix ~ */ | |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
989 { |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
990 if (IS_DIRECTORY_SEP (nm[1]) |
| 230 | 991 #ifdef VMS |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
992 || nm[1] == ':' |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
993 #endif /* VMS */ |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
994 || nm[1] == 0) /* ~ by itself */ |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
995 { |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
996 if (!(newdir = (unsigned char *) egetenv ("HOME"))) |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
997 newdir = (unsigned char *) ""; |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
998 #ifdef DOS_NT |
|
11381
e5591c7b9e17
(directory_file_name) [WINDOWSNT]: Handle UNC format.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
999 /* Problem when expanding "~\" if HOME is not on current drive. |
|
e5591c7b9e17
(directory_file_name) [WINDOWSNT]: Handle UNC format.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
1000 Ulrich Leodolter, Wed Jan 11 10:20:35 1995 */ |
|
e5591c7b9e17
(directory_file_name) [WINDOWSNT]: Handle UNC format.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
1001 if (newdir[1] == ':') |
|
e5591c7b9e17
(directory_file_name) [WINDOWSNT]: Handle UNC format.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
1002 drive = newdir[0]; |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1003 dostounix_filename (newdir); |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1004 #endif |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1005 nm++; |
| 230 | 1006 #ifdef VMS |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1007 nm++; /* Don't leave the slash in nm. */ |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1008 #endif /* VMS */ |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1009 } |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1010 else /* ~user/filename */ |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1011 { |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1012 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p) |
| 230 | 1013 #ifdef VMS |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1014 && *p != ':' |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1015 #endif /* VMS */ |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1016 ); p++); |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1017 o = (unsigned char *) alloca (p - nm + 1); |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1018 bcopy ((char *) nm, o, p - nm); |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1019 o [p - nm] = 0; |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1020 |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1021 #ifdef WINDOWSNT |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1022 newdir = (unsigned char *) egetenv ("HOME"); |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1023 dostounix_filename (newdir); |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1024 #else /* not WINDOWSNT */ |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1025 pw = (struct passwd *) getpwnam (o + 1); |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1026 if (pw) |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1027 { |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1028 newdir = (unsigned char *) pw -> pw_dir; |
| 230 | 1029 #ifdef VMS |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1030 nm = p + 1; /* skip the terminator */ |
| 230 | 1031 #else |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1032 nm = p; |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1033 #endif /* VMS */ |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1034 } |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1035 #endif /* not WINDOWSNT */ |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1036 |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1037 /* If we don't find a user of that name, leave the name |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1038 unchanged; don't move nm forward to p. */ |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1039 } |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1040 } |
| 230 | 1041 |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1042 if (!IS_ANY_SEP (nm[0]) |
| 230 | 1043 #ifdef VMS |
| 1044 && !index (nm, ':') | |
| 1045 #endif /* not VMS */ | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1046 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1047 && drive == -1 |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1048 #endif /* DOS_NT */ |
| 230 | 1049 && !newdir) |
| 1050 { | |
| 1051 newdir = XSTRING (defalt)->data; | |
| 1052 } | |
| 1053 | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1054 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1055 if (newdir == 0 && relpath) |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1056 newdir = defdir; |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1057 #endif /* DOS_NT */ |
| 372 | 1058 if (newdir != 0) |
| 1059 { | |
| 1060 /* Get rid of any slash at the end of newdir. */ | |
| 1061 int length = strlen (newdir); | |
|
2607
fcf578723758
(Fexpand_file_name): Undo last change--too risky for now.
Richard M. Stallman <rms@gnu.org>
parents:
2591
diff
changeset
|
1062 /* Adding `length > 1 &&' makes ~ expand into / when homedir |
|
fcf578723758
(Fexpand_file_name): Undo last change--too risky for now.
Richard M. Stallman <rms@gnu.org>
parents:
2591
diff
changeset
|
1063 is the root dir. People disagree about whether that is right. |
|
fcf578723758
(Fexpand_file_name): Undo last change--too risky for now.
Richard M. Stallman <rms@gnu.org>
parents:
2591
diff
changeset
|
1064 Anyway, we can't take the risk of this change now. */ |
|
11381
e5591c7b9e17
(directory_file_name) [WINDOWSNT]: Handle UNC format.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
1065 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1066 if (newdir[1] != ':' && length > 1) |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1067 #endif |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1068 if (IS_DIRECTORY_SEP (newdir[length - 1])) |
| 372 | 1069 { |
| 1070 unsigned char *temp = (unsigned char *) alloca (length); | |
| 1071 bcopy (newdir, temp, length - 1); | |
| 1072 temp[length - 1] = 0; | |
| 1073 newdir = temp; | |
| 1074 } | |
| 1075 tlen = length + 1; | |
| 1076 } | |
| 1077 else | |
| 1078 tlen = 0; | |
| 230 | 1079 |
| 372 | 1080 /* Now concatenate the directory and name to new space in the stack frame */ |
| 1081 tlen += strlen (nm) + 1; | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1082 #ifdef DOS_NT |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1083 /* Add reserved space for drive name. (The Microsoft x86 compiler |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1084 produces incorrect code if the following two lines are combined.) */ |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1085 target = (unsigned char *) alloca (tlen + 2); |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1086 target += 2; |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1087 #else /* not DOS_NT */ |
| 230 | 1088 target = (unsigned char *) alloca (tlen); |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1089 #endif /* not DOS_NT */ |
| 230 | 1090 *target = 0; |
| 1091 | |
| 1092 if (newdir) | |
| 1093 { | |
| 1094 #ifndef VMS | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1095 if (nm[0] == 0 || IS_DIRECTORY_SEP (nm[0])) |
| 230 | 1096 strcpy (target, newdir); |
| 1097 else | |
| 1098 #endif | |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1099 file_name_as_directory (target, newdir); |
| 230 | 1100 } |
| 1101 | |
| 1102 strcat (target, nm); | |
| 1103 #ifdef VMS | |
| 1104 if (index (target, '/')) | |
| 1105 strcpy (target, sys_translate_unix (target)); | |
| 1106 #endif /* VMS */ | |
| 1107 | |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1108 /* Now canonicalize by removing /. and /foo/.. if they appear. */ |
| 230 | 1109 |
| 1110 p = target; | |
| 1111 o = target; | |
| 1112 | |
| 1113 while (*p) | |
| 1114 { | |
| 1115 #ifdef VMS | |
| 1116 if (*p != ']' && *p != '>' && *p != '-') | |
| 1117 { | |
| 1118 if (*p == '\\') | |
| 1119 p++; | |
| 1120 *o++ = *p++; | |
| 1121 } | |
| 1122 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2) | |
| 1123 /* brackets are offset from each other by 2 */ | |
| 1124 { | |
| 1125 p += 2; | |
| 1126 if (*p != '.' && *p != '-' && o[-1] != '.') | |
| 1127 /* convert [foo][bar] to [bar] */ | |
| 1128 while (o[-1] != '[' && o[-1] != '<') | |
| 1129 o--; | |
| 1130 else if (*p == '-' && *o != '.') | |
| 1131 *--p = '.'; | |
| 1132 } | |
| 1133 else if (p[0] == '-' && o[-1] == '.' && | |
| 1134 (p[1] == '.' || p[1] == ']' || p[1] == '>')) | |
| 1135 /* flush .foo.- ; leave - if stopped by '[' or '<' */ | |
| 1136 { | |
| 1137 do | |
| 1138 o--; | |
| 1139 while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<'); | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1140 if (p[1] == '.') /* foo.-.bar ==> bar. */ |
| 230 | 1141 p += 2; |
| 1142 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */ | |
| 1143 p++, o--; | |
| 1144 /* else [foo.-] ==> [-] */ | |
| 1145 } | |
| 1146 else | |
| 1147 { | |
| 1148 #ifndef VMS4_4 | |
| 1149 if (*p == '-' && | |
| 1150 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' && | |
| 1151 p[1] != ']' && p[1] != '>' && p[1] != '.') | |
| 1152 *p = '_'; | |
| 1153 #endif /* VMS4_4 */ | |
| 1154 *o++ = *p++; | |
| 1155 } | |
| 1156 #else /* not VMS */ | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1157 if (!IS_DIRECTORY_SEP (*p)) |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1158 { |
| 230 | 1159 *o++ = *p++; |
| 1160 } | |
|
11426
6502c07121b7
(Fexpand_file_name): Use IS_DIRECTORY_SEP instead of
Karl Heuer <kwzh@gnu.org>
parents:
11392
diff
changeset
|
1161 else if (IS_DIRECTORY_SEP (p[0]) && IS_DIRECTORY_SEP (p[1]) |
|
6502c07121b7
(Fexpand_file_name): Use IS_DIRECTORY_SEP instead of
Karl Heuer <kwzh@gnu.org>
parents:
11392
diff
changeset
|
1162 #if defined (APOLLO) || defined (WINDOWSNT) |
|
6502c07121b7
(Fexpand_file_name): Use IS_DIRECTORY_SEP instead of
Karl Heuer <kwzh@gnu.org>
parents:
11392
diff
changeset
|
1163 /* // at start of filename is meaningful in Apollo |
|
6502c07121b7
(Fexpand_file_name): Use IS_DIRECTORY_SEP instead of
Karl Heuer <kwzh@gnu.org>
parents:
11392
diff
changeset
|
1164 and WindowsNT systems */ |
| 230 | 1165 && o != target |
| 1166 #endif /* APOLLO */ | |
| 1167 ) | |
| 1168 { | |
| 1169 o = target; | |
| 1170 p++; | |
| 1171 } | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1172 else if (IS_DIRECTORY_SEP (p[0]) |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1173 && p[1] == '.' |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1174 && (IS_DIRECTORY_SEP (p[2]) |
|
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1175 || p[2] == 0)) |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1176 { |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1177 /* If "/." is the entire filename, keep the "/". Otherwise, |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1178 just delete the whole "/.". */ |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1179 if (o == target && p[2] == '\0') |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1180 *o++ = *p; |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1181 p += 2; |
|
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1182 } |
|
11426
6502c07121b7
(Fexpand_file_name): Use IS_DIRECTORY_SEP instead of
Karl Heuer <kwzh@gnu.org>
parents:
11392
diff
changeset
|
1183 else if (IS_DIRECTORY_SEP (p[0]) && p[1] == '.' && p[2] == '.' |
| 230 | 1184 /* `/../' is the "superroot" on certain file systems. */ |
| 1185 && o != target | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1186 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0)) |
| 230 | 1187 { |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1188 while (o != target && (--o) && !IS_DIRECTORY_SEP (*o)) |
| 230 | 1189 ; |
|
11426
6502c07121b7
(Fexpand_file_name): Use IS_DIRECTORY_SEP instead of
Karl Heuer <kwzh@gnu.org>
parents:
11392
diff
changeset
|
1190 #if defined (APOLLO) || defined (WINDOWSNT) |
|
6502c07121b7
(Fexpand_file_name): Use IS_DIRECTORY_SEP instead of
Karl Heuer <kwzh@gnu.org>
parents:
11392
diff
changeset
|
1191 if (o == target + 1 |
|
6502c07121b7
(Fexpand_file_name): Use IS_DIRECTORY_SEP instead of
Karl Heuer <kwzh@gnu.org>
parents:
11392
diff
changeset
|
1192 && IS_DIRECTORY_SEP (o[-1]) && IS_DIRECTORY_SEP (o[0])) |
| 230 | 1193 ++o; |
| 1194 else | |
|
11426
6502c07121b7
(Fexpand_file_name): Use IS_DIRECTORY_SEP instead of
Karl Heuer <kwzh@gnu.org>
parents:
11392
diff
changeset
|
1195 #endif /* APOLLO || WINDOWSNT */ |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1196 if (o == target && IS_ANY_SEP (*o)) |
| 230 | 1197 ++o; |
| 1198 p += 3; | |
| 1199 } | |
| 1200 else | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1201 { |
| 230 | 1202 *o++ = *p++; |
| 1203 } | |
| 1204 #endif /* not VMS */ | |
| 1205 } | |
| 1206 | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1207 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1208 /* at last, set drive name. */ |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1209 if (target[1] != ':' |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1210 #ifdef WINDOWSNT |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1211 /* Allow network paths that look like "\\foo" */ |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1212 && !(IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1])) |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1213 #endif /* WINDOWSNT */ |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1214 ) |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1215 { |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1216 target -= 2; |
|
11381
e5591c7b9e17
(directory_file_name) [WINDOWSNT]: Handle UNC format.
Karl Heuer <kwzh@gnu.org>
parents:
11235
diff
changeset
|
1217 target[0] = (drive < 0 ? getdisk () + 'A' : drive); |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1218 target[1] = ':'; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1219 } |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1220 #endif /* DOS_NT */ |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1221 |
| 230 | 1222 return make_string (target, o - target); |
| 1223 } | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1224 |
| 230 | 1225 #if 0 |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1226 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */ |
| 732 | 1227 DEAFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0, |
| 230 | 1228 "Convert FILENAME to absolute, and canonicalize it.\n\ |
| 1229 Second arg DEFAULT is directory to start with if FILENAME is relative\n\ | |
| 1230 (does not start with slash); if DEFAULT is nil or missing,\n\ | |
| 1231 the current buffer's value of default-directory is used.\n\ | |
| 1232 Filenames containing `.' or `..' as components are simplified;\n\ | |
| 1233 initial `~/' expands to your home directory.\n\ | |
| 1234 See also the function `substitute-in-file-name'.") | |
| 1235 (name, defalt) | |
| 1236 Lisp_Object name, defalt; | |
| 1237 { | |
| 1238 unsigned char *nm; | |
| 1239 | |
| 1240 register unsigned char *newdir, *p, *o; | |
| 1241 int tlen; | |
| 1242 unsigned char *target; | |
| 1243 struct passwd *pw; | |
| 1244 int lose; | |
| 1245 #ifdef VMS | |
| 1246 unsigned char * colon = 0; | |
| 1247 unsigned char * close = 0; | |
| 1248 unsigned char * slash = 0; | |
| 1249 unsigned char * brack = 0; | |
| 1250 int lbrack = 0, rbrack = 0; | |
| 1251 int dots = 0; | |
| 1252 #endif /* VMS */ | |
| 1253 | |
| 1254 CHECK_STRING (name, 0); | |
| 1255 | |
| 1256 #ifdef VMS | |
| 1257 /* Filenames on VMS are always upper case. */ | |
| 1258 name = Fupcase (name); | |
| 1259 #endif | |
| 1260 | |
| 1261 nm = XSTRING (name)->data; | |
| 1262 | |
| 1263 /* If nm is absolute, flush ...// and detect /./ and /../. | |
| 1264 If no /./ or /../ we can return right away. */ | |
| 1265 if ( | |
| 1266 nm[0] == '/' | |
| 1267 #ifdef VMS | |
| 1268 || index (nm, ':') | |
| 1269 #endif /* VMS */ | |
| 1270 ) | |
| 1271 { | |
| 1272 p = nm; | |
| 1273 lose = 0; | |
| 1274 while (*p) | |
| 1275 { | |
| 1276 if (p[0] == '/' && p[1] == '/' | |
| 1277 #ifdef APOLLO | |
| 1278 /* // at start of filename is meaningful on Apollo system */ | |
| 1279 && nm != p | |
| 1280 #endif /* APOLLO */ | |
| 1281 ) | |
| 1282 nm = p + 1; | |
| 1283 if (p[0] == '/' && p[1] == '~') | |
| 1284 nm = p + 1, lose = 1; | |
| 1285 if (p[0] == '/' && p[1] == '.' | |
| 1286 && (p[2] == '/' || p[2] == 0 | |
| 1287 || (p[2] == '.' && (p[3] == '/' || p[3] == 0)))) | |
| 1288 lose = 1; | |
| 1289 #ifdef VMS | |
| 1290 if (p[0] == '\\') | |
| 1291 lose = 1; | |
| 1292 if (p[0] == '/') { | |
| 1293 /* if dev:[dir]/, move nm to / */ | |
| 1294 if (!slash && p > nm && (brack || colon)) { | |
| 1295 nm = (brack ? brack + 1 : colon + 1); | |
| 1296 lbrack = rbrack = 0; | |
| 1297 brack = 0; | |
| 1298 colon = 0; | |
| 1299 } | |
| 1300 slash = p; | |
| 1301 } | |
| 1302 if (p[0] == '-') | |
| 1303 #ifndef VMS4_4 | |
| 1304 /* VMS pre V4.4,convert '-'s in filenames. */ | |
| 1305 if (lbrack == rbrack) | |
| 1306 { | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1307 if (dots < 2) /* this is to allow negative version numbers */ |
| 230 | 1308 p[0] = '_'; |
| 1309 } | |
| 1310 else | |
| 1311 #endif /* VMS4_4 */ | |
| 1312 if (lbrack > rbrack && | |
| 1313 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') && | |
| 1314 (p[1] == '.' || p[1] == ']' || p[1] == '>'))) | |
| 1315 lose = 1; | |
| 1316 #ifndef VMS4_4 | |
| 1317 else | |
| 1318 p[0] = '_'; | |
| 1319 #endif /* VMS4_4 */ | |
| 1320 /* count open brackets, reset close bracket pointer */ | |
| 1321 if (p[0] == '[' || p[0] == '<') | |
| 1322 lbrack++, brack = 0; | |
| 1323 /* count close brackets, set close bracket pointer */ | |
| 1324 if (p[0] == ']' || p[0] == '>') | |
| 1325 rbrack++, brack = p; | |
| 1326 /* detect ][ or >< */ | |
| 1327 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<')) | |
| 1328 lose = 1; | |
| 1329 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~') | |
| 1330 nm = p + 1, lose = 1; | |
| 1331 if (p[0] == ':' && (colon || slash)) | |
| 1332 /* if dev1:[dir]dev2:, move nm to dev2: */ | |
| 1333 if (brack) | |
| 1334 { | |
| 1335 nm = brack + 1; | |
| 1336 brack = 0; | |
| 1337 } | |
| 1338 /* if /pathname/dev:, move nm to dev: */ | |
| 1339 else if (slash) | |
| 1340 nm = slash + 1; | |
| 1341 /* if node::dev:, move colon following dev */ | |
| 1342 else if (colon && colon[-1] == ':') | |
| 1343 colon = p; | |
| 1344 /* if dev1:dev2:, move nm to dev2: */ | |
| 1345 else if (colon && colon[-1] != ':') | |
| 1346 { | |
| 1347 nm = colon + 1; | |
| 1348 colon = 0; | |
| 1349 } | |
| 1350 if (p[0] == ':' && !colon) | |
| 1351 { | |
| 1352 if (p[1] == ':') | |
| 1353 p++; | |
| 1354 colon = p; | |
| 1355 } | |
| 1356 if (lbrack == rbrack) | |
| 1357 if (p[0] == ';') | |
| 1358 dots = 2; | |
| 1359 else if (p[0] == '.') | |
| 1360 dots++; | |
| 1361 #endif /* VMS */ | |
| 1362 p++; | |
| 1363 } | |
| 1364 if (!lose) | |
| 1365 { | |
| 1366 #ifdef VMS | |
| 1367 if (index (nm, '/')) | |
| 1368 return build_string (sys_translate_unix (nm)); | |
| 1369 #endif /* VMS */ | |
| 1370 if (nm == XSTRING (name)->data) | |
| 1371 return name; | |
| 1372 return build_string (nm); | |
| 1373 } | |
| 1374 } | |
| 1375 | |
| 1376 /* Now determine directory to start with and put it in NEWDIR */ | |
| 1377 | |
| 1378 newdir = 0; | |
| 1379 | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1380 if (nm[0] == '~') /* prefix ~ */ |
| 230 | 1381 if (nm[1] == '/' |
| 1382 #ifdef VMS | |
| 1383 || nm[1] == ':' | |
| 1384 #endif /* VMS */ | |
| 1385 || nm[1] == 0)/* ~/filename */ | |
| 1386 { | |
| 1387 if (!(newdir = (unsigned char *) egetenv ("HOME"))) | |
| 1388 newdir = (unsigned char *) ""; | |
| 1389 nm++; | |
| 1390 #ifdef VMS | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1391 nm++; /* Don't leave the slash in nm. */ |
| 230 | 1392 #endif /* VMS */ |
| 1393 } | |
| 1394 else /* ~user/filename */ | |
| 1395 { | |
| 1396 /* Get past ~ to user */ | |
| 1397 unsigned char *user = nm + 1; | |
| 1398 /* Find end of name. */ | |
| 1399 unsigned char *ptr = (unsigned char *) index (user, '/'); | |
| 1400 int len = ptr ? ptr - user : strlen (user); | |
| 1401 #ifdef VMS | |
| 1402 unsigned char *ptr1 = index (user, ':'); | |
| 1403 if (ptr1 != 0 && ptr1 - user < len) | |
| 1404 len = ptr1 - user; | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1405 #endif /* VMS */ |
| 230 | 1406 /* Copy the user name into temp storage. */ |
| 1407 o = (unsigned char *) alloca (len + 1); | |
| 1408 bcopy ((char *) user, o, len); | |
| 1409 o[len] = 0; | |
| 1410 | |
| 1411 /* Look up the user name. */ | |
| 1412 pw = (struct passwd *) getpwnam (o + 1); | |
| 1413 if (!pw) | |
| 1414 error ("\"%s\" isn't a registered user", o + 1); | |
| 1415 | |
| 1416 newdir = (unsigned char *) pw->pw_dir; | |
| 1417 | |
| 1418 /* Discard the user name from NM. */ | |
| 1419 nm += len; | |
| 1420 } | |
| 1421 | |
| 1422 if (nm[0] != '/' | |
| 1423 #ifdef VMS | |
| 1424 && !index (nm, ':') | |
| 1425 #endif /* not VMS */ | |
| 1426 && !newdir) | |
| 1427 { | |
| 485 | 1428 if (NILP (defalt)) |
| 230 | 1429 defalt = current_buffer->directory; |
| 1430 CHECK_STRING (defalt, 1); | |
| 1431 newdir = XSTRING (defalt)->data; | |
| 1432 } | |
| 1433 | |
| 1434 /* Now concatenate the directory and name to new space in the stack frame */ | |
| 1435 | |
| 1436 tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1; | |
| 1437 target = (unsigned char *) alloca (tlen); | |
| 1438 *target = 0; | |
| 1439 | |
| 1440 if (newdir) | |
| 1441 { | |
| 1442 #ifndef VMS | |
| 1443 if (nm[0] == 0 || nm[0] == '/') | |
| 1444 strcpy (target, newdir); | |
| 1445 else | |
| 1446 #endif | |
| 1447 file_name_as_directory (target, newdir); | |
| 1448 } | |
| 1449 | |
| 1450 strcat (target, nm); | |
| 1451 #ifdef VMS | |
| 1452 if (index (target, '/')) | |
| 1453 strcpy (target, sys_translate_unix (target)); | |
| 1454 #endif /* VMS */ | |
| 1455 | |
| 1456 /* Now canonicalize by removing /. and /foo/.. if they appear */ | |
| 1457 | |
| 1458 p = target; | |
| 1459 o = target; | |
| 1460 | |
| 1461 while (*p) | |
| 1462 { | |
| 1463 #ifdef VMS | |
| 1464 if (*p != ']' && *p != '>' && *p != '-') | |
| 1465 { | |
| 1466 if (*p == '\\') | |
| 1467 p++; | |
| 1468 *o++ = *p++; | |
| 1469 } | |
| 1470 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2) | |
| 1471 /* brackets are offset from each other by 2 */ | |
| 1472 { | |
| 1473 p += 2; | |
| 1474 if (*p != '.' && *p != '-' && o[-1] != '.') | |
| 1475 /* convert [foo][bar] to [bar] */ | |
| 1476 while (o[-1] != '[' && o[-1] != '<') | |
| 1477 o--; | |
| 1478 else if (*p == '-' && *o != '.') | |
| 1479 *--p = '.'; | |
| 1480 } | |
| 1481 else if (p[0] == '-' && o[-1] == '.' && | |
| 1482 (p[1] == '.' || p[1] == ']' || p[1] == '>')) | |
| 1483 /* flush .foo.- ; leave - if stopped by '[' or '<' */ | |
| 1484 { | |
| 1485 do | |
| 1486 o--; | |
| 1487 while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<'); | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1488 if (p[1] == '.') /* foo.-.bar ==> bar. */ |
| 230 | 1489 p += 2; |
| 1490 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */ | |
| 1491 p++, o--; | |
| 1492 /* else [foo.-] ==> [-] */ | |
| 1493 } | |
| 1494 else | |
| 1495 { | |
| 1496 #ifndef VMS4_4 | |
| 1497 if (*p == '-' && | |
| 1498 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' && | |
| 1499 p[1] != ']' && p[1] != '>' && p[1] != '.') | |
| 1500 *p = '_'; | |
| 1501 #endif /* VMS4_4 */ | |
| 1502 *o++ = *p++; | |
| 1503 } | |
| 1504 #else /* not VMS */ | |
| 1505 if (*p != '/') | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1506 { |
| 230 | 1507 *o++ = *p++; |
| 1508 } | |
| 1509 else if (!strncmp (p, "//", 2) | |
| 1510 #ifdef APOLLO | |
| 1511 /* // at start of filename is meaningful in Apollo system */ | |
| 1512 && o != target | |
| 1513 #endif /* APOLLO */ | |
| 1514 ) | |
| 1515 { | |
| 1516 o = target; | |
| 1517 p++; | |
| 1518 } | |
| 1519 else if (p[0] == '/' && p[1] == '.' && | |
| 1520 (p[2] == '/' || p[2] == 0)) | |
| 1521 p += 2; | |
| 1522 else if (!strncmp (p, "/..", 3) | |
| 1523 /* `/../' is the "superroot" on certain file systems. */ | |
| 1524 && o != target | |
| 1525 && (p[3] == '/' || p[3] == 0)) | |
| 1526 { | |
| 1527 while (o != target && *--o != '/') | |
| 1528 ; | |
| 1529 #ifdef APOLLO | |
| 1530 if (o == target + 1 && o[-1] == '/' && o[0] == '/') | |
| 1531 ++o; | |
| 1532 else | |
| 1533 #endif /* APOLLO */ | |
| 1534 if (o == target && *o == '/') | |
| 1535 ++o; | |
| 1536 p += 3; | |
| 1537 } | |
| 1538 else | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1539 { |
| 230 | 1540 *o++ = *p++; |
| 1541 } | |
| 1542 #endif /* not VMS */ | |
| 1543 } | |
| 1544 | |
| 1545 return make_string (target, o - target); | |
| 1546 } | |
| 1547 #endif | |
| 1548 | |
| 1549 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name, | |
| 1550 Ssubstitute_in_file_name, 1, 1, 0, | |
| 1551 "Substitute environment variables referred to in FILENAME.\n\ | |
| 1552 `$FOO' where FOO is an environment variable name means to substitute\n\ | |
| 1553 the value of that variable. The variable name should be terminated\n\ | |
| 1554 with a character not a letter, digit or underscore; otherwise, enclose\n\ | |
| 1555 the entire variable name in braces.\n\ | |
| 1556 If `/~' appears, all of FILENAME through that `/' is discarded.\n\n\ | |
| 1557 On VMS, `$' substitution is not done; this function does little and only\n\ | |
| 1558 duplicates what `expand-file-name' does.") | |
| 1559 (string) | |
| 1560 Lisp_Object string; | |
| 1561 { | |
| 1562 unsigned char *nm; | |
| 1563 | |
| 1564 register unsigned char *s, *p, *o, *x, *endp; | |
| 1565 unsigned char *target; | |
| 1566 int total = 0; | |
| 1567 int substituted = 0; | |
| 1568 unsigned char *xnm; | |
|
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
1569 Lisp_Object handler; |
| 230 | 1570 |
| 1571 CHECK_STRING (string, 0); | |
| 1572 | |
|
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
1573 /* If the file name has special constructs in it, |
|
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
1574 call the corresponding file handler. */ |
|
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
1575 handler = Ffind_file_name_handler (string, Qsubstitute_in_file_name); |
|
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
1576 if (!NILP (handler)) |
|
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
1577 return call2 (handler, Qsubstitute_in_file_name, string); |
|
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
1578 |
| 230 | 1579 nm = XSTRING (string)->data; |
|
8185
b5cc015a3698
(Ffile_name_directory, Ffile_name_nondirectory,
Richard M. Stallman <rms@gnu.org>
parents:
8079
diff
changeset
|
1580 #ifdef MSDOS |
|
b5cc015a3698
(Ffile_name_directory, Ffile_name_nondirectory,
Richard M. Stallman <rms@gnu.org>
parents:
8079
diff
changeset
|
1581 dostounix_filename (nm = strcpy (alloca (strlen (nm) + 1), nm)); |
|
b5cc015a3698
(Ffile_name_directory, Ffile_name_nondirectory,
Richard M. Stallman <rms@gnu.org>
parents:
8079
diff
changeset
|
1582 substituted = !strcmp (nm, XSTRING (string)->data); |
|
b5cc015a3698
(Ffile_name_directory, Ffile_name_nondirectory,
Richard M. Stallman <rms@gnu.org>
parents:
8079
diff
changeset
|
1583 #endif |
| 230 | 1584 endp = nm + XSTRING (string)->size; |
| 1585 | |
| 1586 /* If /~ or // appears, discard everything through first slash. */ | |
| 1587 | |
| 1588 for (p = nm; p != endp; p++) | |
| 1589 { | |
| 1590 if ((p[0] == '~' || | |
| 1591 #ifdef APOLLO | |
| 1592 /* // at start of file name is meaningful in Apollo system */ | |
| 1593 (p[0] == '/' && p - 1 != nm) | |
| 1594 #else /* not APOLLO */ | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1595 #ifdef WINDOWSNT |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1596 (IS_DIRECTORY_SEP (p[0]) && p - 1 != nm) |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1597 #else /* not WINDOWSNT */ |
| 230 | 1598 p[0] == '/' |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1599 #endif /* not WINDOWSNT */ |
| 230 | 1600 #endif /* not APOLLO */ |
| 1601 ) | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1602 && p != nm |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1603 && (0 |
| 230 | 1604 #ifdef VMS |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1605 || p[-1] == ':' || p[-1] == ']' || p[-1] == '>' |
| 230 | 1606 #endif /* VMS */ |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1607 || IS_DIRECTORY_SEP (p[-1]))) |
| 230 | 1608 { |
| 1609 nm = p; | |
| 1610 substituted = 1; | |
| 1611 } | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1612 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1613 if (p[0] && p[1] == ':') |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1614 { |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1615 nm = p; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1616 substituted = 1; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1617 } |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1618 #endif /* DOS_NT */ |
| 230 | 1619 } |
| 1620 | |
| 1621 #ifdef VMS | |
| 1622 return build_string (nm); | |
| 1623 #else | |
| 1624 | |
| 1625 /* See if any variables are substituted into the string | |
| 1626 and find the total length of their values in `total' */ | |
| 1627 | |
| 1628 for (p = nm; p != endp;) | |
| 1629 if (*p != '$') | |
| 1630 p++; | |
| 1631 else | |
| 1632 { | |
| 1633 p++; | |
| 1634 if (p == endp) | |
| 1635 goto badsubst; | |
| 1636 else if (*p == '$') | |
| 1637 { | |
| 1638 /* "$$" means a single "$" */ | |
| 1639 p++; | |
| 1640 total -= 1; | |
| 1641 substituted = 1; | |
| 1642 continue; | |
| 1643 } | |
| 1644 else if (*p == '{') | |
| 1645 { | |
| 1646 o = ++p; | |
| 1647 while (p != endp && *p != '}') p++; | |
| 1648 if (*p != '}') goto missingclose; | |
| 1649 s = p; | |
| 1650 } | |
| 1651 else | |
| 1652 { | |
| 1653 o = p; | |
| 1654 while (p != endp && (isalnum (*p) || *p == '_')) p++; | |
| 1655 s = p; | |
| 1656 } | |
| 1657 | |
| 1658 /* Copy out the variable name */ | |
| 1659 target = (unsigned char *) alloca (s - o + 1); | |
| 1660 strncpy (target, o, s - o); | |
| 1661 target[s - o] = 0; | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1662 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1663 strupr (target); /* $home == $HOME etc. */ |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1664 #endif /* DOS_NT */ |
| 230 | 1665 |
| 1666 /* Get variable value */ | |
| 1667 o = (unsigned char *) egetenv (target); | |
| 1668 if (!o) goto badvar; | |
| 1669 total += strlen (o); | |
| 1670 substituted = 1; | |
| 1671 } | |
| 1672 | |
| 1673 if (!substituted) | |
| 1674 return string; | |
| 1675 | |
| 1676 /* If substitution required, recopy the string and do it */ | |
| 1677 /* Make space in stack frame for the new copy */ | |
| 1678 xnm = (unsigned char *) alloca (XSTRING (string)->size + total + 1); | |
| 1679 x = xnm; | |
| 1680 | |
| 1681 /* Copy the rest of the name through, replacing $ constructs with values */ | |
| 1682 for (p = nm; *p;) | |
| 1683 if (*p != '$') | |
| 1684 *x++ = *p++; | |
| 1685 else | |
| 1686 { | |
| 1687 p++; | |
| 1688 if (p == endp) | |
| 1689 goto badsubst; | |
| 1690 else if (*p == '$') | |
| 1691 { | |
| 1692 *x++ = *p++; | |
| 1693 continue; | |
| 1694 } | |
| 1695 else if (*p == '{') | |
| 1696 { | |
| 1697 o = ++p; | |
| 1698 while (p != endp && *p != '}') p++; | |
| 1699 if (*p != '}') goto missingclose; | |
| 1700 s = p++; | |
| 1701 } | |
| 1702 else | |
| 1703 { | |
| 1704 o = p; | |
| 1705 while (p != endp && (isalnum (*p) || *p == '_')) p++; | |
| 1706 s = p; | |
| 1707 } | |
| 1708 | |
| 1709 /* Copy out the variable name */ | |
| 1710 target = (unsigned char *) alloca (s - o + 1); | |
| 1711 strncpy (target, o, s - o); | |
| 1712 target[s - o] = 0; | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1713 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1714 strupr (target); /* $home == $HOME etc. */ |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1715 #endif /* DOS_NT */ |
| 230 | 1716 |
| 1717 /* Get variable value */ | |
| 1718 o = (unsigned char *) egetenv (target); | |
| 1719 if (!o) | |
| 1720 goto badvar; | |
| 1721 | |
| 1722 strcpy (x, o); | |
| 1723 x += strlen (o); | |
| 1724 } | |
| 1725 | |
| 1726 *x = 0; | |
| 1727 | |
| 1728 /* If /~ or // appears, discard everything through first slash. */ | |
| 1729 | |
| 1730 for (p = xnm; p != x; p++) | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1731 if ((p[0] == '~' |
| 230 | 1732 #ifdef APOLLO |
| 1733 /* // at start of file name is meaningful in Apollo system */ | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1734 || (p[0] == '/' && p - 1 != xnm) |
| 230 | 1735 #else /* not APOLLO */ |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1736 #ifdef WINDOWSNT |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1737 || (IS_DIRECTORY_SEP (p[0]) && p - 1 != xnm) |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1738 #else /* not WINDOWSNT */ |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1739 || p[0] == '/' |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1740 #endif /* not WINDOWSNT */ |
|
9872
3f52395fcef9
(Fsubstitute_in_file_name): Add missing #endif.
Richard M. Stallman <rms@gnu.org>
parents:
9789
diff
changeset
|
1741 #endif /* not APOLLO */ |
| 230 | 1742 ) |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1743 && p != nm && IS_DIRECTORY_SEP (p[-1])) |
| 230 | 1744 xnm = p; |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1745 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1746 else if (p[0] && p[1] == ':') |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1747 xnm = p; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1748 #endif |
| 230 | 1749 |
| 1750 return make_string (xnm, x - xnm); | |
| 1751 | |
| 1752 badsubst: | |
| 1753 error ("Bad format environment-variable substitution"); | |
| 1754 missingclose: | |
| 1755 error ("Missing \"}\" in environment-variable substitution"); | |
| 1756 badvar: | |
| 1757 error ("Substituting nonexistent environment variable \"%s\"", target); | |
| 1758 | |
| 1759 /* NOTREACHED */ | |
| 1760 #endif /* not VMS */ | |
| 1761 } | |
| 1762 | |
| 853 | 1763 /* A slightly faster and more convenient way to get |
|
4451
73b91cd2c55e
(expand_and_dir_to_file): Remove final / by copying abspath.
Richard M. Stallman <rms@gnu.org>
parents:
4395
diff
changeset
|
1764 (directory-file-name (expand-file-name FOO)). */ |
| 853 | 1765 |
| 230 | 1766 Lisp_Object |
| 1767 expand_and_dir_to_file (filename, defdir) | |
| 1768 Lisp_Object filename, defdir; | |
| 1769 { | |
| 1770 register Lisp_Object abspath; | |
| 1771 | |
| 1772 abspath = Fexpand_file_name (filename, defdir); | |
| 1773 #ifdef VMS | |
| 1774 { | |
| 1775 register int c = XSTRING (abspath)->data[XSTRING (abspath)->size - 1]; | |
| 1776 if (c == ':' || c == ']' || c == '>') | |
| 1777 abspath = Fdirectory_file_name (abspath); | |
| 1778 } | |
| 1779 #else | |
| 1780 /* Remove final slash, if any (unless path is root). | |
| 1781 stat behaves differently depending! */ | |
| 1782 if (XSTRING (abspath)->size > 1 | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1783 && IS_DIRECTORY_SEP (XSTRING (abspath)->data[XSTRING (abspath)->size - 1]) |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1784 && !IS_DEVICE_SEP (XSTRING (abspath)->data[XSTRING (abspath)->size-2])) |
|
4483
6894dd27c9ec
(expand_and_dir_to_file): Use Fdirectory_file_name.
Richard M. Stallman <rms@gnu.org>
parents:
4451
diff
changeset
|
1785 /* We cannot take shortcuts; they might be wrong for magic file names. */ |
|
6894dd27c9ec
(expand_and_dir_to_file): Use Fdirectory_file_name.
Richard M. Stallman <rms@gnu.org>
parents:
4451
diff
changeset
|
1786 abspath = Fdirectory_file_name (abspath); |
| 230 | 1787 #endif |
| 1788 return abspath; | |
| 1789 } | |
| 1790 | |
|
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1791 /* Signal an error if the file ABSNAME already exists. |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1792 If INTERACTIVE is nonzero, ask the user whether to proceed, |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1793 and bypass the error if the user says to go ahead. |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1794 QUERYSTRING is a name for the action that is being considered |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1795 to alter the file. |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1796 *STATPTR is used to store the stat information if the file exists. |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1797 If the file does not exist, STATPTR->st_mode is set to 0. */ |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1798 |
|
8846
6bf0ce964319
(barf_or_query_if_file_exists): Fix declaration.
Karl Heuer <kwzh@gnu.org>
parents:
8808
diff
changeset
|
1799 void |
|
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1800 barf_or_query_if_file_exists (absname, querystring, interactive, statptr) |
| 230 | 1801 Lisp_Object absname; |
| 1802 unsigned char *querystring; | |
| 1803 int interactive; | |
|
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1804 struct stat *statptr; |
| 230 | 1805 { |
| 1806 register Lisp_Object tem; | |
| 8597 | 1807 struct stat statbuf; |
| 230 | 1808 struct gcpro gcpro1; |
| 1809 | |
| 8597 | 1810 /* stat is a good way to tell whether the file exists, |
| 1811 regardless of what access permissions it has. */ | |
| 1812 if (stat (XSTRING (absname)->data, &statbuf) >= 0) | |
| 230 | 1813 { |
| 1814 if (! interactive) | |
| 1815 Fsignal (Qfile_already_exists, | |
| 1816 Fcons (build_string ("File already exists"), | |
| 1817 Fcons (absname, Qnil))); | |
| 1818 GCPRO1 (absname); | |
| 1819 tem = do_yes_or_no_p (format1 ("File %s already exists; %s anyway? ", | |
| 1820 XSTRING (absname)->data, querystring)); | |
| 1821 UNGCPRO; | |
| 485 | 1822 if (NILP (tem)) |
| 230 | 1823 Fsignal (Qfile_already_exists, |
| 1824 Fcons (build_string ("File already exists"), | |
| 1825 Fcons (absname, Qnil))); | |
|
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1826 if (statptr) |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1827 *statptr = statbuf; |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1828 } |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1829 else |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1830 { |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1831 if (statptr) |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1832 statptr->st_mode = 0; |
| 230 | 1833 } |
| 1834 return; | |
| 1835 } | |
| 1836 | |
| 1837 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 4, | |
| 410 | 1838 "fCopy file: \nFCopy %s to file: \np\nP", |
| 230 | 1839 "Copy FILE to NEWNAME. Both args must be strings.\n\ |
| 1840 Signals a `file-already-exists' error if file NEWNAME already exists,\n\ | |
| 1841 unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.\n\ | |
| 1842 A number as third arg means request confirmation if NEWNAME already exists.\n\ | |
| 1843 This is what happens in interactive use with M-x.\n\ | |
| 410 | 1844 Fourth arg KEEP-TIME non-nil means give the new file the same\n\ |
| 1845 last-modified time as the old one. (This works on only some systems.)\n\ | |
| 1846 A prefix arg makes KEEP-TIME non-nil.") | |
| 230 | 1847 (filename, newname, ok_if_already_exists, keep_date) |
| 1848 Lisp_Object filename, newname, ok_if_already_exists, keep_date; | |
| 1849 { | |
| 1850 int ifd, ofd, n; | |
| 1851 char buf[16 * 1024]; | |
|
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1852 struct stat st, out_st; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1853 Lisp_Object handler; |
| 230 | 1854 struct gcpro gcpro1, gcpro2; |
|
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1855 int count = specpdl_ptr - specpdl; |
|
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1856 int input_file_statable_p; |
| 230 | 1857 |
| 1858 GCPRO2 (filename, newname); | |
| 1859 CHECK_STRING (filename, 0); | |
| 1860 CHECK_STRING (newname, 1); | |
| 1861 filename = Fexpand_file_name (filename, Qnil); | |
| 1862 newname = Fexpand_file_name (newname, Qnil); | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1863 |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1864 /* If the input file name has special constructs in it, |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1865 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
1866 handler = Ffind_file_name_handler (filename, Qcopy_file); |
|
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1867 /* Likewise for output file name. */ |
|
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1868 if (NILP (handler)) |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
1869 handler = Ffind_file_name_handler (newname, Qcopy_file); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1870 if (!NILP (handler)) |
|
6370
51a014b7c656
(Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo
Karl Heuer <kwzh@gnu.org>
parents:
6367
diff
changeset
|
1871 RETURN_UNGCPRO (call5 (handler, Qcopy_file, filename, newname, |
|
51a014b7c656
(Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo
Karl Heuer <kwzh@gnu.org>
parents:
6367
diff
changeset
|
1872 ok_if_already_exists, keep_date)); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1873 |
| 485 | 1874 if (NILP (ok_if_already_exists) |
|
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
1875 || INTEGERP (ok_if_already_exists)) |
| 230 | 1876 barf_or_query_if_file_exists (newname, "copy to it", |
|
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1877 INTEGERP (ok_if_already_exists), &out_st); |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1878 else if (stat (XSTRING (newname)->data, &out_st) < 0) |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1879 out_st.st_mode = 0; |
| 230 | 1880 |
| 8597 | 1881 ifd = open (XSTRING (filename)->data, O_RDONLY); |
| 230 | 1882 if (ifd < 0) |
| 1883 report_file_error ("Opening input file", Fcons (filename, Qnil)); | |
| 1884 | |
|
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1885 record_unwind_protect (close_file_unwind, make_number (ifd)); |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1886 |
|
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1887 /* We can only copy regular files and symbolic links. Other files are not |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1888 copyable by us. */ |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1889 input_file_statable_p = (fstat (ifd, &st) >= 0); |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1890 |
|
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1891 #ifndef DOS_NT |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1892 if (out_st.st_mode != 0 |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1893 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino) |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1894 { |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1895 errno = 0; |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1896 report_file_error ("Input and output files are the same", |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1897 Fcons (filename, Fcons (newname, Qnil))); |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1898 } |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1899 #endif |
|
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1900 |
|
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1901 #if defined (S_ISREG) && defined (S_ISLNK) |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1902 if (input_file_statable_p) |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1903 { |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1904 if (!(S_ISREG (st.st_mode)) && !(S_ISLNK (st.st_mode))) |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1905 { |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1906 #if defined (EISDIR) |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1907 /* Get a better looking error message. */ |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1908 errno = EISDIR; |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1909 #endif /* EISDIR */ |
|
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1910 report_file_error ("Non-regular file", Fcons (filename, Qnil)); |
|
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1911 } |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1912 } |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1913 #endif /* S_ISREG && S_ISLNK */ |
|
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1914 |
| 230 | 1915 #ifdef VMS |
| 1916 /* Create the copy file with the same record format as the input file */ | |
| 1917 ofd = sys_creat (XSTRING (newname)->data, 0666, ifd); | |
| 1918 #else | |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1919 #ifdef MSDOS |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1920 /* System's default file type was set to binary by _fmode in emacs.c. */ |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1921 ofd = creat (XSTRING (newname)->data, S_IREAD | S_IWRITE); |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1922 #else /* not MSDOS */ |
| 230 | 1923 ofd = creat (XSTRING (newname)->data, 0666); |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1924 #endif /* not MSDOS */ |
| 230 | 1925 #endif /* VMS */ |
| 1926 if (ofd < 0) | |
|
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1927 report_file_error ("Opening output file", Fcons (newname, Qnil)); |
| 230 | 1928 |
|
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1929 record_unwind_protect (close_file_unwind, make_number (ofd)); |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1930 |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1931 immediate_quit = 1; |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1932 QUIT; |
| 230 | 1933 while ((n = read (ifd, buf, sizeof buf)) > 0) |
| 1934 if (write (ofd, buf, n) != n) | |
|
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
1935 report_file_error ("I/O error", Fcons (newname, Qnil)); |
|
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1936 immediate_quit = 0; |
| 230 | 1937 |
|
7493
f4fb8b913c5d
(Fcopy_file): Close output before setting its times.
Richard M. Stallman <rms@gnu.org>
parents:
7445
diff
changeset
|
1938 /* Closing the output clobbers the file times on some systems. */ |
|
f4fb8b913c5d
(Fcopy_file): Close output before setting its times.
Richard M. Stallman <rms@gnu.org>
parents:
7445
diff
changeset
|
1939 if (close (ofd) < 0) |
|
f4fb8b913c5d
(Fcopy_file): Close output before setting its times.
Richard M. Stallman <rms@gnu.org>
parents:
7445
diff
changeset
|
1940 report_file_error ("I/O error", Fcons (newname, Qnil)); |
|
f4fb8b913c5d
(Fcopy_file): Close output before setting its times.
Richard M. Stallman <rms@gnu.org>
parents:
7445
diff
changeset
|
1941 |
|
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1942 if (input_file_statable_p) |
| 230 | 1943 { |
| 485 | 1944 if (!NILP (keep_date)) |
| 230 | 1945 { |
| 564 | 1946 EMACS_TIME atime, mtime; |
| 1947 EMACS_SET_SECS_USECS (atime, st.st_atime, 0); | |
| 1948 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0); | |
|
8883
24993c71127a
(Fcopy_file): Use set_file_times, and check for the error return.
Karl Heuer <kwzh@gnu.org>
parents:
8846
diff
changeset
|
1949 if (set_file_times (XSTRING (newname)->data, atime, mtime)) |
|
24993c71127a
(Fcopy_file): Use set_file_times, and check for the error return.
Karl Heuer <kwzh@gnu.org>
parents:
8846
diff
changeset
|
1950 report_file_error ("I/O error", Fcons (newname, Qnil)); |
| 230 | 1951 } |
| 564 | 1952 chmod (XSTRING (newname)->data, st.st_mode & 07777); |
| 230 | 1953 } |
| 1954 | |
|
7493
f4fb8b913c5d
(Fcopy_file): Close output before setting its times.
Richard M. Stallman <rms@gnu.org>
parents:
7445
diff
changeset
|
1955 close (ifd); |
|
f4fb8b913c5d
(Fcopy_file): Close output before setting its times.
Richard M. Stallman <rms@gnu.org>
parents:
7445
diff
changeset
|
1956 |
|
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1957 /* Discard the unwind protects. */ |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1958 specpdl_ptr = specpdl + count; |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1959 |
| 230 | 1960 UNGCPRO; |
| 1961 return Qnil; | |
| 1962 } | |
|
10084
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
1963 |
|
1533
b86ef0432100
(Fmake_directory_internal): Renamed from Fmake_directory.
Richard M. Stallman <rms@gnu.org>
parents:
1377
diff
changeset
|
1964 DEFUN ("make-directory-internal", Fmake_directory_internal, |
|
1536
0877009e6324
* fileio.c (Fmake_directory_internal): Remove extra paren before the
Jim Blandy <jimb@redhat.com>
parents:
1533
diff
changeset
|
1965 Smake_directory_internal, 1, 1, 0, |
| 230 | 1966 "Create a directory. One argument, a file name string.") |
| 1967 (dirname) | |
| 1968 Lisp_Object dirname; | |
| 1969 { | |
| 1970 unsigned char *dir; | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1971 Lisp_Object handler; |
| 230 | 1972 |
| 1973 CHECK_STRING (dirname, 0); | |
| 1974 dirname = Fexpand_file_name (dirname, Qnil); | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1975 |
|
8227
0e6b7eeedc3b
(Fmake_directory_internal): Use Qmake_directory_internal.
Richard M. Stallman <rms@gnu.org>
parents:
8185
diff
changeset
|
1976 handler = Ffind_file_name_handler (dirname, Qmake_directory_internal); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1977 if (!NILP (handler)) |
|
8587
792839acdc92
(Fmake_directory_internal): Pass just 2 args to handler.
Richard M. Stallman <rms@gnu.org>
parents:
8454
diff
changeset
|
1978 return call2 (handler, Qmake_directory_internal, dirname); |
|
1533
b86ef0432100
(Fmake_directory_internal): Renamed from Fmake_directory.
Richard M. Stallman <rms@gnu.org>
parents:
1377
diff
changeset
|
1979 |
| 230 | 1980 dir = XSTRING (dirname)->data; |
| 1981 | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1982 #ifdef WINDOWSNT |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1983 if (mkdir (dir) != 0) |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1984 #else |
| 230 | 1985 if (mkdir (dir, 0777) != 0) |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1986 #endif |
| 230 | 1987 report_file_error ("Creating directory", Flist (1, &dirname)); |
| 1988 | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1989 return Qnil; |
| 230 | 1990 } |
| 1991 | |
|
686
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
1992 DEFUN ("delete-directory", Fdelete_directory, Sdelete_directory, 1, 1, "FDelete directory: ", |
|
7611
f93e2ddcf8c2
(Fdelete_directory): Allow dir names as well as file names.
Richard M. Stallman <rms@gnu.org>
parents:
7595
diff
changeset
|
1993 "Delete a directory. One argument, a file name or directory name string.") |
| 230 | 1994 (dirname) |
| 1995 Lisp_Object dirname; | |
| 1996 { | |
| 1997 unsigned char *dir; | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1998 Lisp_Object handler; |
| 230 | 1999 |
| 2000 CHECK_STRING (dirname, 0); | |
|
7611
f93e2ddcf8c2
(Fdelete_directory): Allow dir names as well as file names.
Richard M. Stallman <rms@gnu.org>
parents:
7595
diff
changeset
|
2001 dirname = Fdirectory_file_name (Fexpand_file_name (dirname, Qnil)); |
| 230 | 2002 dir = XSTRING (dirname)->data; |
| 2003 | |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2004 handler = Ffind_file_name_handler (dirname, Qdelete_directory); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2005 if (!NILP (handler)) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2006 return call2 (handler, Qdelete_directory, dirname); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2007 |
| 230 | 2008 if (rmdir (dir) != 0) |
| 2009 report_file_error ("Removing directory", Flist (1, &dirname)); | |
| 2010 | |
| 2011 return Qnil; | |
| 2012 } | |
| 2013 | |
| 2014 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 1, "fDelete file: ", | |
| 2015 "Delete specified file. One argument, a file name string.\n\ | |
| 2016 If file has multiple names, it continues to exist with the other names.") | |
| 2017 (filename) | |
| 2018 Lisp_Object filename; | |
| 2019 { | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2020 Lisp_Object handler; |
| 230 | 2021 CHECK_STRING (filename, 0); |
| 2022 filename = Fexpand_file_name (filename, Qnil); | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2023 |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2024 handler = Ffind_file_name_handler (filename, Qdelete_file); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2025 if (!NILP (handler)) |
|
9170
1d95c81487a3
(Fdelete_file): Undo Sep 16 change.
Karl Heuer <kwzh@gnu.org>
parents:
9131
diff
changeset
|
2026 return call2 (handler, Qdelete_file, filename); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2027 |
| 230 | 2028 if (0 > unlink (XSTRING (filename)->data)) |
| 2029 report_file_error ("Removing old name", Flist (1, &filename)); | |
|
9170
1d95c81487a3
(Fdelete_file): Undo Sep 16 change.
Karl Heuer <kwzh@gnu.org>
parents:
9131
diff
changeset
|
2030 return Qnil; |
| 230 | 2031 } |
| 2032 | |
|
10084
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2033 static Lisp_Object |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2034 internal_delete_file_1 (ignore) |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2035 Lisp_Object ignore; |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2036 { |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2037 return Qt; |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2038 } |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2039 |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2040 /* Delete file FILENAME, returning 1 if successful and 0 if failed. */ |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2041 |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2042 int |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2043 internal_delete_file (filename) |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2044 Lisp_Object filename; |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2045 { |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2046 return NILP (internal_condition_case_1 (Fdelete_file, filename, |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2047 Qt, internal_delete_file_1)); |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2048 } |
|
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2049 |
| 230 | 2050 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3, |
| 2051 "fRename file: \nFRename %s to file: \np", | |
| 2052 "Rename FILE as NEWNAME. Both args strings.\n\ | |
| 2053 If file has names other than FILE, it continues to have those names.\n\ | |
| 2054 Signals a `file-already-exists' error if a file NEWNAME already exists\n\ | |
| 2055 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\ | |
| 2056 A number as third arg means request confirmation if NEWNAME already exists.\n\ | |
| 2057 This is what happens in interactive use with M-x.") | |
| 2058 (filename, newname, ok_if_already_exists) | |
| 2059 Lisp_Object filename, newname, ok_if_already_exists; | |
| 2060 { | |
| 2061 #ifdef NO_ARG_ARRAY | |
| 2062 Lisp_Object args[2]; | |
| 2063 #endif | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2064 Lisp_Object handler; |
| 230 | 2065 struct gcpro gcpro1, gcpro2; |
| 2066 | |
| 2067 GCPRO2 (filename, newname); | |
| 2068 CHECK_STRING (filename, 0); | |
| 2069 CHECK_STRING (newname, 1); | |
| 2070 filename = Fexpand_file_name (filename, Qnil); | |
| 2071 newname = Fexpand_file_name (newname, Qnil); | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2072 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2073 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2074 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2075 handler = Ffind_file_name_handler (filename, Qrename_file); |
|
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2076 if (NILP (handler)) |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2077 handler = Ffind_file_name_handler (newname, Qrename_file); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2078 if (!NILP (handler)) |
|
6370
51a014b7c656
(Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo
Karl Heuer <kwzh@gnu.org>
parents:
6367
diff
changeset
|
2079 RETURN_UNGCPRO (call4 (handler, Qrename_file, |
|
51a014b7c656
(Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo
Karl Heuer <kwzh@gnu.org>
parents:
6367
diff
changeset
|
2080 filename, newname, ok_if_already_exists)); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2081 |
| 485 | 2082 if (NILP (ok_if_already_exists) |
|
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
2083 || INTEGERP (ok_if_already_exists)) |
| 230 | 2084 barf_or_query_if_file_exists (newname, "rename to it", |
|
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2085 INTEGERP (ok_if_already_exists), 0); |
| 230 | 2086 #ifndef BSD4_1 |
| 2087 if (0 > rename (XSTRING (filename)->data, XSTRING (newname)->data)) | |
| 2088 #else | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2089 #ifdef WINDOWSNT |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2090 if (!MoveFile (XSTRING (filename)->data, XSTRING (newname)->data)) |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2091 #else /* not WINDOWSNT */ |
| 230 | 2092 if (0 > link (XSTRING (filename)->data, XSTRING (newname)->data) |
| 2093 || 0 > unlink (XSTRING (filename)->data)) | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2094 #endif /* not WINDOWSNT */ |
| 230 | 2095 #endif |
| 2096 { | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2097 #ifdef WINDOWSNT |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2098 /* Why two? And why doesn't MS document what MoveFile will return? */ |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2099 if (GetLastError () == ERROR_FILE_EXISTS |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2100 || GetLastError () == ERROR_ALREADY_EXISTS) |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2101 #else /* not WINDOWSNT */ |
| 230 | 2102 if (errno == EXDEV) |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2103 #endif /* not WINDOWSNT */ |
| 230 | 2104 { |
|
3963
39caef7a70c2
(Frename_file): After prompting for ok-if-already-exists, pass only nil or
Roland McGrath <roland@gnu.org>
parents:
3829
diff
changeset
|
2105 Fcopy_file (filename, newname, |
|
39caef7a70c2
(Frename_file): After prompting for ok-if-already-exists, pass only nil or
Roland McGrath <roland@gnu.org>
parents:
3829
diff
changeset
|
2106 /* We have already prompted if it was an integer, |
|
39caef7a70c2
(Frename_file): After prompting for ok-if-already-exists, pass only nil or
Roland McGrath <roland@gnu.org>
parents:
3829
diff
changeset
|
2107 so don't have copy-file prompt again. */ |
|
39caef7a70c2
(Frename_file): After prompting for ok-if-already-exists, pass only nil or
Roland McGrath <roland@gnu.org>
parents:
3829
diff
changeset
|
2108 NILP (ok_if_already_exists) ? Qnil : Qt, Qt); |
| 230 | 2109 Fdelete_file (filename); |
| 2110 } | |
| 2111 else | |
| 2112 #ifdef NO_ARG_ARRAY | |
| 2113 { | |
| 2114 args[0] = filename; | |
| 2115 args[1] = newname; | |
| 2116 report_file_error ("Renaming", Flist (2, args)); | |
| 2117 } | |
| 2118 #else | |
| 2119 report_file_error ("Renaming", Flist (2, &filename)); | |
| 2120 #endif | |
| 2121 } | |
| 2122 UNGCPRO; | |
| 2123 return Qnil; | |
| 2124 } | |
| 2125 | |
| 2126 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3, | |
| 2127 "fAdd name to file: \nFName to add to %s: \np", | |
| 2128 "Give FILE additional name NEWNAME. Both args strings.\n\ | |
| 2129 Signals a `file-already-exists' error if a file NEWNAME already exists\n\ | |
| 2130 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\ | |
| 2131 A number as third arg means request confirmation if NEWNAME already exists.\n\ | |
| 2132 This is what happens in interactive use with M-x.") | |
| 2133 (filename, newname, ok_if_already_exists) | |
| 2134 Lisp_Object filename, newname, ok_if_already_exists; | |
| 2135 { | |
| 2136 #ifdef NO_ARG_ARRAY | |
| 2137 Lisp_Object args[2]; | |
| 2138 #endif | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2139 Lisp_Object handler; |
| 230 | 2140 struct gcpro gcpro1, gcpro2; |
| 2141 | |
| 2142 GCPRO2 (filename, newname); | |
| 2143 CHECK_STRING (filename, 0); | |
| 2144 CHECK_STRING (newname, 1); | |
| 2145 filename = Fexpand_file_name (filename, Qnil); | |
| 2146 newname = Fexpand_file_name (newname, Qnil); | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2147 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2148 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2149 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2150 handler = Ffind_file_name_handler (filename, Qadd_name_to_file); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2151 if (!NILP (handler)) |
|
6370
51a014b7c656
(Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo
Karl Heuer <kwzh@gnu.org>
parents:
6367
diff
changeset
|
2152 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, filename, |
|
51a014b7c656
(Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo
Karl Heuer <kwzh@gnu.org>
parents:
6367
diff
changeset
|
2153 newname, ok_if_already_exists)); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2154 |
|
12985
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2155 /* If the new name has special constructs in it, |
|
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2156 call the corresponding file handler. */ |
|
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2157 handler = Ffind_file_name_handler (newname, Qadd_name_to_file); |
|
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2158 if (!NILP (handler)) |
|
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2159 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, filename, |
|
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2160 newname, ok_if_already_exists)); |
|
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2161 |
| 485 | 2162 if (NILP (ok_if_already_exists) |
|
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
2163 || INTEGERP (ok_if_already_exists)) |
| 230 | 2164 barf_or_query_if_file_exists (newname, "make it a new name", |
|
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2165 INTEGERP (ok_if_already_exists), 0); |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2166 #ifdef WINDOWSNT |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2167 /* Windows does not support this operation. */ |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2168 report_file_error ("Adding new name", Flist (2, &filename)); |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2169 #else /* not WINDOWSNT */ |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2170 |
| 230 | 2171 unlink (XSTRING (newname)->data); |
| 2172 if (0 > link (XSTRING (filename)->data, XSTRING (newname)->data)) | |
| 2173 { | |
| 2174 #ifdef NO_ARG_ARRAY | |
| 2175 args[0] = filename; | |
| 2176 args[1] = newname; | |
| 2177 report_file_error ("Adding new name", Flist (2, args)); | |
| 2178 #else | |
| 2179 report_file_error ("Adding new name", Flist (2, &filename)); | |
| 2180 #endif | |
| 2181 } | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2182 #endif /* not WINDOWSNT */ |
| 230 | 2183 |
| 2184 UNGCPRO; | |
| 2185 return Qnil; | |
| 2186 } | |
| 2187 | |
| 2188 #ifdef S_IFLNK | |
| 2189 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3, | |
| 2190 "FMake symbolic link to file: \nFMake symbolic link to file %s: \np", | |
| 2191 "Make a symbolic link to FILENAME, named LINKNAME. Both args strings.\n\ | |
|
8738
56c445a92c4c
(Fset_default_file_modes): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
8703
diff
changeset
|
2192 Signals a `file-already-exists' error if a file LINKNAME already exists\n\ |
| 230 | 2193 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\ |
|
8738
56c445a92c4c
(Fset_default_file_modes): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
8703
diff
changeset
|
2194 A number as third arg means request confirmation if LINKNAME already exists.\n\ |
| 230 | 2195 This happens for interactive use with M-x.") |
| 732 | 2196 (filename, linkname, ok_if_already_exists) |
| 2197 Lisp_Object filename, linkname, ok_if_already_exists; | |
| 230 | 2198 { |
| 2199 #ifdef NO_ARG_ARRAY | |
| 2200 Lisp_Object args[2]; | |
| 2201 #endif | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2202 Lisp_Object handler; |
| 230 | 2203 struct gcpro gcpro1, gcpro2; |
| 2204 | |
| 732 | 2205 GCPRO2 (filename, linkname); |
| 230 | 2206 CHECK_STRING (filename, 0); |
| 732 | 2207 CHECK_STRING (linkname, 1); |
|
5245
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
2208 /* If the link target has a ~, we must expand it to get |
|
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
2209 a truly valid file name. Otherwise, do not expand; |
|
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
2210 we want to permit links to relative file names. */ |
|
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
2211 if (XSTRING (filename)->data[0] == '~') |
|
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
2212 filename = Fexpand_file_name (filename, Qnil); |
| 732 | 2213 linkname = Fexpand_file_name (linkname, Qnil); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2214 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2215 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2216 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2217 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2218 if (!NILP (handler)) |
|
6370
51a014b7c656
(Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo
Karl Heuer <kwzh@gnu.org>
parents:
6367
diff
changeset
|
2219 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename, |
|
51a014b7c656
(Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo
Karl Heuer <kwzh@gnu.org>
parents:
6367
diff
changeset
|
2220 linkname, ok_if_already_exists)); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2221 |
|
12985
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2222 /* If the new link name has special constructs in it, |
|
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2223 call the corresponding file handler. */ |
|
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2224 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link); |
|
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2225 if (!NILP (handler)) |
|
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2226 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename, |
|
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2227 linkname, ok_if_already_exists)); |
|
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2228 |
| 485 | 2229 if (NILP (ok_if_already_exists) |
|
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
2230 || INTEGERP (ok_if_already_exists)) |
| 732 | 2231 barf_or_query_if_file_exists (linkname, "make it a link", |
|
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2232 INTEGERP (ok_if_already_exists), 0); |
| 732 | 2233 if (0 > symlink (XSTRING (filename)->data, XSTRING (linkname)->data)) |
| 230 | 2234 { |
| 2235 /* If we didn't complain already, silently delete existing file. */ | |
| 2236 if (errno == EEXIST) | |
| 2237 { | |
|
2650
f378d89945e1
* fileio.c (Fmake_symbolic_link): If a file already exists under
Jim Blandy <jimb@redhat.com>
parents:
2607
diff
changeset
|
2238 unlink (XSTRING (linkname)->data); |
| 732 | 2239 if (0 <= symlink (XSTRING (filename)->data, XSTRING (linkname)->data)) |
|
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2240 { |
|
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2241 UNGCPRO; |
|
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2242 return Qnil; |
|
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2243 } |
| 230 | 2244 } |
| 2245 | |
| 2246 #ifdef NO_ARG_ARRAY | |
| 2247 args[0] = filename; | |
| 732 | 2248 args[1] = linkname; |
| 230 | 2249 report_file_error ("Making symbolic link", Flist (2, args)); |
| 2250 #else | |
| 2251 report_file_error ("Making symbolic link", Flist (2, &filename)); | |
| 2252 #endif | |
| 2253 } | |
| 2254 UNGCPRO; | |
| 2255 return Qnil; | |
| 2256 } | |
| 2257 #endif /* S_IFLNK */ | |
| 2258 | |
| 2259 #ifdef VMS | |
| 2260 | |
| 2261 DEFUN ("define-logical-name", Fdefine_logical_name, Sdefine_logical_name, | |
| 2262 2, 2, "sDefine logical name: \nsDefine logical name %s as: ", | |
| 2263 "Define the job-wide logical name NAME to have the value STRING.\n\ | |
| 2264 If STRING is nil or a null string, the logical name NAME is deleted.") | |
| 2265 (varname, string) | |
| 2266 Lisp_Object varname; | |
| 2267 Lisp_Object string; | |
| 2268 { | |
| 2269 CHECK_STRING (varname, 0); | |
| 485 | 2270 if (NILP (string)) |
| 230 | 2271 delete_logical_name (XSTRING (varname)->data); |
| 2272 else | |
| 2273 { | |
| 2274 CHECK_STRING (string, 1); | |
| 2275 | |
| 2276 if (XSTRING (string)->size == 0) | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2277 delete_logical_name (XSTRING (varname)->data); |
| 230 | 2278 else |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2279 define_logical_name (XSTRING (varname)->data, XSTRING (string)->data); |
| 230 | 2280 } |
| 2281 | |
| 2282 return string; | |
| 2283 } | |
| 2284 #endif /* VMS */ | |
| 2285 | |
| 2286 #ifdef HPUX_NET | |
| 2287 | |
| 2288 DEFUN ("sysnetunam", Fsysnetunam, Ssysnetunam, 2, 2, 0, | |
| 2289 "Open a network connection to PATH using LOGIN as the login string.") | |
| 2290 (path, login) | |
| 2291 Lisp_Object path, login; | |
| 2292 { | |
| 2293 int netresult; | |
| 2294 | |
| 2295 CHECK_STRING (path, 0); | |
| 2296 CHECK_STRING (login, 0); | |
| 2297 | |
| 2298 netresult = netunam (XSTRING (path)->data, XSTRING (login)->data); | |
| 2299 | |
| 2300 if (netresult == -1) | |
| 2301 return Qnil; | |
| 2302 else | |
| 2303 return Qt; | |
| 2304 } | |
| 2305 #endif /* HPUX_NET */ | |
| 2306 | |
| 2307 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p, | |
| 2308 1, 1, 0, | |
| 2309 "Return t if file FILENAME specifies an absolute path name.\n\ | |
| 2310 On Unix, this is a name starting with a `/' or a `~'.") | |
| 2311 (filename) | |
| 2312 Lisp_Object filename; | |
| 2313 { | |
| 2314 unsigned char *ptr; | |
| 2315 | |
| 2316 CHECK_STRING (filename, 0); | |
| 2317 ptr = XSTRING (filename)->data; | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2318 if (IS_DIRECTORY_SEP (*ptr) || *ptr == '~' |
| 230 | 2319 #ifdef VMS |
| 2320 /* ??? This criterion is probably wrong for '<'. */ | |
| 2321 || index (ptr, ':') || index (ptr, '<') | |
| 2322 || (*ptr == '[' && (ptr[1] != '-' || (ptr[2] != '.' && ptr[2] != ']')) | |
| 2323 && ptr[1] != '.') | |
| 2324 #endif /* VMS */ | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2325 #ifdef DOS_NT |
|
8185
b5cc015a3698
(Ffile_name_directory, Ffile_name_nondirectory,
Richard M. Stallman <rms@gnu.org>
parents:
8079
diff
changeset
|
2326 || (*ptr != 0 && ptr[1] == ':' && (ptr[2] == '/' || ptr[2] == '\\')) |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2327 #endif |
| 230 | 2328 ) |
| 2329 return Qt; | |
| 2330 else | |
| 2331 return Qnil; | |
| 2332 } | |
|
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2333 |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2334 /* Return nonzero if file FILENAME exists and can be executed. */ |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2335 |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2336 static int |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2337 check_executable (filename) |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2338 char *filename; |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2339 { |
|
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2340 #ifdef DOS_NT |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2341 int len = strlen (filename); |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2342 char *suffix; |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2343 struct stat st; |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2344 if (stat (filename, &st) < 0) |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2345 return 0; |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2346 return (S_ISREG (st.st_mode) |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2347 && len >= 5 |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2348 && (stricmp ((suffix = filename + len-4), ".com") == 0 |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2349 || stricmp (suffix, ".exe") == 0 |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2350 || stricmp (suffix, ".bat") == 0)); |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2351 #else /* not DOS_NT */ |
|
9374
347f919eea4a
(check_writable, check_executable): Test HAVE_EACCESS.
Richard M. Stallman <rms@gnu.org>
parents:
9346
diff
changeset
|
2352 #ifdef HAVE_EACCESS |
|
9188
c17b2a49b6ec
(check_writable, check_executable) [__HURD__]: Use eaccess.
Richard M. Stallman <rms@gnu.org>
parents:
9170
diff
changeset
|
2353 return (eaccess (filename, 1) >= 0); |
|
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2354 #else |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2355 /* Access isn't quite right because it uses the real uid |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2356 and we really want to test with the effective uid. |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2357 But Unix doesn't give us a right way to do it. */ |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2358 return (access (filename, 1) >= 0); |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2359 #endif |
|
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2360 #endif /* not DOS_NT */ |
|
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2361 } |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2362 |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2363 /* Return nonzero if file FILENAME exists and can be written. */ |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2364 |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2365 static int |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2366 check_writable (filename) |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2367 char *filename; |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2368 { |
|
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2369 #ifdef MSDOS |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2370 struct stat st; |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2371 if (stat (filename, &st) < 0) |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2372 return 0; |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2373 return (st.st_mode & S_IWRITE || (st.st_mode & S_IFMT) == S_IFDIR); |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2374 #else /* not MSDOS */ |
|
9374
347f919eea4a
(check_writable, check_executable): Test HAVE_EACCESS.
Richard M. Stallman <rms@gnu.org>
parents:
9346
diff
changeset
|
2375 #ifdef HAVE_EACCESS |
|
9188
c17b2a49b6ec
(check_writable, check_executable) [__HURD__]: Use eaccess.
Richard M. Stallman <rms@gnu.org>
parents:
9170
diff
changeset
|
2376 return (eaccess (filename, 2) >= 0); |
|
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2377 #else |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2378 /* Access isn't quite right because it uses the real uid |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2379 and we really want to test with the effective uid. |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2380 But Unix doesn't give us a right way to do it. |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2381 Opening with O_WRONLY could work for an ordinary file, |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2382 but would lose for directories. */ |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2383 return (access (filename, 2) >= 0); |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2384 #endif |
|
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2385 #endif /* not MSDOS */ |
|
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2386 } |
| 230 | 2387 |
| 2388 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0, | |
| 2389 "Return t if file FILENAME exists. (This does not mean you can read it.)\n\ | |
| 2390 See also `file-readable-p' and `file-attributes'.") | |
| 2391 (filename) | |
| 2392 Lisp_Object filename; | |
| 2393 { | |
| 2394 Lisp_Object abspath; | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2395 Lisp_Object handler; |
| 8597 | 2396 struct stat statbuf; |
| 230 | 2397 |
| 2398 CHECK_STRING (filename, 0); | |
| 2399 abspath = Fexpand_file_name (filename, Qnil); | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2400 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2401 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2402 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2403 handler = Ffind_file_name_handler (abspath, Qfile_exists_p); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2404 if (!NILP (handler)) |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2405 return call2 (handler, Qfile_exists_p, abspath); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2406 |
| 8597 | 2407 return (stat (XSTRING (abspath)->data, &statbuf) >= 0) ? Qt : Qnil; |
| 230 | 2408 } |
| 2409 | |
| 2410 DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0, | |
| 2411 "Return t if FILENAME can be executed by you.\n\ | |
| 2236 | 2412 For a directory, this means you can access files in that directory.") |
| 230 | 2413 (filename) |
| 2414 Lisp_Object filename; | |
| 2415 | |
| 2416 { | |
| 2417 Lisp_Object abspath; | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2418 Lisp_Object handler; |
| 230 | 2419 |
| 2420 CHECK_STRING (filename, 0); | |
| 2421 abspath = Fexpand_file_name (filename, Qnil); | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2422 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2423 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2424 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2425 handler = Ffind_file_name_handler (abspath, Qfile_executable_p); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2426 if (!NILP (handler)) |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2427 return call2 (handler, Qfile_executable_p, abspath); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2428 |
|
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2429 return (check_executable (XSTRING (abspath)->data) ? Qt : Qnil); |
| 230 | 2430 } |
| 2431 | |
| 2432 DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0, | |
| 2433 "Return t if file FILENAME exists and you can read it.\n\ | |
| 2434 See also `file-exists-p' and `file-attributes'.") | |
| 2435 (filename) | |
| 2436 Lisp_Object filename; | |
| 2437 { | |
| 2438 Lisp_Object abspath; | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2439 Lisp_Object handler; |
| 8597 | 2440 int desc; |
| 230 | 2441 |
| 2442 CHECK_STRING (filename, 0); | |
| 2443 abspath = Fexpand_file_name (filename, Qnil); | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2444 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2445 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2446 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2447 handler = Ffind_file_name_handler (abspath, Qfile_readable_p); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2448 if (!NILP (handler)) |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2449 return call2 (handler, Qfile_readable_p, abspath); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2450 |
| 8597 | 2451 desc = open (XSTRING (abspath)->data, O_RDONLY); |
| 2452 if (desc < 0) | |
| 2453 return Qnil; | |
| 2454 close (desc); | |
| 2455 return Qt; | |
| 230 | 2456 } |
| 2457 | |
|
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2458 /* Having this before file-symlink-p mysteriously caused it to be forgotten |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2459 on the RT/PC. */ |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2460 DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0, |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2461 "Return t if file FILENAME can be written or created by you.") |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2462 (filename) |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2463 Lisp_Object filename; |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2464 { |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2465 Lisp_Object abspath, dir; |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2466 Lisp_Object handler; |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2467 struct stat statbuf; |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2468 |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2469 CHECK_STRING (filename, 0); |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2470 abspath = Fexpand_file_name (filename, Qnil); |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2471 |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2472 /* If the file name has special constructs in it, |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2473 call the corresponding file handler. */ |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2474 handler = Ffind_file_name_handler (abspath, Qfile_writable_p); |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2475 if (!NILP (handler)) |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2476 return call2 (handler, Qfile_writable_p, abspath); |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2477 |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2478 if (stat (XSTRING (abspath)->data, &statbuf) >= 0) |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2479 return (check_writable (XSTRING (abspath)->data) |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2480 ? Qt : Qnil); |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2481 dir = Ffile_name_directory (abspath); |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2482 #ifdef VMS |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2483 if (!NILP (dir)) |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2484 dir = Fdirectory_file_name (dir); |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2485 #endif /* VMS */ |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2486 #ifdef MSDOS |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2487 if (!NILP (dir)) |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2488 dir = Fdirectory_file_name (dir); |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2489 #endif /* MSDOS */ |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2490 return (check_writable (!NILP (dir) ? (char *) XSTRING (dir)->data : "") |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2491 ? Qt : Qnil); |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2492 } |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2493 |
| 230 | 2494 DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0, |
|
5616
67a8c4a8c80e
(Ffile_symlink_p): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5553
diff
changeset
|
2495 "Return non-nil if file FILENAME is the name of a symbolic link.\n\ |
|
67a8c4a8c80e
(Ffile_symlink_p): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5553
diff
changeset
|
2496 The value is the name of the file to which it is linked.\n\ |
|
67a8c4a8c80e
(Ffile_symlink_p): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5553
diff
changeset
|
2497 Otherwise returns nil.") |
| 230 | 2498 (filename) |
| 2499 Lisp_Object filename; | |
| 2500 { | |
| 2501 #ifdef S_IFLNK | |
| 2502 char *buf; | |
| 2503 int bufsize; | |
| 2504 int valsize; | |
| 2505 Lisp_Object val; | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2506 Lisp_Object handler; |
| 230 | 2507 |
| 2508 CHECK_STRING (filename, 0); | |
| 2509 filename = Fexpand_file_name (filename, Qnil); | |
| 2510 | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2511 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2512 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2513 handler = Ffind_file_name_handler (filename, Qfile_symlink_p); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2514 if (!NILP (handler)) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2515 return call2 (handler, Qfile_symlink_p, filename); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2516 |
| 230 | 2517 bufsize = 100; |
| 2518 while (1) | |
| 2519 { | |
| 2520 buf = (char *) xmalloc (bufsize); | |
| 2521 bzero (buf, bufsize); | |
| 2522 valsize = readlink (XSTRING (filename)->data, buf, bufsize); | |
| 2523 if (valsize < bufsize) break; | |
| 2524 /* Buffer was not long enough */ | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2435
diff
changeset
|
2525 xfree (buf); |
| 230 | 2526 bufsize *= 2; |
| 2527 } | |
| 2528 if (valsize == -1) | |
| 2529 { | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2435
diff
changeset
|
2530 xfree (buf); |
| 230 | 2531 return Qnil; |
| 2532 } | |
| 2533 val = make_string (buf, valsize); | |
|
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2435
diff
changeset
|
2534 xfree (buf); |
| 230 | 2535 return val; |
| 2536 #else /* not S_IFLNK */ | |
| 2537 return Qnil; | |
| 2538 #endif /* not S_IFLNK */ | |
| 2539 } | |
| 2540 | |
| 2541 DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0, | |
| 2542 "Return t if file FILENAME is the name of a directory as a file.\n\ | |
| 2543 A directory name spec may be given instead; then the value is t\n\ | |
| 2544 if the directory so specified exists and really is a directory.") | |
| 2545 (filename) | |
| 2546 Lisp_Object filename; | |
| 2547 { | |
| 2548 register Lisp_Object abspath; | |
| 2549 struct stat st; | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2550 Lisp_Object handler; |
| 230 | 2551 |
| 2552 abspath = expand_and_dir_to_file (filename, current_buffer->directory); | |
| 2553 | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2554 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2555 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2556 handler = Ffind_file_name_handler (abspath, Qfile_directory_p); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2557 if (!NILP (handler)) |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2558 return call2 (handler, Qfile_directory_p, abspath); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2559 |
| 230 | 2560 if (stat (XSTRING (abspath)->data, &st) < 0) |
| 2561 return Qnil; | |
| 2562 return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil; | |
| 2563 } | |
| 2564 | |
| 536 | 2565 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p, Sfile_accessible_directory_p, 1, 1, 0, |
| 2566 "Return t if file FILENAME is the name of a directory as a file,\n\ | |
| 2567 and files in that directory can be opened by you. In order to use a\n\ | |
| 2568 directory as a buffer's current directory, this predicate must return true.\n\ | |
| 2569 A directory name spec may be given instead; then the value is t\n\ | |
| 2570 if the directory so specified exists and really is a readable and\n\ | |
| 2571 searchable directory.") | |
| 2572 (filename) | |
| 2573 Lisp_Object filename; | |
| 2574 { | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2575 Lisp_Object handler; |
|
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2576 int tem; |
|
8703
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
2577 struct gcpro gcpro1; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2578 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2579 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2580 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2581 handler = Ffind_file_name_handler (filename, Qfile_accessible_directory_p); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2582 if (!NILP (handler)) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2583 return call2 (handler, Qfile_accessible_directory_p, filename); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2584 |
|
8703
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
2585 /* It's an unlikely combination, but yes we really do need to gcpro: |
|
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
2586 Suppose that file-accessible-directory-p has no handler, but |
|
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
2587 file-directory-p does have a handler; this handler causes a GC which |
|
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
2588 relocates the string in `filename'; and finally file-directory-p |
|
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
2589 returns non-nil. Then we would end up passing a garbaged string |
|
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
2590 to file-executable-p. */ |
|
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
2591 GCPRO1 (filename); |
|
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2592 tem = (NILP (Ffile_directory_p (filename)) |
|
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2593 || NILP (Ffile_executable_p (filename))); |
|
8703
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
2594 UNGCPRO; |
|
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2595 return tem ? Qnil : Qt; |
| 536 | 2596 } |
| 2597 | |
|
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2598 DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0, |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2599 "Return t if file FILENAME is the name of a regular file.\n\ |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2600 This is the sort of file that holds an ordinary stream of data bytes.") |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2601 (filename) |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2602 Lisp_Object filename; |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2603 { |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2604 register Lisp_Object abspath; |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2605 struct stat st; |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2606 Lisp_Object handler; |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2607 |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2608 abspath = expand_and_dir_to_file (filename, current_buffer->directory); |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2609 |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2610 /* If the file name has special constructs in it, |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2611 call the corresponding file handler. */ |
|
11599
51bc10be0dc7
(Ffile_regular_p): Use Qfile_regular_p.
Richard M. Stallman <rms@gnu.org>
parents:
11426
diff
changeset
|
2612 handler = Ffind_file_name_handler (abspath, Qfile_regular_p); |
|
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2613 if (!NILP (handler)) |
|
11599
51bc10be0dc7
(Ffile_regular_p): Use Qfile_regular_p.
Richard M. Stallman <rms@gnu.org>
parents:
11426
diff
changeset
|
2614 return call2 (handler, Qfile_regular_p, abspath); |
|
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2615 |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2616 if (stat (XSTRING (abspath)->data, &st) < 0) |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2617 return Qnil; |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2618 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil; |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2619 } |
|
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2620 |
| 230 | 2621 DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0, |
| 2622 "Return mode bits of FILE, as an integer.") | |
| 2623 (filename) | |
| 2624 Lisp_Object filename; | |
| 2625 { | |
| 2626 Lisp_Object abspath; | |
| 2627 struct stat st; | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2628 Lisp_Object handler; |
| 230 | 2629 |
| 2630 abspath = expand_and_dir_to_file (filename, current_buffer->directory); | |
| 2631 | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2632 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2633 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2634 handler = Ffind_file_name_handler (abspath, Qfile_modes); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2635 if (!NILP (handler)) |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2636 return call2 (handler, Qfile_modes, abspath); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2637 |
| 230 | 2638 if (stat (XSTRING (abspath)->data, &st) < 0) |
| 2639 return Qnil; | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2640 #ifdef DOS_NT |
|
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2641 if (check_executable (XSTRING (abspath)->data)) |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2642 st.st_mode |= S_IEXEC; |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2643 #endif /* DOS_NT */ |
|
6383
62db5566c287
(Ffile_modes) [MSDOS]: set exec-bit based on file suffix.
Karl Heuer <kwzh@gnu.org>
parents:
6370
diff
changeset
|
2644 |
| 230 | 2645 return make_number (st.st_mode & 07777); |
| 2646 } | |
| 2647 | |
| 2648 DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2, 0, | |
| 2649 "Set mode bits of FILE to MODE (an integer).\n\ | |
| 2650 Only the 12 low bits of MODE are used.") | |
| 2651 (filename, mode) | |
| 2652 Lisp_Object filename, mode; | |
| 2653 { | |
| 2654 Lisp_Object abspath; | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2655 Lisp_Object handler; |
| 230 | 2656 |
| 2657 abspath = Fexpand_file_name (filename, current_buffer->directory); | |
| 2658 CHECK_NUMBER (mode, 1); | |
| 2659 | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2660 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2661 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2662 handler = Ffind_file_name_handler (abspath, Qset_file_modes); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2663 if (!NILP (handler)) |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2664 return call3 (handler, Qset_file_modes, abspath, mode); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2665 |
| 230 | 2666 if (chmod (XSTRING (abspath)->data, XINT (mode)) < 0) |
| 2667 report_file_error ("Doing chmod", Fcons (abspath, Qnil)); | |
| 2668 | |
| 2669 return Qnil; | |
| 2670 } | |
| 2671 | |
|
1763
65e858c07a8b
(Fset_default_file_modes, Fdefault_file_modes): Renamed from .._mode.
Richard M. Stallman <rms@gnu.org>
parents:
1762
diff
changeset
|
2672 DEFUN ("set-default-file-modes", Fset_default_file_modes, Sset_default_file_modes, 1, 1, 0, |
|
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2673 "Set the file permission bits for newly created files.\n\ |
|
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2674 The argument MODE should be an integer; only the low 9 bits are used.\n\ |
| 550 | 2675 This setting is inherited by subprocesses.") |
|
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2676 (mode) |
|
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2677 Lisp_Object mode; |
| 550 | 2678 { |
|
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2679 CHECK_NUMBER (mode, 0); |
| 550 | 2680 |
|
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2681 umask ((~ XINT (mode)) & 0777); |
| 550 | 2682 |
| 2683 return Qnil; | |
| 2684 } | |
| 2685 | |
|
1763
65e858c07a8b
(Fset_default_file_modes, Fdefault_file_modes): Renamed from .._mode.
Richard M. Stallman <rms@gnu.org>
parents:
1762
diff
changeset
|
2686 DEFUN ("default-file-modes", Fdefault_file_modes, Sdefault_file_modes, 0, 0, 0, |
|
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2687 "Return the default file protection for created files.\n\ |
|
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2688 The value is an integer.") |
| 550 | 2689 () |
| 2690 { | |
|
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2691 int realmask; |
|
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2692 Lisp_Object value; |
|
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2693 |
|
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2694 realmask = umask (0); |
|
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2695 umask (realmask); |
|
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2696 |
|
9266
811ad893828b
(Fdefault_file_modes, Finsert_file_contents, Fdo_auto_save): Use new accessor
Karl Heuer <kwzh@gnu.org>
parents:
9241
diff
changeset
|
2697 XSETINT (value, (~ realmask) & 0777); |
|
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2698 return value; |
| 550 | 2699 } |
|
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
2700 |
|
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2701 #ifdef unix |
|
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2702 |
|
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2703 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "", |
|
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2704 "Tell Unix to finish all pending disk updates.") |
|
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2705 () |
|
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2706 { |
|
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2707 sync (); |
|
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2708 return Qnil; |
|
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2709 } |
|
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2710 |
|
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2711 #endif /* unix */ |
|
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2712 |
| 230 | 2713 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0, |
| 2714 "Return t if file FILE1 is newer than file FILE2.\n\ | |
| 2715 If FILE1 does not exist, the answer is nil;\n\ | |
| 2716 otherwise, if FILE2 does not exist, the answer is t.") | |
| 2717 (file1, file2) | |
| 2718 Lisp_Object file1, file2; | |
| 2719 { | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2720 Lisp_Object abspath1, abspath2; |
| 230 | 2721 struct stat st; |
| 2722 int mtime1; | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2723 Lisp_Object handler; |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2724 struct gcpro gcpro1, gcpro2; |
| 230 | 2725 |
| 2726 CHECK_STRING (file1, 0); | |
| 2727 CHECK_STRING (file2, 0); | |
| 2728 | |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2729 abspath1 = Qnil; |
|
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2730 GCPRO2 (abspath1, file2); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2731 abspath1 = expand_and_dir_to_file (file1, current_buffer->directory); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2732 abspath2 = expand_and_dir_to_file (file2, current_buffer->directory); |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2733 UNGCPRO; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2734 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2735 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2736 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2737 handler = Ffind_file_name_handler (abspath1, Qfile_newer_than_file_p); |
|
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2738 if (NILP (handler)) |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2739 handler = Ffind_file_name_handler (abspath2, Qfile_newer_than_file_p); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2740 if (!NILP (handler)) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2741 return call3 (handler, Qfile_newer_than_file_p, abspath1, abspath2); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2742 |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2743 if (stat (XSTRING (abspath1)->data, &st) < 0) |
| 230 | 2744 return Qnil; |
| 2745 | |
| 2746 mtime1 = st.st_mtime; | |
| 2747 | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2748 if (stat (XSTRING (abspath2)->data, &st) < 0) |
| 230 | 2749 return Qt; |
| 2750 | |
| 2751 return (mtime1 > st.st_mtime) ? Qt : Qnil; | |
| 2752 } | |
| 2753 | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2754 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2755 Lisp_Object Qfind_buffer_file_type; |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2756 #endif /* DOS_NT */ |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2757 |
| 230 | 2758 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents, |
|
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2759 1, 5, 0, |
| 230 | 2760 "Insert contents of file FILENAME after point.\n\ |
|
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2761 Returns list of absolute file name and length of data inserted.\n\ |
| 230 | 2762 If second argument VISIT is non-nil, the buffer's visited filename\n\ |
| 2763 and last save file modtime are set, and it is marked unmodified.\n\ | |
| 2764 If visiting and the file does not exist, visiting is completed\n\ | |
|
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2765 before the error is signaled.\n\n\ |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2766 The optional third and fourth arguments BEG and END\n\ |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2767 specify what portion of the file to insert.\n\ |
|
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2768 If VISIT is non-nil, BEG and END must be nil.\n\ |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2769 If optional fifth argument REPLACE is non-nil,\n\ |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2770 it means replace the current buffer contents (in the accessible portion)\n\ |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2771 with the file contents. This is better than simply deleting and inserting\n\ |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2772 the whole thing because (1) it preserves some marker positions\n\ |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2773 and (2) it puts less data in the undo list.") |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2774 (filename, visit, beg, end, replace) |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2775 Lisp_Object filename, visit, beg, end, replace; |
| 230 | 2776 { |
| 2777 struct stat st; | |
| 2778 register int fd; | |
| 2779 register int inserted = 0; | |
| 2780 register int how_much; | |
| 2781 int count = specpdl_ptr - specpdl; | |
|
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2782 struct gcpro gcpro1, gcpro2, gcpro3; |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2783 Lisp_Object handler, val, insval; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2784 Lisp_Object p; |
|
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2785 int total; |
|
9921
62392796a691
(Finsert_file_contents): Init not_regular at the beginning.
Richard M. Stallman <rms@gnu.org>
parents:
9915
diff
changeset
|
2786 int not_regular = 0; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2787 |
|
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
2788 if (current_buffer->base_buffer && ! NILP (visit)) |
|
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
2789 error ("Cannot do file visiting in an indirect buffer"); |
|
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
2790 |
|
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
2791 if (!NILP (current_buffer->read_only)) |
|
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
2792 Fbarf_if_buffer_read_only (); |
|
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
2793 |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2794 val = Qnil; |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2795 p = Qnil; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2796 |
|
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2797 GCPRO3 (filename, val, p); |
| 230 | 2798 |
| 2799 CHECK_STRING (filename, 0); | |
| 2800 filename = Fexpand_file_name (filename, Qnil); | |
| 2801 | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2802 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2803 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2804 handler = Ffind_file_name_handler (filename, Qinsert_file_contents); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2805 if (!NILP (handler)) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2806 { |
|
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2807 val = call6 (handler, Qinsert_file_contents, filename, |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2808 visit, beg, end, replace); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2809 goto handled; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2810 } |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2811 |
| 230 | 2812 fd = -1; |
| 2813 | |
| 2814 #ifndef APOLLO | |
|
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
2815 if (stat (XSTRING (filename)->data, &st) < 0) |
| 230 | 2816 #else |
| 8597 | 2817 if ((fd = open (XSTRING (filename)->data, O_RDONLY)) < 0 |
| 230 | 2818 || fstat (fd, &st) < 0) |
| 2819 #endif /* not APOLLO */ | |
| 2820 { | |
| 2821 if (fd >= 0) close (fd); | |
|
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
2822 badopen: |
| 485 | 2823 if (NILP (visit)) |
| 230 | 2824 report_file_error ("Opening input file", Fcons (filename, Qnil)); |
| 2825 st.st_mtime = -1; | |
| 2826 how_much = 0; | |
| 2827 goto notfound; | |
| 2828 } | |
| 2829 | |
|
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
2830 #ifdef S_IFREG |
|
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
2831 /* This code will need to be changed in order to work on named |
|
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
2832 pipes, and it's probably just not worth it. So we should at |
|
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
2833 least signal an error. */ |
|
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
2834 if (!S_ISREG (st.st_mode)) |
|
9915
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
2835 { |
|
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
2836 if (NILP (visit)) |
|
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
2837 Fsignal (Qfile_error, |
|
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
2838 Fcons (build_string ("not a regular file"), |
|
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
2839 Fcons (filename, Qnil))); |
|
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
2840 |
|
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
2841 not_regular = 1; |
|
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
2842 goto notfound; |
|
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
2843 } |
|
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
2844 #endif |
|
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
2845 |
|
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
2846 if (fd < 0) |
| 8597 | 2847 if ((fd = open (XSTRING (filename)->data, O_RDONLY)) < 0) |
|
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
2848 goto badopen; |
|
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
2849 |
|
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
2850 /* Replacement should preserve point as it preserves markers. */ |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
2851 if (!NILP (replace)) |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
2852 record_unwind_protect (restore_point_unwind, Fpoint_marker ()); |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
2853 |
| 230 | 2854 record_unwind_protect (close_file_unwind, make_number (fd)); |
| 2855 | |
| 2856 /* Supposedly happens on VMS. */ | |
| 2857 if (st.st_size < 0) | |
| 2858 error ("File size is negative"); | |
| 752 | 2859 |
|
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2860 if (!NILP (beg) || !NILP (end)) |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2861 if (!NILP (visit)) |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2862 error ("Attempt to visit less than an entire file"); |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2863 |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2864 if (!NILP (beg)) |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2865 CHECK_NUMBER (beg, 0); |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2866 else |
|
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
2867 XSETFASTINT (beg, 0); |
|
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2868 |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2869 if (!NILP (end)) |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2870 CHECK_NUMBER (end, 0); |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2871 else |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2872 { |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2873 XSETINT (end, st.st_size); |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2874 if (XINT (end) != st.st_size) |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2875 error ("maximum buffer size exceeded"); |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2876 } |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2877 |
|
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2878 /* If requested, replace the accessible part of the buffer |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2879 with the file contents. Avoid replacing text at the |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2880 beginning or end of the buffer that matches the file contents; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2881 that preserves markers pointing to the unchanged parts. */ |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2882 #ifdef DOS_NT |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
2883 /* On MSDOS, replace mode doesn't really work, except for binary files, |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
2884 and it's not worth supporting just for them. */ |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
2885 if (!NILP (replace)) |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
2886 { |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
2887 replace = Qnil; |
|
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
2888 XSETFASTINT (beg, 0); |
|
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
2889 XSETFASTINT (end, st.st_size); |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
2890 del_range_1 (BEGV, ZV, 0); |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
2891 } |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2892 #else /* not DOS_NT */ |
|
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2893 if (!NILP (replace)) |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2894 { |
|
7549
ccb8b7f8dce7
(syms_of_fileio): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7526
diff
changeset
|
2895 unsigned char buffer[1 << 14]; |
|
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2896 int same_at_start = BEGV; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2897 int same_at_end = ZV; |
|
6328
e97a1cc44be8
(Finsert_file_contents): Don't let same_at_end be less than same_at_start.
Richard M. Stallman <rms@gnu.org>
parents:
6209
diff
changeset
|
2898 int overlap; |
|
e97a1cc44be8
(Finsert_file_contents): Don't let same_at_end be less than same_at_start.
Richard M. Stallman <rms@gnu.org>
parents:
6209
diff
changeset
|
2899 |
|
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2900 immediate_quit = 1; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2901 QUIT; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2902 /* Count how many chars at the start of the file |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2903 match the text at the beginning of the buffer. */ |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2904 while (1) |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2905 { |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2906 int nread, bufpos; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2907 |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2908 nread = read (fd, buffer, sizeof buffer); |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2909 if (nread < 0) |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2910 error ("IO error reading %s: %s", |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2911 XSTRING (filename)->data, strerror (errno)); |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2912 else if (nread == 0) |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2913 break; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2914 bufpos = 0; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2915 while (bufpos < nread && same_at_start < ZV |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2916 && FETCH_CHAR (same_at_start) == buffer[bufpos]) |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2917 same_at_start++, bufpos++; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2918 /* If we found a discrepancy, stop the scan. |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2919 Otherwise loop around and scan the next bufferfull. */ |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2920 if (bufpos != nread) |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2921 break; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2922 } |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2923 immediate_quit = 0; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2924 /* If the file matches the buffer completely, |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2925 there's no need to replace anything. */ |
|
7595
9f0893928a4d
(Finsert_file_contents): Declare buffer as unsigned
Richard M. Stallman <rms@gnu.org>
parents:
7551
diff
changeset
|
2926 if (same_at_start - BEGV == st.st_size) |
|
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2927 { |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2928 close (fd); |
|
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
2929 specpdl_ptr--; |
|
7595
9f0893928a4d
(Finsert_file_contents): Declare buffer as unsigned
Richard M. Stallman <rms@gnu.org>
parents:
7551
diff
changeset
|
2930 /* Truncate the buffer to the size of the file. */ |
|
9f0893928a4d
(Finsert_file_contents): Declare buffer as unsigned
Richard M. Stallman <rms@gnu.org>
parents:
7551
diff
changeset
|
2931 del_range_1 (same_at_start, same_at_end, 0); |
|
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2932 goto handled; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2933 } |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2934 immediate_quit = 1; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2935 QUIT; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2936 /* Count how many chars at the end of the file |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2937 match the text at the end of the buffer. */ |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2938 while (1) |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2939 { |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2940 int total_read, nread, bufpos, curpos, trial; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2941 |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2942 /* At what file position are we now scanning? */ |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2943 curpos = st.st_size - (ZV - same_at_end); |
|
7695
aba3ffcc8f51
(Finsert_file_contents): Check for beginning of file.
Karl Heuer <kwzh@gnu.org>
parents:
7611
diff
changeset
|
2944 /* If the entire file matches the buffer tail, stop the scan. */ |
|
aba3ffcc8f51
(Finsert_file_contents): Check for beginning of file.
Karl Heuer <kwzh@gnu.org>
parents:
7611
diff
changeset
|
2945 if (curpos == 0) |
|
aba3ffcc8f51
(Finsert_file_contents): Check for beginning of file.
Karl Heuer <kwzh@gnu.org>
parents:
7611
diff
changeset
|
2946 break; |
|
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2947 /* How much can we scan in the next step? */ |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2948 trial = min (curpos, sizeof buffer); |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2949 if (lseek (fd, curpos - trial, 0) < 0) |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2950 report_file_error ("Setting file position", |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2951 Fcons (filename, Qnil)); |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2952 |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2953 total_read = 0; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2954 while (total_read < trial) |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2955 { |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2956 nread = read (fd, buffer + total_read, trial - total_read); |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2957 if (nread <= 0) |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2958 error ("IO error reading %s: %s", |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2959 XSTRING (filename)->data, strerror (errno)); |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2960 total_read += nread; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2961 } |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2962 /* Scan this bufferfull from the end, comparing with |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2963 the Emacs buffer. */ |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2964 bufpos = total_read; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2965 /* Compare with same_at_start to avoid counting some buffer text |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2966 as matching both at the file's beginning and at the end. */ |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2967 while (bufpos > 0 && same_at_end > same_at_start |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2968 && FETCH_CHAR (same_at_end - 1) == buffer[bufpos - 1]) |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2969 same_at_end--, bufpos--; |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2970 /* If we found a discrepancy, stop the scan. |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2971 Otherwise loop around and scan the preceding bufferfull. */ |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2972 if (bufpos != 0) |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2973 break; |
|
13221
994440ef957f
(Finsert_file_contents): If replacing,
Richard M. Stallman <rms@gnu.org>
parents:
13098
diff
changeset
|
2974 /* If display current starts at beginning of line, |
|
994440ef957f
(Finsert_file_contents): If replacing,
Richard M. Stallman <rms@gnu.org>
parents:
13098
diff
changeset
|
2975 keep it that way. */ |
|
994440ef957f
(Finsert_file_contents): If replacing,
Richard M. Stallman <rms@gnu.org>
parents:
13098
diff
changeset
|
2976 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer) |
|
994440ef957f
(Finsert_file_contents): If replacing,
Richard M. Stallman <rms@gnu.org>
parents:
13098
diff
changeset
|
2977 XWINDOW (selected_window)->start_at_line_beg = Fbolp (); |
|
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2978 } |
|
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2979 immediate_quit = 0; |
|
6328
e97a1cc44be8
(Finsert_file_contents): Don't let same_at_end be less than same_at_start.
Richard M. Stallman <rms@gnu.org>
parents:
6209
diff
changeset
|
2980 |
|
e97a1cc44be8
(Finsert_file_contents): Don't let same_at_end be less than same_at_start.
Richard M. Stallman <rms@gnu.org>
parents:
6209
diff
changeset
|
2981 /* Don't try to reuse the same piece of text twice. */ |
|
e97a1cc44be8
(Finsert_file_contents): Don't let same_at_end be less than same_at_start.
Richard M. Stallman <rms@gnu.org>
parents:
6209
diff
changeset
|
2982 overlap = same_at_start - BEGV - (same_at_end + st.st_size - ZV); |
|
e97a1cc44be8
(Finsert_file_contents): Don't let same_at_end be less than same_at_start.
Richard M. Stallman <rms@gnu.org>
parents:
6209
diff
changeset
|
2983 if (overlap > 0) |
|
e97a1cc44be8
(Finsert_file_contents): Don't let same_at_end be less than same_at_start.
Richard M. Stallman <rms@gnu.org>
parents:
6209
diff
changeset
|
2984 same_at_end += overlap; |
|
e97a1cc44be8
(Finsert_file_contents): Don't let same_at_end be less than same_at_start.
Richard M. Stallman <rms@gnu.org>
parents:
6209
diff
changeset
|
2985 |
|
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2986 /* Arrange to read only the nonmatching middle part of the file. */ |
|
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
2987 XSETFASTINT (beg, same_at_start - BEGV); |
|
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
2988 XSETFASTINT (end, st.st_size - (ZV - same_at_end)); |
|
6328
e97a1cc44be8
(Finsert_file_contents): Don't let same_at_end be less than same_at_start.
Richard M. Stallman <rms@gnu.org>
parents:
6209
diff
changeset
|
2989 |
|
6194
b094b321b4a6
(Finsert_file_contents): Pass del_range_1 two ends, not a length.
Richard M. Stallman <rms@gnu.org>
parents:
6181
diff
changeset
|
2990 del_range_1 (same_at_start, same_at_end, 0); |
|
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
2991 /* Insert from the file at the proper position. */ |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
2992 SET_PT (same_at_start); |
|
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2993 } |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2994 #endif /* not DOS_NT */ |
|
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
2995 |
|
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2996 total = XINT (end) - XINT (beg); |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2997 |
| 230 | 2998 { |
| 2999 register Lisp_Object temp; | |
| 3000 | |
| 3001 /* Make sure point-max won't overflow after this insertion. */ | |
|
9266
811ad893828b
(Fdefault_file_modes, Finsert_file_contents, Fdo_auto_save): Use new accessor
Karl Heuer <kwzh@gnu.org>
parents:
9241
diff
changeset
|
3002 XSETINT (temp, total); |
|
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3003 if (total != XINT (temp)) |
| 230 | 3004 error ("maximum buffer size exceeded"); |
| 3005 } | |
| 3006 | |
|
4395
76b24be40a57
(Finsert_file_contents): Don't call prepare_to_modify_buffer
Richard M. Stallman <rms@gnu.org>
parents:
4270
diff
changeset
|
3007 if (NILP (visit) && total > 0) |
| 230 | 3008 prepare_to_modify_buffer (point, point); |
| 3009 | |
| 3010 move_gap (point); | |
|
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3011 if (GAP_SIZE < total) |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3012 make_gap (total - GAP_SIZE); |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3013 |
|
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3014 if (XINT (beg) != 0 || !NILP (replace)) |
|
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3015 { |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3016 if (lseek (fd, XINT (beg), 0) < 0) |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3017 report_file_error ("Setting file position", Fcons (filename, Qnil)); |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3018 } |
|
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3019 |
|
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3020 how_much = 0; |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3021 while (inserted < total) |
| 230 | 3022 { |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3023 /* try is reserved in some compilers (Microsoft C) */ |
|
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3024 int trytry = min (total - inserted, 64 << 10); |
|
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
3025 int this; |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
3026 |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
3027 /* Allow quitting out of the actual I/O. */ |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
3028 immediate_quit = 1; |
|
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
3029 QUIT; |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3030 this = read (fd, &FETCH_CHAR (point + inserted - 1) + 1, trytry); |
|
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
3031 immediate_quit = 0; |
| 230 | 3032 |
| 3033 if (this <= 0) | |
| 3034 { | |
| 3035 how_much = this; | |
| 3036 break; | |
| 3037 } | |
| 3038 | |
| 3039 GPT += this; | |
| 3040 GAP_SIZE -= this; | |
| 3041 ZV += this; | |
| 3042 Z += this; | |
| 3043 inserted += this; | |
| 3044 } | |
| 3045 | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3046 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3047 /* Demacs 1.1.1 91/10/16 HIRANO Satoshi, MW July 1993 */ |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3048 /* Determine file type from name and remove LFs from CR-LFs if the file |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3049 is deemed to be a text file. */ |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3050 { |
|
7130
b3e9a76134d2
(Finsert_file_contents): Fix accessing buffer_file_type
Richard M. Stallman <rms@gnu.org>
parents:
7041
diff
changeset
|
3051 current_buffer->buffer_file_type |
|
b3e9a76134d2
(Finsert_file_contents): Fix accessing buffer_file_type
Richard M. Stallman <rms@gnu.org>
parents:
7041
diff
changeset
|
3052 = call1 (Qfind_buffer_file_type, filename); |
|
b3e9a76134d2
(Finsert_file_contents): Fix accessing buffer_file_type
Richard M. Stallman <rms@gnu.org>
parents:
7041
diff
changeset
|
3053 if (NILP (current_buffer->buffer_file_type)) |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3054 { |
|
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3055 int reduced_size |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3056 = inserted - crlf_to_lf (inserted, &FETCH_CHAR (point - 1) + 1); |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3057 ZV -= reduced_size; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3058 Z -= reduced_size; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3059 GPT -= reduced_size; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3060 GAP_SIZE += reduced_size; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3061 inserted -= reduced_size; |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3062 } |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3063 } |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3064 #endif /* DOS_NT */ |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3065 |
| 230 | 3066 if (inserted > 0) |
|
1240
7365d006d0a0
(Finsert_file_contents): Do record_insert, then inc MODIFF.
Richard M. Stallman <rms@gnu.org>
parents:
1204
diff
changeset
|
3067 { |
|
7365d006d0a0
(Finsert_file_contents): Do record_insert, then inc MODIFF.
Richard M. Stallman <rms@gnu.org>
parents:
1204
diff
changeset
|
3068 record_insert (point, inserted); |
|
1299
b8337cdf2e8b
* fileio.c (Finsert_file_contents): Call offset_intervals() if
Joseph Arceneaux <jla@gnu.org>
parents:
1240
diff
changeset
|
3069 |
|
b8337cdf2e8b
* fileio.c (Finsert_file_contents): Call offset_intervals() if
Joseph Arceneaux <jla@gnu.org>
parents:
1240
diff
changeset
|
3070 /* Only defined if Emacs is compiled with USE_TEXT_PROPERTIES */ |
|
b8337cdf2e8b
* fileio.c (Finsert_file_contents): Call offset_intervals() if
Joseph Arceneaux <jla@gnu.org>
parents:
1240
diff
changeset
|
3071 offset_intervals (current_buffer, point, inserted); |
|
1240
7365d006d0a0
(Finsert_file_contents): Do record_insert, then inc MODIFF.
Richard M. Stallman <rms@gnu.org>
parents:
1204
diff
changeset
|
3072 MODIFF++; |
|
7365d006d0a0
(Finsert_file_contents): Do record_insert, then inc MODIFF.
Richard M. Stallman <rms@gnu.org>
parents:
1204
diff
changeset
|
3073 } |
| 230 | 3074 |
| 3075 close (fd); | |
| 3076 | |
|
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3077 /* Discard the unwind protect for closing the file. */ |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3078 specpdl_ptr--; |
| 230 | 3079 |
| 3080 if (how_much < 0) | |
| 3081 error ("IO error reading %s: %s", | |
|
5517
8b2b6a296cda
Don't declare sys_errlist; declare strerror instead.
Roland McGrath <roland@gnu.org>
parents:
5494
diff
changeset
|
3082 XSTRING (filename)->data, strerror (errno)); |
| 230 | 3083 |
| 3084 notfound: | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3085 handled: |
| 230 | 3086 |
| 485 | 3087 if (!NILP (visit)) |
| 230 | 3088 { |
|
6177
ac2ef13dca1b
(Finsert_file_contents): If undo_list was t, leave it t.
Richard M. Stallman <rms@gnu.org>
parents:
6036
diff
changeset
|
3089 if (!EQ (current_buffer->undo_list, Qt)) |
|
ac2ef13dca1b
(Finsert_file_contents): If undo_list was t, leave it t.
Richard M. Stallman <rms@gnu.org>
parents:
6036
diff
changeset
|
3090 current_buffer->undo_list = Qnil; |
| 230 | 3091 #ifdef APOLLO |
| 3092 stat (XSTRING (filename)->data, &st); | |
| 3093 #endif | |
|
5390
d9c81d7079f3
(Finsert_file_contents): Don't run after change hook
Richard M. Stallman <rms@gnu.org>
parents:
5351
diff
changeset
|
3094 |
|
5395
e11486a64dab
(Finsert_file_contents): Avoid setting buffer-file-name field if ran a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5390
diff
changeset
|
3095 if (NILP (handler)) |
|
e11486a64dab
(Finsert_file_contents): Avoid setting buffer-file-name field if ran a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5390
diff
changeset
|
3096 { |
|
e11486a64dab
(Finsert_file_contents): Avoid setting buffer-file-name field if ran a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5390
diff
changeset
|
3097 current_buffer->modtime = st.st_mtime; |
|
e11486a64dab
(Finsert_file_contents): Avoid setting buffer-file-name field if ran a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5390
diff
changeset
|
3098 current_buffer->filename = filename; |
|
e11486a64dab
(Finsert_file_contents): Avoid setting buffer-file-name field if ran a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5390
diff
changeset
|
3099 } |
|
5390
d9c81d7079f3
(Finsert_file_contents): Don't run after change hook
Richard M. Stallman <rms@gnu.org>
parents:
5351
diff
changeset
|
3100 |
|
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3101 SAVE_MODIFF = MODIFF; |
| 230 | 3102 current_buffer->auto_save_modified = MODIFF; |
|
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
3103 XSETFASTINT (current_buffer->save_length, Z - BEG); |
| 230 | 3104 #ifdef CLASH_DETECTION |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3105 if (NILP (handler)) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3106 { |
|
11658
304577bc9b51
(Finsert_file_contents): Use file_truename for unlocking.
Richard M. Stallman <rms@gnu.org>
parents:
11632
diff
changeset
|
3107 if (!NILP (current_buffer->file_truename)) |
|
304577bc9b51
(Finsert_file_contents): Use file_truename for unlocking.
Richard M. Stallman <rms@gnu.org>
parents:
11632
diff
changeset
|
3108 unlock_file (current_buffer->file_truename); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3109 unlock_file (filename); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3110 } |
| 230 | 3111 #endif /* CLASH_DETECTION */ |
|
9915
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
3112 if (not_regular) |
|
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
3113 Fsignal (Qfile_error, |
|
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
3114 Fcons (build_string ("not a regular file"), |
|
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
3115 Fcons (filename, Qnil))); |
|
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
3116 |
| 230 | 3117 /* If visiting nonexistent file, return nil. */ |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3118 if (current_buffer->modtime == -1) |
| 230 | 3119 report_file_error ("Opening input file", Fcons (filename, Qnil)); |
| 3120 } | |
| 3121 | |
|
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3122 /* Decode file format */ |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3123 if (inserted > 0) |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3124 { |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3125 insval = call3 (Qformat_decode, |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3126 Qnil, make_number (inserted), visit); |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3127 CHECK_NUMBER (insval, 0); |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3128 inserted = XFASTINT (insval); |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3129 } |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3130 |
|
5390
d9c81d7079f3
(Finsert_file_contents): Don't run after change hook
Richard M. Stallman <rms@gnu.org>
parents:
5351
diff
changeset
|
3131 if (inserted > 0 && NILP (visit) && total > 0) |
|
5129
d48d18e20316
(Finsert_file_contents): Don't call signal_after_change
Richard M. Stallman <rms@gnu.org>
parents:
4989
diff
changeset
|
3132 signal_after_change (point, 0, inserted); |
| 230 | 3133 |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3134 if (inserted > 0) |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3135 { |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3136 p = Vafter_insert_file_functions; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3137 while (!NILP (p)) |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3138 { |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3139 insval = call1 (Fcar (p), make_number (inserted)); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3140 if (!NILP (insval)) |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3141 { |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3142 CHECK_NUMBER (insval, 0); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3143 inserted = XFASTINT (insval); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3144 } |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3145 QUIT; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3146 p = Fcdr (p); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3147 } |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3148 } |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3149 |
|
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3150 if (NILP (val)) |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3151 val = Fcons (filename, |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3152 Fcons (make_number (inserted), |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3153 Qnil)); |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3154 |
|
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3155 RETURN_UNGCPRO (unbind_to (count, val)); |
| 230 | 3156 } |
|
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3157 |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3158 static Lisp_Object build_annotations (); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3159 |
|
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3160 /* If build_annotations switched buffers, switch back to BUF. |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3161 Kill the temporary buffer that was selected in the meantime. */ |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3162 |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3163 static Lisp_Object |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3164 build_annotations_unwind (buf) |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3165 Lisp_Object buf; |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3166 { |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3167 Lisp_Object tembuf; |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3168 |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3169 if (XBUFFER (buf) == current_buffer) |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3170 return Qnil; |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3171 tembuf = Fcurrent_buffer (); |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3172 Fset_buffer (buf); |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3173 Fkill_buffer (tembuf); |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3174 return Qnil; |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3175 } |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3176 |
|
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3177 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 6, |
| 230 | 3178 "r\nFWrite region to file: ", |
| 3179 "Write current region into specified file.\n\ | |
| 3180 When called from a program, takes three arguments:\n\ | |
| 3181 START, END and FILENAME. START and END are buffer positions.\n\ | |
| 3182 Optional fourth argument APPEND if non-nil means\n\ | |
| 3183 append to existing file contents (if any).\n\ | |
| 3184 Optional fifth argument VISIT if t means\n\ | |
| 3185 set the last-save-file-modtime of buffer to this file's modtime\n\ | |
| 3186 and mark buffer not modified.\n\ | |
|
1377
dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
Richard M. Stallman <rms@gnu.org>
parents:
1358
diff
changeset
|
3187 If VISIT is a string, it is a second file name;\n\ |
|
dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
Richard M. Stallman <rms@gnu.org>
parents:
1358
diff
changeset
|
3188 the output goes to FILENAME, but the buffer is marked as visiting VISIT.\n\ |
|
dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
Richard M. Stallman <rms@gnu.org>
parents:
1358
diff
changeset
|
3189 VISIT is also the file name to lock and unlock for clash detection.\n\ |
|
1761
b9ef55b0df4a
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1679
diff
changeset
|
3190 If VISIT is neither t nor nil nor a string,\n\ |
|
b9ef55b0df4a
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1679
diff
changeset
|
3191 that means do not print the \"Wrote file\" message.\n\ |
|
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3192 The optional sixth arg LOCKNAME, if non-nil, specifies the name to\n\ |
|
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3193 use for locking and unlocking, overriding FILENAME and VISIT.\n\ |
| 230 | 3194 Kludgy feature: if START is a string, then that string is written\n\ |
| 3195 to the file, instead of any buffer contents, and END is ignored.") | |
|
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3196 (start, end, filename, append, visit, lockname) |
|
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3197 Lisp_Object start, end, filename, append, visit, lockname; |
| 230 | 3198 { |
| 3199 register int desc; | |
| 3200 int failure; | |
| 3201 int save_errno; | |
| 3202 unsigned char *fn; | |
| 3203 struct stat st; | |
|
4950
145c69e39666
(Fwrite_region): Fix minor bugs in POS arg to awrite.
Richard M. Stallman <rms@gnu.org>
parents:
4879
diff
changeset
|
3204 int tem; |
| 230 | 3205 int count = specpdl_ptr - specpdl; |
|
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3206 int count1; |
| 230 | 3207 #ifdef VMS |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3208 unsigned char *fname = 0; /* If non-0, original filename (must rename) */ |
| 230 | 3209 #endif /* VMS */ |
| 848 | 3210 Lisp_Object handler; |
|
2407
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
3211 Lisp_Object visit_file; |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3212 Lisp_Object annotations; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3213 int visiting, quietly; |
|
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3214 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
|
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3215 struct buffer *given_buffer; |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3216 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3217 int buffer_file_type |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3218 = NILP (current_buffer->buffer_file_type) ? O_TEXT : O_BINARY; |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3219 #endif /* DOS_NT */ |
| 230 | 3220 |
|
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3221 if (current_buffer->base_buffer && ! NILP (visit)) |
|
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3222 error ("Cannot do file visiting in an indirect buffer"); |
|
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3223 |
|
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
3224 if (!NILP (start) && !STRINGP (start)) |
| 230 | 3225 validate_region (&start, &end); |
| 3226 | |
|
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3227 GCPRO3 (filename, visit, lockname); |
|
2407
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
3228 filename = Fexpand_file_name (filename, Qnil); |
|
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
3229 if (STRINGP (visit)) |
|
2435
b72453ad92ae
(Fwrite_region): Don't fail to set visit_file.
Richard M. Stallman <rms@gnu.org>
parents:
2407
diff
changeset
|
3230 visit_file = Fexpand_file_name (visit, Qnil); |
|
2407
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
3231 else |
|
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
3232 visit_file = filename; |
|
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
3233 UNGCPRO; |
|
2407
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
3234 |
|
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
3235 visiting = (EQ (visit, Qt) || STRINGP (visit)); |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3236 quietly = !NILP (visit); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3237 |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3238 annotations = Qnil; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3239 |
|
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3240 if (NILP (lockname)) |
|
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3241 lockname = visit_file; |
|
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3242 |
|
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3243 GCPRO5 (start, filename, annotations, visit_file, lockname); |
| 230 | 3244 |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3245 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3246 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
3247 handler = Ffind_file_name_handler (filename, Qwrite_region); |
|
5758
23821c197271
(Fwrite_region): If FILENAME has no handler, see if VISIT has one.
Richard M. Stallman <rms@gnu.org>
parents:
5647
diff
changeset
|
3248 /* If FILENAME has no handler, see if VISIT has one. */ |
|
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
3249 if (NILP (handler) && STRINGP (visit)) |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
3250 handler = Ffind_file_name_handler (visit, Qwrite_region); |
| 848 | 3251 |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3252 if (!NILP (handler)) |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3253 { |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3254 Lisp_Object val; |
|
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
3255 val = call6 (handler, Qwrite_region, start, end, |
|
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
3256 filename, append, visit); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3257 |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3258 if (visiting) |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3259 { |
|
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3260 SAVE_MODIFF = MODIFF; |
|
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
3261 XSETFASTINT (current_buffer->save_length, Z - BEG); |
|
1377
dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
Richard M. Stallman <rms@gnu.org>
parents:
1358
diff
changeset
|
3262 current_buffer->filename = visit_file; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3263 } |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3264 UNGCPRO; |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3265 return val; |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3266 } |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3267 |
|
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
3268 /* Special kludge to simplify auto-saving. */ |
|
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
3269 if (NILP (start)) |
|
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
3270 { |
|
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
3271 XSETFASTINT (start, BEG); |
|
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
3272 XSETFASTINT (end, Z); |
|
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
3273 } |
|
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
3274 |
|
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3275 record_unwind_protect (build_annotations_unwind, Fcurrent_buffer ()); |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3276 count1 = specpdl_ptr - specpdl; |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3277 |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3278 given_buffer = current_buffer; |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3279 annotations = build_annotations (start, end); |
|
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3280 if (current_buffer != given_buffer) |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3281 { |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3282 start = BEGV; |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3283 end = ZV; |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3284 } |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3285 |
| 230 | 3286 #ifdef CLASH_DETECTION |
| 3287 if (!auto_saving) | |
|
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3288 lock_file (lockname); |
| 230 | 3289 #endif /* CLASH_DETECTION */ |
| 3290 | |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3291 fn = XSTRING (filename)->data; |
| 230 | 3292 desc = -1; |
| 485 | 3293 if (!NILP (append)) |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3294 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3295 desc = open (fn, O_WRONLY | buffer_file_type); |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3296 #else /* not DOS_NT */ |
| 230 | 3297 desc = open (fn, O_WRONLY); |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3298 #endif /* not DOS_NT */ |
| 230 | 3299 |
| 3300 if (desc < 0) | |
| 3301 #ifdef VMS | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3302 if (auto_saving) /* Overwrite any previous version of autosave file */ |
| 230 | 3303 { |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3304 vms_truncate (fn); /* if fn exists, truncate to zero length */ |
| 230 | 3305 desc = open (fn, O_RDWR); |
| 3306 if (desc < 0) | |
|
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
3307 desc = creat_copy_attrs (STRINGP (current_buffer->filename) |
| 536 | 3308 ? XSTRING (current_buffer->filename)->data : 0, |
| 3309 fn); | |
| 230 | 3310 } |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3311 else /* Write to temporary name and rename if no errors */ |
| 230 | 3312 { |
| 3313 Lisp_Object temp_name; | |
| 3314 temp_name = Ffile_name_directory (filename); | |
| 3315 | |
| 485 | 3316 if (!NILP (temp_name)) |
| 230 | 3317 { |
| 3318 temp_name = Fmake_temp_name (concat2 (temp_name, | |
| 3319 build_string ("$$SAVE$$"))); | |
| 3320 fname = XSTRING (filename)->data; | |
| 3321 fn = XSTRING (temp_name)->data; | |
| 3322 desc = creat_copy_attrs (fname, fn); | |
| 3323 if (desc < 0) | |
| 3324 { | |
| 3325 /* If we can't open the temporary file, try creating a new | |
| 3326 version of the original file. VMS "creat" creates a | |
| 3327 new version rather than truncating an existing file. */ | |
| 3328 fn = fname; | |
| 3329 fname = 0; | |
| 3330 desc = creat (fn, 0666); | |
| 3331 #if 0 /* This can clobber an existing file and fail to replace it, | |
| 3332 if the user runs out of space. */ | |
| 3333 if (desc < 0) | |
| 3334 { | |
| 3335 /* We can't make a new version; | |
| 3336 try to truncate and rewrite existing version if any. */ | |
| 3337 vms_truncate (fn); | |
| 3338 desc = open (fn, O_RDWR); | |
| 3339 } | |
| 3340 #endif | |
| 3341 } | |
| 3342 } | |
| 3343 else | |
| 3344 desc = creat (fn, 0666); | |
| 3345 } | |
| 3346 #else /* not VMS */ | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3347 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3348 desc = open (fn, |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3349 O_WRONLY | O_TRUNC | O_CREAT | buffer_file_type, |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3350 S_IREAD | S_IWRITE); |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3351 #else /* not DOS_NT */ |
| 230 | 3352 desc = creat (fn, auto_saving ? auto_save_mode_bits : 0666); |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3353 #endif /* not DOS_NT */ |
| 230 | 3354 #endif /* not VMS */ |
| 3355 | |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3356 UNGCPRO; |
|
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3357 |
| 230 | 3358 if (desc < 0) |
| 3359 { | |
| 3360 #ifdef CLASH_DETECTION | |
| 3361 save_errno = errno; | |
|
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3362 if (!auto_saving) unlock_file (lockname); |
| 230 | 3363 errno = save_errno; |
| 3364 #endif /* CLASH_DETECTION */ | |
| 3365 report_file_error ("Opening output file", Fcons (filename, Qnil)); | |
| 3366 } | |
| 3367 | |
| 3368 record_unwind_protect (close_file_unwind, make_number (desc)); | |
| 3369 | |
| 485 | 3370 if (!NILP (append)) |
| 230 | 3371 if (lseek (desc, 0, 2) < 0) |
| 3372 { | |
| 3373 #ifdef CLASH_DETECTION | |
|
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3374 if (!auto_saving) unlock_file (lockname); |
| 230 | 3375 #endif /* CLASH_DETECTION */ |
| 3376 report_file_error ("Lseek error", Fcons (filename, Qnil)); | |
| 3377 } | |
| 3378 | |
| 3379 #ifdef VMS | |
| 3380 /* | |
| 3381 * Kludge Warning: The VMS C RTL likes to insert carriage returns | |
| 3382 * if we do writes that don't end with a carriage return. Furthermore | |
| 3383 * it cannot handle writes of more then 16K. The modified | |
| 3384 * version of "sys_write" in SYSDEP.C (see comment there) copes with | |
| 3385 * this EXCEPT for the last record (iff it doesn't end with a carriage | |
| 3386 * return). This implies that if your buffer doesn't end with a carriage | |
| 3387 * return, you get one free... tough. However it also means that if | |
| 3388 * we make two calls to sys_write (a la the following code) you can | |
| 3389 * get one at the gap as well. The easiest way to fix this (honest) | |
| 3390 * is to move the gap to the next newline (or the end of the buffer). | |
| 3391 * Thus this change. | |
| 3392 * | |
| 3393 * Yech! | |
| 3394 */ | |
| 3395 if (GPT > BEG && GPT_ADDR[-1] != '\n') | |
| 3396 move_gap (find_next_newline (GPT, 1)); | |
| 3397 #endif | |
| 3398 | |
| 3399 failure = 0; | |
| 3400 immediate_quit = 1; | |
| 3401 | |
|
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
3402 if (STRINGP (start)) |
| 230 | 3403 { |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3404 failure = 0 > a_write (desc, XSTRING (start)->data, |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3405 XSTRING (start)->size, 0, &annotations); |
| 230 | 3406 save_errno = errno; |
| 3407 } | |
| 3408 else if (XINT (start) != XINT (end)) | |
| 3409 { | |
|
4950
145c69e39666
(Fwrite_region): Fix minor bugs in POS arg to awrite.
Richard M. Stallman <rms@gnu.org>
parents:
4879
diff
changeset
|
3410 int nwritten = 0; |
| 230 | 3411 if (XINT (start) < GPT) |
| 3412 { | |
| 3413 register int end1 = XINT (end); | |
| 3414 tem = XINT (start); | |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3415 failure = 0 > a_write (desc, &FETCH_CHAR (tem), |
|
4950
145c69e39666
(Fwrite_region): Fix minor bugs in POS arg to awrite.
Richard M. Stallman <rms@gnu.org>
parents:
4879
diff
changeset
|
3416 min (GPT, end1) - tem, tem, &annotations); |
|
145c69e39666
(Fwrite_region): Fix minor bugs in POS arg to awrite.
Richard M. Stallman <rms@gnu.org>
parents:
4879
diff
changeset
|
3417 nwritten += min (GPT, end1) - tem; |
| 230 | 3418 save_errno = errno; |
| 3419 } | |
| 3420 | |
| 3421 if (XINT (end) > GPT && !failure) | |
| 3422 { | |
| 3423 tem = XINT (start); | |
| 3424 tem = max (tem, GPT); | |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3425 failure = 0 > a_write (desc, &FETCH_CHAR (tem), XINT (end) - tem, |
|
4950
145c69e39666
(Fwrite_region): Fix minor bugs in POS arg to awrite.
Richard M. Stallman <rms@gnu.org>
parents:
4879
diff
changeset
|
3426 tem, &annotations); |
|
145c69e39666
(Fwrite_region): Fix minor bugs in POS arg to awrite.
Richard M. Stallman <rms@gnu.org>
parents:
4879
diff
changeset
|
3427 nwritten += XINT (end) - tem; |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3428 save_errno = errno; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3429 } |
|
4950
145c69e39666
(Fwrite_region): Fix minor bugs in POS arg to awrite.
Richard M. Stallman <rms@gnu.org>
parents:
4879
diff
changeset
|
3430 |
|
145c69e39666
(Fwrite_region): Fix minor bugs in POS arg to awrite.
Richard M. Stallman <rms@gnu.org>
parents:
4879
diff
changeset
|
3431 if (nwritten == 0) |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3432 { |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3433 /* If file was empty, still need to write the annotations */ |
|
4950
145c69e39666
(Fwrite_region): Fix minor bugs in POS arg to awrite.
Richard M. Stallman <rms@gnu.org>
parents:
4879
diff
changeset
|
3434 failure = 0 > a_write (desc, "", 0, XINT (start), &annotations); |
| 230 | 3435 save_errno = errno; |
| 3436 } | |
| 3437 } | |
| 3438 | |
| 3439 immediate_quit = 0; | |
| 3440 | |
|
2280
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
3441 #ifdef HAVE_FSYNC |
| 230 | 3442 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun). |
| 3443 Disk full in NFS may be reported here. */ | |
|
3415
c37d05ce7e52
(Fwrite_region): Don't fsync if autosaving.
Richard M. Stallman <rms@gnu.org>
parents:
3410
diff
changeset
|
3444 /* mib says that closing the file will try to write as fast as NFS can do |
|
c37d05ce7e52
(Fwrite_region): Don't fsync if autosaving.
Richard M. Stallman <rms@gnu.org>
parents:
3410
diff
changeset
|
3445 it, and that means the fsync here is not crucial for autosave files. */ |
|
c37d05ce7e52
(Fwrite_region): Don't fsync if autosaving.
Richard M. Stallman <rms@gnu.org>
parents:
3410
diff
changeset
|
3446 if (!auto_saving && fsync (desc) < 0) |
|
12540
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
3447 { |
|
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
3448 /* If fsync fails with EINTR, don't treat that as serious. */ |
|
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
3449 if (errno != EINTR) |
|
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
3450 failure = 1, save_errno = errno; |
|
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
3451 } |
| 230 | 3452 #endif |
| 3453 | |
| 3454 /* Spurious "file has changed on disk" warnings have been | |
| 3455 observed on Suns as well. | |
| 3456 It seems that `close' can change the modtime, under nfs. | |
| 3457 | |
| 3458 (This has supposedly been fixed in Sunos 4, | |
| 3459 but who knows about all the other machines with NFS?) */ | |
| 3460 #if 0 | |
| 3461 | |
| 3462 /* On VMS and APOLLO, must do the stat after the close | |
| 3463 since closing changes the modtime. */ | |
| 3464 #ifndef VMS | |
| 3465 #ifndef APOLLO | |
| 3466 /* Recall that #if defined does not work on VMS. */ | |
| 3467 #define FOO | |
| 3468 fstat (desc, &st); | |
| 3469 #endif | |
| 3470 #endif | |
| 3471 #endif | |
| 3472 | |
| 3473 /* NFS can report a write failure now. */ | |
| 3474 if (close (desc) < 0) | |
| 3475 failure = 1, save_errno = errno; | |
| 3476 | |
| 3477 #ifdef VMS | |
| 3478 /* If we wrote to a temporary name and had no errors, rename to real name. */ | |
| 3479 if (fname) | |
| 3480 { | |
| 3481 if (!failure) | |
| 3482 failure = (rename (fn, fname) != 0), save_errno = errno; | |
| 3483 fn = fname; | |
| 3484 } | |
| 3485 #endif /* VMS */ | |
| 3486 | |
| 3487 #ifndef FOO | |
| 3488 stat (fn, &st); | |
| 3489 #endif | |
|
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3490 /* Discard the unwind protect for close_file_unwind. */ |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3491 specpdl_ptr = specpdl + count1; |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3492 /* Restore the original current buffer. */ |
|
8662
627a2ed242c0
(Ffile_accessible_directory_p): No need for gcpro.
Richard M. Stallman <rms@gnu.org>
parents:
8603
diff
changeset
|
3493 visit_file = unbind_to (count, visit_file); |
| 230 | 3494 |
| 3495 #ifdef CLASH_DETECTION | |
| 3496 if (!auto_saving) | |
|
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3497 unlock_file (lockname); |
| 230 | 3498 #endif /* CLASH_DETECTION */ |
| 3499 | |
| 3500 /* Do this before reporting IO error | |
| 3501 to avoid a "file has changed on disk" warning on | |
| 3502 next attempt to save. */ | |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3503 if (visiting) |
| 230 | 3504 current_buffer->modtime = st.st_mtime; |
| 3505 | |
| 3506 if (failure) | |
|
5517
8b2b6a296cda
Don't declare sys_errlist; declare strerror instead.
Roland McGrath <roland@gnu.org>
parents:
5494
diff
changeset
|
3507 error ("IO error writing %s: %s", fn, strerror (save_errno)); |
| 230 | 3508 |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3509 if (visiting) |
| 230 | 3510 { |
|
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3511 SAVE_MODIFF = MODIFF; |
|
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
3512 XSETFASTINT (current_buffer->save_length, Z - BEG); |
|
1377
dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
Richard M. Stallman <rms@gnu.org>
parents:
1358
diff
changeset
|
3513 current_buffer->filename = visit_file; |
|
7551
69f20f10799a
(Fwrite_region): Set update_mode_lines.
Richard M. Stallman <rms@gnu.org>
parents:
7549
diff
changeset
|
3514 update_mode_lines++; |
| 230 | 3515 } |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3516 else if (quietly) |
| 230 | 3517 return Qnil; |
| 3518 | |
| 3519 if (!auto_saving) | |
|
1377
dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
Richard M. Stallman <rms@gnu.org>
parents:
1358
diff
changeset
|
3520 message ("Wrote %s", XSTRING (visit_file)->data); |
| 230 | 3521 |
| 3522 return Qnil; | |
| 3523 } | |
| 3524 | |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3525 Lisp_Object merge (); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3526 |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3527 DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0, |
|
4853
3ec2205d12b5
(Fcar_less_than_car): Fix typo in previous change.
Richard M. Stallman <rms@gnu.org>
parents:
4841
diff
changeset
|
3528 "Return t if (car A) is numerically less than (car B).") |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3529 (a, b) |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3530 Lisp_Object a, b; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3531 { |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3532 return Flss (Fcar (a), Fcar (b)); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3533 } |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3534 |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3535 /* Build the complete list of annotations appropriate for writing out |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3536 the text between START and END, by calling all the functions in |
|
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3537 write-region-annotate-functions and merging the lists they return. |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3538 If one of these functions switches to a different buffer, we assume |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3539 that buffer contains altered text. Therefore, the caller must |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3540 make sure to restore the current buffer in all cases, |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3541 as save-excursion would do. */ |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3542 |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3543 static Lisp_Object |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3544 build_annotations (start, end) |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3545 Lisp_Object start, end; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3546 { |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3547 Lisp_Object annotations; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3548 Lisp_Object p, res; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3549 struct gcpro gcpro1, gcpro2; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3550 |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3551 annotations = Qnil; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3552 p = Vwrite_region_annotate_functions; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3553 GCPRO2 (annotations, p); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3554 while (!NILP (p)) |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3555 { |
|
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3556 struct buffer *given_buffer = current_buffer; |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3557 Vwrite_region_annotations_so_far = annotations; |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3558 res = call2 (Fcar (p), start, end); |
|
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3559 /* If the function makes a different buffer current, |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3560 assume that means this buffer contains altered text to be output. |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3561 Reset START and END from the buffer bounds |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3562 and discard all previous annotations because they should have |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3563 been dealt with by this function. */ |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3564 if (current_buffer != given_buffer) |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3565 { |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3566 start = BEGV; |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3567 end = ZV; |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3568 annotations = Qnil; |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
3569 } |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3570 Flength (res); /* Check basic validity of return value */ |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3571 annotations = merge (annotations, res, Qcar_less_than_car); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3572 p = Fcdr (p); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3573 } |
|
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3574 |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3575 /* Now do the same for annotation functions implied by the file-format */ |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3576 if (auto_saving && (!EQ (Vauto_save_file_format, Qt))) |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3577 p = Vauto_save_file_format; |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3578 else |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3579 p = current_buffer->file_format; |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3580 while (!NILP (p)) |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3581 { |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3582 struct buffer *given_buffer = current_buffer; |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3583 Vwrite_region_annotations_so_far = annotations; |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3584 res = call3 (Qformat_annotate_function, Fcar (p), start, end); |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3585 if (current_buffer != given_buffer) |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3586 { |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3587 start = BEGV; |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3588 end = ZV; |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3589 annotations = Qnil; |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3590 } |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3591 Flength (res); |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3592 annotations = merge (annotations, res, Qcar_less_than_car); |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3593 p = Fcdr (p); |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
3594 } |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3595 UNGCPRO; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3596 return annotations; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3597 } |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3598 |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3599 /* Write to descriptor DESC the LEN characters starting at ADDR, |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3600 assuming they start at position POS in the buffer. |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3601 Intersperse with them the annotations from *ANNOT |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3602 (those which fall within the range of positions POS to POS + LEN), |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3603 each at its appropriate position. |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3604 |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3605 Modify *ANNOT by discarding elements as we output them. |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3606 The return value is negative in case of system call failure. */ |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3607 |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3608 int |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3609 a_write (desc, addr, len, pos, annot) |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3610 int desc; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3611 register char *addr; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3612 register int len; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3613 int pos; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3614 Lisp_Object *annot; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3615 { |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3616 Lisp_Object tem; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3617 int nextpos; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3618 int lastpos = pos + len; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3619 |
|
8079
3f543986a45a
(a_write): Loop while *ANNOT is listp, not consp. Previous code omitted
Roland McGrath <roland@gnu.org>
parents:
8068
diff
changeset
|
3620 while (NILP (*annot) || CONSP (*annot)) |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3621 { |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3622 tem = Fcar_safe (Fcar (*annot)); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3623 if (INTEGERP (tem) && XINT (tem) >= pos && XFASTINT (tem) <= lastpos) |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3624 nextpos = XFASTINT (tem); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3625 else |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3626 return e_write (desc, addr, lastpos - pos); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3627 if (nextpos > pos) |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3628 { |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3629 if (0 > e_write (desc, addr, nextpos - pos)) |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3630 return -1; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3631 addr += nextpos - pos; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3632 pos = nextpos; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3633 } |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3634 tem = Fcdr (Fcar (*annot)); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3635 if (STRINGP (tem)) |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3636 { |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3637 if (0 > e_write (desc, XSTRING (tem)->data, XSTRING (tem)->size)) |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3638 return -1; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3639 } |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3640 *annot = Fcdr (*annot); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3641 } |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3642 } |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3643 |
| 230 | 3644 int |
| 3645 e_write (desc, addr, len) | |
| 3646 int desc; | |
| 3647 register char *addr; | |
| 3648 register int len; | |
| 3649 { | |
| 3650 char buf[16 * 1024]; | |
| 3651 register char *p, *end; | |
| 3652 | |
| 3653 if (!EQ (current_buffer->selective_display, Qt)) | |
| 3654 return write (desc, addr, len) - len; | |
| 3655 else | |
| 3656 { | |
| 3657 p = buf; | |
| 3658 end = p + sizeof buf; | |
| 3659 while (len--) | |
| 3660 { | |
| 3661 if (p == end) | |
| 3662 { | |
| 3663 if (write (desc, buf, sizeof buf) != sizeof buf) | |
| 3664 return -1; | |
| 3665 p = buf; | |
| 3666 } | |
| 3667 *p = *addr++; | |
| 3668 if (*p++ == '\015') | |
| 3669 p[-1] = '\n'; | |
| 3670 } | |
| 3671 if (p != buf) | |
| 3672 if (write (desc, buf, p - buf) != p - buf) | |
| 3673 return -1; | |
| 3674 } | |
| 3675 return 0; | |
| 3676 } | |
| 3677 | |
| 3678 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime, | |
| 3679 Sverify_visited_file_modtime, 1, 1, 0, | |
| 3680 "Return t if last mod time of BUF's visited file matches what BUF records.\n\ | |
| 3681 This means that the file has not been changed since it was visited or saved.") | |
| 3682 (buf) | |
| 3683 Lisp_Object buf; | |
| 3684 { | |
| 3685 struct buffer *b; | |
| 3686 struct stat st; | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3687 Lisp_Object handler; |
| 230 | 3688 |
| 3689 CHECK_BUFFER (buf, 0); | |
| 3690 b = XBUFFER (buf); | |
| 3691 | |
|
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
3692 if (!STRINGP (b->filename)) return Qt; |
| 230 | 3693 if (b->modtime == 0) return Qt; |
| 3694 | |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3695 /* If the file name has special constructs in it, |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3696 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
3697 handler = Ffind_file_name_handler (b->filename, |
|
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
3698 Qverify_visited_file_modtime); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3699 if (!NILP (handler)) |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3700 return call2 (handler, Qverify_visited_file_modtime, buf); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3701 |
| 230 | 3702 if (stat (XSTRING (b->filename)->data, &st) < 0) |
| 3703 { | |
| 3704 /* If the file doesn't exist now and didn't exist before, | |
| 3705 we say that it isn't modified, provided the error is a tame one. */ | |
| 3706 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR) | |
| 3707 st.st_mtime = -1; | |
| 3708 else | |
| 3709 st.st_mtime = 0; | |
| 3710 } | |
| 3711 if (st.st_mtime == b->modtime | |
| 3712 /* If both are positive, accept them if they are off by one second. */ | |
| 3713 || (st.st_mtime > 0 && b->modtime > 0 | |
| 3714 && (st.st_mtime == b->modtime + 1 | |
| 3715 || st.st_mtime == b->modtime - 1))) | |
| 3716 return Qt; | |
| 3717 return Qnil; | |
| 3718 } | |
| 3719 | |
| 3720 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime, | |
| 3721 Sclear_visited_file_modtime, 0, 0, 0, | |
| 3722 "Clear out records of last mod time of visited file.\n\ | |
| 3723 Next attempt to save will certainly not complain of a discrepancy.") | |
| 3724 () | |
| 3725 { | |
| 3726 current_buffer->modtime = 0; | |
| 3727 return Qnil; | |
| 3728 } | |
| 3729 | |
|
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3730 DEFUN ("visited-file-modtime", Fvisited_file_modtime, |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3731 Svisited_file_modtime, 0, 0, 0, |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3732 "Return the current buffer's recorded visited file modification time.\n\ |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3733 The value is a list of the form (HIGH . LOW), like the time values\n\ |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3734 that `file-attributes' returns.") |
| 230 | 3735 () |
| 3736 { | |
|
11878
86257fdd585c
(Fvisited_file_modtime): Cast arg to long_to_cons.
Karl Heuer <kwzh@gnu.org>
parents:
11667
diff
changeset
|
3737 return long_to_cons ((unsigned long) current_buffer->modtime); |
|
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3738 } |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3739 |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3740 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime, |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3741 Sset_visited_file_modtime, 0, 1, 0, |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3742 "Update buffer's recorded modification time from the visited file's time.\n\ |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3743 Useful if the buffer was not read from the file normally\n\ |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3744 or if the file itself has been changed for some known benign reason.\n\ |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3745 An argument specifies the modification time value to use\n\ |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3746 \(instead of that of the visited file), in the form of a list\n\ |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3747 \(HIGH . LOW) or (HIGH LOW).") |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3748 (time_list) |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3749 Lisp_Object time_list; |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3750 { |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3751 if (!NILP (time_list)) |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3752 current_buffer->modtime = cons_to_long (time_list); |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3753 else |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3754 { |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3755 register Lisp_Object filename; |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3756 struct stat st; |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3757 Lisp_Object handler; |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3758 |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3759 filename = Fexpand_file_name (current_buffer->filename, Qnil); |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3760 |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3761 /* If the file name has special constructs in it, |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3762 call the corresponding file handler. */ |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
3763 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime); |
|
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3764 if (!NILP (handler)) |
|
3721
4550c56785d8
(Fset_visited_file_modtime): Don't give the handler
Richard M. Stallman <rms@gnu.org>
parents:
3705
diff
changeset
|
3765 /* The handler can find the file name the same way we did. */ |
|
3829
4130587b6ffc
* fileio.c (Fset_visited_file_modtime): We're only passing two
Jim Blandy <jimb@redhat.com>
parents:
3787
diff
changeset
|
3766 return call2 (handler, Qset_visited_file_modtime, Qnil); |
|
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3767 else if (stat (XSTRING (filename)->data, &st) >= 0) |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3768 current_buffer->modtime = st.st_mtime; |
|
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3769 } |
| 230 | 3770 |
| 3771 return Qnil; | |
| 3772 } | |
| 3773 | |
| 3774 Lisp_Object | |
| 3775 auto_save_error () | |
| 3776 { | |
| 3777 ring_bell (); | |
|
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
3778 message ("Autosaving...error for %s", XSTRING (current_buffer->name)->data); |
| 806 | 3779 Fsleep_for (make_number (1), Qnil); |
|
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
3780 message ("Autosaving...error!for %s", XSTRING (current_buffer->name)->data); |
| 806 | 3781 Fsleep_for (make_number (1), Qnil); |
|
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
3782 message ("Autosaving...error for %s", XSTRING (current_buffer->name)->data); |
| 806 | 3783 Fsleep_for (make_number (1), Qnil); |
| 230 | 3784 return Qnil; |
| 3785 } | |
| 3786 | |
| 3787 Lisp_Object | |
| 3788 auto_save_1 () | |
| 3789 { | |
| 3790 unsigned char *fn; | |
| 3791 struct stat st; | |
| 3792 | |
| 3793 /* Get visited file's mode to become the auto save file's mode. */ | |
| 3794 if (stat (XSTRING (current_buffer->filename)->data, &st) >= 0) | |
| 3795 /* But make sure we can overwrite it later! */ | |
| 3796 auto_save_mode_bits = st.st_mode | 0600; | |
| 3797 else | |
| 3798 auto_save_mode_bits = 0666; | |
| 3799 | |
| 3800 return | |
| 3801 Fwrite_region (Qnil, Qnil, | |
| 3802 current_buffer->auto_save_file_name, | |
|
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
3803 Qnil, Qlambda, Qnil); |
| 230 | 3804 } |
| 3805 | |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3806 static Lisp_Object |
|
7526
bf357bdc648e
(Fdo_auto_save): Save listdesc as an integer, only if open.
Richard M. Stallman <rms@gnu.org>
parents:
7493
diff
changeset
|
3807 do_auto_save_unwind (desc) /* used as unwind-protect function */ |
|
bf357bdc648e
(Fdo_auto_save): Save listdesc as an integer, only if open.
Richard M. Stallman <rms@gnu.org>
parents:
7493
diff
changeset
|
3808 Lisp_Object desc; |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3809 { |
|
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3810 auto_saving = 0; |
|
7526
bf357bdc648e
(Fdo_auto_save): Save listdesc as an integer, only if open.
Richard M. Stallman <rms@gnu.org>
parents:
7493
diff
changeset
|
3811 close (XINT (desc)); |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3812 return Qnil; |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3813 } |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3814 |
| 230 | 3815 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "", |
| 3816 "Auto-save all buffers that need it.\n\ | |
| 3817 This is all buffers that have auto-saving enabled\n\ | |
| 3818 and are changed since last auto-saved.\n\ | |
| 3819 Auto-saving writes the buffer into a file\n\ | |
| 3820 so that your editing is not lost if the system crashes.\n\ | |
|
6209
2a8a76b9a2fe
(Fdo_auto_save): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
6194
diff
changeset
|
3821 This file is not the file you visited; that changes only when you save.\n\ |
|
2a8a76b9a2fe
(Fdo_auto_save): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
6194
diff
changeset
|
3822 Normally we run the normal hook `auto-save-hook' before saving.\n\n\ |
| 230 | 3823 Non-nil first argument means do not print any message if successful.\n\ |
| 621 | 3824 Non-nil second argument means save only current buffer.") |
|
1775
f9ac4c0d8b72
* fileio.c (Fdo_auto_save): Add CURRENT_ONLY argument, as
Jim Blandy <jimb@redhat.com>
parents:
1763
diff
changeset
|
3825 (no_message, current_only) |
|
f9ac4c0d8b72
* fileio.c (Fdo_auto_save): Add CURRENT_ONLY argument, as
Jim Blandy <jimb@redhat.com>
parents:
1763
diff
changeset
|
3826 Lisp_Object no_message, current_only; |
| 230 | 3827 { |
| 3828 struct buffer *old = current_buffer, *b; | |
| 3829 Lisp_Object tail, buf; | |
| 3830 int auto_saved = 0; | |
| 3831 char *omessage = echo_area_glyphs; | |
|
5875
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
3832 int omessage_length = echo_area_glyphs_length; |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3833 extern int minibuf_level; |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3834 int do_handled_files; |
|
4270
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
3835 Lisp_Object oquit; |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3836 int listdesc; |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3837 int count = specpdl_ptr - specpdl; |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3838 int *ptr; |
|
4270
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
3839 |
|
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
3840 /* Ordinarily don't quit within this function, |
|
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
3841 but don't make it impossible to quit (in case we get hung in I/O). */ |
|
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
3842 oquit = Vquit_flag; |
|
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
3843 Vquit_flag = Qnil; |
| 230 | 3844 |
| 3845 /* No GCPRO needed, because (when it matters) all Lisp_Object variables | |
| 3846 point to non-strings reached from Vbuffer_alist. */ | |
| 3847 | |
| 3848 if (minibuf_level) | |
|
1775
f9ac4c0d8b72
* fileio.c (Fdo_auto_save): Add CURRENT_ONLY argument, as
Jim Blandy <jimb@redhat.com>
parents:
1763
diff
changeset
|
3849 no_message = Qt; |
| 230 | 3850 |
| 485 | 3851 if (!NILP (Vrun_hooks)) |
| 230 | 3852 call1 (Vrun_hooks, intern ("auto-save-hook")); |
| 3853 | |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3854 if (STRINGP (Vauto_save_list_file_name)) |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3855 { |
|
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
3856 Lisp_Object listfile; |
|
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
3857 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil); |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3858 #ifdef DOS_NT |
|
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
3859 listdesc = open (XSTRING (listfile)->data, |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3860 O_WRONLY | O_TRUNC | O_CREAT | O_TEXT, |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3861 S_IREAD | S_IWRITE); |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3862 #else /* not DOS_NT */ |
|
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
3863 listdesc = creat (XSTRING (listfile)->data, 0666); |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3864 #endif /* not DOS_NT */ |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3865 } |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3866 else |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3867 listdesc = -1; |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3868 |
|
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3869 /* Arrange to close that file whether or not we get an error. |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3870 Also reset auto_saving to 0. */ |
|
7526
bf357bdc648e
(Fdo_auto_save): Save listdesc as an integer, only if open.
Richard M. Stallman <rms@gnu.org>
parents:
7493
diff
changeset
|
3871 if (listdesc >= 0) |
|
bf357bdc648e
(Fdo_auto_save): Save listdesc as an integer, only if open.
Richard M. Stallman <rms@gnu.org>
parents:
7493
diff
changeset
|
3872 record_unwind_protect (do_auto_save_unwind, make_number (listdesc)); |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3873 |
|
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3874 auto_saving = 1; |
|
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3875 |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3876 /* First, save all files which don't have handlers. If Emacs is |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3877 crashing, the handlers may tweak what is causing Emacs to crash |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3878 in the first place, and it would be a shame if Emacs failed to |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3879 autosave perfectly ordinary files because it couldn't handle some |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3880 ange-ftp'd file. */ |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3881 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++) |
|
9962
72bee09fc541
(Fdo_auto_save): Use the new type-test macros.
Karl Heuer <kwzh@gnu.org>
parents:
9955
diff
changeset
|
3882 for (tail = Vbuffer_alist; GC_CONSP (tail); tail = XCONS (tail)->cdr) |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3883 { |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3884 buf = XCONS (XCONS (tail)->car)->cdr; |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3885 b = XBUFFER (buf); |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3886 |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3887 /* Record all the buffers that have auto save mode |
|
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
3888 in the special file that lists them. For each of these buffers, |
|
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
3889 Record visited name (if any) and auto save name. */ |
|
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
3890 if (STRINGP (b->auto_save_file_name) |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3891 && listdesc >= 0 && do_handled_files == 0) |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3892 { |
|
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
3893 if (!NILP (b->filename)) |
|
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
3894 { |
|
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
3895 write (listdesc, XSTRING (b->filename)->data, |
|
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
3896 XSTRING (b->filename)->size); |
|
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
3897 } |
|
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
3898 write (listdesc, "\n", 1); |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3899 write (listdesc, XSTRING (b->auto_save_file_name)->data, |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3900 XSTRING (b->auto_save_file_name)->size); |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3901 write (listdesc, "\n", 1); |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3902 } |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3903 |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3904 if (!NILP (current_only) |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3905 && b != current_buffer) |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3906 continue; |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3907 |
|
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3908 /* Don't auto-save indirect buffers. |
|
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3909 The base buffer takes care of it. */ |
|
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3910 if (b->base_buffer) |
|
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3911 continue; |
|
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3912 |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3913 /* Check for auto save enabled |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3914 and file changed since last auto save |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3915 and file changed since last real save. */ |
|
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
3916 if (STRINGP (b->auto_save_file_name) |
|
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3917 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b) |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3918 && b->auto_save_modified < BUF_MODIFF (b) |
|
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
3919 /* -1 means we've turned off autosaving for a while--see below. */ |
|
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
3920 && XINT (b->save_length) >= 0 |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3921 && (do_handled_files |
|
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
3922 || NILP (Ffind_file_name_handler (b->auto_save_file_name, |
|
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
3923 Qwrite_region)))) |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3924 { |
|
5553
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3925 EMACS_TIME before_time, after_time; |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3926 |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3927 EMACS_GET_TIME (before_time); |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3928 |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3929 /* If we had a failure, don't try again for 20 minutes. */ |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3930 if (b->auto_save_failure_time >= 0 |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3931 && EMACS_SECS (before_time) - b->auto_save_failure_time < 1200) |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3932 continue; |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3933 |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3934 if ((XFASTINT (b->save_length) * 10 |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3935 > (BUF_Z (b) - BUF_BEG (b)) * 13) |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3936 /* A short file is likely to change a large fraction; |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3937 spare the user annoying messages. */ |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3938 && XFASTINT (b->save_length) > 5000 |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3939 /* These messages are frequent and annoying for `*mail*'. */ |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3940 && !EQ (b->filename, Qnil) |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3941 && NILP (no_message)) |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3942 { |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3943 /* It has shrunk too much; turn off auto-saving here. */ |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3944 message ("Buffer %s has shrunk a lot; auto save turned off there", |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3945 XSTRING (b->name)->data); |
|
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
3946 /* Turn off auto-saving until there's a real save, |
|
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
3947 and prevent any more warnings. */ |
|
9266
811ad893828b
(Fdefault_file_modes, Finsert_file_contents, Fdo_auto_save): Use new accessor
Karl Heuer <kwzh@gnu.org>
parents:
9241
diff
changeset
|
3948 XSETINT (b->save_length, -1); |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3949 Fsleep_for (make_number (1), Qnil); |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3950 continue; |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3951 } |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3952 set_buffer_internal (b); |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3953 if (!auto_saved && NILP (no_message)) |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3954 message1 ("Auto-saving..."); |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3955 internal_condition_case (auto_save_1, Qt, auto_save_error); |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3956 auto_saved++; |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3957 b->auto_save_modified = BUF_MODIFF (b); |
|
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
3958 XSETFASTINT (current_buffer->save_length, Z - BEG); |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3959 set_buffer_internal (old); |
|
5553
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3960 |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3961 EMACS_GET_TIME (after_time); |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3962 |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3963 /* If auto-save took more than 60 seconds, |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3964 assume it was an NFS failure that got a timeout. */ |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3965 if (EMACS_SECS (after_time) - EMACS_SECS (before_time) > 60) |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3966 b->auto_save_failure_time = EMACS_SECS (after_time); |
|
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3967 } |
|
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3968 } |
| 230 | 3969 |
|
1059
430923239064
(Fdo_auto_save): Always call record_auto_save.
Richard M. Stallman <rms@gnu.org>
parents:
1044
diff
changeset
|
3970 /* Prevent another auto save till enough input events come in. */ |
|
430923239064
(Fdo_auto_save): Always call record_auto_save.
Richard M. Stallman <rms@gnu.org>
parents:
1044
diff
changeset
|
3971 record_auto_save (); |
| 230 | 3972 |
|
1775
f9ac4c0d8b72
* fileio.c (Fdo_auto_save): Add CURRENT_ONLY argument, as
Jim Blandy <jimb@redhat.com>
parents:
1763
diff
changeset
|
3973 if (auto_saved && NILP (no_message)) |
|
5875
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
3974 { |
|
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
3975 if (omessage) |
|
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
3976 message2 (omessage, omessage_length); |
|
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
3977 else |
|
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
3978 message1 ("Auto-saving...done"); |
|
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
3979 } |
| 230 | 3980 |
|
4270
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
3981 Vquit_flag = oquit; |
|
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
3982 |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
3983 unbind_to (count, Qnil); |
| 230 | 3984 return Qnil; |
| 3985 } | |
| 3986 | |
| 3987 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved, | |
| 3988 Sset_buffer_auto_saved, 0, 0, 0, | |
| 3989 "Mark current buffer as auto-saved with its current text.\n\ | |
| 3990 No auto-save file will be written until the buffer changes again.") | |
| 3991 () | |
| 3992 { | |
| 3993 current_buffer->auto_save_modified = MODIFF; | |
|
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
3994 XSETFASTINT (current_buffer->save_length, Z - BEG); |
|
5553
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3995 current_buffer->auto_save_failure_time = -1; |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3996 return Qnil; |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3997 } |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3998 |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
3999 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure, |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
4000 Sclear_buffer_auto_save_failure, 0, 0, 0, |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
4001 "Clear any record of a recent auto-save failure in the current buffer.") |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
4002 () |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
4003 { |
|
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
4004 current_buffer->auto_save_failure_time = -1; |
| 230 | 4005 return Qnil; |
| 4006 } | |
| 4007 | |
| 4008 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p, | |
| 4009 0, 0, 0, | |
| 4010 "Return t if buffer has been auto-saved since last read in or saved.") | |
| 4011 () | |
| 4012 { | |
|
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
4013 return (SAVE_MODIFF < current_buffer->auto_save_modified) ? Qt : Qnil; |
| 230 | 4014 } |
| 4015 | |
| 4016 /* Reading and completing file names */ | |
| 4017 extern Lisp_Object Ffile_name_completion (), Ffile_name_all_completions (); | |
| 4018 | |
|
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4019 /* In the string VAL, change each $ to $$ and return the result. */ |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4020 |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4021 static Lisp_Object |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4022 double_dollars (val) |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4023 Lisp_Object val; |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4024 { |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4025 register unsigned char *old, *new; |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4026 register int n; |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4027 int osize, count; |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4028 |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4029 osize = XSTRING (val)->size; |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4030 /* Quote "$" as "$$" to get it past substitute-in-file-name */ |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4031 for (n = osize, count = 0, old = XSTRING (val)->data; n > 0; n--) |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4032 if (*old++ == '$') count++; |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4033 if (count > 0) |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4034 { |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4035 old = XSTRING (val)->data; |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4036 val = Fmake_string (make_number (osize + count), make_number (0)); |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4037 new = XSTRING (val)->data; |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4038 for (n = osize; n > 0; n--) |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4039 if (*old != '$') |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4040 *new++ = *old++; |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4041 else |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4042 { |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4043 *new++ = '$'; |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4044 *new++ = '$'; |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4045 old++; |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4046 } |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4047 } |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4048 return val; |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4049 } |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4050 |
| 230 | 4051 DEFUN ("read-file-name-internal", Fread_file_name_internal, Sread_file_name_internal, |
| 4052 3, 3, 0, | |
| 4053 "Internal subroutine for read-file-name. Do not call this.") | |
| 4054 (string, dir, action) | |
| 4055 Lisp_Object string, dir, action; | |
| 4056 /* action is nil for complete, t for return list of completions, | |
| 4057 lambda for verify final value */ | |
| 4058 { | |
| 4059 Lisp_Object name, specdir, realdir, val, orig_string; | |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4060 int changed; |
|
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
4061 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4062 |
|
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4063 realdir = dir; |
|
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4064 name = string; |
|
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4065 orig_string = Qnil; |
|
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4066 specdir = Qnil; |
|
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4067 changed = 0; |
|
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4068 /* No need to protect ACTION--we only compare it with t and nil. */ |
|
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
4069 GCPRO5 (string, realdir, name, specdir, orig_string); |
| 230 | 4070 |
| 4071 if (XSTRING (string)->size == 0) | |
| 4072 { | |
| 4073 if (EQ (action, Qlambda)) | |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4074 { |
|
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4075 UNGCPRO; |
|
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4076 return Qnil; |
|
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4077 } |
| 230 | 4078 } |
| 4079 else | |
| 4080 { | |
| 4081 orig_string = string; | |
| 4082 string = Fsubstitute_in_file_name (string); | |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4083 changed = NILP (Fstring_equal (string, orig_string)); |
| 230 | 4084 name = Ffile_name_nondirectory (string); |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4085 val = Ffile_name_directory (string); |
|
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4086 if (! NILP (val)) |
|
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4087 realdir = Fexpand_file_name (val, realdir); |
| 230 | 4088 } |
| 4089 | |
| 485 | 4090 if (NILP (action)) |
| 230 | 4091 { |
| 4092 specdir = Ffile_name_directory (string); | |
| 4093 val = Ffile_name_completion (name, realdir); | |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4094 UNGCPRO; |
|
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
4095 if (!STRINGP (val)) |
| 230 | 4096 { |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4097 if (changed) |
|
8454
b09c4b7a4729
(Fread_file_name_internal): Call double_dollars when `changed' is set.
Richard M. Stallman <rms@gnu.org>
parents:
8317
diff
changeset
|
4098 return double_dollars (string); |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4099 return val; |
| 230 | 4100 } |
| 4101 | |
| 485 | 4102 if (!NILP (specdir)) |
| 230 | 4103 val = concat2 (specdir, val); |
| 4104 #ifndef VMS | |
|
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4105 return double_dollars (val); |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4106 #else /* not VMS */ |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4107 return val; |
|
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4108 #endif /* not VMS */ |
| 230 | 4109 } |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4110 UNGCPRO; |
| 230 | 4111 |
| 4112 if (EQ (action, Qt)) | |
| 4113 return Ffile_name_all_completions (name, realdir); | |
| 4114 /* Only other case actually used is ACTION = lambda */ | |
| 4115 #ifdef VMS | |
| 4116 /* Supposedly this helps commands such as `cd' that read directory names, | |
| 4117 but can someone explain how it helps them? -- RMS */ | |
| 4118 if (XSTRING (name)->size == 0) | |
| 4119 return Qt; | |
| 4120 #endif /* VMS */ | |
| 4121 return Ffile_exists_p (string); | |
| 4122 } | |
| 4123 | |
| 4124 DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 5, 0, | |
| 4125 "Read file name, prompting with PROMPT and completing in directory DIR.\n\ | |
| 4126 Value is not expanded---you must call `expand-file-name' yourself.\n\ | |
| 4127 Default name to DEFAULT if user enters a null string.\n\ | |
|
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
4128 (If DEFAULT is omitted, the visited file name is used,\n\ |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
4129 except that if INITIAL is specified, that combined with DIR is used.)\n\ |
| 230 | 4130 Fourth arg MUSTMATCH non-nil means require existing file's name.\n\ |
| 4131 Non-nil and non-t means also require confirmation after completion.\n\ | |
| 4132 Fifth arg INITIAL specifies text to start with.\n\ | |
| 4133 DIR defaults to current buffer's directory default.") | |
| 4134 (prompt, dir, defalt, mustmatch, initial) | |
| 4135 Lisp_Object prompt, dir, defalt, mustmatch, initial; | |
| 4136 { | |
| 866 | 4137 Lisp_Object val, insdef, insdef1, tem; |
| 230 | 4138 struct gcpro gcpro1, gcpro2; |
| 4139 register char *homedir; | |
| 4140 int count; | |
| 4141 | |
| 485 | 4142 if (NILP (dir)) |
| 230 | 4143 dir = current_buffer->directory; |
| 485 | 4144 if (NILP (defalt)) |
|
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
4145 { |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
4146 if (! NILP (initial)) |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
4147 defalt = Fexpand_file_name (initial, dir); |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
4148 else |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
4149 defalt = current_buffer->filename; |
|
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
4150 } |
| 230 | 4151 |
| 4152 /* If dir starts with user's homedir, change that to ~. */ | |
| 4153 homedir = (char *) egetenv ("HOME"); | |
| 4154 if (homedir != 0 | |
|
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
4155 && STRINGP (dir) |
| 230 | 4156 && !strncmp (homedir, XSTRING (dir)->data, strlen (homedir)) |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4157 && IS_DIRECTORY_SEP (XSTRING (dir)->data[strlen (homedir)])) |
| 230 | 4158 { |
| 4159 dir = make_string (XSTRING (dir)->data + strlen (homedir) - 1, | |
| 4160 XSTRING (dir)->size - strlen (homedir) + 1); | |
| 4161 XSTRING (dir)->data[0] = '~'; | |
| 4162 } | |
| 4163 | |
| 4164 if (insert_default_directory) | |
| 4165 { | |
| 4166 insdef = dir; | |
| 485 | 4167 if (!NILP (initial)) |
| 230 | 4168 { |
|
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4169 Lisp_Object args[2], pos; |
| 230 | 4170 |
| 4171 args[0] = insdef; | |
| 4172 args[1] = initial; | |
| 4173 insdef = Fconcat (2, args); | |
|
6181
dd271c6b4e56
(Fread_file_name): Do the right thing when insert-default-directory is nil.
Karl Heuer <kwzh@gnu.org>
parents:
6177
diff
changeset
|
4174 pos = make_number (XSTRING (double_dollars (dir))->size); |
|
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4175 insdef1 = Fcons (double_dollars (insdef), pos); |
| 230 | 4176 } |
|
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4177 else |
|
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
4178 insdef1 = double_dollars (insdef); |
| 230 | 4179 } |
|
6181
dd271c6b4e56
(Fread_file_name): Do the right thing when insert-default-directory is nil.
Karl Heuer <kwzh@gnu.org>
parents:
6177
diff
changeset
|
4180 else if (!NILP (initial)) |
|
dd271c6b4e56
(Fread_file_name): Do the right thing when insert-default-directory is nil.
Karl Heuer <kwzh@gnu.org>
parents:
6177
diff
changeset
|
4181 { |
|
dd271c6b4e56
(Fread_file_name): Do the right thing when insert-default-directory is nil.
Karl Heuer <kwzh@gnu.org>
parents:
6177
diff
changeset
|
4182 insdef = initial; |
|
dd271c6b4e56
(Fread_file_name): Do the right thing when insert-default-directory is nil.
Karl Heuer <kwzh@gnu.org>
parents:
6177
diff
changeset
|
4183 insdef1 = Fcons (double_dollars (insdef), 0); |
|
dd271c6b4e56
(Fread_file_name): Do the right thing when insert-default-directory is nil.
Karl Heuer <kwzh@gnu.org>
parents:
6177
diff
changeset
|
4184 } |
| 230 | 4185 else |
| 866 | 4186 insdef = Qnil, insdef1 = Qnil; |
| 230 | 4187 |
| 4188 #ifdef VMS | |
| 4189 count = specpdl_ptr - specpdl; | |
| 4190 specbind (intern ("completion-ignore-case"), Qt); | |
| 4191 #endif | |
| 4192 | |
| 4193 GCPRO2 (insdef, defalt); | |
| 4194 val = Fcompleting_read (prompt, intern ("read-file-name-internal"), | |
| 866 | 4195 dir, mustmatch, insdef1, |
|
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4196 Qfile_name_history); |
| 230 | 4197 |
| 4198 #ifdef VMS | |
| 4199 unbind_to (count, Qnil); | |
| 4200 #endif | |
| 4201 | |
| 4202 UNGCPRO; | |
| 485 | 4203 if (NILP (val)) |
| 230 | 4204 error ("No file name specified"); |
| 4205 tem = Fstring_equal (val, insdef); | |
| 485 | 4206 if (!NILP (tem) && !NILP (defalt)) |
| 230 | 4207 return defalt; |
|
3032
371058345c42
(Fread_file_name): If input is empty, do return the default
Richard M. Stallman <rms@gnu.org>
parents:
3017
diff
changeset
|
4208 if (XSTRING (val)->size == 0 && NILP (insdef)) |
|
5245
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
4209 { |
|
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
4210 if (!NILP (defalt)) |
|
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
4211 return defalt; |
|
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
4212 else |
|
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
4213 error ("No default file name"); |
|
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
4214 } |
| 230 | 4215 return Fsubstitute_in_file_name (val); |
| 4216 } | |
| 4217 | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4218 #if 0 /* Old version */ |
| 230 | 4219 DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 5, 0, |
|
6347
c7e1f551e97a
(Fread_file_name): Delete docstring of second version of function, to avoid
Karl Heuer <kwzh@gnu.org>
parents:
6328
diff
changeset
|
4220 /* Don't confuse make-docfile by having two doc strings for this function. |
|
c7e1f551e97a
(Fread_file_name): Delete docstring of second version of function, to avoid
Karl Heuer <kwzh@gnu.org>
parents:
6328
diff
changeset
|
4221 make-docfile does not pay attention to #if, for good reason! */ |
|
c7e1f551e97a
(Fread_file_name): Delete docstring of second version of function, to avoid
Karl Heuer <kwzh@gnu.org>
parents:
6328
diff
changeset
|
4222 0) |
| 230 | 4223 (prompt, dir, defalt, mustmatch, initial) |
| 4224 Lisp_Object prompt, dir, defalt, mustmatch, initial; | |
| 4225 { | |
| 4226 Lisp_Object val, insdef, tem; | |
| 4227 struct gcpro gcpro1, gcpro2; | |
| 4228 register char *homedir; | |
| 4229 int count; | |
| 4230 | |
| 485 | 4231 if (NILP (dir)) |
| 230 | 4232 dir = current_buffer->directory; |
| 485 | 4233 if (NILP (defalt)) |
| 230 | 4234 defalt = current_buffer->filename; |
| 4235 | |
| 4236 /* If dir starts with user's homedir, change that to ~. */ | |
| 4237 homedir = (char *) egetenv ("HOME"); | |
| 4238 if (homedir != 0 | |
|
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
4239 && STRINGP (dir) |
| 230 | 4240 && !strncmp (homedir, XSTRING (dir)->data, strlen (homedir)) |
| 4241 && XSTRING (dir)->data[strlen (homedir)] == '/') | |
| 4242 { | |
| 4243 dir = make_string (XSTRING (dir)->data + strlen (homedir) - 1, | |
| 4244 XSTRING (dir)->size - strlen (homedir) + 1); | |
| 4245 XSTRING (dir)->data[0] = '~'; | |
| 4246 } | |
| 4247 | |
| 485 | 4248 if (!NILP (initial)) |
| 230 | 4249 insdef = initial; |
| 4250 else if (insert_default_directory) | |
| 4251 insdef = dir; | |
| 4252 else | |
| 4253 insdef = build_string (""); | |
| 4254 | |
| 4255 #ifdef VMS | |
| 4256 count = specpdl_ptr - specpdl; | |
| 4257 specbind (intern ("completion-ignore-case"), Qt); | |
| 4258 #endif | |
| 4259 | |
| 4260 GCPRO2 (insdef, defalt); | |
| 4261 val = Fcompleting_read (prompt, intern ("read-file-name-internal"), | |
| 4262 dir, mustmatch, | |
|
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4263 insert_default_directory ? insdef : Qnil, |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4264 Qfile_name_history); |
| 230 | 4265 |
| 4266 #ifdef VMS | |
| 4267 unbind_to (count, Qnil); | |
| 4268 #endif | |
| 4269 | |
| 4270 UNGCPRO; | |
| 485 | 4271 if (NILP (val)) |
| 230 | 4272 error ("No file name specified"); |
| 4273 tem = Fstring_equal (val, insdef); | |
| 485 | 4274 if (!NILP (tem) && !NILP (defalt)) |
| 230 | 4275 return defalt; |
| 4276 return Fsubstitute_in_file_name (val); | |
| 4277 } | |
| 4278 #endif /* Old version */ | |
| 4279 | |
| 4280 syms_of_fileio () | |
| 4281 { | |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
4282 Qexpand_file_name = intern ("expand-file-name"); |
|
10719
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
4283 Qsubstitute_in_file_name = intern ("substitute-in-file-name"); |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
4284 Qdirectory_file_name = intern ("directory-file-name"); |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
4285 Qfile_name_directory = intern ("file-name-directory"); |
|
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
4286 Qfile_name_nondirectory = intern ("file-name-nondirectory"); |
|
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4287 Qunhandled_file_name_directory = intern ("unhandled-file-name-directory"); |
|
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
4288 Qfile_name_as_directory = intern ("file-name-as-directory"); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4289 Qcopy_file = intern ("copy-file"); |
|
8227
0e6b7eeedc3b
(Fmake_directory_internal): Use Qmake_directory_internal.
Richard M. Stallman <rms@gnu.org>
parents:
8185
diff
changeset
|
4290 Qmake_directory_internal = intern ("make-directory-internal"); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4291 Qdelete_directory = intern ("delete-directory"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4292 Qdelete_file = intern ("delete-file"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4293 Qrename_file = intern ("rename-file"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4294 Qadd_name_to_file = intern ("add-name-to-file"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4295 Qmake_symbolic_link = intern ("make-symbolic-link"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4296 Qfile_exists_p = intern ("file-exists-p"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4297 Qfile_executable_p = intern ("file-executable-p"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4298 Qfile_readable_p = intern ("file-readable-p"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4299 Qfile_symlink_p = intern ("file-symlink-p"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4300 Qfile_writable_p = intern ("file-writable-p"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4301 Qfile_directory_p = intern ("file-directory-p"); |
|
11599
51bc10be0dc7
(Ffile_regular_p): Use Qfile_regular_p.
Richard M. Stallman <rms@gnu.org>
parents:
11426
diff
changeset
|
4302 Qfile_regular_p = intern ("file-regular-p"); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4303 Qfile_accessible_directory_p = intern ("file-accessible-directory-p"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4304 Qfile_modes = intern ("file-modes"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4305 Qset_file_modes = intern ("set-file-modes"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4306 Qfile_newer_than_file_p = intern ("file-newer-than-file-p"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4307 Qinsert_file_contents = intern ("insert-file-contents"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4308 Qwrite_region = intern ("write-region"); |
|
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4309 Qverify_visited_file_modtime = intern ("verify-visited-file-modtime"); |
|
3560
95021dcb923b
(syms_of_fileio): Set up Qset_visited_file_modtime.
Richard M. Stallman <rms@gnu.org>
parents:
3415
diff
changeset
|
4310 Qset_visited_file_modtime = intern ("set-visited-file-modtime"); |
|
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4311 |
|
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4312 staticpro (&Qexpand_file_name); |
|
10719
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
4313 staticpro (&Qsubstitute_in_file_name); |
|
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4314 staticpro (&Qdirectory_file_name); |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4315 staticpro (&Qfile_name_directory); |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4316 staticpro (&Qfile_name_nondirectory); |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4317 staticpro (&Qunhandled_file_name_directory); |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4318 staticpro (&Qfile_name_as_directory); |
|
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4319 staticpro (&Qcopy_file); |
|
8243
bf7b3b969ab5
(syms_of_fileio): Finish previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8227
diff
changeset
|
4320 staticpro (&Qmake_directory_internal); |
|
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4321 staticpro (&Qdelete_directory); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4322 staticpro (&Qdelete_file); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4323 staticpro (&Qrename_file); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4324 staticpro (&Qadd_name_to_file); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4325 staticpro (&Qmake_symbolic_link); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4326 staticpro (&Qfile_exists_p); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4327 staticpro (&Qfile_executable_p); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4328 staticpro (&Qfile_readable_p); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4329 staticpro (&Qfile_symlink_p); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4330 staticpro (&Qfile_writable_p); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4331 staticpro (&Qfile_directory_p); |
|
11599
51bc10be0dc7
(Ffile_regular_p): Use Qfile_regular_p.
Richard M. Stallman <rms@gnu.org>
parents:
11426
diff
changeset
|
4332 staticpro (&Qfile_regular_p); |
|
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4333 staticpro (&Qfile_accessible_directory_p); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4334 staticpro (&Qfile_modes); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4335 staticpro (&Qset_file_modes); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4336 staticpro (&Qfile_newer_than_file_p); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4337 staticpro (&Qinsert_file_contents); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4338 staticpro (&Qwrite_region); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4339 staticpro (&Qverify_visited_file_modtime); |
|
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4340 |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4341 Qfile_name_history = intern ("file-name-history"); |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4342 Fset (Qfile_name_history, Qnil); |
|
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4343 staticpro (&Qfile_name_history); |
|
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
4344 |
| 230 | 4345 Qfile_error = intern ("file-error"); |
| 4346 staticpro (&Qfile_error); | |
| 4347 Qfile_already_exists = intern("file-already-exists"); | |
| 4348 staticpro (&Qfile_already_exists); | |
| 4349 | |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4350 #ifdef DOS_NT |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
4351 Qfind_buffer_file_type = intern ("find-buffer-file-type"); |
|
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
4352 staticpro (&Qfind_buffer_file_type); |
|
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4353 #endif /* DOS_NT */ |
|
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
4354 |
|
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4355 DEFVAR_LISP ("auto-save-file-format", &Vauto_save_file_format, |
|
11090
290c241031e9
(syms_of_fileio): Fix missing \n\.
Karl Heuer <kwzh@gnu.org>
parents:
11053
diff
changeset
|
4356 "*Format in which to write auto-save files.\n\ |
|
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4357 Should be a list of symbols naming formats that are defined in `format-alist'.\n\ |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4358 If it is t, which is the default, auto-save files are written in the\n\ |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4359 same format as a regular save would use."); |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4360 Vauto_save_file_format = Qt; |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4361 |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4362 Qformat_decode = intern ("format-decode"); |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4363 staticpro (&Qformat_decode); |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4364 Qformat_annotate_function = intern ("format-annotate-function"); |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4365 staticpro (&Qformat_annotate_function); |
|
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4366 |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4367 Qcar_less_than_car = intern ("car-less-than-car"); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4368 staticpro (&Qcar_less_than_car); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4369 |
| 230 | 4370 Fput (Qfile_error, Qerror_conditions, |
| 4371 Fcons (Qfile_error, Fcons (Qerror, Qnil))); | |
| 4372 Fput (Qfile_error, Qerror_message, | |
| 4373 build_string ("File error")); | |
| 4374 | |
| 4375 Fput (Qfile_already_exists, Qerror_conditions, | |
| 4376 Fcons (Qfile_already_exists, | |
| 4377 Fcons (Qfile_error, Fcons (Qerror, Qnil)))); | |
| 4378 Fput (Qfile_already_exists, Qerror_message, | |
| 4379 build_string ("File already exists")); | |
| 4380 | |
| 4381 DEFVAR_BOOL ("insert-default-directory", &insert_default_directory, | |
| 4382 "*Non-nil means when reading a filename start with default dir in minibuffer."); | |
| 4383 insert_default_directory = 1; | |
| 4384 | |
| 4385 DEFVAR_BOOL ("vms-stmlf-recfm", &vms_stmlf_recfm, | |
| 4386 "*Non-nil means write new files with record format `stmlf'.\n\ | |
| 4387 nil means use format `var'. This variable is meaningful only on VMS."); | |
| 4388 vms_stmlf_recfm = 0; | |
| 4389 | |
|
850
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
4390 DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist, |
|
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
4391 "*Alist of elements (REGEXP . HANDLER) for file names handled specially.\n\ |
|
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
4392 If a file name matches REGEXP, then all I/O on that file is done by calling\n\ |
|
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
4393 HANDLER.\n\ |
|
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
4394 \n\ |
|
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
4395 The first argument given to HANDLER is the name of the I/O primitive\n\ |
|
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
4396 to be handled; the remaining arguments are the arguments that were\n\ |
|
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
4397 passed to that primitive. For example, if you do\n\ |
|
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
4398 (file-exists-p FILENAME)\n\ |
|
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
4399 and FILENAME is handled by HANDLER, then HANDLER is called like this:\n\ |
|
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4400 (funcall HANDLER 'file-exists-p FILENAME)\n\ |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4401 The function `find-file-name-handler' checks this list for a handler\n\ |
|
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4402 for its argument."); |
|
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4403 Vfile_name_handler_alist = Qnil; |
|
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4404 |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4405 DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions, |
|
4989
9fe45f58189f
(syms_of_fileio): Fix missing \n\'s.
Richard M. Stallman <rms@gnu.org>
parents:
4950
diff
changeset
|
4406 "A list of functions to be called at the end of `insert-file-contents'.\n\ |
|
9fe45f58189f
(syms_of_fileio): Fix missing \n\'s.
Richard M. Stallman <rms@gnu.org>
parents:
4950
diff
changeset
|
4407 Each is passed one argument, the number of bytes inserted. It should return\n\ |
|
9fe45f58189f
(syms_of_fileio): Fix missing \n\'s.
Richard M. Stallman <rms@gnu.org>
parents:
4950
diff
changeset
|
4408 the new byte count, and leave point the same. If `insert-file-contents' is\n\ |
|
9fe45f58189f
(syms_of_fileio): Fix missing \n\'s.
Richard M. Stallman <rms@gnu.org>
parents:
4950
diff
changeset
|
4409 intercepted by a handler from `file-name-handler-alist', that handler is\n\ |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4410 responsible for calling the after-insert-file-functions if appropriate."); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4411 Vafter_insert_file_functions = Qnil; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4412 |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4413 DEFVAR_LISP ("write-region-annotate-functions", &Vwrite_region_annotate_functions, |
|
4989
9fe45f58189f
(syms_of_fileio): Fix missing \n\'s.
Richard M. Stallman <rms@gnu.org>
parents:
4950
diff
changeset
|
4414 "A list of functions to be called at the start of `write-region'.\n\ |
|
9fe45f58189f
(syms_of_fileio): Fix missing \n\'s.
Richard M. Stallman <rms@gnu.org>
parents:
4950
diff
changeset
|
4415 Each is passed two arguments, START and END as for `write-region'. It should\n\ |
|
9fe45f58189f
(syms_of_fileio): Fix missing \n\'s.
Richard M. Stallman <rms@gnu.org>
parents:
4950
diff
changeset
|
4416 return a list of pairs (POSITION . STRING) of strings to be effectively\n\ |
|
9fe45f58189f
(syms_of_fileio): Fix missing \n\'s.
Richard M. Stallman <rms@gnu.org>
parents:
4950
diff
changeset
|
4417 inserted at the specified positions of the file being written (1 means to\n\ |
|
9fe45f58189f
(syms_of_fileio): Fix missing \n\'s.
Richard M. Stallman <rms@gnu.org>
parents:
4950
diff
changeset
|
4418 insert before the first byte written). The POSITIONs must be sorted into\n\ |
|
9fe45f58189f
(syms_of_fileio): Fix missing \n\'s.
Richard M. Stallman <rms@gnu.org>
parents:
4950
diff
changeset
|
4419 increasing order. If there are several functions in the list, the several\n\ |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4420 lists are merged destructively."); |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4421 Vwrite_region_annotate_functions = Qnil; |
|
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4422 |
|
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4423 DEFVAR_LISP ("write-region-annotations-so-far", |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4424 &Vwrite_region_annotations_so_far, |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4425 "When an annotation function is called, this holds the previous annotations.\n\ |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4426 These are the annotations made by other annotation functions\n\ |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4427 that were already called. See also `write-region-annotate-functions'."); |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4428 Vwrite_region_annotations_so_far = Qnil; |
|
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4429 |
|
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
4430 DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers, |
|
7549
ccb8b7f8dce7
(syms_of_fileio): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7526
diff
changeset
|
4431 "A list of file name handlers that temporarily should not be used.\n\ |
|
7182
f0ecad45bb35
(inhibit-file-name-handers): Correct documentation.
Richard M. Stallman <rms@gnu.org>
parents:
7130
diff
changeset
|
4432 This applies only to the operation `inhibit-file-name-operation'."); |
|
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
4433 Vinhibit_file_name_handlers = Qnil; |
|
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
4434 |
|
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
4435 DEFVAR_LISP ("inhibit-file-name-operation", &Vinhibit_file_name_operation, |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
4436 "The operation for which `inhibit-file-name-handlers' is applicable."); |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
4437 Vinhibit_file_name_operation = Qnil; |
|
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
4438 |
|
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
4439 DEFVAR_LISP ("auto-save-list-file-name", &Vauto_save_list_file_name, |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
4440 "File name in which we write a list of all auto save file names."); |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
4441 Vauto_save_list_file_name = Qnil; |
|
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
4442 |
|
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4443 defsubr (&Sfind_file_name_handler); |
| 230 | 4444 defsubr (&Sfile_name_directory); |
| 4445 defsubr (&Sfile_name_nondirectory); | |
|
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
4446 defsubr (&Sunhandled_file_name_directory); |
| 230 | 4447 defsubr (&Sfile_name_as_directory); |
| 4448 defsubr (&Sdirectory_file_name); | |
| 4449 defsubr (&Smake_temp_name); | |
| 4450 defsubr (&Sexpand_file_name); | |
| 4451 defsubr (&Ssubstitute_in_file_name); | |
| 4452 defsubr (&Scopy_file); | |
|
1533
b86ef0432100
(Fmake_directory_internal): Renamed from Fmake_directory.
Richard M. Stallman <rms@gnu.org>
parents:
1377
diff
changeset
|
4453 defsubr (&Smake_directory_internal); |
|
686
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
4454 defsubr (&Sdelete_directory); |
| 230 | 4455 defsubr (&Sdelete_file); |
| 4456 defsubr (&Srename_file); | |
| 4457 defsubr (&Sadd_name_to_file); | |
| 4458 #ifdef S_IFLNK | |
| 4459 defsubr (&Smake_symbolic_link); | |
| 4460 #endif /* S_IFLNK */ | |
| 4461 #ifdef VMS | |
| 4462 defsubr (&Sdefine_logical_name); | |
| 4463 #endif /* VMS */ | |
| 4464 #ifdef HPUX_NET | |
| 4465 defsubr (&Ssysnetunam); | |
| 4466 #endif /* HPUX_NET */ | |
| 4467 defsubr (&Sfile_name_absolute_p); | |
| 4468 defsubr (&Sfile_exists_p); | |
| 4469 defsubr (&Sfile_executable_p); | |
| 4470 defsubr (&Sfile_readable_p); | |
| 4471 defsubr (&Sfile_writable_p); | |
| 4472 defsubr (&Sfile_symlink_p); | |
| 4473 defsubr (&Sfile_directory_p); | |
| 536 | 4474 defsubr (&Sfile_accessible_directory_p); |
|
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
4475 defsubr (&Sfile_regular_p); |
| 230 | 4476 defsubr (&Sfile_modes); |
| 4477 defsubr (&Sset_file_modes); | |
|
1763
65e858c07a8b
(Fset_default_file_modes, Fdefault_file_modes): Renamed from .._mode.
Richard M. Stallman <rms@gnu.org>
parents:
1762
diff
changeset
|
4478 defsubr (&Sset_default_file_modes); |
|
65e858c07a8b
(Fset_default_file_modes, Fdefault_file_modes): Renamed from .._mode.
Richard M. Stallman <rms@gnu.org>
parents:
1762
diff
changeset
|
4479 defsubr (&Sdefault_file_modes); |
| 230 | 4480 defsubr (&Sfile_newer_than_file_p); |
| 4481 defsubr (&Sinsert_file_contents); | |
| 4482 defsubr (&Swrite_region); | |
|
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4483 defsubr (&Scar_less_than_car); |
| 230 | 4484 defsubr (&Sverify_visited_file_modtime); |
| 4485 defsubr (&Sclear_visited_file_modtime); | |
|
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
4486 defsubr (&Svisited_file_modtime); |
| 230 | 4487 defsubr (&Sset_visited_file_modtime); |
| 4488 defsubr (&Sdo_auto_save); | |
| 4489 defsubr (&Sset_buffer_auto_saved); | |
|
5553
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
4490 defsubr (&Sclear_buffer_auto_save_failure); |
| 230 | 4491 defsubr (&Srecent_auto_save_p); |
| 4492 | |
| 4493 defsubr (&Sread_file_name_internal); | |
| 4494 defsubr (&Sread_file_name); | |
|
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
4495 |
|
1204
567860ca77e0
* fileio.c (syms_of_fileio): Don't try to defsubr Sunix_sync
Jim Blandy <jimb@redhat.com>
parents:
1178
diff
changeset
|
4496 #ifdef unix |
|
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
4497 defsubr (&Sunix_sync); |
|
1204
567860ca77e0
* fileio.c (syms_of_fileio): Don't try to defsubr Sunix_sync
Jim Blandy <jimb@redhat.com>
parents:
1178
diff
changeset
|
4498 #endif |
| 230 | 4499 } |
