Mercurial > emacs
annotate src/fileio.c @ 4980:50708e8b133b
(Man-section-regexp): Allow section names l, n, L, N.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 11 Nov 1993 07:17:08 +0000 |
parents | 145c69e39666 |
children | 9fe45f58189f |
rev | line source |
---|---|
230 | 1 /* File IO for GNU Emacs. |
2961 | 2 Copyright (C) 1985, 1986, 1987, 1988, 1993 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 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
25 #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
|
26 # 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
|
27 #endif |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
28 |
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_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
|
30 # 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
|
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 |
372 | 33 #ifdef VMS |
564 | 34 #include "vms-pwd.h" |
372 | 35 #else |
230 | 36 #include <pwd.h> |
372 | 37 #endif |
38 | |
230 | 39 #include <ctype.h> |
372 | 40 |
41 #ifdef VMS | |
42 #include "dir.h" | |
43 #include <perror.h> | |
44 #include <stddef.h> | |
45 #include <string.h> | |
46 #endif | |
47 | |
230 | 48 #include <errno.h> |
49 | |
372 | 50 #ifndef vax11c |
230 | 51 extern int errno; |
52 extern char *sys_errlist[]; | |
53 extern int sys_nerr; | |
54 #endif | |
55 | |
56 #define err_str(a) ((a) < sys_nerr ? sys_errlist[a] : "unknown error") | |
57 | |
58 #ifdef APOLLO | |
59 #include <sys/time.h> | |
60 #endif | |
61 | |
2280
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
62 #ifndef USG |
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
63 #ifndef VMS |
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
64 #ifndef BSD4_1 |
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
65 #define HAVE_FSYNC |
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
66 #endif |
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
67 #endif |
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
68 #endif |
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
69 |
230 | 70 #include "lisp.h" |
1299
b8337cdf2e8b
* fileio.c (Finsert_file_contents): Call offset_intervals() if
Joseph Arceneaux <jla@gnu.org>
parents:
1240
diff
changeset
|
71 #include "intervals.h" |
230 | 72 #include "buffer.h" |
73 #include "window.h" | |
74 | |
75 #ifdef VMS | |
76 #include <file.h> | |
77 #include <rmsdef.h> | |
78 #include <fab.h> | |
79 #include <nam.h> | |
80 #endif | |
81 | |
564 | 82 #include "systime.h" |
230 | 83 |
84 #ifdef HPUX | |
85 #include <netio.h> | |
350 | 86 #ifndef HPUX8 |
3410
47b51faf6c4e
[HPUX9]: Don't include errnet.h.
Richard M. Stallman <rms@gnu.org>
parents:
3032
diff
changeset
|
87 #ifndef HPUX9 |
230 | 88 #include <errnet.h> |
89 #endif | |
350 | 90 #endif |
3410
47b51faf6c4e
[HPUX9]: Don't include errnet.h.
Richard M. Stallman <rms@gnu.org>
parents:
3032
diff
changeset
|
91 #endif |
230 | 92 |
93 #ifndef O_WRONLY | |
94 #define O_WRONLY 1 | |
95 #endif | |
96 | |
97 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
98 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
99 | |
100 /* Nonzero during writing of auto-save files */ | |
101 int auto_saving; | |
102 | |
103 /* Set by auto_save_1 to mode of original file so Fwrite_region will create | |
104 a new file with the same mode as the original */ | |
105 int auto_save_mode_bits; | |
106 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
107 /* Alist of elements (REGEXP . HANDLER) for file names |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
108 whose I/O is done with a special handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
109 Lisp_Object Vfile_name_handler_alist; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
110 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
111 /* 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
|
112 Lisp_Object Vafter_insert_file_functions; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
113 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
114 /* 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
|
115 Lisp_Object Vwrite_region_annotate_functions; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
116 |
230 | 117 /* Nonzero means, when reading a filename in the minibuffer, |
118 start out by inserting the default directory into the minibuffer. */ | |
119 int insert_default_directory; | |
120 | |
121 /* On VMS, nonzero means write new files with record format stmlf. | |
122 Zero means use var format. */ | |
123 int vms_stmlf_recfm; | |
124 | |
125 Lisp_Object Qfile_error, Qfile_already_exists; | |
126 | |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
127 Lisp_Object Qfile_name_history; |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
128 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
129 Lisp_Object Qcar_less_than_car; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
130 |
230 | 131 report_file_error (string, data) |
132 char *string; | |
133 Lisp_Object data; | |
134 { | |
135 Lisp_Object errstring; | |
136 | |
137 if (errno >= 0 && errno < sys_nerr) | |
138 errstring = build_string (sys_errlist[errno]); | |
139 else | |
140 errstring = build_string ("undocumented error code"); | |
141 | |
142 /* System error messages are capitalized. Downcase the initial | |
143 unless it is followed by a slash. */ | |
144 if (XSTRING (errstring)->data[1] != '/') | |
145 XSTRING (errstring)->data[0] = DOWNCASE (XSTRING (errstring)->data[0]); | |
146 | |
147 while (1) | |
148 Fsignal (Qfile_error, | |
149 Fcons (build_string (string), Fcons (errstring, data))); | |
150 } | |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
151 |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
152 close_file_unwind (fd) |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
153 Lisp_Object fd; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
154 { |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
155 close (XFASTINT (fd)); |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
156 } |
230 | 157 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
158 Lisp_Object Qexpand_file_name; |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
159 Lisp_Object Qdirectory_file_name; |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
160 Lisp_Object Qfile_name_directory; |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
161 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
|
162 Lisp_Object Qunhandled_file_name_directory; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
163 Lisp_Object Qfile_name_as_directory; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
164 Lisp_Object Qcopy_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
165 Lisp_Object Qmake_directory; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
166 Lisp_Object Qdelete_directory; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
167 Lisp_Object Qdelete_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
168 Lisp_Object Qrename_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
169 Lisp_Object Qadd_name_to_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
170 Lisp_Object Qmake_symbolic_link; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
171 Lisp_Object Qfile_exists_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
172 Lisp_Object Qfile_executable_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
173 Lisp_Object Qfile_readable_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
174 Lisp_Object Qfile_symlink_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
175 Lisp_Object Qfile_writable_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
176 Lisp_Object Qfile_directory_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
177 Lisp_Object Qfile_accessible_directory_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
178 Lisp_Object Qfile_modes; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
179 Lisp_Object Qset_file_modes; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
180 Lisp_Object Qfile_newer_than_file_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
181 Lisp_Object Qinsert_file_contents; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
182 Lisp_Object Qwrite_region; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
183 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
|
184 Lisp_Object Qset_visited_file_modtime; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
185 |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
186 DEFUN ("find-file-name-handler", Ffind_file_name_handler, Sfind_file_name_handler, 1, 1, 0, |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
187 "Return FILENAME's handler function, if its syntax is handled specially.\n\ |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
188 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
|
189 A file name is handled if one of the regular expressions in\n\ |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
190 `file-name-handler-alist' matches it.") |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
191 (filename) |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
192 Lisp_Object filename; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
193 { |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
194 /* This function must not munge the match data. */ |
2897 | 195 Lisp_Object chain; |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
196 |
2895
1ed91566882a
* fileio.c (Ffind_file_name_handler): Check that FILENAME is a
Jim Blandy <jimb@redhat.com>
parents:
2741
diff
changeset
|
197 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
|
198 |
848 | 199 for (chain = Vfile_name_handler_alist; XTYPE (chain) == Lisp_Cons; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
200 chain = XCONS (chain)->cdr) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
201 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
202 Lisp_Object elt; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
203 elt = XCONS (chain)->car; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
204 if (XTYPE (elt) == Lisp_Cons) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
205 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
206 Lisp_Object string; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
207 string = XCONS (elt)->car; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
208 if (XTYPE (string) == Lisp_String |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
209 && fast_string_match (string, filename) >= 0) |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
210 return XCONS (elt)->cdr; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
211 } |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
212 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
213 QUIT; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
214 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
215 return Qnil; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
216 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
217 |
230 | 218 DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory, |
219 1, 1, 0, | |
220 "Return the directory component in file name NAME.\n\ | |
221 Return nil if NAME does not include a directory.\n\ | |
222 Otherwise return a directory spec.\n\ | |
223 Given a Unix syntax file name, returns a string ending in slash;\n\ | |
224 on VMS, perhaps instead a string ending in `:', `]' or `>'.") | |
225 (file) | |
226 Lisp_Object file; | |
227 { | |
228 register unsigned char *beg; | |
229 register unsigned char *p; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
230 Lisp_Object handler; |
230 | 231 |
232 CHECK_STRING (file, 0); | |
233 | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
234 /* 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
|
235 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
236 handler = Ffind_file_name_handler (file); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
237 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
238 return call2 (handler, Qfile_name_directory, file); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
239 |
230 | 240 beg = XSTRING (file)->data; |
241 p = beg + XSTRING (file)->size; | |
242 | |
243 while (p != beg && p[-1] != '/' | |
244 #ifdef VMS | |
245 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>' | |
246 #endif /* VMS */ | |
247 ) p--; | |
248 | |
249 if (p == beg) | |
250 return Qnil; | |
251 return make_string (beg, p - beg); | |
252 } | |
253 | |
254 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory, Sfile_name_nondirectory, | |
255 1, 1, 0, | |
256 "Return file name NAME sans its directory.\n\ | |
257 For example, in a Unix-syntax file name,\n\ | |
258 this is everything after the last slash,\n\ | |
259 or the entire name if it contains no slash.") | |
260 (file) | |
261 Lisp_Object file; | |
262 { | |
263 register unsigned char *beg, *p, *end; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
264 Lisp_Object handler; |
230 | 265 |
266 CHECK_STRING (file, 0); | |
267 | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
268 /* 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
|
269 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
270 handler = Ffind_file_name_handler (file); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
271 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
272 return call2 (handler, Qfile_name_nondirectory, file); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
273 |
230 | 274 beg = XSTRING (file)->data; |
275 end = p = beg + XSTRING (file)->size; | |
276 | |
277 while (p != beg && p[-1] != '/' | |
278 #ifdef VMS | |
279 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>' | |
280 #endif /* VMS */ | |
281 ) p--; | |
282 | |
283 return make_string (p, end - p); | |
284 } | |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
285 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
286 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
|
287 "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
|
288 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
|
289 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
|
290 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
|
291 (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
|
292 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
|
293 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
|
294 (filename) |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
295 Lisp_Object filename; |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
296 { |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
297 Lisp_Object handler; |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
298 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
299 /* 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
|
300 call the corresponding file handler. */ |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
301 handler = Ffind_file_name_handler (filename); |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
302 if (!NILP (handler)) |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
303 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
|
304 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
305 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
|
306 } |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
307 |
230 | 308 |
309 char * | |
310 file_name_as_directory (out, in) | |
311 char *out, *in; | |
312 { | |
313 int size = strlen (in) - 1; | |
314 | |
315 strcpy (out, in); | |
316 | |
317 #ifdef VMS | |
318 /* Is it already a directory string? */ | |
319 if (in[size] == ':' || in[size] == ']' || in[size] == '>') | |
320 return out; | |
321 /* Is it a VMS directory file name? If so, hack VMS syntax. */ | |
322 else if (! index (in, '/') | |
323 && ((size > 3 && ! strcmp (&in[size - 3], ".DIR")) | |
324 || (size > 3 && ! strcmp (&in[size - 3], ".dir")) | |
325 || (size > 5 && (! strncmp (&in[size - 5], ".DIR", 4) | |
326 || ! strncmp (&in[size - 5], ".dir", 4)) | |
327 && (in[size - 1] == '.' || in[size - 1] == ';') | |
328 && in[size] == '1'))) | |
329 { | |
330 register char *p, *dot; | |
331 char brack; | |
332 | |
333 /* x.dir -> [.x] | |
334 dir:x.dir --> dir:[x] | |
335 dir:[x]y.dir --> dir:[x.y] */ | |
336 p = in + size; | |
337 while (p != in && *p != ':' && *p != '>' && *p != ']') p--; | |
338 if (p != in) | |
339 { | |
340 strncpy (out, in, p - in); | |
341 out[p - in] = '\0'; | |
342 if (*p == ':') | |
343 { | |
344 brack = ']'; | |
345 strcat (out, ":["); | |
346 } | |
347 else | |
348 { | |
349 brack = *p; | |
350 strcat (out, "."); | |
351 } | |
352 p++; | |
353 } | |
354 else | |
355 { | |
356 brack = ']'; | |
357 strcpy (out, "[."); | |
358 } | |
372 | 359 dot = index (p, '.'); |
360 if (dot) | |
230 | 361 { |
362 /* blindly remove any extension */ | |
363 size = strlen (out) + (dot - p); | |
364 strncat (out, p, dot - p); | |
365 } | |
366 else | |
367 { | |
368 strcat (out, p); | |
369 size = strlen (out); | |
370 } | |
371 out[size++] = brack; | |
372 out[size] = '\0'; | |
373 } | |
374 #else /* not VMS */ | |
375 /* For Unix syntax, Append a slash if necessary */ | |
376 if (out[size] != '/') | |
377 strcat (out, "/"); | |
378 #endif /* not VMS */ | |
379 return out; | |
380 } | |
381 | |
382 DEFUN ("file-name-as-directory", Ffile_name_as_directory, | |
383 Sfile_name_as_directory, 1, 1, 0, | |
384 "Return a string representing file FILENAME interpreted as a directory.\n\ | |
385 This operation exists because a directory is also a file, but its name as\n\ | |
386 a directory is different from its name as a file.\n\ | |
387 The result can be used as the value of `default-directory'\n\ | |
388 or passed as second argument to `expand-file-name'.\n\ | |
389 For a Unix-syntax file name, just appends a slash.\n\ | |
390 On VMS, converts \"[X]FOO.DIR\" to \"[X.FOO]\", etc.") | |
391 (file) | |
392 Lisp_Object file; | |
393 { | |
394 char *buf; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
395 Lisp_Object handler; |
230 | 396 |
397 CHECK_STRING (file, 0); | |
485 | 398 if (NILP (file)) |
230 | 399 return Qnil; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
400 |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
401 /* 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
|
402 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
403 handler = Ffind_file_name_handler (file); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
404 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
405 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
|
406 |
230 | 407 buf = (char *) alloca (XSTRING (file)->size + 10); |
408 return build_string (file_name_as_directory (buf, XSTRING (file)->data)); | |
409 } | |
410 | |
411 /* | |
412 * Convert from directory name to filename. | |
413 * On VMS: | |
414 * xyzzy:[mukesh.emacs] => xyzzy:[mukesh]emacs.dir.1 | |
415 * xyzzy:[mukesh] => xyzzy:[000000]mukesh.dir.1 | |
416 * On UNIX, it's simple: just make sure there is a terminating / | |
417 | |
418 * Value is nonzero if the string output is different from the input. | |
419 */ | |
420 | |
421 directory_file_name (src, dst) | |
422 char *src, *dst; | |
423 { | |
424 long slen; | |
425 #ifdef VMS | |
426 long rlen; | |
427 char * ptr, * rptr; | |
428 char bracket; | |
429 struct FAB fab = cc$rms_fab; | |
430 struct NAM nam = cc$rms_nam; | |
431 char esa[NAM$C_MAXRSS]; | |
432 #endif /* VMS */ | |
433 | |
434 slen = strlen (src); | |
435 #ifdef VMS | |
436 if (! index (src, '/') | |
437 && (src[slen - 1] == ']' | |
438 || src[slen - 1] == ':' | |
439 || src[slen - 1] == '>')) | |
440 { | |
441 /* VMS style - convert [x.y.z] to [x.y]z, [x] to [000000]x */ | |
442 fab.fab$l_fna = src; | |
443 fab.fab$b_fns = slen; | |
444 fab.fab$l_nam = &nam; | |
445 fab.fab$l_fop = FAB$M_NAM; | |
446 | |
447 nam.nam$l_esa = esa; | |
448 nam.nam$b_ess = sizeof esa; | |
449 nam.nam$b_nop |= NAM$M_SYNCHK; | |
450 | |
451 /* We call SYS$PARSE to handle such things as [--] for us. */ | |
452 if (SYS$PARSE(&fab, 0, 0) == RMS$_NORMAL) | |
453 { | |
454 slen = nam.nam$b_esl; | |
455 if (esa[slen - 1] == ';' && esa[slen - 2] == '.') | |
456 slen -= 2; | |
457 esa[slen] = '\0'; | |
458 src = esa; | |
459 } | |
460 if (src[slen - 1] != ']' && src[slen - 1] != '>') | |
461 { | |
462 /* what about when we have logical_name:???? */ | |
463 if (src[slen - 1] == ':') | |
464 { /* Xlate logical name and see what we get */ | |
465 ptr = strcpy (dst, src); /* upper case for getenv */ | |
466 while (*ptr) | |
467 { | |
468 if ('a' <= *ptr && *ptr <= 'z') | |
469 *ptr -= 040; | |
470 ptr++; | |
471 } | |
472 dst[slen - 1] = 0; /* remove colon */ | |
473 if (!(src = egetenv (dst))) | |
474 return 0; | |
475 /* should we jump to the beginning of this procedure? | |
476 Good points: allows us to use logical names that xlate | |
477 to Unix names, | |
478 Bad points: can be a problem if we just translated to a device | |
479 name... | |
480 For now, I'll punt and always expect VMS names, and hope for | |
481 the best! */ | |
482 slen = strlen (src); | |
483 if (src[slen - 1] != ']' && src[slen - 1] != '>') | |
484 { /* no recursion here! */ | |
485 strcpy (dst, src); | |
486 return 0; | |
487 } | |
488 } | |
489 else | |
490 { /* not a directory spec */ | |
491 strcpy (dst, src); | |
492 return 0; | |
493 } | |
494 } | |
495 bracket = src[slen - 1]; | |
496 | |
497 /* If bracket is ']' or '>', bracket - 2 is the corresponding | |
498 opening bracket. */ | |
372 | 499 ptr = index (src, bracket - 2); |
500 if (ptr == 0) | |
230 | 501 { /* no opening bracket */ |
502 strcpy (dst, src); | |
503 return 0; | |
504 } | |
505 if (!(rptr = rindex (src, '.'))) | |
506 rptr = ptr; | |
507 slen = rptr - src; | |
508 strncpy (dst, src, slen); | |
509 dst[slen] = '\0'; | |
510 if (*rptr == '.') | |
511 { | |
512 dst[slen++] = bracket; | |
513 dst[slen] = '\0'; | |
514 } | |
515 else | |
516 { | |
517 /* If we have the top-level of a rooted directory (i.e. xx:[000000]), | |
518 then translate the device and recurse. */ | |
519 if (dst[slen - 1] == ':' | |
520 && dst[slen - 2] != ':' /* skip decnet nodes */ | |
521 && strcmp(src + slen, "[000000]") == 0) | |
522 { | |
523 dst[slen - 1] = '\0'; | |
524 if ((ptr = egetenv (dst)) | |
525 && (rlen = strlen (ptr) - 1) > 0 | |
526 && (ptr[rlen] == ']' || ptr[rlen] == '>') | |
527 && ptr[rlen - 1] == '.') | |
528 { | |
1358
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
529 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
|
530 strcpy (buf, ptr); |
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
531 buf[rlen - 1] = ']'; |
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
532 buf[rlen] = '\0'; |
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
533 return directory_file_name (buf, dst); |
230 | 534 } |
535 else | |
536 dst[slen - 1] = ':'; | |
537 } | |
538 strcat (dst, "[000000]"); | |
539 slen += 8; | |
540 } | |
541 rptr++; | |
542 rlen = strlen (rptr) - 1; | |
543 strncat (dst, rptr, rlen); | |
544 dst[slen + rlen] = '\0'; | |
545 strcat (dst, ".DIR.1"); | |
546 return 1; | |
547 } | |
548 #endif /* VMS */ | |
549 /* Process as Unix format: just remove any final slash. | |
550 But leave "/" unchanged; do not change it to "". */ | |
551 strcpy (dst, src); | |
621 | 552 if (slen > 1 && dst[slen - 1] == '/') |
230 | 553 dst[slen - 1] = 0; |
554 return 1; | |
555 } | |
556 | |
557 DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name, | |
558 1, 1, 0, | |
559 "Returns the file name of the directory named DIR.\n\ | |
560 This is the name of the file that holds the data for the directory DIR.\n\ | |
561 This operation exists because a directory is also a file, but its name as\n\ | |
562 a directory is different from its name as a file.\n\ | |
563 In Unix-syntax, this function just removes the final slash.\n\ | |
564 On VMS, given a VMS-syntax directory name such as \"[X.Y]\",\n\ | |
565 it returns a file name such as \"[X]Y.DIR.1\".") | |
566 (directory) | |
567 Lisp_Object directory; | |
568 { | |
569 char *buf; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
570 Lisp_Object handler; |
230 | 571 |
572 CHECK_STRING (directory, 0); | |
573 | |
485 | 574 if (NILP (directory)) |
230 | 575 return Qnil; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
576 |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
577 /* 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
|
578 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
579 handler = Ffind_file_name_handler (directory); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
580 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
581 return call2 (handler, Qdirectory_file_name, directory); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
582 |
230 | 583 #ifdef VMS |
584 /* 20 extra chars is insufficient for VMS, since we might perform a | |
585 logical name translation. an equivalence string can be up to 255 | |
586 chars long, so grab that much extra space... - sss */ | |
587 buf = (char *) alloca (XSTRING (directory)->size + 20 + 255); | |
588 #else | |
589 buf = (char *) alloca (XSTRING (directory)->size + 20); | |
590 #endif | |
591 directory_file_name (XSTRING (directory)->data, buf); | |
592 return build_string (buf); | |
593 } | |
594 | |
595 DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0, | |
596 "Generate temporary file name (string) starting with PREFIX (a string).\n\ | |
597 The Emacs process number forms part of the result,\n\ | |
598 so there is no danger of generating a name being used by another process.") | |
599 (prefix) | |
600 Lisp_Object prefix; | |
601 { | |
602 Lisp_Object val; | |
603 val = concat2 (prefix, build_string ("XXXXXX")); | |
604 mktemp (XSTRING (val)->data); | |
605 return val; | |
606 } | |
607 | |
608 DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0, | |
609 "Convert FILENAME to absolute, and canonicalize it.\n\ | |
610 Second arg DEFAULT is directory to start with if FILENAME is relative\n\ | |
611 (does not start with slash); if DEFAULT is nil or missing,\n\ | |
612 the current buffer's value of default-directory is used.\n\ | |
536 | 613 Path components that are `.' are removed, and \n\ |
614 path components followed by `..' are removed, along with the `..' itself;\n\ | |
615 note that these simplifications are done without checking the resulting\n\ | |
616 paths in the file system.\n\ | |
617 An initial `~/' expands to your home directory.\n\ | |
618 An initial `~USER/' expands to USER's home directory.\n\ | |
230 | 619 See also the function `substitute-in-file-name'.") |
620 (name, defalt) | |
621 Lisp_Object name, defalt; | |
622 { | |
623 unsigned char *nm; | |
624 | |
625 register unsigned char *newdir, *p, *o; | |
626 int tlen; | |
627 unsigned char *target; | |
628 struct passwd *pw; | |
629 #ifdef VMS | |
630 unsigned char * colon = 0; | |
631 unsigned char * close = 0; | |
632 unsigned char * slash = 0; | |
633 unsigned char * brack = 0; | |
634 int lbrack = 0, rbrack = 0; | |
635 int dots = 0; | |
636 #endif /* VMS */ | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
637 Lisp_Object handler; |
230 | 638 |
639 CHECK_STRING (name, 0); | |
640 | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
641 /* 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
|
642 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
643 handler = Ffind_file_name_handler (name); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
644 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
645 return call3 (handler, Qexpand_file_name, name, defalt); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
646 |
2407
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
647 /* Use the buffer's default-directory if DEFALT is omitted. */ |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
648 if (NILP (defalt)) |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
649 defalt = current_buffer->directory; |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
650 CHECK_STRING (defalt, 1); |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
651 |
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
|
652 /* 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
|
653 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
|
654 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
|
655 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
|
656 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
|
657 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
|
658 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
|
659 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
|
660 |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
661 The EQ test avoids infinite recursion. */ |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
662 if (! NILP (defalt) && !EQ (defalt, name) |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
663 /* This saves time in a common case. */ |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
664 && XSTRING (defalt)->data[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
|
665 { |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
666 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
|
667 |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
668 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
|
669 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
|
670 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
|
671 } |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
672 |
230 | 673 #ifdef VMS |
674 /* Filenames on VMS are always upper case. */ | |
675 name = Fupcase (name); | |
676 #endif | |
677 | |
678 nm = XSTRING (name)->data; | |
679 | |
680 /* If nm is absolute, flush ...// and detect /./ and /../. | |
681 If no /./ or /../ we can return right away. */ | |
682 if ( | |
683 nm[0] == '/' | |
684 #ifdef VMS | |
685 || index (nm, ':') | |
686 #endif /* VMS */ | |
687 ) | |
688 { | |
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
|
689 /* 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
|
690 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
|
691 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
|
692 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
|
693 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
|
694 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
|
695 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
|
696 |
230 | 697 p = nm; |
698 while (*p) | |
699 { | |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
700 /* 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
|
701 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
|
702 |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
703 /* "//" anywhere isn't necessarily hairy; we just start afresh |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
704 with the second slash. */ |
230 | 705 if (p[0] == '/' && p[1] == '/' |
706 #ifdef APOLLO | |
707 /* // at start of filename is meaningful on Apollo system */ | |
708 && nm != p | |
709 #endif /* APOLLO */ | |
710 ) | |
711 nm = p + 1; | |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
712 |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
713 /* "~" is hairy as the start of any path element. */ |
230 | 714 if (p[0] == '/' && p[1] == '~') |
715 nm = p + 1, lose = 1; | |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
716 |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
717 /* "." and ".." are hairy. */ |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
718 if (p[0] == '/' |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
719 && p[1] == '.' |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
720 && (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
|
721 || 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
|
722 || (p[2] == '.' && (p[3] == '/' |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
723 || p[3] == 0)))) |
230 | 724 lose = 1; |
725 #ifdef VMS | |
726 if (p[0] == '\\') | |
727 lose = 1; | |
728 if (p[0] == '/') { | |
729 /* if dev:[dir]/, move nm to / */ | |
730 if (!slash && p > nm && (brack || colon)) { | |
731 nm = (brack ? brack + 1 : colon + 1); | |
732 lbrack = rbrack = 0; | |
733 brack = 0; | |
734 colon = 0; | |
735 } | |
736 slash = p; | |
737 } | |
738 if (p[0] == '-') | |
739 #ifndef VMS4_4 | |
740 /* VMS pre V4.4,convert '-'s in filenames. */ | |
741 if (lbrack == rbrack) | |
742 { | |
743 if (dots < 2) /* this is to allow negative version numbers */ | |
744 p[0] = '_'; | |
745 } | |
746 else | |
747 #endif /* VMS4_4 */ | |
748 if (lbrack > rbrack && | |
749 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') && | |
750 (p[1] == '.' || p[1] == ']' || p[1] == '>'))) | |
751 lose = 1; | |
752 #ifndef VMS4_4 | |
753 else | |
754 p[0] = '_'; | |
755 #endif /* VMS4_4 */ | |
756 /* count open brackets, reset close bracket pointer */ | |
757 if (p[0] == '[' || p[0] == '<') | |
758 lbrack++, brack = 0; | |
759 /* count close brackets, set close bracket pointer */ | |
760 if (p[0] == ']' || p[0] == '>') | |
761 rbrack++, brack = p; | |
762 /* detect ][ or >< */ | |
763 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<')) | |
764 lose = 1; | |
765 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~') | |
766 nm = p + 1, lose = 1; | |
767 if (p[0] == ':' && (colon || slash)) | |
768 /* if dev1:[dir]dev2:, move nm to dev2: */ | |
769 if (brack) | |
770 { | |
771 nm = brack + 1; | |
772 brack = 0; | |
773 } | |
774 /* if /pathname/dev:, move nm to dev: */ | |
775 else if (slash) | |
776 nm = slash + 1; | |
777 /* if node::dev:, move colon following dev */ | |
778 else if (colon && colon[-1] == ':') | |
779 colon = p; | |
780 /* if dev1:dev2:, move nm to dev2: */ | |
781 else if (colon && colon[-1] != ':') | |
782 { | |
783 nm = colon + 1; | |
784 colon = 0; | |
785 } | |
786 if (p[0] == ':' && !colon) | |
787 { | |
788 if (p[1] == ':') | |
789 p++; | |
790 colon = p; | |
791 } | |
792 if (lbrack == rbrack) | |
793 if (p[0] == ';') | |
794 dots = 2; | |
795 else if (p[0] == '.') | |
796 dots++; | |
797 #endif /* VMS */ | |
798 p++; | |
799 } | |
800 if (!lose) | |
801 { | |
802 #ifdef VMS | |
803 if (index (nm, '/')) | |
804 return build_string (sys_translate_unix (nm)); | |
805 #endif /* VMS */ | |
806 if (nm == XSTRING (name)->data) | |
807 return name; | |
808 return build_string (nm); | |
809 } | |
810 } | |
811 | |
812 /* Now determine directory to start with and put it in newdir */ | |
813 | |
814 newdir = 0; | |
815 | |
816 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
|
817 { |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
818 if (nm[1] == '/' |
230 | 819 #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
|
820 || 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
|
821 #endif /* VMS */ |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
822 || 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
|
823 { |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
824 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
|
825 newdir = (unsigned char *) ""; |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
826 nm++; |
230 | 827 #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
|
828 nm++; /* Don't leave the slash in nm. */ |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
829 #endif /* VMS */ |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
830 } |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
831 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
|
832 { |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
833 for (p = nm; *p && (*p != '/' |
230 | 834 #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
|
835 && *p != ':' |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
836 #endif /* VMS */ |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
837 ); p++); |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
838 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
|
839 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
|
840 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
|
841 |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
842 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
|
843 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
|
844 { |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
845 newdir = (unsigned char *) pw -> pw_dir; |
230 | 846 #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
|
847 nm = p + 1; /* skip the terminator */ |
230 | 848 #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
|
849 nm = p; |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
850 #endif /* VMS */ |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
851 } |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
852 |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
853 /* 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
|
854 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
|
855 } |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
856 } |
230 | 857 |
858 if (nm[0] != '/' | |
859 #ifdef VMS | |
860 && !index (nm, ':') | |
861 #endif /* not VMS */ | |
862 && !newdir) | |
863 { | |
864 newdir = XSTRING (defalt)->data; | |
865 } | |
866 | |
372 | 867 if (newdir != 0) |
868 { | |
869 /* Get rid of any slash at the end of newdir. */ | |
870 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
|
871 /* 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
|
872 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
|
873 Anyway, we can't take the risk of this change now. */ |
fcf578723758
(Fexpand_file_name): Undo last change--too risky for now.
Richard M. Stallman <rms@gnu.org>
parents:
2591
diff
changeset
|
874 if (newdir[length - 1] == '/') |
372 | 875 { |
876 unsigned char *temp = (unsigned char *) alloca (length); | |
877 bcopy (newdir, temp, length - 1); | |
878 temp[length - 1] = 0; | |
879 newdir = temp; | |
880 } | |
881 tlen = length + 1; | |
882 } | |
883 else | |
884 tlen = 0; | |
230 | 885 |
372 | 886 /* Now concatenate the directory and name to new space in the stack frame */ |
887 tlen += strlen (nm) + 1; | |
230 | 888 target = (unsigned char *) alloca (tlen); |
889 *target = 0; | |
890 | |
891 if (newdir) | |
892 { | |
893 #ifndef VMS | |
894 if (nm[0] == 0 || nm[0] == '/') | |
895 strcpy (target, newdir); | |
896 else | |
897 #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
|
898 file_name_as_directory (target, newdir); |
230 | 899 } |
900 | |
901 strcat (target, nm); | |
902 #ifdef VMS | |
903 if (index (target, '/')) | |
904 strcpy (target, sys_translate_unix (target)); | |
905 #endif /* VMS */ | |
906 | |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
907 /* Now canonicalize by removing /. and /foo/.. if they appear. */ |
230 | 908 |
909 p = target; | |
910 o = target; | |
911 | |
912 while (*p) | |
913 { | |
914 #ifdef VMS | |
915 if (*p != ']' && *p != '>' && *p != '-') | |
916 { | |
917 if (*p == '\\') | |
918 p++; | |
919 *o++ = *p++; | |
920 } | |
921 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2) | |
922 /* brackets are offset from each other by 2 */ | |
923 { | |
924 p += 2; | |
925 if (*p != '.' && *p != '-' && o[-1] != '.') | |
926 /* convert [foo][bar] to [bar] */ | |
927 while (o[-1] != '[' && o[-1] != '<') | |
928 o--; | |
929 else if (*p == '-' && *o != '.') | |
930 *--p = '.'; | |
931 } | |
932 else if (p[0] == '-' && o[-1] == '.' && | |
933 (p[1] == '.' || p[1] == ']' || p[1] == '>')) | |
934 /* flush .foo.- ; leave - if stopped by '[' or '<' */ | |
935 { | |
936 do | |
937 o--; | |
938 while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<'); | |
939 if (p[1] == '.') /* foo.-.bar ==> bar*/ | |
940 p += 2; | |
941 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */ | |
942 p++, o--; | |
943 /* else [foo.-] ==> [-] */ | |
944 } | |
945 else | |
946 { | |
947 #ifndef VMS4_4 | |
948 if (*p == '-' && | |
949 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' && | |
950 p[1] != ']' && p[1] != '>' && p[1] != '.') | |
951 *p = '_'; | |
952 #endif /* VMS4_4 */ | |
953 *o++ = *p++; | |
954 } | |
955 #else /* not VMS */ | |
956 if (*p != '/') | |
957 { | |
958 *o++ = *p++; | |
959 } | |
960 else if (!strncmp (p, "//", 2) | |
961 #ifdef APOLLO | |
962 /* // at start of filename is meaningful in Apollo system */ | |
963 && o != target | |
964 #endif /* APOLLO */ | |
965 ) | |
966 { | |
967 o = target; | |
968 p++; | |
969 } | |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
970 else if (p[0] == '/' |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
971 && p[1] == '.' |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
972 && (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
|
973 || 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
|
974 { |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
975 /* 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
|
976 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
|
977 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
|
978 *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
|
979 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
|
980 } |
230 | 981 else if (!strncmp (p, "/..", 3) |
982 /* `/../' is the "superroot" on certain file systems. */ | |
983 && o != target | |
984 && (p[3] == '/' || p[3] == 0)) | |
985 { | |
986 while (o != target && *--o != '/') | |
987 ; | |
988 #ifdef APOLLO | |
989 if (o == target + 1 && o[-1] == '/' && o[0] == '/') | |
990 ++o; | |
991 else | |
992 #endif /* APOLLO */ | |
993 if (o == target && *o == '/') | |
994 ++o; | |
995 p += 3; | |
996 } | |
997 else | |
998 { | |
999 *o++ = *p++; | |
1000 } | |
1001 #endif /* not VMS */ | |
1002 } | |
1003 | |
1004 return make_string (target, o - target); | |
1005 } | |
1006 #if 0 | |
732 | 1007 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. |
1008 DEAFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0, | |
230 | 1009 "Convert FILENAME to absolute, and canonicalize it.\n\ |
1010 Second arg DEFAULT is directory to start with if FILENAME is relative\n\ | |
1011 (does not start with slash); if DEFAULT is nil or missing,\n\ | |
1012 the current buffer's value of default-directory is used.\n\ | |
1013 Filenames containing `.' or `..' as components are simplified;\n\ | |
1014 initial `~/' expands to your home directory.\n\ | |
1015 See also the function `substitute-in-file-name'.") | |
1016 (name, defalt) | |
1017 Lisp_Object name, defalt; | |
1018 { | |
1019 unsigned char *nm; | |
1020 | |
1021 register unsigned char *newdir, *p, *o; | |
1022 int tlen; | |
1023 unsigned char *target; | |
1024 struct passwd *pw; | |
1025 int lose; | |
1026 #ifdef VMS | |
1027 unsigned char * colon = 0; | |
1028 unsigned char * close = 0; | |
1029 unsigned char * slash = 0; | |
1030 unsigned char * brack = 0; | |
1031 int lbrack = 0, rbrack = 0; | |
1032 int dots = 0; | |
1033 #endif /* VMS */ | |
1034 | |
1035 CHECK_STRING (name, 0); | |
1036 | |
1037 #ifdef VMS | |
1038 /* Filenames on VMS are always upper case. */ | |
1039 name = Fupcase (name); | |
1040 #endif | |
1041 | |
1042 nm = XSTRING (name)->data; | |
1043 | |
1044 /* If nm is absolute, flush ...// and detect /./ and /../. | |
1045 If no /./ or /../ we can return right away. */ | |
1046 if ( | |
1047 nm[0] == '/' | |
1048 #ifdef VMS | |
1049 || index (nm, ':') | |
1050 #endif /* VMS */ | |
1051 ) | |
1052 { | |
1053 p = nm; | |
1054 lose = 0; | |
1055 while (*p) | |
1056 { | |
1057 if (p[0] == '/' && p[1] == '/' | |
1058 #ifdef APOLLO | |
1059 /* // at start of filename is meaningful on Apollo system */ | |
1060 && nm != p | |
1061 #endif /* APOLLO */ | |
1062 ) | |
1063 nm = p + 1; | |
1064 if (p[0] == '/' && p[1] == '~') | |
1065 nm = p + 1, lose = 1; | |
1066 if (p[0] == '/' && p[1] == '.' | |
1067 && (p[2] == '/' || p[2] == 0 | |
1068 || (p[2] == '.' && (p[3] == '/' || p[3] == 0)))) | |
1069 lose = 1; | |
1070 #ifdef VMS | |
1071 if (p[0] == '\\') | |
1072 lose = 1; | |
1073 if (p[0] == '/') { | |
1074 /* if dev:[dir]/, move nm to / */ | |
1075 if (!slash && p > nm && (brack || colon)) { | |
1076 nm = (brack ? brack + 1 : colon + 1); | |
1077 lbrack = rbrack = 0; | |
1078 brack = 0; | |
1079 colon = 0; | |
1080 } | |
1081 slash = p; | |
1082 } | |
1083 if (p[0] == '-') | |
1084 #ifndef VMS4_4 | |
1085 /* VMS pre V4.4,convert '-'s in filenames. */ | |
1086 if (lbrack == rbrack) | |
1087 { | |
1088 if (dots < 2) /* this is to allow negative version numbers */ | |
1089 p[0] = '_'; | |
1090 } | |
1091 else | |
1092 #endif /* VMS4_4 */ | |
1093 if (lbrack > rbrack && | |
1094 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') && | |
1095 (p[1] == '.' || p[1] == ']' || p[1] == '>'))) | |
1096 lose = 1; | |
1097 #ifndef VMS4_4 | |
1098 else | |
1099 p[0] = '_'; | |
1100 #endif /* VMS4_4 */ | |
1101 /* count open brackets, reset close bracket pointer */ | |
1102 if (p[0] == '[' || p[0] == '<') | |
1103 lbrack++, brack = 0; | |
1104 /* count close brackets, set close bracket pointer */ | |
1105 if (p[0] == ']' || p[0] == '>') | |
1106 rbrack++, brack = p; | |
1107 /* detect ][ or >< */ | |
1108 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<')) | |
1109 lose = 1; | |
1110 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~') | |
1111 nm = p + 1, lose = 1; | |
1112 if (p[0] == ':' && (colon || slash)) | |
1113 /* if dev1:[dir]dev2:, move nm to dev2: */ | |
1114 if (brack) | |
1115 { | |
1116 nm = brack + 1; | |
1117 brack = 0; | |
1118 } | |
1119 /* if /pathname/dev:, move nm to dev: */ | |
1120 else if (slash) | |
1121 nm = slash + 1; | |
1122 /* if node::dev:, move colon following dev */ | |
1123 else if (colon && colon[-1] == ':') | |
1124 colon = p; | |
1125 /* if dev1:dev2:, move nm to dev2: */ | |
1126 else if (colon && colon[-1] != ':') | |
1127 { | |
1128 nm = colon + 1; | |
1129 colon = 0; | |
1130 } | |
1131 if (p[0] == ':' && !colon) | |
1132 { | |
1133 if (p[1] == ':') | |
1134 p++; | |
1135 colon = p; | |
1136 } | |
1137 if (lbrack == rbrack) | |
1138 if (p[0] == ';') | |
1139 dots = 2; | |
1140 else if (p[0] == '.') | |
1141 dots++; | |
1142 #endif /* VMS */ | |
1143 p++; | |
1144 } | |
1145 if (!lose) | |
1146 { | |
1147 #ifdef VMS | |
1148 if (index (nm, '/')) | |
1149 return build_string (sys_translate_unix (nm)); | |
1150 #endif /* VMS */ | |
1151 if (nm == XSTRING (name)->data) | |
1152 return name; | |
1153 return build_string (nm); | |
1154 } | |
1155 } | |
1156 | |
1157 /* Now determine directory to start with and put it in NEWDIR */ | |
1158 | |
1159 newdir = 0; | |
1160 | |
1161 if (nm[0] == '~') /* prefix ~ */ | |
1162 if (nm[1] == '/' | |
1163 #ifdef VMS | |
1164 || nm[1] == ':' | |
1165 #endif /* VMS */ | |
1166 || nm[1] == 0)/* ~/filename */ | |
1167 { | |
1168 if (!(newdir = (unsigned char *) egetenv ("HOME"))) | |
1169 newdir = (unsigned char *) ""; | |
1170 nm++; | |
1171 #ifdef VMS | |
1172 nm++; /* Don't leave the slash in nm. */ | |
1173 #endif /* VMS */ | |
1174 } | |
1175 else /* ~user/filename */ | |
1176 { | |
1177 /* Get past ~ to user */ | |
1178 unsigned char *user = nm + 1; | |
1179 /* Find end of name. */ | |
1180 unsigned char *ptr = (unsigned char *) index (user, '/'); | |
1181 int len = ptr ? ptr - user : strlen (user); | |
1182 #ifdef VMS | |
1183 unsigned char *ptr1 = index (user, ':'); | |
1184 if (ptr1 != 0 && ptr1 - user < len) | |
1185 len = ptr1 - user; | |
1186 #endif /* VMS */ | |
1187 /* Copy the user name into temp storage. */ | |
1188 o = (unsigned char *) alloca (len + 1); | |
1189 bcopy ((char *) user, o, len); | |
1190 o[len] = 0; | |
1191 | |
1192 /* Look up the user name. */ | |
1193 pw = (struct passwd *) getpwnam (o + 1); | |
1194 if (!pw) | |
1195 error ("\"%s\" isn't a registered user", o + 1); | |
1196 | |
1197 newdir = (unsigned char *) pw->pw_dir; | |
1198 | |
1199 /* Discard the user name from NM. */ | |
1200 nm += len; | |
1201 } | |
1202 | |
1203 if (nm[0] != '/' | |
1204 #ifdef VMS | |
1205 && !index (nm, ':') | |
1206 #endif /* not VMS */ | |
1207 && !newdir) | |
1208 { | |
485 | 1209 if (NILP (defalt)) |
230 | 1210 defalt = current_buffer->directory; |
1211 CHECK_STRING (defalt, 1); | |
1212 newdir = XSTRING (defalt)->data; | |
1213 } | |
1214 | |
1215 /* Now concatenate the directory and name to new space in the stack frame */ | |
1216 | |
1217 tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1; | |
1218 target = (unsigned char *) alloca (tlen); | |
1219 *target = 0; | |
1220 | |
1221 if (newdir) | |
1222 { | |
1223 #ifndef VMS | |
1224 if (nm[0] == 0 || nm[0] == '/') | |
1225 strcpy (target, newdir); | |
1226 else | |
1227 #endif | |
1228 file_name_as_directory (target, newdir); | |
1229 } | |
1230 | |
1231 strcat (target, nm); | |
1232 #ifdef VMS | |
1233 if (index (target, '/')) | |
1234 strcpy (target, sys_translate_unix (target)); | |
1235 #endif /* VMS */ | |
1236 | |
1237 /* Now canonicalize by removing /. and /foo/.. if they appear */ | |
1238 | |
1239 p = target; | |
1240 o = target; | |
1241 | |
1242 while (*p) | |
1243 { | |
1244 #ifdef VMS | |
1245 if (*p != ']' && *p != '>' && *p != '-') | |
1246 { | |
1247 if (*p == '\\') | |
1248 p++; | |
1249 *o++ = *p++; | |
1250 } | |
1251 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2) | |
1252 /* brackets are offset from each other by 2 */ | |
1253 { | |
1254 p += 2; | |
1255 if (*p != '.' && *p != '-' && o[-1] != '.') | |
1256 /* convert [foo][bar] to [bar] */ | |
1257 while (o[-1] != '[' && o[-1] != '<') | |
1258 o--; | |
1259 else if (*p == '-' && *o != '.') | |
1260 *--p = '.'; | |
1261 } | |
1262 else if (p[0] == '-' && o[-1] == '.' && | |
1263 (p[1] == '.' || p[1] == ']' || p[1] == '>')) | |
1264 /* flush .foo.- ; leave - if stopped by '[' or '<' */ | |
1265 { | |
1266 do | |
1267 o--; | |
1268 while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<'); | |
1269 if (p[1] == '.') /* foo.-.bar ==> bar*/ | |
1270 p += 2; | |
1271 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */ | |
1272 p++, o--; | |
1273 /* else [foo.-] ==> [-] */ | |
1274 } | |
1275 else | |
1276 { | |
1277 #ifndef VMS4_4 | |
1278 if (*p == '-' && | |
1279 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' && | |
1280 p[1] != ']' && p[1] != '>' && p[1] != '.') | |
1281 *p = '_'; | |
1282 #endif /* VMS4_4 */ | |
1283 *o++ = *p++; | |
1284 } | |
1285 #else /* not VMS */ | |
1286 if (*p != '/') | |
1287 { | |
1288 *o++ = *p++; | |
1289 } | |
1290 else if (!strncmp (p, "//", 2) | |
1291 #ifdef APOLLO | |
1292 /* // at start of filename is meaningful in Apollo system */ | |
1293 && o != target | |
1294 #endif /* APOLLO */ | |
1295 ) | |
1296 { | |
1297 o = target; | |
1298 p++; | |
1299 } | |
1300 else if (p[0] == '/' && p[1] == '.' && | |
1301 (p[2] == '/' || p[2] == 0)) | |
1302 p += 2; | |
1303 else if (!strncmp (p, "/..", 3) | |
1304 /* `/../' is the "superroot" on certain file systems. */ | |
1305 && o != target | |
1306 && (p[3] == '/' || p[3] == 0)) | |
1307 { | |
1308 while (o != target && *--o != '/') | |
1309 ; | |
1310 #ifdef APOLLO | |
1311 if (o == target + 1 && o[-1] == '/' && o[0] == '/') | |
1312 ++o; | |
1313 else | |
1314 #endif /* APOLLO */ | |
1315 if (o == target && *o == '/') | |
1316 ++o; | |
1317 p += 3; | |
1318 } | |
1319 else | |
1320 { | |
1321 *o++ = *p++; | |
1322 } | |
1323 #endif /* not VMS */ | |
1324 } | |
1325 | |
1326 return make_string (target, o - target); | |
1327 } | |
1328 #endif | |
1329 | |
1330 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name, | |
1331 Ssubstitute_in_file_name, 1, 1, 0, | |
1332 "Substitute environment variables referred to in FILENAME.\n\ | |
1333 `$FOO' where FOO is an environment variable name means to substitute\n\ | |
1334 the value of that variable. The variable name should be terminated\n\ | |
1335 with a character not a letter, digit or underscore; otherwise, enclose\n\ | |
1336 the entire variable name in braces.\n\ | |
1337 If `/~' appears, all of FILENAME through that `/' is discarded.\n\n\ | |
1338 On VMS, `$' substitution is not done; this function does little and only\n\ | |
1339 duplicates what `expand-file-name' does.") | |
1340 (string) | |
1341 Lisp_Object string; | |
1342 { | |
1343 unsigned char *nm; | |
1344 | |
1345 register unsigned char *s, *p, *o, *x, *endp; | |
1346 unsigned char *target; | |
1347 int total = 0; | |
1348 int substituted = 0; | |
1349 unsigned char *xnm; | |
1350 | |
1351 CHECK_STRING (string, 0); | |
1352 | |
1353 nm = XSTRING (string)->data; | |
1354 endp = nm + XSTRING (string)->size; | |
1355 | |
1356 /* If /~ or // appears, discard everything through first slash. */ | |
1357 | |
1358 for (p = nm; p != endp; p++) | |
1359 { | |
1360 if ((p[0] == '~' || | |
1361 #ifdef APOLLO | |
1362 /* // at start of file name is meaningful in Apollo system */ | |
1363 (p[0] == '/' && p - 1 != nm) | |
1364 #else /* not APOLLO */ | |
1365 p[0] == '/' | |
1366 #endif /* not APOLLO */ | |
1367 ) | |
1368 && p != nm && | |
1369 #ifdef VMS | |
1370 (p[-1] == ':' || p[-1] == ']' || p[-1] == '>' || | |
1371 #endif /* VMS */ | |
1372 p[-1] == '/') | |
1373 #ifdef VMS | |
1374 ) | |
1375 #endif /* VMS */ | |
1376 { | |
1377 nm = p; | |
1378 substituted = 1; | |
1379 } | |
1380 } | |
1381 | |
1382 #ifdef VMS | |
1383 return build_string (nm); | |
1384 #else | |
1385 | |
1386 /* See if any variables are substituted into the string | |
1387 and find the total length of their values in `total' */ | |
1388 | |
1389 for (p = nm; p != endp;) | |
1390 if (*p != '$') | |
1391 p++; | |
1392 else | |
1393 { | |
1394 p++; | |
1395 if (p == endp) | |
1396 goto badsubst; | |
1397 else if (*p == '$') | |
1398 { | |
1399 /* "$$" means a single "$" */ | |
1400 p++; | |
1401 total -= 1; | |
1402 substituted = 1; | |
1403 continue; | |
1404 } | |
1405 else if (*p == '{') | |
1406 { | |
1407 o = ++p; | |
1408 while (p != endp && *p != '}') p++; | |
1409 if (*p != '}') goto missingclose; | |
1410 s = p; | |
1411 } | |
1412 else | |
1413 { | |
1414 o = p; | |
1415 while (p != endp && (isalnum (*p) || *p == '_')) p++; | |
1416 s = p; | |
1417 } | |
1418 | |
1419 /* Copy out the variable name */ | |
1420 target = (unsigned char *) alloca (s - o + 1); | |
1421 strncpy (target, o, s - o); | |
1422 target[s - o] = 0; | |
1423 | |
1424 /* Get variable value */ | |
1425 o = (unsigned char *) egetenv (target); | |
1426 /* The presence of this code makes vax 5.0 crash, for reasons yet unknown */ | |
1427 #if 0 | |
1428 #ifdef USG | |
1429 if (!o && !strcmp (target, "USER")) | |
1430 o = egetenv ("LOGNAME"); | |
1431 #endif /* USG */ | |
1432 #endif /* 0 */ | |
1433 if (!o) goto badvar; | |
1434 total += strlen (o); | |
1435 substituted = 1; | |
1436 } | |
1437 | |
1438 if (!substituted) | |
1439 return string; | |
1440 | |
1441 /* If substitution required, recopy the string and do it */ | |
1442 /* Make space in stack frame for the new copy */ | |
1443 xnm = (unsigned char *) alloca (XSTRING (string)->size + total + 1); | |
1444 x = xnm; | |
1445 | |
1446 /* Copy the rest of the name through, replacing $ constructs with values */ | |
1447 for (p = nm; *p;) | |
1448 if (*p != '$') | |
1449 *x++ = *p++; | |
1450 else | |
1451 { | |
1452 p++; | |
1453 if (p == endp) | |
1454 goto badsubst; | |
1455 else if (*p == '$') | |
1456 { | |
1457 *x++ = *p++; | |
1458 continue; | |
1459 } | |
1460 else if (*p == '{') | |
1461 { | |
1462 o = ++p; | |
1463 while (p != endp && *p != '}') p++; | |
1464 if (*p != '}') goto missingclose; | |
1465 s = p++; | |
1466 } | |
1467 else | |
1468 { | |
1469 o = p; | |
1470 while (p != endp && (isalnum (*p) || *p == '_')) p++; | |
1471 s = p; | |
1472 } | |
1473 | |
1474 /* Copy out the variable name */ | |
1475 target = (unsigned char *) alloca (s - o + 1); | |
1476 strncpy (target, o, s - o); | |
1477 target[s - o] = 0; | |
1478 | |
1479 /* Get variable value */ | |
1480 o = (unsigned char *) egetenv (target); | |
1481 /* The presence of this code makes vax 5.0 crash, for reasons yet unknown */ | |
1482 #if 0 | |
1483 #ifdef USG | |
1484 if (!o && !strcmp (target, "USER")) | |
1485 o = egetenv ("LOGNAME"); | |
1486 #endif /* USG */ | |
1487 #endif /* 0 */ | |
1488 if (!o) | |
1489 goto badvar; | |
1490 | |
1491 strcpy (x, o); | |
1492 x += strlen (o); | |
1493 } | |
1494 | |
1495 *x = 0; | |
1496 | |
1497 /* If /~ or // appears, discard everything through first slash. */ | |
1498 | |
1499 for (p = xnm; p != x; p++) | |
1500 if ((p[0] == '~' || | |
1501 #ifdef APOLLO | |
1502 /* // at start of file name is meaningful in Apollo system */ | |
1503 (p[0] == '/' && p - 1 != xnm) | |
1504 #else /* not APOLLO */ | |
1505 p[0] == '/' | |
1506 #endif /* not APOLLO */ | |
1507 ) | |
1508 && p != nm && p[-1] == '/') | |
1509 xnm = p; | |
1510 | |
1511 return make_string (xnm, x - xnm); | |
1512 | |
1513 badsubst: | |
1514 error ("Bad format environment-variable substitution"); | |
1515 missingclose: | |
1516 error ("Missing \"}\" in environment-variable substitution"); | |
1517 badvar: | |
1518 error ("Substituting nonexistent environment variable \"%s\"", target); | |
1519 | |
1520 /* NOTREACHED */ | |
1521 #endif /* not VMS */ | |
1522 } | |
1523 | |
853 | 1524 /* 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
|
1525 (directory-file-name (expand-file-name FOO)). */ |
853 | 1526 |
230 | 1527 Lisp_Object |
1528 expand_and_dir_to_file (filename, defdir) | |
1529 Lisp_Object filename, defdir; | |
1530 { | |
1531 register Lisp_Object abspath; | |
1532 | |
1533 abspath = Fexpand_file_name (filename, defdir); | |
1534 #ifdef VMS | |
1535 { | |
1536 register int c = XSTRING (abspath)->data[XSTRING (abspath)->size - 1]; | |
1537 if (c == ':' || c == ']' || c == '>') | |
1538 abspath = Fdirectory_file_name (abspath); | |
1539 } | |
1540 #else | |
1541 /* Remove final slash, if any (unless path is root). | |
1542 stat behaves differently depending! */ | |
1543 if (XSTRING (abspath)->size > 1 | |
1544 && XSTRING (abspath)->data[XSTRING (abspath)->size - 1] == '/') | |
4483
6894dd27c9ec
(expand_and_dir_to_file): Use Fdirectory_file_name.
Richard M. Stallman <rms@gnu.org>
parents:
4451
diff
changeset
|
1545 /* 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
|
1546 abspath = Fdirectory_file_name (abspath); |
230 | 1547 #endif |
1548 return abspath; | |
1549 } | |
1550 | |
1551 barf_or_query_if_file_exists (absname, querystring, interactive) | |
1552 Lisp_Object absname; | |
1553 unsigned char *querystring; | |
1554 int interactive; | |
1555 { | |
1556 register Lisp_Object tem; | |
1557 struct gcpro gcpro1; | |
1558 | |
1559 if (access (XSTRING (absname)->data, 4) >= 0) | |
1560 { | |
1561 if (! interactive) | |
1562 Fsignal (Qfile_already_exists, | |
1563 Fcons (build_string ("File already exists"), | |
1564 Fcons (absname, Qnil))); | |
1565 GCPRO1 (absname); | |
1566 tem = do_yes_or_no_p (format1 ("File %s already exists; %s anyway? ", | |
1567 XSTRING (absname)->data, querystring)); | |
1568 UNGCPRO; | |
485 | 1569 if (NILP (tem)) |
230 | 1570 Fsignal (Qfile_already_exists, |
1571 Fcons (build_string ("File already exists"), | |
1572 Fcons (absname, Qnil))); | |
1573 } | |
1574 return; | |
1575 } | |
1576 | |
1577 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 4, | |
410 | 1578 "fCopy file: \nFCopy %s to file: \np\nP", |
230 | 1579 "Copy FILE to NEWNAME. Both args must be strings.\n\ |
1580 Signals a `file-already-exists' error if file NEWNAME already exists,\n\ | |
1581 unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil.\n\ | |
1582 A number as third arg means request confirmation if NEWNAME already exists.\n\ | |
1583 This is what happens in interactive use with M-x.\n\ | |
410 | 1584 Fourth arg KEEP-TIME non-nil means give the new file the same\n\ |
1585 last-modified time as the old one. (This works on only some systems.)\n\ | |
1586 A prefix arg makes KEEP-TIME non-nil.") | |
230 | 1587 (filename, newname, ok_if_already_exists, keep_date) |
1588 Lisp_Object filename, newname, ok_if_already_exists, keep_date; | |
1589 { | |
1590 int ifd, ofd, n; | |
1591 char buf[16 * 1024]; | |
1592 struct stat st; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1593 Lisp_Object handler; |
230 | 1594 struct gcpro gcpro1, gcpro2; |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1595 int count = specpdl_ptr - specpdl; |
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1596 Lisp_Object args[6]; |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1597 int input_file_statable_p; |
230 | 1598 |
1599 GCPRO2 (filename, newname); | |
1600 CHECK_STRING (filename, 0); | |
1601 CHECK_STRING (newname, 1); | |
1602 filename = Fexpand_file_name (filename, Qnil); | |
1603 newname = Fexpand_file_name (newname, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1604 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1605 /* 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
|
1606 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
1607 handler = Ffind_file_name_handler (filename); |
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1608 /* 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
|
1609 if (NILP (handler)) |
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1610 handler = Ffind_file_name_handler (newname); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1611 if (!NILP (handler)) |
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1612 return call5 (handler, Qcopy_file, filename, newname, |
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1613 ok_if_already_exists, keep_date); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1614 |
485 | 1615 if (NILP (ok_if_already_exists) |
230 | 1616 || XTYPE (ok_if_already_exists) == Lisp_Int) |
1617 barf_or_query_if_file_exists (newname, "copy to it", | |
1618 XTYPE (ok_if_already_exists) == Lisp_Int); | |
1619 | |
1620 ifd = open (XSTRING (filename)->data, 0); | |
1621 if (ifd < 0) | |
1622 report_file_error ("Opening input file", Fcons (filename, Qnil)); | |
1623 | |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1624 record_unwind_protect (close_file_unwind, make_number (ifd)); |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1625 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1626 /* 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
|
1627 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
|
1628 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
|
1629 |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1630 #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
|
1631 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
|
1632 { |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1633 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
|
1634 { |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1635 #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
|
1636 /* 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
|
1637 errno = EISDIR; |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1638 #endif /* EISDIR */ |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1639 report_file_error ("Non-regular file", Fcons (filename, Qnil)); |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1640 } |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1641 } |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1642 #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
|
1643 |
230 | 1644 #ifdef VMS |
1645 /* Create the copy file with the same record format as the input file */ | |
1646 ofd = sys_creat (XSTRING (newname)->data, 0666, ifd); | |
1647 #else | |
1648 ofd = creat (XSTRING (newname)->data, 0666); | |
1649 #endif /* VMS */ | |
1650 if (ofd < 0) | |
595 | 1651 report_file_error ("Opening output file", Fcons (newname, Qnil)); |
230 | 1652 |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1653 record_unwind_protect (close_file_unwind, make_number (ofd)); |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1654 |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1655 immediate_quit = 1; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1656 QUIT; |
230 | 1657 while ((n = read (ifd, buf, sizeof buf)) > 0) |
1658 if (write (ofd, buf, n) != n) | |
595 | 1659 report_file_error ("I/O error", Fcons (newname, Qnil)); |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1660 immediate_quit = 0; |
230 | 1661 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
1662 if (input_file_statable_p) |
230 | 1663 { |
485 | 1664 if (!NILP (keep_date)) |
230 | 1665 { |
564 | 1666 EMACS_TIME atime, mtime; |
1667 EMACS_SET_SECS_USECS (atime, st.st_atime, 0); | |
1668 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0); | |
1669 EMACS_SET_UTIMES (XSTRING (newname)->data, atime, mtime); | |
230 | 1670 } |
1671 #ifdef APOLLO | |
1672 if (!egetenv ("USE_DOMAIN_ACLS")) | |
1673 #endif | |
564 | 1674 chmod (XSTRING (newname)->data, st.st_mode & 07777); |
230 | 1675 } |
1676 | |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1677 /* Discard the unwind protects. */ |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1678 specpdl_ptr = specpdl + count; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
1679 |
230 | 1680 close (ifd); |
1681 if (close (ofd) < 0) | |
1682 report_file_error ("I/O error", Fcons (newname, Qnil)); | |
1683 | |
1684 UNGCPRO; | |
1685 return Qnil; | |
1686 } | |
1687 | |
1533
b86ef0432100
(Fmake_directory_internal): Renamed from Fmake_directory.
Richard M. Stallman <rms@gnu.org>
parents:
1377
diff
changeset
|
1688 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
|
1689 Smake_directory_internal, 1, 1, 0, |
230 | 1690 "Create a directory. One argument, a file name string.") |
1691 (dirname) | |
1692 Lisp_Object dirname; | |
1693 { | |
1694 unsigned char *dir; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1695 Lisp_Object handler; |
230 | 1696 |
1697 CHECK_STRING (dirname, 0); | |
1698 dirname = Fexpand_file_name (dirname, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1699 |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
1700 handler = Ffind_file_name_handler (dirname); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1701 if (!NILP (handler)) |
1533
b86ef0432100
(Fmake_directory_internal): Renamed from Fmake_directory.
Richard M. Stallman <rms@gnu.org>
parents:
1377
diff
changeset
|
1702 return call3 (handler, Qmake_directory, dirname, Qnil); |
b86ef0432100
(Fmake_directory_internal): Renamed from Fmake_directory.
Richard M. Stallman <rms@gnu.org>
parents:
1377
diff
changeset
|
1703 |
230 | 1704 dir = XSTRING (dirname)->data; |
1705 | |
1706 if (mkdir (dir, 0777) != 0) | |
1707 report_file_error ("Creating directory", Flist (1, &dirname)); | |
1708 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1709 return Qnil; |
230 | 1710 } |
1711 | |
686
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
1712 DEFUN ("delete-directory", Fdelete_directory, Sdelete_directory, 1, 1, "FDelete directory: ", |
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
1713 "Delete a directory. One argument, a file name string.") |
230 | 1714 (dirname) |
1715 Lisp_Object dirname; | |
1716 { | |
1717 unsigned char *dir; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1718 Lisp_Object handler; |
230 | 1719 |
1720 CHECK_STRING (dirname, 0); | |
1721 dirname = Fexpand_file_name (dirname, Qnil); | |
1722 dir = XSTRING (dirname)->data; | |
1723 | |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
1724 handler = Ffind_file_name_handler (dirname); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1725 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1726 return call2 (handler, Qdelete_directory, dirname); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1727 |
230 | 1728 if (rmdir (dir) != 0) |
1729 report_file_error ("Removing directory", Flist (1, &dirname)); | |
1730 | |
1731 return Qnil; | |
1732 } | |
1733 | |
1734 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 1, "fDelete file: ", | |
1735 "Delete specified file. One argument, a file name string.\n\ | |
1736 If file has multiple names, it continues to exist with the other names.") | |
1737 (filename) | |
1738 Lisp_Object filename; | |
1739 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1740 Lisp_Object handler; |
230 | 1741 CHECK_STRING (filename, 0); |
1742 filename = Fexpand_file_name (filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1743 |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
1744 handler = Ffind_file_name_handler (filename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1745 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1746 return call2 (handler, Qdelete_file, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1747 |
230 | 1748 if (0 > unlink (XSTRING (filename)->data)) |
1749 report_file_error ("Removing old name", Flist (1, &filename)); | |
1750 return Qnil; | |
1751 } | |
1752 | |
1753 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3, | |
1754 "fRename file: \nFRename %s to file: \np", | |
1755 "Rename FILE as NEWNAME. Both args strings.\n\ | |
1756 If file has names other than FILE, it continues to have those names.\n\ | |
1757 Signals a `file-already-exists' error if a file NEWNAME already exists\n\ | |
1758 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\ | |
1759 A number as third arg means request confirmation if NEWNAME already exists.\n\ | |
1760 This is what happens in interactive use with M-x.") | |
1761 (filename, newname, ok_if_already_exists) | |
1762 Lisp_Object filename, newname, ok_if_already_exists; | |
1763 { | |
1764 #ifdef NO_ARG_ARRAY | |
1765 Lisp_Object args[2]; | |
1766 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1767 Lisp_Object handler; |
230 | 1768 struct gcpro gcpro1, gcpro2; |
1769 | |
1770 GCPRO2 (filename, newname); | |
1771 CHECK_STRING (filename, 0); | |
1772 CHECK_STRING (newname, 1); | |
1773 filename = Fexpand_file_name (filename, Qnil); | |
1774 newname = Fexpand_file_name (newname, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1775 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1776 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1777 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
1778 handler = Ffind_file_name_handler (filename); |
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1779 if (NILP (handler)) |
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1780 handler = Ffind_file_name_handler (newname); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1781 if (!NILP (handler)) |
3598
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
3560
diff
changeset
|
1782 return call4 (handler, Qrename_file, |
3c4b5489d2b4
* fileio.c (Frename_file): Pass all arguments to the file name handler.
Jim Blandy <jimb@redhat.com>
parents:
3560
diff
changeset
|
1783 filename, newname, ok_if_already_exists); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1784 |
485 | 1785 if (NILP (ok_if_already_exists) |
230 | 1786 || XTYPE (ok_if_already_exists) == Lisp_Int) |
1787 barf_or_query_if_file_exists (newname, "rename to it", | |
1788 XTYPE (ok_if_already_exists) == Lisp_Int); | |
1789 #ifndef BSD4_1 | |
1790 if (0 > rename (XSTRING (filename)->data, XSTRING (newname)->data)) | |
1791 #else | |
1792 if (0 > link (XSTRING (filename)->data, XSTRING (newname)->data) | |
1793 || 0 > unlink (XSTRING (filename)->data)) | |
1794 #endif | |
1795 { | |
1796 if (errno == EXDEV) | |
1797 { | |
3963
39caef7a70c2
(Frename_file): After prompting for ok-if-already-exists, pass only nil or
Roland McGrath <roland@gnu.org>
parents:
3829
diff
changeset
|
1798 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
|
1799 /* 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
|
1800 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
|
1801 NILP (ok_if_already_exists) ? Qnil : Qt, Qt); |
230 | 1802 Fdelete_file (filename); |
1803 } | |
1804 else | |
1805 #ifdef NO_ARG_ARRAY | |
1806 { | |
1807 args[0] = filename; | |
1808 args[1] = newname; | |
1809 report_file_error ("Renaming", Flist (2, args)); | |
1810 } | |
1811 #else | |
1812 report_file_error ("Renaming", Flist (2, &filename)); | |
1813 #endif | |
1814 } | |
1815 UNGCPRO; | |
1816 return Qnil; | |
1817 } | |
1818 | |
1819 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3, | |
1820 "fAdd name to file: \nFName to add to %s: \np", | |
1821 "Give FILE additional name NEWNAME. Both args strings.\n\ | |
1822 Signals a `file-already-exists' error if a file NEWNAME already exists\n\ | |
1823 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\ | |
1824 A number as third arg means request confirmation if NEWNAME already exists.\n\ | |
1825 This is what happens in interactive use with M-x.") | |
1826 (filename, newname, ok_if_already_exists) | |
1827 Lisp_Object filename, newname, ok_if_already_exists; | |
1828 { | |
1829 #ifdef NO_ARG_ARRAY | |
1830 Lisp_Object args[2]; | |
1831 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1832 Lisp_Object handler; |
230 | 1833 struct gcpro gcpro1, gcpro2; |
1834 | |
1835 GCPRO2 (filename, newname); | |
1836 CHECK_STRING (filename, 0); | |
1837 CHECK_STRING (newname, 1); | |
1838 filename = Fexpand_file_name (filename, Qnil); | |
1839 newname = Fexpand_file_name (newname, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1840 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1841 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1842 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
1843 handler = Ffind_file_name_handler (filename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1844 if (!NILP (handler)) |
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1845 return call4 (handler, Qadd_name_to_file, filename, newname, |
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1846 ok_if_already_exists); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1847 |
485 | 1848 if (NILP (ok_if_already_exists) |
230 | 1849 || XTYPE (ok_if_already_exists) == Lisp_Int) |
1850 barf_or_query_if_file_exists (newname, "make it a new name", | |
1851 XTYPE (ok_if_already_exists) == Lisp_Int); | |
1852 unlink (XSTRING (newname)->data); | |
1853 if (0 > link (XSTRING (filename)->data, XSTRING (newname)->data)) | |
1854 { | |
1855 #ifdef NO_ARG_ARRAY | |
1856 args[0] = filename; | |
1857 args[1] = newname; | |
1858 report_file_error ("Adding new name", Flist (2, args)); | |
1859 #else | |
1860 report_file_error ("Adding new name", Flist (2, &filename)); | |
1861 #endif | |
1862 } | |
1863 | |
1864 UNGCPRO; | |
1865 return Qnil; | |
1866 } | |
1867 | |
1868 #ifdef S_IFLNK | |
1869 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3, | |
1870 "FMake symbolic link to file: \nFMake symbolic link to file %s: \np", | |
1871 "Make a symbolic link to FILENAME, named LINKNAME. Both args strings.\n\ | |
1872 Signals a `file-already-exists' error if a file NEWNAME already exists\n\ | |
1873 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil.\n\ | |
1874 A number as third arg means request confirmation if NEWNAME already exists.\n\ | |
1875 This happens for interactive use with M-x.") | |
732 | 1876 (filename, linkname, ok_if_already_exists) |
1877 Lisp_Object filename, linkname, ok_if_already_exists; | |
230 | 1878 { |
1879 #ifdef NO_ARG_ARRAY | |
1880 Lisp_Object args[2]; | |
1881 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1882 Lisp_Object handler; |
230 | 1883 struct gcpro gcpro1, gcpro2; |
1884 | |
732 | 1885 GCPRO2 (filename, linkname); |
230 | 1886 CHECK_STRING (filename, 0); |
732 | 1887 CHECK_STRING (linkname, 1); |
230 | 1888 #if 0 /* This made it impossible to make a link to a relative name. */ |
1889 filename = Fexpand_file_name (filename, Qnil); | |
1890 #endif | |
732 | 1891 linkname = Fexpand_file_name (linkname, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1892 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1893 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1894 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
1895 handler = Ffind_file_name_handler (filename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1896 if (!NILP (handler)) |
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1897 return call4 (handler, Qmake_symbolic_link, filename, linkname, |
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
1898 ok_if_already_exists); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
1899 |
485 | 1900 if (NILP (ok_if_already_exists) |
230 | 1901 || XTYPE (ok_if_already_exists) == Lisp_Int) |
732 | 1902 barf_or_query_if_file_exists (linkname, "make it a link", |
230 | 1903 XTYPE (ok_if_already_exists) == Lisp_Int); |
732 | 1904 if (0 > symlink (XSTRING (filename)->data, XSTRING (linkname)->data)) |
230 | 1905 { |
1906 /* If we didn't complain already, silently delete existing file. */ | |
1907 if (errno == EEXIST) | |
1908 { | |
2650
f378d89945e1
* fileio.c (Fmake_symbolic_link): If a file already exists under
Jim Blandy <jimb@redhat.com>
parents:
2607
diff
changeset
|
1909 unlink (XSTRING (linkname)->data); |
732 | 1910 if (0 <= symlink (XSTRING (filename)->data, XSTRING (linkname)->data)) |
230 | 1911 return Qnil; |
1912 } | |
1913 | |
1914 #ifdef NO_ARG_ARRAY | |
1915 args[0] = filename; | |
732 | 1916 args[1] = linkname; |
230 | 1917 report_file_error ("Making symbolic link", Flist (2, args)); |
1918 #else | |
1919 report_file_error ("Making symbolic link", Flist (2, &filename)); | |
1920 #endif | |
1921 } | |
1922 UNGCPRO; | |
1923 return Qnil; | |
1924 } | |
1925 #endif /* S_IFLNK */ | |
1926 | |
1927 #ifdef VMS | |
1928 | |
1929 DEFUN ("define-logical-name", Fdefine_logical_name, Sdefine_logical_name, | |
1930 2, 2, "sDefine logical name: \nsDefine logical name %s as: ", | |
1931 "Define the job-wide logical name NAME to have the value STRING.\n\ | |
1932 If STRING is nil or a null string, the logical name NAME is deleted.") | |
1933 (varname, string) | |
1934 Lisp_Object varname; | |
1935 Lisp_Object string; | |
1936 { | |
1937 CHECK_STRING (varname, 0); | |
485 | 1938 if (NILP (string)) |
230 | 1939 delete_logical_name (XSTRING (varname)->data); |
1940 else | |
1941 { | |
1942 CHECK_STRING (string, 1); | |
1943 | |
1944 if (XSTRING (string)->size == 0) | |
1945 delete_logical_name (XSTRING (varname)->data); | |
1946 else | |
1947 define_logical_name (XSTRING (varname)->data, XSTRING (string)->data); | |
1948 } | |
1949 | |
1950 return string; | |
1951 } | |
1952 #endif /* VMS */ | |
1953 | |
1954 #ifdef HPUX_NET | |
1955 | |
1956 DEFUN ("sysnetunam", Fsysnetunam, Ssysnetunam, 2, 2, 0, | |
1957 "Open a network connection to PATH using LOGIN as the login string.") | |
1958 (path, login) | |
1959 Lisp_Object path, login; | |
1960 { | |
1961 int netresult; | |
1962 | |
1963 CHECK_STRING (path, 0); | |
1964 CHECK_STRING (login, 0); | |
1965 | |
1966 netresult = netunam (XSTRING (path)->data, XSTRING (login)->data); | |
1967 | |
1968 if (netresult == -1) | |
1969 return Qnil; | |
1970 else | |
1971 return Qt; | |
1972 } | |
1973 #endif /* HPUX_NET */ | |
1974 | |
1975 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p, | |
1976 1, 1, 0, | |
1977 "Return t if file FILENAME specifies an absolute path name.\n\ | |
1978 On Unix, this is a name starting with a `/' or a `~'.") | |
1979 (filename) | |
1980 Lisp_Object filename; | |
1981 { | |
1982 unsigned char *ptr; | |
1983 | |
1984 CHECK_STRING (filename, 0); | |
1985 ptr = XSTRING (filename)->data; | |
1986 if (*ptr == '/' || *ptr == '~' | |
1987 #ifdef VMS | |
1988 /* ??? This criterion is probably wrong for '<'. */ | |
1989 || index (ptr, ':') || index (ptr, '<') | |
1990 || (*ptr == '[' && (ptr[1] != '-' || (ptr[2] != '.' && ptr[2] != ']')) | |
1991 && ptr[1] != '.') | |
1992 #endif /* VMS */ | |
1993 ) | |
1994 return Qt; | |
1995 else | |
1996 return Qnil; | |
1997 } | |
1998 | |
1999 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0, | |
2000 "Return t if file FILENAME exists. (This does not mean you can read it.)\n\ | |
2001 See also `file-readable-p' and `file-attributes'.") | |
2002 (filename) | |
2003 Lisp_Object filename; | |
2004 { | |
2005 Lisp_Object abspath; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2006 Lisp_Object handler; |
230 | 2007 |
2008 CHECK_STRING (filename, 0); | |
2009 abspath = Fexpand_file_name (filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2010 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2011 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2012 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
2013 handler = Ffind_file_name_handler (abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2014 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2015 return call2 (handler, Qfile_exists_p, abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2016 |
230 | 2017 return (access (XSTRING (abspath)->data, 0) >= 0) ? Qt : Qnil; |
2018 } | |
2019 | |
2020 DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0, | |
2021 "Return t if FILENAME can be executed by you.\n\ | |
2236 | 2022 For a directory, this means you can access files in that directory.") |
230 | 2023 (filename) |
2024 Lisp_Object filename; | |
2025 | |
2026 { | |
2027 Lisp_Object abspath; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2028 Lisp_Object handler; |
230 | 2029 |
2030 CHECK_STRING (filename, 0); | |
2031 abspath = Fexpand_file_name (filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2032 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2033 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2034 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
2035 handler = Ffind_file_name_handler (abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2036 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2037 return call2 (handler, Qfile_executable_p, abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2038 |
230 | 2039 return (access (XSTRING (abspath)->data, 1) >= 0) ? Qt : Qnil; |
2040 } | |
2041 | |
2042 DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0, | |
2043 "Return t if file FILENAME exists and you can read it.\n\ | |
2044 See also `file-exists-p' and `file-attributes'.") | |
2045 (filename) | |
2046 Lisp_Object filename; | |
2047 { | |
2048 Lisp_Object abspath; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2049 Lisp_Object handler; |
230 | 2050 |
2051 CHECK_STRING (filename, 0); | |
2052 abspath = Fexpand_file_name (filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2053 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2054 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2055 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
2056 handler = Ffind_file_name_handler (abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2057 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2058 return call2 (handler, Qfile_readable_p, abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2059 |
230 | 2060 return (access (XSTRING (abspath)->data, 4) >= 0) ? Qt : Qnil; |
2061 } | |
2062 | |
2063 DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0, | |
2064 "If file FILENAME is the name of a symbolic link\n\ | |
2065 returns the name of the file to which it is linked.\n\ | |
2066 Otherwise returns NIL.") | |
2067 (filename) | |
2068 Lisp_Object filename; | |
2069 { | |
2070 #ifdef S_IFLNK | |
2071 char *buf; | |
2072 int bufsize; | |
2073 int valsize; | |
2074 Lisp_Object val; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2075 Lisp_Object handler; |
230 | 2076 |
2077 CHECK_STRING (filename, 0); | |
2078 filename = Fexpand_file_name (filename, Qnil); | |
2079 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2080 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2081 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
2082 handler = Ffind_file_name_handler (filename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2083 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2084 return call2 (handler, Qfile_symlink_p, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2085 |
230 | 2086 bufsize = 100; |
2087 while (1) | |
2088 { | |
2089 buf = (char *) xmalloc (bufsize); | |
2090 bzero (buf, bufsize); | |
2091 valsize = readlink (XSTRING (filename)->data, buf, bufsize); | |
2092 if (valsize < bufsize) break; | |
2093 /* 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
|
2094 xfree (buf); |
230 | 2095 bufsize *= 2; |
2096 } | |
2097 if (valsize == -1) | |
2098 { | |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2435
diff
changeset
|
2099 xfree (buf); |
230 | 2100 return Qnil; |
2101 } | |
2102 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
|
2103 xfree (buf); |
230 | 2104 return val; |
2105 #else /* not S_IFLNK */ | |
2106 return Qnil; | |
2107 #endif /* not S_IFLNK */ | |
2108 } | |
2109 | |
2741
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2110 #ifdef SOLARIS_BROKEN_ACCESS |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2111 /* In Solaris 2.1, the readonly-ness of the filesystem is not |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2112 considered by the access system call. This is Sun's bug, but we |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2113 still have to make Emacs work. */ |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2114 |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2115 #include <sys/statvfs.h> |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2116 |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2117 static int |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2118 ro_fsys (path) |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2119 char *path; |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2120 { |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2121 struct statvfs statvfsb; |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2122 |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2123 if (statvfs(path, &statvfsb)) |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2124 return 1; /* error from statvfs, be conservative and say not wrtable */ |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2125 else |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2126 /* Otherwise, fsys is ro if bit is set. */ |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2127 return statvfsb.f_flag & ST_RDONLY; |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2128 } |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2129 #else |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2130 /* But on every other os, access has already done the right thing. */ |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2131 #define ro_fsys(path) 0 |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2132 #endif |
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2133 |
230 | 2134 /* Having this before file-symlink-p mysteriously caused it to be forgotten |
2135 on the RT/PC. */ | |
2136 DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0, | |
2137 "Return t if file FILENAME can be written or created by you.") | |
2138 (filename) | |
2139 Lisp_Object filename; | |
2140 { | |
2141 Lisp_Object abspath, dir; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2142 Lisp_Object handler; |
230 | 2143 |
2144 CHECK_STRING (filename, 0); | |
2145 abspath = Fexpand_file_name (filename, Qnil); | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2146 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2147 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2148 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
2149 handler = Ffind_file_name_handler (abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2150 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2151 return call2 (handler, Qfile_writable_p, abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2152 |
230 | 2153 if (access (XSTRING (abspath)->data, 0) >= 0) |
2741
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2154 return ((access (XSTRING (abspath)->data, 2) >= 0 |
3017
3afba65e22fa
* fileio.c (Ffile_writable_p): Pass XSTRING (foo)->data to
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2155 && ! ro_fsys ((char *) XSTRING (abspath)->data)) |
2741
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2156 ? Qt : Qnil); |
230 | 2157 dir = Ffile_name_directory (abspath); |
2158 #ifdef VMS | |
485 | 2159 if (!NILP (dir)) |
230 | 2160 dir = Fdirectory_file_name (dir); |
2161 #endif /* VMS */ | |
2741
1d72336294c6
* fileio.c (ro_fsys) [SOLARIS_BROKEN_ACCESS]: Check for the
Jim Blandy <jimb@redhat.com>
parents:
2650
diff
changeset
|
2162 return ((access (!NILP (dir) ? (char *) XSTRING (dir)->data : "", 2) >= 0 |
3017
3afba65e22fa
* fileio.c (Ffile_writable_p): Pass XSTRING (foo)->data to
Jim Blandy <jimb@redhat.com>
parents:
2961
diff
changeset
|
2163 && ! ro_fsys ((char *) XSTRING (dir)->data)) |
230 | 2164 ? Qt : Qnil); |
2165 } | |
2166 | |
2167 DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0, | |
2168 "Return t if file FILENAME is the name of a directory as a file.\n\ | |
2169 A directory name spec may be given instead; then the value is t\n\ | |
2170 if the directory so specified exists and really is a directory.") | |
2171 (filename) | |
2172 Lisp_Object filename; | |
2173 { | |
2174 register Lisp_Object abspath; | |
2175 struct stat st; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2176 Lisp_Object handler; |
230 | 2177 |
2178 abspath = expand_and_dir_to_file (filename, current_buffer->directory); | |
2179 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2180 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2181 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
2182 handler = Ffind_file_name_handler (abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2183 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2184 return call2 (handler, Qfile_directory_p, abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2185 |
230 | 2186 if (stat (XSTRING (abspath)->data, &st) < 0) |
2187 return Qnil; | |
2188 return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil; | |
2189 } | |
2190 | |
536 | 2191 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p, Sfile_accessible_directory_p, 1, 1, 0, |
2192 "Return t if file FILENAME is the name of a directory as a file,\n\ | |
2193 and files in that directory can be opened by you. In order to use a\n\ | |
2194 directory as a buffer's current directory, this predicate must return true.\n\ | |
2195 A directory name spec may be given instead; then the value is t\n\ | |
2196 if the directory so specified exists and really is a readable and\n\ | |
2197 searchable directory.") | |
2198 (filename) | |
2199 Lisp_Object filename; | |
2200 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2201 Lisp_Object handler; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2202 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2203 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2204 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
2205 handler = Ffind_file_name_handler (filename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2206 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2207 return call2 (handler, Qfile_accessible_directory_p, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2208 |
536 | 2209 if (NILP (Ffile_directory_p (filename)) |
2210 || NILP (Ffile_executable_p (filename))) | |
2211 return Qnil; | |
2212 else | |
2213 return Qt; | |
2214 } | |
2215 | |
230 | 2216 DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0, |
2217 "Return mode bits of FILE, as an integer.") | |
2218 (filename) | |
2219 Lisp_Object filename; | |
2220 { | |
2221 Lisp_Object abspath; | |
2222 struct stat st; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2223 Lisp_Object handler; |
230 | 2224 |
2225 abspath = expand_and_dir_to_file (filename, current_buffer->directory); | |
2226 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2227 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2228 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
2229 handler = Ffind_file_name_handler (abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2230 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2231 return call2 (handler, Qfile_modes, abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2232 |
230 | 2233 if (stat (XSTRING (abspath)->data, &st) < 0) |
2234 return Qnil; | |
2235 return make_number (st.st_mode & 07777); | |
2236 } | |
2237 | |
2238 DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2, 0, | |
2239 "Set mode bits of FILE to MODE (an integer).\n\ | |
2240 Only the 12 low bits of MODE are used.") | |
2241 (filename, mode) | |
2242 Lisp_Object filename, mode; | |
2243 { | |
2244 Lisp_Object abspath; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2245 Lisp_Object handler; |
230 | 2246 |
2247 abspath = Fexpand_file_name (filename, current_buffer->directory); | |
2248 CHECK_NUMBER (mode, 1); | |
2249 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2250 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2251 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
2252 handler = Ffind_file_name_handler (abspath); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2253 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2254 return call3 (handler, Qset_file_modes, abspath, mode); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2255 |
230 | 2256 #ifndef APOLLO |
2257 if (chmod (XSTRING (abspath)->data, XINT (mode)) < 0) | |
2258 report_file_error ("Doing chmod", Fcons (abspath, Qnil)); | |
2259 #else /* APOLLO */ | |
2260 if (!egetenv ("USE_DOMAIN_ACLS")) | |
2261 { | |
2262 struct stat st; | |
2263 struct timeval tvp[2]; | |
2264 | |
2265 /* chmod on apollo also change the file's modtime; need to save the | |
2266 modtime and then restore it. */ | |
2267 if (stat (XSTRING (abspath)->data, &st) < 0) | |
2268 { | |
2269 report_file_error ("Doing chmod", Fcons (abspath, Qnil)); | |
2270 return (Qnil); | |
2271 } | |
2272 | |
2273 if (chmod (XSTRING (abspath)->data, XINT (mode)) < 0) | |
2274 report_file_error ("Doing chmod", Fcons (abspath, Qnil)); | |
2275 | |
2276 /* reset the old accessed and modified times. */ | |
2277 tvp[0].tv_sec = st.st_atime + 1; /* +1 due to an Apollo roundoff bug */ | |
2278 tvp[0].tv_usec = 0; | |
2279 tvp[1].tv_sec = st.st_mtime + 1; /* +1 due to an Apollo roundoff bug */ | |
2280 tvp[1].tv_usec = 0; | |
2281 | |
2282 if (utimes (XSTRING (abspath)->data, tvp) < 0) | |
2283 report_file_error ("Doing utimes", Fcons (abspath, Qnil)); | |
2284 } | |
2285 #endif /* APOLLO */ | |
2286 | |
2287 return Qnil; | |
2288 } | |
2289 | |
1763
65e858c07a8b
(Fset_default_file_modes, Fdefault_file_modes): Renamed from .._mode.
Richard M. Stallman <rms@gnu.org>
parents:
1762
diff
changeset
|
2290 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
|
2291 "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
|
2292 The argument MODE should be an integer; only the low 9 bits are used.\n\ |
550 | 2293 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
|
2294 (mode) |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2295 Lisp_Object mode; |
550 | 2296 { |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2297 CHECK_NUMBER (mode, 0); |
550 | 2298 |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2299 umask ((~ XINT (mode)) & 0777); |
550 | 2300 |
2301 return Qnil; | |
2302 } | |
2303 | |
1763
65e858c07a8b
(Fset_default_file_modes, Fdefault_file_modes): Renamed from .._mode.
Richard M. Stallman <rms@gnu.org>
parents:
1762
diff
changeset
|
2304 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
|
2305 "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
|
2306 The value is an integer.") |
550 | 2307 () |
2308 { | |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2309 int realmask; |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2310 Lisp_Object value; |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2311 |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2312 realmask = umask (0); |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2313 umask (realmask); |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2314 |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2315 XSET (value, Lisp_Int, (~ realmask) & 0777); |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
2316 return value; |
550 | 2317 } |
2318 | |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2319 #ifdef unix |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2320 |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2321 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "", |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2322 "Tell Unix to finish all pending disk updates.") |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2323 () |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2324 { |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2325 sync (); |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2326 return Qnil; |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2327 } |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2328 |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2329 #endif /* unix */ |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
2330 |
230 | 2331 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0, |
2332 "Return t if file FILE1 is newer than file FILE2.\n\ | |
2333 If FILE1 does not exist, the answer is nil;\n\ | |
2334 otherwise, if FILE2 does not exist, the answer is t.") | |
2335 (file1, file2) | |
2336 Lisp_Object file1, file2; | |
2337 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2338 Lisp_Object abspath1, abspath2; |
230 | 2339 struct stat st; |
2340 int mtime1; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2341 Lisp_Object handler; |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2342 struct gcpro gcpro1, gcpro2; |
230 | 2343 |
2344 CHECK_STRING (file1, 0); | |
2345 CHECK_STRING (file2, 0); | |
2346 | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2347 abspath1 = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2348 GCPRO2 (abspath1, file2); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2349 abspath1 = expand_and_dir_to_file (file1, current_buffer->directory); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2350 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
|
2351 UNGCPRO; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2352 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2353 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2354 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
2355 handler = Ffind_file_name_handler (abspath1); |
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2356 if (NILP (handler)) |
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2357 handler = Ffind_file_name_handler (abspath2); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2358 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2359 return call3 (handler, Qfile_newer_than_file_p, abspath1, abspath2); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2360 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2361 if (stat (XSTRING (abspath1)->data, &st) < 0) |
230 | 2362 return Qnil; |
2363 | |
2364 mtime1 = st.st_mtime; | |
2365 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2366 if (stat (XSTRING (abspath2)->data, &st) < 0) |
230 | 2367 return Qt; |
2368 | |
2369 return (mtime1 > st.st_mtime) ? Qt : Qnil; | |
2370 } | |
2371 | |
2372 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents, | |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2373 1, 4, 0, |
230 | 2374 "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
|
2375 Returns list of absolute file name and length of data inserted.\n\ |
230 | 2376 If second argument VISIT is non-nil, the buffer's visited filename\n\ |
2377 and last save file modtime are set, and it is marked unmodified.\n\ | |
2378 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
|
2379 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
|
2380 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
|
2381 specify what portion of the file to insert.\n\ |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2382 If VISIT is non-nil, BEG and END must be nil.") |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2383 (filename, visit, beg, end) |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2384 Lisp_Object filename, visit, beg, end; |
230 | 2385 { |
2386 struct stat st; | |
2387 register int fd; | |
2388 register int inserted = 0; | |
2389 register int how_much; | |
2390 int count = specpdl_ptr - specpdl; | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2391 struct gcpro gcpro1, gcpro2; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2392 Lisp_Object handler, val, insval; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2393 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
|
2394 int total; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2395 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2396 val = Qnil; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2397 p = Qnil; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2398 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2399 GCPRO2 (filename, p); |
485 | 2400 if (!NILP (current_buffer->read_only)) |
230 | 2401 Fbarf_if_buffer_read_only(); |
2402 | |
2403 CHECK_STRING (filename, 0); | |
2404 filename = Fexpand_file_name (filename, Qnil); | |
2405 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2406 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2407 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
2408 handler = Ffind_file_name_handler (filename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2409 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2410 { |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2411 val = call5 (handler, Qinsert_file_contents, filename, visit, beg, end); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2412 st.st_mtime = 0; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2413 goto handled; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2414 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2415 |
230 | 2416 fd = -1; |
2417 | |
2418 #ifndef APOLLO | |
2419 if (stat (XSTRING (filename)->data, &st) < 0 | |
410 | 2420 || (fd = open (XSTRING (filename)->data, 0)) < 0) |
230 | 2421 #else |
2422 if ((fd = open (XSTRING (filename)->data, 0)) < 0 | |
2423 || fstat (fd, &st) < 0) | |
2424 #endif /* not APOLLO */ | |
2425 { | |
2426 if (fd >= 0) close (fd); | |
485 | 2427 if (NILP (visit)) |
230 | 2428 report_file_error ("Opening input file", Fcons (filename, Qnil)); |
2429 st.st_mtime = -1; | |
2430 how_much = 0; | |
2431 goto notfound; | |
2432 } | |
2433 | |
2434 record_unwind_protect (close_file_unwind, make_number (fd)); | |
2435 | |
752 | 2436 #ifdef S_IFSOCK |
2437 /* This code will need to be changed in order to work on named | |
2438 pipes, and it's probably just not worth it. So we should at | |
2439 least signal an error. */ | |
2440 if ((st.st_mode & S_IFMT) == S_IFSOCK) | |
2441 Fsignal (Qfile_error, | |
2442 Fcons (build_string ("reading from named pipe"), | |
2443 Fcons (filename, Qnil))); | |
2444 #endif | |
2445 | |
230 | 2446 /* Supposedly happens on VMS. */ |
2447 if (st.st_size < 0) | |
2448 error ("File size is negative"); | |
752 | 2449 |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2450 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
|
2451 if (!NILP (visit)) |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2452 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
|
2453 |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2454 if (!NILP (beg)) |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2455 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
|
2456 else |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2457 XFASTINT (beg) = 0; |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2458 |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2459 if (!NILP (end)) |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2460 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
|
2461 else |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2462 { |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2463 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
|
2464 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
|
2465 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
|
2466 } |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2467 |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2468 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
|
2469 |
230 | 2470 { |
2471 register Lisp_Object temp; | |
2472 | |
2473 /* Make sure point-max won't overflow after this insertion. */ | |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2474 XSET (temp, Lisp_Int, total); |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2475 if (total != XINT (temp)) |
230 | 2476 error ("maximum buffer size exceeded"); |
2477 } | |
2478 | |
4395
76b24be40a57
(Finsert_file_contents): Don't call prepare_to_modify_buffer
Richard M. Stallman <rms@gnu.org>
parents:
4270
diff
changeset
|
2479 if (NILP (visit) && total > 0) |
230 | 2480 prepare_to_modify_buffer (point, point); |
2481 | |
2482 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
|
2483 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
|
2484 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
|
2485 |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2486 if (XINT (beg) != 0) |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2487 { |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2488 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
|
2489 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
|
2490 } |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2491 |
230 | 2492 while (1) |
2493 { | |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2494 int try = min (total - inserted, 64 << 10); |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2495 int this; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2496 |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2497 /* Allow quitting out of the actual I/O. */ |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2498 immediate_quit = 1; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2499 QUIT; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2500 this = read (fd, &FETCH_CHAR (point + inserted - 1) + 1, try); |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2501 immediate_quit = 0; |
230 | 2502 |
2503 if (this <= 0) | |
2504 { | |
2505 how_much = this; | |
2506 break; | |
2507 } | |
2508 | |
2509 GPT += this; | |
2510 GAP_SIZE -= this; | |
2511 ZV += this; | |
2512 Z += this; | |
2513 inserted += this; | |
2514 } | |
2515 | |
2516 if (inserted > 0) | |
1240
7365d006d0a0
(Finsert_file_contents): Do record_insert, then inc MODIFF.
Richard M. Stallman <rms@gnu.org>
parents:
1204
diff
changeset
|
2517 { |
7365d006d0a0
(Finsert_file_contents): Do record_insert, then inc MODIFF.
Richard M. Stallman <rms@gnu.org>
parents:
1204
diff
changeset
|
2518 record_insert (point, inserted); |
1299
b8337cdf2e8b
* fileio.c (Finsert_file_contents): Call offset_intervals() if
Joseph Arceneaux <jla@gnu.org>
parents:
1240
diff
changeset
|
2519 |
b8337cdf2e8b
* fileio.c (Finsert_file_contents): Call offset_intervals() if
Joseph Arceneaux <jla@gnu.org>
parents:
1240
diff
changeset
|
2520 /* 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
|
2521 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
|
2522 MODIFF++; |
7365d006d0a0
(Finsert_file_contents): Do record_insert, then inc MODIFF.
Richard M. Stallman <rms@gnu.org>
parents:
1204
diff
changeset
|
2523 } |
230 | 2524 |
2525 close (fd); | |
2526 | |
2527 /* Discard the unwind protect */ | |
2528 specpdl_ptr = specpdl + count; | |
2529 | |
2530 if (how_much < 0) | |
2531 error ("IO error reading %s: %s", | |
2532 XSTRING (filename)->data, err_str (errno)); | |
2533 | |
2534 notfound: | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2535 handled: |
230 | 2536 |
485 | 2537 if (!NILP (visit)) |
230 | 2538 { |
2539 current_buffer->undo_list = Qnil; | |
2540 #ifdef APOLLO | |
2541 stat (XSTRING (filename)->data, &st); | |
2542 #endif | |
2543 current_buffer->modtime = st.st_mtime; | |
2544 current_buffer->save_modified = MODIFF; | |
2545 current_buffer->auto_save_modified = MODIFF; | |
2546 XFASTINT (current_buffer->save_length) = Z - BEG; | |
2547 #ifdef CLASH_DETECTION | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2548 if (NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2549 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2550 if (!NILP (current_buffer->filename)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2551 unlock_file (current_buffer->filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2552 unlock_file (filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2553 } |
230 | 2554 #endif /* CLASH_DETECTION */ |
2555 current_buffer->filename = filename; | |
2556 /* If visiting nonexistent file, return nil. */ | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2557 if (current_buffer->modtime == -1) |
230 | 2558 report_file_error ("Opening input file", Fcons (filename, Qnil)); |
2559 } | |
2560 | |
2561 signal_after_change (point, 0, inserted); | |
2562 | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2563 if (inserted > 0) |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2564 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2565 p = Vafter_insert_file_functions; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2566 while (!NILP (p)) |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2567 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2568 insval = call1 (Fcar (p), make_number (inserted)); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2569 if (!NILP (insval)) |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2570 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2571 CHECK_NUMBER (insval, 0); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2572 inserted = XFASTINT (insval); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2573 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2574 QUIT; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2575 p = Fcdr (p); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2576 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2577 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2578 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2579 if (!NILP (val)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2580 RETURN_UNGCPRO (val); |
350 | 2581 RETURN_UNGCPRO (Fcons (filename, |
2582 Fcons (make_number (inserted), | |
2583 Qnil))); | |
230 | 2584 } |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
2585 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2586 static Lisp_Object build_annotations (); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2587 |
230 | 2588 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 5, |
2589 "r\nFWrite region to file: ", | |
2590 "Write current region into specified file.\n\ | |
2591 When called from a program, takes three arguments:\n\ | |
2592 START, END and FILENAME. START and END are buffer positions.\n\ | |
2593 Optional fourth argument APPEND if non-nil means\n\ | |
2594 append to existing file contents (if any).\n\ | |
2595 Optional fifth argument VISIT if t means\n\ | |
2596 set the last-save-file-modtime of buffer to this file's modtime\n\ | |
2597 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
|
2598 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
|
2599 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
|
2600 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
|
2601 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
|
2602 that means do not print the \"Wrote file\" message.\n\ |
230 | 2603 Kludgy feature: if START is a string, then that string is written\n\ |
2604 to the file, instead of any buffer contents, and END is ignored.") | |
2605 (start, end, filename, append, visit) | |
2606 Lisp_Object start, end, filename, append, visit; | |
2607 { | |
2608 register int desc; | |
2609 int failure; | |
2610 int save_errno; | |
2611 unsigned char *fn; | |
2612 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
|
2613 int tem; |
230 | 2614 int count = specpdl_ptr - specpdl; |
2615 #ifdef VMS | |
2616 unsigned char *fname = 0; /* If non-0, original filename (must rename) */ | |
2617 #endif /* VMS */ | |
848 | 2618 Lisp_Object handler; |
2407
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
2619 Lisp_Object visit_file; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2620 Lisp_Object annotations; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2621 int visiting, quietly; |
1377
dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
Richard M. Stallman <rms@gnu.org>
parents:
1358
diff
changeset
|
2622 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
230 | 2623 |
2624 /* Special kludge to simplify auto-saving */ | |
485 | 2625 if (NILP (start)) |
230 | 2626 { |
2627 XFASTINT (start) = BEG; | |
2628 XFASTINT (end) = Z; | |
2629 } | |
2630 else if (XTYPE (start) != Lisp_String) | |
2631 validate_region (&start, &end); | |
2632 | |
2407
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
2633 filename = Fexpand_file_name (filename, Qnil); |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
2634 if (XTYPE (visit) == Lisp_String) |
2435
b72453ad92ae
(Fwrite_region): Don't fail to set visit_file.
Richard M. Stallman <rms@gnu.org>
parents:
2407
diff
changeset
|
2635 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
|
2636 else |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
2637 visit_file = filename; |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
2638 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2639 visiting = (EQ (visit, Qt) || XTYPE (visit) == Lisp_String); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2640 quietly = !NILP (visit); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2641 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2642 annotations = Qnil; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2643 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2644 GCPRO4 (start, filename, annotations, visit_file); |
230 | 2645 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2646 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2647 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
2648 handler = Ffind_file_name_handler (filename); |
848 | 2649 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2650 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2651 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2652 Lisp_Object val; |
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2653 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
|
2654 filename, append, visit); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2655 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2656 /* Do this before reporting IO error |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2657 to avoid a "file has changed on disk" warning on |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2658 next attempt to save. */ |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2659 if (visiting) |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2660 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2661 current_buffer->modtime = 0; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2662 current_buffer->save_modified = MODIFF; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2663 XFASTINT (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
|
2664 current_buffer->filename = visit_file; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2665 } |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2666 UNGCPRO; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2667 return val; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2668 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2669 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2670 annotations = build_annotations (start, end); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2671 |
230 | 2672 #ifdef CLASH_DETECTION |
2673 if (!auto_saving) | |
1377
dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
Richard M. Stallman <rms@gnu.org>
parents:
1358
diff
changeset
|
2674 lock_file (visit_file); |
230 | 2675 #endif /* CLASH_DETECTION */ |
2676 | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2677 fn = XSTRING (filename)->data; |
230 | 2678 desc = -1; |
485 | 2679 if (!NILP (append)) |
230 | 2680 desc = open (fn, O_WRONLY); |
2681 | |
2682 if (desc < 0) | |
2683 #ifdef VMS | |
2684 if (auto_saving) /* Overwrite any previous version of autosave file */ | |
2685 { | |
2686 vms_truncate (fn); /* if fn exists, truncate to zero length */ | |
2687 desc = open (fn, O_RDWR); | |
2688 if (desc < 0) | |
2689 desc = creat_copy_attrs (XTYPE (current_buffer->filename) == Lisp_String | |
536 | 2690 ? XSTRING (current_buffer->filename)->data : 0, |
2691 fn); | |
230 | 2692 } |
2693 else /* Write to temporary name and rename if no errors */ | |
2694 { | |
2695 Lisp_Object temp_name; | |
2696 temp_name = Ffile_name_directory (filename); | |
2697 | |
485 | 2698 if (!NILP (temp_name)) |
230 | 2699 { |
2700 temp_name = Fmake_temp_name (concat2 (temp_name, | |
2701 build_string ("$$SAVE$$"))); | |
2702 fname = XSTRING (filename)->data; | |
2703 fn = XSTRING (temp_name)->data; | |
2704 desc = creat_copy_attrs (fname, fn); | |
2705 if (desc < 0) | |
2706 { | |
2707 /* If we can't open the temporary file, try creating a new | |
2708 version of the original file. VMS "creat" creates a | |
2709 new version rather than truncating an existing file. */ | |
2710 fn = fname; | |
2711 fname = 0; | |
2712 desc = creat (fn, 0666); | |
2713 #if 0 /* This can clobber an existing file and fail to replace it, | |
2714 if the user runs out of space. */ | |
2715 if (desc < 0) | |
2716 { | |
2717 /* We can't make a new version; | |
2718 try to truncate and rewrite existing version if any. */ | |
2719 vms_truncate (fn); | |
2720 desc = open (fn, O_RDWR); | |
2721 } | |
2722 #endif | |
2723 } | |
2724 } | |
2725 else | |
2726 desc = creat (fn, 0666); | |
2727 } | |
2728 #else /* not VMS */ | |
2729 desc = creat (fn, auto_saving ? auto_save_mode_bits : 0666); | |
2730 #endif /* not VMS */ | |
2731 | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2732 UNGCPRO; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
2733 |
230 | 2734 if (desc < 0) |
2735 { | |
2736 #ifdef CLASH_DETECTION | |
2737 save_errno = errno; | |
1377
dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
Richard M. Stallman <rms@gnu.org>
parents:
1358
diff
changeset
|
2738 if (!auto_saving) unlock_file (visit_file); |
230 | 2739 errno = save_errno; |
2740 #endif /* CLASH_DETECTION */ | |
2741 report_file_error ("Opening output file", Fcons (filename, Qnil)); | |
2742 } | |
2743 | |
2744 record_unwind_protect (close_file_unwind, make_number (desc)); | |
2745 | |
485 | 2746 if (!NILP (append)) |
230 | 2747 if (lseek (desc, 0, 2) < 0) |
2748 { | |
2749 #ifdef CLASH_DETECTION | |
1377
dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
Richard M. Stallman <rms@gnu.org>
parents:
1358
diff
changeset
|
2750 if (!auto_saving) unlock_file (visit_file); |
230 | 2751 #endif /* CLASH_DETECTION */ |
2752 report_file_error ("Lseek error", Fcons (filename, Qnil)); | |
2753 } | |
2754 | |
2755 #ifdef VMS | |
2756 /* | |
2757 * Kludge Warning: The VMS C RTL likes to insert carriage returns | |
2758 * if we do writes that don't end with a carriage return. Furthermore | |
2759 * it cannot handle writes of more then 16K. The modified | |
2760 * version of "sys_write" in SYSDEP.C (see comment there) copes with | |
2761 * this EXCEPT for the last record (iff it doesn't end with a carriage | |
2762 * return). This implies that if your buffer doesn't end with a carriage | |
2763 * return, you get one free... tough. However it also means that if | |
2764 * we make two calls to sys_write (a la the following code) you can | |
2765 * get one at the gap as well. The easiest way to fix this (honest) | |
2766 * is to move the gap to the next newline (or the end of the buffer). | |
2767 * Thus this change. | |
2768 * | |
2769 * Yech! | |
2770 */ | |
2771 if (GPT > BEG && GPT_ADDR[-1] != '\n') | |
2772 move_gap (find_next_newline (GPT, 1)); | |
2773 #endif | |
2774 | |
2775 failure = 0; | |
2776 immediate_quit = 1; | |
2777 | |
2778 if (XTYPE (start) == Lisp_String) | |
2779 { | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2780 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
|
2781 XSTRING (start)->size, 0, &annotations); |
230 | 2782 save_errno = errno; |
2783 } | |
2784 else if (XINT (start) != XINT (end)) | |
2785 { | |
4950
145c69e39666
(Fwrite_region): Fix minor bugs in POS arg to awrite.
Richard M. Stallman <rms@gnu.org>
parents:
4879
diff
changeset
|
2786 int nwritten = 0; |
230 | 2787 if (XINT (start) < GPT) |
2788 { | |
2789 register int end1 = XINT (end); | |
2790 tem = XINT (start); | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2791 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
|
2792 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
|
2793 nwritten += min (GPT, end1) - tem; |
230 | 2794 save_errno = errno; |
2795 } | |
2796 | |
2797 if (XINT (end) > GPT && !failure) | |
2798 { | |
2799 tem = XINT (start); | |
2800 tem = max (tem, GPT); | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2801 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
|
2802 tem, &annotations); |
145c69e39666
(Fwrite_region): Fix minor bugs in POS arg to awrite.
Richard M. Stallman <rms@gnu.org>
parents:
4879
diff
changeset
|
2803 nwritten += XINT (end) - tem; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2804 save_errno = errno; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2805 } |
4950
145c69e39666
(Fwrite_region): Fix minor bugs in POS arg to awrite.
Richard M. Stallman <rms@gnu.org>
parents:
4879
diff
changeset
|
2806 |
145c69e39666
(Fwrite_region): Fix minor bugs in POS arg to awrite.
Richard M. Stallman <rms@gnu.org>
parents:
4879
diff
changeset
|
2807 if (nwritten == 0) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2808 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2809 /* 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
|
2810 failure = 0 > a_write (desc, "", 0, XINT (start), &annotations); |
230 | 2811 save_errno = errno; |
2812 } | |
2813 } | |
2814 | |
2815 immediate_quit = 0; | |
2816 | |
2280
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
2817 #ifdef HAVE_FSYNC |
230 | 2818 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun). |
2819 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
|
2820 /* 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
|
2821 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
|
2822 if (!auto_saving && fsync (desc) < 0) |
230 | 2823 failure = 1, save_errno = errno; |
2824 #endif | |
2825 | |
2826 /* Spurious "file has changed on disk" warnings have been | |
2827 observed on Suns as well. | |
2828 It seems that `close' can change the modtime, under nfs. | |
2829 | |
2830 (This has supposedly been fixed in Sunos 4, | |
2831 but who knows about all the other machines with NFS?) */ | |
2832 #if 0 | |
2833 | |
2834 /* On VMS and APOLLO, must do the stat after the close | |
2835 since closing changes the modtime. */ | |
2836 #ifndef VMS | |
2837 #ifndef APOLLO | |
2838 /* Recall that #if defined does not work on VMS. */ | |
2839 #define FOO | |
2840 fstat (desc, &st); | |
2841 #endif | |
2842 #endif | |
2843 #endif | |
2844 | |
2845 /* NFS can report a write failure now. */ | |
2846 if (close (desc) < 0) | |
2847 failure = 1, save_errno = errno; | |
2848 | |
2849 #ifdef VMS | |
2850 /* If we wrote to a temporary name and had no errors, rename to real name. */ | |
2851 if (fname) | |
2852 { | |
2853 if (!failure) | |
2854 failure = (rename (fn, fname) != 0), save_errno = errno; | |
2855 fn = fname; | |
2856 } | |
2857 #endif /* VMS */ | |
2858 | |
2859 #ifndef FOO | |
2860 stat (fn, &st); | |
2861 #endif | |
2862 /* Discard the unwind protect */ | |
2863 specpdl_ptr = specpdl + count; | |
2864 | |
2865 #ifdef CLASH_DETECTION | |
2866 if (!auto_saving) | |
1377
dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
Richard M. Stallman <rms@gnu.org>
parents:
1358
diff
changeset
|
2867 unlock_file (visit_file); |
230 | 2868 #endif /* CLASH_DETECTION */ |
2869 | |
2870 /* Do this before reporting IO error | |
2871 to avoid a "file has changed on disk" warning on | |
2872 next attempt to save. */ | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2873 if (visiting) |
230 | 2874 current_buffer->modtime = st.st_mtime; |
2875 | |
2876 if (failure) | |
2877 error ("IO error writing %s: %s", fn, err_str (save_errno)); | |
2878 | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2879 if (visiting) |
230 | 2880 { |
2881 current_buffer->save_modified = MODIFF; | |
2882 XFASTINT (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
|
2883 current_buffer->filename = visit_file; |
230 | 2884 } |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2885 else if (quietly) |
230 | 2886 return Qnil; |
2887 | |
2888 if (!auto_saving) | |
1377
dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
Richard M. Stallman <rms@gnu.org>
parents:
1358
diff
changeset
|
2889 message ("Wrote %s", XSTRING (visit_file)->data); |
230 | 2890 |
2891 return Qnil; | |
2892 } | |
2893 | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2894 Lisp_Object merge (); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2895 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2896 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
|
2897 "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
|
2898 (a, b) |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2899 Lisp_Object a, b; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2900 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2901 return Flss (Fcar (a), Fcar (b)); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2902 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2903 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2904 /* 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
|
2905 the text between START and END, by calling all the functions in |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2906 write-region-annotate-functions and merging the lists they return. */ |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2907 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2908 static Lisp_Object |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2909 build_annotations (start, end) |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2910 Lisp_Object start, end; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2911 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2912 Lisp_Object annotations; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2913 Lisp_Object p, res; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2914 struct gcpro gcpro1, gcpro2; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2915 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2916 annotations = Qnil; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2917 p = Vwrite_region_annotate_functions; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2918 GCPRO2 (annotations, p); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2919 while (!NILP (p)) |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2920 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2921 res = call2 (Fcar (p), start, end); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2922 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
|
2923 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
|
2924 p = Fcdr (p); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2925 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2926 UNGCPRO; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2927 return annotations; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2928 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2929 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2930 /* 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
|
2931 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
|
2932 Intersperse with them the annotations from *ANNOT |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2933 (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
|
2934 each at its appropriate position. |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2935 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2936 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
|
2937 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
|
2938 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2939 int |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2940 a_write (desc, addr, len, pos, annot) |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2941 int desc; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2942 register char *addr; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2943 register int len; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2944 int pos; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2945 Lisp_Object *annot; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2946 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2947 Lisp_Object tem; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2948 int nextpos; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2949 int lastpos = pos + len; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2950 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2951 while (1) |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2952 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2953 tem = Fcar_safe (Fcar (*annot)); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2954 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
|
2955 nextpos = XFASTINT (tem); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2956 else |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2957 return e_write (desc, addr, lastpos - pos); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2958 if (nextpos > pos) |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2959 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2960 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
|
2961 return -1; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2962 addr += nextpos - pos; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2963 pos = nextpos; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2964 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2965 tem = Fcdr (Fcar (*annot)); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2966 if (STRINGP (tem)) |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2967 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2968 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
|
2969 return -1; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2970 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2971 *annot = Fcdr (*annot); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2972 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2973 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
2974 |
230 | 2975 int |
2976 e_write (desc, addr, len) | |
2977 int desc; | |
2978 register char *addr; | |
2979 register int len; | |
2980 { | |
2981 char buf[16 * 1024]; | |
2982 register char *p, *end; | |
2983 | |
2984 if (!EQ (current_buffer->selective_display, Qt)) | |
2985 return write (desc, addr, len) - len; | |
2986 else | |
2987 { | |
2988 p = buf; | |
2989 end = p + sizeof buf; | |
2990 while (len--) | |
2991 { | |
2992 if (p == end) | |
2993 { | |
2994 if (write (desc, buf, sizeof buf) != sizeof buf) | |
2995 return -1; | |
2996 p = buf; | |
2997 } | |
2998 *p = *addr++; | |
2999 if (*p++ == '\015') | |
3000 p[-1] = '\n'; | |
3001 } | |
3002 if (p != buf) | |
3003 if (write (desc, buf, p - buf) != p - buf) | |
3004 return -1; | |
3005 } | |
3006 return 0; | |
3007 } | |
3008 | |
3009 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime, | |
3010 Sverify_visited_file_modtime, 1, 1, 0, | |
3011 "Return t if last mod time of BUF's visited file matches what BUF records.\n\ | |
3012 This means that the file has not been changed since it was visited or saved.") | |
3013 (buf) | |
3014 Lisp_Object buf; | |
3015 { | |
3016 struct buffer *b; | |
3017 struct stat st; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3018 Lisp_Object handler; |
230 | 3019 |
3020 CHECK_BUFFER (buf, 0); | |
3021 b = XBUFFER (buf); | |
3022 | |
3023 if (XTYPE (b->filename) != Lisp_String) return Qt; | |
3024 if (b->modtime == 0) return Qt; | |
3025 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3026 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3027 call the corresponding file handler. */ |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
3028 handler = Ffind_file_name_handler (b->filename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3029 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3030 return call2 (handler, Qverify_visited_file_modtime, buf); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3031 |
230 | 3032 if (stat (XSTRING (b->filename)->data, &st) < 0) |
3033 { | |
3034 /* If the file doesn't exist now and didn't exist before, | |
3035 we say that it isn't modified, provided the error is a tame one. */ | |
3036 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR) | |
3037 st.st_mtime = -1; | |
3038 else | |
3039 st.st_mtime = 0; | |
3040 } | |
3041 if (st.st_mtime == b->modtime | |
3042 /* If both are positive, accept them if they are off by one second. */ | |
3043 || (st.st_mtime > 0 && b->modtime > 0 | |
3044 && (st.st_mtime == b->modtime + 1 | |
3045 || st.st_mtime == b->modtime - 1))) | |
3046 return Qt; | |
3047 return Qnil; | |
3048 } | |
3049 | |
3050 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime, | |
3051 Sclear_visited_file_modtime, 0, 0, 0, | |
3052 "Clear out records of last mod time of visited file.\n\ | |
3053 Next attempt to save will certainly not complain of a discrepancy.") | |
3054 () | |
3055 { | |
3056 current_buffer->modtime = 0; | |
3057 return Qnil; | |
3058 } | |
3059 | |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3060 DEFUN ("visited-file-modtime", Fvisited_file_modtime, |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3061 Svisited_file_modtime, 0, 0, 0, |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3062 "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
|
3063 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
|
3064 that `file-attributes' returns.") |
230 | 3065 () |
3066 { | |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3067 return long_to_cons (current_buffer->modtime); |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3068 } |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3069 |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3070 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
|
3071 Sset_visited_file_modtime, 0, 1, 0, |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3072 "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
|
3073 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
|
3074 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
|
3075 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
|
3076 \(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
|
3077 \(HIGH . LOW) or (HIGH LOW).") |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3078 (time_list) |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3079 Lisp_Object time_list; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3080 { |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3081 if (!NILP (time_list)) |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3082 current_buffer->modtime = cons_to_long (time_list); |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3083 else |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3084 { |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3085 register Lisp_Object filename; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3086 struct stat st; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3087 Lisp_Object handler; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3088 |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3089 filename = Fexpand_file_name (current_buffer->filename, Qnil); |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3090 |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3091 /* 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
|
3092 call the corresponding file handler. */ |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3093 handler = Ffind_file_name_handler (filename); |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3094 if (!NILP (handler)) |
3721
4550c56785d8
(Fset_visited_file_modtime): Don't give the handler
Richard M. Stallman <rms@gnu.org>
parents:
3705
diff
changeset
|
3095 /* 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
|
3096 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
|
3097 else if (stat (XSTRING (filename)->data, &st) >= 0) |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3098 current_buffer->modtime = st.st_mtime; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3099 } |
230 | 3100 |
3101 return Qnil; | |
3102 } | |
3103 | |
3104 Lisp_Object | |
3105 auto_save_error () | |
3106 { | |
3107 unsigned char *name = XSTRING (current_buffer->name)->data; | |
3108 | |
3109 ring_bell (); | |
3110 message ("Autosaving...error for %s", name); | |
806 | 3111 Fsleep_for (make_number (1), Qnil); |
230 | 3112 message ("Autosaving...error!for %s", name); |
806 | 3113 Fsleep_for (make_number (1), Qnil); |
230 | 3114 message ("Autosaving...error for %s", name); |
806 | 3115 Fsleep_for (make_number (1), Qnil); |
230 | 3116 return Qnil; |
3117 } | |
3118 | |
3119 Lisp_Object | |
3120 auto_save_1 () | |
3121 { | |
3122 unsigned char *fn; | |
3123 struct stat st; | |
3124 | |
3125 /* Get visited file's mode to become the auto save file's mode. */ | |
3126 if (stat (XSTRING (current_buffer->filename)->data, &st) >= 0) | |
3127 /* But make sure we can overwrite it later! */ | |
3128 auto_save_mode_bits = st.st_mode | 0600; | |
3129 else | |
3130 auto_save_mode_bits = 0666; | |
3131 | |
3132 return | |
3133 Fwrite_region (Qnil, Qnil, | |
3134 current_buffer->auto_save_file_name, | |
3135 Qnil, Qlambda); | |
3136 } | |
3137 | |
3138 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "", | |
3139 "Auto-save all buffers that need it.\n\ | |
3140 This is all buffers that have auto-saving enabled\n\ | |
3141 and are changed since last auto-saved.\n\ | |
3142 Auto-saving writes the buffer into a file\n\ | |
3143 so that your editing is not lost if the system crashes.\n\ | |
3144 This file is not the file you visited; that changes only when you save.\n\n\ | |
3145 Non-nil first argument means do not print any message if successful.\n\ | |
621 | 3146 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
|
3147 (no_message, current_only) |
f9ac4c0d8b72
* fileio.c (Fdo_auto_save): Add CURRENT_ONLY argument, as
Jim Blandy <jimb@redhat.com>
parents:
1763
diff
changeset
|
3148 Lisp_Object no_message, current_only; |
230 | 3149 { |
3150 struct buffer *old = current_buffer, *b; | |
3151 Lisp_Object tail, buf; | |
3152 int auto_saved = 0; | |
3153 char *omessage = echo_area_glyphs; | |
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
|
3154 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
|
3155 int do_handled_files; |
4270
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
3156 Lisp_Object oquit; |
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
3157 |
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
3158 /* 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
|
3159 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
|
3160 oquit = Vquit_flag; |
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
3161 Vquit_flag = Qnil; |
230 | 3162 |
3163 /* No GCPRO needed, because (when it matters) all Lisp_Object variables | |
3164 point to non-strings reached from Vbuffer_alist. */ | |
3165 | |
3166 auto_saving = 1; | |
3167 if (minibuf_level) | |
1775
f9ac4c0d8b72
* fileio.c (Fdo_auto_save): Add CURRENT_ONLY argument, as
Jim Blandy <jimb@redhat.com>
parents:
1763
diff
changeset
|
3168 no_message = Qt; |
230 | 3169 |
3170 /* Vrun_hooks is nil before emacs is dumped, and inc-vers.el will | |
3171 eventually call do-auto-save, so don't err here in that case. */ | |
485 | 3172 if (!NILP (Vrun_hooks)) |
230 | 3173 call1 (Vrun_hooks, intern ("auto-save-hook")); |
3174 | |
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
|
3175 /* 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
|
3176 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
|
3177 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
|
3178 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
|
3179 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
|
3180 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++) |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3181 for (tail = Vbuffer_alist; XGCTYPE (tail) == Lisp_Cons; |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3182 tail = XCONS (tail)->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
|
3183 { |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3184 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
|
3185 b = XBUFFER (buf); |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3186 |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3187 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
|
3188 && 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
|
3189 continue; |
1775
f9ac4c0d8b72
* fileio.c (Fdo_auto_save): Add CURRENT_ONLY argument, as
Jim Blandy <jimb@redhat.com>
parents:
1763
diff
changeset
|
3190 |
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
|
3191 /* 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
|
3192 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
|
3193 and file changed since last real 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
|
3194 if (XTYPE (b->auto_save_file_name) == Lisp_String |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3195 && b->save_modified < BUF_MODIFF (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
|
3196 && b->auto_save_modified < BUF_MODIFF (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
|
3197 && (do_handled_files |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3198 || NILP (Ffind_file_name_handler (b->auto_save_file_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
|
3199 { |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3200 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
|
3201 > (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
|
3202 /* 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
|
3203 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
|
3204 && 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
|
3205 /* 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
|
3206 && !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
|
3207 && 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
|
3208 { |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3209 /* 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
|
3210 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
|
3211 XSTRING (b->name)->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
|
3212 /* User can reenable saving with M-x 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
|
3213 b->auto_save_file_name = 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
|
3214 /* Prevent warning from repeating if user does so. */ |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3215 XFASTINT (b->save_length) = 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
|
3216 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
|
3217 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
|
3218 } |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3219 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
|
3220 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
|
3221 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
|
3222 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
|
3223 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
|
3224 b->auto_save_modified = BUF_MODIFF (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
|
3225 XFASTINT (current_buffer->save_length) = Z - BEG; |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3226 set_buffer_internal (old); |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3227 } |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
3228 } |
230 | 3229 |
1059
430923239064
(Fdo_auto_save): Always call record_auto_save.
Richard M. Stallman <rms@gnu.org>
parents:
1044
diff
changeset
|
3230 /* 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
|
3231 record_auto_save (); |
230 | 3232 |
1775
f9ac4c0d8b72
* fileio.c (Fdo_auto_save): Add CURRENT_ONLY argument, as
Jim Blandy <jimb@redhat.com>
parents:
1763
diff
changeset
|
3233 if (auto_saved && NILP (no_message)) |
230 | 3234 message1 (omessage ? omessage : "Auto-saving...done"); |
3235 | |
4270
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
3236 Vquit_flag = oquit; |
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
3237 |
230 | 3238 auto_saving = 0; |
3239 return Qnil; | |
3240 } | |
3241 | |
3242 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved, | |
3243 Sset_buffer_auto_saved, 0, 0, 0, | |
3244 "Mark current buffer as auto-saved with its current text.\n\ | |
3245 No auto-save file will be written until the buffer changes again.") | |
3246 () | |
3247 { | |
3248 current_buffer->auto_save_modified = MODIFF; | |
3249 XFASTINT (current_buffer->save_length) = Z - BEG; | |
3250 return Qnil; | |
3251 } | |
3252 | |
3253 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p, | |
3254 0, 0, 0, | |
3255 "Return t if buffer has been auto-saved since last read in or saved.") | |
3256 () | |
3257 { | |
3258 return (current_buffer->save_modified < current_buffer->auto_save_modified) ? Qt : Qnil; | |
3259 } | |
3260 | |
3261 /* Reading and completing file names */ | |
3262 extern Lisp_Object Ffile_name_completion (), Ffile_name_all_completions (); | |
3263 | |
3264 DEFUN ("read-file-name-internal", Fread_file_name_internal, Sread_file_name_internal, | |
3265 3, 3, 0, | |
3266 "Internal subroutine for read-file-name. Do not call this.") | |
3267 (string, dir, action) | |
3268 Lisp_Object string, dir, action; | |
3269 /* action is nil for complete, t for return list of completions, | |
3270 lambda for verify final value */ | |
3271 { | |
3272 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
|
3273 int changed; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3274 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3275 |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3276 realdir = dir; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3277 name = string; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3278 orig_string = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3279 specdir = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3280 changed = 0; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3281 /* No need to protect ACTION--we only compare it with t and nil. */ |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3282 GCPRO4 (string, realdir, name, specdir); |
230 | 3283 |
3284 if (XSTRING (string)->size == 0) | |
3285 { | |
3286 if (EQ (action, Qlambda)) | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3287 { |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3288 UNGCPRO; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3289 return Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3290 } |
230 | 3291 } |
3292 else | |
3293 { | |
3294 orig_string = string; | |
3295 string = Fsubstitute_in_file_name (string); | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3296 changed = NILP (Fstring_equal (string, orig_string)); |
230 | 3297 name = Ffile_name_nondirectory (string); |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3298 val = Ffile_name_directory (string); |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3299 if (! NILP (val)) |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3300 realdir = Fexpand_file_name (val, realdir); |
230 | 3301 } |
3302 | |
485 | 3303 if (NILP (action)) |
230 | 3304 { |
3305 specdir = Ffile_name_directory (string); | |
3306 val = Ffile_name_completion (name, realdir); | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3307 UNGCPRO; |
230 | 3308 if (XTYPE (val) != Lisp_String) |
3309 { | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3310 if (changed) |
230 | 3311 return string; |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3312 return val; |
230 | 3313 } |
3314 | |
485 | 3315 if (!NILP (specdir)) |
230 | 3316 val = concat2 (specdir, val); |
3317 #ifndef VMS | |
3318 { | |
3319 register unsigned char *old, *new; | |
3320 register int n; | |
3321 int osize, count; | |
3322 | |
3323 osize = XSTRING (val)->size; | |
3324 /* Quote "$" as "$$" to get it past substitute-in-file-name */ | |
3325 for (n = osize, count = 0, old = XSTRING (val)->data; n > 0; n--) | |
3326 if (*old++ == '$') count++; | |
3327 if (count > 0) | |
3328 { | |
3329 old = XSTRING (val)->data; | |
3330 val = Fmake_string (make_number (osize + count), make_number (0)); | |
3331 new = XSTRING (val)->data; | |
3332 for (n = osize; n > 0; n--) | |
3333 if (*old != '$') | |
3334 *new++ = *old++; | |
3335 else | |
3336 { | |
3337 *new++ = '$'; | |
3338 *new++ = '$'; | |
3339 old++; | |
3340 } | |
3341 } | |
3342 } | |
3343 #endif /* Not VMS */ | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3344 return val; |
230 | 3345 } |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3346 UNGCPRO; |
230 | 3347 |
3348 if (EQ (action, Qt)) | |
3349 return Ffile_name_all_completions (name, realdir); | |
3350 /* Only other case actually used is ACTION = lambda */ | |
3351 #ifdef VMS | |
3352 /* Supposedly this helps commands such as `cd' that read directory names, | |
3353 but can someone explain how it helps them? -- RMS */ | |
3354 if (XSTRING (name)->size == 0) | |
3355 return Qt; | |
3356 #endif /* VMS */ | |
3357 return Ffile_exists_p (string); | |
3358 } | |
3359 | |
3360 DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 5, 0, | |
3361 "Read file name, prompting with PROMPT and completing in directory DIR.\n\ | |
3362 Value is not expanded---you must call `expand-file-name' yourself.\n\ | |
3363 Default name to DEFAULT if user enters a null string.\n\ | |
3364 (If DEFAULT is omitted, the visited file name is used.)\n\ | |
3365 Fourth arg MUSTMATCH non-nil means require existing file's name.\n\ | |
3366 Non-nil and non-t means also require confirmation after completion.\n\ | |
3367 Fifth arg INITIAL specifies text to start with.\n\ | |
3368 DIR defaults to current buffer's directory default.") | |
3369 (prompt, dir, defalt, mustmatch, initial) | |
3370 Lisp_Object prompt, dir, defalt, mustmatch, initial; | |
3371 { | |
866 | 3372 Lisp_Object val, insdef, insdef1, tem; |
230 | 3373 struct gcpro gcpro1, gcpro2; |
3374 register char *homedir; | |
3375 int count; | |
3376 | |
485 | 3377 if (NILP (dir)) |
230 | 3378 dir = current_buffer->directory; |
485 | 3379 if (NILP (defalt)) |
230 | 3380 defalt = current_buffer->filename; |
3381 | |
3382 /* If dir starts with user's homedir, change that to ~. */ | |
3383 homedir = (char *) egetenv ("HOME"); | |
3384 if (homedir != 0 | |
3385 && XTYPE (dir) == Lisp_String | |
3386 && !strncmp (homedir, XSTRING (dir)->data, strlen (homedir)) | |
3387 && XSTRING (dir)->data[strlen (homedir)] == '/') | |
3388 { | |
3389 dir = make_string (XSTRING (dir)->data + strlen (homedir) - 1, | |
3390 XSTRING (dir)->size - strlen (homedir) + 1); | |
3391 XSTRING (dir)->data[0] = '~'; | |
3392 } | |
3393 | |
3394 if (insert_default_directory) | |
3395 { | |
3396 insdef = dir; | |
866 | 3397 insdef1 = dir; |
485 | 3398 if (!NILP (initial)) |
230 | 3399 { |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3400 Lisp_Object args[2], pos; |
230 | 3401 |
3402 args[0] = insdef; | |
3403 args[1] = initial; | |
3404 insdef = Fconcat (2, args); | |
964
ea0c91e13641
* fileio.c (Fread_filename): When calling Fcompleting_read,
Jim Blandy <jimb@redhat.com>
parents:
945
diff
changeset
|
3405 pos = make_number (XSTRING (dir)->size); |
866 | 3406 insdef1 = Fcons (insdef, pos); |
230 | 3407 } |
3408 } | |
3409 else | |
866 | 3410 insdef = Qnil, insdef1 = Qnil; |
230 | 3411 |
3412 #ifdef VMS | |
3413 count = specpdl_ptr - specpdl; | |
3414 specbind (intern ("completion-ignore-case"), Qt); | |
3415 #endif | |
3416 | |
3417 GCPRO2 (insdef, defalt); | |
3418 val = Fcompleting_read (prompt, intern ("read-file-name-internal"), | |
866 | 3419 dir, mustmatch, insdef1, |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3420 Qfile_name_history); |
230 | 3421 |
3422 #ifdef VMS | |
3423 unbind_to (count, Qnil); | |
3424 #endif | |
3425 | |
3426 UNGCPRO; | |
485 | 3427 if (NILP (val)) |
230 | 3428 error ("No file name specified"); |
3429 tem = Fstring_equal (val, insdef); | |
485 | 3430 if (!NILP (tem) && !NILP (defalt)) |
230 | 3431 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
|
3432 if (XSTRING (val)->size == 0 && NILP (insdef)) |
371058345c42
(Fread_file_name): If input is empty, do return the default
Richard M. Stallman <rms@gnu.org>
parents:
3017
diff
changeset
|
3433 return defalt; |
230 | 3434 return Fsubstitute_in_file_name (val); |
3435 } | |
3436 | |
3437 #if 0 /* Old version */ | |
3438 DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 5, 0, | |
3439 "Read file name, prompting with PROMPT and completing in directory DIR.\n\ | |
3440 Value is not expanded---you must call `expand-file-name' yourself.\n\ | |
3441 Default name to DEFAULT if user enters a null string.\n\ | |
3442 (If DEFAULT is omitted, the visited file name is used.)\n\ | |
3443 Fourth arg MUSTMATCH non-nil means require existing file's name.\n\ | |
3444 Non-nil and non-t means also require confirmation after completion.\n\ | |
3445 Fifth arg INITIAL specifies text to start with.\n\ | |
3446 DIR defaults to current buffer's directory default.") | |
3447 (prompt, dir, defalt, mustmatch, initial) | |
3448 Lisp_Object prompt, dir, defalt, mustmatch, initial; | |
3449 { | |
3450 Lisp_Object val, insdef, tem; | |
3451 struct gcpro gcpro1, gcpro2; | |
3452 register char *homedir; | |
3453 int count; | |
3454 | |
485 | 3455 if (NILP (dir)) |
230 | 3456 dir = current_buffer->directory; |
485 | 3457 if (NILP (defalt)) |
230 | 3458 defalt = current_buffer->filename; |
3459 | |
3460 /* If dir starts with user's homedir, change that to ~. */ | |
3461 homedir = (char *) egetenv ("HOME"); | |
3462 if (homedir != 0 | |
3463 && XTYPE (dir) == Lisp_String | |
3464 && !strncmp (homedir, XSTRING (dir)->data, strlen (homedir)) | |
3465 && XSTRING (dir)->data[strlen (homedir)] == '/') | |
3466 { | |
3467 dir = make_string (XSTRING (dir)->data + strlen (homedir) - 1, | |
3468 XSTRING (dir)->size - strlen (homedir) + 1); | |
3469 XSTRING (dir)->data[0] = '~'; | |
3470 } | |
3471 | |
485 | 3472 if (!NILP (initial)) |
230 | 3473 insdef = initial; |
3474 else if (insert_default_directory) | |
3475 insdef = dir; | |
3476 else | |
3477 insdef = build_string (""); | |
3478 | |
3479 #ifdef VMS | |
3480 count = specpdl_ptr - specpdl; | |
3481 specbind (intern ("completion-ignore-case"), Qt); | |
3482 #endif | |
3483 | |
3484 GCPRO2 (insdef, defalt); | |
3485 val = Fcompleting_read (prompt, intern ("read-file-name-internal"), | |
3486 dir, mustmatch, | |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3487 insert_default_directory ? insdef : Qnil, |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3488 Qfile_name_history); |
230 | 3489 |
3490 #ifdef VMS | |
3491 unbind_to (count, Qnil); | |
3492 #endif | |
3493 | |
3494 UNGCPRO; | |
485 | 3495 if (NILP (val)) |
230 | 3496 error ("No file name specified"); |
3497 tem = Fstring_equal (val, insdef); | |
485 | 3498 if (!NILP (tem) && !NILP (defalt)) |
230 | 3499 return defalt; |
3500 return Fsubstitute_in_file_name (val); | |
3501 } | |
3502 #endif /* Old version */ | |
3503 | |
3504 syms_of_fileio () | |
3505 { | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
3506 Qexpand_file_name = intern ("expand-file-name"); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
3507 Qdirectory_file_name = intern ("directory-file-name"); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
3508 Qfile_name_directory = intern ("file-name-directory"); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
3509 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
|
3510 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
|
3511 Qfile_name_as_directory = intern ("file-name-as-directory"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3512 Qcopy_file = intern ("copy-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3513 Qmake_directory = intern ("make-directory"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3514 Qdelete_directory = intern ("delete-directory"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3515 Qdelete_file = intern ("delete-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3516 Qrename_file = intern ("rename-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3517 Qadd_name_to_file = intern ("add-name-to-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3518 Qmake_symbolic_link = intern ("make-symbolic-link"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3519 Qfile_exists_p = intern ("file-exists-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3520 Qfile_executable_p = intern ("file-executable-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3521 Qfile_readable_p = intern ("file-readable-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3522 Qfile_symlink_p = intern ("file-symlink-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3523 Qfile_writable_p = intern ("file-writable-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3524 Qfile_directory_p = intern ("file-directory-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3525 Qfile_accessible_directory_p = intern ("file-accessible-directory-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3526 Qfile_modes = intern ("file-modes"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3527 Qset_file_modes = intern ("set-file-modes"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3528 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
|
3529 Qinsert_file_contents = intern ("insert-file-contents"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3530 Qwrite_region = intern ("write-region"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3531 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
|
3532 Qset_visited_file_modtime = intern ("set-visited-file-modtime"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3533 |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
3534 staticpro (&Qexpand_file_name); |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
3535 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
|
3536 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
|
3537 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
|
3538 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
|
3539 staticpro (&Qfile_name_as_directory); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3540 staticpro (&Qcopy_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3541 staticpro (&Qmake_directory); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3542 staticpro (&Qdelete_directory); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3543 staticpro (&Qdelete_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3544 staticpro (&Qrename_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3545 staticpro (&Qadd_name_to_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3546 staticpro (&Qmake_symbolic_link); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3547 staticpro (&Qfile_exists_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3548 staticpro (&Qfile_executable_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3549 staticpro (&Qfile_readable_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3550 staticpro (&Qfile_symlink_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3551 staticpro (&Qfile_writable_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3552 staticpro (&Qfile_directory_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3553 staticpro (&Qfile_accessible_directory_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3554 staticpro (&Qfile_modes); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3555 staticpro (&Qset_file_modes); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3556 staticpro (&Qfile_newer_than_file_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3557 staticpro (&Qinsert_file_contents); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3558 staticpro (&Qwrite_region); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3559 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
|
3560 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
3561 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
|
3562 Fset (Qfile_name_history, Qnil); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3563 staticpro (&Qfile_name_history); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
3564 |
230 | 3565 Qfile_error = intern ("file-error"); |
3566 staticpro (&Qfile_error); | |
3567 Qfile_already_exists = intern("file-already-exists"); | |
3568 staticpro (&Qfile_already_exists); | |
3569 | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3570 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
|
3571 staticpro (&Qcar_less_than_car); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3572 |
230 | 3573 Fput (Qfile_error, Qerror_conditions, |
3574 Fcons (Qfile_error, Fcons (Qerror, Qnil))); | |
3575 Fput (Qfile_error, Qerror_message, | |
3576 build_string ("File error")); | |
3577 | |
3578 Fput (Qfile_already_exists, Qerror_conditions, | |
3579 Fcons (Qfile_already_exists, | |
3580 Fcons (Qfile_error, Fcons (Qerror, Qnil)))); | |
3581 Fput (Qfile_already_exists, Qerror_message, | |
3582 build_string ("File already exists")); | |
3583 | |
3584 DEFVAR_BOOL ("insert-default-directory", &insert_default_directory, | |
3585 "*Non-nil means when reading a filename start with default dir in minibuffer."); | |
3586 insert_default_directory = 1; | |
3587 | |
3588 DEFVAR_BOOL ("vms-stmlf-recfm", &vms_stmlf_recfm, | |
3589 "*Non-nil means write new files with record format `stmlf'.\n\ | |
3590 nil means use format `var'. This variable is meaningful only on VMS."); | |
3591 vms_stmlf_recfm = 0; | |
3592 | |
850
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3593 DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist, |
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3594 "*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
|
3595 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
|
3596 HANDLER.\n\ |
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3597 \n\ |
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3598 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
|
3599 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
|
3600 passed to that primitive. For example, if you do\n\ |
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3601 (file-exists-p FILENAME)\n\ |
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
3602 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
|
3603 (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
|
3604 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
|
3605 for its argument."); |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3606 Vfile_name_handler_alist = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3607 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3608 DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions, |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3609 "A list of functions to be called at the end of `insert-file-contents'. |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3610 Each is passed one argument, the number of bytes inserted. It should return |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3611 the new byte count, and leave point the same. If `insert-file-contents' is |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3612 intercepted by a handler from `file-name-handler-alist', that handler is |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3613 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
|
3614 Vafter_insert_file_functions = Qnil; |
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 DEFVAR_LISP ("write-region-annotate-functions", &Vwrite_region_annotate_functions, |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3617 "A list of functions to be called at the start of `write-region'. |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3618 Each is passed two arguments, START and END as for `write-region'. It should |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3619 return a list of pairs (POSITION . STRING) of strings to be effectively |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3620 inserted at the specified positions of the file being written (1 means to |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3621 insert before the first byte written). The POSITIONs must be sorted into |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3622 increasing order. If there are several functions in the list, the several |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3623 lists are merged destructively."); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3624 Vwrite_region_annotate_functions = Qnil; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3625 |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
3626 defsubr (&Sfind_file_name_handler); |
230 | 3627 defsubr (&Sfile_name_directory); |
3628 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
|
3629 defsubr (&Sunhandled_file_name_directory); |
230 | 3630 defsubr (&Sfile_name_as_directory); |
3631 defsubr (&Sdirectory_file_name); | |
3632 defsubr (&Smake_temp_name); | |
3633 defsubr (&Sexpand_file_name); | |
3634 defsubr (&Ssubstitute_in_file_name); | |
3635 defsubr (&Scopy_file); | |
1533
b86ef0432100
(Fmake_directory_internal): Renamed from Fmake_directory.
Richard M. Stallman <rms@gnu.org>
parents:
1377
diff
changeset
|
3636 defsubr (&Smake_directory_internal); |
686
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
3637 defsubr (&Sdelete_directory); |
230 | 3638 defsubr (&Sdelete_file); |
3639 defsubr (&Srename_file); | |
3640 defsubr (&Sadd_name_to_file); | |
3641 #ifdef S_IFLNK | |
3642 defsubr (&Smake_symbolic_link); | |
3643 #endif /* S_IFLNK */ | |
3644 #ifdef VMS | |
3645 defsubr (&Sdefine_logical_name); | |
3646 #endif /* VMS */ | |
3647 #ifdef HPUX_NET | |
3648 defsubr (&Ssysnetunam); | |
3649 #endif /* HPUX_NET */ | |
3650 defsubr (&Sfile_name_absolute_p); | |
3651 defsubr (&Sfile_exists_p); | |
3652 defsubr (&Sfile_executable_p); | |
3653 defsubr (&Sfile_readable_p); | |
3654 defsubr (&Sfile_writable_p); | |
3655 defsubr (&Sfile_symlink_p); | |
3656 defsubr (&Sfile_directory_p); | |
536 | 3657 defsubr (&Sfile_accessible_directory_p); |
230 | 3658 defsubr (&Sfile_modes); |
3659 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
|
3660 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
|
3661 defsubr (&Sdefault_file_modes); |
230 | 3662 defsubr (&Sfile_newer_than_file_p); |
3663 defsubr (&Sinsert_file_contents); | |
3664 defsubr (&Swrite_region); | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3665 defsubr (&Scar_less_than_car); |
230 | 3666 defsubr (&Sverify_visited_file_modtime); |
3667 defsubr (&Sclear_visited_file_modtime); | |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
3668 defsubr (&Svisited_file_modtime); |
230 | 3669 defsubr (&Sset_visited_file_modtime); |
3670 defsubr (&Sdo_auto_save); | |
3671 defsubr (&Sset_buffer_auto_saved); | |
3672 defsubr (&Srecent_auto_save_p); | |
3673 | |
3674 defsubr (&Sread_file_name_internal); | |
3675 defsubr (&Sread_file_name); | |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3676 |
1204
567860ca77e0
* fileio.c (syms_of_fileio): Don't try to defsubr Sunix_sync
Jim Blandy <jimb@redhat.com>
parents:
1178
diff
changeset
|
3677 #ifdef unix |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3678 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
|
3679 #endif |
230 | 3680 } |