Mercurial > emacs
annotate src/fileio.c @ 62545:bea5728f69fa
*** empty log message ***
author | Lute Kamstra <lute@gnu.org> |
---|---|
date | Fri, 20 May 2005 11:18:22 +0000 |
parents | 3fa6e7b9d397 |
children | 12b3cd6b8467 8b66fddd72c5 f042e7c0fe20 |
rev | line source |
---|---|
230 | 1 /* File IO for GNU Emacs. |
57112
4c14357ffc27
(Finsert_file_contents): Fix case of replacement in a narrowed buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56977
diff
changeset
|
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1996, 1997, 1998, |
60574
f5607c3ce8fd
(Fmake_symbolic_link): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60572
diff
changeset
|
3 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc. |
230 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
7 GNU Emacs is free software; you can redistribute it and/or modify | |
8 it under the terms of the GNU General Public License as published by | |
621 | 9 the Free Software Foundation; either version 2, or (at your option) |
230 | 10 any later version. |
11 | |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
18 along with GNU Emacs; see the file COPYING. If not, write to | |
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14128
diff
changeset
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
14128
diff
changeset
|
20 Boston, MA 02111-1307, USA. */ |
230 | 21 |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4483
diff
changeset
|
22 #include <config.h> |
230 | 23 |
48652
682129896be4
(fcntl.h): Test only HAVE_FCNTL_H.
Richard M. Stallman <rms@gnu.org>
parents:
48562
diff
changeset
|
24 #ifdef HAVE_FCNTL_H |
16534
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
25 #include <fcntl.h> |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
26 #endif |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
27 |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
28 #include <stdio.h> |
230 | 29 #include <sys/types.h> |
30 #include <sys/stat.h> | |
372 | 31 |
6862
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
32 #ifdef HAVE_UNISTD_H |
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
33 #include <unistd.h> |
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
34 #endif |
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
35 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
36 #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
|
37 # 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
|
38 #endif |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
39 |
16534
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
40 #if !defined (S_ISFIFO) && defined (S_IFIFO) |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
41 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
42 #endif |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
43 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
44 #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
|
45 # 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
|
46 #endif |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
47 |
61700
8a54ce1fae6a
Remove reference to defunct vms-pwd.h.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
61151
diff
changeset
|
48 #ifdef HAVE_PWD_H |
230 | 49 #include <pwd.h> |
372 | 50 #endif |
51 | |
230 | 52 #include <ctype.h> |
372 | 53 |
54 #ifdef VMS | |
5877 | 55 #include "vmsdir.h" |
372 | 56 #include <perror.h> |
57 #include <stddef.h> | |
58 #include <string.h> | |
59 #endif | |
60 | |
230 | 61 #include <errno.h> |
62 | |
372 | 63 #ifndef vax11c |
31095
e19d38e14720
[USE_CRT_DLL]: Remove unnecessary extern, which screws
Andrew Innes <andrewi@gnu.org>
parents:
30927
diff
changeset
|
64 #ifndef USE_CRT_DLL |
230 | 65 extern int errno; |
66 #endif | |
31095
e19d38e14720
[USE_CRT_DLL]: Remove unnecessary extern, which screws
Andrew Innes <andrewi@gnu.org>
parents:
30927
diff
changeset
|
67 #endif |
230 | 68 |
69 #ifdef APOLLO | |
70 #include <sys/time.h> | |
71 #endif | |
72 | |
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" |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
76 #include "charset.h" |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
77 #include "coding.h" |
230 | 78 #include "window.h" |
79 | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
80 #ifdef WINDOWSNT |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
81 #define NOMINMAX 1 |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
82 #include <windows.h> |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
83 #include <stdlib.h> |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
84 #include <fcntl.h> |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
85 #endif /* not WINDOWSNT */ |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
86 |
21787
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
87 #ifdef MSDOS |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
88 #include "msdos.h" |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
89 #include <sys/param.h> |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
90 #if __DJGPP__ >= 2 |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
91 #include <fcntl.h> |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
92 #include <string.h> |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
93 #endif |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
94 #endif |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
95 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
96 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
97 #define CORRECT_DIR_SEPS(s) \ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
98 do { if ('/' == DIRECTORY_SEP) dostounix_filename (s); \ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
99 else unixtodos_filename (s); \ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
100 } while (0) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
101 /* On Windows, drive letters must be alphabetic - on DOS, the Netware |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
102 redirector allows the six letters between 'Z' and 'a' as well. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
103 #ifdef MSDOS |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
104 #define IS_DRIVE(x) ((x) >= 'A' && (x) <= 'z') |
15617
69c516d109e7
(DRIVE_LETTER) [WINDOWSNT]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15587
diff
changeset
|
105 #endif |
69c516d109e7
(DRIVE_LETTER) [WINDOWSNT]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15587
diff
changeset
|
106 #ifdef WINDOWSNT |
69c516d109e7
(DRIVE_LETTER) [WINDOWSNT]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15587
diff
changeset
|
107 #define IS_DRIVE(x) isalpha (x) |
69c516d109e7
(DRIVE_LETTER) [WINDOWSNT]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15587
diff
changeset
|
108 #endif |
15587
515819688789
(DRIVE_LETTER) [MSDOS]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15533
diff
changeset
|
109 /* Need to lower-case the drive letter, or else expanded |
515819688789
(DRIVE_LETTER) [MSDOS]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15533
diff
changeset
|
110 filenames will sometimes compare inequal, because |
515819688789
(DRIVE_LETTER) [MSDOS]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15533
diff
changeset
|
111 `expand-file-name' doesn't always down-case the drive letter. */ |
515819688789
(DRIVE_LETTER) [MSDOS]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15533
diff
changeset
|
112 #define DRIVE_LETTER(x) (tolower (x)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
113 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
114 |
230 | 115 #ifdef VMS |
116 #include <file.h> | |
117 #include <rmsdef.h> | |
118 #include <fab.h> | |
119 #include <nam.h> | |
120 #endif | |
121 | |
564 | 122 #include "systime.h" |
230 | 123 |
124 #ifdef HPUX | |
125 #include <netio.h> | |
350 | 126 #ifndef HPUX8 |
3410
47b51faf6c4e
[HPUX9]: Don't include errnet.h.
Richard M. Stallman <rms@gnu.org>
parents:
3032
diff
changeset
|
127 #ifndef HPUX9 |
230 | 128 #include <errnet.h> |
129 #endif | |
350 | 130 #endif |
3410
47b51faf6c4e
[HPUX9]: Don't include errnet.h.
Richard M. Stallman <rms@gnu.org>
parents:
3032
diff
changeset
|
131 #endif |
230 | 132 |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
133 #include "commands.h" |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
134 extern int use_dialog_box; |
53189
2c1d6f1a791e
Add variable use-file-dialog to control use of file dialogs.
Jan Djärv <jan.h.d@swipnet.se>
parents:
52401
diff
changeset
|
135 extern int use_file_dialog; |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
136 |
230 | 137 #ifndef O_WRONLY |
138 #define O_WRONLY 1 | |
139 #endif | |
140 | |
8597 | 141 #ifndef O_RDONLY |
142 #define O_RDONLY 0 | |
143 #endif | |
144 | |
24367
f9d5fff966f0
(lstat) [!S_ISLNK]: Use stat instead of lstat.
Eli Zaretskii <eliz@gnu.org>
parents:
24313
diff
changeset
|
145 #ifndef S_ISLNK |
f9d5fff966f0
(lstat) [!S_ISLNK]: Use stat instead of lstat.
Eli Zaretskii <eliz@gnu.org>
parents:
24313
diff
changeset
|
146 # define lstat stat |
f9d5fff966f0
(lstat) [!S_ISLNK]: Use stat instead of lstat.
Eli Zaretskii <eliz@gnu.org>
parents:
24313
diff
changeset
|
147 #endif |
f9d5fff966f0
(lstat) [!S_ISLNK]: Use stat instead of lstat.
Eli Zaretskii <eliz@gnu.org>
parents:
24313
diff
changeset
|
148 |
60354
b9a43f92b898
(FILE_SYSTEM_CASE): Define macro if not already defined.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
59671
diff
changeset
|
149 #ifndef FILE_SYSTEM_CASE |
b9a43f92b898
(FILE_SYSTEM_CASE): Define macro if not already defined.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
59671
diff
changeset
|
150 #define FILE_SYSTEM_CASE(filename) (filename) |
b9a43f92b898
(FILE_SYSTEM_CASE): Define macro if not already defined.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
59671
diff
changeset
|
151 #endif |
b9a43f92b898
(FILE_SYSTEM_CASE): Define macro if not already defined.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
59671
diff
changeset
|
152 |
230 | 153 /* Nonzero during writing of auto-save files */ |
154 int auto_saving; | |
155 | |
156 /* Set by auto_save_1 to mode of original file so Fwrite_region will create | |
157 a new file with the same mode as the original */ | |
158 int auto_save_mode_bits; | |
159 | |
51357
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
160 /* The symbol bound to coding-system-for-read when |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
161 insert-file-contents is called for recovering a file. This is not |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
162 an actual coding system name, but just an indicator to tell |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
163 insert-file-contents to use `emacs-mule' with a special flag for |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
164 auto saving and recovering a file. */ |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
165 Lisp_Object Qauto_save_coding; |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
166 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
167 /* Coding system for file names, or nil if none. */ |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
168 Lisp_Object Vfile_name_coding_system; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
169 |
21048
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
170 /* Coding system for file names used only when |
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
171 Vfile_name_coding_system is nil. */ |
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
172 Lisp_Object Vdefault_file_name_coding_system; |
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
173 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
174 /* Alist of elements (REGEXP . HANDLER) for file names |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
175 whose I/O is done with a special handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
176 Lisp_Object Vfile_name_handler_alist; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
177 |
61942
cf8e7c12c048
(Ffind_file_name_handler): Handle the `operations'
Richard M. Stallman <rms@gnu.org>
parents:
61789
diff
changeset
|
178 /* Property name of a file name handler, |
cf8e7c12c048
(Ffind_file_name_handler): Handle the `operations'
Richard M. Stallman <rms@gnu.org>
parents:
61789
diff
changeset
|
179 which gives a list of operations it handles.. */ |
cf8e7c12c048
(Ffind_file_name_handler): Handle the `operations'
Richard M. Stallman <rms@gnu.org>
parents:
61789
diff
changeset
|
180 Lisp_Object Qoperations; |
cf8e7c12c048
(Ffind_file_name_handler): Handle the `operations'
Richard M. Stallman <rms@gnu.org>
parents:
61789
diff
changeset
|
181 |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
182 /* Lisp functions for translating file formats */ |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
183 Lisp_Object Qformat_decode, Qformat_annotate_function; |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
184 |
19448
950a178e8783
(Vauto_file_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19437
diff
changeset
|
185 /* Function to be called to decide a coding system of a reading file. */ |
19641
d7f2d75a09d3
(Vset_auto_coding_function): Name changed from
Kenichi Handa <handa@m17n.org>
parents:
19572
diff
changeset
|
186 Lisp_Object Vset_auto_coding_function; |
19448
950a178e8783
(Vauto_file_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19437
diff
changeset
|
187 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
188 /* 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
|
189 Lisp_Object Vafter_insert_file_functions; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
190 |
50546
4a06e3332577
(Vafter_insert_file_adjust_coding_function): Delete
Kenichi Handa <handa@m17n.org>
parents:
50530
diff
changeset
|
191 /* Lisp function for setting buffer-file-coding-system and the |
50530
987ee3ecc0a8
* fileio.c (Vafter_insert_file_adjust_coding_function): New
Kenichi Handa <handa@m17n.org>
parents:
50500
diff
changeset
|
192 multibyteness of the current buffer after inserting a file. */ |
50546
4a06e3332577
(Vafter_insert_file_adjust_coding_function): Delete
Kenichi Handa <handa@m17n.org>
parents:
50530
diff
changeset
|
193 Lisp_Object Qafter_insert_file_set_coding; |
50530
987ee3ecc0a8
* fileio.c (Vafter_insert_file_adjust_coding_function): New
Kenichi Handa <handa@m17n.org>
parents:
50500
diff
changeset
|
194 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
195 /* 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
|
196 Lisp_Object Vwrite_region_annotate_functions; |
50829
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
197 Lisp_Object Qwrite_region_annotate_functions; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
198 |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
199 /* During build_annotations, each time an annotation function is called, |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
200 this holds the annotations made by the previous functions. */ |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
201 Lisp_Object Vwrite_region_annotations_so_far; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
202 |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
203 /* File name in which we write a list of all our auto save files. */ |
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
204 Lisp_Object Vauto_save_list_file_name; |
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
205 |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
206 /* Function to call to read a file name. */ |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
207 Lisp_Object Vread_file_name_function; |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
208 |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
209 /* Current predicate used by read_file_name_internal. */ |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
210 Lisp_Object Vread_file_name_predicate; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
211 |
56340
56b3ebd82889
(read_file_name_completion_ignore_case): New variable.
John Paul Wallington <jpw@pobox.com>
parents:
55741
diff
changeset
|
212 /* Nonzero means completion ignores case when reading file name. */ |
56b3ebd82889
(read_file_name_completion_ignore_case): New variable.
John Paul Wallington <jpw@pobox.com>
parents:
55741
diff
changeset
|
213 int read_file_name_completion_ignore_case; |
56b3ebd82889
(read_file_name_completion_ignore_case): New variable.
John Paul Wallington <jpw@pobox.com>
parents:
55741
diff
changeset
|
214 |
230 | 215 /* Nonzero means, when reading a filename in the minibuffer, |
216 start out by inserting the default directory into the minibuffer. */ | |
217 int insert_default_directory; | |
218 | |
219 /* On VMS, nonzero means write new files with record format stmlf. | |
220 Zero means use var format. */ | |
221 int vms_stmlf_recfm; | |
222 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
223 /* On NT, specifies the directory separator character, used (eg.) when |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
224 expanding file names. This can be bound to / or \. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
225 Lisp_Object Vdirectory_sep_char; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
226 |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
227 extern Lisp_Object Vuser_login_name; |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
228 |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
229 #ifdef WINDOWSNT |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
230 extern Lisp_Object Vw32_get_true_file_attributes; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
231 #endif |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
232 |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
233 extern int minibuf_level; |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
234 |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
235 extern int minibuffer_auto_raise; |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
236 |
59050
1ee6d4f5d727
(Fread_file_name): Delete duplicates in
Richard M. Stallman <rms@gnu.org>
parents:
58014
diff
changeset
|
237 extern int history_delete_duplicates; |
1ee6d4f5d727
(Fread_file_name): Delete duplicates in
Richard M. Stallman <rms@gnu.org>
parents:
58014
diff
changeset
|
238 |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
239 /* These variables describe handlers that have "already" had a chance |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
240 to handle the current operation. |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
241 |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
242 Vinhibit_file_name_handlers is a list of file name handlers. |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
243 Vinhibit_file_name_operation is the operation being handled. |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
244 If we try to handle that operation, we ignore those handlers. */ |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
245 |
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
246 static Lisp_Object Vinhibit_file_name_handlers; |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
247 static Lisp_Object Vinhibit_file_name_operation; |
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
248 |
17271
e34a30952e14
(Fcopy_file): Use Qfile_date_error if can't set file date.
Richard M. Stallman <rms@gnu.org>
parents:
17114
diff
changeset
|
249 Lisp_Object Qfile_error, Qfile_already_exists, Qfile_date_error; |
25595 | 250 Lisp_Object Qexcl; |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
251 Lisp_Object Qfile_name_history; |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
252 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
253 Lisp_Object Qcar_less_than_car; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
254 |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
255 static int a_write P_ ((int, Lisp_Object, int, int, |
20560
c9095cd30412
(a_write): Fix prototype.
Richard M. Stallman <rms@gnu.org>
parents:
20533
diff
changeset
|
256 Lisp_Object *, struct coding_system *)); |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
257 static int e_write P_ ((int, Lisp_Object, int, int, struct coding_system *)); |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
258 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
259 |
20370
7e443cd9a63a
(report_file_error): Declare it as void.
Kenichi Handa <handa@m17n.org>
parents:
20313
diff
changeset
|
260 void |
230 | 261 report_file_error (string, data) |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
262 const char *string; |
230 | 263 Lisp_Object data; |
264 { | |
265 Lisp_Object errstring; | |
25595 | 266 int errorno = errno; |
230 | 267 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
268 synchronize_system_messages_locale (); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
269 errstring = code_convert_string_norecord (build_string (strerror (errorno)), |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
270 Vlocale_coding_system, 0); |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
271 |
230 | 272 while (1) |
25595 | 273 switch (errorno) |
274 { | |
275 case EEXIST: | |
276 Fsignal (Qfile_already_exists, Fcons (errstring, data)); | |
277 break; | |
278 default: | |
279 /* System error messages are capitalized. Downcase the initial | |
280 unless it is followed by a slash. */ | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
281 if (SREF (errstring, 1) != '/') |
46424
9aa6b2db42da
* fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
Ken Raeburn <raeburn@raeburn.org>
parents:
46370
diff
changeset
|
282 SSET (errstring, 0, DOWNCASE (SREF (errstring, 0))); |
25595 | 283 |
284 Fsignal (Qfile_error, | |
285 Fcons (build_string (string), Fcons (errstring, data))); | |
286 } | |
230 | 287 } |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
288 |
20313
36bbb5e0a687
(close_file_unwind): Fix return type and return nil.
Andreas Schwab <schwab@suse.de>
parents:
20224
diff
changeset
|
289 Lisp_Object |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
290 close_file_unwind (fd) |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
291 Lisp_Object fd; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
292 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
293 emacs_close (XFASTINT (fd)); |
20313
36bbb5e0a687
(close_file_unwind): Fix return type and return nil.
Andreas Schwab <schwab@suse.de>
parents:
20224
diff
changeset
|
294 return Qnil; |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
295 } |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
296 |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
297 /* Restore point, having saved it as a marker. */ |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
298 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
299 static Lisp_Object |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
300 restore_point_unwind (location) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
301 Lisp_Object location; |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
302 { |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
303 Fgoto_char (location); |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
304 Fset_marker (location, Qnil, Qnil); |
20313
36bbb5e0a687
(close_file_unwind): Fix return type and return nil.
Andreas Schwab <schwab@suse.de>
parents:
20224
diff
changeset
|
305 return Qnil; |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
306 } |
230 | 307 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
308 Lisp_Object Qexpand_file_name; |
10719
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
309 Lisp_Object Qsubstitute_in_file_name; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
310 Lisp_Object Qdirectory_file_name; |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
311 Lisp_Object Qfile_name_directory; |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
312 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
|
313 Lisp_Object Qunhandled_file_name_directory; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
314 Lisp_Object Qfile_name_as_directory; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
315 Lisp_Object Qcopy_file; |
8227
0e6b7eeedc3b
(Fmake_directory_internal): Use Qmake_directory_internal.
Richard M. Stallman <rms@gnu.org>
parents:
8185
diff
changeset
|
316 Lisp_Object Qmake_directory_internal; |
28697
7d587a158d1f
(Fdo_auto_save): Create directories for auto-save
Gerd Moellmann <gerd@gnu.org>
parents:
28673
diff
changeset
|
317 Lisp_Object Qmake_directory; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
318 Lisp_Object Qdelete_directory; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
319 Lisp_Object Qdelete_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
320 Lisp_Object Qrename_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
321 Lisp_Object Qadd_name_to_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
322 Lisp_Object Qmake_symbolic_link; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
323 Lisp_Object Qfile_exists_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
324 Lisp_Object Qfile_executable_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
325 Lisp_Object Qfile_readable_p; |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
326 Lisp_Object Qfile_writable_p; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
327 Lisp_Object Qfile_symlink_p; |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
328 Lisp_Object Qaccess_file; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
329 Lisp_Object Qfile_directory_p; |
11599
51bc10be0dc7
(Ffile_regular_p): Use Qfile_regular_p.
Richard M. Stallman <rms@gnu.org>
parents:
11426
diff
changeset
|
330 Lisp_Object Qfile_regular_p; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
331 Lisp_Object Qfile_accessible_directory_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
332 Lisp_Object Qfile_modes; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
333 Lisp_Object Qset_file_modes; |
55194
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
334 Lisp_Object Qset_file_times; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
335 Lisp_Object Qfile_newer_than_file_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
336 Lisp_Object Qinsert_file_contents; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
337 Lisp_Object Qwrite_region; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
338 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
|
339 Lisp_Object Qset_visited_file_modtime; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
340 |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
341 DEFUN ("find-file-name-handler", Ffind_file_name_handler, Sfind_file_name_handler, 2, 2, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
342 doc: /* Return FILENAME's handler function for OPERATION, if it has one. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
343 Otherwise, return nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
344 A file name is handled if one of the regular expressions in |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
345 `file-name-handler-alist' matches it. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
346 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
347 If OPERATION equals `inhibit-file-name-operation', then we ignore |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
348 any handlers that are members of `inhibit-file-name-handlers', |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
349 but we still do run any other handlers. This lets handlers |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
350 use the standard functions without calling themselves recursively. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
351 (filename, operation) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
352 Lisp_Object filename, operation; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
353 { |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
354 /* This function must not munge the match data. */ |
41655
fccc74affd73
(Ffind_file_name_handler): Avoid initializer for `result'.
Richard M. Stallman <rms@gnu.org>
parents:
41595
diff
changeset
|
355 Lisp_Object chain, inhibited_handlers, result; |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
356 int pos = -1; |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
357 |
41655
fccc74affd73
(Ffind_file_name_handler): Avoid initializer for `result'.
Richard M. Stallman <rms@gnu.org>
parents:
41595
diff
changeset
|
358 result = Qnil; |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
359 CHECK_STRING (filename); |
2895
1ed91566882a
* fileio.c (Ffind_file_name_handler): Check that FILENAME is a
Jim Blandy <jimb@redhat.com>
parents:
2741
diff
changeset
|
360 |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
361 if (EQ (operation, Vinhibit_file_name_operation)) |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
362 inhibited_handlers = Vinhibit_file_name_handlers; |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
363 else |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
364 inhibited_handlers = Qnil; |
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
365 |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
366 for (chain = Vfile_name_handler_alist; CONSP (chain); |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
367 chain = XCDR (chain)) |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
368 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
369 Lisp_Object elt; |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
370 elt = XCAR (chain); |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
371 if (CONSP (elt)) |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
372 { |
61942
cf8e7c12c048
(Ffind_file_name_handler): Handle the `operations'
Richard M. Stallman <rms@gnu.org>
parents:
61789
diff
changeset
|
373 Lisp_Object string = XCAR (elt); |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
374 int match_pos; |
61942
cf8e7c12c048
(Ffind_file_name_handler): Handle the `operations'
Richard M. Stallman <rms@gnu.org>
parents:
61789
diff
changeset
|
375 Lisp_Object handler = XCDR (elt); |
62296
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
376 Lisp_Object operations = Qnil; |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
377 |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
378 if (SYMBOLP (handler)) |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
379 operations = Fget (handler, Qoperations); |
61942
cf8e7c12c048
(Ffind_file_name_handler): Handle the `operations'
Richard M. Stallman <rms@gnu.org>
parents:
61789
diff
changeset
|
380 |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
381 if (STRINGP (string) |
61942
cf8e7c12c048
(Ffind_file_name_handler): Handle the `operations'
Richard M. Stallman <rms@gnu.org>
parents:
61789
diff
changeset
|
382 && (match_pos = fast_string_match (string, filename)) > pos |
cf8e7c12c048
(Ffind_file_name_handler): Handle the `operations'
Richard M. Stallman <rms@gnu.org>
parents:
61789
diff
changeset
|
383 && (NILP (operations) || ! NILP (Fmemq (operation, operations)))) |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
384 { |
61942
cf8e7c12c048
(Ffind_file_name_handler): Handle the `operations'
Richard M. Stallman <rms@gnu.org>
parents:
61789
diff
changeset
|
385 Lisp_Object tem; |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
386 |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
387 handler = XCDR (elt); |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
388 tem = Fmemq (handler, inhibited_handlers); |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
389 if (NILP (tem)) |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
390 { |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
391 result = handler; |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
392 pos = match_pos; |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
393 } |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
394 } |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
395 } |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
396 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
397 QUIT; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
398 } |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
399 return result; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
400 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
401 |
230 | 402 DEFUN ("file-name-directory", Ffile_name_directory, Sfile_name_directory, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
403 1, 1, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
404 doc: /* Return the directory component in file name FILENAME. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
405 Return nil if FILENAME does not include a directory. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
406 Otherwise return a directory spec. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
407 Given a Unix syntax file name, returns a string ending in slash; |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
408 on VMS, perhaps instead a string ending in `:', `]' or `>'. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
409 (filename) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
410 Lisp_Object filename; |
230 | 411 { |
46948
f2225c68b0a8
(Ffile_name_directory) [DOS_NT]: Don't declare `beg'
Eli Zaretskii <eliz@gnu.org>
parents:
46566
diff
changeset
|
412 #ifndef DOS_NT |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
413 register const unsigned char *beg; |
46948
f2225c68b0a8
(Ffile_name_directory) [DOS_NT]: Don't declare `beg'
Eli Zaretskii <eliz@gnu.org>
parents:
46566
diff
changeset
|
414 #else |
f2225c68b0a8
(Ffile_name_directory) [DOS_NT]: Don't declare `beg'
Eli Zaretskii <eliz@gnu.org>
parents:
46566
diff
changeset
|
415 register unsigned char *beg; |
f2225c68b0a8
(Ffile_name_directory) [DOS_NT]: Don't declare `beg'
Eli Zaretskii <eliz@gnu.org>
parents:
46566
diff
changeset
|
416 #endif |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
417 register const unsigned char *p; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
418 Lisp_Object handler; |
230 | 419 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
420 CHECK_STRING (filename); |
230 | 421 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
422 /* 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
|
423 call the corresponding file handler. */ |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
424 handler = Ffind_file_name_handler (filename, Qfile_name_directory); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
425 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
426 return call2 (handler, Qfile_name_directory, filename); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
427 |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
428 filename = FILE_SYSTEM_CASE (filename); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
429 beg = SDATA (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
430 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
431 beg = strcpy (alloca (strlen (beg) + 1), beg); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
432 #endif |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
433 p = beg + SBYTES (filename); |
230 | 434 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
435 while (p != beg && !IS_DIRECTORY_SEP (p[-1]) |
230 | 436 #ifdef VMS |
437 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>' | |
438 #endif /* VMS */ | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
439 #ifdef DOS_NT |
22172
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
440 /* only recognise drive specifier at the beginning */ |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
441 && !(p[-1] == ':' |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
442 /* handle the "/:d:foo" and "/:foo" cases correctly */ |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
443 && ((p == beg + 2 && !IS_DIRECTORY_SEP (*beg)) |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
444 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg)))) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
445 #endif |
230 | 446 ) p--; |
447 | |
448 if (p == beg) | |
449 return Qnil; | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
450 #ifdef DOS_NT |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
451 /* Expansion of "c:" to drive and default directory. */ |
22172
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
452 if (p[-1] == ':') |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
453 { |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
454 /* MAXPATHLEN+1 is guaranteed to be enough space for getdefdir. */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
455 unsigned char *res = alloca (MAXPATHLEN + 1); |
22172
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
456 unsigned char *r = res; |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
457 |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
458 if (p == beg + 4 && IS_DIRECTORY_SEP (*beg) && beg[1] == ':') |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
459 { |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
460 strncpy (res, beg, 2); |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
461 beg += 2; |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
462 r += 2; |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
463 } |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
464 |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
465 if (getdefdir (toupper (*beg) - 'A' + 1, r)) |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
466 { |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
467 if (!IS_DIRECTORY_SEP (res[strlen (res) - 1])) |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
468 strcat (res, "/"); |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
469 beg = res; |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
470 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
|
471 } |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
472 } |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
473 CORRECT_DIR_SEPS (beg); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
474 #endif /* DOS_NT */ |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
475 |
50196
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
476 return make_specified_string (beg, -1, p - beg, STRING_MULTIBYTE (filename)); |
230 | 477 } |
478 | |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
479 DEFUN ("file-name-nondirectory", Ffile_name_nondirectory, |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
480 Sfile_name_nondirectory, 1, 1, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
481 doc: /* Return file name FILENAME sans its directory. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
482 For example, in a Unix-syntax file name, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
483 this is everything after the last slash, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
484 or the entire name if it contains no slash. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
485 (filename) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
486 Lisp_Object filename; |
230 | 487 { |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
488 register const unsigned char *beg, *p, *end; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
489 Lisp_Object handler; |
230 | 490 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
491 CHECK_STRING (filename); |
230 | 492 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
493 /* 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
|
494 call the corresponding file handler. */ |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
495 handler = Ffind_file_name_handler (filename, Qfile_name_nondirectory); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
496 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
497 return call2 (handler, Qfile_name_nondirectory, filename); |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
498 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
499 beg = SDATA (filename); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
500 end = p = beg + SBYTES (filename); |
230 | 501 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
502 while (p != beg && !IS_DIRECTORY_SEP (p[-1]) |
230 | 503 #ifdef VMS |
504 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>' | |
505 #endif /* VMS */ | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
506 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
507 /* only recognise drive specifier at beginning */ |
22172
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
508 && !(p[-1] == ':' |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
509 /* handle the "/:d:foo" case correctly */ |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
510 && (p == beg + 2 || (p == beg + 4 && IS_DIRECTORY_SEP (*beg)))) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
511 #endif |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
512 ) |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
513 p--; |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
514 |
50196
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
515 return make_specified_string (p, -1, end - p, STRING_MULTIBYTE (filename)); |
230 | 516 } |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
517 |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
518 DEFUN ("unhandled-file-name-directory", Funhandled_file_name_directory, |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
519 Sunhandled_file_name_directory, 1, 1, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
520 doc: /* Return a directly usable directory name somehow associated with FILENAME. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
521 A `directly usable' directory name is one that may be used without the |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
522 intervention of any file handler. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
523 If FILENAME is a directly usable file itself, return |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
524 \(file-name-directory FILENAME). |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
525 The `call-process' and `start-process' functions use this function to |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
526 get a current directory to run processes in. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
527 (filename) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
528 Lisp_Object filename; |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
529 { |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
530 Lisp_Object handler; |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
531 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
532 /* 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
|
533 call the corresponding file handler. */ |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
534 handler = Ffind_file_name_handler (filename, Qunhandled_file_name_directory); |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
535 if (!NILP (handler)) |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
536 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
|
537 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
538 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
|
539 } |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
540 |
230 | 541 |
542 char * | |
543 file_name_as_directory (out, in) | |
544 char *out, *in; | |
545 { | |
546 int size = strlen (in) - 1; | |
547 | |
20790
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
548 strcpy (out, in); |
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
549 |
20651
0de9f45a1db6
(Finsert_file_contents): When not decoding,
Richard M. Stallman <rms@gnu.org>
parents:
20621
diff
changeset
|
550 if (size < 0) |
20790
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
551 { |
21543
55865851fd69
(file_name_as_directory): For empty arg, return `./'.
Karl Heuer <kwzh@gnu.org>
parents:
21522
diff
changeset
|
552 out[0] = '.'; |
55865851fd69
(file_name_as_directory): For empty arg, return `./'.
Karl Heuer <kwzh@gnu.org>
parents:
21522
diff
changeset
|
553 out[1] = '/'; |
55865851fd69
(file_name_as_directory): For empty arg, return `./'.
Karl Heuer <kwzh@gnu.org>
parents:
21522
diff
changeset
|
554 out[2] = 0; |
20790
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
555 return out; |
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
556 } |
230 | 557 |
558 #ifdef VMS | |
559 /* Is it already a directory string? */ | |
560 if (in[size] == ':' || in[size] == ']' || in[size] == '>') | |
561 return out; | |
562 /* Is it a VMS directory file name? If so, hack VMS syntax. */ | |
563 else if (! index (in, '/') | |
564 && ((size > 3 && ! strcmp (&in[size - 3], ".DIR")) | |
565 || (size > 3 && ! strcmp (&in[size - 3], ".dir")) | |
566 || (size > 5 && (! strncmp (&in[size - 5], ".DIR", 4) | |
567 || ! strncmp (&in[size - 5], ".dir", 4)) | |
568 && (in[size - 1] == '.' || in[size - 1] == ';') | |
569 && in[size] == '1'))) | |
570 { | |
571 register char *p, *dot; | |
572 char brack; | |
573 | |
574 /* x.dir -> [.x] | |
575 dir:x.dir --> dir:[x] | |
576 dir:[x]y.dir --> dir:[x.y] */ | |
577 p = in + size; | |
578 while (p != in && *p != ':' && *p != '>' && *p != ']') p--; | |
579 if (p != in) | |
580 { | |
581 strncpy (out, in, p - in); | |
582 out[p - in] = '\0'; | |
583 if (*p == ':') | |
584 { | |
585 brack = ']'; | |
586 strcat (out, ":["); | |
587 } | |
588 else | |
589 { | |
590 brack = *p; | |
591 strcat (out, "."); | |
592 } | |
593 p++; | |
594 } | |
595 else | |
596 { | |
597 brack = ']'; | |
598 strcpy (out, "[."); | |
599 } | |
372 | 600 dot = index (p, '.'); |
601 if (dot) | |
230 | 602 { |
603 /* blindly remove any extension */ | |
604 size = strlen (out) + (dot - p); | |
605 strncat (out, p, dot - p); | |
606 } | |
607 else | |
608 { | |
609 strcat (out, p); | |
610 size = strlen (out); | |
611 } | |
612 out[size++] = brack; | |
613 out[size] = '\0'; | |
614 } | |
615 #else /* not VMS */ | |
616 /* For Unix syntax, Append a slash if necessary */ | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
617 if (!IS_DIRECTORY_SEP (out[size])) |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
618 { |
46566
2f6929599b1a
(file_name_as_directory): Use literal '/' instead of DIRECTORY_SEP.
Juanma Barranquero <lekktu@gmail.com>
parents:
46561
diff
changeset
|
619 /* Cannot use DIRECTORY_SEP, which could have any value */ |
2f6929599b1a
(file_name_as_directory): Use literal '/' instead of DIRECTORY_SEP.
Juanma Barranquero <lekktu@gmail.com>
parents:
46561
diff
changeset
|
620 out[size + 1] = '/'; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
621 out[size + 2] = '\0'; |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
622 } |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
623 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
624 CORRECT_DIR_SEPS (out); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
625 #endif |
230 | 626 #endif /* not VMS */ |
627 return out; | |
628 } | |
629 | |
630 DEFUN ("file-name-as-directory", Ffile_name_as_directory, | |
631 Sfile_name_as_directory, 1, 1, 0, | |
46561
7ede6e7f8c24
(Ffile_name_as_directory): Fix argument name in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
46539
diff
changeset
|
632 doc: /* Return a string representing the file name FILE interpreted as a directory. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
633 This operation exists because a directory is also a file, but its name as |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
634 a directory is different from its name as a file. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
635 The result can be used as the value of `default-directory' |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
636 or passed as second argument to `expand-file-name'. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
637 For a Unix-syntax file name, just appends a slash. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
638 On VMS, converts \"[X]FOO.DIR\" to \"[X.FOO]\", etc. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
639 (file) |
230 | 640 Lisp_Object file; |
641 { | |
642 char *buf; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
643 Lisp_Object handler; |
230 | 644 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
645 CHECK_STRING (file); |
485 | 646 if (NILP (file)) |
230 | 647 return Qnil; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
648 |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
649 /* 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
|
650 call the corresponding file handler. */ |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
651 handler = Ffind_file_name_handler (file, Qfile_name_as_directory); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
652 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
653 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
|
654 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
655 buf = (char *) alloca (SBYTES (file) + 10); |
50196
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
656 file_name_as_directory (buf, SDATA (file)); |
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
657 return make_specified_string (buf, -1, strlen (buf), |
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
658 STRING_MULTIBYTE (file)); |
230 | 659 } |
660 | |
661 /* | |
662 * Convert from directory name to filename. | |
663 * On VMS: | |
664 * xyzzy:[mukesh.emacs] => xyzzy:[mukesh]emacs.dir.1 | |
665 * xyzzy:[mukesh] => xyzzy:[000000]mukesh.dir.1 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
666 * On UNIX, it's simple: just make sure there isn't a terminating / |
230 | 667 |
668 * Value is nonzero if the string output is different from the input. | |
669 */ | |
670 | |
21514 | 671 int |
230 | 672 directory_file_name (src, dst) |
673 char *src, *dst; | |
674 { | |
675 long slen; | |
676 #ifdef VMS | |
677 long rlen; | |
678 char * ptr, * rptr; | |
679 char bracket; | |
680 struct FAB fab = cc$rms_fab; | |
681 struct NAM nam = cc$rms_nam; | |
682 char esa[NAM$C_MAXRSS]; | |
683 #endif /* VMS */ | |
684 | |
685 slen = strlen (src); | |
686 #ifdef VMS | |
687 if (! index (src, '/') | |
688 && (src[slen - 1] == ']' | |
689 || src[slen - 1] == ':' | |
690 || src[slen - 1] == '>')) | |
691 { | |
692 /* VMS style - convert [x.y.z] to [x.y]z, [x] to [000000]x */ | |
693 fab.fab$l_fna = src; | |
694 fab.fab$b_fns = slen; | |
695 fab.fab$l_nam = &nam; | |
696 fab.fab$l_fop = FAB$M_NAM; | |
697 | |
698 nam.nam$l_esa = esa; | |
699 nam.nam$b_ess = sizeof esa; | |
700 nam.nam$b_nop |= NAM$M_SYNCHK; | |
701 | |
702 /* We call SYS$PARSE to handle such things as [--] for us. */ | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
703 if (SYS$PARSE (&fab, 0, 0) == RMS$_NORMAL) |
230 | 704 { |
705 slen = nam.nam$b_esl; | |
706 if (esa[slen - 1] == ';' && esa[slen - 2] == '.') | |
707 slen -= 2; | |
708 esa[slen] = '\0'; | |
709 src = esa; | |
710 } | |
711 if (src[slen - 1] != ']' && src[slen - 1] != '>') | |
712 { | |
713 /* what about when we have logical_name:???? */ | |
714 if (src[slen - 1] == ':') | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
715 { /* Xlate logical name and see what we get */ |
230 | 716 ptr = strcpy (dst, src); /* upper case for getenv */ |
717 while (*ptr) | |
718 { | |
719 if ('a' <= *ptr && *ptr <= 'z') | |
720 *ptr -= 040; | |
721 ptr++; | |
722 } | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
723 dst[slen - 1] = 0; /* remove colon */ |
230 | 724 if (!(src = egetenv (dst))) |
725 return 0; | |
726 /* should we jump to the beginning of this procedure? | |
727 Good points: allows us to use logical names that xlate | |
728 to Unix names, | |
729 Bad points: can be a problem if we just translated to a device | |
730 name... | |
731 For now, I'll punt and always expect VMS names, and hope for | |
732 the best! */ | |
733 slen = strlen (src); | |
734 if (src[slen - 1] != ']' && src[slen - 1] != '>') | |
735 { /* no recursion here! */ | |
736 strcpy (dst, src); | |
737 return 0; | |
738 } | |
739 } | |
740 else | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
741 { /* not a directory spec */ |
230 | 742 strcpy (dst, src); |
743 return 0; | |
744 } | |
745 } | |
746 bracket = src[slen - 1]; | |
747 | |
748 /* If bracket is ']' or '>', bracket - 2 is the corresponding | |
749 opening bracket. */ | |
372 | 750 ptr = index (src, bracket - 2); |
751 if (ptr == 0) | |
230 | 752 { /* no opening bracket */ |
753 strcpy (dst, src); | |
754 return 0; | |
755 } | |
756 if (!(rptr = rindex (src, '.'))) | |
757 rptr = ptr; | |
758 slen = rptr - src; | |
759 strncpy (dst, src, slen); | |
760 dst[slen] = '\0'; | |
761 if (*rptr == '.') | |
762 { | |
763 dst[slen++] = bracket; | |
764 dst[slen] = '\0'; | |
765 } | |
766 else | |
767 { | |
768 /* If we have the top-level of a rooted directory (i.e. xx:[000000]), | |
769 then translate the device and recurse. */ | |
770 if (dst[slen - 1] == ':' | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
771 && dst[slen - 2] != ':' /* skip decnet nodes */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
772 && strcmp (src + slen, "[000000]") == 0) |
230 | 773 { |
774 dst[slen - 1] = '\0'; | |
775 if ((ptr = egetenv (dst)) | |
776 && (rlen = strlen (ptr) - 1) > 0 | |
777 && (ptr[rlen] == ']' || ptr[rlen] == '>') | |
778 && ptr[rlen - 1] == '.') | |
779 { | |
1358
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
780 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
|
781 strcpy (buf, ptr); |
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
782 buf[rlen - 1] = ']'; |
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
783 buf[rlen] = '\0'; |
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
784 return directory_file_name (buf, dst); |
230 | 785 } |
786 else | |
787 dst[slen - 1] = ':'; | |
788 } | |
789 strcat (dst, "[000000]"); | |
790 slen += 8; | |
791 } | |
792 rptr++; | |
793 rlen = strlen (rptr) - 1; | |
794 strncat (dst, rptr, rlen); | |
795 dst[slen + rlen] = '\0'; | |
796 strcat (dst, ".DIR.1"); | |
797 return 1; | |
798 } | |
799 #endif /* VMS */ | |
800 /* Process as Unix format: just remove any final slash. | |
801 But leave "/" unchanged; do not change it to "". */ | |
802 strcpy (dst, src); | |
11667
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
803 #ifdef APOLLO |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
804 /* Handle // as root for apollo's. */ |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
805 if ((slen > 2 && dst[slen - 1] == '/') |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
806 || (slen > 1 && dst[0] != '/' && dst[slen - 1] == '/')) |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
807 dst[slen - 1] = 0; |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
808 #else |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
809 if (slen > 1 |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
810 && IS_DIRECTORY_SEP (dst[slen - 1]) |
12369
54271828fd4e
(directory_file_name): Don't get confused by // at end on Unix-like systems.
Richard M. Stallman <rms@gnu.org>
parents:
11878
diff
changeset
|
811 #ifdef DOS_NT |
54271828fd4e
(directory_file_name): Don't get confused by // at end on Unix-like systems.
Richard M. Stallman <rms@gnu.org>
parents:
11878
diff
changeset
|
812 && !IS_ANY_SEP (dst[slen - 2]) |
54271828fd4e
(directory_file_name): Don't get confused by // at end on Unix-like systems.
Richard M. Stallman <rms@gnu.org>
parents:
11878
diff
changeset
|
813 #endif |
54271828fd4e
(directory_file_name): Don't get confused by // at end on Unix-like systems.
Richard M. Stallman <rms@gnu.org>
parents:
11878
diff
changeset
|
814 ) |
230 | 815 dst[slen - 1] = 0; |
11667
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
816 #endif |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
817 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
818 CORRECT_DIR_SEPS (dst); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
819 #endif |
230 | 820 return 1; |
821 } | |
822 | |
823 DEFUN ("directory-file-name", Fdirectory_file_name, Sdirectory_file_name, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
824 1, 1, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
825 doc: /* Returns the file name of the directory named DIRECTORY. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
826 This is the name of the file that holds the data for the directory DIRECTORY. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
827 This operation exists because a directory is also a file, but its name as |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
828 a directory is different from its name as a file. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
829 In Unix-syntax, this function just removes the final slash. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
830 On VMS, given a VMS-syntax directory name such as \"[X.Y]\", |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
831 it returns a file name such as \"[X]Y.DIR.1\". */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
832 (directory) |
230 | 833 Lisp_Object directory; |
834 { | |
835 char *buf; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
836 Lisp_Object handler; |
230 | 837 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
838 CHECK_STRING (directory); |
230 | 839 |
485 | 840 if (NILP (directory)) |
230 | 841 return Qnil; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
842 |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
843 /* 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
|
844 call the corresponding file handler. */ |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
845 handler = Ffind_file_name_handler (directory, Qdirectory_file_name); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
846 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
847 return call2 (handler, Qdirectory_file_name, directory); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
848 |
230 | 849 #ifdef VMS |
850 /* 20 extra chars is insufficient for VMS, since we might perform a | |
851 logical name translation. an equivalence string can be up to 255 | |
852 chars long, so grab that much extra space... - sss */ | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
853 buf = (char *) alloca (SBYTES (directory) + 20 + 255); |
230 | 854 #else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
855 buf = (char *) alloca (SBYTES (directory) + 20); |
230 | 856 #endif |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
857 directory_file_name (SDATA (directory), buf); |
50196
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
858 return make_specified_string (buf, -1, strlen (buf), |
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
859 STRING_MULTIBYTE (directory)); |
230 | 860 } |
861 | |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
862 static char make_temp_name_tbl[64] = |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
863 { |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
864 'A','B','C','D','E','F','G','H', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
865 'I','J','K','L','M','N','O','P', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
866 'Q','R','S','T','U','V','W','X', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
867 'Y','Z','a','b','c','d','e','f', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
868 'g','h','i','j','k','l','m','n', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
869 'o','p','q','r','s','t','u','v', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
870 'w','x','y','z','0','1','2','3', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
871 '4','5','6','7','8','9','-','_' |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
872 }; |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
873 |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
874 static unsigned make_temp_name_count, make_temp_name_count_initialized_p; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
875 |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
876 /* Value is a temporary file name starting with PREFIX, a string. |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
877 |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
878 The Emacs process number forms part of the result, so there is |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
879 no danger of generating a name being used by another process. |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
880 In addition, this function makes an attempt to choose a name |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
881 which has no existing file. To make this work, PREFIX should be |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
882 an absolute file name. |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
883 |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
884 BASE64_P non-zero means add the pid as 3 characters in base64 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
885 encoding. In this case, 6 characters will be added to PREFIX to |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
886 form the file name. Otherwise, if Emacs is running on a system |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
887 with long file names, add the pid as a decimal number. |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
888 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
889 This function signals an error if no unique file name could be |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
890 generated. */ |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
891 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
892 Lisp_Object |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
893 make_temp_name (prefix, base64_p) |
230 | 894 Lisp_Object prefix; |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
895 int base64_p; |
230 | 896 { |
897 Lisp_Object val; | |
56615
c0f488e9cb26
(make_temp_name): Handle multibyte prefixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56525
diff
changeset
|
898 int len, clen; |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
899 int pid; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
900 unsigned char *p, *data; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
901 char pidbuf[20]; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
902 int pidlen; |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
903 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
904 CHECK_STRING (prefix); |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
905 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
906 /* VAL is created by adding 6 characters to PREFIX. The first |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
907 three are the PID of this process, in base 64, and the second |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
908 three are incremented if the file already exists. This ensures |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
909 262144 unique file names per PID per PREFIX. */ |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
910 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
911 pid = (int) getpid (); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
912 |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
913 if (base64_p) |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
914 { |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
915 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6; |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
916 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6; |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
917 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6; |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
918 pidlen = 3; |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
919 } |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
920 else |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
921 { |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
922 #ifdef HAVE_LONG_FILE_NAMES |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
923 sprintf (pidbuf, "%d", pid); |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
924 pidlen = strlen (pidbuf); |
14519
7efdb933356e
(Fmake_temp_name) [MS-DOS]: Allow upto 8 characters in
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
925 #else |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
926 pidbuf[0] = make_temp_name_tbl[pid & 63], pid >>= 6; |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
927 pidbuf[1] = make_temp_name_tbl[pid & 63], pid >>= 6; |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
928 pidbuf[2] = make_temp_name_tbl[pid & 63], pid >>= 6; |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
929 pidlen = 3; |
14519
7efdb933356e
(Fmake_temp_name) [MS-DOS]: Allow upto 8 characters in
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
930 #endif |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
931 } |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
932 |
56615
c0f488e9cb26
(make_temp_name): Handle multibyte prefixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56525
diff
changeset
|
933 len = SBYTES (prefix); clen = SCHARS (prefix); |
c0f488e9cb26
(make_temp_name): Handle multibyte prefixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56525
diff
changeset
|
934 val = make_uninit_multibyte_string (clen + 3 + pidlen, len + 3 + pidlen); |
c0f488e9cb26
(make_temp_name): Handle multibyte prefixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56525
diff
changeset
|
935 if (!STRING_MULTIBYTE (prefix)) |
c0f488e9cb26
(make_temp_name): Handle multibyte prefixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56525
diff
changeset
|
936 STRING_SET_UNIBYTE (val); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
937 data = SDATA (val); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
938 bcopy(SDATA (prefix), data, len); |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
939 p = data + len; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
940 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
941 bcopy (pidbuf, p, pidlen); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
942 p += pidlen; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
943 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
944 /* Here we try to minimize useless stat'ing when this function is |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
945 invoked many times successively with the same PREFIX. We achieve |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
946 this by initializing count to a random value, and incrementing it |
21917 | 947 afterwards. |
948 | |
949 We don't want make-temp-name to be called while dumping, | |
950 because then make_temp_name_count_initialized_p would get set | |
951 and then make_temp_name_count would not be set when Emacs starts. */ | |
952 | |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
953 if (!make_temp_name_count_initialized_p) |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
954 { |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
955 make_temp_name_count = (unsigned) time (NULL); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
956 make_temp_name_count_initialized_p = 1; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
957 } |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
958 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
959 while (1) |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
960 { |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
961 struct stat ignored; |
21900
fd8b439fd6c9
(Fmake_temp_name): Improve randomness of generated file names.
Richard M. Stallman <rms@gnu.org>
parents:
21787
diff
changeset
|
962 unsigned num = make_temp_name_count; |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
963 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
964 p[0] = make_temp_name_tbl[num & 63], num >>= 6; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
965 p[1] = make_temp_name_tbl[num & 63], num >>= 6; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
966 p[2] = make_temp_name_tbl[num & 63], num >>= 6; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
967 |
21900
fd8b439fd6c9
(Fmake_temp_name): Improve randomness of generated file names.
Richard M. Stallman <rms@gnu.org>
parents:
21787
diff
changeset
|
968 /* Poor man's congruential RN generator. Replace with |
fd8b439fd6c9
(Fmake_temp_name): Improve randomness of generated file names.
Richard M. Stallman <rms@gnu.org>
parents:
21787
diff
changeset
|
969 ++make_temp_name_count for debugging. */ |
fd8b439fd6c9
(Fmake_temp_name): Improve randomness of generated file names.
Richard M. Stallman <rms@gnu.org>
parents:
21787
diff
changeset
|
970 make_temp_name_count += 25229; |
fd8b439fd6c9
(Fmake_temp_name): Improve randomness of generated file names.
Richard M. Stallman <rms@gnu.org>
parents:
21787
diff
changeset
|
971 make_temp_name_count %= 225307; |
fd8b439fd6c9
(Fmake_temp_name): Improve randomness of generated file names.
Richard M. Stallman <rms@gnu.org>
parents:
21787
diff
changeset
|
972 |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
973 if (stat (data, &ignored) < 0) |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
974 { |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
975 /* We want to return only if errno is ENOENT. */ |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
976 if (errno == ENOENT) |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
977 return val; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
978 else |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
979 /* The error here is dubious, but there is little else we |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
980 can do. The alternatives are to return nil, which is |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
981 as bad as (and in many cases worse than) throwing the |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
982 error, or to ignore the error, which will likely result |
21900
fd8b439fd6c9
(Fmake_temp_name): Improve randomness of generated file names.
Richard M. Stallman <rms@gnu.org>
parents:
21787
diff
changeset
|
983 in looping through 225307 stat's, which is not only |
fd8b439fd6c9
(Fmake_temp_name): Improve randomness of generated file names.
Richard M. Stallman <rms@gnu.org>
parents:
21787
diff
changeset
|
984 dog-slow, but also useless since it will fallback to |
fd8b439fd6c9
(Fmake_temp_name): Improve randomness of generated file names.
Richard M. Stallman <rms@gnu.org>
parents:
21787
diff
changeset
|
985 the errow below, anyway. */ |
29813
ffa0e91cd494
(make_temp_name): Don't use `%s' in string passed to
Gerd Moellmann <gerd@gnu.org>
parents:
29540
diff
changeset
|
986 report_file_error ("Cannot create temporary name for prefix", |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
987 Fcons (prefix, Qnil)); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
988 /* not reached */ |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
989 } |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
990 } |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
991 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
992 error ("Cannot create temporary name for prefix `%s'", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
993 SDATA (prefix)); |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
994 return Qnil; |
230 | 995 } |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
996 |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
997 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
998 DEFUN ("make-temp-name", Fmake_temp_name, Smake_temp_name, 1, 1, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
999 doc: /* Generate temporary file name (string) starting with PREFIX (a string). |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1000 The Emacs process number forms part of the result, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1001 so there is no danger of generating a name being used by another process. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1002 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1003 In addition, this function makes an attempt to choose a name |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1004 which has no existing file. To make this work, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1005 PREFIX should be an absolute file name. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1006 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1007 There is a race condition between calling `make-temp-name' and creating the |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1008 file which opens all kinds of security holes. For that reason, you should |
43680
d12db931f164
(Fmake_temp_name): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
43564
diff
changeset
|
1009 probably use `make-temp-file' instead, except in three circumstances: |
d12db931f164
(Fmake_temp_name): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
43564
diff
changeset
|
1010 |
d12db931f164
(Fmake_temp_name): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
43564
diff
changeset
|
1011 * If you are creating the file in the user's home directory. |
d12db931f164
(Fmake_temp_name): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
43564
diff
changeset
|
1012 * If you are creating a directory rather than an ordinary file. |
d12db931f164
(Fmake_temp_name): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
43564
diff
changeset
|
1013 * If you are taking special precautions as `make-temp-file' does. */) |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1014 (prefix) |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
1015 Lisp_Object prefix; |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
1016 { |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
1017 return make_temp_name (prefix, 0); |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
1018 } |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
1019 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
1020 |
230 | 1021 |
1022 DEFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1023 doc: /* Convert filename NAME to absolute, and canonicalize it. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1024 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative |
61060
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
1025 \(does not start with slash); if DEFAULT-DIRECTORY is nil or missing, |
62188
a89a98d0bb8c
(Fexpand_file_name, Frename_file, Fadd_name_to_file, Fmake_symbolic_link,
Juanma Barranquero <lekktu@gmail.com>
parents:
61942
diff
changeset
|
1026 the current buffer's value of `default-directory' is used. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1027 File name components that are `.' are removed, and |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1028 so are file name components followed by `..', along with the `..' itself; |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1029 note that these simplifications are done without checking the resulting |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1030 file names in the file system. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1031 An initial `~/' expands to your home directory. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1032 An initial `~USER/' expands to USER's home directory. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1033 See also the function `substitute-in-file-name'. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1034 (name, default_directory) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1035 Lisp_Object name, default_directory; |
230 | 1036 { |
1037 unsigned char *nm; | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1038 |
230 | 1039 register unsigned char *newdir, *p, *o; |
1040 int tlen; | |
1041 unsigned char *target; | |
1042 struct passwd *pw; | |
1043 #ifdef VMS | |
1044 unsigned char * colon = 0; | |
1045 unsigned char * close = 0; | |
1046 unsigned char * slash = 0; | |
1047 unsigned char * brack = 0; | |
1048 int lbrack = 0, rbrack = 0; | |
1049 int dots = 0; | |
1050 #endif /* VMS */ | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1051 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1052 int drive = 0; |
15109
b801c02f3e92
(Fexpand_file_name) [DOS_NT]: Keep dir sep following ~
Richard M. Stallman <rms@gnu.org>
parents:
15097
diff
changeset
|
1053 int collapse_newdir = 1; |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1054 int is_escaped = 0; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1055 #endif /* DOS_NT */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1056 int length; |
50340
810c2ac4b064
(Fexpand_file_name): In the no-handler case, after
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
50213
diff
changeset
|
1057 Lisp_Object handler, result; |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1058 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
1059 CHECK_STRING (name); |
230 | 1060 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1061 /* 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
|
1062 call the corresponding file handler. */ |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
1063 handler = Ffind_file_name_handler (name, Qexpand_file_name); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1064 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1065 return call3 (handler, Qexpand_file_name, name, default_directory); |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1066 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1067 /* Use the buffer's default-directory if DEFAULT_DIRECTORY is omitted. */ |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1068 if (NILP (default_directory)) |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1069 default_directory = current_buffer->directory; |
19754
380cbf03df01
(Fexpand_file_name): If default dir isn't string, use `/'.
Richard M. Stallman <rms@gnu.org>
parents:
19695
diff
changeset
|
1070 if (! STRINGP (default_directory)) |
42191
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1071 { |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1072 #ifdef DOS_NT |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1073 /* "/" is not considered a root directory on DOS_NT, so using "/" |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1074 here causes an infinite recursion in, e.g., the following: |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1075 |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1076 (let (default-directory) |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1077 (expand-file-name "a")) |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1078 |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1079 To avoid this, we set default_directory to the root of the |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1080 current drive. */ |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1081 extern char *emacs_root_dir (void); |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1082 |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1083 default_directory = build_string (emacs_root_dir ()); |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1084 #else |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1085 default_directory = build_string ("/"); |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1086 #endif |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1087 } |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1088 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1089 if (!NILP (default_directory)) |
10719
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
1090 { |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1091 handler = Ffind_file_name_handler (default_directory, Qexpand_file_name); |
10719
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
1092 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1093 return call3 (handler, Qexpand_file_name, name, default_directory); |
10719
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
1094 } |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1095 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1096 o = SDATA (default_directory); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1097 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1098 /* Make sure DEFAULT_DIRECTORY is properly expanded. |
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
|
1099 It would be better to do this down below where we actually use |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1100 default_directory. Unfortunately, calling Fexpand_file_name recursively |
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
|
1101 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
|
1102 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
|
1103 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
|
1104 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
|
1105 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
|
1106 |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
1107 The EQ test avoids infinite recursion. */ |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1108 if (! NILP (default_directory) && !EQ (default_directory, name) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1109 /* Save time in some common cases - as long as default_directory |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1110 is not relative, it can be canonicalized with name below (if it |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1111 is needed at all) without requiring it to be expanded now. */ |
14697
5a7714d4748e
(Fexpand_file_name): Fix confusion in detecting
Richard M. Stallman <rms@gnu.org>
parents:
14616
diff
changeset
|
1112 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1113 /* Detect MSDOS file names with drive specifiers. */ |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1114 && ! (IS_DRIVE (o[0]) && IS_DEVICE_SEP (o[1]) && IS_DIRECTORY_SEP (o[2])) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1115 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1116 /* Detect Windows file names in UNC format. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1117 && ! (IS_DIRECTORY_SEP (o[0]) && IS_DIRECTORY_SEP (o[1])) |
14697
5a7714d4748e
(Fexpand_file_name): Fix confusion in detecting
Richard M. Stallman <rms@gnu.org>
parents:
14616
diff
changeset
|
1118 #endif |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1119 #else /* not DOS_NT */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1120 /* Detect Unix absolute file names (/... alone is not absolute on |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1121 DOS or Windows). */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1122 && ! (IS_DIRECTORY_SEP (o[0])) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1123 #endif /* not DOS_NT */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1124 ) |
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
|
1125 { |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
1126 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
|
1127 |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
1128 GCPRO1 (name); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1129 default_directory = Fexpand_file_name (default_directory, Qnil); |
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
|
1130 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
|
1131 } |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
1132 |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1133 name = FILE_SYSTEM_CASE (name); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1134 nm = SDATA (name); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1135 |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1136 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1137 /* We will force directory separators to be either all \ or /, so make |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1138 a local copy to modify, even if there ends up being no change. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1139 nm = strcpy (alloca (strlen (nm) + 1), nm); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1140 |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1141 /* Note if special escape prefix is present, but remove for now. */ |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1142 if (nm[0] == '/' && nm[1] == ':') |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1143 { |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1144 is_escaped = 1; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1145 nm += 2; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1146 } |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1147 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1148 /* Find and remove drive specifier if present; this makes nm absolute |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1149 even if the rest of the name appears to be relative. Only look for |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1150 drive specifier at the beginning. */ |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1151 if (IS_DRIVE (nm[0]) && IS_DEVICE_SEP (nm[1])) |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1152 { |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1153 drive = nm[0]; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1154 nm += 2; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1155 } |
19695
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1156 |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1157 #ifdef WINDOWSNT |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1158 /* If we see "c://somedir", we want to strip the first slash after the |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1159 colon when stripping the drive letter. Otherwise, this expands to |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1160 "//somedir". */ |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1161 if (drive && IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1])) |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1162 nm++; |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1163 #endif /* WINDOWSNT */ |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1164 #endif /* DOS_NT */ |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1165 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1166 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1167 /* Discard any previous drive specifier if nm is now in UNC format. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1168 if (IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1])) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1169 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1170 drive = 0; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1171 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1172 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1173 |
36482
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1174 /* If nm is absolute, look for `/./' or `/../' or `//''sequences; if |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1175 none are found, we can probably return right away. We will avoid |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1176 allocating a new string if name is already fully expanded. */ |
230 | 1177 if ( |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1178 IS_DIRECTORY_SEP (nm[0]) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1179 #ifdef MSDOS |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1180 && drive && !is_escaped |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1181 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1182 #ifdef WINDOWSNT |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1183 && (drive || IS_DIRECTORY_SEP (nm[1])) && !is_escaped |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1184 #endif |
230 | 1185 #ifdef VMS |
1186 || index (nm, ':') | |
1187 #endif /* VMS */ | |
1188 ) | |
1189 { | |
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
|
1190 /* 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
|
1191 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
|
1192 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
|
1193 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
|
1194 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
|
1195 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
|
1196 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
|
1197 |
230 | 1198 p = nm; |
1199 while (*p) | |
1200 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1201 /* Since we know the name is absolute, we can assume that each |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1202 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
|
1203 |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1204 /* "." and ".." are hairy. */ |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1205 if (IS_DIRECTORY_SEP (p[0]) |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1206 && p[1] == '.' |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1207 && (IS_DIRECTORY_SEP (p[2]) |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1208 || p[2] == 0 |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1209 || (p[2] == '.' && (IS_DIRECTORY_SEP (p[3]) |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1210 || p[3] == 0)))) |
230 | 1211 lose = 1; |
36482
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1212 /* We want to replace multiple `/' in a row with a single |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1213 slash. */ |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1214 else if (p > nm |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1215 && IS_DIRECTORY_SEP (p[0]) |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1216 && IS_DIRECTORY_SEP (p[1])) |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1217 lose = 1; |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
1218 |
230 | 1219 #ifdef VMS |
1220 if (p[0] == '\\') | |
1221 lose = 1; | |
1222 if (p[0] == '/') { | |
1223 /* if dev:[dir]/, move nm to / */ | |
1224 if (!slash && p > nm && (brack || colon)) { | |
1225 nm = (brack ? brack + 1 : colon + 1); | |
1226 lbrack = rbrack = 0; | |
1227 brack = 0; | |
1228 colon = 0; | |
1229 } | |
1230 slash = p; | |
1231 } | |
1232 if (p[0] == '-') | |
60387
891064d819d7
(Fexpand_file_name) [VMS]:
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60380
diff
changeset
|
1233 #ifdef NO_HYPHENS_IN_FILENAMES |
230 | 1234 if (lbrack == rbrack) |
1235 { | |
60387
891064d819d7
(Fexpand_file_name) [VMS]:
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60380
diff
changeset
|
1236 /* Avoid clobbering negative version numbers. */ |
891064d819d7
(Fexpand_file_name) [VMS]:
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60380
diff
changeset
|
1237 if (dots < 2) |
230 | 1238 p[0] = '_'; |
1239 } | |
1240 else | |
60387
891064d819d7
(Fexpand_file_name) [VMS]:
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60380
diff
changeset
|
1241 #endif /* NO_HYPHENS_IN_FILENAMES */ |
230 | 1242 if (lbrack > rbrack && |
1243 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') && | |
1244 (p[1] == '.' || p[1] == ']' || p[1] == '>'))) | |
1245 lose = 1; | |
60387
891064d819d7
(Fexpand_file_name) [VMS]:
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60380
diff
changeset
|
1246 #ifdef NO_HYPHENS_IN_FILENAMES |
230 | 1247 else |
1248 p[0] = '_'; | |
60387
891064d819d7
(Fexpand_file_name) [VMS]:
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60380
diff
changeset
|
1249 #endif /* NO_HYPHENS_IN_FILENAMES */ |
230 | 1250 /* count open brackets, reset close bracket pointer */ |
1251 if (p[0] == '[' || p[0] == '<') | |
1252 lbrack++, brack = 0; | |
1253 /* count close brackets, set close bracket pointer */ | |
1254 if (p[0] == ']' || p[0] == '>') | |
1255 rbrack++, brack = p; | |
1256 /* detect ][ or >< */ | |
1257 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<')) | |
1258 lose = 1; | |
1259 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~') | |
1260 nm = p + 1, lose = 1; | |
1261 if (p[0] == ':' && (colon || slash)) | |
1262 /* if dev1:[dir]dev2:, move nm to dev2: */ | |
1263 if (brack) | |
1264 { | |
1265 nm = brack + 1; | |
1266 brack = 0; | |
1267 } | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1268 /* if /name/dev:, move nm to dev: */ |
230 | 1269 else if (slash) |
1270 nm = slash + 1; | |
1271 /* if node::dev:, move colon following dev */ | |
1272 else if (colon && colon[-1] == ':') | |
1273 colon = p; | |
1274 /* if dev1:dev2:, move nm to dev2: */ | |
1275 else if (colon && colon[-1] != ':') | |
1276 { | |
1277 nm = colon + 1; | |
1278 colon = 0; | |
1279 } | |
1280 if (p[0] == ':' && !colon) | |
1281 { | |
1282 if (p[1] == ':') | |
1283 p++; | |
1284 colon = p; | |
1285 } | |
1286 if (lbrack == rbrack) | |
1287 if (p[0] == ';') | |
1288 dots = 2; | |
1289 else if (p[0] == '.') | |
1290 dots++; | |
1291 #endif /* VMS */ | |
1292 p++; | |
1293 } | |
1294 if (!lose) | |
1295 { | |
1296 #ifdef VMS | |
1297 if (index (nm, '/')) | |
50196
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
1298 { |
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
1299 nm = sys_translate_unix (nm); |
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
1300 return make_specified_string (nm, -1, strlen (nm), |
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
1301 STRING_MULTIBYTE (name)); |
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
1302 } |
230 | 1303 #endif /* VMS */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1304 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1305 /* Make sure directories are all separated with / or \ as |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1306 desired, but avoid allocation of a new string when not |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1307 required. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1308 CORRECT_DIR_SEPS (nm); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1309 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1310 if (IS_DIRECTORY_SEP (nm[1])) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1311 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1312 if (strcmp (nm, SDATA (name)) != 0) |
50213
f72d2bd8118d
(Fexpand_file_name): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
50212
diff
changeset
|
1313 name = make_specified_string (nm, -1, strlen (nm), |
f72d2bd8118d
(Fexpand_file_name): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
50212
diff
changeset
|
1314 STRING_MULTIBYTE (name)); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1315 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1316 else |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1317 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1318 /* drive must be set, so this is okay */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1319 if (strcmp (nm - 2, SDATA (name)) != 0) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1320 { |
50213
f72d2bd8118d
(Fexpand_file_name): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
50212
diff
changeset
|
1321 char temp[] = " :"; |
f72d2bd8118d
(Fexpand_file_name): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
50212
diff
changeset
|
1322 |
f72d2bd8118d
(Fexpand_file_name): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
50212
diff
changeset
|
1323 name = make_specified_string (nm, -1, p - nm, |
f72d2bd8118d
(Fexpand_file_name): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
50212
diff
changeset
|
1324 STRING_MULTIBYTE (name)); |
f72d2bd8118d
(Fexpand_file_name): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
50212
diff
changeset
|
1325 temp[0] = DRIVE_LETTER (drive); |
f72d2bd8118d
(Fexpand_file_name): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
50212
diff
changeset
|
1326 name = concat2 (build_string (temp), name); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1327 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1328 return name; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1329 #else /* not DOS_NT */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1330 if (nm == SDATA (name)) |
230 | 1331 return name; |
50196
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
1332 return make_specified_string (nm, -1, strlen (nm), |
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
1333 STRING_MULTIBYTE (name)); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1334 #endif /* not DOS_NT */ |
230 | 1335 } |
1336 } | |
1337 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1338 /* At this point, nm might or might not be an absolute file name. We |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1339 need to expand ~ or ~user if present, otherwise prefix nm with |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1340 default_directory if nm is not absolute, and finally collapse /./ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1341 and /foo/../ sequences. |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1342 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1343 We set newdir to be the appropriate prefix if one is needed: |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1344 - the relevant user directory if nm starts with ~ or ~user |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1345 - the specified drive's working dir (DOS/NT only) if nm does not |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1346 start with / |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1347 - the value of default_directory. |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1348 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1349 Note that these prefixes are not guaranteed to be absolute (except |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1350 for the working dir of a drive). Therefore, to ensure we always |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1351 return an absolute name, if the final prefix is not absolute we |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1352 append it to the current working directory. */ |
230 | 1353 |
1354 newdir = 0; | |
1355 | |
1356 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
|
1357 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1358 if (IS_DIRECTORY_SEP (nm[1]) |
230 | 1359 #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
|
1360 || nm[1] == ':' |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1361 #endif /* VMS */ |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1362 || 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
|
1363 { |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1364 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
|
1365 newdir = (unsigned char *) ""; |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1366 nm++; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1367 #ifdef DOS_NT |
15109
b801c02f3e92
(Fexpand_file_name) [DOS_NT]: Keep dir sep following ~
Richard M. Stallman <rms@gnu.org>
parents:
15097
diff
changeset
|
1368 collapse_newdir = 0; |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1369 #endif |
230 | 1370 #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
|
1371 nm++; /* Don't leave the slash in nm. */ |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1372 #endif /* VMS */ |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1373 } |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1374 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
|
1375 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1376 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p) |
230 | 1377 #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
|
1378 && *p != ':' |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1379 #endif /* VMS */ |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1380 ); p++); |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1381 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
|
1382 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
|
1383 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
|
1384 |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1385 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
|
1386 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
|
1387 { |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1388 newdir = (unsigned char *) pw -> pw_dir; |
230 | 1389 #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
|
1390 nm = p + 1; /* skip the terminator */ |
230 | 1391 #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
|
1392 nm = p; |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1393 #ifdef DOS_NT |
15109
b801c02f3e92
(Fexpand_file_name) [DOS_NT]: Keep dir sep following ~
Richard M. Stallman <rms@gnu.org>
parents:
15097
diff
changeset
|
1394 collapse_newdir = 0; |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1395 #endif |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1396 #endif /* VMS */ |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1397 } |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1398 |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1399 /* 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
|
1400 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
|
1401 } |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1402 } |
230 | 1403 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1404 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1405 /* On DOS and Windows, nm is absolute if a drive name was specified; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1406 use the drive's current directory as the prefix if needed. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1407 if (!newdir && drive) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1408 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1409 /* Get default directory if needed to make nm absolute. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1410 if (!IS_DIRECTORY_SEP (nm[0])) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1411 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1412 newdir = alloca (MAXPATHLEN + 1); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1413 if (!getdefdir (toupper (drive) - 'A' + 1, newdir)) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1414 newdir = NULL; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1415 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1416 if (!newdir) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1417 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1418 /* Either nm starts with /, or drive isn't mounted. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1419 newdir = alloca (4); |
15324
6fd4e01fd332
(DRIVE_LETTER): [DOS_NT] New macro.
Richard M. Stallman <rms@gnu.org>
parents:
15313
diff
changeset
|
1420 newdir[0] = DRIVE_LETTER (drive); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1421 newdir[1] = ':'; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1422 newdir[2] = '/'; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1423 newdir[3] = 0; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1424 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1425 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1426 #endif /* DOS_NT */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1427 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1428 /* Finally, if no prefix has been specified and nm is not absolute, |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1429 then it must be expanded relative to default_directory. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1430 |
15124
b2c682fcd3ef
(Fexpand_file_name) [DOS_NT]: Correct the `if' clause
Richard M. Stallman <rms@gnu.org>
parents:
15109
diff
changeset
|
1431 if (1 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1432 #ifndef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1433 /* /... alone is not absolute on DOS and Windows. */ |
15124
b2c682fcd3ef
(Fexpand_file_name) [DOS_NT]: Correct the `if' clause
Richard M. Stallman <rms@gnu.org>
parents:
15109
diff
changeset
|
1434 && !IS_DIRECTORY_SEP (nm[0]) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1435 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1436 #ifdef WINDOWSNT |
15124
b2c682fcd3ef
(Fexpand_file_name) [DOS_NT]: Correct the `if' clause
Richard M. Stallman <rms@gnu.org>
parents:
15109
diff
changeset
|
1437 && !(IS_DIRECTORY_SEP (nm[0]) && IS_DIRECTORY_SEP (nm[1])) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1438 #endif |
230 | 1439 #ifdef VMS |
1440 && !index (nm, ':') | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1441 #endif |
230 | 1442 && !newdir) |
1443 { | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1444 newdir = SDATA (default_directory); |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1445 #ifdef DOS_NT |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1446 /* Note if special escape prefix is present, but remove for now. */ |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1447 if (newdir[0] == '/' && newdir[1] == ':') |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1448 { |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1449 is_escaped = 1; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1450 newdir += 2; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1451 } |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1452 #endif |
230 | 1453 } |
1454 | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1455 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1456 if (newdir) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1457 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1458 /* First ensure newdir is an absolute name. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1459 if ( |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1460 /* Detect MSDOS file names with drive specifiers. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1461 ! (IS_DRIVE (newdir[0]) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1462 && IS_DEVICE_SEP (newdir[1]) && IS_DIRECTORY_SEP (newdir[2])) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1463 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1464 /* Detect Windows file names in UNC format. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1465 && ! (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1])) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1466 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1467 ) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1468 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1469 /* Effectively, let newdir be (expand-file-name newdir cwd). |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1470 Because of the admonition against calling expand-file-name |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1471 when we have pointers into lisp strings, we accomplish this |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1472 indirectly by prepending newdir to nm if necessary, and using |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1473 cwd (or the wd of newdir's drive) as the new newdir. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1474 |
61060
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
1475 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1])) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1476 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1477 drive = newdir[0]; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1478 newdir += 2; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1479 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1480 if (!IS_DIRECTORY_SEP (nm[0])) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1481 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1482 char * tmp = alloca (strlen (newdir) + strlen (nm) + 2); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1483 file_name_as_directory (tmp, newdir); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1484 strcat (tmp, nm); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1485 nm = tmp; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1486 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1487 newdir = alloca (MAXPATHLEN + 1); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1488 if (drive) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1489 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1490 if (!getdefdir (toupper (drive) - 'A' + 1, newdir)) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1491 newdir = "/"; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1492 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1493 else |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1494 getwd (newdir); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1495 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1496 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1497 /* Strip off drive name from prefix, if present. */ |
61060
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
1498 if (IS_DRIVE (newdir[0]) && IS_DEVICE_SEP (newdir[1])) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1499 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1500 drive = newdir[0]; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1501 newdir += 2; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1502 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1503 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1504 /* Keep only a prefix from newdir if nm starts with slash |
19754
380cbf03df01
(Fexpand_file_name): If default dir isn't string, use `/'.
Richard M. Stallman <rms@gnu.org>
parents:
19695
diff
changeset
|
1505 (//server/share for UNC, nothing otherwise). */ |
15109
b801c02f3e92
(Fexpand_file_name) [DOS_NT]: Keep dir sep following ~
Richard M. Stallman <rms@gnu.org>
parents:
15097
diff
changeset
|
1506 if (IS_DIRECTORY_SEP (nm[0]) && collapse_newdir) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1507 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1508 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1509 if (IS_DIRECTORY_SEP (newdir[0]) && IS_DIRECTORY_SEP (newdir[1])) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1510 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1511 newdir = strcpy (alloca (strlen (newdir) + 1), newdir); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1512 p = newdir + 2; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1513 while (*p && !IS_DIRECTORY_SEP (*p)) p++; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1514 p++; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1515 while (*p && !IS_DIRECTORY_SEP (*p)) p++; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1516 *p = 0; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1517 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1518 else |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1519 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1520 newdir = ""; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1521 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1522 } |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1523 #endif /* DOS_NT */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1524 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1525 if (newdir) |
372 | 1526 { |
15313
0fad77a676b7
(Fexpand_file_name) [WINDOWSNT]: Don't strip trailing /
Richard M. Stallman <rms@gnu.org>
parents:
15124
diff
changeset
|
1527 /* Get rid of any slash at the end of newdir, unless newdir is |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1528 just / or // (an incomplete UNC name). */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1529 length = strlen (newdir); |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1530 if (length > 1 && IS_DIRECTORY_SEP (newdir[length - 1]) |
15313
0fad77a676b7
(Fexpand_file_name) [WINDOWSNT]: Don't strip trailing /
Richard M. Stallman <rms@gnu.org>
parents:
15124
diff
changeset
|
1531 #ifdef WINDOWSNT |
0fad77a676b7
(Fexpand_file_name) [WINDOWSNT]: Don't strip trailing /
Richard M. Stallman <rms@gnu.org>
parents:
15124
diff
changeset
|
1532 && !(length == 2 && IS_DIRECTORY_SEP (newdir[0])) |
0fad77a676b7
(Fexpand_file_name) [WINDOWSNT]: Don't strip trailing /
Richard M. Stallman <rms@gnu.org>
parents:
15124
diff
changeset
|
1533 #endif |
0fad77a676b7
(Fexpand_file_name) [WINDOWSNT]: Don't strip trailing /
Richard M. Stallman <rms@gnu.org>
parents:
15124
diff
changeset
|
1534 ) |
372 | 1535 { |
1536 unsigned char *temp = (unsigned char *) alloca (length); | |
1537 bcopy (newdir, temp, length - 1); | |
1538 temp[length - 1] = 0; | |
1539 newdir = temp; | |
1540 } | |
1541 tlen = length + 1; | |
1542 } | |
1543 else | |
1544 tlen = 0; | |
230 | 1545 |
372 | 1546 /* Now concatenate the directory and name to new space in the stack frame */ |
1547 tlen += strlen (nm) + 1; | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1548 #ifdef DOS_NT |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1549 /* Reserve space for drive specifier and escape prefix, since either |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1550 or both may need to be inserted. (The Microsoft x86 compiler |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1551 produces incorrect code if the following two lines are combined.) */ |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1552 target = (unsigned char *) alloca (tlen + 4); |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1553 target += 4; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1554 #else /* not DOS_NT */ |
230 | 1555 target = (unsigned char *) alloca (tlen); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1556 #endif /* not DOS_NT */ |
230 | 1557 *target = 0; |
1558 | |
1559 if (newdir) | |
1560 { | |
1561 #ifndef VMS | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1562 if (nm[0] == 0 || IS_DIRECTORY_SEP (nm[0])) |
22106
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1563 { |
22113
be43fb8acb62
(Fexpand_file_name): Change conditional
Richard M. Stallman <rms@gnu.org>
parents:
22106
diff
changeset
|
1564 #ifdef DOS_NT |
22106
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1565 /* If newdir is effectively "C:/", then the drive letter will have |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1566 been stripped and newdir will be "/". Concatenating with an |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1567 absolute directory in nm produces "//", which will then be |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1568 incorrectly treated as a network share. Ignore newdir in |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1569 this case (keeping the drive letter). */ |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
1570 if (!(drive && nm[0] && IS_DIRECTORY_SEP (newdir[0]) |
22106
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1571 && newdir[1] == '\0')) |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1572 #endif |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1573 strcpy (target, newdir); |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1574 } |
230 | 1575 else |
1576 #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
|
1577 file_name_as_directory (target, newdir); |
230 | 1578 } |
1579 | |
1580 strcat (target, nm); | |
1581 #ifdef VMS | |
1582 if (index (target, '/')) | |
1583 strcpy (target, sys_translate_unix (target)); | |
1584 #endif /* VMS */ | |
1585 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1586 /* ASSERT (IS_DIRECTORY_SEP (target[0])) if not VMS */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1587 |
36482
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1588 /* Now canonicalize by removing `//', `/.' and `/foo/..' if they |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1589 appear. */ |
230 | 1590 |
1591 p = target; | |
1592 o = target; | |
1593 | |
1594 while (*p) | |
1595 { | |
1596 #ifdef VMS | |
1597 if (*p != ']' && *p != '>' && *p != '-') | |
1598 { | |
1599 if (*p == '\\') | |
1600 p++; | |
1601 *o++ = *p++; | |
1602 } | |
1603 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2) | |
1604 /* brackets are offset from each other by 2 */ | |
1605 { | |
1606 p += 2; | |
1607 if (*p != '.' && *p != '-' && o[-1] != '.') | |
1608 /* convert [foo][bar] to [bar] */ | |
1609 while (o[-1] != '[' && o[-1] != '<') | |
1610 o--; | |
1611 else if (*p == '-' && *o != '.') | |
1612 *--p = '.'; | |
1613 } | |
1614 else if (p[0] == '-' && o[-1] == '.' && | |
1615 (p[1] == '.' || p[1] == ']' || p[1] == '>')) | |
1616 /* flush .foo.- ; leave - if stopped by '[' or '<' */ | |
1617 { | |
1618 do | |
1619 o--; | |
1620 while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<'); | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1621 if (p[1] == '.') /* foo.-.bar ==> bar. */ |
230 | 1622 p += 2; |
1623 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */ | |
1624 p++, o--; | |
1625 /* else [foo.-] ==> [-] */ | |
1626 } | |
1627 else | |
1628 { | |
60387
891064d819d7
(Fexpand_file_name) [VMS]:
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60380
diff
changeset
|
1629 #ifdef NO_HYPHENS_IN_FILENAMES |
230 | 1630 if (*p == '-' && |
1631 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' && | |
1632 p[1] != ']' && p[1] != '>' && p[1] != '.') | |
1633 *p = '_'; | |
60387
891064d819d7
(Fexpand_file_name) [VMS]:
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60380
diff
changeset
|
1634 #endif /* NO_HYPHENS_IN_FILENAMES */ |
230 | 1635 *o++ = *p++; |
1636 } | |
1637 #else /* not VMS */ | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1638 if (!IS_DIRECTORY_SEP (*p)) |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1639 { |
230 | 1640 *o++ = *p++; |
1641 } | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1642 else if (IS_DIRECTORY_SEP (p[0]) |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1643 && p[1] == '.' |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1644 && (IS_DIRECTORY_SEP (p[2]) |
1589
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1645 || 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
|
1646 { |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1647 /* 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
|
1648 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
|
1649 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
|
1650 *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
|
1651 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
|
1652 } |
11426
6502c07121b7
(Fexpand_file_name): Use IS_DIRECTORY_SEP instead of
Karl Heuer <kwzh@gnu.org>
parents:
11392
diff
changeset
|
1653 else if (IS_DIRECTORY_SEP (p[0]) && p[1] == '.' && p[2] == '.' |
230 | 1654 /* `/../' is the "superroot" on certain file systems. */ |
1655 && o != target | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1656 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0)) |
230 | 1657 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1658 while (o != target && (--o) && !IS_DIRECTORY_SEP (*o)) |
230 | 1659 ; |
17503
ba848dceb1c9
(Fexpand_file_name): Fix expansion of "/foo/../".
Richard M. Stallman <rms@gnu.org>
parents:
17396
diff
changeset
|
1660 /* Keep initial / only if this is the whole name. */ |
ba848dceb1c9
(Fexpand_file_name): Fix expansion of "/foo/../".
Richard M. Stallman <rms@gnu.org>
parents:
17396
diff
changeset
|
1661 if (o == target && IS_ANY_SEP (*o) && p[3] == 0) |
15427
97557b39e3b7
(Fexpand_file_name): When simplifying /foo/.., keep the initial slash.
Richard M. Stallman <rms@gnu.org>
parents:
15343
diff
changeset
|
1662 ++o; |
230 | 1663 p += 3; |
1664 } | |
36482
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1665 else if (p > target |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1666 && IS_DIRECTORY_SEP (p[0]) && IS_DIRECTORY_SEP (p[1])) |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1667 { |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1668 /* Collapse multiple `/' in a row. */ |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1669 *o++ = *p++; |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1670 while (IS_DIRECTORY_SEP (*p)) |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1671 ++p; |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1672 } |
230 | 1673 else |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1674 { |
230 | 1675 *o++ = *p++; |
1676 } | |
1677 #endif /* not VMS */ | |
1678 } | |
1679 | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1680 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1681 /* At last, set drive name. */ |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1682 #ifdef WINDOWSNT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1683 /* Except for network file name. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1684 if (!(IS_DIRECTORY_SEP (target[0]) && IS_DIRECTORY_SEP (target[1]))) |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1685 #endif /* WINDOWSNT */ |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1686 { |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1687 if (!drive) abort (); |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1688 target -= 2; |
15324
6fd4e01fd332
(DRIVE_LETTER): [DOS_NT] New macro.
Richard M. Stallman <rms@gnu.org>
parents:
15313
diff
changeset
|
1689 target[0] = DRIVE_LETTER (drive); |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1690 target[1] = ':'; |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1691 } |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1692 /* Reinsert the escape prefix if required. */ |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1693 if (is_escaped) |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1694 { |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1695 target -= 2; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1696 target[0] = '/'; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1697 target[1] = ':'; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1698 } |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1699 CORRECT_DIR_SEPS (target); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1700 #endif /* DOS_NT */ |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1701 |
50340
810c2ac4b064
(Fexpand_file_name): In the no-handler case, after
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
50213
diff
changeset
|
1702 result = make_specified_string (target, -1, o - target, |
810c2ac4b064
(Fexpand_file_name): In the no-handler case, after
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
50213
diff
changeset
|
1703 STRING_MULTIBYTE (name)); |
810c2ac4b064
(Fexpand_file_name): In the no-handler case, after
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
50213
diff
changeset
|
1704 |
810c2ac4b064
(Fexpand_file_name): In the no-handler case, after
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
50213
diff
changeset
|
1705 /* Again look to see if the file name has special constructs in it |
810c2ac4b064
(Fexpand_file_name): In the no-handler case, after
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
50213
diff
changeset
|
1706 and perhaps call the corresponding file handler. This is needed |
810c2ac4b064
(Fexpand_file_name): In the no-handler case, after
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
50213
diff
changeset
|
1707 for filenames such as "/foo/../user@host:/bar/../baz". Expanding |
810c2ac4b064
(Fexpand_file_name): In the no-handler case, after
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
50213
diff
changeset
|
1708 the ".." component gives us "/user@host:/bar/../baz" which needs |
810c2ac4b064
(Fexpand_file_name): In the no-handler case, after
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
50213
diff
changeset
|
1709 to be expanded again. */ |
810c2ac4b064
(Fexpand_file_name): In the no-handler case, after
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
50213
diff
changeset
|
1710 handler = Ffind_file_name_handler (result, Qexpand_file_name); |
810c2ac4b064
(Fexpand_file_name): In the no-handler case, after
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
50213
diff
changeset
|
1711 if (!NILP (handler)) |
810c2ac4b064
(Fexpand_file_name): In the no-handler case, after
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
50213
diff
changeset
|
1712 return call3 (handler, Qexpand_file_name, result, default_directory); |
810c2ac4b064
(Fexpand_file_name): In the no-handler case, after
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
50213
diff
changeset
|
1713 |
810c2ac4b064
(Fexpand_file_name): In the no-handler case, after
Kai Großjohann <kgrossjo@eu.uu.net>
parents:
50213
diff
changeset
|
1714 return result; |
230 | 1715 } |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1716 |
40306
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1717 #if 0 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1718 /* PLEASE DO NOT DELETE THIS COMMENTED-OUT VERSION! |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1719 This is the old version of expand-file-name, before it was thoroughly |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1720 rewritten for Emacs 10.31. We leave this version here commented-out, |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1721 because the code is very complex and likely to have subtle bugs. If |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1722 bugs _are_ found, it might be of interest to look at the old code and |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1723 see what did it do in the relevant situation. |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1724 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1725 Don't remove this code: it's true that it will be accessible via CVS, |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1726 but a few years from deletion, people will forget it is there. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1727 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1728 /* Changed this DEFUN to a DEAFUN, so as not to confuse `make-docfile'. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1729 DEAFUN ("expand-file-name", Fexpand_file_name, Sexpand_file_name, 1, 2, 0, |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1730 "Convert FILENAME to absolute, and canonicalize it.\n\ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1731 Second arg DEFAULT is directory to start with if FILENAME is relative\n\ |
61060
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
1732 \(does not start with slash); if DEFAULT is nil or missing,\n\ |
40306
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1733 the current buffer's value of default-directory is used.\n\ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1734 Filenames containing `.' or `..' as components are simplified;\n\ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1735 initial `~/' expands to your home directory.\n\ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1736 See also the function `substitute-in-file-name'.") |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1737 (name, defalt) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1738 Lisp_Object name, defalt; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1739 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1740 unsigned char *nm; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1741 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1742 register unsigned char *newdir, *p, *o; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1743 int tlen; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1744 unsigned char *target; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1745 struct passwd *pw; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1746 int lose; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1747 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1748 unsigned char * colon = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1749 unsigned char * close = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1750 unsigned char * slash = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1751 unsigned char * brack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1752 int lbrack = 0, rbrack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1753 int dots = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1754 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1755 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
1756 CHECK_STRING (name); |
40306
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1757 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1758 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1759 /* Filenames on VMS are always upper case. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1760 name = Fupcase (name); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1761 #endif |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1762 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1763 nm = SDATA (name); |
40306
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1764 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1765 /* If nm is absolute, flush ...// and detect /./ and /../. |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1766 If no /./ or /../ we can return right away. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1767 if ( |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1768 nm[0] == '/' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1769 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1770 || index (nm, ':') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1771 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1772 ) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1773 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1774 p = nm; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1775 lose = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1776 while (*p) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1777 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1778 if (p[0] == '/' && p[1] == '/' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1779 #ifdef APOLLO |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1780 /* // at start of filename is meaningful on Apollo system. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1781 && nm != p |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1782 #endif /* APOLLO */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1783 ) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1784 nm = p + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1785 if (p[0] == '/' && p[1] == '~') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1786 nm = p + 1, lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1787 if (p[0] == '/' && p[1] == '.' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1788 && (p[2] == '/' || p[2] == 0 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1789 || (p[2] == '.' && (p[3] == '/' || p[3] == 0)))) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1790 lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1791 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1792 if (p[0] == '\\') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1793 lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1794 if (p[0] == '/') { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1795 /* if dev:[dir]/, move nm to / */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1796 if (!slash && p > nm && (brack || colon)) { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1797 nm = (brack ? brack + 1 : colon + 1); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1798 lbrack = rbrack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1799 brack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1800 colon = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1801 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1802 slash = p; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1803 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1804 if (p[0] == '-') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1805 #ifndef VMS4_4 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1806 /* VMS pre V4.4,convert '-'s in filenames. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1807 if (lbrack == rbrack) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1808 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1809 if (dots < 2) /* this is to allow negative version numbers */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1810 p[0] = '_'; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1811 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1812 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1813 #endif /* VMS4_4 */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1814 if (lbrack > rbrack && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1815 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1816 (p[1] == '.' || p[1] == ']' || p[1] == '>'))) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1817 lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1818 #ifndef VMS4_4 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1819 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1820 p[0] = '_'; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1821 #endif /* VMS4_4 */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1822 /* count open brackets, reset close bracket pointer */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1823 if (p[0] == '[' || p[0] == '<') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1824 lbrack++, brack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1825 /* count close brackets, set close bracket pointer */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1826 if (p[0] == ']' || p[0] == '>') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1827 rbrack++, brack = p; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1828 /* detect ][ or >< */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1829 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<')) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1830 lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1831 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1832 nm = p + 1, lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1833 if (p[0] == ':' && (colon || slash)) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1834 /* if dev1:[dir]dev2:, move nm to dev2: */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1835 if (brack) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1836 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1837 nm = brack + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1838 brack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1839 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1840 /* If /name/dev:, move nm to dev: */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1841 else if (slash) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1842 nm = slash + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1843 /* If node::dev:, move colon following dev */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1844 else if (colon && colon[-1] == ':') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1845 colon = p; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1846 /* If dev1:dev2:, move nm to dev2: */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1847 else if (colon && colon[-1] != ':') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1848 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1849 nm = colon + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1850 colon = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1851 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1852 if (p[0] == ':' && !colon) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1853 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1854 if (p[1] == ':') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1855 p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1856 colon = p; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1857 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1858 if (lbrack == rbrack) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1859 if (p[0] == ';') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1860 dots = 2; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1861 else if (p[0] == '.') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1862 dots++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1863 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1864 p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1865 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1866 if (!lose) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1867 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1868 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1869 if (index (nm, '/')) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1870 return build_string (sys_translate_unix (nm)); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1871 #endif /* VMS */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1872 if (nm == SDATA (name)) |
40306
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1873 return name; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1874 return build_string (nm); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1875 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1876 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1877 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1878 /* Now determine directory to start with and put it in NEWDIR */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1879 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1880 newdir = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1881 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1882 if (nm[0] == '~') /* prefix ~ */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1883 if (nm[1] == '/' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1884 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1885 || nm[1] == ':' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1886 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1887 || nm[1] == 0)/* ~/filename */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1888 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1889 if (!(newdir = (unsigned char *) egetenv ("HOME"))) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1890 newdir = (unsigned char *) ""; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1891 nm++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1892 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1893 nm++; /* Don't leave the slash in nm. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1894 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1895 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1896 else /* ~user/filename */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1897 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1898 /* Get past ~ to user */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1899 unsigned char *user = nm + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1900 /* Find end of name. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1901 unsigned char *ptr = (unsigned char *) index (user, '/'); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1902 int len = ptr ? ptr - user : strlen (user); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1903 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1904 unsigned char *ptr1 = index (user, ':'); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1905 if (ptr1 != 0 && ptr1 - user < len) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1906 len = ptr1 - user; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1907 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1908 /* Copy the user name into temp storage. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1909 o = (unsigned char *) alloca (len + 1); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1910 bcopy ((char *) user, o, len); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1911 o[len] = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1912 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1913 /* Look up the user name. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1914 pw = (struct passwd *) getpwnam (o + 1); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1915 if (!pw) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1916 error ("\"%s\" isn't a registered user", o + 1); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1917 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1918 newdir = (unsigned char *) pw->pw_dir; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1919 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1920 /* Discard the user name from NM. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1921 nm += len; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1922 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1923 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1924 if (nm[0] != '/' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1925 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1926 && !index (nm, ':') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1927 #endif /* not VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1928 && !newdir) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1929 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1930 if (NILP (defalt)) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1931 defalt = current_buffer->directory; |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
1932 CHECK_STRING (defalt); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1933 newdir = SDATA (defalt); |
40306
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1934 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1935 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1936 /* Now concatenate the directory and name to new space in the stack frame */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1937 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1938 tlen = (newdir ? strlen (newdir) + 1 : 0) + strlen (nm) + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1939 target = (unsigned char *) alloca (tlen); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1940 *target = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1941 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1942 if (newdir) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1943 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1944 #ifndef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1945 if (nm[0] == 0 || nm[0] == '/') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1946 strcpy (target, newdir); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1947 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1948 #endif |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1949 file_name_as_directory (target, newdir); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1950 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1951 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1952 strcat (target, nm); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1953 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1954 if (index (target, '/')) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1955 strcpy (target, sys_translate_unix (target)); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1956 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1957 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1958 /* Now canonicalize by removing /. and /foo/.. if they appear */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1959 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1960 p = target; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1961 o = target; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1962 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1963 while (*p) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1964 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1965 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1966 if (*p != ']' && *p != '>' && *p != '-') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1967 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1968 if (*p == '\\') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1969 p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1970 *o++ = *p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1971 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1972 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1973 /* brackets are offset from each other by 2 */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1974 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1975 p += 2; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1976 if (*p != '.' && *p != '-' && o[-1] != '.') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1977 /* convert [foo][bar] to [bar] */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1978 while (o[-1] != '[' && o[-1] != '<') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1979 o--; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1980 else if (*p == '-' && *o != '.') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1981 *--p = '.'; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1982 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1983 else if (p[0] == '-' && o[-1] == '.' && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1984 (p[1] == '.' || p[1] == ']' || p[1] == '>')) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1985 /* flush .foo.- ; leave - if stopped by '[' or '<' */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1986 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1987 do |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1988 o--; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1989 while (o[-1] != '.' && o[-1] != '[' && o[-1] != '<'); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1990 if (p[1] == '.') /* foo.-.bar ==> bar. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1991 p += 2; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1992 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1993 p++, o--; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1994 /* else [foo.-] ==> [-] */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1995 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1996 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1997 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1998 #ifndef VMS4_4 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1999 if (*p == '-' && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2000 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2001 p[1] != ']' && p[1] != '>' && p[1] != '.') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2002 *p = '_'; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2003 #endif /* VMS4_4 */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2004 *o++ = *p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2005 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2006 #else /* not VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2007 if (*p != '/') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2008 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2009 *o++ = *p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2010 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2011 else if (!strncmp (p, "//", 2) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2012 #ifdef APOLLO |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2013 /* // at start of filename is meaningful in Apollo system. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2014 && o != target |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2015 #endif /* APOLLO */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2016 ) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2017 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2018 o = target; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2019 p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2020 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2021 else if (p[0] == '/' && p[1] == '.' && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2022 (p[2] == '/' || p[2] == 0)) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2023 p += 2; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2024 else if (!strncmp (p, "/..", 3) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2025 /* `/../' is the "superroot" on certain file systems. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2026 && o != target |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2027 && (p[3] == '/' || p[3] == 0)) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2028 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2029 while (o != target && *--o != '/') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2030 ; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2031 #ifdef APOLLO |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2032 if (o == target + 1 && o[-1] == '/' && o[0] == '/') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2033 ++o; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2034 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2035 #endif /* APOLLO */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2036 if (o == target && *o == '/') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2037 ++o; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2038 p += 3; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2039 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2040 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2041 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2042 *o++ = *p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2043 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2044 #endif /* not VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2045 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2046 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2047 return make_string (target, o - target); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2048 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2049 #endif |
230 | 2050 |
61060
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2051 /* If /~ or // appears, discard everything through first slash. */ |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2052 static int |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2053 file_name_absolute_p (filename) |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2054 const unsigned char *filename; |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2055 { |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2056 return |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2057 (IS_DIRECTORY_SEP (*filename) || *filename == '~' |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2058 #ifdef VMS |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2059 /* ??? This criterion is probably wrong for '<'. */ |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2060 || index (filename, ':') || index (filename, '<') |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2061 || (*filename == '[' && (filename[1] != '-' |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2062 || (filename[2] != '.' && filename[2] != ']')) |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2063 && filename[1] != '.') |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2064 #endif /* VMS */ |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2065 #ifdef DOS_NT |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2066 || (IS_DRIVE (*filename) && IS_DEVICE_SEP (filename[1]) |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2067 && IS_DIRECTORY_SEP (filename[2])) |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2068 #endif |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2069 ); |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2070 } |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2071 |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2072 static unsigned char * |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2073 search_embedded_absfilename (nm, endp) |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2074 unsigned char *nm, *endp; |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2075 { |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2076 unsigned char *p, *s; |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2077 |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2078 for (p = nm + 1; p < endp; p++) |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2079 { |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2080 if ((0 |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2081 #ifdef VMS |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2082 || p[-1] == ':' || p[-1] == ']' || p[-1] == '>' |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2083 #endif /* VMS */ |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2084 || IS_DIRECTORY_SEP (p[-1])) |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2085 && file_name_absolute_p (p) |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2086 #if defined (APOLLO) || defined (WINDOWSNT) || defined(CYGWIN) |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2087 /* // at start of file name is meaningful in Apollo, |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2088 WindowsNT and Cygwin systems. */ |
61151
be58652085b8
(search_embedded_absfilename): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
61060
diff
changeset
|
2089 && !(IS_DIRECTORY_SEP (p[0]) && p - 1 == nm) |
61060
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2090 #endif /* not (APOLLO || WINDOWSNT || CYGWIN) */ |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2091 ) |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2092 { |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2093 for (s = p; *s && (!IS_DIRECTORY_SEP (*s) |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2094 #ifdef VMS |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2095 && *s != ':' |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2096 #endif /* VMS */ |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2097 ); s++); |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2098 if (p[0] == '~' && s > p + 1) /* we've got "/~something/" */ |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2099 { |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2100 unsigned char *o = alloca (s - p + 1); |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2101 struct passwd *pw; |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2102 bcopy (p, o, s - p); |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2103 o [s - p] = 0; |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2104 |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2105 /* If we have ~user and `user' exists, discard |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2106 everything up to ~. But if `user' does not exist, leave |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2107 ~user alone, it might be a literal file name. */ |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2108 if ((pw = getpwnam (o + 1))) |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2109 return p; |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2110 else |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2111 xfree (pw); |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2112 } |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2113 else |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2114 return p; |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2115 } |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2116 } |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2117 return NULL; |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2118 } |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2119 |
230 | 2120 DEFUN ("substitute-in-file-name", Fsubstitute_in_file_name, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2121 Ssubstitute_in_file_name, 1, 1, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2122 doc: /* Substitute environment variables referred to in FILENAME. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2123 `$FOO' where FOO is an environment variable name means to substitute |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2124 the value of that variable. The variable name should be terminated |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2125 with a character not a letter, digit or underscore; otherwise, enclose |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2126 the entire variable name in braces. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2127 If `/~' appears, all of FILENAME through that `/' is discarded. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2128 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2129 On VMS, `$' substitution is not done; this function does little and only |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2130 duplicates what `expand-file-name' does. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2131 (filename) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2132 Lisp_Object filename; |
230 | 2133 { |
2134 unsigned char *nm; | |
2135 | |
2136 register unsigned char *s, *p, *o, *x, *endp; | |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31775
diff
changeset
|
2137 unsigned char *target = NULL; |
230 | 2138 int total = 0; |
2139 int substituted = 0; | |
2140 unsigned char *xnm; | |
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
2141 Lisp_Object handler; |
230 | 2142 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2143 CHECK_STRING (filename); |
230 | 2144 |
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
2145 /* If the file name has special constructs in it, |
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
2146 call the corresponding file handler. */ |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2147 handler = Ffind_file_name_handler (filename, Qsubstitute_in_file_name); |
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
2148 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2149 return call2 (handler, Qsubstitute_in_file_name, filename); |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2150 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2151 nm = SDATA (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2152 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2153 nm = strcpy (alloca (strlen (nm) + 1), nm); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2154 CORRECT_DIR_SEPS (nm); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2155 substituted = (strcmp (nm, SDATA (filename)) != 0); |
8185
b5cc015a3698
(Ffile_name_directory, Ffile_name_nondirectory,
Richard M. Stallman <rms@gnu.org>
parents:
8079
diff
changeset
|
2156 #endif |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2157 endp = nm + SBYTES (filename); |
230 | 2158 |
19754
380cbf03df01
(Fexpand_file_name): If default dir isn't string, use `/'.
Richard M. Stallman <rms@gnu.org>
parents:
19695
diff
changeset
|
2159 /* If /~ or // appears, discard everything through first slash. */ |
61060
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2160 p = search_embedded_absfilename (nm, endp); |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2161 if (p) |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2162 /* Start over with the new string, so we check the file-name-handler |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2163 again. Important with filenames like "/home/foo//:/hello///there" |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2164 which whould substitute to "/:/hello///there" rather than "/there". */ |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2165 return Fsubstitute_in_file_name |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2166 (make_specified_string (p, -1, endp - p, |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2167 STRING_MULTIBYTE (filename))); |
230 | 2168 |
2169 #ifdef VMS | |
61060
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2170 return filename; |
230 | 2171 #else |
2172 | |
2173 /* See if any variables are substituted into the string | |
2174 and find the total length of their values in `total' */ | |
2175 | |
2176 for (p = nm; p != endp;) | |
2177 if (*p != '$') | |
2178 p++; | |
2179 else | |
2180 { | |
2181 p++; | |
2182 if (p == endp) | |
2183 goto badsubst; | |
2184 else if (*p == '$') | |
2185 { | |
2186 /* "$$" means a single "$" */ | |
2187 p++; | |
2188 total -= 1; | |
2189 substituted = 1; | |
2190 continue; | |
2191 } | |
2192 else if (*p == '{') | |
2193 { | |
2194 o = ++p; | |
2195 while (p != endp && *p != '}') p++; | |
2196 if (*p != '}') goto missingclose; | |
2197 s = p; | |
2198 } | |
2199 else | |
2200 { | |
2201 o = p; | |
2202 while (p != endp && (isalnum (*p) || *p == '_')) p++; | |
2203 s = p; | |
2204 } | |
2205 | |
2206 /* Copy out the variable name */ | |
2207 target = (unsigned char *) alloca (s - o + 1); | |
2208 strncpy (target, o, s - o); | |
2209 target[s - o] = 0; | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2210 #ifdef DOS_NT |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2211 strupr (target); /* $home == $HOME etc. */ |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2212 #endif /* DOS_NT */ |
230 | 2213 |
2214 /* Get variable value */ | |
2215 o = (unsigned char *) egetenv (target); | |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2216 if (o) |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2217 { |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2218 total += strlen (o); |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2219 substituted = 1; |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2220 } |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2221 else if (*p == '}') |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2222 goto badvar; |
230 | 2223 } |
2224 | |
2225 if (!substituted) | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2226 return filename; |
230 | 2227 |
2228 /* If substitution required, recopy the string and do it */ | |
2229 /* Make space in stack frame for the new copy */ | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2230 xnm = (unsigned char *) alloca (SBYTES (filename) + total + 1); |
230 | 2231 x = xnm; |
2232 | |
2233 /* Copy the rest of the name through, replacing $ constructs with values */ | |
2234 for (p = nm; *p;) | |
2235 if (*p != '$') | |
2236 *x++ = *p++; | |
2237 else | |
2238 { | |
2239 p++; | |
2240 if (p == endp) | |
2241 goto badsubst; | |
2242 else if (*p == '$') | |
2243 { | |
2244 *x++ = *p++; | |
2245 continue; | |
2246 } | |
2247 else if (*p == '{') | |
2248 { | |
2249 o = ++p; | |
2250 while (p != endp && *p != '}') p++; | |
2251 if (*p != '}') goto missingclose; | |
2252 s = p++; | |
2253 } | |
2254 else | |
2255 { | |
2256 o = p; | |
2257 while (p != endp && (isalnum (*p) || *p == '_')) p++; | |
2258 s = p; | |
2259 } | |
2260 | |
2261 /* Copy out the variable name */ | |
2262 target = (unsigned char *) alloca (s - o + 1); | |
2263 strncpy (target, o, s - o); | |
2264 target[s - o] = 0; | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2265 #ifdef DOS_NT |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2266 strupr (target); /* $home == $HOME etc. */ |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2267 #endif /* DOS_NT */ |
230 | 2268 |
2269 /* Get variable value */ | |
2270 o = (unsigned char *) egetenv (target); | |
2271 if (!o) | |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2272 { |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2273 *x++ = '$'; |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2274 strcpy (x, target); x+= strlen (target); |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2275 } |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2276 else if (STRING_MULTIBYTE (filename)) |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2277 { |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2278 /* If the original string is multibyte, |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2279 convert what we substitute into multibyte. */ |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2280 while (*o) |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2281 { |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
2282 int c = unibyte_char_to_multibyte (*o++); |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
2283 x += CHAR_STRING (c, x); |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2284 } |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2285 } |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2286 else |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2287 { |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2288 strcpy (x, o); |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2289 x += strlen (o); |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2290 } |
230 | 2291 } |
2292 | |
2293 *x = 0; | |
2294 | |
19754
380cbf03df01
(Fexpand_file_name): If default dir isn't string, use `/'.
Richard M. Stallman <rms@gnu.org>
parents:
19695
diff
changeset
|
2295 /* If /~ or // appears, discard everything through first slash. */ |
61060
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2296 while ((p = search_embedded_absfilename (xnm, x))) |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2297 /* This time we do not start over because we've already expanded envvars |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2298 and replaced $$ with $. Maybe we should start over as well, but we'd |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2299 need to quote some $ to $$ first. */ |
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
2300 xnm = p; |
230 | 2301 |
50196
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
2302 return make_specified_string (xnm, -1, x - xnm, STRING_MULTIBYTE (filename)); |
230 | 2303 |
2304 badsubst: | |
2305 error ("Bad format environment-variable substitution"); | |
2306 missingclose: | |
2307 error ("Missing \"}\" in environment-variable substitution"); | |
2308 badvar: | |
2309 error ("Substituting nonexistent environment variable \"%s\"", target); | |
2310 | |
2311 /* NOTREACHED */ | |
2312 #endif /* not VMS */ | |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31775
diff
changeset
|
2313 return Qnil; |
230 | 2314 } |
2315 | |
853 | 2316 /* 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
|
2317 (directory-file-name (expand-file-name FOO)). */ |
853 | 2318 |
230 | 2319 Lisp_Object |
2320 expand_and_dir_to_file (filename, defdir) | |
2321 Lisp_Object filename, defdir; | |
2322 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2323 register Lisp_Object absname; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2324 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2325 absname = Fexpand_file_name (filename, defdir); |
230 | 2326 #ifdef VMS |
2327 { | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2328 register int c = SREF (absname, SBYTES (absname) - 1); |
230 | 2329 if (c == ':' || c == ']' || c == '>') |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2330 absname = Fdirectory_file_name (absname); |
230 | 2331 } |
2332 #else | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2333 /* Remove final slash, if any (unless this is the root dir). |
230 | 2334 stat behaves differently depending! */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2335 if (SCHARS (absname) > 1 |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2336 && IS_DIRECTORY_SEP (SREF (absname, SBYTES (absname) - 1)) |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2337 && !IS_DEVICE_SEP (SREF (absname, SBYTES (absname)-2))) |
4483
6894dd27c9ec
(expand_and_dir_to_file): Use Fdirectory_file_name.
Richard M. Stallman <rms@gnu.org>
parents:
4451
diff
changeset
|
2338 /* We cannot take shortcuts; they might be wrong for magic file names. */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2339 absname = Fdirectory_file_name (absname); |
230 | 2340 #endif |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2341 return absname; |
230 | 2342 } |
2343 | |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2344 /* Signal an error if the file ABSNAME already exists. |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2345 If INTERACTIVE is nonzero, ask the user whether to proceed, |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2346 and bypass the error if the user says to go ahead. |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2347 QUERYSTRING is a name for the action that is being considered |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2348 to alter the file. |
21020
f7ace8487b28
(auto_save_1): Pass new arg to Fwrite_region.
Richard M. Stallman <rms@gnu.org>
parents:
20944
diff
changeset
|
2349 |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2350 *STATPTR is used to store the stat information if the file exists. |
21020
f7ace8487b28
(auto_save_1): Pass new arg to Fwrite_region.
Richard M. Stallman <rms@gnu.org>
parents:
20944
diff
changeset
|
2351 If the file does not exist, STATPTR->st_mode is set to 0. |
21304
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2352 If STATPTR is null, we don't store into it. |
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2353 |
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2354 If QUICK is nonzero, we ask for y or n, not yes or no. */ |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2355 |
8846
6bf0ce964319
(barf_or_query_if_file_exists): Fix declaration.
Karl Heuer <kwzh@gnu.org>
parents:
8808
diff
changeset
|
2356 void |
21304
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2357 barf_or_query_if_file_exists (absname, querystring, interactive, statptr, quick) |
230 | 2358 Lisp_Object absname; |
2359 unsigned char *querystring; | |
2360 int interactive; | |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2361 struct stat *statptr; |
21304
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2362 int quick; |
230 | 2363 { |
21949
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
2364 register Lisp_Object tem, encoded_filename; |
8597 | 2365 struct stat statbuf; |
230 | 2366 struct gcpro gcpro1; |
2367 | |
21949
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
2368 encoded_filename = ENCODE_FILE (absname); |
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
2369 |
8597 | 2370 /* stat is a good way to tell whether the file exists, |
2371 regardless of what access permissions it has. */ | |
55364
1d5e786cd260
* fileio.c (barf_or_query_if_file_exists): Use lstat.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55194
diff
changeset
|
2372 if (lstat (SDATA (encoded_filename), &statbuf) >= 0) |
230 | 2373 { |
2374 if (! interactive) | |
2375 Fsignal (Qfile_already_exists, | |
2376 Fcons (build_string ("File already exists"), | |
2377 Fcons (absname, Qnil))); | |
2378 GCPRO1 (absname); | |
49445
643eb4ccb3a3
(barf_or_query_if_file_exists): Call format2 instead of format1.
Richard M. Stallman <rms@gnu.org>
parents:
49322
diff
changeset
|
2379 tem = format2 ("File %s already exists; %s anyway? ", |
643eb4ccb3a3
(barf_or_query_if_file_exists): Call format2 instead of format1.
Richard M. Stallman <rms@gnu.org>
parents:
49322
diff
changeset
|
2380 absname, build_string (querystring)); |
21304
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2381 if (quick) |
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2382 tem = Fy_or_n_p (tem); |
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2383 else |
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2384 tem = do_yes_or_no_p (tem); |
230 | 2385 UNGCPRO; |
485 | 2386 if (NILP (tem)) |
230 | 2387 Fsignal (Qfile_already_exists, |
2388 Fcons (build_string ("File already exists"), | |
2389 Fcons (absname, Qnil))); | |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2390 if (statptr) |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2391 *statptr = statbuf; |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2392 } |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2393 else |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2394 { |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2395 if (statptr) |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2396 statptr->st_mode = 0; |
230 | 2397 } |
2398 return; | |
2399 } | |
2400 | |
61756
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2401 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 5, |
60682
3f5458d947ec
(Fcopy_file, Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60574
diff
changeset
|
2402 "fCopy file: \nGCopy %s to file: \np\nP", |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2403 doc: /* Copy FILE to NEWNAME. Both args must be strings. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2404 If NEWNAME names a directory, copy FILE there. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2405 Signals a `file-already-exists' error if file NEWNAME already exists, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2406 unless a third argument OK-IF-ALREADY-EXISTS is supplied and non-nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2407 A number as third arg means request confirmation if NEWNAME already exists. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2408 This is what happens in interactive use with M-x. |
59671 | 2409 Always sets the file modes of the output file to match the input file. |
61756
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2410 |
59671 | 2411 Fourth arg KEEP-TIME non-nil means give the output file the same |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2412 last-modified time as the old one. (This works on only some systems.) |
61789 | 2413 |
2414 A prefix arg makes KEEP-TIME non-nil. | |
2415 | |
61756
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2416 The optional fifth arg MUSTBENEW, if non-nil, insists on a check |
61789 | 2417 for an existing file with the same name. If MUSTBENEW is `excl', |
2418 that means to get an error if the file already exists; never overwrite. | |
2419 If MUSTBENEW is neither nil nor `excl', that means ask for | |
2420 confirmation before overwriting, but do go ahead and overwrite the file | |
2421 if the user confirms. */) | |
61756
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2422 (file, newname, ok_if_already_exists, keep_time, mustbenew) |
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2423 Lisp_Object file, newname, ok_if_already_exists, keep_time, mustbenew; |
230 | 2424 { |
2425 int ifd, ofd, n; | |
2426 char buf[16 * 1024]; | |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2427 struct stat st, out_st; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2428 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2429 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46285
diff
changeset
|
2430 int count = SPECPDL_INDEX (); |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2431 int input_file_statable_p; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2432 Lisp_Object encoded_file, encoded_newname; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2433 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2434 encoded_file = encoded_newname = Qnil; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2435 GCPRO4 (file, newname, encoded_file, encoded_newname); |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2436 CHECK_STRING (file); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2437 CHECK_STRING (newname); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2438 |
61756
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2439 if (!NILP (mustbenew) && !EQ (mustbenew, Qexcl)) |
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2440 barf_or_query_if_file_exists (newname, "overwrite", 1, 0, 1); |
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2441 |
39603
5d5957da979a
(Fcopy_file): If NEWNAME is a directory copy FILE there.
Gerd Moellmann <gerd@gnu.org>
parents:
39457
diff
changeset
|
2442 if (!NILP (Ffile_directory_p (newname))) |
53780
6c059bf40adc
(Fcopy_file): If NEWNAME is a directory, expand the
Eli Zaretskii <eliz@is.elta.co.il>
parents:
53764
diff
changeset
|
2443 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname); |
39603
5d5957da979a
(Fcopy_file): If NEWNAME is a directory copy FILE there.
Gerd Moellmann <gerd@gnu.org>
parents:
39457
diff
changeset
|
2444 else |
5d5957da979a
(Fcopy_file): If NEWNAME is a directory copy FILE there.
Gerd Moellmann <gerd@gnu.org>
parents:
39457
diff
changeset
|
2445 newname = Fexpand_file_name (newname, Qnil); |
5d5957da979a
(Fcopy_file): If NEWNAME is a directory copy FILE there.
Gerd Moellmann <gerd@gnu.org>
parents:
39457
diff
changeset
|
2446 |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2447 file = Fexpand_file_name (file, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2448 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
2449 /* 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
|
2450 call the corresponding file handler. */ |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2451 handler = Ffind_file_name_handler (file, Qcopy_file); |
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2452 /* 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
|
2453 if (NILP (handler)) |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2454 handler = Ffind_file_name_handler (newname, Qcopy_file); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2455 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2456 RETURN_UNGCPRO (call5 (handler, Qcopy_file, file, newname, |
34633
3a16306fdadf
(Fcopy_file): Rename the last argument to keep_time, to
Eli Zaretskii <eliz@gnu.org>
parents:
34176
diff
changeset
|
2457 ok_if_already_exists, keep_time)); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2458 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2459 encoded_file = ENCODE_FILE (file); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2460 encoded_newname = ENCODE_FILE (newname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2461 |
485 | 2462 if (NILP (ok_if_already_exists) |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
2463 || INTEGERP (ok_if_already_exists)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2464 barf_or_query_if_file_exists (encoded_newname, "copy to it", |
21304
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2465 INTEGERP (ok_if_already_exists), &out_st, 0); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2466 else if (stat (SDATA (encoded_newname), &out_st) < 0) |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2467 out_st.st_mode = 0; |
230 | 2468 |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2469 #ifdef WINDOWSNT |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2470 if (!CopyFile (SDATA (encoded_file), |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
2471 SDATA (encoded_newname), |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2472 FALSE)) |
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2473 report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil))); |
49557
8fbfb61ab3f4
(Fcopy_file) [WINDOWSNT]: Reverse logic for setting
Jason Rumney <jasonr@gnu.org>
parents:
49549
diff
changeset
|
2474 /* CopyFile retains the timestamp by default. */ |
8fbfb61ab3f4
(Fcopy_file) [WINDOWSNT]: Reverse logic for setting
Jason Rumney <jasonr@gnu.org>
parents:
49549
diff
changeset
|
2475 else if (NILP (keep_time)) |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2476 { |
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2477 EMACS_TIME now; |
43792
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2478 DWORD attributes; |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2479 char * filename; |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2480 |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2481 EMACS_GET_TIME (now); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2482 filename = SDATA (encoded_newname); |
43792
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2483 |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2484 /* Ensure file is writable while its modified time is set. */ |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2485 attributes = GetFileAttributes (filename); |
43799
b1abfedc2e1d
(Fcopy_file): Fix last change.
Jason Rumney <jasonr@gnu.org>
parents:
43792
diff
changeset
|
2486 SetFileAttributes (filename, attributes & ~FILE_ATTRIBUTE_READONLY); |
43792
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2487 if (set_file_times (filename, now, now)) |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2488 { |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2489 /* Restore original attributes. */ |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2490 SetFileAttributes (filename, attributes); |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2491 Fsignal (Qfile_date_error, |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2492 Fcons (build_string ("Cannot set file date"), |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2493 Fcons (newname, Qnil))); |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2494 } |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2495 /* Restore original attributes. */ |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2496 SetFileAttributes (filename, attributes); |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2497 } |
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2498 #else /* not WINDOWSNT */ |
48725
279d729bd941
(Fcopy_file): Set immediate_quit around emacs_open call.
Richard M. Stallman <rms@gnu.org>
parents:
48652
diff
changeset
|
2499 immediate_quit = 1; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2500 ifd = emacs_open (SDATA (encoded_file), O_RDONLY, 0); |
48725
279d729bd941
(Fcopy_file): Set immediate_quit around emacs_open call.
Richard M. Stallman <rms@gnu.org>
parents:
48652
diff
changeset
|
2501 immediate_quit = 0; |
279d729bd941
(Fcopy_file): Set immediate_quit around emacs_open call.
Richard M. Stallman <rms@gnu.org>
parents:
48652
diff
changeset
|
2502 |
230 | 2503 if (ifd < 0) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2504 report_file_error ("Opening input file", Fcons (file, Qnil)); |
230 | 2505 |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2506 record_unwind_protect (close_file_unwind, make_number (ifd)); |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2507 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2508 /* 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
|
2509 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
|
2510 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
|
2511 |
21739
e02be2b47d18
(Fcopy_file): Skip dev/inode check on Windows.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21684
diff
changeset
|
2512 #if !defined (DOS_NT) || __DJGPP__ > 1 |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2513 if (out_st.st_mode != 0 |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2514 && st.st_dev == out_st.st_dev && st.st_ino == out_st.st_ino) |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2515 { |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2516 errno = 0; |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2517 report_file_error ("Input and output files are the same", |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2518 Fcons (file, Fcons (newname, Qnil))); |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2519 } |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2520 #endif |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2521 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2522 #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
|
2523 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
|
2524 { |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2525 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
|
2526 { |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2527 #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
|
2528 /* 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
|
2529 errno = EISDIR; |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2530 #endif /* EISDIR */ |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2531 report_file_error ("Non-regular file", Fcons (file, Qnil)); |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2532 } |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2533 } |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2534 #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
|
2535 |
230 | 2536 #ifdef VMS |
2537 /* Create the copy file with the same record format as the input file */ | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2538 ofd = sys_creat (SDATA (encoded_newname), 0666, ifd); |
230 | 2539 #else |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2540 #ifdef MSDOS |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2541 /* System's default file type was set to binary by _fmode in emacs.c. */ |
61756
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2542 ofd = emacs_open (SDATA (encoded_newname), |
61789 | 2543 O_WRONLY | O_TRUNC | O_CREAT |
2544 | (EQ (mustbenew, Qexcl) ? O_EXCL : 0), | |
61756
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2545 S_IREAD | S_IWRITE); |
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2546 #else /* not MSDOS */ |
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2547 ofd = emacs_open (SDATA (encoded_newname), |
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2548 O_WRONLY | O_TRUNC | O_CREAT |
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2549 | (EQ (mustbenew, Qexcl) ? O_EXCL : 0), |
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2550 0666); |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2551 #endif /* not MSDOS */ |
230 | 2552 #endif /* VMS */ |
2553 if (ofd < 0) | |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2554 report_file_error ("Opening output file", Fcons (newname, Qnil)); |
230 | 2555 |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2556 record_unwind_protect (close_file_unwind, make_number (ofd)); |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2557 |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2558 immediate_quit = 1; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2559 QUIT; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
2560 while ((n = emacs_read (ifd, buf, sizeof buf)) > 0) |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
2561 if (emacs_write (ofd, buf, n) != n) |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2562 report_file_error ("I/O error", Fcons (newname, Qnil)); |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2563 immediate_quit = 0; |
230 | 2564 |
7493
f4fb8b913c5d
(Fcopy_file): Close output before setting its times.
Richard M. Stallman <rms@gnu.org>
parents:
7445
diff
changeset
|
2565 /* Closing the output clobbers the file times on some systems. */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
2566 if (emacs_close (ofd) < 0) |
7493
f4fb8b913c5d
(Fcopy_file): Close output before setting its times.
Richard M. Stallman <rms@gnu.org>
parents:
7445
diff
changeset
|
2567 report_file_error ("I/O error", Fcons (newname, Qnil)); |
f4fb8b913c5d
(Fcopy_file): Close output before setting its times.
Richard M. Stallman <rms@gnu.org>
parents:
7445
diff
changeset
|
2568 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2569 if (input_file_statable_p) |
230 | 2570 { |
34633
3a16306fdadf
(Fcopy_file): Rename the last argument to keep_time, to
Eli Zaretskii <eliz@gnu.org>
parents:
34176
diff
changeset
|
2571 if (!NILP (keep_time)) |
230 | 2572 { |
564 | 2573 EMACS_TIME atime, mtime; |
2574 EMACS_SET_SECS_USECS (atime, st.st_atime, 0); | |
2575 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0); | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2576 if (set_file_times (SDATA (encoded_newname), |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2577 atime, mtime)) |
17271
e34a30952e14
(Fcopy_file): Use Qfile_date_error if can't set file date.
Richard M. Stallman <rms@gnu.org>
parents:
17114
diff
changeset
|
2578 Fsignal (Qfile_date_error, |
17287
b1cb0037ecec
(Fcopy_file): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
17286
diff
changeset
|
2579 Fcons (build_string ("Cannot set file date"), |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
2580 Fcons (newname, Qnil))); |
230 | 2581 } |
13541
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2582 #ifndef MSDOS |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2583 chmod (SDATA (encoded_newname), st.st_mode & 07777); |
13541
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2584 #else /* MSDOS */ |
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2585 #if defined (__DJGPP__) && __DJGPP__ > 1 |
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2586 /* In DJGPP v2.0 and later, fstat usually returns true file mode bits, |
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2587 and if it can't, it tells so. Otherwise, under MSDOS we usually |
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2588 get only the READ bit, which will make the copied file read-only, |
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2589 so it's better not to chmod at all. */ |
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2590 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2591 chmod (SDATA (encoded_newname), st.st_mode & 07777); |
13541
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2592 #endif /* DJGPP version 2 or newer */ |
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2593 #endif /* MSDOS */ |
230 | 2594 } |
2595 | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
2596 emacs_close (ifd); |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2597 #endif /* WINDOWSNT */ |
7493
f4fb8b913c5d
(Fcopy_file): Close output before setting its times.
Richard M. Stallman <rms@gnu.org>
parents:
7445
diff
changeset
|
2598 |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2599 /* Discard the unwind protects. */ |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2600 specpdl_ptr = specpdl + count; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2601 |
230 | 2602 UNGCPRO; |
2603 return Qnil; | |
2604 } | |
10084
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2605 |
1533
b86ef0432100
(Fmake_directory_internal): Renamed from Fmake_directory.
Richard M. Stallman <rms@gnu.org>
parents:
1377
diff
changeset
|
2606 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
|
2607 Smake_directory_internal, 1, 1, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2608 doc: /* Create a new directory named DIRECTORY. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2609 (directory) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2610 Lisp_Object directory; |
230 | 2611 { |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
2612 const unsigned char *dir; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2613 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2614 Lisp_Object encoded_dir; |
230 | 2615 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2616 CHECK_STRING (directory); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2617 directory = Fexpand_file_name (directory, Qnil); |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2618 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2619 handler = Ffind_file_name_handler (directory, Qmake_directory_internal); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2620 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2621 return call2 (handler, Qmake_directory_internal, directory); |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2622 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2623 encoded_dir = ENCODE_FILE (directory); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2624 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2625 dir = SDATA (encoded_dir); |
230 | 2626 |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2627 #ifdef WINDOWSNT |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2628 if (mkdir (dir) != 0) |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2629 #else |
230 | 2630 if (mkdir (dir, 0777) != 0) |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2631 #endif |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2632 report_file_error ("Creating directory", Flist (1, &directory)); |
230 | 2633 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2634 return Qnil; |
230 | 2635 } |
2636 | |
686
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
2637 DEFUN ("delete-directory", Fdelete_directory, Sdelete_directory, 1, 1, "FDelete directory: ", |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
2638 doc: /* Delete the directory named DIRECTORY. Does not follow symlinks. */) |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2639 (directory) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2640 Lisp_Object directory; |
230 | 2641 { |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
2642 const unsigned char *dir; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2643 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2644 Lisp_Object encoded_dir; |
230 | 2645 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2646 CHECK_STRING (directory); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2647 directory = Fdirectory_file_name (Fexpand_file_name (directory, Qnil)); |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2648 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2649 handler = Ffind_file_name_handler (directory, Qdelete_directory); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2650 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2651 return call2 (handler, Qdelete_directory, directory); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2652 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2653 encoded_dir = ENCODE_FILE (directory); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2654 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2655 dir = SDATA (encoded_dir); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2656 |
230 | 2657 if (rmdir (dir) != 0) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2658 report_file_error ("Removing directory", Flist (1, &directory)); |
230 | 2659 |
2660 return Qnil; | |
2661 } | |
2662 | |
2663 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 1, "fDelete file: ", | |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
2664 doc: /* Delete file named FILENAME. If it is a symlink, remove the symlink. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2665 If file has multiple names, it continues to exist with the other names. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2666 (filename) |
230 | 2667 Lisp_Object filename; |
2668 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2669 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2670 Lisp_Object encoded_file; |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
2671 struct gcpro gcpro1; |
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
2672 |
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
2673 GCPRO1 (filename); |
51022
66b3b1b70da3
(Fdelete_file): Handle symlinks pointing to directories.
Richard M. Stallman <rms@gnu.org>
parents:
50886
diff
changeset
|
2674 if (!NILP (Ffile_directory_p (filename)) |
66b3b1b70da3
(Fdelete_file): Handle symlinks pointing to directories.
Richard M. Stallman <rms@gnu.org>
parents:
50886
diff
changeset
|
2675 && NILP (Ffile_symlink_p (filename))) |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
2676 Fsignal (Qfile_error, |
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
2677 Fcons (build_string ("Removing old name: is a directory"), |
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
2678 Fcons (filename, Qnil))); |
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
2679 UNGCPRO; |
230 | 2680 filename = Fexpand_file_name (filename, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2681 |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2682 handler = Ffind_file_name_handler (filename, Qdelete_file); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2683 if (!NILP (handler)) |
9170
1d95c81487a3
(Fdelete_file): Undo Sep 16 change.
Karl Heuer <kwzh@gnu.org>
parents:
9131
diff
changeset
|
2684 return call2 (handler, Qdelete_file, filename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2685 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2686 encoded_file = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2687 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2688 if (0 > unlink (SDATA (encoded_file))) |
230 | 2689 report_file_error ("Removing old name", Flist (1, &filename)); |
9170
1d95c81487a3
(Fdelete_file): Undo Sep 16 change.
Karl Heuer <kwzh@gnu.org>
parents:
9131
diff
changeset
|
2690 return Qnil; |
230 | 2691 } |
2692 | |
10084
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2693 static Lisp_Object |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2694 internal_delete_file_1 (ignore) |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2695 Lisp_Object ignore; |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2696 { |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2697 return Qt; |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2698 } |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2699 |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2700 /* Delete file FILENAME, returning 1 if successful and 0 if failed. */ |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2701 |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2702 int |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2703 internal_delete_file (filename) |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2704 Lisp_Object filename; |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2705 { |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2706 return NILP (internal_condition_case_1 (Fdelete_file, filename, |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2707 Qt, internal_delete_file_1)); |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2708 } |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2709 |
230 | 2710 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3, |
60682
3f5458d947ec
(Fcopy_file, Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60574
diff
changeset
|
2711 "fRename file: \nGRename %s to file: \np", |
62188
a89a98d0bb8c
(Fexpand_file_name, Frename_file, Fadd_name_to_file, Fmake_symbolic_link,
Juanma Barranquero <lekktu@gmail.com>
parents:
61942
diff
changeset
|
2712 doc: /* Rename FILE as NEWNAME. Both args must be strings. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2713 If file has names other than FILE, it continues to have those names. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2714 Signals a `file-already-exists' error if a file NEWNAME already exists |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2715 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2716 A number as third arg means request confirmation if NEWNAME already exists. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2717 This is what happens in interactive use with M-x. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2718 (file, newname, ok_if_already_exists) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2719 Lisp_Object file, newname, ok_if_already_exists; |
230 | 2720 { |
2721 #ifdef NO_ARG_ARRAY | |
2722 Lisp_Object args[2]; | |
2723 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2724 Lisp_Object handler; |
55364
1d5e786cd260
* fileio.c (barf_or_query_if_file_exists): Use lstat.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55194
diff
changeset
|
2725 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
1d5e786cd260
* fileio.c (barf_or_query_if_file_exists): Use lstat.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55194
diff
changeset
|
2726 Lisp_Object encoded_file, encoded_newname, symlink_target; |
1d5e786cd260
* fileio.c (barf_or_query_if_file_exists): Use lstat.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55194
diff
changeset
|
2727 |
1d5e786cd260
* fileio.c (barf_or_query_if_file_exists): Use lstat.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55194
diff
changeset
|
2728 symlink_target = encoded_file = encoded_newname = Qnil; |
1d5e786cd260
* fileio.c (barf_or_query_if_file_exists): Use lstat.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55194
diff
changeset
|
2729 GCPRO5 (file, newname, encoded_file, encoded_newname, symlink_target); |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2730 CHECK_STRING (file); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2731 CHECK_STRING (newname); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2732 file = Fexpand_file_name (file, Qnil); |
60572
d19eab3028e2
(Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60563
diff
changeset
|
2733 |
d19eab3028e2
(Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60563
diff
changeset
|
2734 if (!NILP (Ffile_directory_p (newname))) |
d19eab3028e2
(Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60563
diff
changeset
|
2735 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname); |
d19eab3028e2
(Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60563
diff
changeset
|
2736 else |
d19eab3028e2
(Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60563
diff
changeset
|
2737 newname = Fexpand_file_name (newname, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2738 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2739 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2740 call the corresponding file handler. */ |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2741 handler = Ffind_file_name_handler (file, Qrename_file); |
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
2742 if (NILP (handler)) |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2743 handler = Ffind_file_name_handler (newname, Qrename_file); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2744 if (!NILP (handler)) |
6370
51a014b7c656
(Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo
Karl Heuer <kwzh@gnu.org>
parents:
6367
diff
changeset
|
2745 RETURN_UNGCPRO (call4 (handler, Qrename_file, |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2746 file, newname, ok_if_already_exists)); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2747 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2748 encoded_file = ENCODE_FILE (file); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2749 encoded_newname = ENCODE_FILE (newname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2750 |
30376
a931186f35fa
(syms_of_coding): Doc fix for inhibit-iso-escape-detection.
Eli Zaretskii <eliz@gnu.org>
parents:
29813
diff
changeset
|
2751 #ifdef DOS_NT |
a931186f35fa
(syms_of_coding): Doc fix for inhibit-iso-escape-detection.
Eli Zaretskii <eliz@gnu.org>
parents:
29813
diff
changeset
|
2752 /* If the file names are identical but for the case, don't ask for |
a931186f35fa
(syms_of_coding): Doc fix for inhibit-iso-escape-detection.
Eli Zaretskii <eliz@gnu.org>
parents:
29813
diff
changeset
|
2753 confirmation: they simply want to change the letter-case of the |
a931186f35fa
(syms_of_coding): Doc fix for inhibit-iso-escape-detection.
Eli Zaretskii <eliz@gnu.org>
parents:
29813
diff
changeset
|
2754 file name. */ |
a931186f35fa
(syms_of_coding): Doc fix for inhibit-iso-escape-detection.
Eli Zaretskii <eliz@gnu.org>
parents:
29813
diff
changeset
|
2755 if (NILP (Fstring_equal (Fdowncase (file), Fdowncase (newname)))) |
a931186f35fa
(syms_of_coding): Doc fix for inhibit-iso-escape-detection.
Eli Zaretskii <eliz@gnu.org>
parents:
29813
diff
changeset
|
2756 #endif |
485 | 2757 if (NILP (ok_if_already_exists) |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
2758 || INTEGERP (ok_if_already_exists)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2759 barf_or_query_if_file_exists (encoded_newname, "rename to it", |
21304
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2760 INTEGERP (ok_if_already_exists), 0, 0); |
230 | 2761 #ifndef BSD4_1 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2762 if (0 > rename (SDATA (encoded_file), SDATA (encoded_newname))) |
230 | 2763 #else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2764 if (0 > link (SDATA (encoded_file), SDATA (encoded_newname)) |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2765 || 0 > unlink (SDATA (encoded_file))) |
230 | 2766 #endif |
2767 { | |
2768 if (errno == EXDEV) | |
2769 { | |
55368
3d05bc7b23b9
fileio.c (Frename_file): Put symlink handling inside #ifdef S_IFLNK.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55364
diff
changeset
|
2770 #ifdef S_IFLNK |
55364
1d5e786cd260
* fileio.c (barf_or_query_if_file_exists): Use lstat.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55194
diff
changeset
|
2771 symlink_target = Ffile_symlink_p (file); |
55368
3d05bc7b23b9
fileio.c (Frename_file): Put symlink handling inside #ifdef S_IFLNK.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55364
diff
changeset
|
2772 if (! NILP (symlink_target)) |
3d05bc7b23b9
fileio.c (Frename_file): Put symlink handling inside #ifdef S_IFLNK.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55364
diff
changeset
|
2773 Fmake_symbolic_link (symlink_target, newname, |
55488
626bc3834cd3
(Frename_file): Remove extra argument in call to
Andreas Schwab <schwab@suse.de>
parents:
55368
diff
changeset
|
2774 NILP (ok_if_already_exists) ? Qnil : Qt); |
55368
3d05bc7b23b9
fileio.c (Frename_file): Put symlink handling inside #ifdef S_IFLNK.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55364
diff
changeset
|
2775 else |
3d05bc7b23b9
fileio.c (Frename_file): Put symlink handling inside #ifdef S_IFLNK.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55364
diff
changeset
|
2776 #endif |
55364
1d5e786cd260
* fileio.c (barf_or_query_if_file_exists): Use lstat.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55194
diff
changeset
|
2777 Fcopy_file (file, newname, |
1d5e786cd260
* fileio.c (barf_or_query_if_file_exists): Use lstat.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55194
diff
changeset
|
2778 /* We have already prompted if it was an integer, |
1d5e786cd260
* fileio.c (barf_or_query_if_file_exists): Use lstat.
Jan Djärv <jan.h.d@swipnet.se>
parents:
55194
diff
changeset
|
2779 so don't have copy-file prompt again. */ |
61756
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2780 NILP (ok_if_already_exists) ? Qnil : Qt, |
f53a54e241e5
(Fcopy_file): New arg MUSTBENEW.
Richard M. Stallman <rms@gnu.org>
parents:
61700
diff
changeset
|
2781 Qt, Qnil); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2782 Fdelete_file (file); |
230 | 2783 } |
2784 else | |
2785 #ifdef NO_ARG_ARRAY | |
2786 { | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2787 args[0] = file; |
230 | 2788 args[1] = newname; |
2789 report_file_error ("Renaming", Flist (2, args)); | |
2790 } | |
2791 #else | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2792 report_file_error ("Renaming", Flist (2, &file)); |
230 | 2793 #endif |
2794 } | |
2795 UNGCPRO; | |
2796 return Qnil; | |
2797 } | |
2798 | |
2799 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3, | |
60682
3f5458d947ec
(Fcopy_file, Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60574
diff
changeset
|
2800 "fAdd name to file: \nGName to add to %s: \np", |
62188
a89a98d0bb8c
(Fexpand_file_name, Frename_file, Fadd_name_to_file, Fmake_symbolic_link,
Juanma Barranquero <lekktu@gmail.com>
parents:
61942
diff
changeset
|
2801 doc: /* Give FILE additional name NEWNAME. Both args must be strings. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2802 Signals a `file-already-exists' error if a file NEWNAME already exists |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2803 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2804 A number as third arg means request confirmation if NEWNAME already exists. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2805 This is what happens in interactive use with M-x. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2806 (file, newname, ok_if_already_exists) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2807 Lisp_Object file, newname, ok_if_already_exists; |
230 | 2808 { |
2809 #ifdef NO_ARG_ARRAY | |
2810 Lisp_Object args[2]; | |
2811 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2812 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2813 Lisp_Object encoded_file, encoded_newname; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2814 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2815 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2816 GCPRO4 (file, newname, encoded_file, encoded_newname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2817 encoded_file = encoded_newname = Qnil; |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2818 CHECK_STRING (file); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2819 CHECK_STRING (newname); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2820 file = Fexpand_file_name (file, Qnil); |
60572
d19eab3028e2
(Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60563
diff
changeset
|
2821 |
d19eab3028e2
(Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60563
diff
changeset
|
2822 if (!NILP (Ffile_directory_p (newname))) |
d19eab3028e2
(Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60563
diff
changeset
|
2823 newname = Fexpand_file_name (Ffile_name_nondirectory (file), newname); |
d19eab3028e2
(Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60563
diff
changeset
|
2824 else |
d19eab3028e2
(Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60563
diff
changeset
|
2825 newname = Fexpand_file_name (newname, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2826 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2827 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2828 call the corresponding file handler. */ |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2829 handler = Ffind_file_name_handler (file, Qadd_name_to_file); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2830 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2831 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file, |
6370
51a014b7c656
(Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo
Karl Heuer <kwzh@gnu.org>
parents:
6367
diff
changeset
|
2832 newname, ok_if_already_exists)); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2833 |
12985
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2834 /* If the new name has special constructs in it, |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2835 call the corresponding file handler. */ |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2836 handler = Ffind_file_name_handler (newname, Qadd_name_to_file); |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2837 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2838 RETURN_UNGCPRO (call4 (handler, Qadd_name_to_file, file, |
12985
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2839 newname, ok_if_already_exists)); |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2840 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2841 encoded_file = ENCODE_FILE (file); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2842 encoded_newname = ENCODE_FILE (newname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2843 |
485 | 2844 if (NILP (ok_if_already_exists) |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
2845 || INTEGERP (ok_if_already_exists)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2846 barf_or_query_if_file_exists (encoded_newname, "make it a new name", |
21304
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2847 INTEGERP (ok_if_already_exists), 0, 0); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2848 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2849 unlink (SDATA (newname)); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2850 if (0 > link (SDATA (encoded_file), SDATA (encoded_newname))) |
230 | 2851 { |
2852 #ifdef NO_ARG_ARRAY | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2853 args[0] = file; |
230 | 2854 args[1] = newname; |
2855 report_file_error ("Adding new name", Flist (2, args)); | |
2856 #else | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2857 report_file_error ("Adding new name", Flist (2, &file)); |
230 | 2858 #endif |
2859 } | |
2860 | |
2861 UNGCPRO; | |
2862 return Qnil; | |
2863 } | |
2864 | |
2865 #ifdef S_IFLNK | |
2866 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3, | |
60682
3f5458d947ec
(Fcopy_file, Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60574
diff
changeset
|
2867 "FMake symbolic link to file: \nGMake symbolic link to file %s: \np", |
62296
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
2868 doc: /* Make a symbolic link to FILENAME, named LINKNAME. |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
2869 Both args must be strings. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2870 Signals a `file-already-exists' error if a file LINKNAME already exists |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2871 unless optional third argument OK-IF-ALREADY-EXISTS is non-nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2872 A number as third arg means request confirmation if LINKNAME already exists. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2873 This happens for interactive use with M-x. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2874 (filename, linkname, ok_if_already_exists) |
732 | 2875 Lisp_Object filename, linkname, ok_if_already_exists; |
230 | 2876 { |
2877 #ifdef NO_ARG_ARRAY | |
2878 Lisp_Object args[2]; | |
2879 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2880 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2881 Lisp_Object encoded_filename, encoded_linkname; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2882 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2883 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2884 GCPRO4 (filename, linkname, encoded_filename, encoded_linkname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2885 encoded_filename = encoded_linkname = Qnil; |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2886 CHECK_STRING (filename); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2887 CHECK_STRING (linkname); |
5245
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
2888 /* 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
|
2889 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
|
2890 we want to permit links to relative file names. */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2891 if (SREF (filename, 0) == '~') |
5245
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
2892 filename = Fexpand_file_name (filename, Qnil); |
60572
d19eab3028e2
(Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60563
diff
changeset
|
2893 |
d19eab3028e2
(Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60563
diff
changeset
|
2894 if (!NILP (Ffile_directory_p (linkname))) |
60574
f5607c3ce8fd
(Fmake_symbolic_link): Fix last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60572
diff
changeset
|
2895 linkname = Fexpand_file_name (Ffile_name_nondirectory (filename), linkname); |
60572
d19eab3028e2
(Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60563
diff
changeset
|
2896 else |
d19eab3028e2
(Frename_file, Fadd_name_to_file)
Richard M. Stallman <rms@gnu.org>
parents:
60563
diff
changeset
|
2897 linkname = Fexpand_file_name (linkname, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2898 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2899 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2900 call the corresponding file handler. */ |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2901 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2902 if (!NILP (handler)) |
6370
51a014b7c656
(Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo
Karl Heuer <kwzh@gnu.org>
parents:
6367
diff
changeset
|
2903 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename, |
51a014b7c656
(Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo
Karl Heuer <kwzh@gnu.org>
parents:
6367
diff
changeset
|
2904 linkname, ok_if_already_exists)); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2905 |
12985
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2906 /* If the new link name has special constructs in it, |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2907 call the corresponding file handler. */ |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2908 handler = Ffind_file_name_handler (linkname, Qmake_symbolic_link); |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2909 if (!NILP (handler)) |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2910 RETURN_UNGCPRO (call4 (handler, Qmake_symbolic_link, filename, |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2911 linkname, ok_if_already_exists)); |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2912 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2913 encoded_filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2914 encoded_linkname = ENCODE_FILE (linkname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2915 |
485 | 2916 if (NILP (ok_if_already_exists) |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
2917 || INTEGERP (ok_if_already_exists)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2918 barf_or_query_if_file_exists (encoded_linkname, "make it a link", |
21304
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2919 INTEGERP (ok_if_already_exists), 0, 0); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2920 if (0 > symlink (SDATA (encoded_filename), |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2921 SDATA (encoded_linkname))) |
230 | 2922 { |
2923 /* If we didn't complain already, silently delete existing file. */ | |
2924 if (errno == EEXIST) | |
2925 { | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2926 unlink (SDATA (encoded_linkname)); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2927 if (0 <= symlink (SDATA (encoded_filename), |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2928 SDATA (encoded_linkname))) |
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2929 { |
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2930 UNGCPRO; |
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2931 return Qnil; |
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2932 } |
230 | 2933 } |
2934 | |
2935 #ifdef NO_ARG_ARRAY | |
2936 args[0] = filename; | |
732 | 2937 args[1] = linkname; |
230 | 2938 report_file_error ("Making symbolic link", Flist (2, args)); |
2939 #else | |
2940 report_file_error ("Making symbolic link", Flist (2, &filename)); | |
2941 #endif | |
2942 } | |
2943 UNGCPRO; | |
2944 return Qnil; | |
2945 } | |
2946 #endif /* S_IFLNK */ | |
2947 | |
2948 #ifdef VMS | |
2949 | |
2950 DEFUN ("define-logical-name", Fdefine_logical_name, Sdefine_logical_name, | |
2951 2, 2, "sDefine logical name: \nsDefine logical name %s as: ", | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2952 doc: /* Define the job-wide logical name NAME to have the value STRING. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2953 If STRING is nil or a null string, the logical name NAME is deleted. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2954 (name, string) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2955 Lisp_Object name; |
230 | 2956 Lisp_Object string; |
2957 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2958 CHECK_STRING (name); |
485 | 2959 if (NILP (string)) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2960 delete_logical_name (SDATA (name)); |
230 | 2961 else |
2962 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2963 CHECK_STRING (string); |
230 | 2964 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2965 if (SCHARS (string) == 0) |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2966 delete_logical_name (SDATA (name)); |
230 | 2967 else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2968 define_logical_name (SDATA (name), SDATA (string)); |
230 | 2969 } |
2970 | |
2971 return string; | |
2972 } | |
2973 #endif /* VMS */ | |
2974 | |
2975 #ifdef HPUX_NET | |
2976 | |
2977 DEFUN ("sysnetunam", Fsysnetunam, Ssysnetunam, 2, 2, 0, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2978 doc: /* Open a network connection to PATH using LOGIN as the login string. */) |
230 | 2979 (path, login) |
2980 Lisp_Object path, login; | |
2981 { | |
2982 int netresult; | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2983 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2984 CHECK_STRING (path); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2985 CHECK_STRING (login); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2986 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2987 netresult = netunam (SDATA (path), SDATA (login)); |
230 | 2988 |
2989 if (netresult == -1) | |
2990 return Qnil; | |
2991 else | |
2992 return Qt; | |
2993 } | |
2994 #endif /* HPUX_NET */ | |
2995 | |
2996 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p, | |
2997 1, 1, 0, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2998 doc: /* Return t if file FILENAME specifies an absolute file name. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2999 On Unix, this is a name starting with a `/' or a `~'. */) |
230 | 3000 (filename) |
3001 Lisp_Object filename; | |
3002 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3003 CHECK_STRING (filename); |
61060
dda21af85684
(Fexpand_file_name): Use IS_DEVICE_SEP.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60682
diff
changeset
|
3004 return file_name_absolute_p (SDATA (filename)) ? Qt : Qnil; |
230 | 3005 } |
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3006 |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3007 /* Return nonzero if file FILENAME exists and can be executed. */ |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3008 |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3009 static int |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3010 check_executable (filename) |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3011 char *filename; |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3012 { |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3013 #ifdef DOS_NT |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3014 int len = strlen (filename); |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3015 char *suffix; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3016 struct stat st; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3017 if (stat (filename, &st) < 0) |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3018 return 0; |
15625
537b4cdf9eff
(Fcopy_file): Use st_ino under DJGPP v2 and later to
Karl Heuer <kwzh@gnu.org>
parents:
15617
diff
changeset
|
3019 #if defined (WINDOWSNT) || (defined (MSDOS) && __DJGPP__ > 1) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3020 return ((st.st_mode & S_IEXEC) != 0); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3021 #else |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3022 return (S_ISREG (st.st_mode) |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3023 && len >= 5 |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3024 && (stricmp ((suffix = filename + len-4), ".com") == 0 |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3025 || stricmp (suffix, ".exe") == 0 |
13541
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
3026 || stricmp (suffix, ".bat") == 0) |
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
3027 || (st.st_mode & S_IFMT) == S_IFDIR); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3028 #endif /* not WINDOWSNT */ |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3029 #else /* not DOS_NT */ |
15533
a749d414efbb
(check_executable): Use euidaccess, not eaccess.
Richard M. Stallman <rms@gnu.org>
parents:
15427
diff
changeset
|
3030 #ifdef HAVE_EUIDACCESS |
a749d414efbb
(check_executable): Use euidaccess, not eaccess.
Richard M. Stallman <rms@gnu.org>
parents:
15427
diff
changeset
|
3031 return (euidaccess (filename, 1) >= 0); |
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3032 #else |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3033 /* Access isn't quite right because it uses the real uid |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3034 and we really want to test with the effective uid. |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3035 But Unix doesn't give us a right way to do it. */ |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3036 return (access (filename, 1) >= 0); |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3037 #endif |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3038 #endif /* not DOS_NT */ |
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3039 } |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3040 |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3041 /* Return nonzero if file FILENAME exists and can be written. */ |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3042 |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3043 static int |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3044 check_writable (filename) |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3045 char *filename; |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3046 { |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3047 #ifdef MSDOS |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3048 struct stat st; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3049 if (stat (filename, &st) < 0) |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3050 return 0; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3051 return (st.st_mode & S_IWRITE || (st.st_mode & S_IFMT) == S_IFDIR); |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3052 #else /* not MSDOS */ |
15738
4ccf88623c95
(check_writable): Use euidaccess, not eaccess.
Karl Heuer <kwzh@gnu.org>
parents:
15625
diff
changeset
|
3053 #ifdef HAVE_EUIDACCESS |
4ccf88623c95
(check_writable): Use euidaccess, not eaccess.
Karl Heuer <kwzh@gnu.org>
parents:
15625
diff
changeset
|
3054 return (euidaccess (filename, 2) >= 0); |
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3055 #else |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3056 /* Access isn't quite right because it uses the real uid |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3057 and we really want to test with the effective uid. |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3058 But Unix doesn't give us a right way to do it. |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3059 Opening with O_WRONLY could work for an ordinary file, |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3060 but would lose for directories. */ |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3061 return (access (filename, 2) >= 0); |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3062 #endif |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3063 #endif /* not MSDOS */ |
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
3064 } |
230 | 3065 |
3066 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_p, 1, 1, 0, | |
62296
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
3067 doc: /* Return t if file FILENAME exists (whether or not you can read it.) |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
3068 See also `file-readable-p' and `file-attributes'. |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
3069 This returns nil for a symlink to a nonexistent file. |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
3070 Use `file-symlink-p' to test for such links. */) |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3071 (filename) |
230 | 3072 Lisp_Object filename; |
3073 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3074 Lisp_Object absname; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3075 Lisp_Object handler; |
8597 | 3076 struct stat statbuf; |
230 | 3077 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3078 CHECK_STRING (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3079 absname = Fexpand_file_name (filename, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3080 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3081 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3082 call the corresponding file handler. */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3083 handler = Ffind_file_name_handler (absname, Qfile_exists_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3084 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3085 return call2 (handler, Qfile_exists_p, absname); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3086 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3087 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3088 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3089 return (stat (SDATA (absname), &statbuf) >= 0) ? Qt : Qnil; |
230 | 3090 } |
3091 | |
3092 DEFUN ("file-executable-p", Ffile_executable_p, Sfile_executable_p, 1, 1, 0, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3093 doc: /* Return t if FILENAME can be executed by you. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3094 For a directory, this means you can access files in that directory. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3095 (filename) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3096 Lisp_Object filename; |
230 | 3097 { |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3098 Lisp_Object absname; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3099 Lisp_Object handler; |
230 | 3100 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3101 CHECK_STRING (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3102 absname = Fexpand_file_name (filename, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3103 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3104 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3105 call the corresponding file handler. */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3106 handler = Ffind_file_name_handler (absname, Qfile_executable_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3107 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3108 return call2 (handler, Qfile_executable_p, absname); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3109 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3110 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3111 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3112 return (check_executable (SDATA (absname)) ? Qt : Qnil); |
230 | 3113 } |
3114 | |
3115 DEFUN ("file-readable-p", Ffile_readable_p, Sfile_readable_p, 1, 1, 0, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3116 doc: /* Return t if file FILENAME exists and you can read it. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3117 See also `file-exists-p' and `file-attributes'. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3118 (filename) |
230 | 3119 Lisp_Object filename; |
3120 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3121 Lisp_Object absname; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3122 Lisp_Object handler; |
8597 | 3123 int desc; |
16534
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3124 int flags; |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3125 struct stat statbuf; |
230 | 3126 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3127 CHECK_STRING (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3128 absname = Fexpand_file_name (filename, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3129 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3130 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3131 call the corresponding file handler. */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3132 handler = Ffind_file_name_handler (absname, Qfile_readable_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3133 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3134 return call2 (handler, Qfile_readable_p, absname); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3135 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3136 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3137 |
38929
ffa8f910b5f1
2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
Andrew Choi <akochoi@shaw.ca>
parents:
38924
diff
changeset
|
3138 #if defined(DOS_NT) || defined(macintosh) |
ffa8f910b5f1
2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
Andrew Choi <akochoi@shaw.ca>
parents:
38924
diff
changeset
|
3139 /* Under MS-DOS, Windows, and Macintosh, open does not work for |
ffa8f910b5f1
2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
Andrew Choi <akochoi@shaw.ca>
parents:
38924
diff
changeset
|
3140 directories. */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3141 if (access (SDATA (absname), 0) == 0) |
13902
31e37f3d8ccd
(Ffile_readable_p) [MSDOS]: Use access rather than open.
Richard M. Stallman <rms@gnu.org>
parents:
13769
diff
changeset
|
3142 return Qt; |
31e37f3d8ccd
(Ffile_readable_p) [MSDOS]: Use access rather than open.
Richard M. Stallman <rms@gnu.org>
parents:
13769
diff
changeset
|
3143 return Qnil; |
38929
ffa8f910b5f1
2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
Andrew Choi <akochoi@shaw.ca>
parents:
38924
diff
changeset
|
3144 #else /* not DOS_NT and not macintosh */ |
16534
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3145 flags = O_RDONLY; |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3146 #if defined (S_ISFIFO) && defined (O_NONBLOCK) |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3147 /* Opening a fifo without O_NONBLOCK can wait. |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3148 We don't want to wait. But we don't want to mess wth O_NONBLOCK |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3149 except in the case of a fifo, on a system which handles it. */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3150 desc = stat (SDATA (absname), &statbuf); |
16534
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3151 if (desc < 0) |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3152 return Qnil; |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3153 if (S_ISFIFO (statbuf.st_mode)) |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3154 flags |= O_NONBLOCK; |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3155 #endif |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3156 desc = emacs_open (SDATA (absname), flags, 0); |
8597 | 3157 if (desc < 0) |
3158 return Qnil; | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3159 emacs_close (desc); |
8597 | 3160 return Qt; |
38929
ffa8f910b5f1
2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
Andrew Choi <akochoi@shaw.ca>
parents:
38924
diff
changeset
|
3161 #endif /* not DOS_NT and not macintosh */ |
230 | 3162 } |
3163 | |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3164 /* Having this before file-symlink-p mysteriously caused it to be forgotten |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3165 on the RT/PC. */ |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3166 DEFUN ("file-writable-p", Ffile_writable_p, Sfile_writable_p, 1, 1, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3167 doc: /* Return t if file FILENAME can be written or created by you. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3168 (filename) |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3169 Lisp_Object filename; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3170 { |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3171 Lisp_Object absname, dir, encoded; |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3172 Lisp_Object handler; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3173 struct stat statbuf; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3174 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3175 CHECK_STRING (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3176 absname = Fexpand_file_name (filename, Qnil); |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3177 |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3178 /* If the file name has special constructs in it, |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3179 call the corresponding file handler. */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3180 handler = Ffind_file_name_handler (absname, Qfile_writable_p); |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3181 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3182 return call2 (handler, Qfile_writable_p, absname); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3183 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3184 encoded = ENCODE_FILE (absname); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3185 if (stat (SDATA (encoded), &statbuf) >= 0) |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3186 return (check_writable (SDATA (encoded)) |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3187 ? Qt : Qnil); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3188 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3189 dir = Ffile_name_directory (absname); |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3190 #ifdef VMS |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3191 if (!NILP (dir)) |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3192 dir = Fdirectory_file_name (dir); |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3193 #endif /* VMS */ |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3194 #ifdef MSDOS |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3195 if (!NILP (dir)) |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3196 dir = Fdirectory_file_name (dir); |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3197 #endif /* MSDOS */ |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3198 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3199 dir = ENCODE_FILE (dir); |
28673
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3200 #ifdef WINDOWSNT |
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3201 /* The read-only attribute of the parent directory doesn't affect |
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3202 whether a file or directory can be created within it. Some day we |
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3203 should check ACLs though, which do affect this. */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3204 if (stat (SDATA (dir), &statbuf) < 0) |
28673
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3205 return Qnil; |
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3206 return (statbuf.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil; |
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3207 #else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3208 return (check_writable (!NILP (dir) ? (char *) SDATA (dir) : "") |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3209 ? Qt : Qnil); |
28673
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3210 #endif |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3211 } |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3212 |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3213 DEFUN ("access-file", Faccess_file, Saccess_file, 2, 2, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3214 doc: /* Access file FILENAME, and get an error if that does not work. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3215 The second argument STRING is used in the error message. |
62188
a89a98d0bb8c
(Fexpand_file_name, Frename_file, Fadd_name_to_file, Fmake_symbolic_link,
Juanma Barranquero <lekktu@gmail.com>
parents:
61942
diff
changeset
|
3216 If there is no error, returns nil. */) |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3217 (filename, string) |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3218 Lisp_Object filename, string; |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3219 { |
40354
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3220 Lisp_Object handler, encoded_filename, absname; |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3221 int fd; |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3222 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3223 CHECK_STRING (filename); |
40354
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3224 absname = Fexpand_file_name (filename, Qnil); |
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3225 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3226 CHECK_STRING (string); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3227 |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3228 /* If the file name has special constructs in it, |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3229 call the corresponding file handler. */ |
40354
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3230 handler = Ffind_file_name_handler (absname, Qaccess_file); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3231 if (!NILP (handler)) |
40354
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3232 return call3 (handler, Qaccess_file, absname, string); |
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3233 |
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3234 encoded_filename = ENCODE_FILE (absname); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3235 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3236 fd = emacs_open (SDATA (encoded_filename), O_RDONLY, 0); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3237 if (fd < 0) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3238 report_file_error (SDATA (string), Fcons (filename, Qnil)); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3239 emacs_close (fd); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3240 |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3241 return Qnil; |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3242 } |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3243 |
230 | 3244 DEFUN ("file-symlink-p", Ffile_symlink_p, Sfile_symlink_p, 1, 1, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3245 doc: /* Return non-nil if file FILENAME is the name of a symbolic link. |
50500
8fcca6e6a7a1
(Ffile_symlink_p): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
50491
diff
changeset
|
3246 The value is the link target, as a string. |
62296
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
3247 Otherwise it returns nil. |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
3248 |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
3249 This function returns t when given the name of a symlink that |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
3250 points to a nonexistent file. */) |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3251 (filename) |
230 | 3252 Lisp_Object filename; |
3253 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3254 Lisp_Object handler; |
230 | 3255 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3256 CHECK_STRING (filename); |
230 | 3257 filename = Fexpand_file_name (filename, Qnil); |
3258 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3259 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3260 call the corresponding file handler. */ |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
3261 handler = Ffind_file_name_handler (filename, Qfile_symlink_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3262 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3263 return call2 (handler, Qfile_symlink_p, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3264 |
50886
85431fbc6ac5
(Ffile_symlink_p): Let handlers handle symlinks even
Jason Rumney <jasonr@gnu.org>
parents:
50829
diff
changeset
|
3265 #ifdef S_IFLNK |
85431fbc6ac5
(Ffile_symlink_p): Let handlers handle symlinks even
Jason Rumney <jasonr@gnu.org>
parents:
50829
diff
changeset
|
3266 { |
85431fbc6ac5
(Ffile_symlink_p): Let handlers handle symlinks even
Jason Rumney <jasonr@gnu.org>
parents:
50829
diff
changeset
|
3267 char *buf; |
85431fbc6ac5
(Ffile_symlink_p): Let handlers handle symlinks even
Jason Rumney <jasonr@gnu.org>
parents:
50829
diff
changeset
|
3268 int bufsize; |
85431fbc6ac5
(Ffile_symlink_p): Let handlers handle symlinks even
Jason Rumney <jasonr@gnu.org>
parents:
50829
diff
changeset
|
3269 int valsize; |
85431fbc6ac5
(Ffile_symlink_p): Let handlers handle symlinks even
Jason Rumney <jasonr@gnu.org>
parents:
50829
diff
changeset
|
3270 Lisp_Object val; |
85431fbc6ac5
(Ffile_symlink_p): Let handlers handle symlinks even
Jason Rumney <jasonr@gnu.org>
parents:
50829
diff
changeset
|
3271 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3272 filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3273 |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3274 bufsize = 50; |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3275 buf = NULL; |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3276 do |
230 | 3277 { |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3278 bufsize *= 2; |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3279 buf = (char *) xrealloc (buf, bufsize); |
230 | 3280 bzero (buf, bufsize); |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
3281 |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3282 errno = 0; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3283 valsize = readlink (SDATA (filename), buf, bufsize); |
39291
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3284 if (valsize == -1) |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3285 { |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3286 #ifdef ERANGE |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3287 /* HP-UX reports ERANGE if buffer is too small. */ |
39291
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3288 if (errno == ERANGE) |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3289 valsize = bufsize; |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3290 else |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3291 #endif |
39291
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3292 { |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3293 xfree (buf); |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3294 return Qnil; |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3295 } |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3296 } |
230 | 3297 } |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3298 while (valsize >= bufsize); |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
3299 |
230 | 3300 val = make_string (buf, valsize); |
27870
a36c3e02f43b
(Ffile_symlink_p): If result starts with a `/'
Gerd Moellmann <gerd@gnu.org>
parents:
27789
diff
changeset
|
3301 if (buf[0] == '/' && index (buf, ':')) |
a36c3e02f43b
(Ffile_symlink_p): If result starts with a `/'
Gerd Moellmann <gerd@gnu.org>
parents:
27789
diff
changeset
|
3302 val = concat2 (build_string ("/:"), val); |
2439
b6c62e4abf59
Put interrupt input blocking in a separate file from xterm.h.
Jim Blandy <jimb@redhat.com>
parents:
2435
diff
changeset
|
3303 xfree (buf); |
21048
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
3304 val = DECODE_FILE (val); |
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
3305 return val; |
50886
85431fbc6ac5
(Ffile_symlink_p): Let handlers handle symlinks even
Jason Rumney <jasonr@gnu.org>
parents:
50829
diff
changeset
|
3306 } |
230 | 3307 #else /* not S_IFLNK */ |
3308 return Qnil; | |
3309 #endif /* not S_IFLNK */ | |
3310 } | |
3311 | |
3312 DEFUN ("file-directory-p", Ffile_directory_p, Sfile_directory_p, 1, 1, 0, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3313 doc: /* Return t if FILENAME names an existing directory. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3314 Symbolic links to directories count as directories. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3315 See `file-symlink-p' to distinguish symlinks. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3316 (filename) |
230 | 3317 Lisp_Object filename; |
3318 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3319 register Lisp_Object absname; |
230 | 3320 struct stat st; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3321 Lisp_Object handler; |
230 | 3322 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3323 absname = expand_and_dir_to_file (filename, current_buffer->directory); |
230 | 3324 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3325 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3326 call the corresponding file handler. */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3327 handler = Ffind_file_name_handler (absname, Qfile_directory_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3328 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3329 return call2 (handler, Qfile_directory_p, absname); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3330 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3331 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3332 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3333 if (stat (SDATA (absname), &st) < 0) |
230 | 3334 return Qnil; |
3335 return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil; | |
3336 } | |
3337 | |
536 | 3338 DEFUN ("file-accessible-directory-p", Ffile_accessible_directory_p, Sfile_accessible_directory_p, 1, 1, 0, |
41032
ef8a5e50dbe8
(Ffile_accessible_directory_p): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
3339 doc: /* Return t if file FILENAME names a directory you can open. |
ef8a5e50dbe8
(Ffile_accessible_directory_p): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
3340 For the value to be t, FILENAME must specify the name of a directory as a file, |
ef8a5e50dbe8
(Ffile_accessible_directory_p): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
40656
diff
changeset
|
3341 and the directory must allow you to open files in it. In order to use a |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3342 directory as a buffer's current directory, this predicate must return true. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3343 A directory name spec may be given instead; then the value is t |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3344 if the directory so specified exists and really is a readable and |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3345 searchable directory. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3346 (filename) |
536 | 3347 Lisp_Object filename; |
3348 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3349 Lisp_Object handler; |
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
3350 int tem; |
8703
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3351 struct gcpro gcpro1; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3352 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3353 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3354 call the corresponding file handler. */ |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
3355 handler = Ffind_file_name_handler (filename, Qfile_accessible_directory_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3356 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3357 return call2 (handler, Qfile_accessible_directory_p, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3358 |
8703
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3359 GCPRO1 (filename); |
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
3360 tem = (NILP (Ffile_directory_p (filename)) |
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
3361 || NILP (Ffile_executable_p (filename))); |
8703
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3362 UNGCPRO; |
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
3363 return tem ? Qnil : Qt; |
536 | 3364 } |
3365 | |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3366 DEFUN ("file-regular-p", Ffile_regular_p, Sfile_regular_p, 1, 1, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3367 doc: /* Return t if file FILENAME is the name of a regular file. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3368 This is the sort of file that holds an ordinary stream of data bytes. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3369 (filename) |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3370 Lisp_Object filename; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3371 { |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3372 register Lisp_Object absname; |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3373 struct stat st; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3374 Lisp_Object handler; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3375 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3376 absname = expand_and_dir_to_file (filename, current_buffer->directory); |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3377 |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3378 /* If the file name has special constructs in it, |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3379 call the corresponding file handler. */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3380 handler = Ffind_file_name_handler (absname, Qfile_regular_p); |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3381 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3382 return call2 (handler, Qfile_regular_p, absname); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3383 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3384 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3385 |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3386 #ifdef WINDOWSNT |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3387 { |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3388 int result; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3389 Lisp_Object tem = Vw32_get_true_file_attributes; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3390 |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3391 /* Tell stat to use expensive method to get accurate info. */ |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3392 Vw32_get_true_file_attributes = Qt; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3393 result = stat (SDATA (absname), &st); |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3394 Vw32_get_true_file_attributes = tem; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3395 |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3396 if (result < 0) |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3397 return Qnil; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3398 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3399 } |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3400 #else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3401 if (stat (SDATA (absname), &st) < 0) |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3402 return Qnil; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3403 return (st.st_mode & S_IFMT) == S_IFREG ? Qt : Qnil; |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3404 #endif |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3405 } |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3406 |
230 | 3407 DEFUN ("file-modes", Ffile_modes, Sfile_modes, 1, 1, 0, |
57955 | 3408 doc: /* Return mode bits of file named FILENAME, as an integer. |
3409 Return nil, if file does not exist or is not accessible. */) | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3410 (filename) |
230 | 3411 Lisp_Object filename; |
3412 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3413 Lisp_Object absname; |
230 | 3414 struct stat st; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3415 Lisp_Object handler; |
230 | 3416 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3417 absname = expand_and_dir_to_file (filename, current_buffer->directory); |
230 | 3418 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3419 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3420 call the corresponding file handler. */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3421 handler = Ffind_file_name_handler (absname, Qfile_modes); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3422 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3423 return call2 (handler, Qfile_modes, absname); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3424 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3425 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3426 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3427 if (stat (SDATA (absname), &st) < 0) |
230 | 3428 return Qnil; |
15625
537b4cdf9eff
(Fcopy_file): Use st_ino under DJGPP v2 and later to
Karl Heuer <kwzh@gnu.org>
parents:
15617
diff
changeset
|
3429 #if defined (MSDOS) && __DJGPP__ < 2 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3430 if (check_executable (SDATA (absname))) |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3431 st.st_mode |= S_IEXEC; |
15625
537b4cdf9eff
(Fcopy_file): Use st_ino under DJGPP v2 and later to
Karl Heuer <kwzh@gnu.org>
parents:
15617
diff
changeset
|
3432 #endif /* MSDOS && __DJGPP__ < 2 */ |
6383
62db5566c287
(Ffile_modes) [MSDOS]: set exec-bit based on file suffix.
Karl Heuer <kwzh@gnu.org>
parents:
6370
diff
changeset
|
3433 |
230 | 3434 return make_number (st.st_mode & 07777); |
3435 } | |
3436 | |
3437 DEFUN ("set-file-modes", Fset_file_modes, Sset_file_modes, 2, 2, 0, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3438 doc: /* Set mode bits of file named FILENAME to MODE (an integer). |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3439 Only the 12 low bits of MODE are used. */) |
230 | 3440 (filename, mode) |
3441 Lisp_Object filename, mode; | |
3442 { | |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3443 Lisp_Object absname, encoded_absname; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3444 Lisp_Object handler; |
230 | 3445 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3446 absname = Fexpand_file_name (filename, current_buffer->directory); |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3447 CHECK_NUMBER (mode); |
230 | 3448 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3449 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3450 call the corresponding file handler. */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3451 handler = Ffind_file_name_handler (absname, Qset_file_modes); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3452 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3453 return call3 (handler, Qset_file_modes, absname, mode); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3454 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3455 encoded_absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3456 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3457 if (chmod (SDATA (encoded_absname), XINT (mode)) < 0) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3458 report_file_error ("Doing chmod", Fcons (absname, Qnil)); |
230 | 3459 |
3460 return Qnil; | |
3461 } | |
3462 | |
1763
65e858c07a8b
(Fset_default_file_modes, Fdefault_file_modes): Renamed from .._mode.
Richard M. Stallman <rms@gnu.org>
parents:
1762
diff
changeset
|
3463 DEFUN ("set-default-file-modes", Fset_default_file_modes, Sset_default_file_modes, 1, 1, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3464 doc: /* Set the file permission bits for newly created files. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3465 The argument MODE should be an integer; only the low 9 bits are used. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3466 This setting is inherited by subprocesses. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3467 (mode) |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3468 Lisp_Object mode; |
550 | 3469 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3470 CHECK_NUMBER (mode); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3471 |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3472 umask ((~ XINT (mode)) & 0777); |
550 | 3473 |
3474 return Qnil; | |
3475 } | |
3476 | |
1763
65e858c07a8b
(Fset_default_file_modes, Fdefault_file_modes): Renamed from .._mode.
Richard M. Stallman <rms@gnu.org>
parents:
1762
diff
changeset
|
3477 DEFUN ("default-file-modes", Fdefault_file_modes, Sdefault_file_modes, 0, 0, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3478 doc: /* Return the default file protection for created files. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3479 The value is an integer. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3480 () |
550 | 3481 { |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3482 int realmask; |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3483 Lisp_Object value; |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3484 |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3485 realmask = umask (0); |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3486 umask (realmask); |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3487 |
9266
811ad893828b
(Fdefault_file_modes, Finsert_file_contents, Fdo_auto_save): Use new accessor
Karl Heuer <kwzh@gnu.org>
parents:
9241
diff
changeset
|
3488 XSETINT (value, (~ realmask) & 0777); |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3489 return value; |
550 | 3490 } |
55194
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3491 |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3492 extern int lisp_time_argument P_ ((Lisp_Object, time_t *, int *)); |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3493 |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3494 DEFUN ("set-file-times", Fset_file_times, Sset_file_times, 1, 2, 0, |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3495 doc: /* Set times of file FILENAME to TIME. |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3496 Set both access and modification times. |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3497 Return t on success, else nil. |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3498 Use the current time if TIME is nil. TIME is in the format of |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3499 `current-time'. */) |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3500 (filename, time) |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3501 Lisp_Object filename, time; |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3502 { |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3503 Lisp_Object absname, encoded_absname; |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3504 Lisp_Object handler; |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3505 time_t sec; |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3506 int usec; |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3507 |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3508 if (! lisp_time_argument (time, &sec, &usec)) |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3509 error ("Invalid time specification"); |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3510 |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3511 absname = Fexpand_file_name (filename, current_buffer->directory); |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3512 |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3513 /* If the file name has special constructs in it, |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3514 call the corresponding file handler. */ |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3515 handler = Ffind_file_name_handler (absname, Qset_file_times); |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3516 if (!NILP (handler)) |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3517 return call3 (handler, Qset_file_times, absname, time); |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3518 |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3519 encoded_absname = ENCODE_FILE (absname); |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3520 |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3521 { |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3522 EMACS_TIME t; |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3523 |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3524 EMACS_SET_SECS (t, sec); |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3525 EMACS_SET_USECS (t, usec); |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3526 |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3527 if (set_file_times (SDATA (encoded_absname), t, t)) |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3528 { |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3529 #ifdef DOS_NT |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3530 struct stat st; |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3531 |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3532 /* Setting times on a directory always fails. */ |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3533 if (stat (SDATA (encoded_absname), &st) == 0 |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3534 && (st.st_mode & S_IFMT) == S_IFDIR) |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3535 return Qnil; |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3536 #endif |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3537 report_file_error ("Setting file times", Fcons (absname, Qnil)); |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3538 return Qnil; |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3539 } |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3540 } |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3541 |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3542 return Qt; |
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
3543 } |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3544 |
27925
8ef4ce88fa64
[__NetBSD__]: Define `unix'.
Gerd Moellmann <gerd@gnu.org>
parents:
27870
diff
changeset
|
3545 #ifdef __NetBSD__ |
8ef4ce88fa64
[__NetBSD__]: Define `unix'.
Gerd Moellmann <gerd@gnu.org>
parents:
27870
diff
changeset
|
3546 #define unix 42 |
8ef4ce88fa64
[__NetBSD__]: Define `unix'.
Gerd Moellmann <gerd@gnu.org>
parents:
27870
diff
changeset
|
3547 #endif |
8ef4ce88fa64
[__NetBSD__]: Define `unix'.
Gerd Moellmann <gerd@gnu.org>
parents:
27870
diff
changeset
|
3548 |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3549 #ifdef unix |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3550 DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "", |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3551 doc: /* Tell Unix to finish all pending disk updates. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3552 () |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3553 { |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3554 sync (); |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3555 return Qnil; |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3556 } |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3557 |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3558 #endif /* unix */ |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3559 |
230 | 3560 DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3561 doc: /* Return t if file FILE1 is newer than file FILE2. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3562 If FILE1 does not exist, the answer is nil; |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3563 otherwise, if FILE2 does not exist, the answer is t. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3564 (file1, file2) |
230 | 3565 Lisp_Object file1, file2; |
3566 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3567 Lisp_Object absname1, absname2; |
230 | 3568 struct stat st; |
3569 int mtime1; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3570 Lisp_Object handler; |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3571 struct gcpro gcpro1, gcpro2; |
230 | 3572 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3573 CHECK_STRING (file1); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3574 CHECK_STRING (file2); |
230 | 3575 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3576 absname1 = Qnil; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3577 GCPRO2 (absname1, file2); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3578 absname1 = expand_and_dir_to_file (file1, current_buffer->directory); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3579 absname2 = 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
|
3580 UNGCPRO; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3581 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3582 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3583 call the corresponding file handler. */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3584 handler = Ffind_file_name_handler (absname1, Qfile_newer_than_file_p); |
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
3585 if (NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3586 handler = Ffind_file_name_handler (absname2, Qfile_newer_than_file_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3587 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3588 return call3 (handler, Qfile_newer_than_file_p, absname1, absname2); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3589 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3590 GCPRO2 (absname1, absname2); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3591 absname1 = ENCODE_FILE (absname1); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3592 absname2 = ENCODE_FILE (absname2); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3593 UNGCPRO; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3594 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3595 if (stat (SDATA (absname1), &st) < 0) |
230 | 3596 return Qnil; |
3597 | |
3598 mtime1 = st.st_mtime; | |
3599 | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3600 if (stat (SDATA (absname2), &st) < 0) |
230 | 3601 return Qt; |
3602 | |
3603 return (mtime1 > st.st_mtime) ? Qt : Qnil; | |
3604 } | |
3605 | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3606 #ifdef DOS_NT |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3607 Lisp_Object Qfind_buffer_file_type; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3608 #endif /* DOS_NT */ |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
3609 |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3610 #ifndef READ_BUF_SIZE |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3611 #define READ_BUF_SIZE (64 << 10) |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3612 #endif |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3613 |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3614 extern void adjust_markers_for_delete P_ ((int, int, int, int)); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3615 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3616 /* This function is called after Lisp functions to decide a coding |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3617 system are called, or when they cause an error. Before they are |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3618 called, the current buffer is set unibyte and it contains only a |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3619 newly inserted text (thus the buffer was empty before the |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3620 insertion). |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3621 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3622 The functions may set markers, overlays, text properties, or even |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3623 alter the buffer contents, change the current buffer. |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3624 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3625 Here, we reset all those changes by: |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3626 o set back the current buffer. |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3627 o move all markers and overlays to BEG. |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3628 o remove all text properties. |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3629 o set back the buffer multibyteness. */ |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3630 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3631 static Lisp_Object |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3632 decide_coding_unwind (unwind_data) |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3633 Lisp_Object unwind_data; |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3634 { |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3635 Lisp_Object multibyte, undo_list, buffer; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3636 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3637 multibyte = XCAR (unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3638 unwind_data = XCDR (unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3639 undo_list = XCAR (unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3640 buffer = XCDR (unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3641 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3642 if (current_buffer != XBUFFER (buffer)) |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3643 set_buffer_internal (XBUFFER (buffer)); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3644 adjust_markers_for_delete (BEG, BEG_BYTE, Z, Z_BYTE); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3645 adjust_overlays_for_delete (BEG, Z - BEG); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3646 BUF_INTERVALS (current_buffer) = 0; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3647 TEMP_SET_PT_BOTH (BEG, BEG_BYTE); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3648 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3649 /* Now we are safe to change the buffer's multibyteness directly. */ |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3650 current_buffer->enable_multibyte_characters = multibyte; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3651 current_buffer->undo_list = undo_list; |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3652 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3653 return Qnil; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3654 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3655 |
38364
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3656 |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3657 /* Used to pass values from insert-file-contents to read_non_regular. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3658 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3659 static int non_regular_fd; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3660 static int non_regular_inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3661 static int non_regular_nbytes; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3662 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3663 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3664 /* Read from a non-regular file. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3665 Read non_regular_trytry bytes max from non_regular_fd. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3666 Non_regular_inserted specifies where to put the read bytes. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3667 Value is the number of bytes read. */ |
38364
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3668 |
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3669 static Lisp_Object |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3670 read_non_regular () |
38364
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3671 { |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3672 int nbytes; |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
3673 |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3674 immediate_quit = 1; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3675 QUIT; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3676 nbytes = emacs_read (non_regular_fd, |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
3677 BEG_ADDR + PT_BYTE - BEG_BYTE + non_regular_inserted, |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3678 non_regular_nbytes); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3679 immediate_quit = 0; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3680 return make_number (nbytes); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3681 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3682 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3683 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3684 /* Condition-case handler used when reading from non-regular files |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3685 in insert-file-contents. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3686 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3687 static Lisp_Object |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3688 read_non_regular_quit () |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3689 { |
38364
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3690 return Qnil; |
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3691 } |
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3692 |
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3693 |
230 | 3694 DEFUN ("insert-file-contents", Finsert_file_contents, Sinsert_file_contents, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3695 1, 5, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3696 doc: /* Insert contents of file FILENAME after point. |
50491
15f94db27199
(Finsert_file_contents): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
50340
diff
changeset
|
3697 Returns list of absolute file name and number of characters inserted. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3698 If second argument VISIT is non-nil, the buffer's visited filename |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3699 and last save file modtime are set, and it is marked unmodified. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3700 If visiting and the file does not exist, visiting is completed |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3701 before the error is signaled. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3702 The optional third and fourth arguments BEG and END |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3703 specify what portion of the file to insert. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3704 These arguments count bytes in the file, not characters in the buffer. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3705 If VISIT is non-nil, BEG and END must be nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3706 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3707 If optional fifth argument REPLACE is non-nil, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3708 it means replace the current buffer contents (in the accessible portion) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3709 with the file contents. This is better than simply deleting and inserting |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3710 the whole thing because (1) it preserves some marker positions |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3711 and (2) it puts less data in the undo list. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3712 When REPLACE is non-nil, the value is the number of characters actually read, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3713 which is often less than the number of characters to be read. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3714 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3715 This does code conversion according to the value of |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3716 `coding-system-for-read' or `file-coding-system-alist', |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3717 and sets the variable `last-coding-system-used' to the coding system |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3718 actually used. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3719 (filename, visit, beg, end, replace) |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3720 Lisp_Object filename, visit, beg, end, replace; |
230 | 3721 { |
3722 struct stat st; | |
3723 register int fd; | |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
3724 int inserted = 0; |
230 | 3725 register int how_much; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3726 register int unprocessed; |
46285
3f111801efb4
Rename BINDING_STACK_SIZE to SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46020
diff
changeset
|
3727 int count = SPECPDL_INDEX (); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3728 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3729 Lisp_Object handler, val, insval, orig_filename; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3730 Lisp_Object p; |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31775
diff
changeset
|
3731 int total = 0; |
9921
62392796a691
(Finsert_file_contents): Init not_regular at the beginning.
Richard M. Stallman <rms@gnu.org>
parents:
9915
diff
changeset
|
3732 int not_regular = 0; |
22053
8697087ea026
(Finsert_file_contents): Check that a -*- coding: -*- spec
Richard M. Stallman <rms@gnu.org>
parents:
22042
diff
changeset
|
3733 unsigned char read_buf[READ_BUF_SIZE]; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3734 struct coding_system coding; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
3735 unsigned char buffer[1 << 14]; |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3736 int replace_handled = 0; |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
3737 int set_coding_system = 0; |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3738 int coding_system_decided = 0; |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3739 int read_quit = 0; |
62296
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
3740 int old_Vdeactivate_mark = Vdeactivate_mark; |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
3741 int we_locked_file = 0; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3742 |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3743 if (current_buffer->base_buffer && ! NILP (visit)) |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3744 error ("Cannot do file visiting in an indirect buffer"); |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3745 |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3746 if (!NILP (current_buffer->read_only)) |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3747 Fbarf_if_buffer_read_only (); |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3748 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3749 val = Qnil; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3750 p = Qnil; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3751 orig_filename = Qnil; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3752 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3753 GCPRO4 (filename, val, p, orig_filename); |
230 | 3754 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3755 CHECK_STRING (filename); |
230 | 3756 filename = Fexpand_file_name (filename, Qnil); |
3757 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3758 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3759 call the corresponding file handler. */ |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
3760 handler = Ffind_file_name_handler (filename, Qinsert_file_contents); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3761 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3762 { |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3763 val = call6 (handler, Qinsert_file_contents, filename, |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3764 visit, beg, end, replace); |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
3765 if (CONSP (val) && CONSP (XCDR (val))) |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
3766 inserted = XINT (XCAR (XCDR (val))); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3767 goto handled; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3768 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3769 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3770 orig_filename = filename; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3771 filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3772 |
230 | 3773 fd = -1; |
3774 | |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3775 #ifdef WINDOWSNT |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3776 { |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3777 Lisp_Object tem = Vw32_get_true_file_attributes; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3778 |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3779 /* Tell stat to use expensive method to get accurate info. */ |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3780 Vw32_get_true_file_attributes = Qt; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3781 total = stat (SDATA (filename), &st); |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3782 Vw32_get_true_file_attributes = tem; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3783 } |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3784 if (total < 0) |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3785 #else |
230 | 3786 #ifndef APOLLO |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3787 if (stat (SDATA (filename), &st) < 0) |
230 | 3788 #else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3789 if ((fd = emacs_open (SDATA (filename), O_RDONLY, 0)) < 0 |
230 | 3790 || fstat (fd, &st) < 0) |
3791 #endif /* not APOLLO */ | |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3792 #endif /* WINDOWSNT */ |
230 | 3793 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3794 if (fd >= 0) emacs_close (fd); |
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3795 badopen: |
485 | 3796 if (NILP (visit)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3797 report_file_error ("Opening input file", Fcons (orig_filename, Qnil)); |
230 | 3798 st.st_mtime = -1; |
3799 how_much = 0; | |
19925
31b8e0e60e2d
(Finsert_file_contents): If a coding system is
Richard M. Stallman <rms@gnu.org>
parents:
19861
diff
changeset
|
3800 if (!NILP (Vcoding_system_for_read)) |
26587
8b07051df40d
(Finsert_file_contents): Set buffer-file-coding-system
Kenichi Handa <handa@m17n.org>
parents:
26526
diff
changeset
|
3801 Fset (Qbuffer_file_coding_system, Vcoding_system_for_read); |
230 | 3802 goto notfound; |
3803 } | |
3804 | |
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3805 #ifdef S_IFREG |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3806 /* This code will need to be changed in order to work on named |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3807 pipes, and it's probably just not worth it. So we should at |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3808 least signal an error. */ |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3809 if (!S_ISREG (st.st_mode)) |
9915
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
3810 { |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3811 not_regular = 1; |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3812 |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3813 if (! NILP (visit)) |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3814 goto notfound; |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3815 |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3816 if (! NILP (replace) || ! NILP (beg) || ! NILP (end)) |
9915
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
3817 Fsignal (Qfile_error, |
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
3818 Fcons (build_string ("not a regular file"), |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3819 Fcons (orig_filename, Qnil))); |
9915
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
3820 } |
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3821 #endif |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3822 |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3823 if (fd < 0) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3824 if ((fd = emacs_open (SDATA (filename), O_RDONLY, 0)) < 0) |
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3825 goto badopen; |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3826 |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3827 /* Replacement should preserve point as it preserves markers. */ |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3828 if (!NILP (replace)) |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3829 record_unwind_protect (restore_point_unwind, Fpoint_marker ()); |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3830 |
230 | 3831 record_unwind_protect (close_file_unwind, make_number (fd)); |
3832 | |
3833 /* Supposedly happens on VMS. */ | |
48562
b3e8e8c5face
(Finsert_file_contents): Give a more appropriate error
Jason Rumney <jasonr@gnu.org>
parents:
48423
diff
changeset
|
3834 /* Can happen on any platform that uses long as type of off_t, but allows |
b3e8e8c5face
(Finsert_file_contents): Give a more appropriate error
Jason Rumney <jasonr@gnu.org>
parents:
48423
diff
changeset
|
3835 file sizes to exceed 2Gb. VMS is no longer officially supported, so |
b3e8e8c5face
(Finsert_file_contents): Give a more appropriate error
Jason Rumney <jasonr@gnu.org>
parents:
48423
diff
changeset
|
3836 give a message suitable for the latter case. */ |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3837 if (! not_regular && st.st_size < 0) |
48562
b3e8e8c5face
(Finsert_file_contents): Give a more appropriate error
Jason Rumney <jasonr@gnu.org>
parents:
48423
diff
changeset
|
3838 error ("Maximum buffer size exceeded"); |
752 | 3839 |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
3840 /* Prevent redisplay optimizations. */ |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
3841 current_buffer->clip_changed = 1; |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
3842 |
27134
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3843 if (!NILP (visit)) |
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3844 { |
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3845 if (!NILP (beg) || !NILP (end)) |
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3846 error ("Attempt to visit less than an entire file"); |
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3847 if (BEG < Z && NILP (replace)) |
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3848 error ("Cannot do file visiting in a non-empty buffer"); |
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3849 } |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3850 |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3851 if (!NILP (beg)) |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3852 CHECK_NUMBER (beg); |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3853 else |
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
3854 XSETFASTINT (beg, 0); |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3855 |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3856 if (!NILP (end)) |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3857 CHECK_NUMBER (end); |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3858 else |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3859 { |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3860 if (! not_regular) |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3861 { |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3862 XSETINT (end, st.st_size); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3863 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3864 /* Arithmetic overflow can occur if an Emacs integer cannot |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3865 represent the file size, or if the calculations below |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3866 overflow. The calculations below double the file size |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3867 twice, so check that it can be multiplied by 4 safely. */ |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3868 if (XINT (end) != st.st_size |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3869 || ((int) st.st_size * 4) / 4 != st.st_size) |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3870 error ("Maximum buffer size exceeded"); |
37390
2db1b1bb1d18
(Finsert_file_contents): If the file size returned from
Gerd Moellmann <gerd@gnu.org>
parents:
37292
diff
changeset
|
3871 |
2db1b1bb1d18
(Finsert_file_contents): If the file size returned from
Gerd Moellmann <gerd@gnu.org>
parents:
37292
diff
changeset
|
3872 /* The file size returned from stat may be zero, but data |
2db1b1bb1d18
(Finsert_file_contents): If the file size returned from
Gerd Moellmann <gerd@gnu.org>
parents:
37292
diff
changeset
|
3873 may be readable nonetheless, for example when this is a |
2db1b1bb1d18
(Finsert_file_contents): If the file size returned from
Gerd Moellmann <gerd@gnu.org>
parents:
37292
diff
changeset
|
3874 file in the /proc filesystem. */ |
2db1b1bb1d18
(Finsert_file_contents): If the file size returned from
Gerd Moellmann <gerd@gnu.org>
parents:
37292
diff
changeset
|
3875 if (st.st_size == 0) |
2db1b1bb1d18
(Finsert_file_contents): If the file size returned from
Gerd Moellmann <gerd@gnu.org>
parents:
37292
diff
changeset
|
3876 XSETINT (end, READ_BUF_SIZE); |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3877 } |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3878 } |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3879 |
51357
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
3880 if (EQ (Vcoding_system_for_read, Qauto_save_coding)) |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
3881 { |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
3882 /* We use emacs-mule for auto saving... */ |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
3883 setup_coding_system (Qemacs_mule, &coding); |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
3884 /* ... but with the special flag to indicate to read in a |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
3885 multibyte sequence for eight-bit-control char as is. */ |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
3886 coding.flags = 1; |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
3887 coding.src_multibyte = 0; |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
3888 coding.dst_multibyte |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
3889 = !NILP (current_buffer->enable_multibyte_characters); |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
3890 coding.eol_type = CODING_EOL_LF; |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
3891 coding_system_decided = 1; |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
3892 } |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
3893 else if (BEG < Z) |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3894 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3895 /* Decide the coding system to use for reading the file now |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3896 because we can't use an optimized method for handling |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3897 `coding:' tag if the current buffer is not empty. */ |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3898 Lisp_Object val; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3899 val = Qnil; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3900 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3901 if (!NILP (Vcoding_system_for_read)) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3902 val = Vcoding_system_for_read; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3903 else |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3904 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3905 /* Don't try looking inside a file for a coding system |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3906 specification if it is not seekable. */ |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3907 if (! not_regular && ! NILP (Vset_auto_coding_function)) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3908 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3909 /* Find a coding system specified in the heading two |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3910 lines or in the tailing several lines of the file. |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3911 We assume that the 1K-byte and 3K-byte for heading |
24651 | 3912 and tailing respectively are sufficient for this |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3913 purpose. */ |
27613 | 3914 int nread; |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3915 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3916 if (st.st_size <= (1024 * 4)) |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3917 nread = emacs_read (fd, read_buf, 1024 * 4); |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3918 else |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3919 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3920 nread = emacs_read (fd, read_buf, 1024); |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3921 if (nread >= 0) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3922 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3923 if (lseek (fd, st.st_size - (1024 * 3), 0) < 0) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3924 report_file_error ("Setting file position", |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3925 Fcons (orig_filename, Qnil)); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3926 nread += emacs_read (fd, read_buf + nread, 1024 * 3); |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3927 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3928 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3929 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3930 if (nread < 0) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3931 error ("IO error reading %s: %s", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3932 SDATA (orig_filename), emacs_strerror (errno)); |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3933 else if (nread > 0) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3934 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3935 struct buffer *prev = current_buffer; |
44563
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3936 Lisp_Object buffer; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3937 struct buffer *buf; |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3938 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3939 record_unwind_protect (Fset_buffer, Fcurrent_buffer ()); |
27789
eb273bf5c3a8
(Finsert_file_contents): Unbind the binding of
Gerd Moellmann <gerd@gnu.org>
parents:
27618
diff
changeset
|
3940 |
44563
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3941 buffer = Fget_buffer_create (build_string (" *code-converting-work*")); |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3942 buf = XBUFFER (buffer); |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3943 |
52018
76a99003b377
(Finsert_file_contents): Use delete_all_overlays.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51839
diff
changeset
|
3944 delete_all_overlays (buf); |
44563
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3945 buf->directory = current_buffer->directory; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3946 buf->read_only = Qnil; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3947 buf->filename = Qnil; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3948 buf->undo_list = Qt; |
52018
76a99003b377
(Finsert_file_contents): Use delete_all_overlays.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51839
diff
changeset
|
3949 eassert (buf->overlays_before == NULL); |
76a99003b377
(Finsert_file_contents): Use delete_all_overlays.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51839
diff
changeset
|
3950 eassert (buf->overlays_after == NULL); |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
3951 |
44563
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3952 set_buffer_internal (buf); |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3953 Ferase_buffer (); |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3954 buf->enable_multibyte_characters = Qnil; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3955 |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3956 insert_1_both (read_buf, nread, nread, 0, 0, 0); |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3957 TEMP_SET_PT_BOTH (BEG, BEG_BYTE); |
22811
6e11bb792d4f
(Finsert_file_contents): Call Vset_auto_coding_function
Kenichi Handa <handa@m17n.org>
parents:
22753
diff
changeset
|
3958 val = call2 (Vset_auto_coding_function, |
6e11bb792d4f
(Finsert_file_contents): Call Vset_auto_coding_function
Kenichi Handa <handa@m17n.org>
parents:
22753
diff
changeset
|
3959 filename, make_number (nread)); |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3960 set_buffer_internal (prev); |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
3961 |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3962 /* Discard the unwind protect for recovering the |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3963 current buffer. */ |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3964 specpdl_ptr--; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3965 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3966 /* Rewind the file for the actual read done later. */ |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3967 if (lseek (fd, 0, 0) < 0) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3968 report_file_error ("Setting file position", |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3969 Fcons (orig_filename, Qnil)); |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3970 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3971 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3972 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3973 if (NILP (val)) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3974 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3975 /* If we have not yet decided a coding system, check |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3976 file-coding-system-alist. */ |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3977 Lisp_Object args[6], coding_systems; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3978 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3979 args[0] = Qinsert_file_contents, args[1] = orig_filename; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3980 args[2] = visit, args[3] = beg, args[4] = end, args[5] = replace; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3981 coding_systems = Ffind_operation_coding_system (6, args); |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3982 if (CONSP (coding_systems)) |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
3983 val = XCAR (coding_systems); |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3984 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3985 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3986 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
3987 setup_coding_system (Fcheck_coding_system (val), &coding); |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
3988 /* Ensure we set Vlast_coding_system_used. */ |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
3989 set_coding_system = 1; |
22362
e845baca3407
(Finsert_file_contents): Always update
Karl Heuer <kwzh@gnu.org>
parents:
22311
diff
changeset
|
3990 |
24932
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
3991 if (NILP (current_buffer->enable_multibyte_characters) |
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
3992 && ! NILP (val)) |
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
3993 /* We must suppress all character code conversion except for |
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
3994 end-of-line conversion. */ |
22613
285822d24189
(Finsert_file_contents): Call setup_raw_text_coding_system.
Kenichi Handa <handa@m17n.org>
parents:
22493
diff
changeset
|
3995 setup_raw_text_coding_system (&coding); |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3996 |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
3997 coding.src_multibyte = 0; |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
3998 coding.dst_multibyte |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
3999 = !NILP (current_buffer->enable_multibyte_characters); |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
4000 coding_system_decided = 1; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
4001 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
4002 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4003 /* If requested, replace the accessible part of the buffer |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4004 with the file contents. Avoid replacing text at the |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4005 beginning or end of the buffer that matches the file contents; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4006 that preserves markers pointing to the unchanged parts. |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4007 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4008 Here we implement this feature in an optimized way |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4009 for the case where code conversion is NOT needed. |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4010 The following if-statement handles the case of conversion |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4011 in a less optimal way. |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4012 |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4013 If the code conversion is "automatic" then we try using this |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4014 method and hope for the best. |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4015 But if we discover the need for conversion, we give up on this method |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4016 and let the following if-statement handle the replace job. */ |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4017 if (!NILP (replace) |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
4018 && BEGV < ZV |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4019 && !(coding.common_flags & CODING_REQUIRE_DECODING_MASK)) |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
4020 { |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4021 /* same_at_start and same_at_end count bytes, |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4022 because file access counts bytes |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4023 and BEG and END count bytes. */ |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4024 int same_at_start = BEGV_BYTE; |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4025 int same_at_end = ZV_BYTE; |
6328
e97a1cc44be8
(Finsert_file_contents): Don't let same_at_end be less than same_at_start.
Richard M. Stallman <rms@gnu.org>
parents:
6209
diff
changeset
|
4026 int overlap; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4027 /* There is still a possibility we will find the need to do code |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4028 conversion. If that happens, we set this variable to 1 to |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4029 give up on handling REPLACE in the optimized way. */ |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4030 int giveup_match_end = 0; |
6328
e97a1cc44be8
(Finsert_file_contents): Don't let same_at_end be less than same_at_start.
Richard M. Stallman <rms@gnu.org>
parents:
6209
diff
changeset
|
4031 |
16695
7df45948d2d8
(Finsert_file_contents): Handle BEG and END non-nil
Richard M. Stallman <rms@gnu.org>
parents:
16662
diff
changeset
|
4032 if (XINT (beg) != 0) |
7df45948d2d8
(Finsert_file_contents): Handle BEG and END non-nil
Richard M. Stallman <rms@gnu.org>
parents:
16662
diff
changeset
|
4033 { |
7df45948d2d8
(Finsert_file_contents): Handle BEG and END non-nil
Richard M. Stallman <rms@gnu.org>
parents:
16662
diff
changeset
|
4034 if (lseek (fd, XINT (beg), 0) < 0) |
7df45948d2d8
(Finsert_file_contents): Handle BEG and END non-nil
Richard M. Stallman <rms@gnu.org>
parents:
16662
diff
changeset
|
4035 report_file_error ("Setting file position", |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4036 Fcons (orig_filename, Qnil)); |
16695
7df45948d2d8
(Finsert_file_contents): Handle BEG and END non-nil
Richard M. Stallman <rms@gnu.org>
parents:
16662
diff
changeset
|
4037 } |
7df45948d2d8
(Finsert_file_contents): Handle BEG and END non-nil
Richard M. Stallman <rms@gnu.org>
parents:
16662
diff
changeset
|
4038 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4039 immediate_quit = 1; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4040 QUIT; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4041 /* Count how many chars at the start of the file |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4042 match the text at the beginning of the buffer. */ |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4043 while (1) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4044 { |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4045 int nread, bufpos; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4046 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
4047 nread = emacs_read (fd, buffer, sizeof buffer); |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4048 if (nread < 0) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4049 error ("IO error reading %s: %s", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
4050 SDATA (orig_filename), emacs_strerror (errno)); |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4051 else if (nread == 0) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4052 break; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4053 |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17823
diff
changeset
|
4054 if (coding.type == coding_type_undecided) |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4055 detect_coding (&coding, buffer, nread); |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4056 if (coding.common_flags & CODING_REQUIRE_DECODING_MASK) |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4057 /* We found that the file should be decoded somehow. |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4058 Let's give up here. */ |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4059 { |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4060 giveup_match_end = 1; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4061 break; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4062 } |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4063 |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17823
diff
changeset
|
4064 if (coding.eol_type == CODING_EOL_UNDECIDED) |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4065 detect_eol (&coding, buffer, nread); |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
4066 if (coding.eol_type != CODING_EOL_UNDECIDED |
18973
9f5b8d5eed29
(Finsert_file_contents): Use new macros
Kenichi Handa <handa@m17n.org>
parents:
18861
diff
changeset
|
4067 && coding.eol_type != CODING_EOL_LF) |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4068 /* We found that the format of eol should be decoded. |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4069 Let's give up here. */ |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4070 { |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4071 giveup_match_end = 1; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4072 break; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4073 } |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4074 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4075 bufpos = 0; |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4076 while (bufpos < nread && same_at_start < ZV_BYTE |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4077 && FETCH_BYTE (same_at_start) == buffer[bufpos]) |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4078 same_at_start++, bufpos++; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4079 /* If we found a discrepancy, stop the scan. |
14036 | 4080 Otherwise loop around and scan the next bufferful. */ |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4081 if (bufpos != nread) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4082 break; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4083 } |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4084 immediate_quit = 0; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4085 /* If the file matches the buffer completely, |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4086 there's no need to replace anything. */ |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4087 if (same_at_start - BEGV_BYTE == XINT (end)) |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4088 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
4089 emacs_close (fd); |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4090 specpdl_ptr--; |
7595
9f0893928a4d
(Finsert_file_contents): Declare buffer as unsigned
Richard M. Stallman <rms@gnu.org>
parents:
7551
diff
changeset
|
4091 /* Truncate the buffer to the size of the file. */ |
26742
936b39bd05b4
* editfns.c (Fdelete_and_extract_region): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26714
diff
changeset
|
4092 del_range_1 (same_at_start, same_at_end, 0, 0); |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4093 goto handled; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4094 } |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4095 immediate_quit = 1; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4096 QUIT; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4097 /* Count how many chars at the end of the file |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4098 match the text at the end of the buffer. But, if we have |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4099 already found that decoding is necessary, don't waste time. */ |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4100 while (!giveup_match_end) |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4101 { |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4102 int total_read, nread, bufpos, curpos, trial; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4103 |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4104 /* At what file position are we now scanning? */ |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4105 curpos = XINT (end) - (ZV_BYTE - same_at_end); |
7695
aba3ffcc8f51
(Finsert_file_contents): Check for beginning of file.
Karl Heuer <kwzh@gnu.org>
parents:
7611
diff
changeset
|
4106 /* If the entire file matches the buffer tail, stop the scan. */ |
aba3ffcc8f51
(Finsert_file_contents): Check for beginning of file.
Karl Heuer <kwzh@gnu.org>
parents:
7611
diff
changeset
|
4107 if (curpos == 0) |
aba3ffcc8f51
(Finsert_file_contents): Check for beginning of file.
Karl Heuer <kwzh@gnu.org>
parents:
7611
diff
changeset
|
4108 break; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4109 /* How much can we scan in the next step? */ |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4110 trial = min (curpos, sizeof buffer); |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4111 if (lseek (fd, curpos - trial, 0) < 0) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4112 report_file_error ("Setting file position", |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4113 Fcons (orig_filename, Qnil)); |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4114 |
39457
dbb9a3969094
(Finsert_file_contents): If REPLACE is non-nil, stop
Gerd Moellmann <gerd@gnu.org>
parents:
39291
diff
changeset
|
4115 total_read = nread = 0; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4116 while (total_read < trial) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4117 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
4118 nread = emacs_read (fd, buffer + total_read, trial - total_read); |
38619
879c6b736b9f
(Finsert_file_contents): Don't treat a return value
Gerd Moellmann <gerd@gnu.org>
parents:
38450
diff
changeset
|
4119 if (nread < 0) |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4120 error ("IO error reading %s: %s", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
4121 SDATA (orig_filename), emacs_strerror (errno)); |
38619
879c6b736b9f
(Finsert_file_contents): Don't treat a return value
Gerd Moellmann <gerd@gnu.org>
parents:
38450
diff
changeset
|
4122 else if (nread == 0) |
879c6b736b9f
(Finsert_file_contents): Don't treat a return value
Gerd Moellmann <gerd@gnu.org>
parents:
38450
diff
changeset
|
4123 break; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4124 total_read += nread; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4125 } |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
4126 |
14036 | 4127 /* Scan this bufferful from the end, comparing with |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4128 the Emacs buffer. */ |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4129 bufpos = total_read; |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
4130 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4131 /* Compare with same_at_start to avoid counting some buffer text |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4132 as matching both at the file's beginning and at the end. */ |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4133 while (bufpos > 0 && same_at_end > same_at_start |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4134 && FETCH_BYTE (same_at_end - 1) == buffer[bufpos - 1]) |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4135 same_at_end--, bufpos--; |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4136 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4137 /* If we found a discrepancy, stop the scan. |
14036 | 4138 Otherwise loop around and scan the preceding bufferful. */ |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4139 if (bufpos != 0) |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4140 { |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4141 /* If this discrepancy is because of code conversion, |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4142 we cannot use this method; giveup and try the other. */ |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4143 if (same_at_end > same_at_start |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4144 && FETCH_BYTE (same_at_end - 1) >= 0200 |
18679
554594d88cd3
(Finsert_file_contents): Give up match-end only if
Richard M. Stallman <rms@gnu.org>
parents:
18647
diff
changeset
|
4145 && ! NILP (current_buffer->enable_multibyte_characters) |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4146 && (CODING_MAY_REQUIRE_DECODING (&coding))) |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4147 giveup_match_end = 1; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4148 break; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4149 } |
39457
dbb9a3969094
(Finsert_file_contents): If REPLACE is non-nil, stop
Gerd Moellmann <gerd@gnu.org>
parents:
39291
diff
changeset
|
4150 |
dbb9a3969094
(Finsert_file_contents): If REPLACE is non-nil, stop
Gerd Moellmann <gerd@gnu.org>
parents:
39291
diff
changeset
|
4151 if (nread == 0) |
dbb9a3969094
(Finsert_file_contents): If REPLACE is non-nil, stop
Gerd Moellmann <gerd@gnu.org>
parents:
39291
diff
changeset
|
4152 break; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4153 } |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4154 immediate_quit = 0; |
6328
e97a1cc44be8
(Finsert_file_contents): Don't let same_at_end be less than same_at_start.
Richard M. Stallman <rms@gnu.org>
parents:
6209
diff
changeset
|
4155 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4156 if (! giveup_match_end) |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4157 { |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4158 int temp; |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4159 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4160 /* We win! We can handle REPLACE the optimized way. */ |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4161 |
22753
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4162 /* Extend the start of non-matching text area to multibyte |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4163 character boundary. */ |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4164 if (! NILP (current_buffer->enable_multibyte_characters)) |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4165 while (same_at_start > BEGV_BYTE |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4166 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start))) |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4167 same_at_start--; |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4168 |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4169 /* Extend the end of non-matching text area to multibyte |
18679
554594d88cd3
(Finsert_file_contents): Give up match-end only if
Richard M. Stallman <rms@gnu.org>
parents:
18647
diff
changeset
|
4170 character boundary. */ |
554594d88cd3
(Finsert_file_contents): Give up match-end only if
Richard M. Stallman <rms@gnu.org>
parents:
18647
diff
changeset
|
4171 if (! NILP (current_buffer->enable_multibyte_characters)) |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4172 while (same_at_end < ZV_BYTE |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4173 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end))) |
18679
554594d88cd3
(Finsert_file_contents): Give up match-end only if
Richard M. Stallman <rms@gnu.org>
parents:
18647
diff
changeset
|
4174 same_at_end++; |
554594d88cd3
(Finsert_file_contents): Give up match-end only if
Richard M. Stallman <rms@gnu.org>
parents:
18647
diff
changeset
|
4175 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4176 /* Don't try to reuse the same piece of text twice. */ |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4177 overlap = (same_at_start - BEGV_BYTE |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4178 - (same_at_end + st.st_size - ZV)); |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4179 if (overlap > 0) |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4180 same_at_end += overlap; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4181 |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4182 /* Arrange to read only the nonmatching middle part of the file. */ |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4183 XSETFASTINT (beg, XINT (beg) + (same_at_start - BEGV_BYTE)); |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4184 XSETFASTINT (end, XINT (end) - (ZV_BYTE - same_at_end)); |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4185 |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4186 del_range_byte (same_at_start, same_at_end, 0); |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4187 /* Insert from the file at the proper position. */ |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4188 temp = BYTE_TO_CHAR (same_at_start); |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4189 SET_PT_BOTH (temp, same_at_start); |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4190 |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4191 /* If display currently starts at beginning of line, |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4192 keep it that way. */ |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4193 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer) |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4194 XWINDOW (selected_window)->start_at_line_beg = Fbolp (); |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4195 |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4196 replace_handled = 1; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4197 } |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4198 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4199 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4200 /* If requested, replace the accessible part of the buffer |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4201 with the file contents. Avoid replacing text at the |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4202 beginning or end of the buffer that matches the file contents; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4203 that preserves markers pointing to the unchanged parts. |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4204 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4205 Here we implement this feature for the case where code conversion |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4206 is needed, in a simple way that needs a lot of memory. |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4207 The preceding if-statement handles the case of no conversion |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4208 in a more optimized way. */ |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
4209 if (!NILP (replace) && ! replace_handled && BEGV < ZV) |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4210 { |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4211 int same_at_start = BEGV_BYTE; |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4212 int same_at_end = ZV_BYTE; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4213 int overlap; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4214 int bufpos; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4215 /* Make sure that the gap is large enough. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4216 int bufsize = 2 * st.st_size; |
17820
d7b187832881
(Finsert_file_contents): Use xmalloc. not malloc.
Richard M. Stallman <rms@gnu.org>
parents:
17723
diff
changeset
|
4217 unsigned char *conversion_buffer = (unsigned char *) xmalloc (bufsize); |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4218 int temp; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4219 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4220 /* First read the whole file, performing code conversion into |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4221 CONVERSION_BUFFER. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4222 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4223 if (lseek (fd, XINT (beg), 0) < 0) |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4224 { |
24451
4e77e063fc79
(Finsert_file_contents): Use xfree.
Dave Love <fx@gnu.org>
parents:
24392
diff
changeset
|
4225 xfree (conversion_buffer); |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4226 report_file_error ("Setting file position", |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4227 Fcons (orig_filename, Qnil)); |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4228 } |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4229 |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4230 total = st.st_size; /* Total bytes in the file. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4231 how_much = 0; /* Bytes read from file so far. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4232 inserted = 0; /* Bytes put into CONVERSION_BUFFER so far. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4233 unprocessed = 0; /* Bytes not processed in previous loop. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4234 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4235 while (how_much < total) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4236 { |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4237 /* try is reserved in some compilers (Microsoft C) */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4238 int trytry = min (total - how_much, READ_BUF_SIZE - unprocessed); |
22311
599c0971ae49
(Finsert_file_contents): Fix char signedness mismatches.
Karl Heuer <kwzh@gnu.org>
parents:
22172
diff
changeset
|
4239 unsigned char *destination = read_buf + unprocessed; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4240 int this; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4241 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4242 /* Allow quitting out of the actual I/O. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4243 immediate_quit = 1; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4244 QUIT; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
4245 this = emacs_read (fd, destination, trytry); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4246 immediate_quit = 0; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4247 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4248 if (this < 0 || this + unprocessed == 0) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4249 { |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4250 how_much = this; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4251 break; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4252 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4253 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4254 how_much += this; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4255 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4256 if (CODING_MAY_REQUIRE_DECODING (&coding)) |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4257 { |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4258 int require, result; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4259 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4260 this += unprocessed; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4261 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4262 /* If we are using more space than estimated, |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4263 make CONVERSION_BUFFER bigger. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4264 require = decoding_buffer_size (&coding, this); |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4265 if (inserted + require + 2 * (total - how_much) > bufsize) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4266 { |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4267 bufsize = inserted + require + 2 * (total - how_much); |
17823
2f313f045caa
(Finsert_file_contents): Use xrealloc too.
Richard M. Stallman <rms@gnu.org>
parents:
17820
diff
changeset
|
4268 conversion_buffer = (unsigned char *) xrealloc (conversion_buffer, bufsize); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4269 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4270 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4271 /* Convert this batch with results in CONVERSION_BUFFER. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4272 if (how_much >= total) /* This is the last block. */ |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4273 coding.mode |= CODING_MODE_LAST_BLOCK; |
38973
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4274 if (coding.composing != COMPOSITION_DISABLED) |
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4275 coding_allocate_composition_data (&coding, BEGV); |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4276 result = decode_coding (&coding, read_buf, |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4277 conversion_buffer + inserted, |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4278 this, bufsize - inserted); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4279 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4280 /* Save for next iteration whatever we didn't convert. */ |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4281 unprocessed = this - coding.consumed; |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4282 bcopy (read_buf + coding.consumed, read_buf, unprocessed); |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4283 if (!NILP (current_buffer->enable_multibyte_characters)) |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4284 this = coding.produced; |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4285 else |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4286 this = str_as_unibyte (conversion_buffer + inserted, |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4287 coding.produced); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4288 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4289 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4290 inserted += this; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4291 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4292 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4293 /* At this point, INSERTED is how many characters (i.e. bytes) |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4294 are present in CONVERSION_BUFFER. |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4295 HOW_MUCH should equal TOTAL, |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4296 or should be <= 0 if we couldn't read the file. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4297 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4298 if (how_much < 0) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4299 { |
25321
2ad9fa0386b6
(Finsert_file_contents): Use xfree.
Dave Love <fx@gnu.org>
parents:
25006
diff
changeset
|
4300 xfree (conversion_buffer); |
57286
32c7a00069f2
(Finsert_file_contents): Be sure to free composition data.
Kenichi Handa <handa@m17n.org>
parents:
57112
diff
changeset
|
4301 coding_free_composition_data (&coding); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4302 if (how_much == -1) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4303 error ("IO error reading %s: %s", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
4304 SDATA (orig_filename), emacs_strerror (errno)); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4305 else if (how_much == -2) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4306 error ("maximum buffer size exceeded"); |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4307 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4308 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4309 /* Compare the beginning of the converted file |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4310 with the buffer text. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4311 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4312 bufpos = 0; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4313 while (bufpos < inserted && same_at_start < same_at_end |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4314 && FETCH_BYTE (same_at_start) == conversion_buffer[bufpos]) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4315 same_at_start++, bufpos++; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4316 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4317 /* If the file matches the buffer completely, |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4318 there's no need to replace anything. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4319 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4320 if (bufpos == inserted) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4321 { |
25321
2ad9fa0386b6
(Finsert_file_contents): Use xfree.
Dave Love <fx@gnu.org>
parents:
25006
diff
changeset
|
4322 xfree (conversion_buffer); |
57286
32c7a00069f2
(Finsert_file_contents): Be sure to free composition data.
Kenichi Handa <handa@m17n.org>
parents:
57112
diff
changeset
|
4323 coding_free_composition_data (&coding); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
4324 emacs_close (fd); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4325 specpdl_ptr--; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4326 /* Truncate the buffer to the size of the file. */ |
24877
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4327 del_range_byte (same_at_start, same_at_end, 0); |
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4328 inserted = 0; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4329 goto handled; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4330 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4331 |
22753
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4332 /* Extend the start of non-matching text area to multibyte |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4333 character boundary. */ |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4334 if (! NILP (current_buffer->enable_multibyte_characters)) |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4335 while (same_at_start > BEGV_BYTE |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4336 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_start))) |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4337 same_at_start--; |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4338 |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4339 /* Scan this bufferful from the end, comparing with |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4340 the Emacs buffer. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4341 bufpos = inserted; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4342 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4343 /* Compare with same_at_start to avoid counting some buffer text |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4344 as matching both at the file's beginning and at the end. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4345 while (bufpos > 0 && same_at_end > same_at_start |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4346 && FETCH_BYTE (same_at_end - 1) == conversion_buffer[bufpos - 1]) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4347 same_at_end--, bufpos--; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4348 |
22753
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4349 /* Extend the end of non-matching text area to multibyte |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4350 character boundary. */ |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4351 if (! NILP (current_buffer->enable_multibyte_characters)) |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4352 while (same_at_end < ZV_BYTE |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4353 && ! CHAR_HEAD_P (FETCH_BYTE (same_at_end))) |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4354 same_at_end++; |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4355 |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4356 /* Don't try to reuse the same piece of text twice. */ |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4357 overlap = same_at_start - BEGV_BYTE - (same_at_end + inserted - ZV_BYTE); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4358 if (overlap > 0) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4359 same_at_end += overlap; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4360 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4361 /* If display currently starts at beginning of line, |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4362 keep it that way. */ |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4363 if (XBUFFER (XWINDOW (selected_window)->buffer) == current_buffer) |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4364 XWINDOW (selected_window)->start_at_line_beg = Fbolp (); |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4365 |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4366 /* Replace the chars that we need to replace, |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4367 and update INSERTED to equal the number of bytes |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4368 we are taking from the file. */ |
57112
4c14357ffc27
(Finsert_file_contents): Fix case of replacement in a narrowed buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56977
diff
changeset
|
4369 inserted -= (ZV_BYTE - same_at_end) + (same_at_start - BEGV_BYTE); |
24877
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4370 |
21949
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
4371 if (same_at_end != same_at_start) |
24877
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4372 { |
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4373 del_range_byte (same_at_start, same_at_end, 0); |
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4374 temp = GPT; |
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4375 same_at_start = GPT_BYTE; |
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4376 } |
21949
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
4377 else |
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
4378 { |
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
4379 temp = BYTE_TO_CHAR (same_at_start); |
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
4380 } |
24877
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4381 /* Insert from the file at the proper position. */ |
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4382 SET_PT_BOTH (temp, same_at_start); |
57112
4c14357ffc27
(Finsert_file_contents): Fix case of replacement in a narrowed buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56977
diff
changeset
|
4383 insert_1 (conversion_buffer + same_at_start - BEGV_BYTE, inserted, |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4384 0, 0, 0); |
38973
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4385 if (coding.cmp_data && coding.cmp_data->used) |
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4386 coding_restore_composition (&coding, Fcurrent_buffer ()); |
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4387 coding_free_composition_data (&coding); |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
4388 |
24877
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4389 /* Set `inserted' to the number of inserted characters. */ |
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4390 inserted = PT - temp; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4391 |
30605
2bf69b38f4d3
(Finsert_file_contents): Use xfree instead of free.
Gerd Moellmann <gerd@gnu.org>
parents:
30376
diff
changeset
|
4392 xfree (conversion_buffer); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
4393 emacs_close (fd); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4394 specpdl_ptr--; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4395 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4396 goto handled; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4397 } |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4398 |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4399 if (! not_regular) |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4400 { |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4401 register Lisp_Object temp; |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4402 |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4403 total = XINT (end) - XINT (beg); |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4404 |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4405 /* Make sure point-max won't overflow after this insertion. */ |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4406 XSETINT (temp, total); |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4407 if (total != XINT (temp)) |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4408 error ("Maximum buffer size exceeded"); |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4409 } |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4410 else |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4411 /* For a special file, all we can do is guess. */ |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4412 total = READ_BUF_SIZE; |
230 | 4413 |
62296
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4414 if (NILP (visit) && inserted > 0) |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4415 { |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4416 #ifdef CLASH_DETECTION |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4417 if (!NILP (current_buffer->file_truename) |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4418 /* Make binding buffer-file-name to nil effective. */ |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4419 && !NILP (current_buffer->filename) |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4420 && SAVE_MODIFF >= MODIFF) |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4421 we_locked_file = 1; |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4422 #endif /* CLASH_DETECTION */ |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4423 prepare_to_modify_buffer (GPT, GPT, NULL); |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4424 } |
16167
651ee074f8b0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
16155
diff
changeset
|
4425 |
651ee074f8b0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
16155
diff
changeset
|
4426 move_gap (PT); |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
4427 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
|
4428 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
|
4429 |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4430 if (XINT (beg) != 0 || !NILP (replace)) |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
4431 { |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
4432 if (lseek (fd, XINT (beg), 0) < 0) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4433 report_file_error ("Setting file position", |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4434 Fcons (orig_filename, Qnil)); |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
4435 } |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
4436 |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4437 /* In the following loop, HOW_MUCH contains the total bytes read so |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4438 far for a regular file, and not changed for a special file. But, |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4439 before exiting the loop, it is set to a negative value if I/O |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4440 error occurs. */ |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4441 how_much = 0; |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
4442 |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4443 /* Total bytes inserted. */ |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4444 inserted = 0; |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
4445 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4446 /* Here, we don't do code conversion in the loop. It is done by |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4447 code_convert_region after all data are read into the buffer. */ |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4448 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4449 int gap_size = GAP_SIZE; |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
4450 |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4451 while (how_much < total) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4452 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4453 /* try is reserved in some compilers (Microsoft C) */ |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4454 int trytry = min (total - how_much, READ_BUF_SIZE); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4455 int this; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4456 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4457 if (not_regular) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4458 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4459 Lisp_Object val; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4460 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4461 /* Maybe make more room. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4462 if (gap_size < trytry) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4463 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4464 make_gap (total - gap_size); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4465 gap_size = GAP_SIZE; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4466 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4467 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4468 /* Read from the file, capturing `quit'. When an |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4469 error occurs, end the loop, and arrange for a quit |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4470 to be signaled after decoding the text we read. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4471 non_regular_fd = fd; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4472 non_regular_inserted = inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4473 non_regular_nbytes = trytry; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4474 val = internal_condition_case_1 (read_non_regular, Qnil, Qerror, |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4475 read_non_regular_quit); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4476 if (NILP (val)) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4477 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4478 read_quit = 1; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4479 break; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4480 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4481 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4482 this = XINT (val); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4483 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4484 else |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4485 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4486 /* Allow quitting out of the actual I/O. We don't make text |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4487 part of the buffer until all the reading is done, so a C-g |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4488 here doesn't do any harm. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4489 immediate_quit = 1; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4490 QUIT; |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
4491 this = emacs_read (fd, BEG_ADDR + PT_BYTE - BEG_BYTE + inserted, trytry); |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4492 immediate_quit = 0; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4493 } |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
4494 |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4495 if (this <= 0) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4496 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4497 how_much = this; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4498 break; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4499 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4500 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4501 gap_size -= this; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4502 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4503 /* For a regular file, where TOTAL is the real size, |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4504 count HOW_MUCH to compare with it. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4505 For a special file, where TOTAL is just a buffer size, |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4506 so don't bother counting in HOW_MUCH. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4507 (INSERTED is where we count the number of characters inserted.) */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4508 if (! not_regular) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4509 how_much += this; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4510 inserted += this; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4511 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4512 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4513 |
62296
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4514 /* Now we have read all the file data into the gap. |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4515 If it was empty, undo marking the buffer modified. */ |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4516 |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4517 if (inserted == 0) |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4518 { |
62299
3fa6e7b9d397
(Finsert_file_contents): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
62296
diff
changeset
|
4519 #ifdef CLASH_DETECTION |
62296
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4520 if (we_locked_file) |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4521 unlock_file (current_buffer->file_truename); |
62299
3fa6e7b9d397
(Finsert_file_contents): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
62296
diff
changeset
|
4522 #endif |
62296
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4523 Vdeactivate_mark = old_Vdeactivate_mark; |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4524 } |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
4525 |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4526 /* Make the text read part of the buffer. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4527 GAP_SIZE -= inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4528 GPT += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4529 GPT_BYTE += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4530 ZV += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4531 ZV_BYTE += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4532 Z += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4533 Z_BYTE += inserted; |
230 | 4534 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4535 if (GAP_SIZE > 0) |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4536 /* Put an anchor to ensure multi-byte form ends at gap. */ |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4537 *GPT_ADDR = 0; |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4538 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
4539 emacs_close (fd); |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4540 |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4541 /* Discard the unwind protect for closing the file. */ |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4542 specpdl_ptr--; |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4543 |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4544 if (how_much < 0) |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4545 error ("IO error reading %s: %s", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
4546 SDATA (orig_filename), emacs_strerror (errno)); |
19399
8ece1f8d2ff6
(Finsert_file_contents) [DOS_NT]: Set buffer_file_type
Geoff Voelker <voelker@cs.washington.edu>
parents:
19206
diff
changeset
|
4547 |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4548 notfound: |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4549 |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4550 if (! coding_system_decided) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4551 { |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4552 /* The coding system is not yet decided. Decide it by an |
26638 | 4553 optimized method for handling `coding:' tag. |
4554 | |
4555 Note that we can get here only if the buffer was empty | |
4556 before the insertion. */ | |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4557 Lisp_Object val; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4558 val = Qnil; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4559 |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4560 if (!NILP (Vcoding_system_for_read)) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4561 val = Vcoding_system_for_read; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4562 else |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4563 { |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4564 /* Since we are sure that the current buffer was empty |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4565 before the insertion, we can toggle |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4566 enable-multibyte-characters directly here without taking |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4567 care of marker adjustment and byte combining problem. By |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4568 this way, we can run Lisp program safely before decoding |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4569 the inserted text. */ |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4570 Lisp_Object unwind_data; |
60563
ca116ec246d7
(Finsert_file_contents): Call Fcheck_coding_system
Kenichi Handa <handa@m17n.org>
parents:
60387
diff
changeset
|
4571 int count = SPECPDL_INDEX (); |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4572 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4573 unwind_data = Fcons (current_buffer->enable_multibyte_characters, |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4574 Fcons (current_buffer->undo_list, |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4575 Fcurrent_buffer ())); |
60563
ca116ec246d7
(Finsert_file_contents): Call Fcheck_coding_system
Kenichi Handa <handa@m17n.org>
parents:
60387
diff
changeset
|
4576 current_buffer->enable_multibyte_characters = Qnil; |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4577 current_buffer->undo_list = Qt; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4578 record_unwind_protect (decide_coding_unwind, unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4579 |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4580 if (inserted > 0 && ! NILP (Vset_auto_coding_function)) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4581 { |
22811
6e11bb792d4f
(Finsert_file_contents): Call Vset_auto_coding_function
Kenichi Handa <handa@m17n.org>
parents:
22753
diff
changeset
|
4582 val = call2 (Vset_auto_coding_function, |
6e11bb792d4f
(Finsert_file_contents): Call Vset_auto_coding_function
Kenichi Handa <handa@m17n.org>
parents:
22753
diff
changeset
|
4583 filename, make_number (inserted)); |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4584 } |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4585 |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4586 if (NILP (val)) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4587 { |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4588 /* If the coding system is not yet decided, check |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4589 file-coding-system-alist. */ |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4590 Lisp_Object args[6], coding_systems; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4591 |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4592 args[0] = Qinsert_file_contents, args[1] = orig_filename; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4593 args[2] = visit, args[3] = beg, args[4] = end, args[5] = Qnil; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4594 coding_systems = Ffind_operation_coding_system (6, args); |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4595 if (CONSP (coding_systems)) |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
4596 val = XCAR (coding_systems); |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4597 } |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4598 unbind_to (count, Qnil); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4599 inserted = Z_BYTE - BEG_BYTE; |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4600 } |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4601 |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4602 /* The following kludgy code is to avoid some compiler bug. |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4603 We can't simply do |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4604 setup_coding_system (val, &coding); |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4605 on some system. */ |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4606 { |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4607 struct coding_system temp_coding; |
60563
ca116ec246d7
(Finsert_file_contents): Call Fcheck_coding_system
Kenichi Handa <handa@m17n.org>
parents:
60387
diff
changeset
|
4608 setup_coding_system (Fcheck_coding_system (val), &temp_coding); |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4609 bcopy (&temp_coding, &coding, sizeof coding); |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4610 } |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4611 /* Ensure we set Vlast_coding_system_used. */ |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4612 set_coding_system = 1; |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4613 |
24932
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
4614 if (NILP (current_buffer->enable_multibyte_characters) |
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
4615 && ! NILP (val)) |
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
4616 /* We must suppress all character code conversion except for |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4617 end-of-line conversion. */ |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4618 setup_raw_text_coding_system (&coding); |
29540
c449a480768c
(Finsert_file_contents): Be sure to setup src_multibyte
Kenichi Handa <handa@m17n.org>
parents:
29478
diff
changeset
|
4619 coding.src_multibyte = 0; |
c449a480768c
(Finsert_file_contents): Be sure to setup src_multibyte
Kenichi Handa <handa@m17n.org>
parents:
29478
diff
changeset
|
4620 coding.dst_multibyte |
c449a480768c
(Finsert_file_contents): Be sure to setup src_multibyte
Kenichi Handa <handa@m17n.org>
parents:
29478
diff
changeset
|
4621 = !NILP (current_buffer->enable_multibyte_characters); |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4622 } |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4623 |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4624 if (!NILP (visit) |
39023
c0daac54d3e1
(Finsert_file_contents): Don't change the multibyteness
Gerd Moellmann <gerd@gnu.org>
parents:
39007
diff
changeset
|
4625 /* Can't do this if part of the buffer might be preserved. */ |
c0daac54d3e1
(Finsert_file_contents): Don't change the multibyteness
Gerd Moellmann <gerd@gnu.org>
parents:
39007
diff
changeset
|
4626 && NILP (replace) |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4627 && (coding.type == coding_type_no_conversion |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4628 || coding.type == coding_type_raw_text)) |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4629 { |
39023
c0daac54d3e1
(Finsert_file_contents): Don't change the multibyteness
Gerd Moellmann <gerd@gnu.org>
parents:
39007
diff
changeset
|
4630 /* Visiting a file with these coding system makes the buffer |
c0daac54d3e1
(Finsert_file_contents): Don't change the multibyteness
Gerd Moellmann <gerd@gnu.org>
parents:
39007
diff
changeset
|
4631 unibyte. */ |
c0daac54d3e1
(Finsert_file_contents): Don't change the multibyteness
Gerd Moellmann <gerd@gnu.org>
parents:
39007
diff
changeset
|
4632 current_buffer->enable_multibyte_characters = Qnil; |
38932
8328e5ca5f55
(Finsert_file_contents): Set coding's dest_multibyte
Gerd Moellmann <gerd@gnu.org>
parents:
38929
diff
changeset
|
4633 coding.dst_multibyte = 0; |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4634 } |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4635 |
23878
0d713a8426b6
(Finsert_file_contents): Even if INSERTED is zero, if
Kenichi Handa <handa@m17n.org>
parents:
23617
diff
changeset
|
4636 if (inserted > 0 || coding.type == coding_type_ccl) |
1240
7365d006d0a0
(Finsert_file_contents): Do record_insert, then inc MODIFF.
Richard M. Stallman <rms@gnu.org>
parents:
1204
diff
changeset
|
4637 { |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4638 if (CODING_MAY_REQUIRE_DECODING (&coding)) |
20929
21009c0c7598
(Finsert_file_contents): Read a file contents into the
Kenichi Handa <handa@m17n.org>
parents:
20897
diff
changeset
|
4639 { |
21009c0c7598
(Finsert_file_contents): Read a file contents into the
Kenichi Handa <handa@m17n.org>
parents:
20897
diff
changeset
|
4640 code_convert_region (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted, |
21009c0c7598
(Finsert_file_contents): Read a file contents into the
Kenichi Handa <handa@m17n.org>
parents:
20897
diff
changeset
|
4641 &coding, 0, 0); |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4642 inserted = coding.produced_char; |
21138
d10664297ed2
(Finsert_file_contents): Don't do position adjustments
Kenichi Handa <handa@m17n.org>
parents:
21048
diff
changeset
|
4643 } |
21504
0e2b0f6fc9c0
(Finsert_file_contents): Call adjust_after_insert also
Andreas Schwab <schwab@suse.de>
parents:
21423
diff
changeset
|
4644 else |
0e2b0f6fc9c0
(Finsert_file_contents): Call adjust_after_insert also
Andreas Schwab <schwab@suse.de>
parents:
21423
diff
changeset
|
4645 adjust_after_insert (PT, PT_BYTE, PT + inserted, PT_BYTE + inserted, |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4646 inserted); |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4647 } |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4648 |
50491
15f94db27199
(Finsert_file_contents): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
50340
diff
changeset
|
4649 /* Now INSERTED is measured in characters. */ |
15f94db27199
(Finsert_file_contents): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
50340
diff
changeset
|
4650 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4651 #ifdef DOS_NT |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4652 /* Use the conversion type to determine buffer-file-type |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4653 (find-buffer-file-type is now used to help determine the |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4654 conversion). */ |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
4655 if ((coding.eol_type == CODING_EOL_UNDECIDED |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4656 || coding.eol_type == CODING_EOL_LF) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4657 && ! CODING_REQUIRE_DECODING (&coding)) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4658 current_buffer->buffer_file_type = Qt; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4659 else |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4660 current_buffer->buffer_file_type = Qnil; |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4661 #endif |
230 | 4662 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4663 handled: |
230 | 4664 |
485 | 4665 if (!NILP (visit)) |
230 | 4666 { |
6177
ac2ef13dca1b
(Finsert_file_contents): If undo_list was t, leave it t.
Richard M. Stallman <rms@gnu.org>
parents:
6036
diff
changeset
|
4667 if (!EQ (current_buffer->undo_list, Qt)) |
ac2ef13dca1b
(Finsert_file_contents): If undo_list was t, leave it t.
Richard M. Stallman <rms@gnu.org>
parents:
6036
diff
changeset
|
4668 current_buffer->undo_list = Qnil; |
230 | 4669 #ifdef APOLLO |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
4670 stat (SDATA (filename), &st); |
230 | 4671 #endif |
5390
d9c81d7079f3
(Finsert_file_contents): Don't run after change hook
Richard M. Stallman <rms@gnu.org>
parents:
5351
diff
changeset
|
4672 |
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
|
4673 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
|
4674 { |
e11486a64dab
(Finsert_file_contents): Avoid setting buffer-file-name field if ran a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5390
diff
changeset
|
4675 current_buffer->modtime = st.st_mtime; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4676 current_buffer->filename = orig_filename; |
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
|
4677 } |
5390
d9c81d7079f3
(Finsert_file_contents): Don't run after change hook
Richard M. Stallman <rms@gnu.org>
parents:
5351
diff
changeset
|
4678 |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
4679 SAVE_MODIFF = MODIFF; |
230 | 4680 current_buffer->auto_save_modified = MODIFF; |
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
4681 XSETFASTINT (current_buffer->save_length, Z - BEG); |
230 | 4682 #ifdef CLASH_DETECTION |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4683 if (NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4684 { |
11658
304577bc9b51
(Finsert_file_contents): Use file_truename for unlocking.
Richard M. Stallman <rms@gnu.org>
parents:
11632
diff
changeset
|
4685 if (!NILP (current_buffer->file_truename)) |
304577bc9b51
(Finsert_file_contents): Use file_truename for unlocking.
Richard M. Stallman <rms@gnu.org>
parents:
11632
diff
changeset
|
4686 unlock_file (current_buffer->file_truename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4687 unlock_file (filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4688 } |
230 | 4689 #endif /* CLASH_DETECTION */ |
9915
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
4690 if (not_regular) |
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
4691 Fsignal (Qfile_error, |
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
4692 Fcons (build_string ("not a regular file"), |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4693 Fcons (orig_filename, Qnil))); |
230 | 4694 } |
4695 | |
50530
987ee3ecc0a8
* fileio.c (Vafter_insert_file_adjust_coding_function): New
Kenichi Handa <handa@m17n.org>
parents:
50500
diff
changeset
|
4696 if (set_coding_system) |
987ee3ecc0a8
* fileio.c (Vafter_insert_file_adjust_coding_function): New
Kenichi Handa <handa@m17n.org>
parents:
50500
diff
changeset
|
4697 Vlast_coding_system_used = coding.symbol; |
987ee3ecc0a8
* fileio.c (Vafter_insert_file_adjust_coding_function): New
Kenichi Handa <handa@m17n.org>
parents:
50500
diff
changeset
|
4698 |
50546
4a06e3332577
(Vafter_insert_file_adjust_coding_function): Delete
Kenichi Handa <handa@m17n.org>
parents:
50530
diff
changeset
|
4699 if (! NILP (Ffboundp (Qafter_insert_file_set_coding))) |
50530
987ee3ecc0a8
* fileio.c (Vafter_insert_file_adjust_coding_function): New
Kenichi Handa <handa@m17n.org>
parents:
50500
diff
changeset
|
4700 { |
59207
3912575fcded
(Finsert_file_contents): Don't use
Kenichi Handa <handa@m17n.org>
parents:
59146
diff
changeset
|
4701 insval = call2 (Qafter_insert_file_set_coding, make_number (inserted), |
3912575fcded
(Finsert_file_contents): Don't use
Kenichi Handa <handa@m17n.org>
parents:
59146
diff
changeset
|
4702 visit); |
50530
987ee3ecc0a8
* fileio.c (Vafter_insert_file_adjust_coding_function): New
Kenichi Handa <handa@m17n.org>
parents:
50500
diff
changeset
|
4703 if (! NILP (insval)) |
987ee3ecc0a8
* fileio.c (Vafter_insert_file_adjust_coding_function): New
Kenichi Handa <handa@m17n.org>
parents:
50500
diff
changeset
|
4704 { |
987ee3ecc0a8
* fileio.c (Vafter_insert_file_adjust_coding_function): New
Kenichi Handa <handa@m17n.org>
parents:
50500
diff
changeset
|
4705 CHECK_NUMBER (insval); |
987ee3ecc0a8
* fileio.c (Vafter_insert_file_adjust_coding_function): New
Kenichi Handa <handa@m17n.org>
parents:
50500
diff
changeset
|
4706 inserted = XFASTINT (insval); |
987ee3ecc0a8
* fileio.c (Vafter_insert_file_adjust_coding_function): New
Kenichi Handa <handa@m17n.org>
parents:
50500
diff
changeset
|
4707 } |
987ee3ecc0a8
* fileio.c (Vafter_insert_file_adjust_coding_function): New
Kenichi Handa <handa@m17n.org>
parents:
50500
diff
changeset
|
4708 } |
987ee3ecc0a8
* fileio.c (Vafter_insert_file_adjust_coding_function): New
Kenichi Handa <handa@m17n.org>
parents:
50500
diff
changeset
|
4709 |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4710 /* Decode file format */ |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4711 if (inserted > 0) |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4712 { |
34167
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4713 int empty_undo_list_p = 0; |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
4714 |
34167
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4715 /* If we're anyway going to discard undo information, don't |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4716 record it in the first place. The buffer's undo list at this |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4717 point is either nil or t when visiting a file. */ |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4718 if (!NILP (visit)) |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4719 { |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4720 empty_undo_list_p = NILP (current_buffer->undo_list); |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4721 current_buffer->undo_list = Qt; |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4722 } |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
4723 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
4724 insval = call3 (Qformat_decode, |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4725 Qnil, make_number (inserted), visit); |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
4726 CHECK_NUMBER (insval); |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4727 inserted = XFASTINT (insval); |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
4728 |
34167
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4729 if (!NILP (visit)) |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4730 current_buffer->undo_list = empty_undo_list_p ? Qnil : Qt; |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4731 } |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4732 |
17396
7fbce3c83857
(Finsert_file_contents): Do call signal_after_change
Richard M. Stallman <rms@gnu.org>
parents:
17287
diff
changeset
|
4733 /* Call after-change hooks for the inserted text, aside from the case |
7fbce3c83857
(Finsert_file_contents): Do call signal_after_change
Richard M. Stallman <rms@gnu.org>
parents:
17287
diff
changeset
|
4734 of normal visiting (not with REPLACE), which is done in a new buffer |
7fbce3c83857
(Finsert_file_contents): Do call signal_after_change
Richard M. Stallman <rms@gnu.org>
parents:
17287
diff
changeset
|
4735 "before" the buffer is changed. */ |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4736 if (inserted > 0 && total > 0 |
17396
7fbce3c83857
(Finsert_file_contents): Do call signal_after_change
Richard M. Stallman <rms@gnu.org>
parents:
17287
diff
changeset
|
4737 && (NILP (visit) || !NILP (replace))) |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
4738 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
4739 signal_after_change (PT, 0, inserted); |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
4740 update_compositions (PT, PT, CHECK_BORDER); |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
4741 } |
20432
987ddd5cb6ee
(Finsert_file_contents): Set Vlast_coding_system_used
Kenichi Handa <handa@m17n.org>
parents:
20370
diff
changeset
|
4742 |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4743 p = Vafter_insert_file_functions; |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
4744 while (CONSP (p)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4745 { |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
4746 insval = call1 (XCAR (p), make_number (inserted)); |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4747 if (!NILP (insval)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4748 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
4749 CHECK_NUMBER (insval); |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4750 inserted = XFASTINT (insval); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4751 } |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4752 QUIT; |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
4753 p = XCDR (p); |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4754 } |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4755 |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4756 if (!NILP (visit) |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4757 && current_buffer->modtime == -1) |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4758 { |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4759 /* If visiting nonexistent file, return nil. */ |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4760 report_file_error ("Opening input file", Fcons (orig_filename, Qnil)); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4761 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4762 |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4763 if (read_quit) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4764 Fsignal (Qquit, Qnil); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4765 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4766 /* ??? Retval needs to be dealt with in all cases consistently. */ |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4767 if (NILP (val)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4768 val = Fcons (orig_filename, |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4769 Fcons (make_number (inserted), |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4770 Qnil)); |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4771 |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4772 RETURN_UNGCPRO (unbind_to (count, val)); |
230 | 4773 } |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
4774 |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4775 static Lisp_Object build_annotations P_ ((Lisp_Object, Lisp_Object)); |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4776 static Lisp_Object build_annotations_2 P_ ((Lisp_Object, Lisp_Object, |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4777 Lisp_Object, Lisp_Object)); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4778 |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4779 /* If build_annotations switched buffers, switch back to BUF. |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4780 Kill the temporary buffer that was selected in the meantime. |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4781 |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4782 Since this kill only the last temporary buffer, some buffers remain |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4783 not killed if build_annotations switched buffers more than once. |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4784 -- K.Handa */ |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4785 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
4786 static Lisp_Object |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4787 build_annotations_unwind (buf) |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4788 Lisp_Object buf; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4789 { |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4790 Lisp_Object tembuf; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4791 |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4792 if (XBUFFER (buf) == current_buffer) |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4793 return Qnil; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4794 tembuf = Fcurrent_buffer (); |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4795 Fset_buffer (buf); |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4796 Fkill_buffer (tembuf); |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4797 return Qnil; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4798 } |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4799 |
41151
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4800 /* Decide the coding-system to encode the data with. */ |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4801 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4802 void |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4803 choose_write_coding_system (start, end, filename, |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4804 append, visit, lockname, coding) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4805 Lisp_Object start, end, filename, append, visit, lockname; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4806 struct coding_system *coding; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4807 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4808 Lisp_Object val; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4809 |
53363
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
4810 if (auto_saving |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
4811 && NILP (Fstring_equal (current_buffer->filename, |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
4812 current_buffer->auto_save_file_name))) |
51357
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
4813 { |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
4814 /* We use emacs-mule for auto saving... */ |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
4815 setup_coding_system (Qemacs_mule, coding); |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
4816 /* ... but with the special flag to indicate not to strip off |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
4817 leading code of eight-bit-control chars. */ |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
4818 coding->flags = 1; |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
4819 goto done_setup_coding; |
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
4820 } |
41151
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4821 else if (!NILP (Vcoding_system_for_write)) |
48876
0b4aeb4594ad
(choose_write_coding_system): Even if
Kenichi Handa <handa@m17n.org>
parents:
48725
diff
changeset
|
4822 { |
0b4aeb4594ad
(choose_write_coding_system): Even if
Kenichi Handa <handa@m17n.org>
parents:
48725
diff
changeset
|
4823 val = Vcoding_system_for_write; |
0b4aeb4594ad
(choose_write_coding_system): Even if
Kenichi Handa <handa@m17n.org>
parents:
48725
diff
changeset
|
4824 if (coding_system_require_warning |
0b4aeb4594ad
(choose_write_coding_system): Even if
Kenichi Handa <handa@m17n.org>
parents:
48725
diff
changeset
|
4825 && !NILP (Ffboundp (Vselect_safe_coding_system_function))) |
0b4aeb4594ad
(choose_write_coding_system): Even if
Kenichi Handa <handa@m17n.org>
parents:
48725
diff
changeset
|
4826 /* Confirm that VAL can surely encode the current region. */ |
0b4aeb4594ad
(choose_write_coding_system): Even if
Kenichi Handa <handa@m17n.org>
parents:
48725
diff
changeset
|
4827 val = call5 (Vselect_safe_coding_system_function, |
0b4aeb4594ad
(choose_write_coding_system): Even if
Kenichi Handa <handa@m17n.org>
parents:
48725
diff
changeset
|
4828 start, end, Fcons (Qt, Fcons (val, Qnil)), |
0b4aeb4594ad
(choose_write_coding_system): Even if
Kenichi Handa <handa@m17n.org>
parents:
48725
diff
changeset
|
4829 Qnil, filename); |
0b4aeb4594ad
(choose_write_coding_system): Even if
Kenichi Handa <handa@m17n.org>
parents:
48725
diff
changeset
|
4830 } |
41151
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4831 else |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4832 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4833 /* If the variable `buffer-file-coding-system' is set locally, |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4834 it means that the file was read with some kind of code |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4835 conversion or the variable is explicitly set by users. We |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4836 had better write it out with the same coding system even if |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4837 `enable-multibyte-characters' is nil. |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4838 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4839 If it is not set locally, we anyway have to convert EOL |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4840 format if the default value of `buffer-file-coding-system' |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4841 tells that it is not Unix-like (LF only) format. */ |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4842 int using_default_coding = 0; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4843 int force_raw_text = 0; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4844 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4845 val = current_buffer->buffer_file_coding_system; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4846 if (NILP (val) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4847 || NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil))) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4848 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4849 val = Qnil; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4850 if (NILP (current_buffer->enable_multibyte_characters)) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4851 force_raw_text = 1; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4852 } |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
4853 |
41151
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4854 if (NILP (val)) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4855 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4856 /* Check file-coding-system-alist. */ |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4857 Lisp_Object args[7], coding_systems; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4858 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4859 args[0] = Qwrite_region; args[1] = start; args[2] = end; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4860 args[3] = filename; args[4] = append; args[5] = visit; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4861 args[6] = lockname; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4862 coding_systems = Ffind_operation_coding_system (7, args); |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4863 if (CONSP (coding_systems) && !NILP (XCDR (coding_systems))) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4864 val = XCDR (coding_systems); |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4865 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4866 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4867 if (NILP (val) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4868 && !NILP (current_buffer->buffer_file_coding_system)) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4869 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4870 /* If we still have not decided a coding system, use the |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4871 default value of buffer-file-coding-system. */ |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4872 val = current_buffer->buffer_file_coding_system; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4873 using_default_coding = 1; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4874 } |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
4875 |
41151
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4876 if (!force_raw_text |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4877 && !NILP (Ffboundp (Vselect_safe_coding_system_function))) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4878 /* Confirm that VAL can surely encode the current region. */ |
45640
a181c1d41a78
(choose_write_coding_system): Call select-safe-coding-system properly.
Pavel Janík <Pavel@Janik.cz>
parents:
45628
diff
changeset
|
4879 val = call5 (Vselect_safe_coding_system_function, |
a181c1d41a78
(choose_write_coding_system): Call select-safe-coding-system properly.
Pavel Janík <Pavel@Janik.cz>
parents:
45628
diff
changeset
|
4880 start, end, val, Qnil, filename); |
41151
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4881 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4882 setup_coding_system (Fcheck_coding_system (val), coding); |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4883 if (coding->eol_type == CODING_EOL_UNDECIDED |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4884 && !using_default_coding) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4885 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4886 if (! EQ (default_buffer_file_coding.symbol, |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4887 buffer_defaults.buffer_file_coding_system)) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4888 setup_coding_system (buffer_defaults.buffer_file_coding_system, |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4889 &default_buffer_file_coding); |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4890 if (default_buffer_file_coding.eol_type != CODING_EOL_UNDECIDED) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4891 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4892 Lisp_Object subsidiaries; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4893 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4894 coding->eol_type = default_buffer_file_coding.eol_type; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4895 subsidiaries = Fget (coding->symbol, Qeol_type); |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4896 if (VECTORP (subsidiaries) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4897 && XVECTOR (subsidiaries)->size == 3) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4898 coding->symbol |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4899 = XVECTOR (subsidiaries)->contents[coding->eol_type]; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4900 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4901 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4902 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4903 if (force_raw_text) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4904 setup_raw_text_coding_system (coding); |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4905 goto done_setup_coding; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4906 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4907 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4908 setup_coding_system (Fcheck_coding_system (val), coding); |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4909 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4910 done_setup_coding: |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4911 if (!STRINGP (start) && !NILP (current_buffer->selective_display)) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4912 coding->mode |= CODING_MODE_SELECTIVE_DISPLAY; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4913 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4914 |
21020
f7ace8487b28
(auto_save_1): Pass new arg to Fwrite_region.
Richard M. Stallman <rms@gnu.org>
parents:
20944
diff
changeset
|
4915 DEFUN ("write-region", Fwrite_region, Swrite_region, 3, 7, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4916 "r\nFWrite region to file: \ni\ni\ni\np", |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4917 doc: /* Write current region into specified file. |
41993
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4918 When called from a program, requires three arguments: |
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4919 START, END and FILENAME. START and END are normally buffer positions |
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4920 specifying the part of the buffer to write. |
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4921 If START is nil, that means to use the entire buffer contents. |
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4922 If START is a string, then output that string to the file |
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4923 instead of any buffer contents; END is ignored. |
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4924 |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4925 Optional fourth argument APPEND if non-nil means |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4926 append to existing file contents (if any). If it is an integer, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4927 seek to that offset in the file before writing. |
56525
a86a4deb195d
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
56422
diff
changeset
|
4928 Optional fifth argument VISIT, if t or a string, means |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4929 set the last-save-file-modtime of buffer to this file's modtime |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4930 and mark buffer not modified. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4931 If VISIT is a string, it is a second file name; |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4932 the output goes to FILENAME, but the buffer is marked as visiting VISIT. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4933 VISIT is also the file name to lock and unlock for clash detection. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4934 If VISIT is neither t nor nil nor a string, |
46323
7500d7e20ea7
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
46293
diff
changeset
|
4935 that means do not display the \"Wrote file\" message. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4936 The optional sixth arg LOCKNAME, if non-nil, specifies the name to |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4937 use for locking and unlocking, overriding FILENAME and VISIT. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4938 The optional seventh arg MUSTBENEW, if non-nil, insists on a check |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4939 for an existing file with the same name. If MUSTBENEW is `excl', |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4940 that means to get an error if the file already exists; never overwrite. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4941 If MUSTBENEW is neither nil nor `excl', that means ask for |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4942 confirmation before overwriting, but do go ahead and overwrite the file |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4943 if the user confirms. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4944 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4945 This does code conversion according to the value of |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4946 `coding-system-for-write', `buffer-file-coding-system', or |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4947 `file-coding-system-alist', and sets the variable |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4948 `last-coding-system-used' to the coding system actually used. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4949 (start, end, filename, append, visit, lockname, mustbenew) |
25597
16a9c3c6f90e
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
25595
diff
changeset
|
4950 Lisp_Object start, end, filename, append, visit, lockname, mustbenew; |
230 | 4951 { |
4952 register int desc; | |
4953 int failure; | |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31775
diff
changeset
|
4954 int save_errno = 0; |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
4955 const unsigned char *fn; |
230 | 4956 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
|
4957 int tem; |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46285
diff
changeset
|
4958 int count = SPECPDL_INDEX (); |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4959 int count1; |
230 | 4960 #ifdef VMS |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4961 unsigned char *fname = 0; /* If non-0, original filename (must rename) */ |
230 | 4962 #endif /* VMS */ |
848 | 4963 Lisp_Object handler; |
2407
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
4964 Lisp_Object visit_file; |
41211
2e188a8c4ad8
(Fwrite_region): Avoid initializer for Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents:
41181
diff
changeset
|
4965 Lisp_Object annotations; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4966 Lisp_Object encoded_filename; |
33249
bc4bfaca97aa
(Fwrite_region): Use `visiting' rather than `visit'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31829
diff
changeset
|
4967 int visiting = (EQ (visit, Qt) || STRINGP (visit)); |
bc4bfaca97aa
(Fwrite_region): Use `visiting' rather than `visit'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31829
diff
changeset
|
4968 int quietly = !NILP (visit); |
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
4969 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4970 struct buffer *given_buffer; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4971 #ifdef DOS_NT |
18764
2ef1d8539441
(Fwrite_region) [DOS_NT]: Always use binary mode since
Richard M. Stallman <rms@gnu.org>
parents:
18744
diff
changeset
|
4972 int buffer_file_type = O_BINARY; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4973 #endif /* DOS_NT */ |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4974 struct coding_system coding; |
230 | 4975 |
33249
bc4bfaca97aa
(Fwrite_region): Use `visiting' rather than `visit'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31829
diff
changeset
|
4976 if (current_buffer->base_buffer && visiting) |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
4977 error ("Cannot do file visiting in an indirect buffer"); |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
4978 |
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
4979 if (!NILP (start) && !STRINGP (start)) |
230 | 4980 validate_region (&start, &end); |
4981 | |
41288
1d1183771c4f
(Fwrite_region): Move choose_write_coding_system to after build_annotations.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41211
diff
changeset
|
4982 GCPRO5 (start, filename, visit, visit_file, lockname); |
20432
987ddd5cb6ee
(Finsert_file_contents): Set Vlast_coding_system_used
Kenichi Handa <handa@m17n.org>
parents:
20370
diff
changeset
|
4983 |
2407
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
4984 filename = Fexpand_file_name (filename, Qnil); |
21020
f7ace8487b28
(auto_save_1): Pass new arg to Fwrite_region.
Richard M. Stallman <rms@gnu.org>
parents:
20944
diff
changeset
|
4985 |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4986 if (!NILP (mustbenew) && !EQ (mustbenew, Qexcl)) |
21304
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
4987 barf_or_query_if_file_exists (filename, "overwrite", 1, 0, 1); |
21020
f7ace8487b28
(auto_save_1): Pass new arg to Fwrite_region.
Richard M. Stallman <rms@gnu.org>
parents:
20944
diff
changeset
|
4988 |
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
4989 if (STRINGP (visit)) |
2435
b72453ad92ae
(Fwrite_region): Don't fail to set visit_file.
Richard M. Stallman <rms@gnu.org>
parents:
2407
diff
changeset
|
4990 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
|
4991 else |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
4992 visit_file = filename; |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
4993 |
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
4994 if (NILP (lockname)) |
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
4995 lockname = visit_file; |
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
4996 |
41211
2e188a8c4ad8
(Fwrite_region): Avoid initializer for Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents:
41181
diff
changeset
|
4997 annotations = Qnil; |
2e188a8c4ad8
(Fwrite_region): Avoid initializer for Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents:
41181
diff
changeset
|
4998 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4999 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5000 call the corresponding file handler. */ |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
5001 handler = Ffind_file_name_handler (filename, Qwrite_region); |
5758
23821c197271
(Fwrite_region): If FILENAME has no handler, see if VISIT has one.
Richard M. Stallman <rms@gnu.org>
parents:
5647
diff
changeset
|
5002 /* If FILENAME has no handler, see if VISIT has one. */ |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
5003 if (NILP (handler) && STRINGP (visit)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
5004 handler = Ffind_file_name_handler (visit, Qwrite_region); |
848 | 5005 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5006 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5007 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5008 Lisp_Object val; |
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
5009 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
|
5010 filename, append, visit); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5011 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5012 if (visiting) |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5013 { |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5014 SAVE_MODIFF = MODIFF; |
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
5015 XSETFASTINT (current_buffer->save_length, Z - BEG); |
1377
dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
Richard M. Stallman <rms@gnu.org>
parents:
1358
diff
changeset
|
5016 current_buffer->filename = visit_file; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5017 } |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5018 UNGCPRO; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5019 return val; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5020 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5021 |
51557
3df5bc22c5e4
(Fwrite_region): Save and restore restriction.
Kenichi Handa <handa@m17n.org>
parents:
51357
diff
changeset
|
5022 record_unwind_protect (save_restriction_restore, save_restriction_save ()); |
3df5bc22c5e4
(Fwrite_region): Save and restore restriction.
Kenichi Handa <handa@m17n.org>
parents:
51357
diff
changeset
|
5023 |
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
5024 /* 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
|
5025 if (NILP (start)) |
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
5026 { |
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
5027 XSETFASTINT (start, BEG); |
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
5028 XSETFASTINT (end, Z); |
51557
3df5bc22c5e4
(Fwrite_region): Save and restore restriction.
Kenichi Handa <handa@m17n.org>
parents:
51357
diff
changeset
|
5029 Fwiden (); |
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
5030 } |
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
5031 |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5032 record_unwind_protect (build_annotations_unwind, Fcurrent_buffer ()); |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46285
diff
changeset
|
5033 count1 = SPECPDL_INDEX (); |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5034 |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5035 given_buffer = current_buffer; |
45561
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5036 |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5037 if (!STRINGP (start)) |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5038 { |
45561
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5039 annotations = build_annotations (start, end); |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5040 |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5041 if (current_buffer != given_buffer) |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5042 { |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5043 XSETFASTINT (start, BEGV); |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5044 XSETFASTINT (end, ZV); |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5045 } |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5046 } |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5047 |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5048 UNGCPRO; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5049 |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5050 GCPRO5 (start, filename, annotations, visit_file, lockname); |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5051 |
41288
1d1183771c4f
(Fwrite_region): Move choose_write_coding_system to after build_annotations.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41211
diff
changeset
|
5052 /* Decide the coding-system to encode the data with. |
1d1183771c4f
(Fwrite_region): Move choose_write_coding_system to after build_annotations.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41211
diff
changeset
|
5053 We used to make this choice before calling build_annotations, but that |
1d1183771c4f
(Fwrite_region): Move choose_write_coding_system to after build_annotations.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41211
diff
changeset
|
5054 leads to problems when a write-annotate-function takes care of |
1d1183771c4f
(Fwrite_region): Move choose_write_coding_system to after build_annotations.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41211
diff
changeset
|
5055 unsavable chars (as was the case with X-Symbol). */ |
1d1183771c4f
(Fwrite_region): Move choose_write_coding_system to after build_annotations.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41211
diff
changeset
|
5056 choose_write_coding_system (start, end, filename, |
1d1183771c4f
(Fwrite_region): Move choose_write_coding_system to after build_annotations.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41211
diff
changeset
|
5057 append, visit, lockname, &coding); |
1d1183771c4f
(Fwrite_region): Move choose_write_coding_system to after build_annotations.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41211
diff
changeset
|
5058 Vlast_coding_system_used = coding.symbol; |
1d1183771c4f
(Fwrite_region): Move choose_write_coding_system to after build_annotations.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41211
diff
changeset
|
5059 |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5060 given_buffer = current_buffer; |
45561
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5061 if (! STRINGP (start)) |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5062 { |
45561
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5063 annotations = build_annotations_2 (start, end, |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5064 coding.pre_write_conversion, annotations); |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5065 if (current_buffer != given_buffer) |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5066 { |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5067 XSETFASTINT (start, BEGV); |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5068 XSETFASTINT (end, ZV); |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
5069 } |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5070 } |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5071 |
230 | 5072 #ifdef CLASH_DETECTION |
5073 if (!auto_saving) | |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
5074 { |
19206
c21764412813
(Fwrite_region): Turn off the feature of checking
Richard M. Stallman <rms@gnu.org>
parents:
19067
diff
changeset
|
5075 #if 0 /* This causes trouble for GNUS. */ |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
5076 /* If we've locked this file for some other buffer, |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
5077 query before proceeding. */ |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
5078 if (!visiting && EQ (Ffile_locked_p (lockname), Qt)) |
18744
1718bdf566fd
(Fwrite_region): Fix call2 argument.
Richard M. Stallman <rms@gnu.org>
parents:
18679
diff
changeset
|
5079 call2 (intern ("ask-user-about-lock"), filename, Vuser_login_name); |
19206
c21764412813
(Fwrite_region): Turn off the feature of checking
Richard M. Stallman <rms@gnu.org>
parents:
19067
diff
changeset
|
5080 #endif |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
5081 |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
5082 lock_file (lockname); |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
5083 } |
230 | 5084 #endif /* CLASH_DETECTION */ |
5085 | |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5086 encoded_filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5087 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5088 fn = SDATA (encoded_filename); |
230 | 5089 desc = -1; |
485 | 5090 if (!NILP (append)) |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
5091 #ifdef DOS_NT |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5092 desc = emacs_open (fn, O_WRONLY | buffer_file_type, 0); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
5093 #else /* not DOS_NT */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5094 desc = emacs_open (fn, O_WRONLY, 0); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
5095 #endif /* not DOS_NT */ |
230 | 5096 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5097 if (desc < 0 && (NILP (append) || errno == ENOENT)) |
230 | 5098 #ifdef VMS |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
5099 if (auto_saving) /* Overwrite any previous version of autosave file */ |
230 | 5100 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
5101 vms_truncate (fn); /* if fn exists, truncate to zero length */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5102 desc = emacs_open (fn, O_RDWR, 0); |
230 | 5103 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
|
5104 desc = creat_copy_attrs (STRINGP (current_buffer->filename) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5105 ? SDATA (current_buffer->filename) : 0, |
536 | 5106 fn); |
230 | 5107 } |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
5108 else /* Write to temporary name and rename if no errors */ |
230 | 5109 { |
5110 Lisp_Object temp_name; | |
5111 temp_name = Ffile_name_directory (filename); | |
5112 | |
485 | 5113 if (!NILP (temp_name)) |
230 | 5114 { |
5115 temp_name = Fmake_temp_name (concat2 (temp_name, | |
5116 build_string ("$$SAVE$$"))); | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5117 fname = SDATA (filename); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5118 fn = SDATA (temp_name); |
230 | 5119 desc = creat_copy_attrs (fname, fn); |
5120 if (desc < 0) | |
5121 { | |
5122 /* If we can't open the temporary file, try creating a new | |
5123 version of the original file. VMS "creat" creates a | |
5124 new version rather than truncating an existing file. */ | |
5125 fn = fname; | |
5126 fname = 0; | |
5127 desc = creat (fn, 0666); | |
5128 #if 0 /* This can clobber an existing file and fail to replace it, | |
5129 if the user runs out of space. */ | |
5130 if (desc < 0) | |
5131 { | |
5132 /* We can't make a new version; | |
5133 try to truncate and rewrite existing version if any. */ | |
5134 vms_truncate (fn); | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5135 desc = emacs_open (fn, O_RDWR, 0); |
230 | 5136 } |
5137 #endif | |
5138 } | |
5139 } | |
5140 else | |
5141 desc = creat (fn, 0666); | |
5142 } | |
5143 #else /* not VMS */ | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
5144 #ifdef DOS_NT |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5145 desc = emacs_open (fn, |
36693
ca1461008b2c
(Fwrite_region) [DOS_NT]: Remove O_TRUNC from open
Gerd Moellmann <gerd@gnu.org>
parents:
36633
diff
changeset
|
5146 O_WRONLY | O_CREAT | buffer_file_type |
ca1461008b2c
(Fwrite_region) [DOS_NT]: Remove O_TRUNC from open
Gerd Moellmann <gerd@gnu.org>
parents:
36633
diff
changeset
|
5147 | (EQ (mustbenew, Qexcl) ? O_EXCL : O_TRUNC), |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5148 S_IREAD | S_IWRITE); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
5149 #else /* not DOS_NT */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5150 desc = emacs_open (fn, O_WRONLY | O_TRUNC | O_CREAT |
28507
b6f06a755c7d
make_number/XINT/XUINT conversions; EQ/== fixes; ==Qnil -> NILP
Ken Raeburn <raeburn@raeburn.org>
parents:
28417
diff
changeset
|
5151 | (EQ (mustbenew, Qexcl) ? O_EXCL : 0), |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5152 auto_saving ? auto_save_mode_bits : 0666); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
5153 #endif /* not DOS_NT */ |
230 | 5154 #endif /* not VMS */ |
5155 | |
5156 if (desc < 0) | |
5157 { | |
5158 #ifdef CLASH_DETECTION | |
5159 save_errno = errno; | |
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
5160 if (!auto_saving) unlock_file (lockname); |
230 | 5161 errno = save_errno; |
5162 #endif /* CLASH_DETECTION */ | |
28846
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5163 UNGCPRO; |
230 | 5164 report_file_error ("Opening output file", Fcons (filename, Qnil)); |
5165 } | |
5166 | |
5167 record_unwind_protect (close_file_unwind, make_number (desc)); | |
5168 | |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
5169 if (!NILP (append) && !NILP (Ffile_regular_p (filename))) |
28846
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5170 { |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5171 long ret; |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
5172 |
28846
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5173 if (NUMBERP (append)) |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5174 ret = lseek (desc, XINT (append), 1); |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5175 else |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5176 ret = lseek (desc, 0, 2); |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5177 if (ret < 0) |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5178 { |
230 | 5179 #ifdef CLASH_DETECTION |
28846
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5180 if (!auto_saving) unlock_file (lockname); |
230 | 5181 #endif /* CLASH_DETECTION */ |
28846
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5182 UNGCPRO; |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5183 report_file_error ("Lseek error", Fcons (filename, Qnil)); |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5184 } |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5185 } |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
5186 |
28846
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
5187 UNGCPRO; |
230 | 5188 |
5189 #ifdef VMS | |
5190 /* | |
5191 * Kludge Warning: The VMS C RTL likes to insert carriage returns | |
5192 * if we do writes that don't end with a carriage return. Furthermore | |
5193 * it cannot handle writes of more then 16K. The modified | |
5194 * version of "sys_write" in SYSDEP.C (see comment there) copes with | |
5195 * this EXCEPT for the last record (iff it doesn't end with a carriage | |
5196 * return). This implies that if your buffer doesn't end with a carriage | |
5197 * return, you get one free... tough. However it also means that if | |
5198 * we make two calls to sys_write (a la the following code) you can | |
5199 * get one at the gap as well. The easiest way to fix this (honest) | |
5200 * is to move the gap to the next newline (or the end of the buffer). | |
5201 * Thus this change. | |
5202 * | |
5203 * Yech! | |
5204 */ | |
5205 if (GPT > BEG && GPT_ADDR[-1] != '\n') | |
5206 move_gap (find_next_newline (GPT, 1)); | |
17723
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5207 #else |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5208 /* Whether VMS or not, we must move the gap to the next of newline |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5209 when we must put designation sequences at beginning of line. */ |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5210 if (INTEGERP (start) |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5211 && coding.type == coding_type_iso2022 |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5212 && coding.flags & CODING_FLAG_ISO_DESIGNATE_AT_BOL |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5213 && GPT > BEG && GPT_ADDR[-1] != '\n') |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5214 { |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5215 int opoint = PT, opoint_byte = PT_BYTE; |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5216 scan_newline (PT, PT_BYTE, ZV, ZV_BYTE, 1, 0); |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5217 move_gap_both (PT, PT_BYTE); |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5218 SET_PT_BOTH (opoint, opoint_byte); |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5219 } |
230 | 5220 #endif |
5221 | |
5222 failure = 0; | |
5223 immediate_quit = 1; | |
5224 | |
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
5225 if (STRINGP (start)) |
230 | 5226 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5227 failure = 0 > a_write (desc, start, 0, SCHARS (start), |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5228 &annotations, &coding); |
230 | 5229 save_errno = errno; |
5230 } | |
5231 else if (XINT (start) != XINT (end)) | |
5232 { | |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5233 tem = CHAR_TO_BYTE (XINT (start)); |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5234 |
230 | 5235 if (XINT (start) < GPT) |
5236 { | |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5237 failure = 0 > a_write (desc, Qnil, XINT (start), |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5238 min (GPT, XINT (end)) - XINT (start), |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5239 &annotations, &coding); |
230 | 5240 save_errno = errno; |
5241 } | |
5242 | |
5243 if (XINT (end) > GPT && !failure) | |
5244 { | |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5245 tem = max (XINT (start), GPT); |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5246 failure = 0 > a_write (desc, Qnil, tem , XINT (end) - tem, |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5247 &annotations, &coding); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5248 save_errno = errno; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5249 } |
13451
3a69848f7892
(Fwrite_region): Move the code that writes annotations for empty files.
Richard M. Stallman <rms@gnu.org>
parents:
13221
diff
changeset
|
5250 } |
3a69848f7892
(Fwrite_region): Move the code that writes annotations for empty files.
Richard M. Stallman <rms@gnu.org>
parents:
13221
diff
changeset
|
5251 else |
3a69848f7892
(Fwrite_region): Move the code that writes annotations for empty files.
Richard M. Stallman <rms@gnu.org>
parents:
13221
diff
changeset
|
5252 { |
3a69848f7892
(Fwrite_region): Move the code that writes annotations for empty files.
Richard M. Stallman <rms@gnu.org>
parents:
13221
diff
changeset
|
5253 /* If file was empty, still need to write the annotations */ |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
5254 coding.mode |= CODING_MODE_LAST_BLOCK; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5255 failure = 0 > a_write (desc, Qnil, XINT (end), 0, &annotations, &coding); |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5256 save_errno = errno; |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5257 } |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5258 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
5259 if (CODING_REQUIRE_FLUSHING (&coding) |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
5260 && !(coding.mode & CODING_MODE_LAST_BLOCK) |
20651
0de9f45a1db6
(Finsert_file_contents): When not decoding,
Richard M. Stallman <rms@gnu.org>
parents:
20621
diff
changeset
|
5261 && ! failure) |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5262 { |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5263 /* We have to flush out a data. */ |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
5264 coding.mode |= CODING_MODE_LAST_BLOCK; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5265 failure = 0 > e_write (desc, Qnil, 0, 0, &coding); |
13451
3a69848f7892
(Fwrite_region): Move the code that writes annotations for empty files.
Richard M. Stallman <rms@gnu.org>
parents:
13221
diff
changeset
|
5266 save_errno = errno; |
230 | 5267 } |
5268 | |
5269 immediate_quit = 0; | |
5270 | |
2280
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
5271 #ifdef HAVE_FSYNC |
230 | 5272 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun). |
5273 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
|
5274 /* 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
|
5275 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
|
5276 if (!auto_saving && fsync (desc) < 0) |
12540
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
5277 { |
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
5278 /* If fsync fails with EINTR, don't treat that as serious. */ |
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
5279 if (errno != EINTR) |
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
5280 failure = 1, save_errno = errno; |
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
5281 } |
230 | 5282 #endif |
5283 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
5284 /* Spurious "file has changed on disk" warnings have been |
230 | 5285 observed on Suns as well. |
5286 It seems that `close' can change the modtime, under nfs. | |
5287 | |
5288 (This has supposedly been fixed in Sunos 4, | |
5289 but who knows about all the other machines with NFS?) */ | |
5290 #if 0 | |
5291 | |
5292 /* On VMS and APOLLO, must do the stat after the close | |
5293 since closing changes the modtime. */ | |
5294 #ifndef VMS | |
5295 #ifndef APOLLO | |
5296 /* Recall that #if defined does not work on VMS. */ | |
5297 #define FOO | |
5298 fstat (desc, &st); | |
5299 #endif | |
5300 #endif | |
5301 #endif | |
5302 | |
5303 /* NFS can report a write failure now. */ | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5304 if (emacs_close (desc) < 0) |
230 | 5305 failure = 1, save_errno = errno; |
5306 | |
5307 #ifdef VMS | |
5308 /* If we wrote to a temporary name and had no errors, rename to real name. */ | |
5309 if (fname) | |
5310 { | |
5311 if (!failure) | |
5312 failure = (rename (fn, fname) != 0), save_errno = errno; | |
5313 fn = fname; | |
5314 } | |
5315 #endif /* VMS */ | |
5316 | |
5317 #ifndef FOO | |
5318 stat (fn, &st); | |
5319 #endif | |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5320 /* Discard the unwind protect for close_file_unwind. */ |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5321 specpdl_ptr = specpdl + count1; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5322 /* Restore the original current buffer. */ |
8662
627a2ed242c0
(Ffile_accessible_directory_p): No need for gcpro.
Richard M. Stallman <rms@gnu.org>
parents:
8603
diff
changeset
|
5323 visit_file = unbind_to (count, visit_file); |
230 | 5324 |
5325 #ifdef CLASH_DETECTION | |
5326 if (!auto_saving) | |
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
5327 unlock_file (lockname); |
230 | 5328 #endif /* CLASH_DETECTION */ |
5329 | |
5330 /* Do this before reporting IO error | |
5331 to avoid a "file has changed on disk" warning on | |
5332 next attempt to save. */ | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5333 if (visiting) |
230 | 5334 current_buffer->modtime = st.st_mtime; |
5335 | |
5336 if (failure) | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5337 error ("IO error writing %s: %s", SDATA (filename), |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5338 emacs_strerror (save_errno)); |
230 | 5339 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5340 if (visiting) |
230 | 5341 { |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5342 SAVE_MODIFF = MODIFF; |
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
5343 XSETFASTINT (current_buffer->save_length, Z - BEG); |
1377
dcec08a3bec4
(Fwrite_region): If VISIT is a file name,
Richard M. Stallman <rms@gnu.org>
parents:
1358
diff
changeset
|
5344 current_buffer->filename = visit_file; |
7551
69f20f10799a
(Fwrite_region): Set update_mode_lines.
Richard M. Stallman <rms@gnu.org>
parents:
7549
diff
changeset
|
5345 update_mode_lines++; |
230 | 5346 } |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5347 else if (quietly) |
53363
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5348 { |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5349 if (auto_saving |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5350 && ! NILP (Fstring_equal (current_buffer->filename, |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5351 current_buffer->auto_save_file_name))) |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5352 SAVE_MODIFF = MODIFF; |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5353 |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5354 return Qnil; |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5355 } |
230 | 5356 |
5357 if (!auto_saving) | |
52212
db86c36d5abf
(Fwrite_region): Fix conditional expression to issue the right message.
Richard M. Stallman <rms@gnu.org>
parents:
52018
diff
changeset
|
5358 message_with_string ((INTEGERP (append) |
51636
758b45c47650
(Fwrite_region): Alternate messages for append and partial write.
Richard M. Stallman <rms@gnu.org>
parents:
51559
diff
changeset
|
5359 ? "Updated %s" |
758b45c47650
(Fwrite_region): Alternate messages for append and partial write.
Richard M. Stallman <rms@gnu.org>
parents:
51559
diff
changeset
|
5360 : ! NILP (append) |
758b45c47650
(Fwrite_region): Alternate messages for append and partial write.
Richard M. Stallman <rms@gnu.org>
parents:
51559
diff
changeset
|
5361 ? "Added to %s" |
758b45c47650
(Fwrite_region): Alternate messages for append and partial write.
Richard M. Stallman <rms@gnu.org>
parents:
51559
diff
changeset
|
5362 : "Wrote %s"), |
758b45c47650
(Fwrite_region): Alternate messages for append and partial write.
Richard M. Stallman <rms@gnu.org>
parents:
51559
diff
changeset
|
5363 visit_file, 1); |
230 | 5364 |
5365 return Qnil; | |
5366 } | |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5367 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5368 Lisp_Object merge (); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5369 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5370 DEFUN ("car-less-than-car", Fcar_less_than_car, Scar_less_than_car, 2, 2, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5371 doc: /* Return t if (car A) is numerically less than (car B). */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5372 (a, b) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5373 Lisp_Object a, b; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5374 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5375 return Flss (Fcar (a), Fcar (b)); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5376 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5377 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5378 /* 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
|
5379 the text between START and END, by calling all the functions in |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5380 write-region-annotate-functions and merging the lists they return. |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5381 If one of these functions switches to a different buffer, we assume |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5382 that buffer contains altered text. Therefore, the caller must |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5383 make sure to restore the current buffer in all cases, |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5384 as save-excursion would do. */ |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5385 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5386 static Lisp_Object |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5387 build_annotations (start, end) |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5388 Lisp_Object start, end; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5389 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5390 Lisp_Object annotations; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5391 Lisp_Object p, res; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5392 struct gcpro gcpro1, gcpro2; |
16044
63b85944e37b
(build_annotations): Remember original buffer that the
Richard M. Stallman <rms@gnu.org>
parents:
15738
diff
changeset
|
5393 Lisp_Object original_buffer; |
50829
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
5394 int i, used_global = 0; |
16044
63b85944e37b
(build_annotations): Remember original buffer that the
Richard M. Stallman <rms@gnu.org>
parents:
15738
diff
changeset
|
5395 |
63b85944e37b
(build_annotations): Remember original buffer that the
Richard M. Stallman <rms@gnu.org>
parents:
15738
diff
changeset
|
5396 XSETBUFFER (original_buffer, current_buffer); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5397 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5398 annotations = Qnil; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5399 p = Vwrite_region_annotate_functions; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5400 GCPRO2 (annotations, p); |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
5401 while (CONSP (p)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5402 { |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5403 struct buffer *given_buffer = current_buffer; |
50829
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
5404 if (EQ (Qt, XCAR (p)) && !used_global) |
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
5405 { /* Use the global value of the hook. */ |
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
5406 Lisp_Object arg[2]; |
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
5407 used_global = 1; |
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
5408 arg[0] = Fdefault_value (Qwrite_region_annotate_functions); |
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
5409 arg[1] = XCDR (p); |
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
5410 p = Fappend (2, arg); |
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
5411 continue; |
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
5412 } |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5413 Vwrite_region_annotations_so_far = annotations; |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
5414 res = call2 (XCAR (p), start, end); |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5415 /* If the function makes a different buffer current, |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5416 assume that means this buffer contains altered text to be output. |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5417 Reset START and END from the buffer bounds |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5418 and discard all previous annotations because they should have |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5419 been dealt with by this function. */ |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5420 if (current_buffer != given_buffer) |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5421 { |
18107
7e13abad5cca
(Fwrite_region, build_annotations):
Richard M. Stallman <rms@gnu.org>
parents:
17959
diff
changeset
|
5422 XSETFASTINT (start, BEGV); |
7e13abad5cca
(Fwrite_region, build_annotations):
Richard M. Stallman <rms@gnu.org>
parents:
17959
diff
changeset
|
5423 XSETFASTINT (end, ZV); |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5424 annotations = Qnil; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5425 } |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5426 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
|
5427 annotations = merge (annotations, res, Qcar_less_than_car); |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
5428 p = XCDR (p); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5429 } |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5430 |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5431 /* Now do the same for annotation functions implied by the file-format */ |
56977
87de6585e906
Delete declaration for removed Vauto_save_file_format.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56835
diff
changeset
|
5432 if (auto_saving && (!EQ (current_buffer->auto_save_file_format, Qt))) |
87de6585e906
Delete declaration for removed Vauto_save_file_format.
Luc Teirlinck <teirllm@auburn.edu>
parents:
56835
diff
changeset
|
5433 p = current_buffer->auto_save_file_format; |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5434 else |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5435 p = current_buffer->file_format; |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
5436 for (i = 0; CONSP (p); p = XCDR (p), ++i) |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5437 { |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5438 struct buffer *given_buffer = current_buffer; |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
5439 |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5440 Vwrite_region_annotations_so_far = annotations; |
30927
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5441 |
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5442 /* Value is either a list of annotations or nil if the function |
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5443 has written annotations to a temporary buffer, which is now |
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5444 current. */ |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
5445 res = call5 (Qformat_annotate_function, XCAR (p), start, end, |
30927
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5446 original_buffer, make_number (i)); |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5447 if (current_buffer != given_buffer) |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5448 { |
18107
7e13abad5cca
(Fwrite_region, build_annotations):
Richard M. Stallman <rms@gnu.org>
parents:
17959
diff
changeset
|
5449 XSETFASTINT (start, BEGV); |
7e13abad5cca
(Fwrite_region, build_annotations):
Richard M. Stallman <rms@gnu.org>
parents:
17959
diff
changeset
|
5450 XSETFASTINT (end, ZV); |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5451 annotations = Qnil; |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5452 } |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
5453 |
30927
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5454 if (CONSP (res)) |
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5455 annotations = merge (annotations, res, Qcar_less_than_car); |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5456 } |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5457 |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5458 UNGCPRO; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5459 return annotations; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5460 } |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5461 |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5462 static Lisp_Object |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5463 build_annotations_2 (start, end, pre_write_conversion, annotations) |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5464 Lisp_Object start, end, pre_write_conversion, annotations; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5465 { |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5466 struct gcpro gcpro1; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5467 Lisp_Object res; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5468 |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5469 GCPRO1 (annotations); |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5470 /* At last, do the same for the function PRE_WRITE_CONVERSION |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5471 implied by the current coding-system. */ |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5472 if (!NILP (pre_write_conversion)) |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5473 { |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5474 struct buffer *given_buffer = current_buffer; |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5475 Vwrite_region_annotations_so_far = annotations; |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5476 res = call2 (pre_write_conversion, start, end); |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5477 Flength (res); |
17723
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5478 annotations = (current_buffer != given_buffer |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5479 ? res |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5480 : merge (annotations, res, Qcar_less_than_car)); |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5481 } |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5482 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5483 UNGCPRO; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5484 return annotations; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5485 } |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5486 |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5487 /* Write to descriptor DESC the NCHARS chars starting at POS of STRING. |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5488 If STRING is nil, POS is the character position in the current buffer. |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5489 Intersperse with them the annotations from *ANNOT |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5490 which fall within the range of POS to POS + NCHARS, |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5491 each at its appropriate position. |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5492 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5493 We modify *ANNOT by discarding elements as we use them up. |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5494 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5495 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
|
5496 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5497 static int |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5498 a_write (desc, string, pos, nchars, annot, coding) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5499 int desc; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5500 Lisp_Object string; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5501 register int nchars; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5502 int pos; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5503 Lisp_Object *annot; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5504 struct coding_system *coding; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5505 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5506 Lisp_Object tem; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5507 int nextpos; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5508 int lastpos = pos + nchars; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5509 |
8079
3f543986a45a
(a_write): Loop while *ANNOT is listp, not consp. Previous code omitted
Roland McGrath <roland@gnu.org>
parents:
8068
diff
changeset
|
5510 while (NILP (*annot) || CONSP (*annot)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5511 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5512 tem = Fcar_safe (Fcar (*annot)); |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5513 nextpos = pos - 1; |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5514 if (INTEGERP (tem)) |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5515 nextpos = XFASTINT (tem); |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5516 |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5517 /* If there are no more annotations in this range, |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5518 output the rest of the range all at once. */ |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5519 if (! (nextpos >= pos && nextpos <= lastpos)) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5520 return e_write (desc, string, pos, lastpos, coding); |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5521 |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5522 /* Output buffer text up to the next annotation's position. */ |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5523 if (nextpos > pos) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5524 { |
28561
98330e399518
(a_write): Remove redundant semi-colons.
Eli Zaretskii <eliz@gnu.org>
parents:
28507
diff
changeset
|
5525 if (0 > e_write (desc, string, pos, nextpos, coding)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5526 return -1; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5527 pos = nextpos; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5528 } |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5529 /* Output the annotation. */ |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5530 tem = Fcdr (Fcar (*annot)); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5531 if (STRINGP (tem)) |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5532 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5533 if (0 > e_write (desc, tem, 0, SCHARS (tem), coding)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5534 return -1; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5535 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5536 *annot = Fcdr (*annot); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5537 } |
21514 | 5538 return 0; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5539 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5540 |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5541 #ifndef WRITE_BUF_SIZE |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5542 #define WRITE_BUF_SIZE (16 * 1024) |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5543 #endif |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5544 |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5545 /* Write text in the range START and END into descriptor DESC, |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5546 encoding them with coding system CODING. If STRING is nil, START |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5547 and END are character positions of the current buffer, else they |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5548 are indexes to the string STRING. */ |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5549 |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5550 static int |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5551 e_write (desc, string, start, end, coding) |
230 | 5552 int desc; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5553 Lisp_Object string; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5554 int start, end; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5555 struct coding_system *coding; |
230 | 5556 { |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5557 register char *addr; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5558 register int nbytes; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5559 char buf[WRITE_BUF_SIZE]; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5560 int return_val = 0; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5561 |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5562 if (start >= end) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5563 coding->composing = COMPOSITION_DISABLED; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5564 if (coding->composing != COMPOSITION_DISABLED) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5565 coding_save_composition (coding, start, end, string); |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5566 |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5567 if (STRINGP (string)) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5568 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5569 addr = SDATA (string); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5570 nbytes = SBYTES (string); |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
5571 coding->src_multibyte = STRING_MULTIBYTE (string); |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5572 } |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5573 else if (start < end) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5574 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5575 /* It is assured that the gap is not in the range START and END-1. */ |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5576 addr = CHAR_POS_ADDR (start); |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5577 nbytes = CHAR_TO_BYTE (end) - CHAR_TO_BYTE (start); |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
5578 coding->src_multibyte |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
5579 = !NILP (current_buffer->enable_multibyte_characters); |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5580 } |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5581 else |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5582 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5583 addr = ""; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5584 nbytes = 0; |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
5585 coding->src_multibyte = 1; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5586 } |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5587 |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5588 /* We used to have a code for handling selective display here. But, |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5589 now it is handled within encode_coding. */ |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5590 while (1) |
230 | 5591 { |
22441
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5592 int result; |
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5593 |
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5594 result = encode_coding (coding, addr, buf, nbytes, WRITE_BUF_SIZE); |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
5595 if (coding->produced > 0) |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5596 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5597 coding->produced -= emacs_write (desc, buf, coding->produced); |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5598 if (coding->produced) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5599 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5600 return_val = -1; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5601 break; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5602 } |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5603 } |
27564
bb284bade4d0
(e_write): Fix the handling of
Kenichi Handa <handa@m17n.org>
parents:
27134
diff
changeset
|
5604 nbytes -= coding->consumed; |
bb284bade4d0
(e_write): Fix the handling of
Kenichi Handa <handa@m17n.org>
parents:
27134
diff
changeset
|
5605 addr += coding->consumed; |
bb284bade4d0
(e_write): Fix the handling of
Kenichi Handa <handa@m17n.org>
parents:
27134
diff
changeset
|
5606 if (result == CODING_FINISH_INSUFFICIENT_SRC |
bb284bade4d0
(e_write): Fix the handling of
Kenichi Handa <handa@m17n.org>
parents:
27134
diff
changeset
|
5607 && nbytes > 0) |
22441
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5608 { |
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5609 /* The source text ends by an incomplete multibyte form. |
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5610 There's no way other than write it out as is. */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5611 nbytes -= emacs_write (desc, addr, nbytes); |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5612 if (nbytes) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5613 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5614 return_val = -1; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5615 break; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5616 } |
22441
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5617 } |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5618 if (nbytes <= 0) |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5619 break; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5620 start += coding->consumed_char; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5621 if (coding->cmp_data) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5622 coding_adjust_composition_offset (coding, start); |
230 | 5623 } |
29478
01f18086f2ac
(e_write): Free composition data if stored in
Kenichi Handa <handa@m17n.org>
parents:
29312
diff
changeset
|
5624 |
01f18086f2ac
(e_write): Free composition data if stored in
Kenichi Handa <handa@m17n.org>
parents:
29312
diff
changeset
|
5625 if (coding->cmp_data) |
01f18086f2ac
(e_write): Free composition data if stored in
Kenichi Handa <handa@m17n.org>
parents:
29312
diff
changeset
|
5626 coding_free_composition_data (coding); |
01f18086f2ac
(e_write): Free composition data if stored in
Kenichi Handa <handa@m17n.org>
parents:
29312
diff
changeset
|
5627 |
28561
98330e399518
(a_write): Remove redundant semi-colons.
Eli Zaretskii <eliz@gnu.org>
parents:
28507
diff
changeset
|
5628 return return_val; |
230 | 5629 } |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5630 |
230 | 5631 DEFUN ("verify-visited-file-modtime", Fverify_visited_file_modtime, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5632 Sverify_visited_file_modtime, 1, 1, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5633 doc: /* Return t if last mod time of BUF's visited file matches what BUF records. |
54895
0ea7bf2995a9
(Fverify_visited_file_modtime, Fvisited_file_modtime):
Luc Teirlinck <teirllm@auburn.edu>
parents:
54419
diff
changeset
|
5634 This means that the file has not been changed since it was visited or saved. |
0ea7bf2995a9
(Fverify_visited_file_modtime, Fvisited_file_modtime):
Luc Teirlinck <teirllm@auburn.edu>
parents:
54419
diff
changeset
|
5635 See Info node `(elisp)Modification Time' for more details. */) |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5636 (buf) |
230 | 5637 Lisp_Object buf; |
5638 { | |
5639 struct buffer *b; | |
5640 struct stat st; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5641 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5642 Lisp_Object filename; |
230 | 5643 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
5644 CHECK_BUFFER (buf); |
230 | 5645 b = XBUFFER (buf); |
5646 | |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
5647 if (!STRINGP (b->filename)) return Qt; |
230 | 5648 if (b->modtime == 0) return Qt; |
5649 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5650 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5651 call the corresponding file handler. */ |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
5652 handler = Ffind_file_name_handler (b->filename, |
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
5653 Qverify_visited_file_modtime); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5654 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5655 return call2 (handler, Qverify_visited_file_modtime, buf); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5656 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5657 filename = ENCODE_FILE (b->filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5658 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5659 if (stat (SDATA (filename), &st) < 0) |
230 | 5660 { |
5661 /* If the file doesn't exist now and didn't exist before, | |
5662 we say that it isn't modified, provided the error is a tame one. */ | |
5663 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR) | |
5664 st.st_mtime = -1; | |
5665 else | |
5666 st.st_mtime = 0; | |
5667 } | |
5668 if (st.st_mtime == b->modtime | |
5669 /* If both are positive, accept them if they are off by one second. */ | |
5670 || (st.st_mtime > 0 && b->modtime > 0 | |
5671 && (st.st_mtime == b->modtime + 1 | |
5672 || st.st_mtime == b->modtime - 1))) | |
5673 return Qt; | |
5674 return Qnil; | |
5675 } | |
5676 | |
5677 DEFUN ("clear-visited-file-modtime", Fclear_visited_file_modtime, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5678 Sclear_visited_file_modtime, 0, 0, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5679 doc: /* Clear out records of last mod time of visited file. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5680 Next attempt to save will certainly not complain of a discrepancy. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5681 () |
230 | 5682 { |
5683 current_buffer->modtime = 0; | |
5684 return Qnil; | |
5685 } | |
5686 | |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5687 DEFUN ("visited-file-modtime", Fvisited_file_modtime, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5688 Svisited_file_modtime, 0, 0, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5689 doc: /* Return the current buffer's recorded visited file modification time. |
56422
36170ef90094
(Fvisited_file_modtime): Return a list of two integers,
Luc Teirlinck <teirllm@auburn.edu>
parents:
56340
diff
changeset
|
5690 The value is a list of the form (HIGH LOW), like the time values |
54895
0ea7bf2995a9
(Fverify_visited_file_modtime, Fvisited_file_modtime):
Luc Teirlinck <teirllm@auburn.edu>
parents:
54419
diff
changeset
|
5691 that `file-attributes' returns. If the current buffer has no recorded |
0ea7bf2995a9
(Fverify_visited_file_modtime, Fvisited_file_modtime):
Luc Teirlinck <teirllm@auburn.edu>
parents:
54419
diff
changeset
|
5692 file modification time, this function returns 0. |
0ea7bf2995a9
(Fverify_visited_file_modtime, Fvisited_file_modtime):
Luc Teirlinck <teirllm@auburn.edu>
parents:
54419
diff
changeset
|
5693 See Info node `(elisp)Modification Time' for more details. */) |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5694 () |
230 | 5695 { |
56422
36170ef90094
(Fvisited_file_modtime): Return a list of two integers,
Luc Teirlinck <teirllm@auburn.edu>
parents:
56340
diff
changeset
|
5696 Lisp_Object tcons; |
36170ef90094
(Fvisited_file_modtime): Return a list of two integers,
Luc Teirlinck <teirllm@auburn.edu>
parents:
56340
diff
changeset
|
5697 tcons = long_to_cons ((unsigned long) current_buffer->modtime); |
36170ef90094
(Fvisited_file_modtime): Return a list of two integers,
Luc Teirlinck <teirllm@auburn.edu>
parents:
56340
diff
changeset
|
5698 if (CONSP (tcons)) |
36170ef90094
(Fvisited_file_modtime): Return a list of two integers,
Luc Teirlinck <teirllm@auburn.edu>
parents:
56340
diff
changeset
|
5699 return list2 (XCAR (tcons), XCDR (tcons)); |
36170ef90094
(Fvisited_file_modtime): Return a list of two integers,
Luc Teirlinck <teirllm@auburn.edu>
parents:
56340
diff
changeset
|
5700 return tcons; |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5701 } |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5702 |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5703 DEFUN ("set-visited-file-modtime", Fset_visited_file_modtime, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5704 Sset_visited_file_modtime, 0, 1, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5705 doc: /* Update buffer's recorded modification time from the visited file's time. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5706 Useful if the buffer was not read from the file normally |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5707 or if the file itself has been changed for some known benign reason. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5708 An argument specifies the modification time value to use |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5709 \(instead of that of the visited file), in the form of a list |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5710 \(HIGH . LOW) or (HIGH LOW). */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5711 (time_list) |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5712 Lisp_Object time_list; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5713 { |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5714 if (!NILP (time_list)) |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5715 current_buffer->modtime = cons_to_long (time_list); |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5716 else |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5717 { |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5718 register Lisp_Object filename; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5719 struct stat st; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5720 Lisp_Object handler; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5721 |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5722 filename = Fexpand_file_name (current_buffer->filename, Qnil); |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5723 |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5724 /* 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
|
5725 call the corresponding file handler. */ |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
5726 handler = Ffind_file_name_handler (filename, Qset_visited_file_modtime); |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5727 if (!NILP (handler)) |
3721
4550c56785d8
(Fset_visited_file_modtime): Don't give the handler
Richard M. Stallman <rms@gnu.org>
parents:
3705
diff
changeset
|
5728 /* 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
|
5729 return call2 (handler, Qset_visited_file_modtime, Qnil); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5730 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5731 filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5732 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5733 if (stat (SDATA (filename), &st) >= 0) |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5734 current_buffer->modtime = st.st_mtime; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5735 } |
230 | 5736 |
5737 return Qnil; | |
5738 } | |
5739 | |
5740 Lisp_Object | |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5741 auto_save_error (error) |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5742 Lisp_Object error; |
230 | 5743 { |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5744 Lisp_Object args[3], msg; |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5745 int i, nbytes; |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5746 struct gcpro gcpro1; |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
5747 |
230 | 5748 ring_bell (); |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
5749 |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5750 args[0] = build_string ("Auto-saving %s: %s"); |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5751 args[1] = current_buffer->name; |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5752 args[2] = Ferror_message_string (error); |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5753 msg = Fformat (3, args); |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5754 GCPRO1 (msg); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5755 nbytes = SBYTES (msg); |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5756 |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5757 for (i = 0; i < 3; ++i) |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5758 { |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5759 if (i == 0) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5760 message2 (SDATA (msg), nbytes, STRING_MULTIBYTE (msg)); |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5761 else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5762 message2_nolog (SDATA (msg), nbytes, STRING_MULTIBYTE (msg)); |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5763 Fsleep_for (make_number (1), Qnil); |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5764 } |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5765 |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5766 UNGCPRO; |
230 | 5767 return Qnil; |
5768 } | |
5769 | |
5770 Lisp_Object | |
5771 auto_save_1 () | |
5772 { | |
5773 struct stat st; | |
57955 | 5774 Lisp_Object modes; |
5775 | |
5776 auto_save_mode_bits = 0666; | |
230 | 5777 |
5778 /* Get visited file's mode to become the auto save file's mode. */ | |
57955 | 5779 if (! NILP (current_buffer->filename)) |
5780 { | |
5781 if (stat (SDATA (current_buffer->filename), &st) >= 0) | |
5782 /* But make sure we can overwrite it later! */ | |
5783 auto_save_mode_bits = st.st_mode | 0600; | |
5784 else if ((modes = Ffile_modes (current_buffer->filename), | |
5785 INTEGERP (modes))) | |
5786 /* Remote files don't cooperate with stat. */ | |
5787 auto_save_mode_bits = XINT (modes) | 0600; | |
5788 } | |
230 | 5789 |
5790 return | |
5791 Fwrite_region (Qnil, Qnil, | |
5792 current_buffer->auto_save_file_name, | |
21020
f7ace8487b28
(auto_save_1): Pass new arg to Fwrite_region.
Richard M. Stallman <rms@gnu.org>
parents:
20944
diff
changeset
|
5793 Qnil, Qlambda, Qnil, Qnil); |
230 | 5794 } |
5795 | |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5796 static Lisp_Object |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5797 do_auto_save_unwind (stream) /* used as unwind-protect function */ |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5798 Lisp_Object stream; |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5799 { |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
5800 auto_saving = 0; |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5801 if (!NILP (stream)) |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
5802 fclose ((FILE *) (XFASTINT (XCAR (stream)) << 16 |
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
5803 | XFASTINT (XCDR (stream)))); |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5804 return Qnil; |
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5805 } |
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5806 |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5807 static Lisp_Object |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5808 do_auto_save_unwind_1 (value) /* used as unwind-protect function */ |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5809 Lisp_Object value; |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5810 { |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5811 minibuffer_auto_raise = XINT (value); |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5812 return Qnil; |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5813 } |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5814 |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5815 static Lisp_Object |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5816 do_auto_save_make_dir (dir) |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5817 Lisp_Object dir; |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5818 { |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5819 return call2 (Qmake_directory, dir, Qt); |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5820 } |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5821 |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5822 static Lisp_Object |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5823 do_auto_save_eh (ignore) |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5824 Lisp_Object ignore; |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5825 { |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5826 return Qnil; |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5827 } |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5828 |
230 | 5829 DEFUN ("do-auto-save", Fdo_auto_save, Sdo_auto_save, 0, 2, "", |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5830 doc: /* Auto-save all buffers that need it. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5831 This is all buffers that have auto-saving enabled |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5832 and are changed since last auto-saved. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5833 Auto-saving writes the buffer into a file |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5834 so that your editing is not lost if the system crashes. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5835 This file is not the file you visited; that changes only when you save. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5836 Normally we run the normal hook `auto-save-hook' before saving. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5837 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5838 A non-nil NO-MESSAGE argument means do not print any message if successful. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5839 A non-nil CURRENT-ONLY argument means save only current buffer. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5840 (no_message, current_only) |
1775
f9ac4c0d8b72
* fileio.c (Fdo_auto_save): Add CURRENT_ONLY argument, as
Jim Blandy <jimb@redhat.com>
parents:
1763
diff
changeset
|
5841 Lisp_Object no_message, current_only; |
230 | 5842 { |
5843 struct buffer *old = current_buffer, *b; | |
5844 Lisp_Object tail, buf; | |
5845 int auto_saved = 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
|
5846 int do_handled_files; |
4270
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
5847 Lisp_Object oquit; |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5848 FILE *stream; |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5849 Lisp_Object lispstream; |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46285
diff
changeset
|
5850 int count = SPECPDL_INDEX (); |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5851 int orig_minibuffer_auto_raise = minibuffer_auto_raise; |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5852 int old_message_p = 0; |
49191
9b836b1dabe5
(syms_of_fileio) <directory-sep-char>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
48876
diff
changeset
|
5853 struct gcpro gcpro1, gcpro2; |
42407
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5854 |
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5855 if (max_specpdl_size < specpdl_size + 40) |
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5856 max_specpdl_size = specpdl_size + 40; |
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5857 |
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5858 if (minibuf_level) |
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5859 no_message = Qt; |
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5860 |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5861 if (NILP (no_message)) |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5862 { |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5863 old_message_p = push_message (); |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5864 record_unwind_protect (pop_message_unwind, Qnil); |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5865 } |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
5866 |
4270
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
5867 /* 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
|
5868 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
|
5869 oquit = Vquit_flag; |
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
5870 Vquit_flag = Qnil; |
230 | 5871 |
5872 /* No GCPRO needed, because (when it matters) all Lisp_Object variables | |
5873 point to non-strings reached from Vbuffer_alist. */ | |
5874 | |
485 | 5875 if (!NILP (Vrun_hooks)) |
230 | 5876 call1 (Vrun_hooks, intern ("auto-save-hook")); |
5877 | |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5878 if (STRINGP (Vauto_save_list_file_name)) |
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5879 { |
37961
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5880 Lisp_Object listfile; |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
5881 |
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
5882 listfile = Fexpand_file_name (Vauto_save_list_file_name, Qnil); |
37961
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5883 |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5884 /* Don't try to create the directory when shutting down Emacs, |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5885 because creating the directory might signal an error, and |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5886 that would leave Emacs in a strange state. */ |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5887 if (!NILP (Vrun_hooks)) |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5888 { |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5889 Lisp_Object dir; |
49191
9b836b1dabe5
(syms_of_fileio) <directory-sep-char>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
48876
diff
changeset
|
5890 dir = Qnil; |
9b836b1dabe5
(syms_of_fileio) <directory-sep-char>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
48876
diff
changeset
|
5891 GCPRO2 (dir, listfile); |
37961
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5892 dir = Ffile_name_directory (listfile); |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5893 if (NILP (Ffile_directory_p (dir))) |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5894 internal_condition_case_1 (do_auto_save_make_dir, |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5895 dir, Fcons (Fcons (Qfile_error, Qnil), Qnil), |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5896 do_auto_save_eh); |
49191
9b836b1dabe5
(syms_of_fileio) <directory-sep-char>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
48876
diff
changeset
|
5897 UNGCPRO; |
37961
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5898 } |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
5899 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5900 stream = fopen (SDATA (listfile), "w"); |
19401
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5901 if (stream != NULL) |
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5902 { |
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5903 /* Arrange to close that file whether or not we get an error. |
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5904 Also reset auto_saving to 0. */ |
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5905 lispstream = Fcons (Qnil, Qnil); |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39682
diff
changeset
|
5906 XSETCARFASTINT (lispstream, (EMACS_UINT)stream >> 16); |
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39682
diff
changeset
|
5907 XSETCDRFASTINT (lispstream, (EMACS_UINT)stream & 0xffff); |
19401
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5908 } |
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5909 else |
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5910 lispstream = Qnil; |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5911 } |
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5912 else |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5913 { |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5914 stream = NULL; |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5915 lispstream = Qnil; |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5916 } |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5917 |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5918 record_unwind_protect (do_auto_save_unwind, lispstream); |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5919 record_unwind_protect (do_auto_save_unwind_1, |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5920 make_number (minibuffer_auto_raise)); |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5921 minibuffer_auto_raise = 0; |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
5922 auto_saving = 1; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
5923 |
53363
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5924 /* On first pass, save all files that don't have handlers. |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5925 On second pass, save all files that do have handlers. |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5926 |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5927 If Emacs is crashing, the handlers may tweak what is causing |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5928 Emacs to crash in the first place, and it would be a shame if |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5929 Emacs failed to autosave perfectly ordinary files because it |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5930 couldn't handle some ange-ftp'd file. */ |
d6ab4f5d0c6f
(choose_write_coding_system): Ignore auto_saving
Richard M. Stallman <rms@gnu.org>
parents:
53189
diff
changeset
|
5931 |
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
|
5932 for (do_handled_files = 0; do_handled_files < 2; do_handled_files++) |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
5933 for (tail = Vbuffer_alist; GC_CONSP (tail); tail = XCDR (tail)) |
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
|
5934 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
5935 buf = XCDR (XCAR (tail)); |
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
|
5936 b = XBUFFER (buf); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
5937 |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5938 /* Record all the buffers that have auto save mode |
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
5939 in the special file that lists them. For each of these buffers, |
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
5940 Record visited name (if any) and auto save name. */ |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
5941 if (STRINGP (b->auto_save_file_name) |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5942 && stream != NULL && do_handled_files == 0) |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5943 { |
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
5944 if (!NILP (b->filename)) |
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
5945 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5946 fwrite (SDATA (b->filename), 1, |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5947 SBYTES (b->filename), stream); |
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
5948 } |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5949 putc ('\n', stream); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5950 fwrite (SDATA (b->auto_save_file_name), 1, |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5951 SBYTES (b->auto_save_file_name), stream); |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5952 putc ('\n', stream); |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5953 } |
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
|
5954 |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5955 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
|
5956 && 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
|
5957 continue; |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5958 |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5959 /* Don't auto-save indirect buffers. |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5960 The base buffer takes care of it. */ |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5961 if (b->base_buffer) |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5962 continue; |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5963 |
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
|
5964 /* 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
|
5965 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
|
5966 and file changed since last real save. */ |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
5967 if (STRINGP (b->auto_save_file_name) |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5968 && BUF_SAVE_MODIFF (b) < BUF_MODIFF (b) |
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5969 && b->auto_save_modified < BUF_MODIFF (b) |
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
5970 /* -1 means we've turned off autosaving for a while--see below. */ |
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
5971 && XINT (b->save_length) >= 0 |
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5972 && (do_handled_files |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
5973 || NILP (Ffind_file_name_handler (b->auto_save_file_name, |
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
5974 Qwrite_region)))) |
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5975 { |
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
|
5976 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
|
5977 |
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
|
5978 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
|
5979 |
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
|
5980 /* 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
|
5981 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
|
5982 && 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
|
5983 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
|
5984 |
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
|
5985 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
|
5986 > (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
|
5987 /* 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
|
5988 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
|
5989 && 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
|
5990 /* 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
|
5991 && !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
|
5992 && 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
|
5993 { |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5994 /* It has shrunk too much; turn off auto-saving here. */ |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5995 minibuffer_auto_raise = orig_minibuffer_auto_raise; |
43081
6307d3a2321b
(Fdo_auto_save): Improve "auto save disabled" msg.
Richard M. Stallman <rms@gnu.org>
parents:
42407
diff
changeset
|
5996 message_with_string ("Buffer %s has shrunk a lot; auto save disabled in that buffer until next real save", |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
5997 b->name, 1); |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5998 minibuffer_auto_raise = 0; |
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
5999 /* Turn off auto-saving until there's a real save, |
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
6000 and prevent any more warnings. */ |
9266
811ad893828b
(Fdefault_file_modes, Finsert_file_contents, Fdo_auto_save): Use new accessor
Karl Heuer <kwzh@gnu.org>
parents:
9241
diff
changeset
|
6001 XSETINT (b->save_length, -1); |
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
6002 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
|
6003 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
|
6004 } |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
6005 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
|
6006 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
|
6007 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
|
6008 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
|
6009 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
|
6010 b->auto_save_modified = BUF_MODIFF (b); |
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
6011 XSETFASTINT (current_buffer->save_length, Z - BEG); |
1869
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
6012 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
|
6013 |
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
|
6014 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
|
6015 |
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
|
6016 /* 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
|
6017 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
|
6018 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
|
6019 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
|
6020 } |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
6021 } |
230 | 6022 |
1059
430923239064
(Fdo_auto_save): Always call record_auto_save.
Richard M. Stallman <rms@gnu.org>
parents:
1044
diff
changeset
|
6023 /* 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
|
6024 record_auto_save (); |
230 | 6025 |
1775
f9ac4c0d8b72
* fileio.c (Fdo_auto_save): Add CURRENT_ONLY argument, as
Jim Blandy <jimb@redhat.com>
parents:
1763
diff
changeset
|
6026 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
|
6027 { |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
6028 if (old_message_p) |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6029 { |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
6030 /* If we are going to restore an old message, |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
6031 give time to read ours. */ |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6032 sit_for (1, 0, 0, 0, 0); |
25348
5c1dc7109bb8
(Fdo_auto_save): Use push_message, restore_message,
Gerd Moellmann <gerd@gnu.org>
parents:
25321
diff
changeset
|
6033 restore_message (); |
14616
051d6225ca90
(Fdo_auto_save): Pause before restoring old message.
Karl Heuer <kwzh@gnu.org>
parents:
14571
diff
changeset
|
6034 } |
5875
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
6035 else |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
6036 /* If we displayed a message and then restored a state |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
6037 with no message, leave a "done" message on the screen. */ |
5875
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
6038 message1 ("Auto-saving...done"); |
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
6039 } |
230 | 6040 |
4270
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
6041 Vquit_flag = oquit; |
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
6042 |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
6043 /* This restores the message-stack status. */ |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
6044 unbind_to (count, Qnil); |
230 | 6045 return Qnil; |
6046 } | |
6047 | |
6048 DEFUN ("set-buffer-auto-saved", Fset_buffer_auto_saved, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6049 Sset_buffer_auto_saved, 0, 0, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6050 doc: /* Mark current buffer as auto-saved with its current text. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6051 No auto-save file will be written until the buffer changes again. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6052 () |
230 | 6053 { |
6054 current_buffer->auto_save_modified = MODIFF; | |
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
6055 XSETFASTINT (current_buffer->save_length, Z - BEG); |
5553
22a65d8c0b9a
(Fdo_auto_save): If auto save times out, don't try again for 20 minutes.
Richard M. Stallman <rms@gnu.org>
parents:
5529
diff
changeset
|
6056 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
|
6057 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
|
6058 } |
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
|
6059 |
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
|
6060 DEFUN ("clear-buffer-auto-save-failure", Fclear_buffer_auto_save_failure, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6061 Sclear_buffer_auto_save_failure, 0, 0, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6062 doc: /* Clear any record of a recent auto-save failure in the current buffer. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6063 () |
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
|
6064 { |
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
|
6065 current_buffer->auto_save_failure_time = -1; |
230 | 6066 return Qnil; |
6067 } | |
6068 | |
6069 DEFUN ("recent-auto-save-p", Frecent_auto_save_p, Srecent_auto_save_p, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6070 0, 0, 0, |
62296
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
6071 doc: /* Return t if current buffer has been auto-saved recently. |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
6072 More precisely, if it has been auto-saved since last read from or saved |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
6073 in the visited file. If the buffer has no visited file, |
3302236fcb60
(Ffind_file_name_handler): Handle lambda-exp as handler.
Richard M. Stallman <rms@gnu.org>
parents:
62188
diff
changeset
|
6074 then any auto-save counts as "recent". */) |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6075 () |
230 | 6076 { |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
6077 return (SAVE_MODIFF < current_buffer->auto_save_modified) ? Qt : Qnil; |
230 | 6078 } |
6079 | |
6080 /* Reading and completing file names */ | |
6081 extern Lisp_Object Ffile_name_completion (), Ffile_name_all_completions (); | |
6082 | |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6083 /* 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
|
6084 |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6085 static Lisp_Object |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6086 double_dollars (val) |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6087 Lisp_Object val; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6088 { |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
6089 register const unsigned char *old; |
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
6090 register unsigned char *new; |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6091 register int n; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6092 int osize, count; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6093 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6094 osize = SBYTES (val); |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
6095 |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
6096 /* Count the number of $ characters. */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6097 for (n = osize, count = 0, old = SDATA (val); n > 0; n--) |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6098 if (*old++ == '$') count++; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6099 if (count > 0) |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6100 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6101 old = SDATA (val); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6102 val = make_uninit_multibyte_string (SCHARS (val) + count, |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
6103 osize + count); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6104 new = SDATA (val); |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6105 for (n = osize; n > 0; n--) |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6106 if (*old != '$') |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6107 *new++ = *old++; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6108 else |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6109 { |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6110 *new++ = '$'; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6111 *new++ = '$'; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6112 old++; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6113 } |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6114 } |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6115 return val; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6116 } |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6117 |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6118 static Lisp_Object |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6119 read_file_name_cleanup (arg) |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6120 Lisp_Object arg; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6121 { |
46020
9c590b35c6cf
(read_file_name_cleanup): Add missing return.
Juanma Barranquero <lekktu@gmail.com>
parents:
45640
diff
changeset
|
6122 return (current_buffer->directory = arg); |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6123 } |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6124 |
230 | 6125 DEFUN ("read-file-name-internal", Fread_file_name_internal, Sread_file_name_internal, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6126 3, 3, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6127 doc: /* Internal subroutine for read-file-name. Do not call this. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6128 (string, dir, action) |
230 | 6129 Lisp_Object string, dir, action; |
6130 /* action is nil for complete, t for return list of completions, | |
6131 lambda for verify final value */ | |
6132 { | |
6133 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
|
6134 int changed; |
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
6135 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6136 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
6137 CHECK_STRING (string); |
16651
e7449d679e72
(Fread_file_name_internal): Verify STRING is a string.
Richard M. Stallman <rms@gnu.org>
parents:
16534
diff
changeset
|
6138 |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6139 realdir = dir; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6140 name = string; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6141 orig_string = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6142 specdir = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6143 changed = 0; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6144 /* No need to protect ACTION--we only compare it with t and nil. */ |
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
6145 GCPRO5 (string, realdir, name, specdir, orig_string); |
230 | 6146 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6147 if (SCHARS (string) == 0) |
230 | 6148 { |
6149 if (EQ (action, Qlambda)) | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6150 { |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6151 UNGCPRO; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6152 return Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6153 } |
230 | 6154 } |
6155 else | |
6156 { | |
6157 orig_string = string; | |
6158 string = Fsubstitute_in_file_name (string); | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6159 changed = NILP (Fstring_equal (string, orig_string)); |
230 | 6160 name = Ffile_name_nondirectory (string); |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6161 val = Ffile_name_directory (string); |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6162 if (! NILP (val)) |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6163 realdir = Fexpand_file_name (val, realdir); |
230 | 6164 } |
6165 | |
485 | 6166 if (NILP (action)) |
230 | 6167 { |
6168 specdir = Ffile_name_directory (string); | |
6169 val = Ffile_name_completion (name, realdir); | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6170 UNGCPRO; |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
6171 if (!STRINGP (val)) |
230 | 6172 { |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6173 if (changed) |
8454
b09c4b7a4729
(Fread_file_name_internal): Call double_dollars when `changed' is set.
Richard M. Stallman <rms@gnu.org>
parents:
8317
diff
changeset
|
6174 return double_dollars (string); |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6175 return val; |
230 | 6176 } |
6177 | |
485 | 6178 if (!NILP (specdir)) |
230 | 6179 val = concat2 (specdir, val); |
6180 #ifndef VMS | |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6181 return double_dollars (val); |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6182 #else /* not VMS */ |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6183 return val; |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6184 #endif /* not VMS */ |
230 | 6185 } |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6186 UNGCPRO; |
230 | 6187 |
6188 if (EQ (action, Qt)) | |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6189 { |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6190 Lisp_Object all = Ffile_name_all_completions (name, realdir); |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6191 Lisp_Object comp; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6192 int count; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6193 |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6194 if (NILP (Vread_file_name_predicate) |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6195 || EQ (Vread_file_name_predicate, Qfile_exists_p)) |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6196 return all; |
45551
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6197 |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6198 #ifndef VMS |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6199 if (EQ (Vread_file_name_predicate, Qfile_directory_p)) |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6200 { |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
6201 /* Brute-force speed up for directory checking: |
45551
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6202 Discard strings which don't end in a slash. */ |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6203 for (comp = Qnil; CONSP (all); all = XCDR (all)) |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6204 { |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6205 Lisp_Object tem = XCAR (all); |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6206 int len; |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6207 if (STRINGP (tem) && |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6208 (len = SCHARS (tem), len > 0) && |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6209 IS_DIRECTORY_SEP (SREF (tem, len-1))) |
45551
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6210 comp = Fcons (tem, comp); |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6211 } |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6212 } |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6213 else |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6214 #endif |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6215 { |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6216 /* Must do it the hard (and slow) way. */ |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6217 GCPRO3 (all, comp, specdir); |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46285
diff
changeset
|
6218 count = SPECPDL_INDEX (); |
45551
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6219 record_unwind_protect (read_file_name_cleanup, current_buffer->directory); |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6220 current_buffer->directory = realdir; |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6221 for (comp = Qnil; CONSP (all); all = XCDR (all)) |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6222 if (!NILP (call1 (Vread_file_name_predicate, XCAR (all)))) |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6223 comp = Fcons (XCAR (all), comp); |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6224 unbind_to (count, Qnil); |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6225 UNGCPRO; |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
6226 } |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6227 return Fnreverse (comp); |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6228 } |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6229 |
230 | 6230 /* Only other case actually used is ACTION = lambda */ |
6231 #ifdef VMS | |
6232 /* Supposedly this helps commands such as `cd' that read directory names, | |
6233 but can someone explain how it helps them? -- RMS */ | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6234 if (SCHARS (name) == 0) |
230 | 6235 return Qt; |
6236 #endif /* VMS */ | |
53764
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6237 string = Fexpand_file_name (string, dir); |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6238 if (!NILP (Vread_file_name_predicate)) |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6239 return call1 (Vread_file_name_predicate, string); |
230 | 6240 return Ffile_exists_p (string); |
6241 } | |
6242 | |
57942
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6243 DEFUN ("next-read-file-uses-dialog-p", Fnext_read_file_uses_dialog_p, |
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6244 Snext_read_file_uses_dialog_p, 0, 0, 0, |
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6245 doc: /* Return t if a call to `read-file-name' will use a dialog. |
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6246 The return value is only relevant for a call to `read-file-name' that happens |
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6247 before any other event (mouse or keypress) is handeled. */) |
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6248 () |
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6249 { |
59146
9bde7721ad0f
* dispextern.h: Change HAVE_CARBON to MAC_OS.
Steven Tamm <steventamm@mac.com>
parents:
59050
diff
changeset
|
6250 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK) || defined (HAVE_CARBON) |
57942
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6251 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event)) |
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6252 && use_dialog_box |
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6253 && use_file_dialog |
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6254 && have_menus_p ()) |
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6255 return Qt; |
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6256 #endif |
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6257 return Qnil; |
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6258 } |
57955 | 6259 |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6260 DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 6, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6261 doc: /* Read file name, prompting with PROMPT and completing in directory DIR. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6262 Value is not expanded---you must call `expand-file-name' yourself. |
53764
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6263 Default name to DEFAULT-FILENAME if user exits the minibuffer with |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6264 the same non-empty string that was inserted by this function. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6265 (If DEFAULT-FILENAME is omitted, the visited file name is used, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6266 except that if INITIAL is specified, that combined with DIR is used.) |
53764
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6267 If the user exits with an empty minibuffer, this function returns |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6268 an empty string. (This can only happen if the user erased the |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6269 pre-inserted contents or if `insert-default-directory' is nil.) |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6270 Fourth arg MUSTMATCH non-nil means require existing file's name. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6271 Non-nil and non-t means also require confirmation after completion. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6272 Fifth arg INITIAL specifies text to start with. |
53764
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6273 If optional sixth arg PREDICATE is non-nil, possible completions and |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6274 the resulting file name must satisfy (funcall PREDICATE NAME). |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6275 DIR should be an absolute directory name. It defaults to the value of |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6276 `default-directory'. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6277 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6278 If this command was invoked with the mouse, use a file dialog box if |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6279 `use-dialog-box' is non-nil, and the window system or X toolkit in use |
56667
00e5170987b5
(Fread_file_name): Doc fix.
John Paul Wallington <jpw@pobox.com>
parents:
56615
diff
changeset
|
6280 provides a file dialog box. |
00e5170987b5
(Fread_file_name): Doc fix.
John Paul Wallington <jpw@pobox.com>
parents:
56615
diff
changeset
|
6281 |
00e5170987b5
(Fread_file_name): Doc fix.
John Paul Wallington <jpw@pobox.com>
parents:
56615
diff
changeset
|
6282 See also `read-file-name-completion-ignore-case' |
00e5170987b5
(Fread_file_name): Doc fix.
John Paul Wallington <jpw@pobox.com>
parents:
56615
diff
changeset
|
6283 and `read-file-name-function'. */) |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6284 (prompt, dir, default_filename, mustmatch, initial, predicate) |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6285 Lisp_Object prompt, dir, default_filename, mustmatch, initial, predicate; |
230 | 6286 { |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6287 Lisp_Object val, insdef, tem; |
230 | 6288 struct gcpro gcpro1, gcpro2; |
6289 register char *homedir; | |
50196
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
6290 Lisp_Object decoded_homedir; |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6291 int replace_in_history = 0; |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6292 int add_to_history = 0; |
230 | 6293 int count; |
6294 | |
485 | 6295 if (NILP (dir)) |
230 | 6296 dir = current_buffer->directory; |
55741
6433313b236b
(Fread_file_name): Expand DIR if not absolute.
Richard M. Stallman <rms@gnu.org>
parents:
55488
diff
changeset
|
6297 if (NILP (Ffile_name_absolute_p (dir))) |
6433313b236b
(Fread_file_name): Expand DIR if not absolute.
Richard M. Stallman <rms@gnu.org>
parents:
55488
diff
changeset
|
6298 dir = Fexpand_file_name (dir, Qnil); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
6299 if (NILP (default_filename)) |
55741
6433313b236b
(Fread_file_name): Expand DIR if not absolute.
Richard M. Stallman <rms@gnu.org>
parents:
55488
diff
changeset
|
6300 default_filename |
6433313b236b
(Fread_file_name): Expand DIR if not absolute.
Richard M. Stallman <rms@gnu.org>
parents:
55488
diff
changeset
|
6301 = (!NILP (initial) |
6433313b236b
(Fread_file_name): Expand DIR if not absolute.
Richard M. Stallman <rms@gnu.org>
parents:
55488
diff
changeset
|
6302 ? Fexpand_file_name (initial, dir) |
6433313b236b
(Fread_file_name): Expand DIR if not absolute.
Richard M. Stallman <rms@gnu.org>
parents:
55488
diff
changeset
|
6303 : current_buffer->filename); |
230 | 6304 |
6305 /* If dir starts with user's homedir, change that to ~. */ | |
6306 homedir = (char *) egetenv ("HOME"); | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
6307 #ifdef DOS_NT |
34104
c9980ec72766
(Fread_file_name) [DOS_NT]: Don't crash if homedir is NULL.
Eli Zaretskii <eliz@gnu.org>
parents:
33249
diff
changeset
|
6308 /* homedir can be NULL in temacs, since Vprocess_environment is not |
c9980ec72766
(Fread_file_name) [DOS_NT]: Don't crash if homedir is NULL.
Eli Zaretskii <eliz@gnu.org>
parents:
33249
diff
changeset
|
6309 yet set up. We shouldn't crash in that case. */ |
c9980ec72766
(Fread_file_name) [DOS_NT]: Don't crash if homedir is NULL.
Eli Zaretskii <eliz@gnu.org>
parents:
33249
diff
changeset
|
6310 if (homedir != 0) |
c9980ec72766
(Fread_file_name) [DOS_NT]: Don't crash if homedir is NULL.
Eli Zaretskii <eliz@gnu.org>
parents:
33249
diff
changeset
|
6311 { |
c9980ec72766
(Fread_file_name) [DOS_NT]: Don't crash if homedir is NULL.
Eli Zaretskii <eliz@gnu.org>
parents:
33249
diff
changeset
|
6312 homedir = strcpy (alloca (strlen (homedir) + 1), homedir); |
c9980ec72766
(Fread_file_name) [DOS_NT]: Don't crash if homedir is NULL.
Eli Zaretskii <eliz@gnu.org>
parents:
33249
diff
changeset
|
6313 CORRECT_DIR_SEPS (homedir); |
c9980ec72766
(Fread_file_name) [DOS_NT]: Don't crash if homedir is NULL.
Eli Zaretskii <eliz@gnu.org>
parents:
33249
diff
changeset
|
6314 } |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
6315 #endif |
50196
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
6316 if (homedir != 0) |
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
6317 decoded_homedir |
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
6318 = DECODE_FILE (make_unibyte_string (homedir, strlen (homedir))); |
230 | 6319 if (homedir != 0 |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
6320 && STRINGP (dir) |
50196
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
6321 && !strncmp (SDATA (decoded_homedir), SDATA (dir), |
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
6322 SBYTES (decoded_homedir)) |
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
6323 && IS_DIRECTORY_SEP (SREF (dir, SBYTES (decoded_homedir)))) |
230 | 6324 { |
50199
2e56eaaf925b
(Fread_file_name): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
50196
diff
changeset
|
6325 dir = Fsubstring (dir, make_number (SCHARS (decoded_homedir)), Qnil); |
50196
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
6326 dir = concat2 (build_string ("~"), dir); |
230 | 6327 } |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6328 /* Likewise for default_filename. */ |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6329 if (homedir != 0 |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6330 && STRINGP (default_filename) |
50196
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
6331 && !strncmp (SDATA (decoded_homedir), SDATA (default_filename), |
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
6332 SBYTES (decoded_homedir)) |
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
6333 && IS_DIRECTORY_SEP (SREF (default_filename, SBYTES (decoded_homedir)))) |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6334 { |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6335 default_filename |
50196
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
6336 = Fsubstring (default_filename, |
50199
2e56eaaf925b
(Fread_file_name): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents:
50196
diff
changeset
|
6337 make_number (SCHARS (decoded_homedir)), Qnil); |
50196
320721ae5978
(Ffile_name_directory): Reconstruct file name by
Kenichi Handa <handa@m17n.org>
parents:
49557
diff
changeset
|
6338 default_filename = concat2 (build_string ("~"), default_filename); |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6339 } |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6340 if (!NILP (default_filename)) |
24909
804955a16819
(Fread_file_name): Check type of DEFAULT_FILENAME.
Richard M. Stallman <rms@gnu.org>
parents:
24877
diff
changeset
|
6341 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
6342 CHECK_STRING (default_filename); |
24909
804955a16819
(Fread_file_name): Check type of DEFAULT_FILENAME.
Richard M. Stallman <rms@gnu.org>
parents:
24877
diff
changeset
|
6343 default_filename = double_dollars (default_filename); |
804955a16819
(Fread_file_name): Check type of DEFAULT_FILENAME.
Richard M. Stallman <rms@gnu.org>
parents:
24877
diff
changeset
|
6344 } |
230 | 6345 |
16651
e7449d679e72
(Fread_file_name_internal): Verify STRING is a string.
Richard M. Stallman <rms@gnu.org>
parents:
16534
diff
changeset
|
6346 if (insert_default_directory && STRINGP (dir)) |
230 | 6347 { |
6348 insdef = dir; | |
485 | 6349 if (!NILP (initial)) |
230 | 6350 { |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6351 Lisp_Object args[2], pos; |
230 | 6352 |
6353 args[0] = insdef; | |
6354 args[1] = initial; | |
6355 insdef = Fconcat (2, args); | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6356 pos = make_number (SCHARS (double_dollars (dir))); |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6357 insdef = Fcons (double_dollars (insdef), pos); |
230 | 6358 } |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6359 else |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6360 insdef = double_dollars (insdef); |
230 | 6361 } |
16651
e7449d679e72
(Fread_file_name_internal): Verify STRING is a string.
Richard M. Stallman <rms@gnu.org>
parents:
16534
diff
changeset
|
6362 else if (STRINGP (initial)) |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6363 insdef = Fcons (double_dollars (initial), make_number (0)); |
230 | 6364 else |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6365 insdef = Qnil; |
230 | 6366 |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6367 if (!NILP (Vread_file_name_function)) |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6368 { |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6369 Lisp_Object args[7]; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6370 |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6371 GCPRO2 (insdef, default_filename); |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6372 args[0] = Vread_file_name_function; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6373 args[1] = prompt; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6374 args[2] = dir; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6375 args[3] = default_filename; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6376 args[4] = mustmatch; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6377 args[5] = initial; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6378 args[6] = predicate; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6379 RETURN_UNGCPRO (Ffuncall (7, args)); |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6380 } |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6381 |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46285
diff
changeset
|
6382 count = SPECPDL_INDEX (); |
56340
56b3ebd82889
(read_file_name_completion_ignore_case): New variable.
John Paul Wallington <jpw@pobox.com>
parents:
55741
diff
changeset
|
6383 specbind (intern ("completion-ignore-case"), |
56b3ebd82889
(read_file_name_completion_ignore_case): New variable.
John Paul Wallington <jpw@pobox.com>
parents:
55741
diff
changeset
|
6384 read_file_name_completion_ignore_case ? Qt : Qnil); |
22658
9f320d762e2f
(Faccess_file): Check type of second argument STRING.
Richard M. Stallman <rms@gnu.org>
parents:
22613
diff
changeset
|
6385 specbind (intern ("minibuffer-completing-file-name"), Qt); |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
6386 specbind (intern ("read-file-name-predicate"), |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6387 (NILP (predicate) ? Qfile_exists_p : predicate)); |
22658
9f320d762e2f
(Faccess_file): Check type of second argument STRING.
Richard M. Stallman <rms@gnu.org>
parents:
22613
diff
changeset
|
6388 |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
6389 GCPRO2 (insdef, default_filename); |
49549
99be3a1e2589
Cygwin support patch.
Juanma Barranquero <lekktu@gmail.com>
parents:
49445
diff
changeset
|
6390 |
59146
9bde7721ad0f
* dispextern.h: Change HAVE_CARBON to MAC_OS.
Steven Tamm <steventamm@mac.com>
parents:
59050
diff
changeset
|
6391 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) || defined (USE_GTK) || defined (HAVE_CARBON) |
57942
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6392 if (! NILP (Fnext_read_file_uses_dialog_p ())) |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6393 { |
28117
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6394 /* If DIR contains a file name, split it. */ |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6395 Lisp_Object file; |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6396 file = Ffile_name_nondirectory (dir); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6397 if (SCHARS (file) && NILP (default_filename)) |
28117
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6398 { |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6399 default_filename = file; |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6400 dir = Ffile_name_directory (dir); |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6401 } |
29312
8b6842c36473
(Fread_file_name) [HAVE_NTGUI]: Use file dialog.
Jason Rumney <jasonr@gnu.org>
parents:
29152
diff
changeset
|
6402 if (!NILP(default_filename)) |
8b6842c36473
(Fread_file_name) [HAVE_NTGUI]: Use file dialog.
Jason Rumney <jasonr@gnu.org>
parents:
29152
diff
changeset
|
6403 default_filename = Fexpand_file_name (default_filename, dir); |
57868
c955f6add62a
* fileio.c (Fread_file_name): Pass Qt as fifth parameter to
Jan Djärv <jan.h.d@swipnet.se>
parents:
57303
diff
changeset
|
6404 val = Fx_file_dialog (prompt, dir, default_filename, mustmatch, |
c955f6add62a
* fileio.c (Fread_file_name): Pass Qt as fifth parameter to
Jan Djärv <jan.h.d@swipnet.se>
parents:
57303
diff
changeset
|
6405 EQ (predicate, Qfile_directory_p) ? Qt : Qnil); |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6406 add_to_history = 1; |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6407 } |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6408 else |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6409 #endif |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6410 val = Fcompleting_read (prompt, intern ("read-file-name-internal"), |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6411 dir, mustmatch, insdef, |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6412 Qfile_name_history, default_filename, Qnil); |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6413 |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6414 tem = Fsymbol_value (Qfile_name_history); |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
6415 if (CONSP (tem) && EQ (XCAR (tem), val)) |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6416 replace_in_history = 1; |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6417 |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6418 /* If Fcompleting_read returned the inserted default string itself |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
6419 (rather than a new string with the same contents), |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
6420 it has to mean that the user typed RET with the minibuffer empty. |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
6421 In that case, we really want to return "" |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
6422 so that commands such as set-visited-file-name can distinguish. */ |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
6423 if (EQ (val, default_filename)) |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6424 { |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6425 /* In this case, Fcompleting_read has not added an element |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6426 to the history. Maybe we should. */ |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6427 if (! replace_in_history) |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6428 add_to_history = 1; |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6429 |
47851
4c3bd5a753a1
(Fread_file_name): Use empty_string. Use if-expr to simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47394
diff
changeset
|
6430 val = empty_string; |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6431 } |
230 | 6432 |
6433 unbind_to (count, Qnil); | |
6434 UNGCPRO; | |
485 | 6435 if (NILP (val)) |
230 | 6436 error ("No file name specified"); |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6437 |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6438 tem = Fstring_equal (val, CONSP (insdef) ? XCAR (insdef) : insdef); |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6439 |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
6440 if (!NILP (tem) && !NILP (default_filename)) |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6441 val = default_filename; |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6442 val = Fsubstitute_in_file_name (val); |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6443 |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6444 if (replace_in_history) |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6445 /* Replace what Fcompleting_read added to the history |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6446 with what we will actually return. */ |
59050
1ee6d4f5d727
(Fread_file_name): Delete duplicates in
Richard M. Stallman <rms@gnu.org>
parents:
58014
diff
changeset
|
6447 { |
1ee6d4f5d727
(Fread_file_name): Delete duplicates in
Richard M. Stallman <rms@gnu.org>
parents:
58014
diff
changeset
|
6448 Lisp_Object val1 = double_dollars (val); |
1ee6d4f5d727
(Fread_file_name): Delete duplicates in
Richard M. Stallman <rms@gnu.org>
parents:
58014
diff
changeset
|
6449 tem = Fsymbol_value (Qfile_name_history); |
60354
b9a43f92b898
(FILE_SYSTEM_CASE): Define macro if not already defined.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
59671
diff
changeset
|
6450 if (history_delete_duplicates) |
59050
1ee6d4f5d727
(Fread_file_name): Delete duplicates in
Richard M. Stallman <rms@gnu.org>
parents:
58014
diff
changeset
|
6451 XSETCDR (tem, Fdelete (val1, XCDR(tem))); |
1ee6d4f5d727
(Fread_file_name): Delete duplicates in
Richard M. Stallman <rms@gnu.org>
parents:
58014
diff
changeset
|
6452 XSETCAR (tem, val1); |
1ee6d4f5d727
(Fread_file_name): Delete duplicates in
Richard M. Stallman <rms@gnu.org>
parents:
58014
diff
changeset
|
6453 } |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6454 else if (add_to_history) |
230 | 6455 { |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6456 /* Add the value to the history--but not if it matches |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6457 the last value already there. */ |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6458 Lisp_Object val1 = double_dollars (val); |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6459 tem = Fsymbol_value (Qfile_name_history); |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
6460 if (! CONSP (tem) || NILP (Fequal (XCAR (tem), val1))) |
59050
1ee6d4f5d727
(Fread_file_name): Delete duplicates in
Richard M. Stallman <rms@gnu.org>
parents:
58014
diff
changeset
|
6461 { |
1ee6d4f5d727
(Fread_file_name): Delete duplicates in
Richard M. Stallman <rms@gnu.org>
parents:
58014
diff
changeset
|
6462 if (history_delete_duplicates) tem = Fdelete (val1, tem); |
1ee6d4f5d727
(Fread_file_name): Delete duplicates in
Richard M. Stallman <rms@gnu.org>
parents:
58014
diff
changeset
|
6463 Fset (Qfile_name_history, Fcons (val1, tem)); |
1ee6d4f5d727
(Fread_file_name): Delete duplicates in
Richard M. Stallman <rms@gnu.org>
parents:
58014
diff
changeset
|
6464 } |
230 | 6465 } |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
6466 |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6467 return val; |
230 | 6468 } |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6469 |
230 | 6470 |
21514 | 6471 void |
23569
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6472 init_fileio_once () |
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6473 { |
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6474 /* Must be set before any path manipulation is performed. */ |
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6475 XSETFASTINT (Vdirectory_sep_char, '/'); |
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6476 } |
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6477 |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6478 |
23569
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6479 void |
230 | 6480 syms_of_fileio () |
6481 { | |
61942
cf8e7c12c048
(Ffind_file_name_handler): Handle the `operations'
Richard M. Stallman <rms@gnu.org>
parents:
61789
diff
changeset
|
6482 Qoperations = intern ("operations"); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
6483 Qexpand_file_name = intern ("expand-file-name"); |
10719
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
6484 Qsubstitute_in_file_name = intern ("substitute-in-file-name"); |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
6485 Qdirectory_file_name = intern ("directory-file-name"); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
6486 Qfile_name_directory = intern ("file-name-directory"); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
6487 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
|
6488 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
|
6489 Qfile_name_as_directory = intern ("file-name-as-directory"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6490 Qcopy_file = intern ("copy-file"); |
8227
0e6b7eeedc3b
(Fmake_directory_internal): Use Qmake_directory_internal.
Richard M. Stallman <rms@gnu.org>
parents:
8185
diff
changeset
|
6491 Qmake_directory_internal = intern ("make-directory-internal"); |
28697
7d587a158d1f
(Fdo_auto_save): Create directories for auto-save
Gerd Moellmann <gerd@gnu.org>
parents:
28673
diff
changeset
|
6492 Qmake_directory = intern ("make-directory"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6493 Qdelete_directory = intern ("delete-directory"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6494 Qdelete_file = intern ("delete-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6495 Qrename_file = intern ("rename-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6496 Qadd_name_to_file = intern ("add-name-to-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6497 Qmake_symbolic_link = intern ("make-symbolic-link"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6498 Qfile_exists_p = intern ("file-exists-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6499 Qfile_executable_p = intern ("file-executable-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6500 Qfile_readable_p = intern ("file-readable-p"); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6501 Qfile_writable_p = intern ("file-writable-p"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6502 Qfile_symlink_p = intern ("file-symlink-p"); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6503 Qaccess_file = intern ("access-file"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6504 Qfile_directory_p = intern ("file-directory-p"); |
11599
51bc10be0dc7
(Ffile_regular_p): Use Qfile_regular_p.
Richard M. Stallman <rms@gnu.org>
parents:
11426
diff
changeset
|
6505 Qfile_regular_p = intern ("file-regular-p"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6506 Qfile_accessible_directory_p = intern ("file-accessible-directory-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6507 Qfile_modes = intern ("file-modes"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6508 Qset_file_modes = intern ("set-file-modes"); |
55194
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
6509 Qset_file_times = intern ("set-file-times"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6510 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
|
6511 Qinsert_file_contents = intern ("insert-file-contents"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6512 Qwrite_region = intern ("write-region"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6513 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
|
6514 Qset_visited_file_modtime = intern ("set-visited-file-modtime"); |
51357
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
6515 Qauto_save_coding = intern ("auto-save-coding"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6516 |
61942
cf8e7c12c048
(Ffind_file_name_handler): Handle the `operations'
Richard M. Stallman <rms@gnu.org>
parents:
61789
diff
changeset
|
6517 staticpro (&Qoperations); |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
6518 staticpro (&Qexpand_file_name); |
10719
40ae63b409f4
(Fexpand_file_name): Look for a handler for defalt.
Richard M. Stallman <rms@gnu.org>
parents:
10499
diff
changeset
|
6519 staticpro (&Qsubstitute_in_file_name); |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
6520 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
|
6521 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
|
6522 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
|
6523 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
|
6524 staticpro (&Qfile_name_as_directory); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6525 staticpro (&Qcopy_file); |
8243
bf7b3b969ab5
(syms_of_fileio): Finish previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8227
diff
changeset
|
6526 staticpro (&Qmake_directory_internal); |
28697
7d587a158d1f
(Fdo_auto_save): Create directories for auto-save
Gerd Moellmann <gerd@gnu.org>
parents:
28673
diff
changeset
|
6527 staticpro (&Qmake_directory); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6528 staticpro (&Qdelete_directory); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6529 staticpro (&Qdelete_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6530 staticpro (&Qrename_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6531 staticpro (&Qadd_name_to_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6532 staticpro (&Qmake_symbolic_link); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6533 staticpro (&Qfile_exists_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6534 staticpro (&Qfile_executable_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6535 staticpro (&Qfile_readable_p); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6536 staticpro (&Qfile_writable_p); |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6537 staticpro (&Qaccess_file); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6538 staticpro (&Qfile_symlink_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6539 staticpro (&Qfile_directory_p); |
11599
51bc10be0dc7
(Ffile_regular_p): Use Qfile_regular_p.
Richard M. Stallman <rms@gnu.org>
parents:
11426
diff
changeset
|
6540 staticpro (&Qfile_regular_p); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6541 staticpro (&Qfile_accessible_directory_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6542 staticpro (&Qfile_modes); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6543 staticpro (&Qset_file_modes); |
55194
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
6544 staticpro (&Qset_file_times); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6545 staticpro (&Qfile_newer_than_file_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6546 staticpro (&Qinsert_file_contents); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6547 staticpro (&Qwrite_region); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6548 staticpro (&Qverify_visited_file_modtime); |
16226
a70ec9baba1a
(syms_of_fileio): staticpro Qset_visited_file_modtime.
Erik Naggum <erik@naggum.no>
parents:
16167
diff
changeset
|
6549 staticpro (&Qset_visited_file_modtime); |
51357
4830e98be217
(Qauto_save_coding, auto_save_coding): New variables.
Kenichi Handa <handa@m17n.org>
parents:
51022
diff
changeset
|
6550 staticpro (&Qauto_save_coding); |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
6551 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
6552 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
|
6553 Fset (Qfile_name_history, Qnil); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6554 staticpro (&Qfile_name_history); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6555 |
230 | 6556 Qfile_error = intern ("file-error"); |
6557 staticpro (&Qfile_error); | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
6558 Qfile_already_exists = intern ("file-already-exists"); |
230 | 6559 staticpro (&Qfile_already_exists); |
17271
e34a30952e14
(Fcopy_file): Use Qfile_date_error if can't set file date.
Richard M. Stallman <rms@gnu.org>
parents:
17114
diff
changeset
|
6560 Qfile_date_error = intern ("file-date-error"); |
e34a30952e14
(Fcopy_file): Use Qfile_date_error if can't set file date.
Richard M. Stallman <rms@gnu.org>
parents:
17114
diff
changeset
|
6561 staticpro (&Qfile_date_error); |
25595 | 6562 Qexcl = intern ("excl"); |
6563 staticpro (&Qexcl); | |
230 | 6564 |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
6565 #ifdef DOS_NT |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
6566 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
|
6567 staticpro (&Qfind_buffer_file_type); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
6568 #endif /* DOS_NT */ |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
6569 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
6570 DEFVAR_LISP ("file-name-coding-system", &Vfile_name_coding_system, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6571 doc: /* *Coding system for encoding file names. |
41661
8151a2b431d0
(file-name-coding-system, default-file-name-coding-system): Doc fix (links
Pavel Janík <Pavel@Janik.cz>
parents:
41655
diff
changeset
|
6572 If it is nil, `default-file-name-coding-system' (which see) is used. */); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
6573 Vfile_name_coding_system = Qnil; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
6574 |
21048
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
6575 DEFVAR_LISP ("default-file-name-coding-system", |
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
6576 &Vdefault_file_name_coding_system, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6577 doc: /* Default coding system for encoding file names. |
41661
8151a2b431d0
(file-name-coding-system, default-file-name-coding-system): Doc fix (links
Pavel Janík <Pavel@Janik.cz>
parents:
41655
diff
changeset
|
6578 This variable is used only when `file-name-coding-system' is nil. |
8151a2b431d0
(file-name-coding-system, default-file-name-coding-system): Doc fix (links
Pavel Janík <Pavel@Janik.cz>
parents:
41655
diff
changeset
|
6579 |
8151a2b431d0
(file-name-coding-system, default-file-name-coding-system): Doc fix (links
Pavel Janík <Pavel@Janik.cz>
parents:
41655
diff
changeset
|
6580 This variable is set/changed by the command `set-language-environment'. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6581 User should not set this variable manually, |
41661
8151a2b431d0
(file-name-coding-system, default-file-name-coding-system): Doc fix (links
Pavel Janík <Pavel@Janik.cz>
parents:
41655
diff
changeset
|
6582 instead use `file-name-coding-system' to get a constant encoding |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6583 of file names regardless of the current language environment. */); |
21048
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
6584 Vdefault_file_name_coding_system = Qnil; |
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
6585 |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6586 Qformat_decode = intern ("format-decode"); |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6587 staticpro (&Qformat_decode); |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6588 Qformat_annotate_function = intern ("format-annotate-function"); |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6589 staticpro (&Qformat_annotate_function); |
50546
4a06e3332577
(Vafter_insert_file_adjust_coding_function): Delete
Kenichi Handa <handa@m17n.org>
parents:
50530
diff
changeset
|
6590 Qafter_insert_file_set_coding = intern ("after-insert-file-set-coding"); |
4a06e3332577
(Vafter_insert_file_adjust_coding_function): Delete
Kenichi Handa <handa@m17n.org>
parents:
50530
diff
changeset
|
6591 staticpro (&Qafter_insert_file_set_coding); |
49207
0064f690e77d
(Fdelete_directory, Fdelete_file): Document the
Francesco Potortì <pot@gnu.org>
parents:
49191
diff
changeset
|
6592 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6593 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
|
6594 staticpro (&Qcar_less_than_car); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6595 |
230 | 6596 Fput (Qfile_error, Qerror_conditions, |
6597 Fcons (Qfile_error, Fcons (Qerror, Qnil))); | |
6598 Fput (Qfile_error, Qerror_message, | |
6599 build_string ("File error")); | |
6600 | |
6601 Fput (Qfile_already_exists, Qerror_conditions, | |
6602 Fcons (Qfile_already_exists, | |
6603 Fcons (Qfile_error, Fcons (Qerror, Qnil)))); | |
6604 Fput (Qfile_already_exists, Qerror_message, | |
6605 build_string ("File already exists")); | |
6606 | |
17271
e34a30952e14
(Fcopy_file): Use Qfile_date_error if can't set file date.
Richard M. Stallman <rms@gnu.org>
parents:
17114
diff
changeset
|
6607 Fput (Qfile_date_error, Qerror_conditions, |
e34a30952e14
(Fcopy_file): Use Qfile_date_error if can't set file date.
Richard M. Stallman <rms@gnu.org>
parents:
17114
diff
changeset
|
6608 Fcons (Qfile_date_error, |
e34a30952e14
(Fcopy_file): Use Qfile_date_error if can't set file date.
Richard M. Stallman <rms@gnu.org>
parents:
17114
diff
changeset
|
6609 Fcons (Qfile_error, Fcons (Qerror, Qnil)))); |
e34a30952e14
(Fcopy_file): Use Qfile_date_error if can't set file date.
Richard M. Stallman <rms@gnu.org>
parents:
17114
diff
changeset
|
6610 Fput (Qfile_date_error, Qerror_message, |
e34a30952e14
(Fcopy_file): Use Qfile_date_error if can't set file date.
Richard M. Stallman <rms@gnu.org>
parents:
17114
diff
changeset
|
6611 build_string ("Cannot set file date")); |
e34a30952e14
(Fcopy_file): Use Qfile_date_error if can't set file date.
Richard M. Stallman <rms@gnu.org>
parents:
17114
diff
changeset
|
6612 |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6613 DEFVAR_LISP ("read-file-name-function", &Vread_file_name_function, |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6614 doc: /* If this is non-nil, `read-file-name' does its work by calling this function. */); |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6615 Vread_file_name_function = Qnil; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6616 |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6617 DEFVAR_LISP ("read-file-name-predicate", &Vread_file_name_predicate, |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6618 doc: /* Current predicate used by `read-file-name-internal'. */); |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6619 Vread_file_name_predicate = Qnil; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6620 |
56340
56b3ebd82889
(read_file_name_completion_ignore_case): New variable.
John Paul Wallington <jpw@pobox.com>
parents:
55741
diff
changeset
|
6621 DEFVAR_BOOL ("read-file-name-completion-ignore-case", &read_file_name_completion_ignore_case, |
56b3ebd82889
(read_file_name_completion_ignore_case): New variable.
John Paul Wallington <jpw@pobox.com>
parents:
55741
diff
changeset
|
6622 doc: /* *Non-nil means when reading a file name completion ignores case. */); |
56b3ebd82889
(read_file_name_completion_ignore_case): New variable.
John Paul Wallington <jpw@pobox.com>
parents:
55741
diff
changeset
|
6623 #if defined VMS || defined DOS_NT || defined MAC_OS |
56b3ebd82889
(read_file_name_completion_ignore_case): New variable.
John Paul Wallington <jpw@pobox.com>
parents:
55741
diff
changeset
|
6624 read_file_name_completion_ignore_case = 1; |
56b3ebd82889
(read_file_name_completion_ignore_case): New variable.
John Paul Wallington <jpw@pobox.com>
parents:
55741
diff
changeset
|
6625 #else |
56b3ebd82889
(read_file_name_completion_ignore_case): New variable.
John Paul Wallington <jpw@pobox.com>
parents:
55741
diff
changeset
|
6626 read_file_name_completion_ignore_case = 0; |
56b3ebd82889
(read_file_name_completion_ignore_case): New variable.
John Paul Wallington <jpw@pobox.com>
parents:
55741
diff
changeset
|
6627 #endif |
56b3ebd82889
(read_file_name_completion_ignore_case): New variable.
John Paul Wallington <jpw@pobox.com>
parents:
55741
diff
changeset
|
6628 |
230 | 6629 DEFVAR_BOOL ("insert-default-directory", &insert_default_directory, |
53764
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6630 doc: /* *Non-nil means when reading a filename start with default dir in minibuffer. |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6631 If the initial minibuffer contents are non-empty, you can usually |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6632 request a default filename by typing RETURN without editing. For some |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6633 commands, exiting with an empty minibuffer has a special meaning, |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6634 such as making the current buffer visit no file in the case of |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6635 `set-visited-file-name'. |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6636 If this variable is non-nil, the minibuffer contents are always |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6637 initially non-empty and typing RETURN without editing will fetch the |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6638 default name, if one is provided. Note however that this default name |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6639 is not necessarily the name originally inserted in the minibuffer, if |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6640 that is just the default directory. |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6641 If this variable is nil, the minibuffer often starts out empty. In |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6642 that case you may have to explicitly fetch the next history element to |
0505a2aecd0a
(Fread_file_name_internal): Correctly handle the case where
Luc Teirlinck <teirllm@auburn.edu>
parents:
53363
diff
changeset
|
6643 request the default name. */); |
230 | 6644 insert_default_directory = 1; |
6645 | |
6646 DEFVAR_BOOL ("vms-stmlf-recfm", &vms_stmlf_recfm, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6647 doc: /* *Non-nil means write new files with record format `stmlf'. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6648 nil means use format `var'. This variable is meaningful only on VMS. */); |
230 | 6649 vms_stmlf_recfm = 0; |
6650 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
6651 DEFVAR_LISP ("directory-sep-char", &Vdirectory_sep_char, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6652 doc: /* Directory separator character for built-in functions that return file names. |
49191
9b836b1dabe5
(syms_of_fileio) <directory-sep-char>: Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
48876
diff
changeset
|
6653 The value is always ?/. Don't use this variable, just use `/'. */); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
6654 |
850
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
6655 DEFVAR_LISP ("file-name-handler-alist", &Vfile_name_handler_alist, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6656 doc: /* *Alist of elements (REGEXP . HANDLER) for file names handled specially. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6657 If a file name matches REGEXP, then all I/O on that file is done by calling |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6658 HANDLER. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6659 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6660 The first argument given to HANDLER is the name of the I/O primitive |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6661 to be handled; the remaining arguments are the arguments that were |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6662 passed to that primitive. For example, if you do |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6663 (file-exists-p FILENAME) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6664 and FILENAME is handled by HANDLER, then HANDLER is called like this: |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6665 (funcall HANDLER 'file-exists-p FILENAME) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6666 The function `find-file-name-handler' checks this list for a handler |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6667 for its argument. */); |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6668 Vfile_name_handler_alist = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6669 |
19641
d7f2d75a09d3
(Vset_auto_coding_function): Name changed from
Kenichi Handa <handa@m17n.org>
parents:
19572
diff
changeset
|
6670 DEFVAR_LISP ("set-auto-coding-function", |
d7f2d75a09d3
(Vset_auto_coding_function): Name changed from
Kenichi Handa <handa@m17n.org>
parents:
19572
diff
changeset
|
6671 &Vset_auto_coding_function, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6672 doc: /* If non-nil, a function to call to decide a coding system of file. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6673 Two arguments are passed to this function: the file name |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6674 and the length of a file contents following the point. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6675 This function should return a coding system to decode the file contents. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6676 It should check the file name against `auto-coding-alist'. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6677 If no coding system is decided, it should check a coding system |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6678 specified in the heading lines with the format: |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6679 -*- ... coding: CODING-SYSTEM; ... -*- |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6680 or local variable spec of the tailing lines with `coding:' tag. */); |
19641
d7f2d75a09d3
(Vset_auto_coding_function): Name changed from
Kenichi Handa <handa@m17n.org>
parents:
19572
diff
changeset
|
6681 Vset_auto_coding_function = Qnil; |
19448
950a178e8783
(Vauto_file_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19437
diff
changeset
|
6682 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6683 DEFVAR_LISP ("after-insert-file-functions", &Vafter_insert_file_functions, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6684 doc: /* A list of functions to be called at the end of `insert-file-contents'. |
50491
15f94db27199
(Finsert_file_contents): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
50340
diff
changeset
|
6685 Each is passed one argument, the number of characters inserted. |
15f94db27199
(Finsert_file_contents): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
50340
diff
changeset
|
6686 It should return the new character count, and leave point the same. |
15f94db27199
(Finsert_file_contents): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
50340
diff
changeset
|
6687 If `insert-file-contents' is intercepted by a handler from |
15f94db27199
(Finsert_file_contents): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
50340
diff
changeset
|
6688 `file-name-handler-alist', that handler is responsible for calling the |
15f94db27199
(Finsert_file_contents): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
50340
diff
changeset
|
6689 functions in `after-insert-file-functions' if appropriate. */); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6690 Vafter_insert_file_functions = Qnil; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6691 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6692 DEFVAR_LISP ("write-region-annotate-functions", &Vwrite_region_annotate_functions, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6693 doc: /* A list of functions to be called at the start of `write-region'. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6694 Each is passed two arguments, START and END as for `write-region'. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6695 These are usually two numbers but not always; see the documentation |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6696 for `write-region'. The function should return a list of pairs |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6697 of the form (POSITION . STRING), consisting of strings to be effectively |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6698 inserted at the specified positions of the file being written (1 means to |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6699 insert before the first byte written). The POSITIONs must be sorted into |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6700 increasing order. If there are several functions in the list, the several |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
6701 lists are merged destructively. Alternatively, the function can return |
50829
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
6702 with a different buffer current; in that case it should pay attention |
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
6703 to the annotations returned by previous functions and listed in |
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
6704 `write-region-annotations-so-far'.*/); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6705 Vwrite_region_annotate_functions = Qnil; |
50829
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
6706 staticpro (&Qwrite_region_annotate_functions); |
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
6707 Qwrite_region_annotate_functions |
a4f8713c4753
(Qwrite_region_annotate_functions): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50546
diff
changeset
|
6708 = intern ("write-region-annotate-functions"); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6709 |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
6710 DEFVAR_LISP ("write-region-annotations-so-far", |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
6711 &Vwrite_region_annotations_so_far, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6712 doc: /* When an annotation function is called, this holds the previous annotations. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6713 These are the annotations made by other annotation functions |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6714 that were already called. See also `write-region-annotate-functions'. */); |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
6715 Vwrite_region_annotations_so_far = Qnil; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
6716 |
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
6717 DEFVAR_LISP ("inhibit-file-name-handlers", &Vinhibit_file_name_handlers, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6718 doc: /* A list of file name handlers that temporarily should not be used. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6719 This applies only to the operation `inhibit-file-name-operation'. */); |
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
6720 Vinhibit_file_name_handlers = Qnil; |
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
6721 |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
6722 DEFVAR_LISP ("inhibit-file-name-operation", &Vinhibit_file_name_operation, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6723 doc: /* The operation for which `inhibit-file-name-handlers' is applicable. */); |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
6724 Vinhibit_file_name_operation = Qnil; |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
6725 |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
6726 DEFVAR_LISP ("auto-save-list-file-name", &Vauto_save_list_file_name, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6727 doc: /* File name in which we write a list of all auto save file names. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6728 This variable is initialized automatically from `auto-save-list-file-prefix' |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6729 shortly after Emacs reads your `.emacs' file, if you have not yet given it |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6730 a non-nil value. */); |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
6731 Vauto_save_list_file_name = Qnil; |
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
6732 |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
6733 defsubr (&Sfind_file_name_handler); |
230 | 6734 defsubr (&Sfile_name_directory); |
6735 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
|
6736 defsubr (&Sunhandled_file_name_directory); |
230 | 6737 defsubr (&Sfile_name_as_directory); |
6738 defsubr (&Sdirectory_file_name); | |
6739 defsubr (&Smake_temp_name); | |
6740 defsubr (&Sexpand_file_name); | |
6741 defsubr (&Ssubstitute_in_file_name); | |
6742 defsubr (&Scopy_file); | |
1533
b86ef0432100
(Fmake_directory_internal): Renamed from Fmake_directory.
Richard M. Stallman <rms@gnu.org>
parents:
1377
diff
changeset
|
6743 defsubr (&Smake_directory_internal); |
686
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
6744 defsubr (&Sdelete_directory); |
230 | 6745 defsubr (&Sdelete_file); |
6746 defsubr (&Srename_file); | |
6747 defsubr (&Sadd_name_to_file); | |
6748 #ifdef S_IFLNK | |
6749 defsubr (&Smake_symbolic_link); | |
6750 #endif /* S_IFLNK */ | |
6751 #ifdef VMS | |
6752 defsubr (&Sdefine_logical_name); | |
6753 #endif /* VMS */ | |
6754 #ifdef HPUX_NET | |
6755 defsubr (&Ssysnetunam); | |
6756 #endif /* HPUX_NET */ | |
6757 defsubr (&Sfile_name_absolute_p); | |
6758 defsubr (&Sfile_exists_p); | |
6759 defsubr (&Sfile_executable_p); | |
6760 defsubr (&Sfile_readable_p); | |
6761 defsubr (&Sfile_writable_p); | |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6762 defsubr (&Saccess_file); |
230 | 6763 defsubr (&Sfile_symlink_p); |
6764 defsubr (&Sfile_directory_p); | |
536 | 6765 defsubr (&Sfile_accessible_directory_p); |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
6766 defsubr (&Sfile_regular_p); |
230 | 6767 defsubr (&Sfile_modes); |
6768 defsubr (&Sset_file_modes); | |
55194
c4c66ff76dae
(Fset_file_times): New function.
Eli Zaretskii <eliz@gnu.org>
parents:
54895
diff
changeset
|
6769 defsubr (&Sset_file_times); |
1763
65e858c07a8b
(Fset_default_file_modes, Fdefault_file_modes): Renamed from .._mode.
Richard M. Stallman <rms@gnu.org>
parents:
1762
diff
changeset
|
6770 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
|
6771 defsubr (&Sdefault_file_modes); |
230 | 6772 defsubr (&Sfile_newer_than_file_p); |
6773 defsubr (&Sinsert_file_contents); | |
6774 defsubr (&Swrite_region); | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6775 defsubr (&Scar_less_than_car); |
230 | 6776 defsubr (&Sverify_visited_file_modtime); |
6777 defsubr (&Sclear_visited_file_modtime); | |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
6778 defsubr (&Svisited_file_modtime); |
230 | 6779 defsubr (&Sset_visited_file_modtime); |
6780 defsubr (&Sdo_auto_save); | |
6781 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
|
6782 defsubr (&Sclear_buffer_auto_save_failure); |
230 | 6783 defsubr (&Srecent_auto_save_p); |
6784 | |
6785 defsubr (&Sread_file_name_internal); | |
6786 defsubr (&Sread_file_name); | |
57942
3a6cc929df05
* fileio.c (Fnext_read_file_uses_dialog_p): New function.
Jan Djärv <jan.h.d@swipnet.se>
parents:
57868
diff
changeset
|
6787 defsubr (&Snext_read_file_uses_dialog_p); |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
6788 |
1204
567860ca77e0
* fileio.c (syms_of_fileio): Don't try to defsubr Sunix_sync
Jim Blandy <jimb@redhat.com>
parents:
1178
diff
changeset
|
6789 #ifdef unix |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
6790 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
|
6791 #endif |
230 | 6792 } |
52401 | 6793 |
6794 /* arch-tag: 64ba3fd7-f844-4fb2-ba4b-427eb928786c | |
6795 (do not change this comment) */ |