Mercurial > emacs
annotate src/fileio.c @ 44974:cc9283570d1b
(XTread_socket): Disable the Xutf8LookupString code.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 29 Apr 2002 18:22:04 +0000 |
parents | 3f86b146a02b |
children | 08b14b8f7bc2 |
rev | line source |
---|---|
230 | 1 /* File IO for GNU Emacs. |
35175
e5a437efe234
(do_auto_save_unwind): Do the pop_message here
Gerd Moellmann <gerd@gnu.org>
parents:
34971
diff
changeset
|
2 Copyright (C) 1985,86,87,88,93,94,95,96,97,98,99,2000, 2001 |
28846
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
3 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 |
27613 | 22 #define _GNU_SOURCE /* for euidaccess */ |
23 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4483
diff
changeset
|
24 #include <config.h> |
230 | 25 |
41969
e669966d496e
Test GNU_LINUX, not LINUX.
Richard M. Stallman <rms@gnu.org>
parents:
41768
diff
changeset
|
26 #if defined (USG5) || defined (BSD_SYSTEM) || defined (GNU_LINUX) |
16534
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
27 #include <fcntl.h> |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
28 #endif |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
29 |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
30 #include <stdio.h> |
230 | 31 #include <sys/types.h> |
32 #include <sys/stat.h> | |
372 | 33 |
6862
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
34 #ifdef HAVE_UNISTD_H |
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
35 #include <unistd.h> |
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
36 #endif |
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
37 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
38 #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
|
39 # 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
|
40 #endif |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
41 |
16534
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
42 #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
|
43 # 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
|
44 #endif |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
45 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
46 #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
|
47 # 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
|
48 #endif |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
49 |
372 | 50 #ifdef VMS |
564 | 51 #include "vms-pwd.h" |
372 | 52 #else |
230 | 53 #include <pwd.h> |
372 | 54 #endif |
55 | |
230 | 56 #include <ctype.h> |
372 | 57 |
58 #ifdef VMS | |
5877 | 59 #include "vmsdir.h" |
372 | 60 #include <perror.h> |
61 #include <stddef.h> | |
62 #include <string.h> | |
63 #endif | |
64 | |
230 | 65 #include <errno.h> |
66 | |
372 | 67 #ifndef vax11c |
31095
e19d38e14720
[USE_CRT_DLL]: Remove unnecessary extern, which screws
Andrew Innes <andrewi@gnu.org>
parents:
30927
diff
changeset
|
68 #ifndef USE_CRT_DLL |
230 | 69 extern int errno; |
70 #endif | |
31095
e19d38e14720
[USE_CRT_DLL]: Remove unnecessary extern, which screws
Andrew Innes <andrewi@gnu.org>
parents:
30927
diff
changeset
|
71 #endif |
230 | 72 |
73 #ifdef APOLLO | |
74 #include <sys/time.h> | |
75 #endif | |
76 | |
2280
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
77 #ifndef USG |
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
78 #ifndef VMS |
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
79 #ifndef BSD4_1 |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
80 #ifndef WINDOWSNT |
2280
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
81 #define HAVE_FSYNC |
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
82 #endif |
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
83 #endif |
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
84 #endif |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
85 #endif |
2280
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
86 |
230 | 87 #include "lisp.h" |
1299
b8337cdf2e8b
* fileio.c (Finsert_file_contents): Call offset_intervals() if
Joseph Arceneaux <jla@gnu.org>
parents:
1240
diff
changeset
|
88 #include "intervals.h" |
230 | 89 #include "buffer.h" |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
90 #include "charset.h" |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
91 #include "coding.h" |
230 | 92 #include "window.h" |
93 | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
94 #ifdef WINDOWSNT |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
95 #define NOMINMAX 1 |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
96 #include <windows.h> |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
97 #include <stdlib.h> |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
98 #include <fcntl.h> |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
99 #endif /* not WINDOWSNT */ |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
100 |
21787
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
101 #ifdef MSDOS |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
102 #include "msdos.h" |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
103 #include <sys/param.h> |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
104 #if __DJGPP__ >= 2 |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
105 #include <fcntl.h> |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
106 #include <string.h> |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
107 #endif |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
108 #endif |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
109 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
110 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
111 #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
|
112 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
|
113 else unixtodos_filename (s); \ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
114 } while (0) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
115 /* 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
|
116 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
|
117 #ifdef MSDOS |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
118 #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
|
119 #endif |
69c516d109e7
(DRIVE_LETTER) [WINDOWSNT]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15587
diff
changeset
|
120 #ifdef WINDOWSNT |
69c516d109e7
(DRIVE_LETTER) [WINDOWSNT]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15587
diff
changeset
|
121 #define IS_DRIVE(x) isalpha (x) |
69c516d109e7
(DRIVE_LETTER) [WINDOWSNT]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15587
diff
changeset
|
122 #endif |
15587
515819688789
(DRIVE_LETTER) [MSDOS]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15533
diff
changeset
|
123 /* 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
|
124 filenames will sometimes compare inequal, because |
515819688789
(DRIVE_LETTER) [MSDOS]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15533
diff
changeset
|
125 `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
|
126 #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
|
127 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
128 |
230 | 129 #ifdef VMS |
130 #include <file.h> | |
131 #include <rmsdef.h> | |
132 #include <fab.h> | |
133 #include <nam.h> | |
134 #endif | |
135 | |
564 | 136 #include "systime.h" |
230 | 137 |
138 #ifdef HPUX | |
139 #include <netio.h> | |
350 | 140 #ifndef HPUX8 |
3410
47b51faf6c4e
[HPUX9]: Don't include errnet.h.
Richard M. Stallman <rms@gnu.org>
parents:
3032
diff
changeset
|
141 #ifndef HPUX9 |
230 | 142 #include <errnet.h> |
143 #endif | |
350 | 144 #endif |
3410
47b51faf6c4e
[HPUX9]: Don't include errnet.h.
Richard M. Stallman <rms@gnu.org>
parents:
3032
diff
changeset
|
145 #endif |
230 | 146 |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
147 #include "commands.h" |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
148 extern int use_dialog_box; |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
149 |
230 | 150 #ifndef O_WRONLY |
151 #define O_WRONLY 1 | |
152 #endif | |
153 | |
8597 | 154 #ifndef O_RDONLY |
155 #define O_RDONLY 0 | |
156 #endif | |
157 | |
24367
f9d5fff966f0
(lstat) [!S_ISLNK]: Use stat instead of lstat.
Eli Zaretskii <eliz@gnu.org>
parents:
24313
diff
changeset
|
158 #ifndef S_ISLNK |
f9d5fff966f0
(lstat) [!S_ISLNK]: Use stat instead of lstat.
Eli Zaretskii <eliz@gnu.org>
parents:
24313
diff
changeset
|
159 # define lstat stat |
f9d5fff966f0
(lstat) [!S_ISLNK]: Use stat instead of lstat.
Eli Zaretskii <eliz@gnu.org>
parents:
24313
diff
changeset
|
160 #endif |
f9d5fff966f0
(lstat) [!S_ISLNK]: Use stat instead of lstat.
Eli Zaretskii <eliz@gnu.org>
parents:
24313
diff
changeset
|
161 |
230 | 162 /* Nonzero during writing of auto-save files */ |
163 int auto_saving; | |
164 | |
165 /* Set by auto_save_1 to mode of original file so Fwrite_region will create | |
166 a new file with the same mode as the original */ | |
167 int auto_save_mode_bits; | |
168 | |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
169 /* Coding system for file names, or nil if none. */ |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
170 Lisp_Object Vfile_name_coding_system; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
171 |
21048
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
172 /* 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
|
173 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
|
174 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
|
175 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
176 /* Alist of elements (REGEXP . HANDLER) for file names |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
177 whose I/O is done with a special handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
178 Lisp_Object Vfile_name_handler_alist; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
179 |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
180 /* Format for auto-save files */ |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
181 Lisp_Object Vauto_save_file_format; |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
182 |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
183 /* Lisp functions for translating file formats */ |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
184 Lisp_Object Qformat_decode, Qformat_annotate_function; |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
185 |
19448
950a178e8783
(Vauto_file_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19437
diff
changeset
|
186 /* 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
|
187 Lisp_Object Vset_auto_coding_function; |
19448
950a178e8783
(Vauto_file_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19437
diff
changeset
|
188 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
189 /* 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
|
190 Lisp_Object Vafter_insert_file_functions; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
191 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
192 /* 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
|
193 Lisp_Object Vwrite_region_annotate_functions; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
194 |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
195 /* 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
|
196 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
|
197 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
|
198 |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
199 /* 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
|
200 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
|
201 |
230 | 202 /* Nonzero means, when reading a filename in the minibuffer, |
203 start out by inserting the default directory into the minibuffer. */ | |
204 int insert_default_directory; | |
205 | |
206 /* On VMS, nonzero means write new files with record format stmlf. | |
207 Zero means use var format. */ | |
208 int vms_stmlf_recfm; | |
209 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
210 /* 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
|
211 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
|
212 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
|
213 |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
214 extern Lisp_Object Vuser_login_name; |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
215 |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
216 #ifdef WINDOWSNT |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
217 extern Lisp_Object Vw32_get_true_file_attributes; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
218 #endif |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
219 |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
220 extern int minibuf_level; |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
221 |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
222 extern int minibuffer_auto_raise; |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
223 |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
224 /* 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
|
225 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
|
226 |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
227 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
|
228 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
|
229 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
|
230 |
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
231 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
|
232 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
|
233 |
17271
e34a30952e14
(Fcopy_file): Use Qfile_date_error if can't set file date.
Richard M. Stallman <rms@gnu.org>
parents:
17114
diff
changeset
|
234 Lisp_Object Qfile_error, Qfile_already_exists, Qfile_date_error; |
25595 | 235 Lisp_Object Qexcl; |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
236 Lisp_Object Qfile_name_history; |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
237 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
238 Lisp_Object Qcar_less_than_car; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
239 |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
240 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
|
241 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
|
242 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
|
243 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
244 |
20370
7e443cd9a63a
(report_file_error): Declare it as void.
Kenichi Handa <handa@m17n.org>
parents:
20313
diff
changeset
|
245 void |
230 | 246 report_file_error (string, data) |
247 char *string; | |
248 Lisp_Object data; | |
249 { | |
250 Lisp_Object errstring; | |
25595 | 251 int errorno = errno; |
230 | 252 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
253 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
|
254 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
|
255 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
|
256 |
230 | 257 while (1) |
25595 | 258 switch (errorno) |
259 { | |
260 case EEXIST: | |
261 Fsignal (Qfile_already_exists, Fcons (errstring, data)); | |
262 break; | |
263 default: | |
264 /* System error messages are capitalized. Downcase the initial | |
265 unless it is followed by a slash. */ | |
266 if (XSTRING (errstring)->data[1] != '/') | |
267 XSTRING (errstring)->data[0] = DOWNCASE (XSTRING (errstring)->data[0]); | |
268 | |
269 Fsignal (Qfile_error, | |
270 Fcons (build_string (string), Fcons (errstring, data))); | |
271 } | |
230 | 272 } |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
273 |
20313
36bbb5e0a687
(close_file_unwind): Fix return type and return nil.
Andreas Schwab <schwab@suse.de>
parents:
20224
diff
changeset
|
274 Lisp_Object |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
275 close_file_unwind (fd) |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
276 Lisp_Object fd; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
277 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
278 emacs_close (XFASTINT (fd)); |
20313
36bbb5e0a687
(close_file_unwind): Fix return type and return nil.
Andreas Schwab <schwab@suse.de>
parents:
20224
diff
changeset
|
279 return Qnil; |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
280 } |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
281 |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
282 /* 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
|
283 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
284 static Lisp_Object |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
285 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
|
286 Lisp_Object location; |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
287 { |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
288 Fgoto_char (location); |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
289 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
|
290 return Qnil; |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
291 } |
230 | 292 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
293 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
|
294 Lisp_Object Qsubstitute_in_file_name; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
295 Lisp_Object Qdirectory_file_name; |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
296 Lisp_Object Qfile_name_directory; |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
297 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
|
298 Lisp_Object Qunhandled_file_name_directory; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
299 Lisp_Object Qfile_name_as_directory; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
300 Lisp_Object Qcopy_file; |
8227
0e6b7eeedc3b
(Fmake_directory_internal): Use Qmake_directory_internal.
Richard M. Stallman <rms@gnu.org>
parents:
8185
diff
changeset
|
301 Lisp_Object Qmake_directory_internal; |
28697
7d587a158d1f
(Fdo_auto_save): Create directories for auto-save
Gerd Moellmann <gerd@gnu.org>
parents:
28673
diff
changeset
|
302 Lisp_Object Qmake_directory; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
303 Lisp_Object Qdelete_directory; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
304 Lisp_Object Qdelete_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
305 Lisp_Object Qrename_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
306 Lisp_Object Qadd_name_to_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
307 Lisp_Object Qmake_symbolic_link; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
308 Lisp_Object Qfile_exists_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
309 Lisp_Object Qfile_executable_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
310 Lisp_Object Qfile_readable_p; |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
311 Lisp_Object Qfile_writable_p; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
312 Lisp_Object Qfile_symlink_p; |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
313 Lisp_Object Qaccess_file; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
314 Lisp_Object Qfile_directory_p; |
11599
51bc10be0dc7
(Ffile_regular_p): Use Qfile_regular_p.
Richard M. Stallman <rms@gnu.org>
parents:
11426
diff
changeset
|
315 Lisp_Object Qfile_regular_p; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
316 Lisp_Object Qfile_accessible_directory_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
317 Lisp_Object Qfile_modes; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
318 Lisp_Object Qset_file_modes; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
319 Lisp_Object Qfile_newer_than_file_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
320 Lisp_Object Qinsert_file_contents; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
321 Lisp_Object Qwrite_region; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
322 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
|
323 Lisp_Object Qset_visited_file_modtime; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
324 |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
325 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
|
326 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
|
327 Otherwise, return nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
328 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
|
329 `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
|
330 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
331 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
|
332 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
|
333 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
|
334 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
|
335 (filename, operation) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
336 Lisp_Object filename, operation; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
337 { |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
338 /* 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
|
339 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
|
340 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
|
341 |
41655
fccc74affd73
(Ffind_file_name_handler): Avoid initializer for `result'.
Richard M. Stallman <rms@gnu.org>
parents:
41595
diff
changeset
|
342 result = Qnil; |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
343 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
|
344 |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
345 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
|
346 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
|
347 else |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
348 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
|
349 |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
350 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
|
351 chain = XCDR (chain)) |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
352 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
353 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
|
354 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
|
355 if (CONSP (elt)) |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
356 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
357 Lisp_Object string; |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
358 int match_pos; |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
359 string = XCAR (elt); |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
360 if (STRINGP (string) |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
361 && (match_pos = fast_string_match (string, filename)) > pos) |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
362 { |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
363 Lisp_Object handler, tem; |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
364 |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
365 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
|
366 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
|
367 if (NILP (tem)) |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
368 { |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
369 result = handler; |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
370 pos = match_pos; |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
371 } |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
372 } |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
373 } |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
374 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
375 QUIT; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
376 } |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
377 return result; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
378 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
379 |
230 | 380 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
|
381 1, 1, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
382 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
|
383 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
|
384 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
|
385 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
|
386 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
|
387 (filename) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
388 Lisp_Object filename; |
230 | 389 { |
390 register unsigned char *beg; | |
391 register unsigned char *p; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
392 Lisp_Object handler; |
230 | 393 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
394 CHECK_STRING (filename); |
230 | 395 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
396 /* 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
|
397 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
|
398 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
|
399 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
400 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
|
401 |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
402 #ifdef FILE_SYSTEM_CASE |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
403 filename = FILE_SYSTEM_CASE (filename); |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
404 #endif |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
405 beg = XSTRING (filename)->data; |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
406 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
407 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
|
408 #endif |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21189
diff
changeset
|
409 p = beg + STRING_BYTES (XSTRING (filename)); |
230 | 410 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
411 while (p != beg && !IS_DIRECTORY_SEP (p[-1]) |
230 | 412 #ifdef VMS |
413 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>' | |
414 #endif /* VMS */ | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
415 #ifdef DOS_NT |
22172
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
416 /* only recognise drive specifier at the beginning */ |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
417 && !(p[-1] == ':' |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
418 /* 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
|
419 && ((p == beg + 2 && !IS_DIRECTORY_SEP (*beg)) |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
420 || (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
|
421 #endif |
230 | 422 ) p--; |
423 | |
424 if (p == beg) | |
425 return Qnil; | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
426 #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
|
427 /* 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
|
428 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
|
429 { |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
430 /* 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
|
431 unsigned char *res = alloca (MAXPATHLEN + 1); |
22172
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
432 unsigned char *r = res; |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
433 |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
434 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
|
435 { |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
436 strncpy (res, beg, 2); |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
437 beg += 2; |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
438 r += 2; |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
439 } |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
440 |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
441 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
|
442 { |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
443 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
|
444 strcat (res, "/"); |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
445 beg = res; |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
446 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
|
447 } |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
448 } |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
449 CORRECT_DIR_SEPS (beg); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
450 #endif /* DOS_NT */ |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
451 |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
452 if (STRING_MULTIBYTE (filename)) |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
453 return make_string (beg, p - beg); |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
454 return make_unibyte_string (beg, p - beg); |
230 | 455 } |
456 | |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
457 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
|
458 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
|
459 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
|
460 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
|
461 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
|
462 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
|
463 (filename) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
464 Lisp_Object filename; |
230 | 465 { |
466 register unsigned char *beg, *p, *end; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
467 Lisp_Object handler; |
230 | 468 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
469 CHECK_STRING (filename); |
230 | 470 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
471 /* 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
|
472 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
|
473 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
|
474 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
475 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
|
476 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
477 beg = XSTRING (filename)->data; |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21189
diff
changeset
|
478 end = p = beg + STRING_BYTES (XSTRING (filename)); |
230 | 479 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
480 while (p != beg && !IS_DIRECTORY_SEP (p[-1]) |
230 | 481 #ifdef VMS |
482 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>' | |
483 #endif /* VMS */ | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
484 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
485 /* only recognise drive specifier at beginning */ |
22172
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
486 && !(p[-1] == ':' |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
487 /* handle the "/:d:foo" case correctly */ |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
488 && (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
|
489 #endif |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
490 ) |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
491 p--; |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
492 |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
493 if (STRING_MULTIBYTE (filename)) |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
494 return make_string (p, end - p); |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
495 return make_unibyte_string (p, end - p); |
230 | 496 } |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
497 |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
498 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
|
499 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
|
500 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
|
501 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
|
502 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
|
503 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
|
504 \(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
|
505 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
|
506 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
|
507 (filename) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
508 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
|
509 { |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
510 Lisp_Object handler; |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
511 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
512 /* 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
|
513 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
|
514 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
|
515 if (!NILP (handler)) |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
516 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
|
517 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
518 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
|
519 } |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
520 |
230 | 521 |
522 char * | |
523 file_name_as_directory (out, in) | |
524 char *out, *in; | |
525 { | |
526 int size = strlen (in) - 1; | |
527 | |
20790
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
528 strcpy (out, in); |
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
529 |
20651
0de9f45a1db6
(Finsert_file_contents): When not decoding,
Richard M. Stallman <rms@gnu.org>
parents:
20621
diff
changeset
|
530 if (size < 0) |
20790
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
531 { |
21543
55865851fd69
(file_name_as_directory): For empty arg, return `./'.
Karl Heuer <kwzh@gnu.org>
parents:
21522
diff
changeset
|
532 out[0] = '.'; |
55865851fd69
(file_name_as_directory): For empty arg, return `./'.
Karl Heuer <kwzh@gnu.org>
parents:
21522
diff
changeset
|
533 out[1] = '/'; |
55865851fd69
(file_name_as_directory): For empty arg, return `./'.
Karl Heuer <kwzh@gnu.org>
parents:
21522
diff
changeset
|
534 out[2] = 0; |
20790
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
535 return out; |
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
536 } |
230 | 537 |
538 #ifdef VMS | |
539 /* Is it already a directory string? */ | |
540 if (in[size] == ':' || in[size] == ']' || in[size] == '>') | |
541 return out; | |
542 /* Is it a VMS directory file name? If so, hack VMS syntax. */ | |
543 else if (! index (in, '/') | |
544 && ((size > 3 && ! strcmp (&in[size - 3], ".DIR")) | |
545 || (size > 3 && ! strcmp (&in[size - 3], ".dir")) | |
546 || (size > 5 && (! strncmp (&in[size - 5], ".DIR", 4) | |
547 || ! strncmp (&in[size - 5], ".dir", 4)) | |
548 && (in[size - 1] == '.' || in[size - 1] == ';') | |
549 && in[size] == '1'))) | |
550 { | |
551 register char *p, *dot; | |
552 char brack; | |
553 | |
554 /* x.dir -> [.x] | |
555 dir:x.dir --> dir:[x] | |
556 dir:[x]y.dir --> dir:[x.y] */ | |
557 p = in + size; | |
558 while (p != in && *p != ':' && *p != '>' && *p != ']') p--; | |
559 if (p != in) | |
560 { | |
561 strncpy (out, in, p - in); | |
562 out[p - in] = '\0'; | |
563 if (*p == ':') | |
564 { | |
565 brack = ']'; | |
566 strcat (out, ":["); | |
567 } | |
568 else | |
569 { | |
570 brack = *p; | |
571 strcat (out, "."); | |
572 } | |
573 p++; | |
574 } | |
575 else | |
576 { | |
577 brack = ']'; | |
578 strcpy (out, "[."); | |
579 } | |
372 | 580 dot = index (p, '.'); |
581 if (dot) | |
230 | 582 { |
583 /* blindly remove any extension */ | |
584 size = strlen (out) + (dot - p); | |
585 strncat (out, p, dot - p); | |
586 } | |
587 else | |
588 { | |
589 strcat (out, p); | |
590 size = strlen (out); | |
591 } | |
592 out[size++] = brack; | |
593 out[size] = '\0'; | |
594 } | |
595 #else /* not VMS */ | |
596 /* 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
|
597 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
|
598 { |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
599 out[size + 1] = DIRECTORY_SEP; |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
600 out[size + 2] = '\0'; |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
601 } |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
602 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
603 CORRECT_DIR_SEPS (out); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
604 #endif |
230 | 605 #endif /* not VMS */ |
606 return out; | |
607 } | |
608 | |
609 DEFUN ("file-name-as-directory", Ffile_name_as_directory, | |
610 Sfile_name_as_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
|
611 doc: /* Return a string representing file FILENAME interpreted as a directory. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
612 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
|
613 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
|
614 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
|
615 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
|
616 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
|
617 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
|
618 (file) |
230 | 619 Lisp_Object file; |
620 { | |
621 char *buf; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
622 Lisp_Object handler; |
230 | 623 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
624 CHECK_STRING (file); |
485 | 625 if (NILP (file)) |
230 | 626 return Qnil; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
627 |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
628 /* 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
|
629 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
|
630 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
|
631 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
632 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
|
633 |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21189
diff
changeset
|
634 buf = (char *) alloca (STRING_BYTES (XSTRING (file)) + 10); |
230 | 635 return build_string (file_name_as_directory (buf, XSTRING (file)->data)); |
636 } | |
637 | |
638 /* | |
639 * Convert from directory name to filename. | |
640 * On VMS: | |
641 * xyzzy:[mukesh.emacs] => xyzzy:[mukesh]emacs.dir.1 | |
642 * 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
|
643 * On UNIX, it's simple: just make sure there isn't a terminating / |
230 | 644 |
645 * Value is nonzero if the string output is different from the input. | |
646 */ | |
647 | |
21514 | 648 int |
230 | 649 directory_file_name (src, dst) |
650 char *src, *dst; | |
651 { | |
652 long slen; | |
653 #ifdef VMS | |
654 long rlen; | |
655 char * ptr, * rptr; | |
656 char bracket; | |
657 struct FAB fab = cc$rms_fab; | |
658 struct NAM nam = cc$rms_nam; | |
659 char esa[NAM$C_MAXRSS]; | |
660 #endif /* VMS */ | |
661 | |
662 slen = strlen (src); | |
663 #ifdef VMS | |
664 if (! index (src, '/') | |
665 && (src[slen - 1] == ']' | |
666 || src[slen - 1] == ':' | |
667 || src[slen - 1] == '>')) | |
668 { | |
669 /* VMS style - convert [x.y.z] to [x.y]z, [x] to [000000]x */ | |
670 fab.fab$l_fna = src; | |
671 fab.fab$b_fns = slen; | |
672 fab.fab$l_nam = &nam; | |
673 fab.fab$l_fop = FAB$M_NAM; | |
674 | |
675 nam.nam$l_esa = esa; | |
676 nam.nam$b_ess = sizeof esa; | |
677 nam.nam$b_nop |= NAM$M_SYNCHK; | |
678 | |
679 /* 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
|
680 if (SYS$PARSE (&fab, 0, 0) == RMS$_NORMAL) |
230 | 681 { |
682 slen = nam.nam$b_esl; | |
683 if (esa[slen - 1] == ';' && esa[slen - 2] == '.') | |
684 slen -= 2; | |
685 esa[slen] = '\0'; | |
686 src = esa; | |
687 } | |
688 if (src[slen - 1] != ']' && src[slen - 1] != '>') | |
689 { | |
690 /* what about when we have logical_name:???? */ | |
691 if (src[slen - 1] == ':') | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
692 { /* Xlate logical name and see what we get */ |
230 | 693 ptr = strcpy (dst, src); /* upper case for getenv */ |
694 while (*ptr) | |
695 { | |
696 if ('a' <= *ptr && *ptr <= 'z') | |
697 *ptr -= 040; | |
698 ptr++; | |
699 } | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
700 dst[slen - 1] = 0; /* remove colon */ |
230 | 701 if (!(src = egetenv (dst))) |
702 return 0; | |
703 /* should we jump to the beginning of this procedure? | |
704 Good points: allows us to use logical names that xlate | |
705 to Unix names, | |
706 Bad points: can be a problem if we just translated to a device | |
707 name... | |
708 For now, I'll punt and always expect VMS names, and hope for | |
709 the best! */ | |
710 slen = strlen (src); | |
711 if (src[slen - 1] != ']' && src[slen - 1] != '>') | |
712 { /* no recursion here! */ | |
713 strcpy (dst, src); | |
714 return 0; | |
715 } | |
716 } | |
717 else | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
718 { /* not a directory spec */ |
230 | 719 strcpy (dst, src); |
720 return 0; | |
721 } | |
722 } | |
723 bracket = src[slen - 1]; | |
724 | |
725 /* If bracket is ']' or '>', bracket - 2 is the corresponding | |
726 opening bracket. */ | |
372 | 727 ptr = index (src, bracket - 2); |
728 if (ptr == 0) | |
230 | 729 { /* no opening bracket */ |
730 strcpy (dst, src); | |
731 return 0; | |
732 } | |
733 if (!(rptr = rindex (src, '.'))) | |
734 rptr = ptr; | |
735 slen = rptr - src; | |
736 strncpy (dst, src, slen); | |
737 dst[slen] = '\0'; | |
738 if (*rptr == '.') | |
739 { | |
740 dst[slen++] = bracket; | |
741 dst[slen] = '\0'; | |
742 } | |
743 else | |
744 { | |
745 /* If we have the top-level of a rooted directory (i.e. xx:[000000]), | |
746 then translate the device and recurse. */ | |
747 if (dst[slen - 1] == ':' | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
748 && 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
|
749 && strcmp (src + slen, "[000000]") == 0) |
230 | 750 { |
751 dst[slen - 1] = '\0'; | |
752 if ((ptr = egetenv (dst)) | |
753 && (rlen = strlen (ptr) - 1) > 0 | |
754 && (ptr[rlen] == ']' || ptr[rlen] == '>') | |
755 && ptr[rlen - 1] == '.') | |
756 { | |
1358
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
757 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
|
758 strcpy (buf, ptr); |
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
759 buf[rlen - 1] = ']'; |
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
760 buf[rlen] = '\0'; |
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
761 return directory_file_name (buf, dst); |
230 | 762 } |
763 else | |
764 dst[slen - 1] = ':'; | |
765 } | |
766 strcat (dst, "[000000]"); | |
767 slen += 8; | |
768 } | |
769 rptr++; | |
770 rlen = strlen (rptr) - 1; | |
771 strncat (dst, rptr, rlen); | |
772 dst[slen + rlen] = '\0'; | |
773 strcat (dst, ".DIR.1"); | |
774 return 1; | |
775 } | |
776 #endif /* VMS */ | |
777 /* Process as Unix format: just remove any final slash. | |
778 But leave "/" unchanged; do not change it to "". */ | |
779 strcpy (dst, src); | |
11667
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
780 #ifdef APOLLO |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
781 /* Handle // as root for apollo's. */ |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
782 if ((slen > 2 && dst[slen - 1] == '/') |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
783 || (slen > 1 && dst[0] != '/' && dst[slen - 1] == '/')) |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
784 dst[slen - 1] = 0; |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
785 #else |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
786 if (slen > 1 |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
787 && 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
|
788 #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
|
789 && !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
|
790 #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
|
791 ) |
230 | 792 dst[slen - 1] = 0; |
11667
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
793 #endif |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
794 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
795 CORRECT_DIR_SEPS (dst); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
796 #endif |
230 | 797 return 1; |
798 } | |
799 | |
800 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
|
801 1, 1, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
802 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
|
803 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
|
804 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
|
805 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
|
806 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
|
807 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
|
808 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
|
809 (directory) |
230 | 810 Lisp_Object directory; |
811 { | |
812 char *buf; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
813 Lisp_Object handler; |
230 | 814 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
815 CHECK_STRING (directory); |
230 | 816 |
485 | 817 if (NILP (directory)) |
230 | 818 return Qnil; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
819 |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
820 /* 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
|
821 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
|
822 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
|
823 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
824 return call2 (handler, Qdirectory_file_name, directory); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
825 |
230 | 826 #ifdef VMS |
827 /* 20 extra chars is insufficient for VMS, since we might perform a | |
828 logical name translation. an equivalence string can be up to 255 | |
829 chars long, so grab that much extra space... - sss */ | |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21189
diff
changeset
|
830 buf = (char *) alloca (STRING_BYTES (XSTRING (directory)) + 20 + 255); |
230 | 831 #else |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21189
diff
changeset
|
832 buf = (char *) alloca (STRING_BYTES (XSTRING (directory)) + 20); |
230 | 833 #endif |
834 directory_file_name (XSTRING (directory)->data, buf); | |
835 return build_string (buf); | |
836 } | |
837 | |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
838 static char make_temp_name_tbl[64] = |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
839 { |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
840 'A','B','C','D','E','F','G','H', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
841 'I','J','K','L','M','N','O','P', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
842 'Q','R','S','T','U','V','W','X', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
843 'Y','Z','a','b','c','d','e','f', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
844 'g','h','i','j','k','l','m','n', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
845 'o','p','q','r','s','t','u','v', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
846 'w','x','y','z','0','1','2','3', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
847 '4','5','6','7','8','9','-','_' |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
848 }; |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
849 |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
850 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
|
851 |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
852 /* Value is a temporary file name starting with PREFIX, a string. |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
853 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
854 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
|
855 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
|
856 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
|
857 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
|
858 an absolute file name. |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
859 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
860 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
|
861 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
|
862 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
|
863 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
|
864 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
865 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
|
866 generated. */ |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
867 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
868 Lisp_Object |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
869 make_temp_name (prefix, base64_p) |
230 | 870 Lisp_Object prefix; |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
871 int base64_p; |
230 | 872 { |
873 Lisp_Object val; | |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
874 int len; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
875 int pid; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
876 unsigned char *p, *data; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
877 char pidbuf[20]; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
878 int pidlen; |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
879 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
880 CHECK_STRING (prefix); |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
881 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
882 /* 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
|
883 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
|
884 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
|
885 262144 unique file names per PID per PREFIX. */ |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
886 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
887 pid = (int) getpid (); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
888 |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
889 if (base64_p) |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
890 { |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
891 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
|
892 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
|
893 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
|
894 pidlen = 3; |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
895 } |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
896 else |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
897 { |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
898 #ifdef HAVE_LONG_FILE_NAMES |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
899 sprintf (pidbuf, "%d", pid); |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
900 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
|
901 #else |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
902 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
|
903 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
|
904 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
|
905 pidlen = 3; |
14519
7efdb933356e
(Fmake_temp_name) [MS-DOS]: Allow upto 8 characters in
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
906 #endif |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
907 } |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
908 |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
909 len = XSTRING (prefix)->size; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
910 val = make_uninit_string (len + 3 + pidlen); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
911 data = XSTRING (val)->data; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
912 bcopy(XSTRING (prefix)->data, data, len); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
913 p = data + len; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
914 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
915 bcopy (pidbuf, p, pidlen); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
916 p += pidlen; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
917 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
918 /* 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
|
919 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
|
920 this by initializing count to a random value, and incrementing it |
21917 | 921 afterwards. |
922 | |
923 We don't want make-temp-name to be called while dumping, | |
924 because then make_temp_name_count_initialized_p would get set | |
925 and then make_temp_name_count would not be set when Emacs starts. */ | |
926 | |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
927 if (!make_temp_name_count_initialized_p) |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
928 { |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
929 make_temp_name_count = (unsigned) time (NULL); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
930 make_temp_name_count_initialized_p = 1; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
931 } |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
932 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
933 while (1) |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
934 { |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
935 struct stat ignored; |
21900
fd8b439fd6c9
(Fmake_temp_name): Improve randomness of generated file names.
Richard M. Stallman <rms@gnu.org>
parents:
21787
diff
changeset
|
936 unsigned num = make_temp_name_count; |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
937 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
938 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
|
939 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
|
940 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
|
941 |
21900
fd8b439fd6c9
(Fmake_temp_name): Improve randomness of generated file names.
Richard M. Stallman <rms@gnu.org>
parents:
21787
diff
changeset
|
942 /* 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
|
943 ++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
|
944 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
|
945 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
|
946 |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
947 if (stat (data, &ignored) < 0) |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
948 { |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
949 /* 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
|
950 if (errno == ENOENT) |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
951 return val; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
952 else |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
953 /* 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
|
954 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
|
955 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
|
956 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
|
957 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
|
958 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
|
959 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
|
960 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
|
961 Fcons (prefix, Qnil)); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
962 /* not reached */ |
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 } |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
965 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
966 error ("Cannot create temporary name for prefix `%s'", |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
967 XSTRING (prefix)->data); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
968 return Qnil; |
230 | 969 } |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
970 |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
971 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
972 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
|
973 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
|
974 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
|
975 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
|
976 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
977 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
|
978 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
|
979 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
|
980 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
981 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
|
982 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
|
983 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
|
984 |
d12db931f164
(Fmake_temp_name): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
43564
diff
changeset
|
985 * 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
|
986 * 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
|
987 * 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
|
988 (prefix) |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
989 Lisp_Object prefix; |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
990 { |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
991 return make_temp_name (prefix, 0); |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
992 } |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
993 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
994 |
230 | 995 |
996 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
|
997 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
|
998 Second arg DEFAULT-DIRECTORY is directory to start with if NAME is relative |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
999 (does not start with slash); if DEFAULT-DIRECTORY is nil or missing, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1000 the current buffer's value of default-directory is used. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
1001 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
|
1002 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
|
1003 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
|
1004 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
|
1005 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
|
1006 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
|
1007 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
|
1008 (name, default_directory) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1009 Lisp_Object name, default_directory; |
230 | 1010 { |
1011 unsigned char *nm; | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1012 |
230 | 1013 register unsigned char *newdir, *p, *o; |
1014 int tlen; | |
1015 unsigned char *target; | |
1016 struct passwd *pw; | |
1017 #ifdef VMS | |
1018 unsigned char * colon = 0; | |
1019 unsigned char * close = 0; | |
1020 unsigned char * slash = 0; | |
1021 unsigned char * brack = 0; | |
1022 int lbrack = 0, rbrack = 0; | |
1023 int dots = 0; | |
1024 #endif /* VMS */ | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1025 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1026 int drive = 0; |
15109
b801c02f3e92
(Fexpand_file_name) [DOS_NT]: Keep dir sep following ~
Richard M. Stallman <rms@gnu.org>
parents:
15097
diff
changeset
|
1027 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
|
1028 int is_escaped = 0; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1029 #endif /* DOS_NT */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1030 int length; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1031 Lisp_Object handler; |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1032 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
1033 CHECK_STRING (name); |
230 | 1034 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1035 /* 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
|
1036 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
|
1037 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
|
1038 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1039 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
|
1040 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1041 /* 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
|
1042 if (NILP (default_directory)) |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1043 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
|
1044 if (! STRINGP (default_directory)) |
42191
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1045 { |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1046 #ifdef DOS_NT |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1047 /* "/" 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
|
1048 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
|
1049 |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1050 (let (default-directory) |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1051 (expand-file-name "a")) |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1052 |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1053 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
|
1054 current drive. */ |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1055 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
|
1056 |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1057 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
|
1058 #else |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1059 default_directory = build_string ("/"); |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1060 #endif |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1061 } |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1062 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1063 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
|
1064 { |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1065 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
|
1066 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1067 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
|
1068 } |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1069 |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1070 o = XSTRING (default_directory)->data; |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1071 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1072 /* 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
|
1073 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
|
1074 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
|
1075 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
|
1076 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
|
1077 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
|
1078 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
|
1079 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
|
1080 |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
1081 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
|
1082 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
|
1083 /* 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
|
1084 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
|
1085 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
|
1086 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1087 /* 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
|
1088 && ! (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
|
1089 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1090 /* 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
|
1091 && ! (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
|
1092 #endif |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1093 #else /* not DOS_NT */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1094 /* 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
|
1095 DOS or Windows). */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1096 && ! (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
|
1097 #endif /* not DOS_NT */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1098 ) |
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 { |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
1100 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
|
1101 |
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 GCPRO1 (name); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1103 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
|
1104 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
|
1105 } |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
1106 |
230 | 1107 #ifdef VMS |
1108 /* Filenames on VMS are always upper case. */ | |
1109 name = Fupcase (name); | |
1110 #endif | |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1111 #ifdef FILE_SYSTEM_CASE |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1112 name = FILE_SYSTEM_CASE (name); |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1113 #endif |
230 | 1114 |
1115 nm = XSTRING (name)->data; | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1116 |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1117 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1118 /* 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
|
1119 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
|
1120 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
|
1121 |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1122 /* 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
|
1123 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
|
1124 { |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1125 is_escaped = 1; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1126 nm += 2; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1127 } |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1128 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1129 /* 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
|
1130 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
|
1131 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
|
1132 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
|
1133 { |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1134 drive = nm[0]; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1135 nm += 2; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1136 } |
19695
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1137 |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1138 #ifdef WINDOWSNT |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1139 /* 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
|
1140 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
|
1141 "//somedir". */ |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1142 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
|
1143 nm++; |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1144 #endif /* WINDOWSNT */ |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1145 #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
|
1146 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1147 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1148 /* 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
|
1149 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
|
1150 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1151 drive = 0; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1152 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1153 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1154 |
36482
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1155 /* 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
|
1156 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
|
1157 allocating a new string if name is already fully expanded. */ |
230 | 1158 if ( |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1159 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
|
1160 #ifdef MSDOS |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1161 && drive && !is_escaped |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1162 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1163 #ifdef WINDOWSNT |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1164 && (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
|
1165 #endif |
230 | 1166 #ifdef VMS |
1167 || index (nm, ':') | |
1168 #endif /* VMS */ | |
1169 ) | |
1170 { | |
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
|
1171 /* 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
|
1172 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
|
1173 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
|
1174 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
|
1175 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
|
1176 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
|
1177 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
|
1178 |
230 | 1179 p = nm; |
1180 while (*p) | |
1181 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1182 /* 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
|
1183 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
|
1184 |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1185 /* "." and ".." are hairy. */ |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1186 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
|
1187 && p[1] == '.' |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1188 && (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
|
1189 || p[2] == 0 |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1190 || (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
|
1191 || p[3] == 0)))) |
230 | 1192 lose = 1; |
36482
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1193 /* 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
|
1194 slash. */ |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1195 else if (p > nm |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1196 && IS_DIRECTORY_SEP (p[0]) |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1197 && IS_DIRECTORY_SEP (p[1])) |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1198 lose = 1; |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1199 |
230 | 1200 #ifdef VMS |
1201 if (p[0] == '\\') | |
1202 lose = 1; | |
1203 if (p[0] == '/') { | |
1204 /* if dev:[dir]/, move nm to / */ | |
1205 if (!slash && p > nm && (brack || colon)) { | |
1206 nm = (brack ? brack + 1 : colon + 1); | |
1207 lbrack = rbrack = 0; | |
1208 brack = 0; | |
1209 colon = 0; | |
1210 } | |
1211 slash = p; | |
1212 } | |
1213 if (p[0] == '-') | |
1214 #ifndef VMS4_4 | |
1215 /* VMS pre V4.4,convert '-'s in filenames. */ | |
1216 if (lbrack == rbrack) | |
1217 { | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1218 if (dots < 2) /* this is to allow negative version numbers */ |
230 | 1219 p[0] = '_'; |
1220 } | |
1221 else | |
1222 #endif /* VMS4_4 */ | |
1223 if (lbrack > rbrack && | |
1224 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') && | |
1225 (p[1] == '.' || p[1] == ']' || p[1] == '>'))) | |
1226 lose = 1; | |
1227 #ifndef VMS4_4 | |
1228 else | |
1229 p[0] = '_'; | |
1230 #endif /* VMS4_4 */ | |
1231 /* count open brackets, reset close bracket pointer */ | |
1232 if (p[0] == '[' || p[0] == '<') | |
1233 lbrack++, brack = 0; | |
1234 /* count close brackets, set close bracket pointer */ | |
1235 if (p[0] == ']' || p[0] == '>') | |
1236 rbrack++, brack = p; | |
1237 /* detect ][ or >< */ | |
1238 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<')) | |
1239 lose = 1; | |
1240 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~') | |
1241 nm = p + 1, lose = 1; | |
1242 if (p[0] == ':' && (colon || slash)) | |
1243 /* if dev1:[dir]dev2:, move nm to dev2: */ | |
1244 if (brack) | |
1245 { | |
1246 nm = brack + 1; | |
1247 brack = 0; | |
1248 } | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1249 /* if /name/dev:, move nm to dev: */ |
230 | 1250 else if (slash) |
1251 nm = slash + 1; | |
1252 /* if node::dev:, move colon following dev */ | |
1253 else if (colon && colon[-1] == ':') | |
1254 colon = p; | |
1255 /* if dev1:dev2:, move nm to dev2: */ | |
1256 else if (colon && colon[-1] != ':') | |
1257 { | |
1258 nm = colon + 1; | |
1259 colon = 0; | |
1260 } | |
1261 if (p[0] == ':' && !colon) | |
1262 { | |
1263 if (p[1] == ':') | |
1264 p++; | |
1265 colon = p; | |
1266 } | |
1267 if (lbrack == rbrack) | |
1268 if (p[0] == ';') | |
1269 dots = 2; | |
1270 else if (p[0] == '.') | |
1271 dots++; | |
1272 #endif /* VMS */ | |
1273 p++; | |
1274 } | |
1275 if (!lose) | |
1276 { | |
1277 #ifdef VMS | |
1278 if (index (nm, '/')) | |
1279 return build_string (sys_translate_unix (nm)); | |
1280 #endif /* VMS */ | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1281 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1282 /* 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
|
1283 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
|
1284 required. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1285 CORRECT_DIR_SEPS (nm); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1286 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1287 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
|
1288 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1289 if (strcmp (nm, XSTRING (name)->data) != 0) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1290 name = build_string (nm); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1291 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1292 else |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1293 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1294 /* drive must be set, so this is okay */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1295 if (strcmp (nm - 2, XSTRING (name)->data) != 0) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1296 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1297 name = make_string (nm - 2, p - nm + 2); |
15324
6fd4e01fd332
(DRIVE_LETTER): [DOS_NT] New macro.
Richard M. Stallman <rms@gnu.org>
parents:
15313
diff
changeset
|
1298 XSTRING (name)->data[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
|
1299 XSTRING (name)->data[1] = ':'; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1300 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1301 return name; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1302 #else /* not DOS_NT */ |
230 | 1303 if (nm == XSTRING (name)->data) |
1304 return name; | |
1305 return build_string (nm); | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1306 #endif /* not DOS_NT */ |
230 | 1307 } |
1308 } | |
1309 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1310 /* 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
|
1311 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
|
1312 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
|
1313 and /foo/../ sequences. |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1314 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1315 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
|
1316 - 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
|
1317 - 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
|
1318 start with / |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1319 - 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
|
1320 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1321 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
|
1322 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
|
1323 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
|
1324 append it to the current working directory. */ |
230 | 1325 |
1326 newdir = 0; | |
1327 | |
1328 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
|
1329 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1330 if (IS_DIRECTORY_SEP (nm[1]) |
230 | 1331 #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
|
1332 || nm[1] == ':' |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1333 #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
|
1334 || 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
|
1335 { |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1336 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
|
1337 newdir = (unsigned char *) ""; |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1338 nm++; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1339 #ifdef DOS_NT |
15109
b801c02f3e92
(Fexpand_file_name) [DOS_NT]: Keep dir sep following ~
Richard M. Stallman <rms@gnu.org>
parents:
15097
diff
changeset
|
1340 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
|
1341 #endif |
230 | 1342 #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
|
1343 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
|
1344 #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
|
1345 } |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1346 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
|
1347 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1348 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p) |
230 | 1349 #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
|
1350 && *p != ':' |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1351 #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
|
1352 ); p++); |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1353 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
|
1354 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
|
1355 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
|
1356 |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1357 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
|
1358 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
|
1359 { |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1360 newdir = (unsigned char *) pw -> pw_dir; |
230 | 1361 #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
|
1362 nm = p + 1; /* skip the terminator */ |
230 | 1363 #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
|
1364 nm = p; |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1365 #ifdef DOS_NT |
15109
b801c02f3e92
(Fexpand_file_name) [DOS_NT]: Keep dir sep following ~
Richard M. Stallman <rms@gnu.org>
parents:
15097
diff
changeset
|
1366 collapse_newdir = 0; |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1367 #endif |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1368 #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
|
1369 } |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1370 |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1371 /* 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
|
1372 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
|
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 } |
230 | 1375 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1376 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1377 /* 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
|
1378 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
|
1379 if (!newdir && drive) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1380 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1381 /* 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
|
1382 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
|
1383 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1384 newdir = alloca (MAXPATHLEN + 1); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1385 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
|
1386 newdir = NULL; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1387 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1388 if (!newdir) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1389 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1390 /* 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
|
1391 newdir = alloca (4); |
15324
6fd4e01fd332
(DRIVE_LETTER): [DOS_NT] New macro.
Richard M. Stallman <rms@gnu.org>
parents:
15313
diff
changeset
|
1392 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
|
1393 newdir[1] = ':'; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1394 newdir[2] = '/'; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1395 newdir[3] = 0; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1396 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1397 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1398 #endif /* DOS_NT */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1399 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1400 /* 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
|
1401 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
|
1402 |
15124
b2c682fcd3ef
(Fexpand_file_name) [DOS_NT]: Correct the `if' clause
Richard M. Stallman <rms@gnu.org>
parents:
15109
diff
changeset
|
1403 if (1 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1404 #ifndef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1405 /* /... 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
|
1406 && !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
|
1407 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1408 #ifdef WINDOWSNT |
15124
b2c682fcd3ef
(Fexpand_file_name) [DOS_NT]: Correct the `if' clause
Richard M. Stallman <rms@gnu.org>
parents:
15109
diff
changeset
|
1409 && !(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
|
1410 #endif |
230 | 1411 #ifdef VMS |
1412 && !index (nm, ':') | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1413 #endif |
230 | 1414 && !newdir) |
1415 { | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1416 newdir = XSTRING (default_directory)->data; |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1417 #ifdef DOS_NT |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1418 /* 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
|
1419 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
|
1420 { |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1421 is_escaped = 1; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1422 newdir += 2; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1423 } |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1424 #endif |
230 | 1425 } |
1426 | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1427 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1428 if (newdir) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1429 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1430 /* 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
|
1431 if ( |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1432 /* 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
|
1433 ! (IS_DRIVE (newdir[0]) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1434 && 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
|
1435 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1436 /* 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
|
1437 && ! (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
|
1438 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1439 ) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1440 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1441 /* 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
|
1442 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
|
1443 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
|
1444 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
|
1445 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
|
1446 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1447 if (IS_DRIVE (newdir[0]) && newdir[1] == ':') |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1448 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1449 drive = newdir[0]; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1450 newdir += 2; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1451 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1452 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
|
1453 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1454 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
|
1455 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
|
1456 strcat (tmp, nm); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1457 nm = tmp; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1458 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1459 newdir = alloca (MAXPATHLEN + 1); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1460 if (drive) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1461 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1462 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
|
1463 newdir = "/"; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1464 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1465 else |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1466 getwd (newdir); |
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 /* Strip off drive name from prefix, if present. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1470 if (IS_DRIVE (newdir[0]) && newdir[1] == ':') |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1471 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1472 drive = newdir[0]; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1473 newdir += 2; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1474 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1475 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1476 /* 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
|
1477 (//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
|
1478 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
|
1479 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1480 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1481 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
|
1482 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1483 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
|
1484 p = newdir + 2; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1485 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
|
1486 p++; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1487 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
|
1488 *p = 0; |
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 else |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1491 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1492 newdir = ""; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1493 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1494 } |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1495 #endif /* DOS_NT */ |
15097
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 if (newdir) |
372 | 1498 { |
15313
0fad77a676b7
(Fexpand_file_name) [WINDOWSNT]: Don't strip trailing /
Richard M. Stallman <rms@gnu.org>
parents:
15124
diff
changeset
|
1499 /* 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
|
1500 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
|
1501 length = strlen (newdir); |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1502 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
|
1503 #ifdef WINDOWSNT |
0fad77a676b7
(Fexpand_file_name) [WINDOWSNT]: Don't strip trailing /
Richard M. Stallman <rms@gnu.org>
parents:
15124
diff
changeset
|
1504 && !(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
|
1505 #endif |
0fad77a676b7
(Fexpand_file_name) [WINDOWSNT]: Don't strip trailing /
Richard M. Stallman <rms@gnu.org>
parents:
15124
diff
changeset
|
1506 ) |
372 | 1507 { |
1508 unsigned char *temp = (unsigned char *) alloca (length); | |
1509 bcopy (newdir, temp, length - 1); | |
1510 temp[length - 1] = 0; | |
1511 newdir = temp; | |
1512 } | |
1513 tlen = length + 1; | |
1514 } | |
1515 else | |
1516 tlen = 0; | |
230 | 1517 |
372 | 1518 /* Now concatenate the directory and name to new space in the stack frame */ |
1519 tlen += strlen (nm) + 1; | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1520 #ifdef DOS_NT |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1521 /* 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
|
1522 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
|
1523 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
|
1524 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
|
1525 target += 4; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1526 #else /* not DOS_NT */ |
230 | 1527 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
|
1528 #endif /* not DOS_NT */ |
230 | 1529 *target = 0; |
1530 | |
1531 if (newdir) | |
1532 { | |
1533 #ifndef VMS | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1534 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
|
1535 { |
22113
be43fb8acb62
(Fexpand_file_name): Change conditional
Richard M. Stallman <rms@gnu.org>
parents:
22106
diff
changeset
|
1536 #ifdef DOS_NT |
22106
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1537 /* 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
|
1538 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
|
1539 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
|
1540 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
|
1541 this case (keeping the drive letter). */ |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1542 if (!(drive && nm[0] && IS_DIRECTORY_SEP (newdir[0]) |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1543 && newdir[1] == '\0')) |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1544 #endif |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1545 strcpy (target, newdir); |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1546 } |
230 | 1547 else |
1548 #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
|
1549 file_name_as_directory (target, newdir); |
230 | 1550 } |
1551 | |
1552 strcat (target, nm); | |
1553 #ifdef VMS | |
1554 if (index (target, '/')) | |
1555 strcpy (target, sys_translate_unix (target)); | |
1556 #endif /* VMS */ | |
1557 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1558 /* 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
|
1559 |
36482
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1560 /* 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
|
1561 appear. */ |
230 | 1562 |
1563 p = target; | |
1564 o = target; | |
1565 | |
1566 while (*p) | |
1567 { | |
1568 #ifdef VMS | |
1569 if (*p != ']' && *p != '>' && *p != '-') | |
1570 { | |
1571 if (*p == '\\') | |
1572 p++; | |
1573 *o++ = *p++; | |
1574 } | |
1575 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2) | |
1576 /* brackets are offset from each other by 2 */ | |
1577 { | |
1578 p += 2; | |
1579 if (*p != '.' && *p != '-' && o[-1] != '.') | |
1580 /* convert [foo][bar] to [bar] */ | |
1581 while (o[-1] != '[' && o[-1] != '<') | |
1582 o--; | |
1583 else if (*p == '-' && *o != '.') | |
1584 *--p = '.'; | |
1585 } | |
1586 else if (p[0] == '-' && o[-1] == '.' && | |
1587 (p[1] == '.' || p[1] == ']' || p[1] == '>')) | |
1588 /* flush .foo.- ; leave - if stopped by '[' or '<' */ | |
1589 { | |
1590 do | |
1591 o--; | |
1592 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
|
1593 if (p[1] == '.') /* foo.-.bar ==> bar. */ |
230 | 1594 p += 2; |
1595 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */ | |
1596 p++, o--; | |
1597 /* else [foo.-] ==> [-] */ | |
1598 } | |
1599 else | |
1600 { | |
1601 #ifndef VMS4_4 | |
1602 if (*p == '-' && | |
1603 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' && | |
1604 p[1] != ']' && p[1] != '>' && p[1] != '.') | |
1605 *p = '_'; | |
1606 #endif /* VMS4_4 */ | |
1607 *o++ = *p++; | |
1608 } | |
1609 #else /* not VMS */ | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1610 if (!IS_DIRECTORY_SEP (*p)) |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1611 { |
230 | 1612 *o++ = *p++; |
1613 } | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1614 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
|
1615 && p[1] == '.' |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1616 && (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
|
1617 || 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
|
1618 { |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1619 /* 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
|
1620 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
|
1621 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
|
1622 *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
|
1623 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
|
1624 } |
11426
6502c07121b7
(Fexpand_file_name): Use IS_DIRECTORY_SEP instead of
Karl Heuer <kwzh@gnu.org>
parents:
11392
diff
changeset
|
1625 else if (IS_DIRECTORY_SEP (p[0]) && p[1] == '.' && p[2] == '.' |
230 | 1626 /* `/../' is the "superroot" on certain file systems. */ |
1627 && o != target | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1628 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0)) |
230 | 1629 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1630 while (o != target && (--o) && !IS_DIRECTORY_SEP (*o)) |
230 | 1631 ; |
17503
ba848dceb1c9
(Fexpand_file_name): Fix expansion of "/foo/../".
Richard M. Stallman <rms@gnu.org>
parents:
17396
diff
changeset
|
1632 /* 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
|
1633 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
|
1634 ++o; |
230 | 1635 p += 3; |
1636 } | |
36482
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1637 else if (p > target |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1638 && 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
|
1639 { |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1640 /* Collapse multiple `/' in a row. */ |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1641 *o++ = *p++; |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1642 while (IS_DIRECTORY_SEP (*p)) |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1643 ++p; |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1644 } |
230 | 1645 else |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1646 { |
230 | 1647 *o++ = *p++; |
1648 } | |
1649 #endif /* not VMS */ | |
1650 } | |
1651 | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1652 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1653 /* 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
|
1654 #ifdef WINDOWSNT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1655 /* 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
|
1656 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
|
1657 #endif /* WINDOWSNT */ |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1658 { |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1659 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
|
1660 target -= 2; |
15324
6fd4e01fd332
(DRIVE_LETTER): [DOS_NT] New macro.
Richard M. Stallman <rms@gnu.org>
parents:
15313
diff
changeset
|
1661 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
|
1662 target[1] = ':'; |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1663 } |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1664 /* 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
|
1665 if (is_escaped) |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1666 { |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1667 target -= 2; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1668 target[0] = '/'; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1669 target[1] = ':'; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1670 } |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1671 CORRECT_DIR_SEPS (target); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1672 #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
|
1673 |
230 | 1674 return make_string (target, o - target); |
1675 } | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1676 |
40306
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1677 #if 0 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1678 /* 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
|
1679 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
|
1680 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
|
1681 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
|
1682 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
|
1683 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
|
1684 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1685 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
|
1686 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
|
1687 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1688 /* 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
|
1689 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
|
1690 "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
|
1691 Second arg DEFAULT is directory to start with if FILENAME is relative\n\ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1692 (does not start with slash); if DEFAULT is nil or missing,\n\ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1693 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
|
1694 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
|
1695 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
|
1696 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
|
1697 (name, defalt) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1698 Lisp_Object name, defalt; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1699 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1700 unsigned char *nm; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1701 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1702 register unsigned char *newdir, *p, *o; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1703 int tlen; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1704 unsigned char *target; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1705 struct passwd *pw; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1706 int lose; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1707 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1708 unsigned char * colon = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1709 unsigned char * close = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1710 unsigned char * slash = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1711 unsigned char * brack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1712 int lbrack = 0, rbrack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1713 int dots = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1714 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1715 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
1716 CHECK_STRING (name); |
40306
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1717 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1718 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1719 /* 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
|
1720 name = Fupcase (name); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1721 #endif |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1722 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1723 nm = XSTRING (name)->data; |
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 /* 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
|
1726 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
|
1727 if ( |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1728 nm[0] == '/' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1729 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1730 || index (nm, ':') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1731 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1732 ) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1733 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1734 p = nm; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1735 lose = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1736 while (*p) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1737 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1738 if (p[0] == '/' && p[1] == '/' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1739 #ifdef APOLLO |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1740 /* // 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
|
1741 && nm != p |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1742 #endif /* APOLLO */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1743 ) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1744 nm = p + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1745 if (p[0] == '/' && p[1] == '~') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1746 nm = p + 1, lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1747 if (p[0] == '/' && p[1] == '.' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1748 && (p[2] == '/' || p[2] == 0 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1749 || (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
|
1750 lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1751 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1752 if (p[0] == '\\') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1753 lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1754 if (p[0] == '/') { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1755 /* if dev:[dir]/, move nm to / */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1756 if (!slash && p > nm && (brack || colon)) { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1757 nm = (brack ? brack + 1 : colon + 1); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1758 lbrack = rbrack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1759 brack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1760 colon = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1761 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1762 slash = p; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1763 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1764 if (p[0] == '-') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1765 #ifndef VMS4_4 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1766 /* 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
|
1767 if (lbrack == rbrack) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1768 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1769 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
|
1770 p[0] = '_'; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1771 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1772 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1773 #endif /* VMS4_4 */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1774 if (lbrack > rbrack && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1775 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1776 (p[1] == '.' || p[1] == ']' || p[1] == '>'))) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1777 lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1778 #ifndef VMS4_4 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1779 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1780 p[0] = '_'; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1781 #endif /* VMS4_4 */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1782 /* 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
|
1783 if (p[0] == '[' || p[0] == '<') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1784 lbrack++, brack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1785 /* 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
|
1786 if (p[0] == ']' || p[0] == '>') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1787 rbrack++, brack = p; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1788 /* detect ][ or >< */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1789 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
|
1790 lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1791 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
|
1792 nm = p + 1, lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1793 if (p[0] == ':' && (colon || slash)) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1794 /* 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
|
1795 if (brack) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1796 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1797 nm = brack + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1798 brack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1799 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1800 /* 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
|
1801 else if (slash) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1802 nm = slash + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1803 /* 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
|
1804 else if (colon && colon[-1] == ':') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1805 colon = p; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1806 /* 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
|
1807 else if (colon && colon[-1] != ':') |
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 nm = colon + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1810 colon = 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 if (p[0] == ':' && !colon) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1813 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1814 if (p[1] == ':') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1815 p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1816 colon = p; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1817 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1818 if (lbrack == rbrack) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1819 if (p[0] == ';') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1820 dots = 2; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1821 else if (p[0] == '.') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1822 dots++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1823 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1824 p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1825 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1826 if (!lose) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1827 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1828 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1829 if (index (nm, '/')) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1830 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
|
1831 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1832 if (nm == XSTRING (name)->data) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1833 return name; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1834 return build_string (nm); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1835 } |
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 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1838 /* 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
|
1839 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1840 newdir = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1841 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1842 if (nm[0] == '~') /* prefix ~ */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1843 if (nm[1] == '/' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1844 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1845 || nm[1] == ':' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1846 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1847 || nm[1] == 0)/* ~/filename */ |
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 if (!(newdir = (unsigned char *) egetenv ("HOME"))) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1850 newdir = (unsigned char *) ""; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1851 nm++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1852 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1853 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
|
1854 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1855 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1856 else /* ~user/filename */ |
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 /* Get past ~ to user */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1859 unsigned char *user = nm + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1860 /* Find end of name. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1861 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
|
1862 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
|
1863 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1864 unsigned char *ptr1 = index (user, ':'); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1865 if (ptr1 != 0 && ptr1 - user < len) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1866 len = ptr1 - user; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1867 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1868 /* 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
|
1869 o = (unsigned char *) alloca (len + 1); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1870 bcopy ((char *) user, o, len); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1871 o[len] = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1872 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1873 /* Look up the user name. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1874 pw = (struct passwd *) getpwnam (o + 1); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1875 if (!pw) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1876 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
|
1877 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1878 newdir = (unsigned char *) pw->pw_dir; |
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 /* Discard the user name from NM. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1881 nm += len; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1882 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1883 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1884 if (nm[0] != '/' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1885 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1886 && !index (nm, ':') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1887 #endif /* not VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1888 && !newdir) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1889 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1890 if (NILP (defalt)) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1891 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
|
1892 CHECK_STRING (defalt); |
40306
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1893 newdir = XSTRING (defalt)->data; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1894 } |
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 /* 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
|
1897 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1898 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
|
1899 target = (unsigned char *) alloca (tlen); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1900 *target = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1901 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1902 if (newdir) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1903 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1904 #ifndef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1905 if (nm[0] == 0 || nm[0] == '/') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1906 strcpy (target, newdir); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1907 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1908 #endif |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1909 file_name_as_directory (target, newdir); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1910 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1911 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1912 strcat (target, nm); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1913 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1914 if (index (target, '/')) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1915 strcpy (target, sys_translate_unix (target)); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1916 #endif /* VMS */ |
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 /* 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
|
1919 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1920 p = target; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1921 o = target; |
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 while (*p) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1924 { |
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 if (*p != ']' && *p != '>' && *p != '-') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1927 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1928 if (*p == '\\') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1929 p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1930 *o++ = *p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1931 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1932 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
|
1933 /* 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
|
1934 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1935 p += 2; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1936 if (*p != '.' && *p != '-' && o[-1] != '.') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1937 /* convert [foo][bar] to [bar] */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1938 while (o[-1] != '[' && o[-1] != '<') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1939 o--; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1940 else if (*p == '-' && *o != '.') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1941 *--p = '.'; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1942 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1943 else if (p[0] == '-' && o[-1] == '.' && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1944 (p[1] == '.' || p[1] == ']' || p[1] == '>')) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1945 /* 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
|
1946 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1947 do |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1948 o--; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1949 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
|
1950 if (p[1] == '.') /* foo.-.bar ==> bar. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1951 p += 2; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1952 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1953 p++, o--; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1954 /* else [foo.-] ==> [-] */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1955 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1956 else |
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 #ifndef VMS4_4 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1959 if (*p == '-' && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1960 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1961 p[1] != ']' && p[1] != '>' && p[1] != '.') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1962 *p = '_'; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1963 #endif /* VMS4_4 */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1964 *o++ = *p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1965 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1966 #else /* not VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1967 if (*p != '/') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1968 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1969 *o++ = *p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1970 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1971 else if (!strncmp (p, "//", 2) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1972 #ifdef APOLLO |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1973 /* // 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
|
1974 && o != target |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1975 #endif /* APOLLO */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1976 ) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1977 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1978 o = target; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1979 p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1980 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1981 else if (p[0] == '/' && p[1] == '.' && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1982 (p[2] == '/' || p[2] == 0)) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1983 p += 2; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1984 else if (!strncmp (p, "/..", 3) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1985 /* `/../' 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
|
1986 && o != target |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1987 && (p[3] == '/' || p[3] == 0)) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1988 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1989 while (o != target && *--o != '/') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1990 ; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1991 #ifdef APOLLO |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1992 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
|
1993 ++o; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1994 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1995 #endif /* APOLLO */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1996 if (o == target && *o == '/') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1997 ++o; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1998 p += 3; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1999 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2000 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2001 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2002 *o++ = *p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2003 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2004 #endif /* not VMS */ |
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 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2007 return make_string (target, o - target); |
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 #endif |
230 | 2010 |
2011 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
|
2012 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
|
2013 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
|
2014 `$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
|
2015 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
|
2016 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
|
2017 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
|
2018 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
|
2019 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2020 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
|
2021 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
|
2022 (filename) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2023 Lisp_Object filename; |
230 | 2024 { |
2025 unsigned char *nm; | |
2026 | |
2027 register unsigned char *s, *p, *o, *x, *endp; | |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31775
diff
changeset
|
2028 unsigned char *target = NULL; |
230 | 2029 int total = 0; |
2030 int substituted = 0; | |
2031 unsigned char *xnm; | |
43197
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2032 struct passwd *pw; |
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
2033 Lisp_Object handler; |
230 | 2034 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2035 CHECK_STRING (filename); |
230 | 2036 |
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
2037 /* 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
|
2038 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
|
2039 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
|
2040 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2041 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
|
2042 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2043 nm = XSTRING (filename)->data; |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2044 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2045 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
|
2046 CORRECT_DIR_SEPS (nm); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2047 substituted = (strcmp (nm, XSTRING (filename)->data) != 0); |
8185
b5cc015a3698
(Ffile_name_directory, Ffile_name_nondirectory,
Richard M. Stallman <rms@gnu.org>
parents:
8079
diff
changeset
|
2048 #endif |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21189
diff
changeset
|
2049 endp = nm + STRING_BYTES (XSTRING (filename)); |
230 | 2050 |
19754
380cbf03df01
(Fexpand_file_name): If default dir isn't string, use `/'.
Richard M. Stallman <rms@gnu.org>
parents:
19695
diff
changeset
|
2051 /* If /~ or // appears, discard everything through first slash. */ |
230 | 2052 |
2053 for (p = nm; p != endp; p++) | |
2054 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2055 if ((p[0] == '~' |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2056 #if defined (APOLLO) || defined (WINDOWSNT) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2057 /* // at start of file name is meaningful in Apollo and |
19754
380cbf03df01
(Fexpand_file_name): If default dir isn't string, use `/'.
Richard M. Stallman <rms@gnu.org>
parents:
19695
diff
changeset
|
2058 WindowsNT systems. */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2059 || (IS_DIRECTORY_SEP (p[0]) && p - 1 != nm) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2060 #else /* not (APOLLO || WINDOWSNT) */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2061 || IS_DIRECTORY_SEP (p[0]) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2062 #endif /* not (APOLLO || WINDOWSNT) */ |
230 | 2063 ) |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2064 && p != nm |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2065 && (0 |
230 | 2066 #ifdef VMS |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2067 || p[-1] == ':' || p[-1] == ']' || p[-1] == '>' |
230 | 2068 #endif /* VMS */ |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2069 || IS_DIRECTORY_SEP (p[-1]))) |
230 | 2070 { |
43197
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2071 for (s = p; *s && (!IS_DIRECTORY_SEP (*s) |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2072 #ifdef VMS |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2073 && *s != ':' |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2074 #endif /* VMS */ |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2075 ); s++); |
43564
1874239cb5be
(Fsubstitute_in_file_name): Fix the change from 2002-02-08.
Eli Zaretskii <eliz@gnu.org>
parents:
43197
diff
changeset
|
2076 if (p[0] == '~' && s > p + 1) /* we've got "/~something/" */ |
43197
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2077 { |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2078 o = (unsigned char *) alloca (s - p + 1); |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2079 bcopy ((char *) p, o, s - p); |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2080 o [s - p] = 0; |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2081 |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2082 pw = (struct passwd *) getpwnam (o + 1); |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2083 } |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2084 /* If we have ~/ or ~user and `user' exists, discard |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2085 everything up to ~. But if `user' does not exist, leave |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2086 ~user alone, it might be a literal file name. */ |
43564
1874239cb5be
(Fsubstitute_in_file_name): Fix the change from 2002-02-08.
Eli Zaretskii <eliz@gnu.org>
parents:
43197
diff
changeset
|
2087 if (IS_DIRECTORY_SEP (p[0]) || s == p + 1 || pw) |
43197
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2088 { |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2089 nm = p; |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2090 substituted = 1; |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2091 } |
230 | 2092 } |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2093 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2094 /* see comment in expand-file-name about drive specifiers */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2095 else if (IS_DRIVE (p[0]) && p[1] == ':' |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2096 && p > nm && IS_DIRECTORY_SEP (p[-1])) |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2097 { |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2098 nm = p; |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2099 substituted = 1; |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2100 } |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2101 #endif /* DOS_NT */ |
230 | 2102 } |
2103 | |
2104 #ifdef VMS | |
2105 return build_string (nm); | |
2106 #else | |
2107 | |
2108 /* See if any variables are substituted into the string | |
2109 and find the total length of their values in `total' */ | |
2110 | |
2111 for (p = nm; p != endp;) | |
2112 if (*p != '$') | |
2113 p++; | |
2114 else | |
2115 { | |
2116 p++; | |
2117 if (p == endp) | |
2118 goto badsubst; | |
2119 else if (*p == '$') | |
2120 { | |
2121 /* "$$" means a single "$" */ | |
2122 p++; | |
2123 total -= 1; | |
2124 substituted = 1; | |
2125 continue; | |
2126 } | |
2127 else if (*p == '{') | |
2128 { | |
2129 o = ++p; | |
2130 while (p != endp && *p != '}') p++; | |
2131 if (*p != '}') goto missingclose; | |
2132 s = p; | |
2133 } | |
2134 else | |
2135 { | |
2136 o = p; | |
2137 while (p != endp && (isalnum (*p) || *p == '_')) p++; | |
2138 s = p; | |
2139 } | |
2140 | |
2141 /* Copy out the variable name */ | |
2142 target = (unsigned char *) alloca (s - o + 1); | |
2143 strncpy (target, o, s - o); | |
2144 target[s - o] = 0; | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2145 #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
|
2146 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
|
2147 #endif /* DOS_NT */ |
230 | 2148 |
2149 /* Get variable value */ | |
2150 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
|
2151 if (o) |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2152 { |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2153 total += strlen (o); |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2154 substituted = 1; |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2155 } |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2156 else if (*p == '}') |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2157 goto badvar; |
230 | 2158 } |
2159 | |
2160 if (!substituted) | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2161 return filename; |
230 | 2162 |
2163 /* If substitution required, recopy the string and do it */ | |
2164 /* Make space in stack frame for the new copy */ | |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21189
diff
changeset
|
2165 xnm = (unsigned char *) alloca (STRING_BYTES (XSTRING (filename)) + total + 1); |
230 | 2166 x = xnm; |
2167 | |
2168 /* Copy the rest of the name through, replacing $ constructs with values */ | |
2169 for (p = nm; *p;) | |
2170 if (*p != '$') | |
2171 *x++ = *p++; | |
2172 else | |
2173 { | |
2174 p++; | |
2175 if (p == endp) | |
2176 goto badsubst; | |
2177 else if (*p == '$') | |
2178 { | |
2179 *x++ = *p++; | |
2180 continue; | |
2181 } | |
2182 else if (*p == '{') | |
2183 { | |
2184 o = ++p; | |
2185 while (p != endp && *p != '}') p++; | |
2186 if (*p != '}') goto missingclose; | |
2187 s = p++; | |
2188 } | |
2189 else | |
2190 { | |
2191 o = p; | |
2192 while (p != endp && (isalnum (*p) || *p == '_')) p++; | |
2193 s = p; | |
2194 } | |
2195 | |
2196 /* Copy out the variable name */ | |
2197 target = (unsigned char *) alloca (s - o + 1); | |
2198 strncpy (target, o, s - o); | |
2199 target[s - o] = 0; | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2200 #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
|
2201 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
|
2202 #endif /* DOS_NT */ |
230 | 2203 |
2204 /* Get variable value */ | |
2205 o = (unsigned char *) egetenv (target); | |
2206 if (!o) | |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2207 { |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2208 *x++ = '$'; |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2209 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
|
2210 } |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2211 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
|
2212 { |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2213 /* 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
|
2214 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
|
2215 while (*o) |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2216 { |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
2217 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
|
2218 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
|
2219 } |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2220 } |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2221 else |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2222 { |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2223 strcpy (x, o); |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2224 x += strlen (o); |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2225 } |
230 | 2226 } |
2227 | |
2228 *x = 0; | |
2229 | |
19754
380cbf03df01
(Fexpand_file_name): If default dir isn't string, use `/'.
Richard M. Stallman <rms@gnu.org>
parents:
19695
diff
changeset
|
2230 /* If /~ or // appears, discard everything through first slash. */ |
230 | 2231 |
2232 for (p = xnm; p != x; p++) | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2233 if ((p[0] == '~' |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2234 #if defined (APOLLO) || defined (WINDOWSNT) |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2235 || (IS_DIRECTORY_SEP (p[0]) && p - 1 != xnm) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2236 #else /* not (APOLLO || WINDOWSNT) */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2237 || IS_DIRECTORY_SEP (p[0]) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2238 #endif /* not (APOLLO || WINDOWSNT) */ |
230 | 2239 ) |
17580
331ce9fbf08b
(Fsubstitute_in_file_name): Use xnm uniformly, never nm,
Richard M. Stallman <rms@gnu.org>
parents:
17558
diff
changeset
|
2240 && p != xnm && IS_DIRECTORY_SEP (p[-1])) |
230 | 2241 xnm = p; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2242 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2243 else if (IS_DRIVE (p[0]) && p[1] == ':' |
23617
690f81d9c3a2
(Fsubstitute_in_file_name) [DOS_NT]: Fix typo.
Geoff Voelker <voelker@cs.washington.edu>
parents:
23569
diff
changeset
|
2244 && p > xnm && IS_DIRECTORY_SEP (p[-1])) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2245 xnm = p; |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2246 #endif |
230 | 2247 |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2248 if (STRING_MULTIBYTE (filename)) |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2249 return make_string (xnm, x - xnm); |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2250 return make_unibyte_string (xnm, x - xnm); |
230 | 2251 |
2252 badsubst: | |
2253 error ("Bad format environment-variable substitution"); | |
2254 missingclose: | |
2255 error ("Missing \"}\" in environment-variable substitution"); | |
2256 badvar: | |
2257 error ("Substituting nonexistent environment variable \"%s\"", target); | |
2258 | |
2259 /* NOTREACHED */ | |
2260 #endif /* not VMS */ | |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31775
diff
changeset
|
2261 return Qnil; |
230 | 2262 } |
2263 | |
853 | 2264 /* 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
|
2265 (directory-file-name (expand-file-name FOO)). */ |
853 | 2266 |
230 | 2267 Lisp_Object |
2268 expand_and_dir_to_file (filename, defdir) | |
2269 Lisp_Object filename, defdir; | |
2270 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2271 register Lisp_Object absname; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2272 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2273 absname = Fexpand_file_name (filename, defdir); |
230 | 2274 #ifdef VMS |
2275 { | |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21189
diff
changeset
|
2276 register int c = XSTRING (absname)->data[STRING_BYTES (XSTRING (absname)) - 1]; |
230 | 2277 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
|
2278 absname = Fdirectory_file_name (absname); |
230 | 2279 } |
2280 #else | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2281 /* Remove final slash, if any (unless this is the root dir). |
230 | 2282 stat behaves differently depending! */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2283 if (XSTRING (absname)->size > 1 |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21189
diff
changeset
|
2284 && IS_DIRECTORY_SEP (XSTRING (absname)->data[STRING_BYTES (XSTRING (absname)) - 1]) |
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21189
diff
changeset
|
2285 && !IS_DEVICE_SEP (XSTRING (absname)->data[STRING_BYTES (XSTRING (absname))-2])) |
4483
6894dd27c9ec
(expand_and_dir_to_file): Use Fdirectory_file_name.
Richard M. Stallman <rms@gnu.org>
parents:
4451
diff
changeset
|
2286 /* 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
|
2287 absname = Fdirectory_file_name (absname); |
230 | 2288 #endif |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2289 return absname; |
230 | 2290 } |
2291 | |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2292 /* 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
|
2293 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
|
2294 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
|
2295 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
|
2296 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
|
2297 |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2298 *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
|
2299 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
|
2300 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
|
2301 |
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2302 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
|
2303 |
8846
6bf0ce964319
(barf_or_query_if_file_exists): Fix declaration.
Karl Heuer <kwzh@gnu.org>
parents:
8808
diff
changeset
|
2304 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
|
2305 barf_or_query_if_file_exists (absname, querystring, interactive, statptr, quick) |
230 | 2306 Lisp_Object absname; |
2307 unsigned char *querystring; | |
2308 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
|
2309 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
|
2310 int quick; |
230 | 2311 { |
21949
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
2312 register Lisp_Object tem, encoded_filename; |
8597 | 2313 struct stat statbuf; |
230 | 2314 struct gcpro gcpro1; |
2315 | |
21949
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
2316 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
|
2317 |
8597 | 2318 /* stat is a good way to tell whether the file exists, |
2319 regardless of what access permissions it has. */ | |
21949
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
2320 if (stat (XSTRING (encoded_filename)->data, &statbuf) >= 0) |
230 | 2321 { |
2322 if (! interactive) | |
2323 Fsignal (Qfile_already_exists, | |
2324 Fcons (build_string ("File already exists"), | |
2325 Fcons (absname, Qnil))); | |
2326 GCPRO1 (absname); | |
21304
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2327 tem = format1 ("File %s already exists; %s anyway? ", |
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2328 XSTRING (absname)->data, querystring); |
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2329 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
|
2330 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
|
2331 else |
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2332 tem = do_yes_or_no_p (tem); |
230 | 2333 UNGCPRO; |
485 | 2334 if (NILP (tem)) |
230 | 2335 Fsignal (Qfile_already_exists, |
2336 Fcons (build_string ("File already exists"), | |
2337 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
|
2338 if (statptr) |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2339 *statptr = statbuf; |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2340 } |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2341 else |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2342 { |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2343 if (statptr) |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2344 statptr->st_mode = 0; |
230 | 2345 } |
2346 return; | |
2347 } | |
2348 | |
2349 DEFUN ("copy-file", Fcopy_file, Scopy_file, 2, 4, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2350 "fCopy file: \nFCopy %s to file: \np\nP", |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2351 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
|
2352 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
|
2353 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
|
2354 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
|
2355 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
|
2356 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
|
2357 Fourth arg KEEP-TIME non-nil means give the new file the same |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2358 last-modified time as the old one. (This works on only some systems.) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2359 A prefix arg makes KEEP-TIME non-nil. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2360 (file, newname, ok_if_already_exists, keep_time) |
34633
3a16306fdadf
(Fcopy_file): Rename the last argument to keep_time, to
Eli Zaretskii <eliz@gnu.org>
parents:
34176
diff
changeset
|
2361 Lisp_Object file, newname, ok_if_already_exists, keep_time; |
230 | 2362 { |
2363 int ifd, ofd, n; | |
2364 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
|
2365 struct stat st, out_st; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2366 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2367 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2368 int count = specpdl_ptr - specpdl; |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2369 int input_file_statable_p; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2370 Lisp_Object encoded_file, encoded_newname; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2371 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2372 encoded_file = encoded_newname = Qnil; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2373 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
|
2374 CHECK_STRING (file); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2375 CHECK_STRING (newname); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2376 |
39603
5d5957da979a
(Fcopy_file): If NEWNAME is a directory copy FILE there.
Gerd Moellmann <gerd@gnu.org>
parents:
39457
diff
changeset
|
2377 if (!NILP (Ffile_directory_p (newname))) |
5d5957da979a
(Fcopy_file): If NEWNAME is a directory copy FILE there.
Gerd Moellmann <gerd@gnu.org>
parents:
39457
diff
changeset
|
2378 newname = Fexpand_file_name (file, newname); |
5d5957da979a
(Fcopy_file): If NEWNAME is a directory copy FILE there.
Gerd Moellmann <gerd@gnu.org>
parents:
39457
diff
changeset
|
2379 else |
5d5957da979a
(Fcopy_file): If NEWNAME is a directory copy FILE there.
Gerd Moellmann <gerd@gnu.org>
parents:
39457
diff
changeset
|
2380 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
|
2381 |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2382 file = Fexpand_file_name (file, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2383 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
2384 /* 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
|
2385 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
|
2386 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
|
2387 /* 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
|
2388 if (NILP (handler)) |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2389 handler = Ffind_file_name_handler (newname, Qcopy_file); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2390 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2391 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
|
2392 ok_if_already_exists, keep_time)); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2393 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2394 encoded_file = ENCODE_FILE (file); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2395 encoded_newname = ENCODE_FILE (newname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2396 |
485 | 2397 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
|
2398 || INTEGERP (ok_if_already_exists)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2399 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
|
2400 INTEGERP (ok_if_already_exists), &out_st, 0); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2401 else if (stat (XSTRING (encoded_newname)->data, &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
|
2402 out_st.st_mode = 0; |
230 | 2403 |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2404 #ifdef WINDOWSNT |
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2405 if (!CopyFile (XSTRING (encoded_file)->data, |
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2406 XSTRING (encoded_newname)->data, |
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2407 FALSE)) |
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2408 report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil))); |
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2409 else if (NILP (keep_time)) |
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2410 { |
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2411 EMACS_TIME now; |
43792
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2412 DWORD attributes; |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2413 char * filename; |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2414 |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2415 EMACS_GET_TIME (now); |
43792
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2416 filename = XSTRING (encoded_newname)->data; |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2417 |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2418 /* 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
|
2419 attributes = GetFileAttributes (filename); |
43799
b1abfedc2e1d
(Fcopy_file): Fix last change.
Jason Rumney <jasonr@gnu.org>
parents:
43792
diff
changeset
|
2420 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
|
2421 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
|
2422 { |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2423 /* Restore original attributes. */ |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2424 SetFileAttributes (filename, attributes); |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2425 Fsignal (Qfile_date_error, |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2426 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
|
2427 Fcons (newname, Qnil))); |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2428 } |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2429 /* Restore original attributes. */ |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2430 SetFileAttributes (filename, attributes); |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2431 } |
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2432 #else /* not WINDOWSNT */ |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
2433 ifd = emacs_open (XSTRING (encoded_file)->data, O_RDONLY, 0); |
230 | 2434 if (ifd < 0) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2435 report_file_error ("Opening input file", Fcons (file, Qnil)); |
230 | 2436 |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2437 record_unwind_protect (close_file_unwind, make_number (ifd)); |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2438 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2439 /* 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
|
2440 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
|
2441 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
|
2442 |
21739
e02be2b47d18
(Fcopy_file): Skip dev/inode check on Windows.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21684
diff
changeset
|
2443 #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
|
2444 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
|
2445 && 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
|
2446 { |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2447 errno = 0; |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2448 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
|
2449 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
|
2450 } |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2451 #endif |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2452 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2453 #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
|
2454 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
|
2455 { |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2456 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
|
2457 { |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2458 #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
|
2459 /* 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
|
2460 errno = EISDIR; |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2461 #endif /* EISDIR */ |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2462 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
|
2463 } |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2464 } |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2465 #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
|
2466 |
230 | 2467 #ifdef VMS |
2468 /* Create the copy file with the same record format as the input file */ | |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2469 ofd = sys_creat (XSTRING (encoded_newname)->data, 0666, ifd); |
230 | 2470 #else |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2471 #ifdef MSDOS |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2472 /* System's default file type was set to binary by _fmode in emacs.c. */ |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2473 ofd = creat (XSTRING (encoded_newname)->data, S_IREAD | S_IWRITE); |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2474 #else /* not MSDOS */ |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2475 ofd = creat (XSTRING (encoded_newname)->data, 0666); |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2476 #endif /* not MSDOS */ |
230 | 2477 #endif /* VMS */ |
2478 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
|
2479 report_file_error ("Opening output file", Fcons (newname, Qnil)); |
230 | 2480 |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2481 record_unwind_protect (close_file_unwind, make_number (ofd)); |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2482 |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2483 immediate_quit = 1; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2484 QUIT; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
2485 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
|
2486 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
|
2487 report_file_error ("I/O error", Fcons (newname, Qnil)); |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2488 immediate_quit = 0; |
230 | 2489 |
7493
f4fb8b913c5d
(Fcopy_file): Close output before setting its times.
Richard M. Stallman <rms@gnu.org>
parents:
7445
diff
changeset
|
2490 /* 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
|
2491 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
|
2492 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
|
2493 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2494 if (input_file_statable_p) |
230 | 2495 { |
34633
3a16306fdadf
(Fcopy_file): Rename the last argument to keep_time, to
Eli Zaretskii <eliz@gnu.org>
parents:
34176
diff
changeset
|
2496 if (!NILP (keep_time)) |
230 | 2497 { |
564 | 2498 EMACS_TIME atime, mtime; |
2499 EMACS_SET_SECS_USECS (atime, st.st_atime, 0); | |
2500 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0); | |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2501 if (set_file_times (XSTRING (encoded_newname)->data, |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2502 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
|
2503 Fsignal (Qfile_date_error, |
17287
b1cb0037ecec
(Fcopy_file): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
17286
diff
changeset
|
2504 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
|
2505 Fcons (newname, Qnil))); |
230 | 2506 } |
13541
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2507 #ifndef MSDOS |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2508 chmod (XSTRING (encoded_newname)->data, 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
|
2509 #else /* MSDOS */ |
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2510 #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
|
2511 /* 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
|
2512 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
|
2513 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
|
2514 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
|
2515 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2516 chmod (XSTRING (encoded_newname)->data, 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
|
2517 #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
|
2518 #endif /* MSDOS */ |
230 | 2519 } |
2520 | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
2521 emacs_close (ifd); |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2522 #endif /* WINDOWSNT */ |
7493
f4fb8b913c5d
(Fcopy_file): Close output before setting its times.
Richard M. Stallman <rms@gnu.org>
parents:
7445
diff
changeset
|
2523 |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2524 /* Discard the unwind protects. */ |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2525 specpdl_ptr = specpdl + count; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2526 |
230 | 2527 UNGCPRO; |
2528 return Qnil; | |
2529 } | |
10084
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2530 |
1533
b86ef0432100
(Fmake_directory_internal): Renamed from Fmake_directory.
Richard M. Stallman <rms@gnu.org>
parents:
1377
diff
changeset
|
2531 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
|
2532 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
|
2533 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
|
2534 (directory) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2535 Lisp_Object directory; |
230 | 2536 { |
2537 unsigned char *dir; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2538 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2539 Lisp_Object encoded_dir; |
230 | 2540 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2541 CHECK_STRING (directory); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2542 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
|
2543 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2544 handler = Ffind_file_name_handler (directory, Qmake_directory_internal); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2545 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2546 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
|
2547 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2548 encoded_dir = ENCODE_FILE (directory); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2549 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2550 dir = XSTRING (encoded_dir)->data; |
230 | 2551 |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2552 #ifdef WINDOWSNT |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2553 if (mkdir (dir) != 0) |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2554 #else |
230 | 2555 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
|
2556 #endif |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2557 report_file_error ("Creating directory", Flist (1, &directory)); |
230 | 2558 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2559 return Qnil; |
230 | 2560 } |
2561 | |
686
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
2562 DEFUN ("delete-directory", Fdelete_directory, Sdelete_directory, 1, 1, "FDelete directory: ", |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2563 doc: /* Delete 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
|
2564 (directory) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2565 Lisp_Object directory; |
230 | 2566 { |
2567 unsigned char *dir; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2568 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2569 Lisp_Object encoded_dir; |
230 | 2570 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2571 CHECK_STRING (directory); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2572 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
|
2573 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2574 handler = Ffind_file_name_handler (directory, Qdelete_directory); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2575 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2576 return call2 (handler, Qdelete_directory, directory); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2577 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2578 encoded_dir = ENCODE_FILE (directory); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2579 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2580 dir = XSTRING (encoded_dir)->data; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2581 |
230 | 2582 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
|
2583 report_file_error ("Removing directory", Flist (1, &directory)); |
230 | 2584 |
2585 return Qnil; | |
2586 } | |
2587 | |
2588 DEFUN ("delete-file", Fdelete_file, Sdelete_file, 1, 1, "fDelete file: ", | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2589 doc: /* Delete file named FILENAME. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2590 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
|
2591 (filename) |
230 | 2592 Lisp_Object filename; |
2593 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2594 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2595 Lisp_Object encoded_file; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2596 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2597 CHECK_STRING (filename); |
230 | 2598 filename = Fexpand_file_name (filename, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2599 |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2600 handler = Ffind_file_name_handler (filename, Qdelete_file); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2601 if (!NILP (handler)) |
9170
1d95c81487a3
(Fdelete_file): Undo Sep 16 change.
Karl Heuer <kwzh@gnu.org>
parents:
9131
diff
changeset
|
2602 return call2 (handler, Qdelete_file, filename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2603 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2604 encoded_file = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2605 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2606 if (0 > unlink (XSTRING (encoded_file)->data)) |
230 | 2607 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
|
2608 return Qnil; |
230 | 2609 } |
2610 | |
10084
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2611 static Lisp_Object |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2612 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
|
2613 Lisp_Object ignore; |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2614 { |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2615 return Qt; |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2616 } |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2617 |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2618 /* 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
|
2619 |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2620 int |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2621 internal_delete_file (filename) |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2622 Lisp_Object filename; |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2623 { |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2624 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
|
2625 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
|
2626 } |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2627 |
230 | 2628 DEFUN ("rename-file", Frename_file, Srename_file, 2, 3, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2629 "fRename file: \nFRename %s to file: \np", |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2630 doc: /* Rename FILE as NEWNAME. Both args strings. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2631 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
|
2632 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
|
2633 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
|
2634 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
|
2635 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
|
2636 (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
|
2637 Lisp_Object file, newname, ok_if_already_exists; |
230 | 2638 { |
2639 #ifdef NO_ARG_ARRAY | |
2640 Lisp_Object args[2]; | |
2641 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2642 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2643 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2644 Lisp_Object encoded_file, encoded_newname; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2645 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2646 encoded_file = encoded_newname = Qnil; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2647 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
|
2648 CHECK_STRING (file); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2649 CHECK_STRING (newname); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2650 file = Fexpand_file_name (file, Qnil); |
230 | 2651 newname = Fexpand_file_name (newname, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2652 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2653 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2654 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
|
2655 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
|
2656 if (NILP (handler)) |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2657 handler = Ffind_file_name_handler (newname, Qrename_file); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2658 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
|
2659 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
|
2660 file, newname, ok_if_already_exists)); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2661 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2662 encoded_file = ENCODE_FILE (file); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2663 encoded_newname = ENCODE_FILE (newname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2664 |
30376
a931186f35fa
(syms_of_coding): Doc fix for inhibit-iso-escape-detection.
Eli Zaretskii <eliz@gnu.org>
parents:
29813
diff
changeset
|
2665 #ifdef DOS_NT |
a931186f35fa
(syms_of_coding): Doc fix for inhibit-iso-escape-detection.
Eli Zaretskii <eliz@gnu.org>
parents:
29813
diff
changeset
|
2666 /* 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
|
2667 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
|
2668 file name. */ |
a931186f35fa
(syms_of_coding): Doc fix for inhibit-iso-escape-detection.
Eli Zaretskii <eliz@gnu.org>
parents:
29813
diff
changeset
|
2669 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
|
2670 #endif |
485 | 2671 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
|
2672 || INTEGERP (ok_if_already_exists)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2673 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
|
2674 INTEGERP (ok_if_already_exists), 0, 0); |
230 | 2675 #ifndef BSD4_1 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2676 if (0 > rename (XSTRING (encoded_file)->data, XSTRING (encoded_newname)->data)) |
230 | 2677 #else |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2678 if (0 > link (XSTRING (encoded_file)->data, XSTRING (encoded_newname)->data) |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2679 || 0 > unlink (XSTRING (encoded_file)->data)) |
230 | 2680 #endif |
2681 { | |
2682 if (errno == EXDEV) | |
2683 { | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2684 Fcopy_file (file, newname, |
3963
39caef7a70c2
(Frename_file): After prompting for ok-if-already-exists, pass only nil or
Roland McGrath <roland@gnu.org>
parents:
3829
diff
changeset
|
2685 /* We have already prompted if it was an integer, |
39caef7a70c2
(Frename_file): After prompting for ok-if-already-exists, pass only nil or
Roland McGrath <roland@gnu.org>
parents:
3829
diff
changeset
|
2686 so don't have copy-file prompt again. */ |
39caef7a70c2
(Frename_file): After prompting for ok-if-already-exists, pass only nil or
Roland McGrath <roland@gnu.org>
parents:
3829
diff
changeset
|
2687 NILP (ok_if_already_exists) ? Qnil : Qt, Qt); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2688 Fdelete_file (file); |
230 | 2689 } |
2690 else | |
2691 #ifdef NO_ARG_ARRAY | |
2692 { | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2693 args[0] = file; |
230 | 2694 args[1] = newname; |
2695 report_file_error ("Renaming", Flist (2, args)); | |
2696 } | |
2697 #else | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2698 report_file_error ("Renaming", Flist (2, &file)); |
230 | 2699 #endif |
2700 } | |
2701 UNGCPRO; | |
2702 return Qnil; | |
2703 } | |
2704 | |
2705 DEFUN ("add-name-to-file", Fadd_name_to_file, Sadd_name_to_file, 2, 3, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2706 "fAdd name to file: \nFName to add to %s: \np", |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2707 doc: /* Give FILE additional name NEWNAME. Both args strings. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2708 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
|
2709 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
|
2710 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
|
2711 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
|
2712 (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
|
2713 Lisp_Object file, newname, ok_if_already_exists; |
230 | 2714 { |
2715 #ifdef NO_ARG_ARRAY | |
2716 Lisp_Object args[2]; | |
2717 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2718 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2719 Lisp_Object encoded_file, encoded_newname; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2720 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2721 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2722 GCPRO4 (file, newname, encoded_file, encoded_newname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2723 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
|
2724 CHECK_STRING (file); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2725 CHECK_STRING (newname); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2726 file = Fexpand_file_name (file, Qnil); |
230 | 2727 newname = Fexpand_file_name (newname, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2728 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2729 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2730 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
|
2731 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
|
2732 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2733 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
|
2734 newname, ok_if_already_exists)); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2735 |
12985
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2736 /* 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
|
2737 call the corresponding file handler. */ |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2738 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
|
2739 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2740 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
|
2741 newname, ok_if_already_exists)); |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2742 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2743 encoded_file = ENCODE_FILE (file); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2744 encoded_newname = ENCODE_FILE (newname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2745 |
485 | 2746 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
|
2747 || INTEGERP (ok_if_already_exists)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2748 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
|
2749 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
|
2750 |
230 | 2751 unlink (XSTRING (newname)->data); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2752 if (0 > link (XSTRING (encoded_file)->data, XSTRING (encoded_newname)->data)) |
230 | 2753 { |
2754 #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
|
2755 args[0] = file; |
230 | 2756 args[1] = newname; |
2757 report_file_error ("Adding new name", Flist (2, args)); | |
2758 #else | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2759 report_file_error ("Adding new name", Flist (2, &file)); |
230 | 2760 #endif |
2761 } | |
2762 | |
2763 UNGCPRO; | |
2764 return Qnil; | |
2765 } | |
2766 | |
2767 #ifdef S_IFLNK | |
2768 DEFUN ("make-symbolic-link", Fmake_symbolic_link, Smake_symbolic_link, 2, 3, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2769 "FMake symbolic link to file: \nFMake symbolic link to file %s: \np", |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2770 doc: /* Make a symbolic link to FILENAME, named LINKNAME. Both args strings. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2771 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
|
2772 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
|
2773 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
|
2774 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
|
2775 (filename, linkname, ok_if_already_exists) |
732 | 2776 Lisp_Object filename, linkname, ok_if_already_exists; |
230 | 2777 { |
2778 #ifdef NO_ARG_ARRAY | |
2779 Lisp_Object args[2]; | |
2780 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2781 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2782 Lisp_Object encoded_filename, encoded_linkname; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2783 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2784 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2785 GCPRO4 (filename, linkname, encoded_filename, encoded_linkname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2786 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
|
2787 CHECK_STRING (filename); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2788 CHECK_STRING (linkname); |
5245
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
2789 /* 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
|
2790 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
|
2791 we want to permit links to relative file names. */ |
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
2792 if (XSTRING (filename)->data[0] == '~') |
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
2793 filename = Fexpand_file_name (filename, Qnil); |
732 | 2794 linkname = Fexpand_file_name (linkname, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2795 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2796 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2797 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
|
2798 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2799 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
|
2800 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
|
2801 linkname, ok_if_already_exists)); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2802 |
12985
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2803 /* 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
|
2804 call the corresponding file handler. */ |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2805 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
|
2806 if (!NILP (handler)) |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2807 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
|
2808 linkname, ok_if_already_exists)); |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2809 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2810 encoded_filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2811 encoded_linkname = ENCODE_FILE (linkname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2812 |
485 | 2813 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
|
2814 || INTEGERP (ok_if_already_exists)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2815 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
|
2816 INTEGERP (ok_if_already_exists), 0, 0); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2817 if (0 > symlink (XSTRING (encoded_filename)->data, |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2818 XSTRING (encoded_linkname)->data)) |
230 | 2819 { |
2820 /* If we didn't complain already, silently delete existing file. */ | |
2821 if (errno == EEXIST) | |
2822 { | |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2823 unlink (XSTRING (encoded_linkname)->data); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2824 if (0 <= symlink (XSTRING (encoded_filename)->data, |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2825 XSTRING (encoded_linkname)->data)) |
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2826 { |
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2827 UNGCPRO; |
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2828 return Qnil; |
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2829 } |
230 | 2830 } |
2831 | |
2832 #ifdef NO_ARG_ARRAY | |
2833 args[0] = filename; | |
732 | 2834 args[1] = linkname; |
230 | 2835 report_file_error ("Making symbolic link", Flist (2, args)); |
2836 #else | |
2837 report_file_error ("Making symbolic link", Flist (2, &filename)); | |
2838 #endif | |
2839 } | |
2840 UNGCPRO; | |
2841 return Qnil; | |
2842 } | |
2843 #endif /* S_IFLNK */ | |
2844 | |
2845 #ifdef VMS | |
2846 | |
2847 DEFUN ("define-logical-name", Fdefine_logical_name, Sdefine_logical_name, | |
2848 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
|
2849 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
|
2850 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
|
2851 (name, string) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2852 Lisp_Object name; |
230 | 2853 Lisp_Object string; |
2854 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2855 CHECK_STRING (name); |
485 | 2856 if (NILP (string)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2857 delete_logical_name (XSTRING (name)->data); |
230 | 2858 else |
2859 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2860 CHECK_STRING (string); |
230 | 2861 |
2862 if (XSTRING (string)->size == 0) | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2863 delete_logical_name (XSTRING (name)->data); |
230 | 2864 else |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2865 define_logical_name (XSTRING (name)->data, XSTRING (string)->data); |
230 | 2866 } |
2867 | |
2868 return string; | |
2869 } | |
2870 #endif /* VMS */ | |
2871 | |
2872 #ifdef HPUX_NET | |
2873 | |
2874 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
|
2875 doc: /* Open a network connection to PATH using LOGIN as the login string. */) |
230 | 2876 (path, login) |
2877 Lisp_Object path, login; | |
2878 { | |
2879 int netresult; | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2880 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2881 CHECK_STRING (path); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2882 CHECK_STRING (login); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2883 |
230 | 2884 netresult = netunam (XSTRING (path)->data, XSTRING (login)->data); |
2885 | |
2886 if (netresult == -1) | |
2887 return Qnil; | |
2888 else | |
2889 return Qt; | |
2890 } | |
2891 #endif /* HPUX_NET */ | |
2892 | |
2893 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p, | |
2894 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
|
2895 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
|
2896 On Unix, this is a name starting with a `/' or a `~'. */) |
230 | 2897 (filename) |
2898 Lisp_Object filename; | |
2899 { | |
2900 unsigned char *ptr; | |
2901 | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2902 CHECK_STRING (filename); |
230 | 2903 ptr = XSTRING (filename)->data; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2904 if (IS_DIRECTORY_SEP (*ptr) || *ptr == '~' |
230 | 2905 #ifdef VMS |
2906 /* ??? This criterion is probably wrong for '<'. */ | |
2907 || index (ptr, ':') || index (ptr, '<') | |
2908 || (*ptr == '[' && (ptr[1] != '-' || (ptr[2] != '.' && ptr[2] != ']')) | |
2909 && ptr[1] != '.') | |
2910 #endif /* VMS */ | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2911 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2912 || (IS_DRIVE (*ptr) && ptr[1] == ':' && IS_DIRECTORY_SEP (ptr[2])) |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2913 #endif |
230 | 2914 ) |
2915 return Qt; | |
2916 else | |
2917 return Qnil; | |
2918 } | |
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2919 |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2920 /* 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
|
2921 |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2922 static int |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2923 check_executable (filename) |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2924 char *filename; |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2925 { |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2926 #ifdef DOS_NT |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2927 int len = strlen (filename); |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2928 char *suffix; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2929 struct stat st; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2930 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
|
2931 return 0; |
15625
537b4cdf9eff
(Fcopy_file): Use st_ino under DJGPP v2 and later to
Karl Heuer <kwzh@gnu.org>
parents:
15617
diff
changeset
|
2932 #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
|
2933 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
|
2934 #else |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2935 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
|
2936 && len >= 5 |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2937 && (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
|
2938 || 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
|
2939 || stricmp (suffix, ".bat") == 0) |
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2940 || (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
|
2941 #endif /* not WINDOWSNT */ |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2942 #else /* not DOS_NT */ |
15533
a749d414efbb
(check_executable): Use euidaccess, not eaccess.
Richard M. Stallman <rms@gnu.org>
parents:
15427
diff
changeset
|
2943 #ifdef HAVE_EUIDACCESS |
a749d414efbb
(check_executable): Use euidaccess, not eaccess.
Richard M. Stallman <rms@gnu.org>
parents:
15427
diff
changeset
|
2944 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
|
2945 #else |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2946 /* 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
|
2947 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
|
2948 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
|
2949 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
|
2950 #endif |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2951 #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
|
2952 } |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2953 |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2954 /* 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
|
2955 |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2956 static int |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2957 check_writable (filename) |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2958 char *filename; |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2959 { |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2960 #ifdef MSDOS |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2961 struct stat st; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2962 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
|
2963 return 0; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2964 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
|
2965 #else /* not MSDOS */ |
15738
4ccf88623c95
(check_writable): Use euidaccess, not eaccess.
Karl Heuer <kwzh@gnu.org>
parents:
15625
diff
changeset
|
2966 #ifdef HAVE_EUIDACCESS |
4ccf88623c95
(check_writable): Use euidaccess, not eaccess.
Karl Heuer <kwzh@gnu.org>
parents:
15625
diff
changeset
|
2967 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
|
2968 #else |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2969 /* 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
|
2970 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
|
2971 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
|
2972 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
|
2973 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
|
2974 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
|
2975 #endif |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2976 #endif /* not MSDOS */ |
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2977 } |
230 | 2978 |
2979 DEFUN ("file-exists-p", Ffile_exists_p, Sfile_exists_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
|
2980 doc: /* Return t if file FILENAME exists. (This does not mean 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
|
2981 See also `file-readable-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
|
2982 (filename) |
230 | 2983 Lisp_Object filename; |
2984 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2985 Lisp_Object absname; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2986 Lisp_Object handler; |
8597 | 2987 struct stat statbuf; |
230 | 2988 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2989 CHECK_STRING (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2990 absname = Fexpand_file_name (filename, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2991 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2992 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2993 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
|
2994 handler = Ffind_file_name_handler (absname, Qfile_exists_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2995 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2996 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
|
2997 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2998 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2999 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3000 return (stat (XSTRING (absname)->data, &statbuf) >= 0) ? Qt : Qnil; |
230 | 3001 } |
3002 | |
3003 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
|
3004 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
|
3005 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
|
3006 (filename) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3007 Lisp_Object filename; |
230 | 3008 { |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3009 Lisp_Object absname; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3010 Lisp_Object handler; |
230 | 3011 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3012 CHECK_STRING (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3013 absname = Fexpand_file_name (filename, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3014 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3015 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3016 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
|
3017 handler = Ffind_file_name_handler (absname, Qfile_executable_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3018 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3019 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
|
3020 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3021 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3022 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3023 return (check_executable (XSTRING (absname)->data) ? Qt : Qnil); |
230 | 3024 } |
3025 | |
3026 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
|
3027 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
|
3028 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
|
3029 (filename) |
230 | 3030 Lisp_Object filename; |
3031 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3032 Lisp_Object absname; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3033 Lisp_Object handler; |
8597 | 3034 int desc; |
16534
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3035 int flags; |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3036 struct stat statbuf; |
230 | 3037 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3038 CHECK_STRING (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3039 absname = Fexpand_file_name (filename, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3040 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3041 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3042 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
|
3043 handler = Ffind_file_name_handler (absname, Qfile_readable_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3044 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3045 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
|
3046 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3047 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3048 |
38929
ffa8f910b5f1
2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
Andrew Choi <akochoi@shaw.ca>
parents:
38924
diff
changeset
|
3049 #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
|
3050 /* 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
|
3051 directories. */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3052 if (access (XSTRING (absname)->data, 0) == 0) |
13902
31e37f3d8ccd
(Ffile_readable_p) [MSDOS]: Use access rather than open.
Richard M. Stallman <rms@gnu.org>
parents:
13769
diff
changeset
|
3053 return Qt; |
31e37f3d8ccd
(Ffile_readable_p) [MSDOS]: Use access rather than open.
Richard M. Stallman <rms@gnu.org>
parents:
13769
diff
changeset
|
3054 return Qnil; |
38929
ffa8f910b5f1
2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
Andrew Choi <akochoi@shaw.ca>
parents:
38924
diff
changeset
|
3055 #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
|
3056 flags = O_RDONLY; |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3057 #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
|
3058 /* 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
|
3059 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
|
3060 except in the case of a fifo, on a system which handles it. */ |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3061 desc = stat (XSTRING (absname)->data, &statbuf); |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3062 if (desc < 0) |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3063 return Qnil; |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3064 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
|
3065 flags |= O_NONBLOCK; |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3066 #endif |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3067 desc = emacs_open (XSTRING (absname)->data, flags, 0); |
8597 | 3068 if (desc < 0) |
3069 return Qnil; | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3070 emacs_close (desc); |
8597 | 3071 return Qt; |
38929
ffa8f910b5f1
2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
Andrew Choi <akochoi@shaw.ca>
parents:
38924
diff
changeset
|
3072 #endif /* not DOS_NT and not macintosh */ |
230 | 3073 } |
3074 | |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3075 /* 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
|
3076 on the RT/PC. */ |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3077 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
|
3078 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
|
3079 (filename) |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3080 Lisp_Object filename; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3081 { |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3082 Lisp_Object absname, dir, encoded; |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3083 Lisp_Object handler; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3084 struct stat statbuf; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3085 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3086 CHECK_STRING (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3087 absname = Fexpand_file_name (filename, Qnil); |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3088 |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3089 /* 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
|
3090 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
|
3091 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
|
3092 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3093 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
|
3094 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3095 encoded = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3096 if (stat (XSTRING (encoded)->data, &statbuf) >= 0) |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3097 return (check_writable (XSTRING (encoded)->data) |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3098 ? Qt : Qnil); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3099 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3100 dir = Ffile_name_directory (absname); |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3101 #ifdef VMS |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3102 if (!NILP (dir)) |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3103 dir = Fdirectory_file_name (dir); |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3104 #endif /* VMS */ |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3105 #ifdef MSDOS |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3106 if (!NILP (dir)) |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3107 dir = Fdirectory_file_name (dir); |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3108 #endif /* MSDOS */ |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3109 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3110 dir = ENCODE_FILE (dir); |
28673
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3111 #ifdef WINDOWSNT |
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3112 /* 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
|
3113 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
|
3114 should check ACLs though, which do affect this. */ |
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3115 if (stat (XSTRING (dir)->data, &statbuf) < 0) |
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3116 return Qnil; |
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3117 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
|
3118 #else |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3119 return (check_writable (!NILP (dir) ? (char *) XSTRING (dir)->data : "") |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3120 ? Qt : Qnil); |
28673
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3121 #endif |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3122 } |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3123 |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3124 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
|
3125 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
|
3126 The second argument STRING is used in the error message. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3127 If there is no error, we return nil. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3128 (filename, string) |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3129 Lisp_Object filename, string; |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3130 { |
40354
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3131 Lisp_Object handler, encoded_filename, absname; |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3132 int fd; |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3133 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3134 CHECK_STRING (filename); |
40354
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3135 absname = Fexpand_file_name (filename, Qnil); |
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3136 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3137 CHECK_STRING (string); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3138 |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3139 /* If the file name has special constructs in it, |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3140 call the corresponding file handler. */ |
40354
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3141 handler = Ffind_file_name_handler (absname, Qaccess_file); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3142 if (!NILP (handler)) |
40354
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3143 return call3 (handler, Qaccess_file, absname, string); |
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3144 |
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3145 encoded_filename = ENCODE_FILE (absname); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3146 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3147 fd = emacs_open (XSTRING (encoded_filename)->data, O_RDONLY, 0); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3148 if (fd < 0) |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3149 report_file_error (XSTRING (string)->data, 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
|
3150 emacs_close (fd); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3151 |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3152 return Qnil; |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3153 } |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3154 |
230 | 3155 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
|
3156 doc: /* Return non-nil if file FILENAME is the name of a symbolic link. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3157 The value is the name of the file to which it is linked. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3158 Otherwise returns nil. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3159 (filename) |
230 | 3160 Lisp_Object filename; |
3161 { | |
3162 #ifdef S_IFLNK | |
3163 char *buf; | |
3164 int bufsize; | |
3165 int valsize; | |
3166 Lisp_Object val; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3167 Lisp_Object handler; |
230 | 3168 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3169 CHECK_STRING (filename); |
230 | 3170 filename = Fexpand_file_name (filename, Qnil); |
3171 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3172 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3173 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
|
3174 handler = Ffind_file_name_handler (filename, Qfile_symlink_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3175 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3176 return call2 (handler, Qfile_symlink_p, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3177 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3178 filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3179 |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3180 bufsize = 50; |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3181 buf = NULL; |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3182 do |
230 | 3183 { |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3184 bufsize *= 2; |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3185 buf = (char *) xrealloc (buf, bufsize); |
230 | 3186 bzero (buf, bufsize); |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3187 |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3188 errno = 0; |
230 | 3189 valsize = readlink (XSTRING (filename)->data, buf, bufsize); |
39291
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3190 if (valsize == -1) |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3191 { |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3192 #ifdef ERANGE |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3193 /* 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
|
3194 if (errno == ERANGE) |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3195 valsize = bufsize; |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3196 else |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3197 #endif |
39291
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3198 { |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3199 xfree (buf); |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3200 return Qnil; |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3201 } |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3202 } |
230 | 3203 } |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3204 while (valsize >= bufsize); |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3205 |
230 | 3206 val = make_string (buf, valsize); |
27870
a36c3e02f43b
(Ffile_symlink_p): If result starts with a `/'
Gerd Moellmann <gerd@gnu.org>
parents:
27789
diff
changeset
|
3207 if (buf[0] == '/' && index (buf, ':')) |
a36c3e02f43b
(Ffile_symlink_p): If result starts with a `/'
Gerd Moellmann <gerd@gnu.org>
parents:
27789
diff
changeset
|
3208 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
|
3209 xfree (buf); |
21048
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
3210 val = DECODE_FILE (val); |
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
3211 return val; |
230 | 3212 #else /* not S_IFLNK */ |
3213 return Qnil; | |
3214 #endif /* not S_IFLNK */ | |
3215 } | |
3216 | |
3217 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
|
3218 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
|
3219 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
|
3220 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
|
3221 (filename) |
230 | 3222 Lisp_Object filename; |
3223 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3224 register Lisp_Object absname; |
230 | 3225 struct stat st; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3226 Lisp_Object handler; |
230 | 3227 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3228 absname = expand_and_dir_to_file (filename, current_buffer->directory); |
230 | 3229 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3230 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3231 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
|
3232 handler = Ffind_file_name_handler (absname, Qfile_directory_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3233 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3234 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
|
3235 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3236 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3237 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3238 if (stat (XSTRING (absname)->data, &st) < 0) |
230 | 3239 return Qnil; |
3240 return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil; | |
3241 } | |
3242 | |
536 | 3243 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
|
3244 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
|
3245 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
|
3246 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
|
3247 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
|
3248 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
|
3249 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
|
3250 searchable directory. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3251 (filename) |
536 | 3252 Lisp_Object filename; |
3253 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3254 Lisp_Object handler; |
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
3255 int tem; |
8703
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3256 struct gcpro gcpro1; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3257 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3258 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3259 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
|
3260 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
|
3261 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3262 return call2 (handler, Qfile_accessible_directory_p, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3263 |
8703
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3264 /* It's an unlikely combination, but yes we really do need to gcpro: |
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3265 Suppose that file-accessible-directory-p has no handler, but |
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3266 file-directory-p does have a handler; this handler causes a GC which |
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3267 relocates the string in `filename'; and finally file-directory-p |
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3268 returns non-nil. Then we would end up passing a garbaged string |
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3269 to file-executable-p. */ |
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3270 GCPRO1 (filename); |
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
3271 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
|
3272 || NILP (Ffile_executable_p (filename))); |
8703
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3273 UNGCPRO; |
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
3274 return tem ? Qnil : Qt; |
536 | 3275 } |
3276 | |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3277 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
|
3278 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
|
3279 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
|
3280 (filename) |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3281 Lisp_Object filename; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3282 { |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3283 register Lisp_Object absname; |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3284 struct stat st; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3285 Lisp_Object handler; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3286 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3287 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
|
3288 |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3289 /* 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
|
3290 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
|
3291 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
|
3292 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3293 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
|
3294 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3295 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3296 |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3297 #ifdef WINDOWSNT |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3298 { |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3299 int result; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3300 Lisp_Object tem = Vw32_get_true_file_attributes; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3301 |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3302 /* 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
|
3303 Vw32_get_true_file_attributes = Qt; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3304 result = stat (XSTRING (absname)->data, &st); |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3305 Vw32_get_true_file_attributes = tem; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3306 |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3307 if (result < 0) |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3308 return Qnil; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3309 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
|
3310 } |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3311 #else |
24392
634381209ab5
(Ffile_regular_p): Undo previous change.
Karl Heuer <kwzh@gnu.org>
parents:
24367
diff
changeset
|
3312 if (stat (XSTRING (absname)->data, &st) < 0) |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3313 return Qnil; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3314 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
|
3315 #endif |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3316 } |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3317 |
230 | 3318 DEFUN ("file-modes", Ffile_modes, Sfile_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
|
3319 doc: /* Return mode bits of file named FILENAME, as an integer. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3320 (filename) |
230 | 3321 Lisp_Object filename; |
3322 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3323 Lisp_Object absname; |
230 | 3324 struct stat st; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3325 Lisp_Object handler; |
230 | 3326 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3327 absname = expand_and_dir_to_file (filename, current_buffer->directory); |
230 | 3328 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3329 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3330 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
|
3331 handler = Ffind_file_name_handler (absname, Qfile_modes); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3332 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3333 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
|
3334 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3335 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3336 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3337 if (stat (XSTRING (absname)->data, &st) < 0) |
230 | 3338 return Qnil; |
15625
537b4cdf9eff
(Fcopy_file): Use st_ino under DJGPP v2 and later to
Karl Heuer <kwzh@gnu.org>
parents:
15617
diff
changeset
|
3339 #if defined (MSDOS) && __DJGPP__ < 2 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3340 if (check_executable (XSTRING (absname)->data)) |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3341 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
|
3342 #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
|
3343 |
230 | 3344 return make_number (st.st_mode & 07777); |
3345 } | |
3346 | |
3347 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
|
3348 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
|
3349 Only the 12 low bits of MODE are used. */) |
230 | 3350 (filename, mode) |
3351 Lisp_Object filename, mode; | |
3352 { | |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3353 Lisp_Object absname, encoded_absname; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3354 Lisp_Object handler; |
230 | 3355 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3356 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
|
3357 CHECK_NUMBER (mode); |
230 | 3358 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3359 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3360 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
|
3361 handler = Ffind_file_name_handler (absname, Qset_file_modes); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3362 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3363 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
|
3364 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3365 encoded_absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3366 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3367 if (chmod (XSTRING (encoded_absname)->data, XINT (mode)) < 0) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3368 report_file_error ("Doing chmod", Fcons (absname, Qnil)); |
230 | 3369 |
3370 return Qnil; | |
3371 } | |
3372 | |
1763
65e858c07a8b
(Fset_default_file_modes, Fdefault_file_modes): Renamed from .._mode.
Richard M. Stallman <rms@gnu.org>
parents:
1762
diff
changeset
|
3373 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
|
3374 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
|
3375 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
|
3376 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
|
3377 (mode) |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3378 Lisp_Object mode; |
550 | 3379 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3380 CHECK_NUMBER (mode); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3381 |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3382 umask ((~ XINT (mode)) & 0777); |
550 | 3383 |
3384 return Qnil; | |
3385 } | |
3386 | |
1763
65e858c07a8b
(Fset_default_file_modes, Fdefault_file_modes): Renamed from .._mode.
Richard M. Stallman <rms@gnu.org>
parents:
1762
diff
changeset
|
3387 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
|
3388 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
|
3389 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
|
3390 () |
550 | 3391 { |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3392 int realmask; |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3393 Lisp_Object value; |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3394 |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3395 realmask = umask (0); |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3396 umask (realmask); |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3397 |
9266
811ad893828b
(Fdefault_file_modes, Finsert_file_contents, Fdo_auto_save): Use new accessor
Karl Heuer <kwzh@gnu.org>
parents:
9241
diff
changeset
|
3398 XSETINT (value, (~ realmask) & 0777); |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3399 return value; |
550 | 3400 } |
27925
8ef4ce88fa64
[__NetBSD__]: Define `unix'.
Gerd Moellmann <gerd@gnu.org>
parents:
27870
diff
changeset
|
3401 |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3402 |
27925
8ef4ce88fa64
[__NetBSD__]: Define `unix'.
Gerd Moellmann <gerd@gnu.org>
parents:
27870
diff
changeset
|
3403 #ifdef __NetBSD__ |
8ef4ce88fa64
[__NetBSD__]: Define `unix'.
Gerd Moellmann <gerd@gnu.org>
parents:
27870
diff
changeset
|
3404 #define unix 42 |
8ef4ce88fa64
[__NetBSD__]: Define `unix'.
Gerd Moellmann <gerd@gnu.org>
parents:
27870
diff
changeset
|
3405 #endif |
8ef4ce88fa64
[__NetBSD__]: Define `unix'.
Gerd Moellmann <gerd@gnu.org>
parents:
27870
diff
changeset
|
3406 |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3407 #ifdef unix |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3408 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
|
3409 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
|
3410 () |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3411 { |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3412 sync (); |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3413 return Qnil; |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3414 } |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3415 |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3416 #endif /* unix */ |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3417 |
230 | 3418 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
|
3419 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
|
3420 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
|
3421 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
|
3422 (file1, file2) |
230 | 3423 Lisp_Object file1, file2; |
3424 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3425 Lisp_Object absname1, absname2; |
230 | 3426 struct stat st; |
3427 int mtime1; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3428 Lisp_Object handler; |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3429 struct gcpro gcpro1, gcpro2; |
230 | 3430 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3431 CHECK_STRING (file1); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3432 CHECK_STRING (file2); |
230 | 3433 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3434 absname1 = Qnil; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3435 GCPRO2 (absname1, file2); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3436 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
|
3437 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
|
3438 UNGCPRO; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3439 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3440 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3441 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
|
3442 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
|
3443 if (NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3444 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
|
3445 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3446 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
|
3447 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3448 GCPRO2 (absname1, absname2); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3449 absname1 = ENCODE_FILE (absname1); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3450 absname2 = ENCODE_FILE (absname2); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3451 UNGCPRO; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3452 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3453 if (stat (XSTRING (absname1)->data, &st) < 0) |
230 | 3454 return Qnil; |
3455 | |
3456 mtime1 = st.st_mtime; | |
3457 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3458 if (stat (XSTRING (absname2)->data, &st) < 0) |
230 | 3459 return Qt; |
3460 | |
3461 return (mtime1 > st.st_mtime) ? Qt : Qnil; | |
3462 } | |
3463 | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3464 #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
|
3465 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
|
3466 #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
|
3467 |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3468 #ifndef READ_BUF_SIZE |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3469 #define READ_BUF_SIZE (64 << 10) |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3470 #endif |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3471 |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3472 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
|
3473 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3474 /* 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
|
3475 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
|
3476 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
|
3477 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
|
3478 insertion). |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3479 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3480 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
|
3481 alter the buffer contents, change the current buffer. |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3482 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3483 Here, we reset all those changes by: |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3484 o set back the current buffer. |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3485 o move all markers and overlays to BEG. |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3486 o remove all text properties. |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3487 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
|
3488 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3489 static Lisp_Object |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3490 decide_coding_unwind (unwind_data) |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3491 Lisp_Object unwind_data; |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3492 { |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3493 Lisp_Object multibyte, undo_list, buffer; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3494 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3495 multibyte = XCAR (unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3496 unwind_data = XCDR (unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3497 undo_list = XCAR (unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3498 buffer = XCDR (unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3499 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3500 if (current_buffer != XBUFFER (buffer)) |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3501 set_buffer_internal (XBUFFER (buffer)); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3502 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
|
3503 adjust_overlays_for_delete (BEG, Z - BEG); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3504 BUF_INTERVALS (current_buffer) = 0; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3505 TEMP_SET_PT_BOTH (BEG, BEG_BYTE); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3506 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3507 /* 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
|
3508 current_buffer->enable_multibyte_characters = multibyte; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3509 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
|
3510 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3511 return Qnil; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3512 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3513 |
38364
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3514 |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3515 /* 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
|
3516 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3517 static int non_regular_fd; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3518 static int non_regular_inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3519 static int non_regular_nbytes; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3520 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3521 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3522 /* Read from a non-regular file. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3523 Read non_regular_trytry bytes max from non_regular_fd. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3524 Non_regular_inserted specifies where to put the read bytes. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3525 Value is the number of bytes read. */ |
38364
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3526 |
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3527 static Lisp_Object |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3528 read_non_regular () |
38364
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3529 { |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3530 int nbytes; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3531 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3532 immediate_quit = 1; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3533 QUIT; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3534 nbytes = emacs_read (non_regular_fd, |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3535 BEG_ADDR + PT_BYTE - 1 + non_regular_inserted, |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3536 non_regular_nbytes); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3537 immediate_quit = 0; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3538 return make_number (nbytes); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3539 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3540 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3541 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3542 /* Condition-case handler used when reading from non-regular files |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3543 in insert-file-contents. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3544 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3545 static Lisp_Object |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3546 read_non_regular_quit () |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3547 { |
38364
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3548 return Qnil; |
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3549 } |
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3550 |
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3551 |
230 | 3552 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
|
3553 1, 5, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3554 doc: /* Insert contents of file FILENAME after point. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3555 Returns list of absolute file name and number of bytes inserted. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3556 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
|
3557 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
|
3558 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
|
3559 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
|
3560 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
|
3561 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
|
3562 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
|
3563 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
|
3564 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3565 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
|
3566 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
|
3567 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
|
3568 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
|
3569 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
|
3570 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
|
3571 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
|
3572 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3573 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
|
3574 `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
|
3575 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
|
3576 actually used. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3577 (filename, visit, beg, end, replace) |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3578 Lisp_Object filename, visit, beg, end, replace; |
230 | 3579 { |
3580 struct stat st; | |
3581 register int fd; | |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
3582 int inserted = 0; |
230 | 3583 register int how_much; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3584 register int unprocessed; |
34167
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
3585 int count = BINDING_STACK_SIZE (); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3586 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3587 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
|
3588 Lisp_Object p; |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31775
diff
changeset
|
3589 int total = 0; |
9921
62392796a691
(Finsert_file_contents): Init not_regular at the beginning.
Richard M. Stallman <rms@gnu.org>
parents:
9915
diff
changeset
|
3590 int not_regular = 0; |
22053
8697087ea026
(Finsert_file_contents): Check that a -*- coding: -*- spec
Richard M. Stallman <rms@gnu.org>
parents:
22042
diff
changeset
|
3591 unsigned char read_buf[READ_BUF_SIZE]; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3592 struct coding_system coding; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
3593 unsigned char buffer[1 << 14]; |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3594 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
|
3595 int set_coding_system = 0; |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3596 int coding_system_decided = 0; |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3597 int read_quit = 0; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3598 |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3599 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
|
3600 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
|
3601 |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3602 if (!NILP (current_buffer->read_only)) |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3603 Fbarf_if_buffer_read_only (); |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3604 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3605 val = Qnil; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3606 p = Qnil; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3607 orig_filename = Qnil; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3608 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3609 GCPRO4 (filename, val, p, orig_filename); |
230 | 3610 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3611 CHECK_STRING (filename); |
230 | 3612 filename = Fexpand_file_name (filename, Qnil); |
3613 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3614 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3615 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
|
3616 handler = Ffind_file_name_handler (filename, Qinsert_file_contents); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3617 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3618 { |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3619 val = call6 (handler, Qinsert_file_contents, filename, |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3620 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
|
3621 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
|
3622 inserted = XINT (XCAR (XCDR (val))); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3623 goto handled; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3624 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3625 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3626 orig_filename = filename; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3627 filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3628 |
230 | 3629 fd = -1; |
3630 | |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3631 #ifdef WINDOWSNT |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3632 { |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3633 Lisp_Object tem = Vw32_get_true_file_attributes; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3634 |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3635 /* 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
|
3636 Vw32_get_true_file_attributes = Qt; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3637 total = stat (XSTRING (filename)->data, &st); |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3638 Vw32_get_true_file_attributes = tem; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3639 } |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3640 if (total < 0) |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3641 #else |
230 | 3642 #ifndef APOLLO |
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3643 if (stat (XSTRING (filename)->data, &st) < 0) |
230 | 3644 #else |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3645 if ((fd = emacs_open (XSTRING (filename)->data, O_RDONLY, 0)) < 0 |
230 | 3646 || fstat (fd, &st) < 0) |
3647 #endif /* not APOLLO */ | |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3648 #endif /* WINDOWSNT */ |
230 | 3649 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3650 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
|
3651 badopen: |
485 | 3652 if (NILP (visit)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3653 report_file_error ("Opening input file", Fcons (orig_filename, Qnil)); |
230 | 3654 st.st_mtime = -1; |
3655 how_much = 0; | |
19925
31b8e0e60e2d
(Finsert_file_contents): If a coding system is
Richard M. Stallman <rms@gnu.org>
parents:
19861
diff
changeset
|
3656 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
|
3657 Fset (Qbuffer_file_coding_system, Vcoding_system_for_read); |
230 | 3658 goto notfound; |
3659 } | |
3660 | |
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3661 #ifdef S_IFREG |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3662 /* 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
|
3663 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
|
3664 least signal an error. */ |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3665 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
|
3666 { |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3667 not_regular = 1; |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3668 |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3669 if (! NILP (visit)) |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3670 goto notfound; |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3671 |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3672 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
|
3673 Fsignal (Qfile_error, |
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
3674 Fcons (build_string ("not a regular file"), |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3675 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
|
3676 } |
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3677 #endif |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3678 |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3679 if (fd < 0) |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3680 if ((fd = emacs_open (XSTRING (filename)->data, O_RDONLY, 0)) < 0) |
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3681 goto badopen; |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3682 |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3683 /* 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
|
3684 if (!NILP (replace)) |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3685 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
|
3686 |
230 | 3687 record_unwind_protect (close_file_unwind, make_number (fd)); |
3688 | |
3689 /* Supposedly happens on VMS. */ | |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3690 if (! not_regular && st.st_size < 0) |
230 | 3691 error ("File size is negative"); |
752 | 3692 |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
3693 /* Prevent redisplay optimizations. */ |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
3694 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
|
3695 |
27134
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3696 if (!NILP (visit)) |
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3697 { |
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3698 if (!NILP (beg) || !NILP (end)) |
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3699 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
|
3700 if (BEG < Z && NILP (replace)) |
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3701 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
|
3702 } |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3703 |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3704 if (!NILP (beg)) |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3705 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
|
3706 else |
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
3707 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
|
3708 |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3709 if (!NILP (end)) |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3710 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
|
3711 else |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3712 { |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3713 if (! not_regular) |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3714 { |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3715 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
|
3716 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3717 /* 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
|
3718 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
|
3719 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
|
3720 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
|
3721 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
|
3722 || ((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
|
3723 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
|
3724 |
2db1b1bb1d18
(Finsert_file_contents): If the file size returned from
Gerd Moellmann <gerd@gnu.org>
parents:
37292
diff
changeset
|
3725 /* 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
|
3726 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
|
3727 file in the /proc filesystem. */ |
2db1b1bb1d18
(Finsert_file_contents): If the file size returned from
Gerd Moellmann <gerd@gnu.org>
parents:
37292
diff
changeset
|
3728 if (st.st_size == 0) |
2db1b1bb1d18
(Finsert_file_contents): If the file size returned from
Gerd Moellmann <gerd@gnu.org>
parents:
37292
diff
changeset
|
3729 XSETINT (end, READ_BUF_SIZE); |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3730 } |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3731 } |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3732 |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3733 if (BEG < Z) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3734 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3735 /* 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
|
3736 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
|
3737 `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
|
3738 Lisp_Object val; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3739 val = Qnil; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3740 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3741 if (!NILP (Vcoding_system_for_read)) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3742 val = Vcoding_system_for_read; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3743 else if (! NILP (replace)) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3744 /* In REPLACE mode, we can use the same coding system |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3745 that was used to visit the file. */ |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3746 val = current_buffer->buffer_file_coding_system; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3747 else |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3748 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3749 /* 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
|
3750 specification if it is not seekable. */ |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3751 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
|
3752 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3753 /* 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
|
3754 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
|
3755 We assume that the 1K-byte and 3K-byte for heading |
24651 | 3756 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
|
3757 purpose. */ |
27613 | 3758 int nread; |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3759 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3760 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
|
3761 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
|
3762 else |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3763 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3764 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
|
3765 if (nread >= 0) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3766 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3767 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
|
3768 report_file_error ("Setting file position", |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3769 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
|
3770 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
|
3771 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3772 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3773 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3774 if (nread < 0) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3775 error ("IO error reading %s: %s", |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3776 XSTRING (orig_filename)->data, emacs_strerror (errno)); |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3777 else if (nread > 0) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3778 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3779 struct buffer *prev = current_buffer; |
44563
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3780 Lisp_Object buffer; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3781 struct buffer *buf; |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3782 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3783 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
|
3784 |
44563
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3785 buffer = Fget_buffer_create (build_string (" *code-converting-work*")); |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3786 buf = XBUFFER (buffer); |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3787 |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3788 buf->directory = current_buffer->directory; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3789 buf->read_only = Qnil; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3790 buf->filename = Qnil; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3791 buf->undo_list = Qt; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3792 buf->overlays_before = Qnil; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3793 buf->overlays_after = Qnil; |
27789
eb273bf5c3a8
(Finsert_file_contents): Unbind the binding of
Gerd Moellmann <gerd@gnu.org>
parents:
27618
diff
changeset
|
3794 |
44563
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3795 set_buffer_internal (buf); |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3796 Ferase_buffer (); |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3797 buf->enable_multibyte_characters = Qnil; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3798 |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3799 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
|
3800 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
|
3801 val = call2 (Vset_auto_coding_function, |
6e11bb792d4f
(Finsert_file_contents): Call Vset_auto_coding_function
Kenichi Handa <handa@m17n.org>
parents:
22753
diff
changeset
|
3802 filename, make_number (nread)); |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3803 set_buffer_internal (prev); |
27789
eb273bf5c3a8
(Finsert_file_contents): Unbind the binding of
Gerd Moellmann <gerd@gnu.org>
parents:
27618
diff
changeset
|
3804 |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3805 /* 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
|
3806 current buffer. */ |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3807 specpdl_ptr--; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3808 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3809 /* 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
|
3810 if (lseek (fd, 0, 0) < 0) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3811 report_file_error ("Setting file position", |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3812 Fcons (orig_filename, Qnil)); |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3813 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3814 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3815 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3816 if (NILP (val)) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3817 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3818 /* 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
|
3819 file-coding-system-alist. */ |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3820 Lisp_Object args[6], coding_systems; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3821 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3822 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
|
3823 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
|
3824 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
|
3825 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
|
3826 val = XCAR (coding_systems); |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3827 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3828 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3829 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
3830 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
|
3831 /* 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
|
3832 set_coding_system = 1; |
22362
e845baca3407
(Finsert_file_contents): Always update
Karl Heuer <kwzh@gnu.org>
parents:
22311
diff
changeset
|
3833 |
24932
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
3834 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
|
3835 && ! NILP (val)) |
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
3836 /* 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
|
3837 end-of-line conversion. */ |
22613
285822d24189
(Finsert_file_contents): Call setup_raw_text_coding_system.
Kenichi Handa <handa@m17n.org>
parents:
22493
diff
changeset
|
3838 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
|
3839 |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
3840 coding.src_multibyte = 0; |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
3841 coding.dst_multibyte |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
3842 = !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
|
3843 coding_system_decided = 1; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3844 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3845 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3846 /* 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
|
3847 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
|
3848 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
|
3849 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
|
3850 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
3851 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
|
3852 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
|
3853 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
|
3854 in a less optimal way. |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3855 |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3856 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
|
3857 method and hope for the best. |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3858 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
|
3859 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
|
3860 if (!NILP (replace) |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3861 && BEGV < ZV |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
3862 && !(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
|
3863 { |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
3864 /* 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
|
3865 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
|
3866 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
|
3867 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
|
3868 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
|
3869 int overlap; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3870 /* 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
|
3871 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
|
3872 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
|
3873 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
|
3874 |
16695
7df45948d2d8
(Finsert_file_contents): Handle BEG and END non-nil
Richard M. Stallman <rms@gnu.org>
parents:
16662
diff
changeset
|
3875 if (XINT (beg) != 0) |
7df45948d2d8
(Finsert_file_contents): Handle BEG and END non-nil
Richard M. Stallman <rms@gnu.org>
parents:
16662
diff
changeset
|
3876 { |
7df45948d2d8
(Finsert_file_contents): Handle BEG and END non-nil
Richard M. Stallman <rms@gnu.org>
parents:
16662
diff
changeset
|
3877 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
|
3878 report_file_error ("Setting file position", |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3879 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
|
3880 } |
7df45948d2d8
(Finsert_file_contents): Handle BEG and END non-nil
Richard M. Stallman <rms@gnu.org>
parents:
16662
diff
changeset
|
3881 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3882 immediate_quit = 1; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3883 QUIT; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3884 /* 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
|
3885 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
|
3886 while (1) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3887 { |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3888 int nread, bufpos; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3889 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3890 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
|
3891 if (nread < 0) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3892 error ("IO error reading %s: %s", |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3893 XSTRING (orig_filename)->data, emacs_strerror (errno)); |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3894 else if (nread == 0) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3895 break; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3896 |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17823
diff
changeset
|
3897 if (coding.type == coding_type_undecided) |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3898 detect_coding (&coding, buffer, nread); |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
3899 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
|
3900 /* 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
|
3901 Let's give up here. */ |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3902 { |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3903 giveup_match_end = 1; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3904 break; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3905 } |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3906 |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17823
diff
changeset
|
3907 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
|
3908 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
|
3909 if (coding.eol_type != CODING_EOL_UNDECIDED |
18973
9f5b8d5eed29
(Finsert_file_contents): Use new macros
Kenichi Handa <handa@m17n.org>
parents:
18861
diff
changeset
|
3910 && coding.eol_type != CODING_EOL_LF) |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3911 /* 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
|
3912 Let's give up here. */ |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3913 { |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3914 giveup_match_end = 1; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3915 break; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3916 } |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3917 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3918 bufpos = 0; |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
3919 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
|
3920 && 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
|
3921 same_at_start++, bufpos++; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3922 /* If we found a discrepancy, stop the scan. |
14036 | 3923 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
|
3924 if (bufpos != nread) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3925 break; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3926 } |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3927 immediate_quit = 0; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3928 /* If the file matches the buffer completely, |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3929 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
|
3930 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
|
3931 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3932 emacs_close (fd); |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3933 specpdl_ptr--; |
7595
9f0893928a4d
(Finsert_file_contents): Declare buffer as unsigned
Richard M. Stallman <rms@gnu.org>
parents:
7551
diff
changeset
|
3934 /* 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
|
3935 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
|
3936 goto handled; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3937 } |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3938 immediate_quit = 1; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3939 QUIT; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3940 /* 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
|
3941 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
|
3942 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
|
3943 while (!giveup_match_end) |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3944 { |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3945 int total_read, nread, bufpos, curpos, trial; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3946 |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3947 /* 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
|
3948 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
|
3949 /* 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
|
3950 if (curpos == 0) |
aba3ffcc8f51
(Finsert_file_contents): Check for beginning of file.
Karl Heuer <kwzh@gnu.org>
parents:
7611
diff
changeset
|
3951 break; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3952 /* 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
|
3953 trial = min (curpos, sizeof buffer); |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3954 if (lseek (fd, curpos - trial, 0) < 0) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3955 report_file_error ("Setting file position", |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3956 Fcons (orig_filename, Qnil)); |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3957 |
39457
dbb9a3969094
(Finsert_file_contents): If REPLACE is non-nil, stop
Gerd Moellmann <gerd@gnu.org>
parents:
39291
diff
changeset
|
3958 total_read = nread = 0; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3959 while (total_read < trial) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3960 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3961 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
|
3962 if (nread < 0) |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3963 error ("IO error reading %s: %s", |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3964 XSTRING (orig_filename)->data, emacs_strerror (errno)); |
38619
879c6b736b9f
(Finsert_file_contents): Don't treat a return value
Gerd Moellmann <gerd@gnu.org>
parents:
38450
diff
changeset
|
3965 else if (nread == 0) |
879c6b736b9f
(Finsert_file_contents): Don't treat a return value
Gerd Moellmann <gerd@gnu.org>
parents:
38450
diff
changeset
|
3966 break; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3967 total_read += nread; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3968 } |
38619
879c6b736b9f
(Finsert_file_contents): Don't treat a return value
Gerd Moellmann <gerd@gnu.org>
parents:
38450
diff
changeset
|
3969 |
14036 | 3970 /* 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
|
3971 the Emacs buffer. */ |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3972 bufpos = total_read; |
38619
879c6b736b9f
(Finsert_file_contents): Don't treat a return value
Gerd Moellmann <gerd@gnu.org>
parents:
38450
diff
changeset
|
3973 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3974 /* 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
|
3975 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
|
3976 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
|
3977 && 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
|
3978 same_at_end--, bufpos--; |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3979 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3980 /* If we found a discrepancy, stop the scan. |
14036 | 3981 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
|
3982 if (bufpos != 0) |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3983 { |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3984 /* 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
|
3985 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
|
3986 if (same_at_end > same_at_start |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3987 && 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
|
3988 && ! NILP (current_buffer->enable_multibyte_characters) |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
3989 && (CODING_MAY_REQUIRE_DECODING (&coding))) |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3990 giveup_match_end = 1; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3991 break; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3992 } |
39457
dbb9a3969094
(Finsert_file_contents): If REPLACE is non-nil, stop
Gerd Moellmann <gerd@gnu.org>
parents:
39291
diff
changeset
|
3993 |
dbb9a3969094
(Finsert_file_contents): If REPLACE is non-nil, stop
Gerd Moellmann <gerd@gnu.org>
parents:
39291
diff
changeset
|
3994 if (nread == 0) |
dbb9a3969094
(Finsert_file_contents): If REPLACE is non-nil, stop
Gerd Moellmann <gerd@gnu.org>
parents:
39291
diff
changeset
|
3995 break; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3996 } |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3997 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
|
3998 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3999 if (! giveup_match_end) |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4000 { |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4001 int temp; |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4002 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4003 /* 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
|
4004 |
22753
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4005 /* 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
|
4006 character boundary. */ |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4007 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
|
4008 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
|
4009 && ! 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
|
4010 same_at_start--; |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4011 |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4012 /* 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
|
4013 character boundary. */ |
554594d88cd3
(Finsert_file_contents): Give up match-end only if
Richard M. Stallman <rms@gnu.org>
parents:
18647
diff
changeset
|
4014 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
|
4015 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
|
4016 && ! 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
|
4017 same_at_end++; |
554594d88cd3
(Finsert_file_contents): Give up match-end only if
Richard M. Stallman <rms@gnu.org>
parents:
18647
diff
changeset
|
4018 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4019 /* 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
|
4020 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
|
4021 - (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
|
4022 if (overlap > 0) |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4023 same_at_end += overlap; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4024 |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4025 /* 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
|
4026 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
|
4027 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
|
4028 |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4029 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
|
4030 /* 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
|
4031 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
|
4032 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
|
4033 |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4034 /* 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
|
4035 keep it that way. */ |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4036 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
|
4037 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
|
4038 |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4039 replace_handled = 1; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4040 } |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4041 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4042 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4043 /* 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
|
4044 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
|
4045 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
|
4046 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
|
4047 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4048 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
|
4049 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
|
4050 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
|
4051 in a more optimized way. */ |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
4052 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
|
4053 { |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4054 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
|
4055 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
|
4056 int overlap; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4057 int bufpos; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4058 /* 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
|
4059 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
|
4060 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
|
4061 int temp; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4062 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4063 /* 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
|
4064 CONVERSION_BUFFER. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4065 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4066 if (lseek (fd, XINT (beg), 0) < 0) |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4067 { |
24451
4e77e063fc79
(Finsert_file_contents): Use xfree.
Dave Love <fx@gnu.org>
parents:
24392
diff
changeset
|
4068 xfree (conversion_buffer); |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4069 report_file_error ("Setting file position", |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4070 Fcons (orig_filename, Qnil)); |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4071 } |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4072 |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4073 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
|
4074 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
|
4075 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
|
4076 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
|
4077 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4078 while (how_much < total) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4079 { |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4080 /* 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
|
4081 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
|
4082 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
|
4083 int this; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4084 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4085 /* 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
|
4086 immediate_quit = 1; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4087 QUIT; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
4088 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
|
4089 immediate_quit = 0; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4090 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4091 if (this < 0 || this + unprocessed == 0) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4092 { |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4093 how_much = this; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4094 break; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4095 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4096 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4097 how_much += this; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4098 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4099 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
|
4100 { |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4101 int require, result; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4102 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4103 this += unprocessed; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4104 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4105 /* 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
|
4106 make CONVERSION_BUFFER bigger. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4107 require = decoding_buffer_size (&coding, this); |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4108 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
|
4109 { |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4110 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
|
4111 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
|
4112 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4113 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4114 /* 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
|
4115 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
|
4116 coding.mode |= CODING_MODE_LAST_BLOCK; |
38973
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4117 if (coding.composing != COMPOSITION_DISABLED) |
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4118 coding_allocate_composition_data (&coding, BEGV); |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4119 result = decode_coding (&coding, read_buf, |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4120 conversion_buffer + inserted, |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4121 this, bufsize - inserted); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4122 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4123 /* 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
|
4124 unprocessed = this - coding.consumed; |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4125 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
|
4126 if (!NILP (current_buffer->enable_multibyte_characters)) |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4127 this = coding.produced; |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4128 else |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4129 this = str_as_unibyte (conversion_buffer + inserted, |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4130 coding.produced); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4131 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4132 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4133 inserted += this; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4134 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4135 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4136 /* 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
|
4137 are present in CONVERSION_BUFFER. |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4138 HOW_MUCH should equal TOTAL, |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4139 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
|
4140 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4141 if (how_much < 0) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4142 { |
25321
2ad9fa0386b6
(Finsert_file_contents): Use xfree.
Dave Love <fx@gnu.org>
parents:
25006
diff
changeset
|
4143 xfree (conversion_buffer); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4144 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4145 if (how_much == -1) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4146 error ("IO error reading %s: %s", |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
4147 XSTRING (orig_filename)->data, emacs_strerror (errno)); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4148 else if (how_much == -2) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4149 error ("maximum buffer size exceeded"); |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4150 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4151 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4152 /* 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
|
4153 with the buffer text. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4154 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4155 bufpos = 0; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4156 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
|
4157 && 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
|
4158 same_at_start++, bufpos++; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4159 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4160 /* 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
|
4161 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
|
4162 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4163 if (bufpos == inserted) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4164 { |
25321
2ad9fa0386b6
(Finsert_file_contents): Use xfree.
Dave Love <fx@gnu.org>
parents:
25006
diff
changeset
|
4165 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
|
4166 emacs_close (fd); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4167 specpdl_ptr--; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4168 /* 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
|
4169 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
|
4170 inserted = 0; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4171 goto handled; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4172 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4173 |
22753
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4174 /* 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
|
4175 character boundary. */ |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4176 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
|
4177 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
|
4178 && ! 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
|
4179 same_at_start--; |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4180 |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4181 /* 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
|
4182 the Emacs buffer. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4183 bufpos = inserted; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4184 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4185 /* 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
|
4186 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
|
4187 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
|
4188 && 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
|
4189 same_at_end--, bufpos--; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4190 |
22753
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4191 /* 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
|
4192 character boundary. */ |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4193 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
|
4194 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
|
4195 && ! 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
|
4196 same_at_end++; |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4197 |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4198 /* 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
|
4199 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
|
4200 if (overlap > 0) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4201 same_at_end += overlap; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4202 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4203 /* 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
|
4204 keep it that way. */ |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4205 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
|
4206 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
|
4207 |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4208 /* 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
|
4209 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
|
4210 we are taking from the file. */ |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4211 inserted -= (Z_BYTE - same_at_end) + (same_at_start - BEG_BYTE); |
24877
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4212 |
21949
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
4213 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
|
4214 { |
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4215 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
|
4216 temp = GPT; |
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4217 same_at_start = GPT_BYTE; |
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4218 } |
21949
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
4219 else |
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
4220 { |
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
4221 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
|
4222 } |
24877
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4223 /* 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
|
4224 SET_PT_BOTH (temp, same_at_start); |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4225 insert_1 (conversion_buffer + same_at_start - BEG_BYTE, inserted, |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4226 0, 0, 0); |
38973
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4227 if (coding.cmp_data && coding.cmp_data->used) |
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4228 coding_restore_composition (&coding, Fcurrent_buffer ()); |
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4229 coding_free_composition_data (&coding); |
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4230 |
24877
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4231 /* 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
|
4232 inserted = PT - temp; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4233 |
30605
2bf69b38f4d3
(Finsert_file_contents): Use xfree instead of free.
Gerd Moellmann <gerd@gnu.org>
parents:
30376
diff
changeset
|
4234 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
|
4235 emacs_close (fd); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4236 specpdl_ptr--; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4237 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4238 goto handled; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4239 } |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4240 |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4241 if (! not_regular) |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4242 { |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4243 register Lisp_Object temp; |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4244 |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4245 total = XINT (end) - XINT (beg); |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4246 |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4247 /* 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
|
4248 XSETINT (temp, total); |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4249 if (total != XINT (temp)) |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4250 error ("Maximum buffer size exceeded"); |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4251 } |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4252 else |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4253 /* 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
|
4254 total = READ_BUF_SIZE; |
230 | 4255 |
4395
76b24be40a57
(Finsert_file_contents): Don't call prepare_to_modify_buffer
Richard M. Stallman <rms@gnu.org>
parents:
4270
diff
changeset
|
4256 if (NILP (visit) && total > 0) |
18447
b7e01783be08
(Finsert_file_contents): Pass new arg to prepare_to_modify_buffer.
Richard M. Stallman <rms@gnu.org>
parents:
18431
diff
changeset
|
4257 prepare_to_modify_buffer (PT, PT, NULL); |
16167
651ee074f8b0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
16155
diff
changeset
|
4258 |
651ee074f8b0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
16155
diff
changeset
|
4259 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
|
4260 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
|
4261 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
|
4262 |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4263 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
|
4264 { |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
4265 if (lseek (fd, XINT (beg), 0) < 0) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4266 report_file_error ("Setting file position", |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4267 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
|
4268 } |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
4269 |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4270 /* 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
|
4271 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
|
4272 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
|
4273 error occurs. */ |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4274 how_much = 0; |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4275 |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4276 /* Total bytes inserted. */ |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4277 inserted = 0; |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4278 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4279 /* 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
|
4280 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
|
4281 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4282 int gap_size = GAP_SIZE; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4283 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4284 while (how_much < total) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4285 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4286 /* try is reserved in some compilers (Microsoft C) */ |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4287 int trytry = min (total - how_much, READ_BUF_SIZE); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4288 int this; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4289 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4290 if (not_regular) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4291 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4292 Lisp_Object val; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4293 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4294 /* Maybe make more room. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4295 if (gap_size < trytry) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4296 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4297 make_gap (total - gap_size); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4298 gap_size = GAP_SIZE; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4299 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4300 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4301 /* Read from the file, capturing `quit'. When an |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4302 error occurs, end the loop, and arrange for a quit |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4303 to be signaled after decoding the text we read. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4304 non_regular_fd = fd; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4305 non_regular_inserted = inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4306 non_regular_nbytes = trytry; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4307 val = internal_condition_case_1 (read_non_regular, Qnil, Qerror, |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4308 read_non_regular_quit); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4309 if (NILP (val)) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4310 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4311 read_quit = 1; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4312 break; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4313 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4314 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4315 this = XINT (val); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4316 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4317 else |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4318 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4319 /* 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
|
4320 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
|
4321 here doesn't do any harm. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4322 immediate_quit = 1; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4323 QUIT; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4324 this = emacs_read (fd, BEG_ADDR + PT_BYTE - 1 + inserted, trytry); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4325 immediate_quit = 0; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4326 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4327 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4328 if (this <= 0) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4329 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4330 how_much = this; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4331 break; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4332 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4333 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4334 gap_size -= this; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4335 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4336 /* For a regular file, where TOTAL is the real size, |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4337 count HOW_MUCH to compare with it. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4338 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
|
4339 so don't bother counting in HOW_MUCH. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4340 (INSERTED is where we count the number of characters inserted.) */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4341 if (! not_regular) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4342 how_much += this; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4343 inserted += this; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4344 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4345 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4346 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4347 /* Make the text read part of the buffer. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4348 GAP_SIZE -= inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4349 GPT += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4350 GPT_BYTE += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4351 ZV += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4352 ZV_BYTE += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4353 Z += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4354 Z_BYTE += inserted; |
230 | 4355 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4356 if (GAP_SIZE > 0) |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4357 /* 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
|
4358 *GPT_ADDR = 0; |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4359 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
4360 emacs_close (fd); |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4361 |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4362 /* Discard the unwind protect for closing the file. */ |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4363 specpdl_ptr--; |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4364 |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4365 if (how_much < 0) |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4366 error ("IO error reading %s: %s", |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
4367 XSTRING (orig_filename)->data, emacs_strerror (errno)); |
19399
8ece1f8d2ff6
(Finsert_file_contents) [DOS_NT]: Set buffer_file_type
Geoff Voelker <voelker@cs.washington.edu>
parents:
19206
diff
changeset
|
4368 |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4369 notfound: |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4370 |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4371 if (! coding_system_decided) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4372 { |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4373 /* The coding system is not yet decided. Decide it by an |
26638 | 4374 optimized method for handling `coding:' tag. |
4375 | |
4376 Note that we can get here only if the buffer was empty | |
4377 before the insertion. */ | |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4378 Lisp_Object val; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4379 val = Qnil; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4380 |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4381 if (!NILP (Vcoding_system_for_read)) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4382 val = Vcoding_system_for_read; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4383 else |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4384 { |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4385 /* 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
|
4386 before the insertion, we can toggle |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4387 enable-multibyte-characters directly here without taking |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4388 care of marker adjustment and byte combining problem. By |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4389 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
|
4390 the inserted text. */ |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4391 Lisp_Object unwind_data; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4392 int count = specpdl_ptr - specpdl; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4393 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4394 unwind_data = Fcons (current_buffer->enable_multibyte_characters, |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4395 Fcons (current_buffer->undo_list, |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4396 Fcurrent_buffer ())); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4397 current_buffer->enable_multibyte_characters = Qnil; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4398 current_buffer->undo_list = Qt; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4399 record_unwind_protect (decide_coding_unwind, unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4400 |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4401 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
|
4402 { |
22811
6e11bb792d4f
(Finsert_file_contents): Call Vset_auto_coding_function
Kenichi Handa <handa@m17n.org>
parents:
22753
diff
changeset
|
4403 val = call2 (Vset_auto_coding_function, |
6e11bb792d4f
(Finsert_file_contents): Call Vset_auto_coding_function
Kenichi Handa <handa@m17n.org>
parents:
22753
diff
changeset
|
4404 filename, make_number (inserted)); |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4405 } |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4406 |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4407 if (NILP (val)) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4408 { |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4409 /* 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
|
4410 file-coding-system-alist. */ |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4411 Lisp_Object args[6], coding_systems; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4412 |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4413 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
|
4414 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
|
4415 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
|
4416 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
|
4417 val = XCAR (coding_systems); |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4418 } |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4419 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4420 unbind_to (count, Qnil); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4421 inserted = Z_BYTE - BEG_BYTE; |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4422 } |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4423 |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4424 /* 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
|
4425 We can't simply do |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4426 setup_coding_system (val, &coding); |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4427 on some system. */ |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4428 { |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4429 struct coding_system temp_coding; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4430 setup_coding_system (val, &temp_coding); |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4431 bcopy (&temp_coding, &coding, sizeof coding); |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4432 } |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4433 /* 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
|
4434 set_coding_system = 1; |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4435 |
24932
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
4436 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
|
4437 && ! NILP (val)) |
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
4438 /* 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
|
4439 end-of-line conversion. */ |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4440 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
|
4441 coding.src_multibyte = 0; |
c449a480768c
(Finsert_file_contents): Be sure to setup src_multibyte
Kenichi Handa <handa@m17n.org>
parents:
29478
diff
changeset
|
4442 coding.dst_multibyte |
c449a480768c
(Finsert_file_contents): Be sure to setup src_multibyte
Kenichi Handa <handa@m17n.org>
parents:
29478
diff
changeset
|
4443 = !NILP (current_buffer->enable_multibyte_characters); |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4444 } |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4445 |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4446 if (!NILP (visit) |
39023
c0daac54d3e1
(Finsert_file_contents): Don't change the multibyteness
Gerd Moellmann <gerd@gnu.org>
parents:
39007
diff
changeset
|
4447 /* 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
|
4448 && NILP (replace) |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4449 && (coding.type == coding_type_no_conversion |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4450 || coding.type == coding_type_raw_text)) |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4451 { |
39023
c0daac54d3e1
(Finsert_file_contents): Don't change the multibyteness
Gerd Moellmann <gerd@gnu.org>
parents:
39007
diff
changeset
|
4452 /* 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
|
4453 unibyte. */ |
c0daac54d3e1
(Finsert_file_contents): Don't change the multibyteness
Gerd Moellmann <gerd@gnu.org>
parents:
39007
diff
changeset
|
4454 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
|
4455 coding.dst_multibyte = 0; |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4456 } |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4457 |
23878
0d713a8426b6
(Finsert_file_contents): Even if INSERTED is zero, if
Kenichi Handa <handa@m17n.org>
parents:
23617
diff
changeset
|
4458 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
|
4459 { |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4460 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
|
4461 { |
21009c0c7598
(Finsert_file_contents): Read a file contents into the
Kenichi Handa <handa@m17n.org>
parents:
20897
diff
changeset
|
4462 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
|
4463 &coding, 0, 0); |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4464 inserted = coding.produced_char; |
21138
d10664297ed2
(Finsert_file_contents): Don't do position adjustments
Kenichi Handa <handa@m17n.org>
parents:
21048
diff
changeset
|
4465 } |
21504
0e2b0f6fc9c0
(Finsert_file_contents): Call adjust_after_insert also
Andreas Schwab <schwab@suse.de>
parents:
21423
diff
changeset
|
4466 else |
0e2b0f6fc9c0
(Finsert_file_contents): Call adjust_after_insert also
Andreas Schwab <schwab@suse.de>
parents:
21423
diff
changeset
|
4467 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
|
4468 inserted); |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4469 } |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4470 |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4471 #ifdef DOS_NT |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4472 /* 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
|
4473 (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
|
4474 conversion). */ |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4475 if ((coding.eol_type == CODING_EOL_UNDECIDED |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4476 || coding.eol_type == CODING_EOL_LF) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4477 && ! CODING_REQUIRE_DECODING (&coding)) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4478 current_buffer->buffer_file_type = Qt; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4479 else |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4480 current_buffer->buffer_file_type = Qnil; |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4481 #endif |
230 | 4482 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4483 handled: |
230 | 4484 |
485 | 4485 if (!NILP (visit)) |
230 | 4486 { |
6177
ac2ef13dca1b
(Finsert_file_contents): If undo_list was t, leave it t.
Richard M. Stallman <rms@gnu.org>
parents:
6036
diff
changeset
|
4487 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
|
4488 current_buffer->undo_list = Qnil; |
230 | 4489 #ifdef APOLLO |
4490 stat (XSTRING (filename)->data, &st); | |
4491 #endif | |
5390
d9c81d7079f3
(Finsert_file_contents): Don't run after change hook
Richard M. Stallman <rms@gnu.org>
parents:
5351
diff
changeset
|
4492 |
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
|
4493 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
|
4494 { |
e11486a64dab
(Finsert_file_contents): Avoid setting buffer-file-name field if ran a handler.
Richard M. Stallman <rms@gnu.org>
parents:
5390
diff
changeset
|
4495 current_buffer->modtime = st.st_mtime; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4496 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
|
4497 } |
5390
d9c81d7079f3
(Finsert_file_contents): Don't run after change hook
Richard M. Stallman <rms@gnu.org>
parents:
5351
diff
changeset
|
4498 |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
4499 SAVE_MODIFF = MODIFF; |
230 | 4500 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
|
4501 XSETFASTINT (current_buffer->save_length, Z - BEG); |
230 | 4502 #ifdef CLASH_DETECTION |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4503 if (NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4504 { |
11658
304577bc9b51
(Finsert_file_contents): Use file_truename for unlocking.
Richard M. Stallman <rms@gnu.org>
parents:
11632
diff
changeset
|
4505 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
|
4506 unlock_file (current_buffer->file_truename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4507 unlock_file (filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4508 } |
230 | 4509 #endif /* CLASH_DETECTION */ |
9915
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
4510 if (not_regular) |
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
4511 Fsignal (Qfile_error, |
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
4512 Fcons (build_string ("not a regular file"), |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4513 Fcons (orig_filename, Qnil))); |
230 | 4514 } |
4515 | |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4516 /* Decode file format */ |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4517 if (inserted > 0) |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4518 { |
34167
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4519 int empty_undo_list_p = 0; |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4520 |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4521 /* 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
|
4522 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
|
4523 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
|
4524 if (!NILP (visit)) |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4525 { |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4526 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
|
4527 current_buffer->undo_list = Qt; |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4528 } |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4529 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
4530 insval = call3 (Qformat_decode, |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4531 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
|
4532 CHECK_NUMBER (insval); |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4533 inserted = XFASTINT (insval); |
34167
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4534 |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4535 if (!NILP (visit)) |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4536 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
|
4537 } |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4538 |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
4539 if (set_coding_system) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
4540 Vlast_coding_system_used = coding.symbol; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
4541 |
17396
7fbce3c83857
(Finsert_file_contents): Do call signal_after_change
Richard M. Stallman <rms@gnu.org>
parents:
17287
diff
changeset
|
4542 /* 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
|
4543 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
|
4544 "before" the buffer is changed. */ |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4545 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
|
4546 && (NILP (visit) || !NILP (replace))) |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
4547 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
4548 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
|
4549 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
|
4550 } |
20432
987ddd5cb6ee
(Finsert_file_contents): Set Vlast_coding_system_used
Kenichi Handa <handa@m17n.org>
parents:
20370
diff
changeset
|
4551 |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4552 p = Vafter_insert_file_functions; |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4553 while (!NILP (p)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4554 { |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4555 insval = call1 (Fcar (p), make_number (inserted)); |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4556 if (!NILP (insval)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4557 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
4558 CHECK_NUMBER (insval); |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4559 inserted = XFASTINT (insval); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4560 } |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4561 QUIT; |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4562 p = Fcdr (p); |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4563 } |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4564 |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4565 if (!NILP (visit) |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4566 && current_buffer->modtime == -1) |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4567 { |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4568 /* 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
|
4569 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
|
4570 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4571 |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4572 if (read_quit) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4573 Fsignal (Qquit, Qnil); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4574 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4575 /* ??? 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
|
4576 if (NILP (val)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4577 val = Fcons (orig_filename, |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4578 Fcons (make_number (inserted), |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4579 Qnil)); |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4580 |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4581 RETURN_UNGCPRO (unbind_to (count, val)); |
230 | 4582 } |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
4583 |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4584 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
|
4585 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
|
4586 Lisp_Object, Lisp_Object)); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4587 |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4588 /* 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
|
4589 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
|
4590 |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4591 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
|
4592 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
|
4593 -- K.Handa */ |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4594 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
4595 static Lisp_Object |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4596 build_annotations_unwind (buf) |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4597 Lisp_Object buf; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4598 { |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4599 Lisp_Object tembuf; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4600 |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4601 if (XBUFFER (buf) == current_buffer) |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4602 return Qnil; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4603 tembuf = Fcurrent_buffer (); |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4604 Fset_buffer (buf); |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4605 Fkill_buffer (tembuf); |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4606 return Qnil; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4607 } |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4608 |
41151
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4609 /* 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
|
4610 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4611 void |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4612 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
|
4613 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
|
4614 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
|
4615 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
|
4616 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4617 Lisp_Object val; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4618 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4619 if (auto_saving) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4620 val = Qnil; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4621 else if (!NILP (Vcoding_system_for_write)) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4622 val = Vcoding_system_for_write; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4623 else |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4624 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4625 /* 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
|
4626 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
|
4627 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
|
4628 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
|
4629 `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
|
4630 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4631 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
|
4632 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
|
4633 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
|
4634 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
|
4635 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
|
4636 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4637 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
|
4638 if (NILP (val) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4639 || 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
|
4640 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4641 val = Qnil; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4642 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
|
4643 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
|
4644 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4645 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4646 if (NILP (val)) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4647 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4648 /* 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
|
4649 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
|
4650 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4651 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
|
4652 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
|
4653 args[6] = lockname; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4654 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
|
4655 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
|
4656 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
|
4657 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4658 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4659 if (NILP (val) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4660 && !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
|
4661 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4662 /* 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
|
4663 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
|
4664 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
|
4665 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
|
4666 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4667 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4668 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
|
4669 && !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
|
4670 /* Confirm that VAL can surely encode the current region. */ |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4671 val = call3 (Vselect_safe_coding_system_function, start, end, val); |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4672 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4673 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
|
4674 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
|
4675 && !using_default_coding) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4676 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4677 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
|
4678 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
|
4679 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
|
4680 &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
|
4681 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
|
4682 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4683 Lisp_Object subsidiaries; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4684 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4685 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
|
4686 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
|
4687 if (VECTORP (subsidiaries) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4688 && 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
|
4689 coding->symbol |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4690 = 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
|
4691 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4692 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4693 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4694 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
|
4695 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
|
4696 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
|
4697 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4698 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4699 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
|
4700 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4701 done_setup_coding: |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4702 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
|
4703 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
|
4704 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4705 |
21020
f7ace8487b28
(auto_save_1): Pass new arg to Fwrite_region.
Richard M. Stallman <rms@gnu.org>
parents:
20944
diff
changeset
|
4706 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
|
4707 "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
|
4708 doc: /* Write current region into specified file. |
41993
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4709 When called from a program, requires three arguments: |
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4710 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
|
4711 specifying the part of the buffer to write. |
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4712 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
|
4713 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
|
4714 instead of any buffer contents; END is ignored. |
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4715 |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4716 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
|
4717 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
|
4718 seek to that offset in the file before writing. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4719 Optional fifth argument VISIT if t means |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4720 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
|
4721 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
|
4722 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
|
4723 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
|
4724 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
|
4725 If VISIT is neither t nor nil nor a string, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4726 that means do not print the \"Wrote file\" message. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4727 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
|
4728 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
|
4729 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
|
4730 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
|
4731 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
|
4732 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
|
4733 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
|
4734 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
|
4735 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4736 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
|
4737 `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
|
4738 `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
|
4739 `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
|
4740 (start, end, filename, append, visit, lockname, mustbenew) |
25597
16a9c3c6f90e
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
25595
diff
changeset
|
4741 Lisp_Object start, end, filename, append, visit, lockname, mustbenew; |
230 | 4742 { |
4743 register int desc; | |
4744 int failure; | |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31775
diff
changeset
|
4745 int save_errno = 0; |
230 | 4746 unsigned char *fn; |
4747 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
|
4748 int tem; |
230 | 4749 int count = specpdl_ptr - specpdl; |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4750 int count1; |
230 | 4751 #ifdef VMS |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4752 unsigned char *fname = 0; /* If non-0, original filename (must rename) */ |
230 | 4753 #endif /* VMS */ |
848 | 4754 Lisp_Object handler; |
2407
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
4755 Lisp_Object visit_file; |
41211
2e188a8c4ad8
(Fwrite_region): Avoid initializer for Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents:
41181
diff
changeset
|
4756 Lisp_Object annotations; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4757 Lisp_Object encoded_filename; |
33249
bc4bfaca97aa
(Fwrite_region): Use `visiting' rather than `visit'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31829
diff
changeset
|
4758 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
|
4759 int quietly = !NILP (visit); |
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
4760 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
|
4761 struct buffer *given_buffer; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4762 #ifdef DOS_NT |
18764
2ef1d8539441
(Fwrite_region) [DOS_NT]: Always use binary mode since
Richard M. Stallman <rms@gnu.org>
parents:
18744
diff
changeset
|
4763 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
|
4764 #endif /* DOS_NT */ |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4765 struct coding_system coding; |
230 | 4766 |
33249
bc4bfaca97aa
(Fwrite_region): Use `visiting' rather than `visit'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31829
diff
changeset
|
4767 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
|
4768 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
|
4769 |
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
4770 if (!NILP (start) && !STRINGP (start)) |
230 | 4771 validate_region (&start, &end); |
4772 | |
41288
1d1183771c4f
(Fwrite_region): Move choose_write_coding_system to after build_annotations.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41211
diff
changeset
|
4773 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
|
4774 |
2407
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
4775 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
|
4776 |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4777 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
|
4778 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
|
4779 |
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
4780 if (STRINGP (visit)) |
2435
b72453ad92ae
(Fwrite_region): Don't fail to set visit_file.
Richard M. Stallman <rms@gnu.org>
parents:
2407
diff
changeset
|
4781 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
|
4782 else |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
4783 visit_file = filename; |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
4784 |
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
4785 if (NILP (lockname)) |
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
4786 lockname = visit_file; |
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
4787 |
41211
2e188a8c4ad8
(Fwrite_region): Avoid initializer for Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents:
41181
diff
changeset
|
4788 annotations = Qnil; |
2e188a8c4ad8
(Fwrite_region): Avoid initializer for Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents:
41181
diff
changeset
|
4789 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4790 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4791 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
|
4792 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
|
4793 /* 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
|
4794 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
|
4795 handler = Ffind_file_name_handler (visit, Qwrite_region); |
848 | 4796 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4797 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4798 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4799 Lisp_Object val; |
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
4800 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
|
4801 filename, append, visit); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4802 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4803 if (visiting) |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4804 { |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
4805 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
|
4806 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
|
4807 current_buffer->filename = visit_file; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4808 } |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4809 UNGCPRO; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4810 return val; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4811 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4812 |
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
4813 /* 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
|
4814 if (NILP (start)) |
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
4815 { |
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
4816 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
|
4817 XSETFASTINT (end, Z); |
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
4818 } |
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
4819 |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4820 record_unwind_protect (build_annotations_unwind, Fcurrent_buffer ()); |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4821 count1 = specpdl_ptr - specpdl; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4822 |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4823 given_buffer = current_buffer; |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4824 annotations = build_annotations (start, end); |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4825 if (current_buffer != given_buffer) |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4826 { |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4827 XSETFASTINT (start, BEGV); |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4828 XSETFASTINT (end, ZV); |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4829 } |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4830 |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4831 UNGCPRO; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4832 |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4833 GCPRO5 (start, filename, annotations, visit_file, lockname); |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4834 |
41288
1d1183771c4f
(Fwrite_region): Move choose_write_coding_system to after build_annotations.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41211
diff
changeset
|
4835 /* 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
|
4836 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
|
4837 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
|
4838 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
|
4839 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
|
4840 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
|
4841 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
|
4842 |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4843 given_buffer = current_buffer; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4844 annotations = build_annotations_2 (start, end, |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4845 coding.pre_write_conversion, annotations); |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4846 if (current_buffer != given_buffer) |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4847 { |
18107
7e13abad5cca
(Fwrite_region, build_annotations):
Richard M. Stallman <rms@gnu.org>
parents:
17959
diff
changeset
|
4848 XSETFASTINT (start, BEGV); |
7e13abad5cca
(Fwrite_region, build_annotations):
Richard M. Stallman <rms@gnu.org>
parents:
17959
diff
changeset
|
4849 XSETFASTINT (end, ZV); |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4850 } |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4851 |
230 | 4852 #ifdef CLASH_DETECTION |
4853 if (!auto_saving) | |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
4854 { |
19206
c21764412813
(Fwrite_region): Turn off the feature of checking
Richard M. Stallman <rms@gnu.org>
parents:
19067
diff
changeset
|
4855 #if 0 /* This causes trouble for GNUS. */ |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
4856 /* 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
|
4857 query before proceeding. */ |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
4858 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
|
4859 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
|
4860 #endif |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
4861 |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
4862 lock_file (lockname); |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
4863 } |
230 | 4864 #endif /* CLASH_DETECTION */ |
4865 | |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4866 encoded_filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4867 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4868 fn = XSTRING (encoded_filename)->data; |
230 | 4869 desc = -1; |
485 | 4870 if (!NILP (append)) |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4871 #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
|
4872 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
|
4873 #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
|
4874 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
|
4875 #endif /* not DOS_NT */ |
230 | 4876 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4877 if (desc < 0 && (NILP (append) || errno == ENOENT)) |
230 | 4878 #ifdef VMS |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4879 if (auto_saving) /* Overwrite any previous version of autosave file */ |
230 | 4880 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4881 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
|
4882 desc = emacs_open (fn, O_RDWR, 0); |
230 | 4883 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
|
4884 desc = creat_copy_attrs (STRINGP (current_buffer->filename) |
536 | 4885 ? XSTRING (current_buffer->filename)->data : 0, |
4886 fn); | |
230 | 4887 } |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4888 else /* Write to temporary name and rename if no errors */ |
230 | 4889 { |
4890 Lisp_Object temp_name; | |
4891 temp_name = Ffile_name_directory (filename); | |
4892 | |
485 | 4893 if (!NILP (temp_name)) |
230 | 4894 { |
4895 temp_name = Fmake_temp_name (concat2 (temp_name, | |
4896 build_string ("$$SAVE$$"))); | |
4897 fname = XSTRING (filename)->data; | |
4898 fn = XSTRING (temp_name)->data; | |
4899 desc = creat_copy_attrs (fname, fn); | |
4900 if (desc < 0) | |
4901 { | |
4902 /* If we can't open the temporary file, try creating a new | |
4903 version of the original file. VMS "creat" creates a | |
4904 new version rather than truncating an existing file. */ | |
4905 fn = fname; | |
4906 fname = 0; | |
4907 desc = creat (fn, 0666); | |
4908 #if 0 /* This can clobber an existing file and fail to replace it, | |
4909 if the user runs out of space. */ | |
4910 if (desc < 0) | |
4911 { | |
4912 /* We can't make a new version; | |
4913 try to truncate and rewrite existing version if any. */ | |
4914 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
|
4915 desc = emacs_open (fn, O_RDWR, 0); |
230 | 4916 } |
4917 #endif | |
4918 } | |
4919 } | |
4920 else | |
4921 desc = creat (fn, 0666); | |
4922 } | |
4923 #else /* not VMS */ | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4924 #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
|
4925 desc = emacs_open (fn, |
36693
ca1461008b2c
(Fwrite_region) [DOS_NT]: Remove O_TRUNC from open
Gerd Moellmann <gerd@gnu.org>
parents:
36633
diff
changeset
|
4926 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
|
4927 | (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
|
4928 S_IREAD | S_IWRITE); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4929 #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
|
4930 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
|
4931 | (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
|
4932 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
|
4933 #endif /* not DOS_NT */ |
230 | 4934 #endif /* not VMS */ |
4935 | |
4936 if (desc < 0) | |
4937 { | |
4938 #ifdef CLASH_DETECTION | |
4939 save_errno = errno; | |
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
4940 if (!auto_saving) unlock_file (lockname); |
230 | 4941 errno = save_errno; |
4942 #endif /* CLASH_DETECTION */ | |
28846
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4943 UNGCPRO; |
230 | 4944 report_file_error ("Opening output file", Fcons (filename, Qnil)); |
4945 } | |
4946 | |
4947 record_unwind_protect (close_file_unwind, make_number (desc)); | |
4948 | |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
4949 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
|
4950 { |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4951 long ret; |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4952 |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4953 if (NUMBERP (append)) |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4954 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
|
4955 else |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4956 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
|
4957 if (ret < 0) |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4958 { |
230 | 4959 #ifdef CLASH_DETECTION |
28846
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4960 if (!auto_saving) unlock_file (lockname); |
230 | 4961 #endif /* CLASH_DETECTION */ |
28846
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4962 UNGCPRO; |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4963 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
|
4964 } |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4965 } |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4966 |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4967 UNGCPRO; |
230 | 4968 |
4969 #ifdef VMS | |
4970 /* | |
4971 * Kludge Warning: The VMS C RTL likes to insert carriage returns | |
4972 * if we do writes that don't end with a carriage return. Furthermore | |
4973 * it cannot handle writes of more then 16K. The modified | |
4974 * version of "sys_write" in SYSDEP.C (see comment there) copes with | |
4975 * this EXCEPT for the last record (iff it doesn't end with a carriage | |
4976 * return). This implies that if your buffer doesn't end with a carriage | |
4977 * return, you get one free... tough. However it also means that if | |
4978 * we make two calls to sys_write (a la the following code) you can | |
4979 * get one at the gap as well. The easiest way to fix this (honest) | |
4980 * is to move the gap to the next newline (or the end of the buffer). | |
4981 * Thus this change. | |
4982 * | |
4983 * Yech! | |
4984 */ | |
4985 if (GPT > BEG && GPT_ADDR[-1] != '\n') | |
4986 move_gap (find_next_newline (GPT, 1)); | |
17723
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
4987 #else |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
4988 /* 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
|
4989 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
|
4990 if (INTEGERP (start) |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
4991 && coding.type == coding_type_iso2022 |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
4992 && coding.flags & CODING_FLAG_ISO_DESIGNATE_AT_BOL |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
4993 && 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
|
4994 { |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4995 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
|
4996 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
|
4997 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
|
4998 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
|
4999 } |
230 | 5000 #endif |
5001 | |
5002 failure = 0; | |
5003 immediate_quit = 1; | |
5004 | |
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
5005 if (STRINGP (start)) |
230 | 5006 { |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5007 failure = 0 > a_write (desc, start, 0, XSTRING (start)->size, |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5008 &annotations, &coding); |
230 | 5009 save_errno = errno; |
5010 } | |
5011 else if (XINT (start) != XINT (end)) | |
5012 { | |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5013 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
|
5014 |
230 | 5015 if (XINT (start) < GPT) |
5016 { | |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5017 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
|
5018 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
|
5019 &annotations, &coding); |
230 | 5020 save_errno = errno; |
5021 } | |
5022 | |
5023 if (XINT (end) > GPT && !failure) | |
5024 { | |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5025 tem = max (XINT (start), GPT); |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5026 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
|
5027 &annotations, &coding); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5028 save_errno = errno; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5029 } |
13451
3a69848f7892
(Fwrite_region): Move the code that writes annotations for empty files.
Richard M. Stallman <rms@gnu.org>
parents:
13221
diff
changeset
|
5030 } |
3a69848f7892
(Fwrite_region): Move the code that writes annotations for empty files.
Richard M. Stallman <rms@gnu.org>
parents:
13221
diff
changeset
|
5031 else |
3a69848f7892
(Fwrite_region): Move the code that writes annotations for empty files.
Richard M. Stallman <rms@gnu.org>
parents:
13221
diff
changeset
|
5032 { |
3a69848f7892
(Fwrite_region): Move the code that writes annotations for empty files.
Richard M. Stallman <rms@gnu.org>
parents:
13221
diff
changeset
|
5033 /* 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
|
5034 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
|
5035 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
|
5036 save_errno = errno; |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5037 } |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5038 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
5039 if (CODING_REQUIRE_FLUSHING (&coding) |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
5040 && !(coding.mode & CODING_MODE_LAST_BLOCK) |
20651
0de9f45a1db6
(Finsert_file_contents): When not decoding,
Richard M. Stallman <rms@gnu.org>
parents:
20621
diff
changeset
|
5041 && ! failure) |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5042 { |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5043 /* We have to flush out a data. */ |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
5044 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
|
5045 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
|
5046 save_errno = errno; |
230 | 5047 } |
5048 | |
5049 immediate_quit = 0; | |
5050 | |
2280
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
5051 #ifdef HAVE_FSYNC |
230 | 5052 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun). |
5053 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
|
5054 /* 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
|
5055 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
|
5056 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
|
5057 { |
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
5058 /* 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
|
5059 if (errno != EINTR) |
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
5060 failure = 1, save_errno = errno; |
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
5061 } |
230 | 5062 #endif |
5063 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
5064 /* Spurious "file has changed on disk" warnings have been |
230 | 5065 observed on Suns as well. |
5066 It seems that `close' can change the modtime, under nfs. | |
5067 | |
5068 (This has supposedly been fixed in Sunos 4, | |
5069 but who knows about all the other machines with NFS?) */ | |
5070 #if 0 | |
5071 | |
5072 /* On VMS and APOLLO, must do the stat after the close | |
5073 since closing changes the modtime. */ | |
5074 #ifndef VMS | |
5075 #ifndef APOLLO | |
5076 /* Recall that #if defined does not work on VMS. */ | |
5077 #define FOO | |
5078 fstat (desc, &st); | |
5079 #endif | |
5080 #endif | |
5081 #endif | |
5082 | |
5083 /* 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
|
5084 if (emacs_close (desc) < 0) |
230 | 5085 failure = 1, save_errno = errno; |
5086 | |
5087 #ifdef VMS | |
5088 /* If we wrote to a temporary name and had no errors, rename to real name. */ | |
5089 if (fname) | |
5090 { | |
5091 if (!failure) | |
5092 failure = (rename (fn, fname) != 0), save_errno = errno; | |
5093 fn = fname; | |
5094 } | |
5095 #endif /* VMS */ | |
5096 | |
5097 #ifndef FOO | |
5098 stat (fn, &st); | |
5099 #endif | |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5100 /* 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
|
5101 specpdl_ptr = specpdl + count1; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5102 /* 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
|
5103 visit_file = unbind_to (count, visit_file); |
230 | 5104 |
5105 #ifdef CLASH_DETECTION | |
5106 if (!auto_saving) | |
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
5107 unlock_file (lockname); |
230 | 5108 #endif /* CLASH_DETECTION */ |
5109 | |
5110 /* Do this before reporting IO error | |
5111 to avoid a "file has changed on disk" warning on | |
5112 next attempt to save. */ | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5113 if (visiting) |
230 | 5114 current_buffer->modtime = st.st_mtime; |
5115 | |
5116 if (failure) | |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5117 error ("IO error writing %s: %s", XSTRING (filename)->data, |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5118 emacs_strerror (save_errno)); |
230 | 5119 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5120 if (visiting) |
230 | 5121 { |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5122 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
|
5123 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
|
5124 current_buffer->filename = visit_file; |
7551
69f20f10799a
(Fwrite_region): Set update_mode_lines.
Richard M. Stallman <rms@gnu.org>
parents:
7549
diff
changeset
|
5125 update_mode_lines++; |
230 | 5126 } |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5127 else if (quietly) |
230 | 5128 return Qnil; |
5129 | |
5130 if (!auto_saving) | |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
5131 message_with_string ("Wrote %s", visit_file, 1); |
230 | 5132 |
5133 return Qnil; | |
5134 } | |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5135 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5136 Lisp_Object merge (); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5137 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5138 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
|
5139 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
|
5140 (a, b) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5141 Lisp_Object a, b; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5142 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5143 return Flss (Fcar (a), Fcar (b)); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5144 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5145 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5146 /* 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
|
5147 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
|
5148 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
|
5149 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
|
5150 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
|
5151 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
|
5152 as save-excursion would do. */ |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5153 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5154 static Lisp_Object |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5155 build_annotations (start, end) |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5156 Lisp_Object start, end; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5157 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5158 Lisp_Object annotations; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5159 Lisp_Object p, res; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5160 struct gcpro gcpro1, gcpro2; |
16044
63b85944e37b
(build_annotations): Remember original buffer that the
Richard M. Stallman <rms@gnu.org>
parents:
15738
diff
changeset
|
5161 Lisp_Object original_buffer; |
30927
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5162 int i; |
16044
63b85944e37b
(build_annotations): Remember original buffer that the
Richard M. Stallman <rms@gnu.org>
parents:
15738
diff
changeset
|
5163 |
63b85944e37b
(build_annotations): Remember original buffer that the
Richard M. Stallman <rms@gnu.org>
parents:
15738
diff
changeset
|
5164 XSETBUFFER (original_buffer, current_buffer); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5165 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5166 annotations = Qnil; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5167 p = Vwrite_region_annotate_functions; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5168 GCPRO2 (annotations, p); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5169 while (!NILP (p)) |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5170 { |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5171 struct buffer *given_buffer = current_buffer; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5172 Vwrite_region_annotations_so_far = annotations; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5173 res = call2 (Fcar (p), start, end); |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5174 /* 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
|
5175 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
|
5176 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
|
5177 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
|
5178 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
|
5179 if (current_buffer != given_buffer) |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5180 { |
18107
7e13abad5cca
(Fwrite_region, build_annotations):
Richard M. Stallman <rms@gnu.org>
parents:
17959
diff
changeset
|
5181 XSETFASTINT (start, BEGV); |
7e13abad5cca
(Fwrite_region, build_annotations):
Richard M. Stallman <rms@gnu.org>
parents:
17959
diff
changeset
|
5182 XSETFASTINT (end, ZV); |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5183 annotations = Qnil; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5184 } |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5185 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
|
5186 annotations = merge (annotations, res, Qcar_less_than_car); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5187 p = Fcdr (p); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5188 } |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5189 |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5190 /* Now do the same for annotation functions implied by the file-format */ |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5191 if (auto_saving && (!EQ (Vauto_save_file_format, Qt))) |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5192 p = Vauto_save_file_format; |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5193 else |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5194 p = current_buffer->file_format; |
30927
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5195 for (i = 0; !NILP (p); p = Fcdr (p), ++i) |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5196 { |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5197 struct buffer *given_buffer = current_buffer; |
30927
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5198 |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5199 Vwrite_region_annotations_so_far = annotations; |
30927
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5200 |
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5201 /* 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
|
5202 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
|
5203 current. */ |
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5204 res = call5 (Qformat_annotate_function, Fcar (p), start, end, |
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5205 original_buffer, make_number (i)); |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5206 if (current_buffer != given_buffer) |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5207 { |
18107
7e13abad5cca
(Fwrite_region, build_annotations):
Richard M. Stallman <rms@gnu.org>
parents:
17959
diff
changeset
|
5208 XSETFASTINT (start, BEGV); |
7e13abad5cca
(Fwrite_region, build_annotations):
Richard M. Stallman <rms@gnu.org>
parents:
17959
diff
changeset
|
5209 XSETFASTINT (end, ZV); |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5210 annotations = Qnil; |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5211 } |
30927
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5212 |
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5213 if (CONSP (res)) |
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5214 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
|
5215 } |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5216 |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5217 UNGCPRO; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5218 return annotations; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5219 } |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5220 |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5221 static Lisp_Object |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5222 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
|
5223 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
|
5224 { |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5225 struct gcpro gcpro1; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5226 Lisp_Object res; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5227 |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5228 GCPRO1 (annotations); |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5229 /* 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
|
5230 implied by the current coding-system. */ |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5231 if (!NILP (pre_write_conversion)) |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5232 { |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5233 struct buffer *given_buffer = current_buffer; |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5234 Vwrite_region_annotations_so_far = annotations; |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5235 res = call2 (pre_write_conversion, start, end); |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5236 Flength (res); |
17723
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5237 annotations = (current_buffer != given_buffer |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5238 ? res |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5239 : merge (annotations, res, Qcar_less_than_car)); |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5240 } |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5241 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5242 UNGCPRO; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5243 return annotations; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5244 } |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5245 |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5246 /* 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
|
5247 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
|
5248 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
|
5249 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
|
5250 each at its appropriate position. |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5251 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5252 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
|
5253 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5254 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
|
5255 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5256 static int |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5257 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
|
5258 int desc; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5259 Lisp_Object string; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5260 register int nchars; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5261 int pos; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5262 Lisp_Object *annot; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5263 struct coding_system *coding; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5264 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5265 Lisp_Object tem; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5266 int nextpos; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5267 int lastpos = pos + nchars; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5268 |
8079
3f543986a45a
(a_write): Loop while *ANNOT is listp, not consp. Previous code omitted
Roland McGrath <roland@gnu.org>
parents:
8068
diff
changeset
|
5269 while (NILP (*annot) || CONSP (*annot)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5270 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5271 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
|
5272 nextpos = pos - 1; |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5273 if (INTEGERP (tem)) |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5274 nextpos = XFASTINT (tem); |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5275 |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5276 /* 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
|
5277 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
|
5278 if (! (nextpos >= pos && nextpos <= lastpos)) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5279 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
|
5280 |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5281 /* 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
|
5282 if (nextpos > pos) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5283 { |
28561
98330e399518
(a_write): Remove redundant semi-colons.
Eli Zaretskii <eliz@gnu.org>
parents:
28507
diff
changeset
|
5284 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
|
5285 return -1; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5286 pos = nextpos; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5287 } |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5288 /* Output the annotation. */ |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5289 tem = Fcdr (Fcar (*annot)); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5290 if (STRINGP (tem)) |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5291 { |
28561
98330e399518
(a_write): Remove redundant semi-colons.
Eli Zaretskii <eliz@gnu.org>
parents:
28507
diff
changeset
|
5292 if (0 > e_write (desc, tem, 0, XSTRING (tem)->size, coding)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5293 return -1; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5294 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5295 *annot = Fcdr (*annot); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5296 } |
21514 | 5297 return 0; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5298 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5299 |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5300 #ifndef WRITE_BUF_SIZE |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5301 #define WRITE_BUF_SIZE (16 * 1024) |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5302 #endif |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5303 |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5304 /* 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
|
5305 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
|
5306 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
|
5307 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
|
5308 |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5309 static int |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5310 e_write (desc, string, start, end, coding) |
230 | 5311 int desc; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5312 Lisp_Object string; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5313 int start, end; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5314 struct coding_system *coding; |
230 | 5315 { |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5316 register char *addr; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5317 register int nbytes; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5318 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
|
5319 int return_val = 0; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5320 |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5321 if (start >= end) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5322 coding->composing = COMPOSITION_DISABLED; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5323 if (coding->composing != COMPOSITION_DISABLED) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5324 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
|
5325 |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5326 if (STRINGP (string)) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5327 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5328 addr = XSTRING (string)->data; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5329 nbytes = STRING_BYTES (XSTRING (string)); |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
5330 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
|
5331 } |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5332 else if (start < end) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5333 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5334 /* 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
|
5335 addr = CHAR_POS_ADDR (start); |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5336 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
|
5337 coding->src_multibyte |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
5338 = !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
|
5339 } |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5340 else |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5341 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5342 addr = ""; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5343 nbytes = 0; |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
5344 coding->src_multibyte = 1; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5345 } |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5346 |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5347 /* 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
|
5348 now it is handled within encode_coding. */ |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5349 while (1) |
230 | 5350 { |
22441
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5351 int result; |
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5352 |
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5353 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
|
5354 if (coding->produced > 0) |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5355 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5356 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
|
5357 if (coding->produced) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5358 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5359 return_val = -1; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5360 break; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5361 } |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5362 } |
27564
bb284bade4d0
(e_write): Fix the handling of
Kenichi Handa <handa@m17n.org>
parents:
27134
diff
changeset
|
5363 nbytes -= coding->consumed; |
bb284bade4d0
(e_write): Fix the handling of
Kenichi Handa <handa@m17n.org>
parents:
27134
diff
changeset
|
5364 addr += coding->consumed; |
bb284bade4d0
(e_write): Fix the handling of
Kenichi Handa <handa@m17n.org>
parents:
27134
diff
changeset
|
5365 if (result == CODING_FINISH_INSUFFICIENT_SRC |
bb284bade4d0
(e_write): Fix the handling of
Kenichi Handa <handa@m17n.org>
parents:
27134
diff
changeset
|
5366 && nbytes > 0) |
22441
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5367 { |
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5368 /* 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
|
5369 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
|
5370 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
|
5371 if (nbytes) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5372 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5373 return_val = -1; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5374 break; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5375 } |
22441
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5376 } |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5377 if (nbytes <= 0) |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5378 break; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5379 start += coding->consumed_char; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5380 if (coding->cmp_data) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5381 coding_adjust_composition_offset (coding, start); |
230 | 5382 } |
29478
01f18086f2ac
(e_write): Free composition data if stored in
Kenichi Handa <handa@m17n.org>
parents:
29312
diff
changeset
|
5383 |
01f18086f2ac
(e_write): Free composition data if stored in
Kenichi Handa <handa@m17n.org>
parents:
29312
diff
changeset
|
5384 if (coding->cmp_data) |
01f18086f2ac
(e_write): Free composition data if stored in
Kenichi Handa <handa@m17n.org>
parents:
29312
diff
changeset
|
5385 coding_free_composition_data (coding); |
01f18086f2ac
(e_write): Free composition data if stored in
Kenichi Handa <handa@m17n.org>
parents:
29312
diff
changeset
|
5386 |
28561
98330e399518
(a_write): Remove redundant semi-colons.
Eli Zaretskii <eliz@gnu.org>
parents:
28507
diff
changeset
|
5387 return return_val; |
230 | 5388 } |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5389 |
230 | 5390 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
|
5391 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
|
5392 doc: /* Return t if last mod time of BUF's visited file matches what BUF records. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5393 This means that the file has not been changed since it was visited or saved. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5394 (buf) |
230 | 5395 Lisp_Object buf; |
5396 { | |
5397 struct buffer *b; | |
5398 struct stat st; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5399 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5400 Lisp_Object filename; |
230 | 5401 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
5402 CHECK_BUFFER (buf); |
230 | 5403 b = XBUFFER (buf); |
5404 | |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
5405 if (!STRINGP (b->filename)) return Qt; |
230 | 5406 if (b->modtime == 0) return Qt; |
5407 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5408 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5409 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
|
5410 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
|
5411 Qverify_visited_file_modtime); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5412 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5413 return call2 (handler, Qverify_visited_file_modtime, buf); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5414 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5415 filename = ENCODE_FILE (b->filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5416 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5417 if (stat (XSTRING (filename)->data, &st) < 0) |
230 | 5418 { |
5419 /* If the file doesn't exist now and didn't exist before, | |
5420 we say that it isn't modified, provided the error is a tame one. */ | |
5421 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR) | |
5422 st.st_mtime = -1; | |
5423 else | |
5424 st.st_mtime = 0; | |
5425 } | |
5426 if (st.st_mtime == b->modtime | |
5427 /* If both are positive, accept them if they are off by one second. */ | |
5428 || (st.st_mtime > 0 && b->modtime > 0 | |
5429 && (st.st_mtime == b->modtime + 1 | |
5430 || st.st_mtime == b->modtime - 1))) | |
5431 return Qt; | |
5432 return Qnil; | |
5433 } | |
5434 | |
5435 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
|
5436 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
|
5437 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
|
5438 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
|
5439 () |
230 | 5440 { |
5441 current_buffer->modtime = 0; | |
5442 return Qnil; | |
5443 } | |
5444 | |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5445 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
|
5446 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
|
5447 doc: /* Return the current buffer's recorded visited file modification time. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5448 The value is a list of the form (HIGH . LOW), like the time values |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5449 that `file-attributes' returns. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5450 () |
230 | 5451 { |
11878
86257fdd585c
(Fvisited_file_modtime): Cast arg to long_to_cons.
Karl Heuer <kwzh@gnu.org>
parents:
11667
diff
changeset
|
5452 return long_to_cons ((unsigned long) current_buffer->modtime); |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5453 } |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5454 |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5455 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
|
5456 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
|
5457 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
|
5458 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
|
5459 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
|
5460 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
|
5461 \(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
|
5462 \(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
|
5463 (time_list) |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5464 Lisp_Object time_list; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5465 { |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5466 if (!NILP (time_list)) |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5467 current_buffer->modtime = cons_to_long (time_list); |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5468 else |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5469 { |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5470 register Lisp_Object filename; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5471 struct stat st; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5472 Lisp_Object handler; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5473 |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5474 filename = Fexpand_file_name (current_buffer->filename, Qnil); |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5475 |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5476 /* 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
|
5477 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
|
5478 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
|
5479 if (!NILP (handler)) |
3721
4550c56785d8
(Fset_visited_file_modtime): Don't give the handler
Richard M. Stallman <rms@gnu.org>
parents:
3705
diff
changeset
|
5480 /* 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
|
5481 return call2 (handler, Qset_visited_file_modtime, Qnil); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5482 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5483 filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5484 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5485 if (stat (XSTRING (filename)->data, &st) >= 0) |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5486 current_buffer->modtime = st.st_mtime; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5487 } |
230 | 5488 |
5489 return Qnil; | |
5490 } | |
5491 | |
5492 Lisp_Object | |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5493 auto_save_error (error) |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5494 Lisp_Object error; |
230 | 5495 { |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5496 Lisp_Object args[3], msg; |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5497 int i, nbytes; |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5498 struct gcpro gcpro1; |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5499 |
230 | 5500 ring_bell (); |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5501 |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5502 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
|
5503 args[1] = current_buffer->name; |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5504 args[2] = Ferror_message_string (error); |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5505 msg = Fformat (3, args); |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5506 GCPRO1 (msg); |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5507 nbytes = STRING_BYTES (XSTRING (msg)); |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5508 |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5509 for (i = 0; i < 3; ++i) |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5510 { |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5511 if (i == 0) |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5512 message2 (XSTRING (msg)->data, nbytes, STRING_MULTIBYTE (msg)); |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5513 else |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5514 message2_nolog (XSTRING (msg)->data, nbytes, STRING_MULTIBYTE (msg)); |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5515 Fsleep_for (make_number (1), Qnil); |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5516 } |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5517 |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5518 UNGCPRO; |
230 | 5519 return Qnil; |
5520 } | |
5521 | |
5522 Lisp_Object | |
5523 auto_save_1 () | |
5524 { | |
5525 struct stat st; | |
5526 | |
5527 /* Get visited file's mode to become the auto save file's mode. */ | |
28417
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28117
diff
changeset
|
5528 if (! NILP (current_buffer->filename) |
4b675266db04
* lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW, XSUBR, XBUFFER):
Ken Raeburn <raeburn@raeburn.org>
parents:
28117
diff
changeset
|
5529 && stat (XSTRING (current_buffer->filename)->data, &st) >= 0) |
230 | 5530 /* But make sure we can overwrite it later! */ |
5531 auto_save_mode_bits = st.st_mode | 0600; | |
5532 else | |
5533 auto_save_mode_bits = 0666; | |
5534 | |
5535 return | |
5536 Fwrite_region (Qnil, Qnil, | |
5537 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
|
5538 Qnil, Qlambda, Qnil, Qnil); |
230 | 5539 } |
5540 | |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5541 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
|
5542 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
|
5543 Lisp_Object stream; |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5544 { |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
5545 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
|
5546 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
|
5547 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
|
5548 | XFASTINT (XCDR (stream)))); |
35175
e5a437efe234
(do_auto_save_unwind): Do the pop_message here
Gerd Moellmann <gerd@gnu.org>
parents:
34971
diff
changeset
|
5549 pop_message (); |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5550 return Qnil; |
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5551 } |
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5552 |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5553 static Lisp_Object |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5554 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
|
5555 Lisp_Object value; |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5556 { |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5557 minibuffer_auto_raise = XINT (value); |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5558 return Qnil; |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5559 } |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5560 |
230 | 5561 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
|
5562 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
|
5563 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
|
5564 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
|
5565 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
|
5566 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
|
5567 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
|
5568 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
|
5569 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5570 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
|
5571 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
|
5572 (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
|
5573 Lisp_Object no_message, current_only; |
230 | 5574 { |
5575 struct buffer *old = current_buffer, *b; | |
5576 Lisp_Object tail, buf; | |
5577 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
|
5578 int do_handled_files; |
4270
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
5579 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
|
5580 FILE *stream; |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5581 Lisp_Object lispstream; |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5582 int count = specpdl_ptr - specpdl; |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5583 int orig_minibuffer_auto_raise = minibuffer_auto_raise; |
42407
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5584 int message_p = 0; |
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5585 |
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5586 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
|
5587 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
|
5588 |
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5589 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
|
5590 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
|
5591 |
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5592 if (NILP (no_message)); |
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5593 message_p = push_message (); |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
5594 |
4270
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
5595 /* 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
|
5596 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
|
5597 oquit = Vquit_flag; |
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
5598 Vquit_flag = Qnil; |
230 | 5599 |
5600 /* No GCPRO needed, because (when it matters) all Lisp_Object variables | |
5601 point to non-strings reached from Vbuffer_alist. */ | |
5602 | |
485 | 5603 if (!NILP (Vrun_hooks)) |
230 | 5604 call1 (Vrun_hooks, intern ("auto-save-hook")); |
5605 | |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5606 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
|
5607 { |
37961
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5608 Lisp_Object listfile; |
28697
7d587a158d1f
(Fdo_auto_save): Create directories for auto-save
Gerd Moellmann <gerd@gnu.org>
parents:
28673
diff
changeset
|
5609 |
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
5610 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
|
5611 |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5612 /* 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
|
5613 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
|
5614 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
|
5615 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
|
5616 { |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5617 Lisp_Object dir; |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5618 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
|
5619 if (NILP (Ffile_directory_p (dir))) |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5620 call2 (Qmake_directory, dir, Qt); |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5621 } |
28697
7d587a158d1f
(Fdo_auto_save): Create directories for auto-save
Gerd Moellmann <gerd@gnu.org>
parents:
28673
diff
changeset
|
5622 |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5623 stream = fopen (XSTRING (listfile)->data, "w"); |
19401
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5624 if (stream != NULL) |
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5625 { |
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5626 /* 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
|
5627 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
|
5628 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
|
5629 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
|
5630 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
|
5631 } |
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5632 else |
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5633 lispstream = Qnil; |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5634 } |
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5635 else |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5636 { |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5637 stream = NULL; |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5638 lispstream = Qnil; |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5639 } |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5640 |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5641 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
|
5642 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
|
5643 make_number (minibuffer_auto_raise)); |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5644 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
|
5645 auto_saving = 1; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
5646 |
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
|
5647 /* First, save all files which don't have handlers. If Emacs is |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5648 crashing, the handlers may tweak what is causing Emacs to crash |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5649 in the first place, and it would be a shame if Emacs failed to |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5650 autosave perfectly ordinary files because it couldn't handle some |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5651 ange-ftp'd file. */ |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5652 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
|
5653 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
|
5654 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
5655 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
|
5656 b = XBUFFER (buf); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
5657 |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5658 /* 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
|
5659 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
|
5660 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
|
5661 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
|
5662 && 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
|
5663 { |
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
5664 if (!NILP (b->filename)) |
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
5665 { |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5666 fwrite (XSTRING (b->filename)->data, 1, |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21189
diff
changeset
|
5667 STRING_BYTES (XSTRING (b->filename)), stream); |
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
5668 } |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5669 putc ('\n', stream); |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5670 fwrite (XSTRING (b->auto_save_file_name)->data, 1, |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21189
diff
changeset
|
5671 STRING_BYTES (XSTRING (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
|
5672 putc ('\n', stream); |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5673 } |
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
|
5674 |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5675 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
|
5676 && 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
|
5677 continue; |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5678 |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5679 /* Don't auto-save indirect buffers. |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5680 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
|
5681 if (b->base_buffer) |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5682 continue; |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5683 |
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
|
5684 /* 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
|
5685 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
|
5686 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
|
5687 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
|
5688 && 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
|
5689 && 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
|
5690 /* -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
|
5691 && 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
|
5692 && (do_handled_files |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
5693 || 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
|
5694 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
|
5695 { |
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
|
5696 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
|
5697 |
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
|
5698 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
|
5699 |
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
|
5700 /* 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
|
5701 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
|
5702 && 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
|
5703 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
|
5704 |
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
|
5705 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
|
5706 > (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
|
5707 /* 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
|
5708 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
|
5709 && 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
|
5710 /* 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
|
5711 && !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
|
5712 && 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
|
5713 { |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5714 /* 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
|
5715 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
|
5716 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
|
5717 b->name, 1); |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5718 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
|
5719 /* 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
|
5720 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
|
5721 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
|
5722 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
|
5723 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
|
5724 } |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5725 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
|
5726 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
|
5727 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
|
5728 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
|
5729 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
|
5730 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
|
5731 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
|
5732 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
|
5733 |
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
|
5734 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
|
5735 |
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
|
5736 /* 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
|
5737 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
|
5738 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
|
5739 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
|
5740 } |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5741 } |
230 | 5742 |
1059
430923239064
(Fdo_auto_save): Always call record_auto_save.
Richard M. Stallman <rms@gnu.org>
parents:
1044
diff
changeset
|
5743 /* 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
|
5744 record_auto_save (); |
230 | 5745 |
1775
f9ac4c0d8b72
* fileio.c (Fdo_auto_save): Add CURRENT_ONLY argument, as
Jim Blandy <jimb@redhat.com>
parents:
1763
diff
changeset
|
5746 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
|
5747 { |
25348
5c1dc7109bb8
(Fdo_auto_save): Use push_message, restore_message,
Gerd Moellmann <gerd@gnu.org>
parents:
25321
diff
changeset
|
5748 if (message_p) |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
5749 { |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
5750 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
|
5751 restore_message (); |
14616
051d6225ca90
(Fdo_auto_save): Pause before restoring old message.
Karl Heuer <kwzh@gnu.org>
parents:
14571
diff
changeset
|
5752 } |
5875
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
5753 else |
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
5754 message1 ("Auto-saving...done"); |
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
5755 } |
230 | 5756 |
4270
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
5757 Vquit_flag = oquit; |
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
5758 |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5759 unbind_to (count, Qnil); |
230 | 5760 return Qnil; |
5761 } | |
5762 | |
5763 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
|
5764 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
|
5765 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
|
5766 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
|
5767 () |
230 | 5768 { |
5769 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
|
5770 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
|
5771 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
|
5772 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
|
5773 } |
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
|
5774 |
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
|
5775 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
|
5776 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
|
5777 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
|
5778 () |
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
|
5779 { |
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
|
5780 current_buffer->auto_save_failure_time = -1; |
230 | 5781 return Qnil; |
5782 } | |
5783 | |
5784 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
|
5785 0, 0, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5786 doc: /* Return t if buffer has been auto-saved since last read in or saved. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5787 () |
230 | 5788 { |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5789 return (SAVE_MODIFF < current_buffer->auto_save_modified) ? Qt : Qnil; |
230 | 5790 } |
5791 | |
5792 /* Reading and completing file names */ | |
5793 extern Lisp_Object Ffile_name_completion (), Ffile_name_all_completions (); | |
5794 | |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5795 /* 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
|
5796 |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5797 static Lisp_Object |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5798 double_dollars (val) |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5799 Lisp_Object val; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5800 { |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5801 register unsigned char *old, *new; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5802 register int n; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5803 int osize, count; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5804 |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21189
diff
changeset
|
5805 osize = STRING_BYTES (XSTRING (val)); |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
5806 |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
5807 /* Count the number of $ characters. */ |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5808 for (n = osize, count = 0, old = XSTRING (val)->data; n > 0; n--) |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5809 if (*old++ == '$') count++; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5810 if (count > 0) |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5811 { |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5812 old = XSTRING (val)->data; |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
5813 val = make_uninit_multibyte_string (XSTRING (val)->size + count, |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
5814 osize + count); |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5815 new = XSTRING (val)->data; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5816 for (n = osize; n > 0; n--) |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5817 if (*old != '$') |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5818 *new++ = *old++; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5819 else |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5820 { |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5821 *new++ = '$'; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5822 *new++ = '$'; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5823 old++; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5824 } |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5825 } |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5826 return val; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5827 } |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5828 |
230 | 5829 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
|
5830 3, 3, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5831 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
|
5832 (string, dir, action) |
230 | 5833 Lisp_Object string, dir, action; |
5834 /* action is nil for complete, t for return list of completions, | |
5835 lambda for verify final value */ | |
5836 { | |
5837 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
|
5838 int changed; |
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
5839 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
|
5840 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
5841 CHECK_STRING (string); |
16651
e7449d679e72
(Fread_file_name_internal): Verify STRING is a string.
Richard M. Stallman <rms@gnu.org>
parents:
16534
diff
changeset
|
5842 |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5843 realdir = dir; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5844 name = string; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5845 orig_string = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5846 specdir = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5847 changed = 0; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5848 /* 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
|
5849 GCPRO5 (string, realdir, name, specdir, orig_string); |
230 | 5850 |
5851 if (XSTRING (string)->size == 0) | |
5852 { | |
5853 if (EQ (action, Qlambda)) | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5854 { |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5855 UNGCPRO; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5856 return Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5857 } |
230 | 5858 } |
5859 else | |
5860 { | |
5861 orig_string = string; | |
5862 string = Fsubstitute_in_file_name (string); | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5863 changed = NILP (Fstring_equal (string, orig_string)); |
230 | 5864 name = Ffile_name_nondirectory (string); |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5865 val = Ffile_name_directory (string); |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5866 if (! NILP (val)) |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5867 realdir = Fexpand_file_name (val, realdir); |
230 | 5868 } |
5869 | |
485 | 5870 if (NILP (action)) |
230 | 5871 { |
5872 specdir = Ffile_name_directory (string); | |
5873 val = Ffile_name_completion (name, realdir); | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5874 UNGCPRO; |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
5875 if (!STRINGP (val)) |
230 | 5876 { |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5877 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
|
5878 return double_dollars (string); |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5879 return val; |
230 | 5880 } |
5881 | |
485 | 5882 if (!NILP (specdir)) |
230 | 5883 val = concat2 (specdir, val); |
5884 #ifndef VMS | |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5885 return double_dollars (val); |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5886 #else /* not VMS */ |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5887 return val; |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5888 #endif /* not VMS */ |
230 | 5889 } |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5890 UNGCPRO; |
230 | 5891 |
5892 if (EQ (action, Qt)) | |
5893 return Ffile_name_all_completions (name, realdir); | |
5894 /* Only other case actually used is ACTION = lambda */ | |
5895 #ifdef VMS | |
5896 /* Supposedly this helps commands such as `cd' that read directory names, | |
5897 but can someone explain how it helps them? -- RMS */ | |
5898 if (XSTRING (name)->size == 0) | |
5899 return Qt; | |
5900 #endif /* VMS */ | |
5901 return Ffile_exists_p (string); | |
5902 } | |
5903 | |
5904 DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 5, 0, | |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5905 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
|
5906 Value is not expanded---you must call `expand-file-name' yourself. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5907 Default name to DEFAULT-FILENAME if user enters a null string. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5908 (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
|
5909 except that if INITIAL is specified, that combined with DIR is used.) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5910 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
|
5911 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
|
5912 Fifth arg INITIAL specifies text to start with. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5913 DIR defaults to current buffer's directory default. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5914 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5915 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
|
5916 `use-dialog-box' is non-nil, and the window system or X toolkit in use |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5917 provides a file dialog box. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5918 (prompt, dir, default_filename, mustmatch, initial) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
5919 Lisp_Object prompt, dir, default_filename, mustmatch, initial; |
230 | 5920 { |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5921 Lisp_Object val, insdef, tem; |
230 | 5922 struct gcpro gcpro1, gcpro2; |
5923 register char *homedir; | |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
5924 int replace_in_history = 0; |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
5925 int add_to_history = 0; |
230 | 5926 int count; |
5927 | |
485 | 5928 if (NILP (dir)) |
230 | 5929 dir = current_buffer->directory; |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
5930 if (NILP (default_filename)) |
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
5931 { |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
5932 if (! NILP (initial)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
5933 default_filename = Fexpand_file_name (initial, dir); |
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
5934 else |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
5935 default_filename = current_buffer->filename; |
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
5936 } |
230 | 5937 |
5938 /* If dir starts with user's homedir, change that to ~. */ | |
5939 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
|
5940 #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
|
5941 /* 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
|
5942 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
|
5943 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
|
5944 { |
c9980ec72766
(Fread_file_name) [DOS_NT]: Don't crash if homedir is NULL.
Eli Zaretskii <eliz@gnu.org>
parents:
33249
diff
changeset
|
5945 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
|
5946 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
|
5947 } |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
5948 #endif |
230 | 5949 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
|
5950 && STRINGP (dir) |
230 | 5951 && !strncmp (homedir, XSTRING (dir)->data, strlen (homedir)) |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
5952 && IS_DIRECTORY_SEP (XSTRING (dir)->data[strlen (homedir)])) |
230 | 5953 { |
5954 dir = make_string (XSTRING (dir)->data + strlen (homedir) - 1, | |
21244
50929073a0ba
Use STRING_BYTES and SET_STRING_BYTES.
Richard M. Stallman <rms@gnu.org>
parents:
21189
diff
changeset
|
5955 STRING_BYTES (XSTRING (dir)) - strlen (homedir) + 1); |
230 | 5956 XSTRING (dir)->data[0] = '~'; |
5957 } | |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5958 /* Likewise for default_filename. */ |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5959 if (homedir != 0 |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5960 && STRINGP (default_filename) |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5961 && !strncmp (homedir, XSTRING (default_filename)->data, strlen (homedir)) |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5962 && IS_DIRECTORY_SEP (XSTRING (default_filename)->data[strlen (homedir)])) |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5963 { |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5964 default_filename |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5965 = make_string (XSTRING (default_filename)->data + strlen (homedir) - 1, |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5966 STRING_BYTES (XSTRING (default_filename)) - strlen (homedir) + 1); |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5967 XSTRING (default_filename)->data[0] = '~'; |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5968 } |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5969 if (!NILP (default_filename)) |
24909
804955a16819
(Fread_file_name): Check type of DEFAULT_FILENAME.
Richard M. Stallman <rms@gnu.org>
parents:
24877
diff
changeset
|
5970 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
5971 CHECK_STRING (default_filename); |
24909
804955a16819
(Fread_file_name): Check type of DEFAULT_FILENAME.
Richard M. Stallman <rms@gnu.org>
parents:
24877
diff
changeset
|
5972 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
|
5973 } |
230 | 5974 |
16651
e7449d679e72
(Fread_file_name_internal): Verify STRING is a string.
Richard M. Stallman <rms@gnu.org>
parents:
16534
diff
changeset
|
5975 if (insert_default_directory && STRINGP (dir)) |
230 | 5976 { |
5977 insdef = dir; | |
485 | 5978 if (!NILP (initial)) |
230 | 5979 { |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
5980 Lisp_Object args[2], pos; |
230 | 5981 |
5982 args[0] = insdef; | |
5983 args[1] = initial; | |
5984 insdef = Fconcat (2, args); | |
6181
dd271c6b4e56
(Fread_file_name): Do the right thing when insert-default-directory is nil.
Karl Heuer <kwzh@gnu.org>
parents:
6177
diff
changeset
|
5985 pos = make_number (XSTRING (double_dollars (dir))->size); |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5986 insdef = Fcons (double_dollars (insdef), pos); |
230 | 5987 } |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5988 else |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5989 insdef = double_dollars (insdef); |
230 | 5990 } |
16651
e7449d679e72
(Fread_file_name_internal): Verify STRING is a string.
Richard M. Stallman <rms@gnu.org>
parents:
16534
diff
changeset
|
5991 else if (STRINGP (initial)) |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5992 insdef = Fcons (double_dollars (initial), make_number (0)); |
230 | 5993 else |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
5994 insdef = Qnil; |
230 | 5995 |
22658
9f320d762e2f
(Faccess_file): Check type of second argument STRING.
Richard M. Stallman <rms@gnu.org>
parents:
22613
diff
changeset
|
5996 count = specpdl_ptr - specpdl; |
230 | 5997 #ifdef VMS |
5998 specbind (intern ("completion-ignore-case"), Qt); | |
5999 #endif | |
6000 | |
22658
9f320d762e2f
(Faccess_file): Check type of second argument STRING.
Richard M. Stallman <rms@gnu.org>
parents:
22613
diff
changeset
|
6001 specbind (intern ("minibuffer-completing-file-name"), Qt); |
9f320d762e2f
(Faccess_file): Check type of second argument STRING.
Richard M. Stallman <rms@gnu.org>
parents:
22613
diff
changeset
|
6002 |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
6003 GCPRO2 (insdef, default_filename); |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6004 |
29312
8b6842c36473
(Fread_file_name) [HAVE_NTGUI]: Use file dialog.
Jason Rumney <jasonr@gnu.org>
parents:
29152
diff
changeset
|
6005 #if defined (USE_MOTIF) || defined (HAVE_NTGUI) |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6006 if ((NILP (last_nonmenu_event) || CONSP (last_nonmenu_event)) |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6007 && use_dialog_box |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6008 && have_menus_p ()) |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6009 { |
28117
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6010 /* 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
|
6011 Lisp_Object file; |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6012 file = Ffile_name_nondirectory (dir); |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6013 if (XSTRING (file)->size && NILP (default_filename)) |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6014 { |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6015 default_filename = file; |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6016 dir = Ffile_name_directory (dir); |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6017 } |
29312
8b6842c36473
(Fread_file_name) [HAVE_NTGUI]: Use file dialog.
Jason Rumney <jasonr@gnu.org>
parents:
29152
diff
changeset
|
6018 if (!NILP(default_filename)) |
8b6842c36473
(Fread_file_name) [HAVE_NTGUI]: Use file dialog.
Jason Rumney <jasonr@gnu.org>
parents:
29152
diff
changeset
|
6019 default_filename = Fexpand_file_name (default_filename, dir); |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6020 val = Fx_file_dialog (prompt, dir, default_filename, mustmatch); |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6021 add_to_history = 1; |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6022 } |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6023 else |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6024 #endif |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6025 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
|
6026 dir, mustmatch, insdef, |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6027 Qfile_name_history, default_filename, Qnil); |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6028 |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6029 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
|
6030 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
|
6031 replace_in_history = 1; |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6032 |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6033 /* 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
|
6034 (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
|
6035 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
|
6036 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
|
6037 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
|
6038 if (EQ (val, default_filename)) |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6039 { |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6040 /* 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
|
6041 to the history. Maybe we should. */ |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6042 if (! replace_in_history) |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6043 add_to_history = 1; |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6044 |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6045 val = build_string (""); |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6046 } |
230 | 6047 |
6048 unbind_to (count, Qnil); | |
6049 UNGCPRO; | |
485 | 6050 if (NILP (val)) |
230 | 6051 error ("No file name specified"); |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6052 |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6053 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
|
6054 |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
6055 if (!NILP (tem) && !NILP (default_filename)) |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6056 val = default_filename; |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6057 else if (XSTRING (val)->size == 0 && NILP (insdef)) |
5245
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
6058 { |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
6059 if (!NILP (default_filename)) |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6060 val = default_filename; |
5245
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
6061 else |
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
6062 error ("No default file name"); |
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
6063 } |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6064 val = Fsubstitute_in_file_name (val); |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6065 |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6066 if (replace_in_history) |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6067 /* 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
|
6068 with what we will actually return. */ |
39973
579177964efa
Avoid (most) uses of XCAR/XCDR as lvalues, for flexibility in experimenting
Ken Raeburn <raeburn@raeburn.org>
parents:
39682
diff
changeset
|
6069 XSETCAR (Fsymbol_value (Qfile_name_history), double_dollars (val)); |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6070 else if (add_to_history) |
230 | 6071 { |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6072 /* 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
|
6073 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
|
6074 Lisp_Object val1 = double_dollars (val); |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6075 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
|
6076 if (! CONSP (tem) || NILP (Fequal (XCAR (tem), val1))) |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6077 Fset (Qfile_name_history, |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6078 Fcons (val1, tem)); |
230 | 6079 } |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6080 |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6081 return val; |
230 | 6082 } |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6083 |
230 | 6084 |
21514 | 6085 void |
23569
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6086 init_fileio_once () |
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6087 { |
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6088 /* 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
|
6089 XSETFASTINT (Vdirectory_sep_char, '/'); |
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6090 } |
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6091 |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6092 |
23569
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6093 void |
230 | 6094 syms_of_fileio () |
6095 { | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
6096 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
|
6097 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
|
6098 Qdirectory_file_name = intern ("directory-file-name"); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
6099 Qfile_name_directory = intern ("file-name-directory"); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
6100 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
|
6101 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
|
6102 Qfile_name_as_directory = intern ("file-name-as-directory"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6103 Qcopy_file = intern ("copy-file"); |
8227
0e6b7eeedc3b
(Fmake_directory_internal): Use Qmake_directory_internal.
Richard M. Stallman <rms@gnu.org>
parents:
8185
diff
changeset
|
6104 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
|
6105 Qmake_directory = intern ("make-directory"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6106 Qdelete_directory = intern ("delete-directory"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6107 Qdelete_file = intern ("delete-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6108 Qrename_file = intern ("rename-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6109 Qadd_name_to_file = intern ("add-name-to-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6110 Qmake_symbolic_link = intern ("make-symbolic-link"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6111 Qfile_exists_p = intern ("file-exists-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6112 Qfile_executable_p = intern ("file-executable-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6113 Qfile_readable_p = intern ("file-readable-p"); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6114 Qfile_writable_p = intern ("file-writable-p"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6115 Qfile_symlink_p = intern ("file-symlink-p"); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6116 Qaccess_file = intern ("access-file"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6117 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
|
6118 Qfile_regular_p = intern ("file-regular-p"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6119 Qfile_accessible_directory_p = intern ("file-accessible-directory-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6120 Qfile_modes = intern ("file-modes"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6121 Qset_file_modes = intern ("set-file-modes"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6122 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
|
6123 Qinsert_file_contents = intern ("insert-file-contents"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6124 Qwrite_region = intern ("write-region"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6125 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
|
6126 Qset_visited_file_modtime = intern ("set-visited-file-modtime"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6127 |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
6128 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
|
6129 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
|
6130 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
|
6131 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
|
6132 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
|
6133 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
|
6134 staticpro (&Qfile_name_as_directory); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6135 staticpro (&Qcopy_file); |
8243
bf7b3b969ab5
(syms_of_fileio): Finish previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8227
diff
changeset
|
6136 staticpro (&Qmake_directory_internal); |
28697
7d587a158d1f
(Fdo_auto_save): Create directories for auto-save
Gerd Moellmann <gerd@gnu.org>
parents:
28673
diff
changeset
|
6137 staticpro (&Qmake_directory); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6138 staticpro (&Qdelete_directory); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6139 staticpro (&Qdelete_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6140 staticpro (&Qrename_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6141 staticpro (&Qadd_name_to_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6142 staticpro (&Qmake_symbolic_link); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6143 staticpro (&Qfile_exists_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6144 staticpro (&Qfile_executable_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6145 staticpro (&Qfile_readable_p); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6146 staticpro (&Qfile_writable_p); |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6147 staticpro (&Qaccess_file); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6148 staticpro (&Qfile_symlink_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6149 staticpro (&Qfile_directory_p); |
11599
51bc10be0dc7
(Ffile_regular_p): Use Qfile_regular_p.
Richard M. Stallman <rms@gnu.org>
parents:
11426
diff
changeset
|
6150 staticpro (&Qfile_regular_p); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6151 staticpro (&Qfile_accessible_directory_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6152 staticpro (&Qfile_modes); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6153 staticpro (&Qset_file_modes); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6154 staticpro (&Qfile_newer_than_file_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6155 staticpro (&Qinsert_file_contents); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6156 staticpro (&Qwrite_region); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6157 staticpro (&Qverify_visited_file_modtime); |
16226
a70ec9baba1a
(syms_of_fileio): staticpro Qset_visited_file_modtime.
Erik Naggum <erik@naggum.no>
parents:
16167
diff
changeset
|
6158 staticpro (&Qset_visited_file_modtime); |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
6159 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
6160 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
|
6161 Fset (Qfile_name_history, Qnil); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6162 staticpro (&Qfile_name_history); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6163 |
230 | 6164 Qfile_error = intern ("file-error"); |
6165 staticpro (&Qfile_error); | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
6166 Qfile_already_exists = intern ("file-already-exists"); |
230 | 6167 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
|
6168 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
|
6169 staticpro (&Qfile_date_error); |
25595 | 6170 Qexcl = intern ("excl"); |
6171 staticpro (&Qexcl); | |
230 | 6172 |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
6173 #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
|
6174 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
|
6175 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
|
6176 #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
|
6177 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
6178 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
|
6179 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
|
6180 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
|
6181 Vfile_name_coding_system = Qnil; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
6182 |
21048
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
6183 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
|
6184 &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
|
6185 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
|
6186 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
|
6187 |
8151a2b431d0
(file-name-coding-system, default-file-name-coding-system): Doc fix (links
Pavel Janík <Pavel@Janik.cz>
parents:
41655
diff
changeset
|
6188 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
|
6189 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
|
6190 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
|
6191 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
|
6192 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
|
6193 |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6194 DEFVAR_LISP ("auto-save-file-format", &Vauto_save_file_format, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6195 doc: /* *Format in which to write auto-save files. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6196 Should be a list of symbols naming formats that are defined in `format-alist'. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6197 If it is t, which is the default, auto-save files are written in the |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6198 same format as a regular save would use. */); |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6199 Vauto_save_file_format = Qt; |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6200 |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6201 Qformat_decode = intern ("format-decode"); |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6202 staticpro (&Qformat_decode); |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6203 Qformat_annotate_function = intern ("format-annotate-function"); |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6204 staticpro (&Qformat_annotate_function); |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6205 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6206 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
|
6207 staticpro (&Qcar_less_than_car); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6208 |
230 | 6209 Fput (Qfile_error, Qerror_conditions, |
6210 Fcons (Qfile_error, Fcons (Qerror, Qnil))); | |
6211 Fput (Qfile_error, Qerror_message, | |
6212 build_string ("File error")); | |
6213 | |
6214 Fput (Qfile_already_exists, Qerror_conditions, | |
6215 Fcons (Qfile_already_exists, | |
6216 Fcons (Qfile_error, Fcons (Qerror, Qnil)))); | |
6217 Fput (Qfile_already_exists, Qerror_message, | |
6218 build_string ("File already exists")); | |
6219 | |
17271
e34a30952e14
(Fcopy_file): Use Qfile_date_error if can't set file date.
Richard M. Stallman <rms@gnu.org>
parents:
17114
diff
changeset
|
6220 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
|
6221 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
|
6222 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
|
6223 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
|
6224 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
|
6225 |
230 | 6226 DEFVAR_BOOL ("insert-default-directory", &insert_default_directory, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6227 doc: /* *Non-nil means when reading a filename start with default dir in minibuffer. */); |
230 | 6228 insert_default_directory = 1; |
6229 | |
6230 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
|
6231 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
|
6232 nil means use format `var'. This variable is meaningful only on VMS. */); |
230 | 6233 vms_stmlf_recfm = 0; |
6234 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
6235 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
|
6236 doc: /* Directory separator character for built-in functions that return file names. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6237 The value should be either ?/ or ?\\ (any other value is treated as ?\\). |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6238 This variable affects the built-in functions only on Windows, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6239 on other platforms, it is initialized so that Lisp code can find out |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6240 what the normal separator is. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6241 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6242 WARNING: This variable is deprecated and will be removed in the near |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6243 future. DO NOT USE IT. */); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
6244 |
850
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
6245 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
|
6246 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
|
6247 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
|
6248 HANDLER. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6249 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6250 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
|
6251 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
|
6252 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
|
6253 (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
|
6254 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
|
6255 (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
|
6256 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
|
6257 for its argument. */); |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6258 Vfile_name_handler_alist = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6259 |
19641
d7f2d75a09d3
(Vset_auto_coding_function): Name changed from
Kenichi Handa <handa@m17n.org>
parents:
19572
diff
changeset
|
6260 DEFVAR_LISP ("set-auto-coding-function", |
d7f2d75a09d3
(Vset_auto_coding_function): Name changed from
Kenichi Handa <handa@m17n.org>
parents:
19572
diff
changeset
|
6261 &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
|
6262 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
|
6263 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
|
6264 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
|
6265 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
|
6266 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
|
6267 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
|
6268 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
|
6269 -*- ... coding: CODING-SYSTEM; ... -*- |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6270 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
|
6271 Vset_auto_coding_function = Qnil; |
19448
950a178e8783
(Vauto_file_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19437
diff
changeset
|
6272 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6273 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
|
6274 doc: /* A list of functions to be called at the end of `insert-file-contents'. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6275 Each is passed one argument, the number of bytes inserted. It should return |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6276 the new byte count, and leave point the same. If `insert-file-contents' is |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6277 intercepted by a handler from `file-name-handler-alist', that handler is |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6278 responsible for calling the after-insert-file-functions if appropriate. */); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6279 Vafter_insert_file_functions = Qnil; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6280 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6281 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
|
6282 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
|
6283 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
|
6284 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
|
6285 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
|
6286 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
|
6287 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
|
6288 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
|
6289 increasing order. If there are several functions in the list, the several |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6290 lists are merged destructively. */); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6291 Vwrite_region_annotate_functions = Qnil; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6292 |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
6293 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
|
6294 &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
|
6295 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
|
6296 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
|
6297 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
|
6298 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
|
6299 |
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
6300 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
|
6301 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
|
6302 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
|
6303 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
|
6304 |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
6305 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
|
6306 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
|
6307 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
|
6308 |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
6309 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
|
6310 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
|
6311 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
|
6312 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
|
6313 a non-nil value. */); |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
6314 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
|
6315 |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
6316 defsubr (&Sfind_file_name_handler); |
230 | 6317 defsubr (&Sfile_name_directory); |
6318 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
|
6319 defsubr (&Sunhandled_file_name_directory); |
230 | 6320 defsubr (&Sfile_name_as_directory); |
6321 defsubr (&Sdirectory_file_name); | |
6322 defsubr (&Smake_temp_name); | |
6323 defsubr (&Sexpand_file_name); | |
6324 defsubr (&Ssubstitute_in_file_name); | |
6325 defsubr (&Scopy_file); | |
1533
b86ef0432100
(Fmake_directory_internal): Renamed from Fmake_directory.
Richard M. Stallman <rms@gnu.org>
parents:
1377
diff
changeset
|
6326 defsubr (&Smake_directory_internal); |
686
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
6327 defsubr (&Sdelete_directory); |
230 | 6328 defsubr (&Sdelete_file); |
6329 defsubr (&Srename_file); | |
6330 defsubr (&Sadd_name_to_file); | |
6331 #ifdef S_IFLNK | |
6332 defsubr (&Smake_symbolic_link); | |
6333 #endif /* S_IFLNK */ | |
6334 #ifdef VMS | |
6335 defsubr (&Sdefine_logical_name); | |
6336 #endif /* VMS */ | |
6337 #ifdef HPUX_NET | |
6338 defsubr (&Ssysnetunam); | |
6339 #endif /* HPUX_NET */ | |
6340 defsubr (&Sfile_name_absolute_p); | |
6341 defsubr (&Sfile_exists_p); | |
6342 defsubr (&Sfile_executable_p); | |
6343 defsubr (&Sfile_readable_p); | |
6344 defsubr (&Sfile_writable_p); | |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6345 defsubr (&Saccess_file); |
230 | 6346 defsubr (&Sfile_symlink_p); |
6347 defsubr (&Sfile_directory_p); | |
536 | 6348 defsubr (&Sfile_accessible_directory_p); |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
6349 defsubr (&Sfile_regular_p); |
230 | 6350 defsubr (&Sfile_modes); |
6351 defsubr (&Sset_file_modes); | |
1763
65e858c07a8b
(Fset_default_file_modes, Fdefault_file_modes): Renamed from .._mode.
Richard M. Stallman <rms@gnu.org>
parents:
1762
diff
changeset
|
6352 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
|
6353 defsubr (&Sdefault_file_modes); |
230 | 6354 defsubr (&Sfile_newer_than_file_p); |
6355 defsubr (&Sinsert_file_contents); | |
6356 defsubr (&Swrite_region); | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6357 defsubr (&Scar_less_than_car); |
230 | 6358 defsubr (&Sverify_visited_file_modtime); |
6359 defsubr (&Sclear_visited_file_modtime); | |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
6360 defsubr (&Svisited_file_modtime); |
230 | 6361 defsubr (&Sset_visited_file_modtime); |
6362 defsubr (&Sdo_auto_save); | |
6363 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
|
6364 defsubr (&Sclear_buffer_auto_save_failure); |
230 | 6365 defsubr (&Srecent_auto_save_p); |
6366 | |
6367 defsubr (&Sread_file_name_internal); | |
6368 defsubr (&Sread_file_name); | |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
6369 |
1204
567860ca77e0
* fileio.c (syms_of_fileio): Don't try to defsubr Sunix_sync
Jim Blandy <jimb@redhat.com>
parents:
1178
diff
changeset
|
6370 #ifdef unix |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
6371 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
|
6372 #endif |
230 | 6373 } |
27618 | 6374 |