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