Mercurial > emacs
annotate src/fileio.c @ 48626:bdbf27c68b39
2002-12-02 Andrew Choi <akochoi@shaw.ca>
* make-bin-dist, osx-install: Remove.
* INSTALL: Remove description of make-bin-dist and osx-install.
author | Andrew Choi <akochoi@shaw.ca> |
---|---|
date | Mon, 02 Dec 2002 17:25:20 +0000 |
parents | b3e8e8c5face |
children | 682129896be4 |
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 |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4483
diff
changeset
|
22 #include <config.h> |
230 | 23 |
41969
e669966d496e
Test GNU_LINUX, not LINUX.
Richard M. Stallman <rms@gnu.org>
parents:
41768
diff
changeset
|
24 #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
|
25 #include <fcntl.h> |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
26 #endif |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
27 |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
28 #include <stdio.h> |
230 | 29 #include <sys/types.h> |
30 #include <sys/stat.h> | |
372 | 31 |
6862
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
32 #ifdef HAVE_UNISTD_H |
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
33 #include <unistd.h> |
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
34 #endif |
653504b6b5dd
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6678
diff
changeset
|
35 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
36 #if !defined (S_ISLNK) && defined (S_IFLNK) |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
37 # define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK) |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
38 #endif |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
39 |
16534
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
40 #if !defined (S_ISFIFO) && defined (S_IFIFO) |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
41 # define S_ISFIFO(m) (((m) & S_IFMT) == S_IFIFO) |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
42 #endif |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
43 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
44 #if !defined (S_ISREG) && defined (S_IFREG) |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
45 # define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
46 #endif |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
47 |
372 | 48 #ifdef VMS |
564 | 49 #include "vms-pwd.h" |
372 | 50 #else |
230 | 51 #include <pwd.h> |
372 | 52 #endif |
53 | |
230 | 54 #include <ctype.h> |
372 | 55 |
56 #ifdef VMS | |
5877 | 57 #include "vmsdir.h" |
372 | 58 #include <perror.h> |
59 #include <stddef.h> | |
60 #include <string.h> | |
61 #endif | |
62 | |
230 | 63 #include <errno.h> |
64 | |
372 | 65 #ifndef vax11c |
31095
e19d38e14720
[USE_CRT_DLL]: Remove unnecessary extern, which screws
Andrew Innes <andrewi@gnu.org>
parents:
30927
diff
changeset
|
66 #ifndef USE_CRT_DLL |
230 | 67 extern int errno; |
68 #endif | |
31095
e19d38e14720
[USE_CRT_DLL]: Remove unnecessary extern, which screws
Andrew Innes <andrewi@gnu.org>
parents:
30927
diff
changeset
|
69 #endif |
230 | 70 |
71 #ifdef APOLLO | |
72 #include <sys/time.h> | |
73 #endif | |
74 | |
75 #include "lisp.h" | |
1299
b8337cdf2e8b
* fileio.c (Finsert_file_contents): Call offset_intervals() if
Joseph Arceneaux <jla@gnu.org>
parents:
1240
diff
changeset
|
76 #include "intervals.h" |
230 | 77 #include "buffer.h" |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
78 #include "charset.h" |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
79 #include "coding.h" |
230 | 80 #include "window.h" |
81 | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
82 #ifdef WINDOWSNT |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
83 #define NOMINMAX 1 |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
84 #include <windows.h> |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
85 #include <stdlib.h> |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
86 #include <fcntl.h> |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
87 #endif /* not WINDOWSNT */ |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
88 |
21787
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
89 #ifdef MSDOS |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
90 #include "msdos.h" |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
91 #include <sys/param.h> |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
92 #if __DJGPP__ >= 2 |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
93 #include <fcntl.h> |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
94 #include <string.h> |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
95 #endif |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
96 #endif |
ee3aed578b1d
Include msdos.h after lisp.h.
Eli Zaretskii <eliz@gnu.org>
parents:
21739
diff
changeset
|
97 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
98 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
99 #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
|
100 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
|
101 else unixtodos_filename (s); \ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
102 } while (0) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
103 /* 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
|
104 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
|
105 #ifdef MSDOS |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
106 #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
|
107 #endif |
69c516d109e7
(DRIVE_LETTER) [WINDOWSNT]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15587
diff
changeset
|
108 #ifdef WINDOWSNT |
69c516d109e7
(DRIVE_LETTER) [WINDOWSNT]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15587
diff
changeset
|
109 #define IS_DRIVE(x) isalpha (x) |
69c516d109e7
(DRIVE_LETTER) [WINDOWSNT]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15587
diff
changeset
|
110 #endif |
15587
515819688789
(DRIVE_LETTER) [MSDOS]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15533
diff
changeset
|
111 /* 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
|
112 filenames will sometimes compare inequal, because |
515819688789
(DRIVE_LETTER) [MSDOS]: Lower-case drive letters.
Miles Bader <miles@gnu.org>
parents:
15533
diff
changeset
|
113 `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
|
114 #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
|
115 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
116 |
230 | 117 #ifdef VMS |
118 #include <file.h> | |
119 #include <rmsdef.h> | |
120 #include <fab.h> | |
121 #include <nam.h> | |
122 #endif | |
123 | |
564 | 124 #include "systime.h" |
230 | 125 |
126 #ifdef HPUX | |
127 #include <netio.h> | |
350 | 128 #ifndef HPUX8 |
3410
47b51faf6c4e
[HPUX9]: Don't include errnet.h.
Richard M. Stallman <rms@gnu.org>
parents:
3032
diff
changeset
|
129 #ifndef HPUX9 |
230 | 130 #include <errnet.h> |
131 #endif | |
350 | 132 #endif |
3410
47b51faf6c4e
[HPUX9]: Don't include errnet.h.
Richard M. Stallman <rms@gnu.org>
parents:
3032
diff
changeset
|
133 #endif |
230 | 134 |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
135 #include "commands.h" |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
136 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
|
137 |
230 | 138 #ifndef O_WRONLY |
139 #define O_WRONLY 1 | |
140 #endif | |
141 | |
8597 | 142 #ifndef O_RDONLY |
143 #define O_RDONLY 0 | |
144 #endif | |
145 | |
24367
f9d5fff966f0
(lstat) [!S_ISLNK]: Use stat instead of lstat.
Eli Zaretskii <eliz@gnu.org>
parents:
24313
diff
changeset
|
146 #ifndef S_ISLNK |
f9d5fff966f0
(lstat) [!S_ISLNK]: Use stat instead of lstat.
Eli Zaretskii <eliz@gnu.org>
parents:
24313
diff
changeset
|
147 # define lstat stat |
f9d5fff966f0
(lstat) [!S_ISLNK]: Use stat instead of lstat.
Eli Zaretskii <eliz@gnu.org>
parents:
24313
diff
changeset
|
148 #endif |
f9d5fff966f0
(lstat) [!S_ISLNK]: Use stat instead of lstat.
Eli Zaretskii <eliz@gnu.org>
parents:
24313
diff
changeset
|
149 |
230 | 150 /* Nonzero during writing of auto-save files */ |
151 int auto_saving; | |
152 | |
153 /* Set by auto_save_1 to mode of original file so Fwrite_region will create | |
154 a new file with the same mode as the original */ | |
155 int auto_save_mode_bits; | |
156 | |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
157 /* Coding system for file names, or nil if none. */ |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
158 Lisp_Object Vfile_name_coding_system; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
159 |
21048
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
160 /* 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
|
161 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
|
162 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
|
163 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
164 /* Alist of elements (REGEXP . HANDLER) for file names |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
165 whose I/O is done with a special handler. */ |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
166 Lisp_Object Vfile_name_handler_alist; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
167 |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
168 /* Format for auto-save files */ |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
169 Lisp_Object Vauto_save_file_format; |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
170 |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
171 /* Lisp functions for translating file formats */ |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
172 Lisp_Object Qformat_decode, Qformat_annotate_function; |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
173 |
19448
950a178e8783
(Vauto_file_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19437
diff
changeset
|
174 /* 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
|
175 Lisp_Object Vset_auto_coding_function; |
19448
950a178e8783
(Vauto_file_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19437
diff
changeset
|
176 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
177 /* 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
|
178 Lisp_Object Vafter_insert_file_functions; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
179 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
180 /* 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
|
181 Lisp_Object Vwrite_region_annotate_functions; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
182 |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
183 /* 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
|
184 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
|
185 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
|
186 |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
187 /* 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
|
188 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
|
189 |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
190 /* Function to call to read a file name. */ |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
191 Lisp_Object Vread_file_name_function; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
192 |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
193 /* Current predicate used by read_file_name_internal. */ |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
194 Lisp_Object Vread_file_name_predicate; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
195 |
230 | 196 /* Nonzero means, when reading a filename in the minibuffer, |
197 start out by inserting the default directory into the minibuffer. */ | |
198 int insert_default_directory; | |
199 | |
200 /* On VMS, nonzero means write new files with record format stmlf. | |
201 Zero means use var format. */ | |
202 int vms_stmlf_recfm; | |
203 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
204 /* 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
|
205 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
|
206 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
|
207 |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
208 extern Lisp_Object Vuser_login_name; |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
209 |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
210 #ifdef WINDOWSNT |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
211 extern Lisp_Object Vw32_get_true_file_attributes; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
212 #endif |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
213 |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
214 extern int minibuf_level; |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
215 |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
216 extern int minibuffer_auto_raise; |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
217 |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
218 /* 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
|
219 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
|
220 |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
221 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
|
222 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
|
223 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
|
224 |
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
225 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
|
226 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
|
227 |
17271
e34a30952e14
(Fcopy_file): Use Qfile_date_error if can't set file date.
Richard M. Stallman <rms@gnu.org>
parents:
17114
diff
changeset
|
228 Lisp_Object Qfile_error, Qfile_already_exists, Qfile_date_error; |
25595 | 229 Lisp_Object Qexcl; |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
230 Lisp_Object Qfile_name_history; |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
231 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
232 Lisp_Object Qcar_less_than_car; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
233 |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
234 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
|
235 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
|
236 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
|
237 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
238 |
20370
7e443cd9a63a
(report_file_error): Declare it as void.
Kenichi Handa <handa@m17n.org>
parents:
20313
diff
changeset
|
239 void |
230 | 240 report_file_error (string, data) |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
241 const char *string; |
230 | 242 Lisp_Object data; |
243 { | |
244 Lisp_Object errstring; | |
25595 | 245 int errorno = errno; |
230 | 246 |
26526
b7438760079b
* callproc.c (strerror): Remove decl.
Paul Eggert <eggert@twinsun.com>
parents:
26088
diff
changeset
|
247 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
|
248 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
|
249 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
|
250 |
230 | 251 while (1) |
25595 | 252 switch (errorno) |
253 { | |
254 case EEXIST: | |
255 Fsignal (Qfile_already_exists, Fcons (errstring, data)); | |
256 break; | |
257 default: | |
258 /* System error messages are capitalized. Downcase the initial | |
259 unless it is followed by a slash. */ | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
260 if (SREF (errstring, 1) != '/') |
46424
9aa6b2db42da
* fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
Ken Raeburn <raeburn@raeburn.org>
parents:
46370
diff
changeset
|
261 SSET (errstring, 0, DOWNCASE (SREF (errstring, 0))); |
25595 | 262 |
263 Fsignal (Qfile_error, | |
264 Fcons (build_string (string), Fcons (errstring, data))); | |
265 } | |
230 | 266 } |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
267 |
20313
36bbb5e0a687
(close_file_unwind): Fix return type and return nil.
Andreas Schwab <schwab@suse.de>
parents:
20224
diff
changeset
|
268 Lisp_Object |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
269 close_file_unwind (fd) |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
270 Lisp_Object fd; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
271 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
272 emacs_close (XFASTINT (fd)); |
20313
36bbb5e0a687
(close_file_unwind): Fix return type and return nil.
Andreas Schwab <schwab@suse.de>
parents:
20224
diff
changeset
|
273 return Qnil; |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
274 } |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
275 |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
276 /* 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
|
277 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
278 static Lisp_Object |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
279 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
|
280 Lisp_Object location; |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
281 { |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
282 Fgoto_char (location); |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
283 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
|
284 return Qnil; |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
285 } |
230 | 286 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
287 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
|
288 Lisp_Object Qsubstitute_in_file_name; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
289 Lisp_Object Qdirectory_file_name; |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
290 Lisp_Object Qfile_name_directory; |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
291 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
|
292 Lisp_Object Qunhandled_file_name_directory; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
293 Lisp_Object Qfile_name_as_directory; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
294 Lisp_Object Qcopy_file; |
8227
0e6b7eeedc3b
(Fmake_directory_internal): Use Qmake_directory_internal.
Richard M. Stallman <rms@gnu.org>
parents:
8185
diff
changeset
|
295 Lisp_Object Qmake_directory_internal; |
28697
7d587a158d1f
(Fdo_auto_save): Create directories for auto-save
Gerd Moellmann <gerd@gnu.org>
parents:
28673
diff
changeset
|
296 Lisp_Object Qmake_directory; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
297 Lisp_Object Qdelete_directory; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
298 Lisp_Object Qdelete_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
299 Lisp_Object Qrename_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
300 Lisp_Object Qadd_name_to_file; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
301 Lisp_Object Qmake_symbolic_link; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
302 Lisp_Object Qfile_exists_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
303 Lisp_Object Qfile_executable_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
304 Lisp_Object Qfile_readable_p; |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
305 Lisp_Object Qfile_writable_p; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
306 Lisp_Object Qfile_symlink_p; |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
307 Lisp_Object Qaccess_file; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
308 Lisp_Object Qfile_directory_p; |
11599
51bc10be0dc7
(Ffile_regular_p): Use Qfile_regular_p.
Richard M. Stallman <rms@gnu.org>
parents:
11426
diff
changeset
|
309 Lisp_Object Qfile_regular_p; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
310 Lisp_Object Qfile_accessible_directory_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
311 Lisp_Object Qfile_modes; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
312 Lisp_Object Qset_file_modes; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
313 Lisp_Object Qfile_newer_than_file_p; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
314 Lisp_Object Qinsert_file_contents; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
315 Lisp_Object Qwrite_region; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
316 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
|
317 Lisp_Object Qset_visited_file_modtime; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
318 |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
319 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
|
320 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
|
321 Otherwise, return nil. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
322 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
|
323 `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
|
324 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
325 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
|
326 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
|
327 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
|
328 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
|
329 (filename, operation) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
330 Lisp_Object filename, operation; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
331 { |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
332 /* 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
|
333 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
|
334 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
|
335 |
41655
fccc74affd73
(Ffind_file_name_handler): Avoid initializer for `result'.
Richard M. Stallman <rms@gnu.org>
parents:
41595
diff
changeset
|
336 result = Qnil; |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
337 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
|
338 |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
339 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
|
340 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
|
341 else |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
342 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
|
343 |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
344 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
|
345 chain = XCDR (chain)) |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
346 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
347 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
|
348 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
|
349 if (CONSP (elt)) |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
350 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
351 Lisp_Object string; |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
352 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
|
353 string = XCAR (elt); |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
354 if (STRINGP (string) |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
355 && (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
|
356 { |
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
357 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
|
358 |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
359 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
|
360 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
|
361 if (NILP (tem)) |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
362 { |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
363 result = handler; |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
364 pos = match_pos; |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
365 } |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
366 } |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
367 } |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
368 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
369 QUIT; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
370 } |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
371 return result; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
372 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
373 |
230 | 374 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
|
375 1, 1, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
376 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
|
377 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
|
378 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
|
379 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
|
380 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
|
381 (filename) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
382 Lisp_Object filename; |
230 | 383 { |
46948
f2225c68b0a8
(Ffile_name_directory) [DOS_NT]: Don't declare `beg'
Eli Zaretskii <eliz@gnu.org>
parents:
46566
diff
changeset
|
384 #ifndef DOS_NT |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
385 register const unsigned char *beg; |
46948
f2225c68b0a8
(Ffile_name_directory) [DOS_NT]: Don't declare `beg'
Eli Zaretskii <eliz@gnu.org>
parents:
46566
diff
changeset
|
386 #else |
f2225c68b0a8
(Ffile_name_directory) [DOS_NT]: Don't declare `beg'
Eli Zaretskii <eliz@gnu.org>
parents:
46566
diff
changeset
|
387 register unsigned char *beg; |
f2225c68b0a8
(Ffile_name_directory) [DOS_NT]: Don't declare `beg'
Eli Zaretskii <eliz@gnu.org>
parents:
46566
diff
changeset
|
388 #endif |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
389 register const unsigned char *p; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
390 Lisp_Object handler; |
230 | 391 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
392 CHECK_STRING (filename); |
230 | 393 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
394 /* 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
|
395 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
|
396 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
|
397 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
398 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
|
399 |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
400 #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
|
401 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
|
402 #endif |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
403 beg = SDATA (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
404 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
405 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
|
406 #endif |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
407 p = beg + SBYTES (filename); |
230 | 408 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
409 while (p != beg && !IS_DIRECTORY_SEP (p[-1]) |
230 | 410 #ifdef VMS |
411 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>' | |
412 #endif /* VMS */ | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
413 #ifdef DOS_NT |
22172
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
414 /* only recognise drive specifier at the beginning */ |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
415 && !(p[-1] == ':' |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
416 /* 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
|
417 && ((p == beg + 2 && !IS_DIRECTORY_SEP (*beg)) |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
418 || (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
|
419 #endif |
230 | 420 ) p--; |
421 | |
422 if (p == beg) | |
423 return Qnil; | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
424 #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
|
425 /* 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
|
426 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
|
427 { |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
428 /* 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
|
429 unsigned char *res = alloca (MAXPATHLEN + 1); |
22172
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
430 unsigned char *r = res; |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
431 |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
432 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
|
433 { |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
434 strncpy (res, beg, 2); |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
435 beg += 2; |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
436 r += 2; |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
437 } |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
438 |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
439 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
|
440 { |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
441 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
|
442 strcat (res, "/"); |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
443 beg = res; |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
444 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
|
445 } |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
446 } |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
447 CORRECT_DIR_SEPS (beg); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
448 #endif /* DOS_NT */ |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
449 |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
450 if (STRING_MULTIBYTE (filename)) |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
451 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
|
452 return make_unibyte_string (beg, p - beg); |
230 | 453 } |
454 | |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
455 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
|
456 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
|
457 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
|
458 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
|
459 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
|
460 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
|
461 (filename) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
462 Lisp_Object filename; |
230 | 463 { |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
464 register const unsigned char *beg, *p, *end; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
465 Lisp_Object handler; |
230 | 466 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
467 CHECK_STRING (filename); |
230 | 468 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
469 /* 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
|
470 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
|
471 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
|
472 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
473 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
|
474 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
475 beg = SDATA (filename); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
476 end = p = beg + SBYTES (filename); |
230 | 477 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
478 while (p != beg && !IS_DIRECTORY_SEP (p[-1]) |
230 | 479 #ifdef VMS |
480 && p[-1] != ':' && p[-1] != ']' && p[-1] != '>' | |
481 #endif /* VMS */ | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
482 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
483 /* only recognise drive specifier at beginning */ |
22172
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
484 && !(p[-1] == ':' |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
485 /* handle the "/:d:foo" case correctly */ |
e0f5d2438001
(Ffile_name_directory, Ffile_name_nondirectory)
Richard M. Stallman <rms@gnu.org>
parents:
22113
diff
changeset
|
486 && (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
|
487 #endif |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
488 ) |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
489 p--; |
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 if (STRING_MULTIBYTE (filename)) |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
492 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
|
493 return make_unibyte_string (p, end - p); |
230 | 494 } |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
495 |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
496 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
|
497 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
|
498 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
|
499 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
|
500 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
|
501 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
|
502 \(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
|
503 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
|
504 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
|
505 (filename) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
506 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
|
507 { |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
508 Lisp_Object handler; |
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 /* 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
|
511 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
|
512 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
|
513 if (!NILP (handler)) |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
514 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
|
515 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
516 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
|
517 } |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
518 |
230 | 519 |
520 char * | |
521 file_name_as_directory (out, in) | |
522 char *out, *in; | |
523 { | |
524 int size = strlen (in) - 1; | |
525 | |
20790
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
526 strcpy (out, in); |
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
527 |
20651
0de9f45a1db6
(Finsert_file_contents): When not decoding,
Richard M. Stallman <rms@gnu.org>
parents:
20621
diff
changeset
|
528 if (size < 0) |
20790
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
529 { |
21543
55865851fd69
(file_name_as_directory): For empty arg, return `./'.
Karl Heuer <kwzh@gnu.org>
parents:
21522
diff
changeset
|
530 out[0] = '.'; |
55865851fd69
(file_name_as_directory): For empty arg, return `./'.
Karl Heuer <kwzh@gnu.org>
parents:
21522
diff
changeset
|
531 out[1] = '/'; |
55865851fd69
(file_name_as_directory): For empty arg, return `./'.
Karl Heuer <kwzh@gnu.org>
parents:
21522
diff
changeset
|
532 out[2] = 0; |
20790
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
533 return out; |
7fd6ce99f389
(file_name_as_directory): For an empty name, return "/".
Richard M. Stallman <rms@gnu.org>
parents:
20748
diff
changeset
|
534 } |
230 | 535 |
536 #ifdef VMS | |
537 /* Is it already a directory string? */ | |
538 if (in[size] == ':' || in[size] == ']' || in[size] == '>') | |
539 return out; | |
540 /* Is it a VMS directory file name? If so, hack VMS syntax. */ | |
541 else if (! index (in, '/') | |
542 && ((size > 3 && ! strcmp (&in[size - 3], ".DIR")) | |
543 || (size > 3 && ! strcmp (&in[size - 3], ".dir")) | |
544 || (size > 5 && (! strncmp (&in[size - 5], ".DIR", 4) | |
545 || ! strncmp (&in[size - 5], ".dir", 4)) | |
546 && (in[size - 1] == '.' || in[size - 1] == ';') | |
547 && in[size] == '1'))) | |
548 { | |
549 register char *p, *dot; | |
550 char brack; | |
551 | |
552 /* x.dir -> [.x] | |
553 dir:x.dir --> dir:[x] | |
554 dir:[x]y.dir --> dir:[x.y] */ | |
555 p = in + size; | |
556 while (p != in && *p != ':' && *p != '>' && *p != ']') p--; | |
557 if (p != in) | |
558 { | |
559 strncpy (out, in, p - in); | |
560 out[p - in] = '\0'; | |
561 if (*p == ':') | |
562 { | |
563 brack = ']'; | |
564 strcat (out, ":["); | |
565 } | |
566 else | |
567 { | |
568 brack = *p; | |
569 strcat (out, "."); | |
570 } | |
571 p++; | |
572 } | |
573 else | |
574 { | |
575 brack = ']'; | |
576 strcpy (out, "[."); | |
577 } | |
372 | 578 dot = index (p, '.'); |
579 if (dot) | |
230 | 580 { |
581 /* blindly remove any extension */ | |
582 size = strlen (out) + (dot - p); | |
583 strncat (out, p, dot - p); | |
584 } | |
585 else | |
586 { | |
587 strcat (out, p); | |
588 size = strlen (out); | |
589 } | |
590 out[size++] = brack; | |
591 out[size] = '\0'; | |
592 } | |
593 #else /* not VMS */ | |
594 /* 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
|
595 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
|
596 { |
46566
2f6929599b1a
(file_name_as_directory): Use literal '/' instead of DIRECTORY_SEP.
Juanma Barranquero <lekktu@gmail.com>
parents:
46561
diff
changeset
|
597 /* Cannot use DIRECTORY_SEP, which could have any value */ |
2f6929599b1a
(file_name_as_directory): Use literal '/' instead of DIRECTORY_SEP.
Juanma Barranquero <lekktu@gmail.com>
parents:
46561
diff
changeset
|
598 out[size + 1] = '/'; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
599 out[size + 2] = '\0'; |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
600 } |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
601 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
602 CORRECT_DIR_SEPS (out); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
603 #endif |
230 | 604 #endif /* not VMS */ |
605 return out; | |
606 } | |
607 | |
608 DEFUN ("file-name-as-directory", Ffile_name_as_directory, | |
609 Sfile_name_as_directory, 1, 1, 0, | |
46561
7ede6e7f8c24
(Ffile_name_as_directory): Fix argument name in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
46539
diff
changeset
|
610 doc: /* Return a string representing the file name FILE interpreted as a directory. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
611 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
|
612 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
|
613 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
|
614 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
|
615 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
|
616 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
|
617 (file) |
230 | 618 Lisp_Object file; |
619 { | |
620 char *buf; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
621 Lisp_Object handler; |
230 | 622 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
623 CHECK_STRING (file); |
485 | 624 if (NILP (file)) |
230 | 625 return Qnil; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
626 |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
627 /* 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
|
628 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
|
629 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
|
630 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
631 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
|
632 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
633 buf = (char *) alloca (SBYTES (file) + 10); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
634 return build_string (file_name_as_directory (buf, SDATA (file))); |
230 | 635 } |
636 | |
637 /* | |
638 * Convert from directory name to filename. | |
639 * On VMS: | |
640 * xyzzy:[mukesh.emacs] => xyzzy:[mukesh]emacs.dir.1 | |
641 * 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
|
642 * On UNIX, it's simple: just make sure there isn't a terminating / |
230 | 643 |
644 * Value is nonzero if the string output is different from the input. | |
645 */ | |
646 | |
21514 | 647 int |
230 | 648 directory_file_name (src, dst) |
649 char *src, *dst; | |
650 { | |
651 long slen; | |
652 #ifdef VMS | |
653 long rlen; | |
654 char * ptr, * rptr; | |
655 char bracket; | |
656 struct FAB fab = cc$rms_fab; | |
657 struct NAM nam = cc$rms_nam; | |
658 char esa[NAM$C_MAXRSS]; | |
659 #endif /* VMS */ | |
660 | |
661 slen = strlen (src); | |
662 #ifdef VMS | |
663 if (! index (src, '/') | |
664 && (src[slen - 1] == ']' | |
665 || src[slen - 1] == ':' | |
666 || src[slen - 1] == '>')) | |
667 { | |
668 /* VMS style - convert [x.y.z] to [x.y]z, [x] to [000000]x */ | |
669 fab.fab$l_fna = src; | |
670 fab.fab$b_fns = slen; | |
671 fab.fab$l_nam = &nam; | |
672 fab.fab$l_fop = FAB$M_NAM; | |
673 | |
674 nam.nam$l_esa = esa; | |
675 nam.nam$b_ess = sizeof esa; | |
676 nam.nam$b_nop |= NAM$M_SYNCHK; | |
677 | |
678 /* 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
|
679 if (SYS$PARSE (&fab, 0, 0) == RMS$_NORMAL) |
230 | 680 { |
681 slen = nam.nam$b_esl; | |
682 if (esa[slen - 1] == ';' && esa[slen - 2] == '.') | |
683 slen -= 2; | |
684 esa[slen] = '\0'; | |
685 src = esa; | |
686 } | |
687 if (src[slen - 1] != ']' && src[slen - 1] != '>') | |
688 { | |
689 /* what about when we have logical_name:???? */ | |
690 if (src[slen - 1] == ':') | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
691 { /* Xlate logical name and see what we get */ |
230 | 692 ptr = strcpy (dst, src); /* upper case for getenv */ |
693 while (*ptr) | |
694 { | |
695 if ('a' <= *ptr && *ptr <= 'z') | |
696 *ptr -= 040; | |
697 ptr++; | |
698 } | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
699 dst[slen - 1] = 0; /* remove colon */ |
230 | 700 if (!(src = egetenv (dst))) |
701 return 0; | |
702 /* should we jump to the beginning of this procedure? | |
703 Good points: allows us to use logical names that xlate | |
704 to Unix names, | |
705 Bad points: can be a problem if we just translated to a device | |
706 name... | |
707 For now, I'll punt and always expect VMS names, and hope for | |
708 the best! */ | |
709 slen = strlen (src); | |
710 if (src[slen - 1] != ']' && src[slen - 1] != '>') | |
711 { /* no recursion here! */ | |
712 strcpy (dst, src); | |
713 return 0; | |
714 } | |
715 } | |
716 else | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
717 { /* not a directory spec */ |
230 | 718 strcpy (dst, src); |
719 return 0; | |
720 } | |
721 } | |
722 bracket = src[slen - 1]; | |
723 | |
724 /* If bracket is ']' or '>', bracket - 2 is the corresponding | |
725 opening bracket. */ | |
372 | 726 ptr = index (src, bracket - 2); |
727 if (ptr == 0) | |
230 | 728 { /* no opening bracket */ |
729 strcpy (dst, src); | |
730 return 0; | |
731 } | |
732 if (!(rptr = rindex (src, '.'))) | |
733 rptr = ptr; | |
734 slen = rptr - src; | |
735 strncpy (dst, src, slen); | |
736 dst[slen] = '\0'; | |
737 if (*rptr == '.') | |
738 { | |
739 dst[slen++] = bracket; | |
740 dst[slen] = '\0'; | |
741 } | |
742 else | |
743 { | |
744 /* If we have the top-level of a rooted directory (i.e. xx:[000000]), | |
745 then translate the device and recurse. */ | |
746 if (dst[slen - 1] == ':' | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
747 && 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
|
748 && strcmp (src + slen, "[000000]") == 0) |
230 | 749 { |
750 dst[slen - 1] = '\0'; | |
751 if ((ptr = egetenv (dst)) | |
752 && (rlen = strlen (ptr) - 1) > 0 | |
753 && (ptr[rlen] == ']' || ptr[rlen] == '>') | |
754 && ptr[rlen - 1] == '.') | |
755 { | |
1358
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
756 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
|
757 strcpy (buf, ptr); |
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
758 buf[rlen - 1] = ']'; |
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
759 buf[rlen] = '\0'; |
aa32c275cbf9
(directory_file_name): Don't clobber the envvar
Richard M. Stallman <rms@gnu.org>
parents:
1299
diff
changeset
|
760 return directory_file_name (buf, dst); |
230 | 761 } |
762 else | |
763 dst[slen - 1] = ':'; | |
764 } | |
765 strcat (dst, "[000000]"); | |
766 slen += 8; | |
767 } | |
768 rptr++; | |
769 rlen = strlen (rptr) - 1; | |
770 strncat (dst, rptr, rlen); | |
771 dst[slen + rlen] = '\0'; | |
772 strcat (dst, ".DIR.1"); | |
773 return 1; | |
774 } | |
775 #endif /* VMS */ | |
776 /* Process as Unix format: just remove any final slash. | |
777 But leave "/" unchanged; do not change it to "". */ | |
778 strcpy (dst, src); | |
11667
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
779 #ifdef APOLLO |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
780 /* Handle // as root for apollo's. */ |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
781 if ((slen > 2 && dst[slen - 1] == '/') |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
782 || (slen > 1 && dst[0] != '/' && dst[slen - 1] == '/')) |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
783 dst[slen - 1] = 0; |
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
784 #else |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
785 if (slen > 1 |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
786 && 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
|
787 #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
|
788 && !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
|
789 #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
|
790 ) |
230 | 791 dst[slen - 1] = 0; |
11667
6945dfa38123
(directory_file_name): Add APOLLO conditional.
Richard M. Stallman <rms@gnu.org>
parents:
11658
diff
changeset
|
792 #endif |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
793 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
794 CORRECT_DIR_SEPS (dst); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
795 #endif |
230 | 796 return 1; |
797 } | |
798 | |
799 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
|
800 1, 1, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
801 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
|
802 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
|
803 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
|
804 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
|
805 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
|
806 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
|
807 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
|
808 (directory) |
230 | 809 Lisp_Object directory; |
810 { | |
811 char *buf; | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
812 Lisp_Object handler; |
230 | 813 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
814 CHECK_STRING (directory); |
230 | 815 |
485 | 816 if (NILP (directory)) |
230 | 817 return Qnil; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
818 |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
819 /* 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
|
820 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
|
821 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
|
822 if (!NILP (handler)) |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
823 return call2 (handler, Qdirectory_file_name, directory); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
824 |
230 | 825 #ifdef VMS |
826 /* 20 extra chars is insufficient for VMS, since we might perform a | |
827 logical name translation. an equivalence string can be up to 255 | |
828 chars long, so grab that much extra space... - sss */ | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
829 buf = (char *) alloca (SBYTES (directory) + 20 + 255); |
230 | 830 #else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
831 buf = (char *) alloca (SBYTES (directory) + 20); |
230 | 832 #endif |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
833 directory_file_name (SDATA (directory), buf); |
230 | 834 return build_string (buf); |
835 } | |
836 | |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
837 static char make_temp_name_tbl[64] = |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
838 { |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
839 'A','B','C','D','E','F','G','H', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
840 'I','J','K','L','M','N','O','P', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
841 'Q','R','S','T','U','V','W','X', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
842 'Y','Z','a','b','c','d','e','f', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
843 'g','h','i','j','k','l','m','n', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
844 'o','p','q','r','s','t','u','v', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
845 'w','x','y','z','0','1','2','3', |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
846 '4','5','6','7','8','9','-','_' |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
847 }; |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
848 |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
849 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
|
850 |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
851 /* 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
|
852 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
853 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
|
854 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
|
855 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
|
856 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
|
857 an absolute file name. |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
858 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
859 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
|
860 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
|
861 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
|
862 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
|
863 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
864 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
|
865 generated. */ |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
866 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
867 Lisp_Object |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
868 make_temp_name (prefix, base64_p) |
230 | 869 Lisp_Object prefix; |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
870 int base64_p; |
230 | 871 { |
872 Lisp_Object val; | |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
873 int len; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
874 int pid; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
875 unsigned char *p, *data; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
876 char pidbuf[20]; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
877 int pidlen; |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
878 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
879 CHECK_STRING (prefix); |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
880 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
881 /* 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
|
882 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
|
883 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
|
884 262144 unique file names per PID per PREFIX. */ |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
885 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
886 pid = (int) getpid (); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
887 |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
888 if (base64_p) |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
889 { |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
890 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
|
891 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
|
892 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
|
893 pidlen = 3; |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
894 } |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
895 else |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
896 { |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
897 #ifdef HAVE_LONG_FILE_NAMES |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
898 sprintf (pidbuf, "%d", pid); |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
899 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
|
900 #else |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
901 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
|
902 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
|
903 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
|
904 pidlen = 3; |
14519
7efdb933356e
(Fmake_temp_name) [MS-DOS]: Allow upto 8 characters in
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
905 #endif |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
906 } |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
907 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
908 len = SCHARS (prefix); |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
909 val = make_uninit_string (len + 3 + pidlen); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
910 data = SDATA (val); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
911 bcopy(SDATA (prefix), data, len); |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
912 p = data + len; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
913 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
914 bcopy (pidbuf, p, pidlen); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
915 p += pidlen; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
916 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
917 /* 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
|
918 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
|
919 this by initializing count to a random value, and incrementing it |
21917 | 920 afterwards. |
921 | |
922 We don't want make-temp-name to be called while dumping, | |
923 because then make_temp_name_count_initialized_p would get set | |
924 and then make_temp_name_count would not be set when Emacs starts. */ | |
925 | |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
926 if (!make_temp_name_count_initialized_p) |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
927 { |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
928 make_temp_name_count = (unsigned) time (NULL); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
929 make_temp_name_count_initialized_p = 1; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
930 } |
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 while (1) |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
933 { |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
934 struct stat ignored; |
21900
fd8b439fd6c9
(Fmake_temp_name): Improve randomness of generated file names.
Richard M. Stallman <rms@gnu.org>
parents:
21787
diff
changeset
|
935 unsigned num = make_temp_name_count; |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
936 |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
937 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
|
938 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
|
939 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
|
940 |
21900
fd8b439fd6c9
(Fmake_temp_name): Improve randomness of generated file names.
Richard M. Stallman <rms@gnu.org>
parents:
21787
diff
changeset
|
941 /* 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
|
942 ++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
|
943 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
|
944 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
|
945 |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
946 if (stat (data, &ignored) < 0) |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
947 { |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
948 /* 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
|
949 if (errno == ENOENT) |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
950 return val; |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
951 else |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
952 /* 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
|
953 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
|
954 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
|
955 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
|
956 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
|
957 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
|
958 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
|
959 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
|
960 Fcons (prefix, Qnil)); |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
961 /* not reached */ |
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
962 } |
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 error ("Cannot create temporary name for prefix `%s'", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
966 SDATA (prefix)); |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
967 return Qnil; |
230 | 968 } |
21684
89e327fdea93
(Fmake_temp_name): Complete rewrite.
Richard M. Stallman <rms@gnu.org>
parents:
21543
diff
changeset
|
969 |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
970 |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
971 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
|
972 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
|
973 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
|
974 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
|
975 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
976 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
|
977 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
|
978 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
|
979 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
980 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
|
981 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
|
982 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
|
983 |
d12db931f164
(Fmake_temp_name): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
43564
diff
changeset
|
984 * 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
|
985 * 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
|
986 * 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
|
987 (prefix) |
28928
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
988 Lisp_Object prefix; |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
989 { |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
990 return make_temp_name (prefix, 0); |
242cad59b698
(make_temp_name): New function, extracted from
Gerd Moellmann <gerd@gnu.org>
parents:
28846
diff
changeset
|
991 } |
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 |
230 | 994 |
995 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
|
996 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
|
997 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
|
998 (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
|
999 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
|
1000 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
|
1001 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
|
1002 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
|
1003 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
|
1004 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
|
1005 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
|
1006 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
|
1007 (name, default_directory) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1008 Lisp_Object name, default_directory; |
230 | 1009 { |
1010 unsigned char *nm; | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1011 |
230 | 1012 register unsigned char *newdir, *p, *o; |
1013 int tlen; | |
1014 unsigned char *target; | |
1015 struct passwd *pw; | |
1016 #ifdef VMS | |
1017 unsigned char * colon = 0; | |
1018 unsigned char * close = 0; | |
1019 unsigned char * slash = 0; | |
1020 unsigned char * brack = 0; | |
1021 int lbrack = 0, rbrack = 0; | |
1022 int dots = 0; | |
1023 #endif /* VMS */ | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1024 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1025 int drive = 0; |
15109
b801c02f3e92
(Fexpand_file_name) [DOS_NT]: Keep dir sep following ~
Richard M. Stallman <rms@gnu.org>
parents:
15097
diff
changeset
|
1026 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
|
1027 int is_escaped = 0; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1028 #endif /* DOS_NT */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1029 int length; |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1030 Lisp_Object handler; |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1031 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
1032 CHECK_STRING (name); |
230 | 1033 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1034 /* 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
|
1035 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
|
1036 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
|
1037 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1038 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
|
1039 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1040 /* 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
|
1041 if (NILP (default_directory)) |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1042 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
|
1043 if (! STRINGP (default_directory)) |
42191
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1044 { |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1045 #ifdef DOS_NT |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1046 /* "/" 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
|
1047 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
|
1048 |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1049 (let (default-directory) |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1050 (expand-file-name "a")) |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1051 |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1052 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
|
1053 current drive. */ |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1054 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
|
1055 |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1056 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
|
1057 #else |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1058 default_directory = build_string ("/"); |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1059 #endif |
12131c06473a
(Fexpand_file_name) [DOS_NT]: Use the root directory
Eli Zaretskii <eliz@gnu.org>
parents:
41993
diff
changeset
|
1060 } |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1061 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1062 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
|
1063 { |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1064 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
|
1065 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1066 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
|
1067 } |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
1068 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1069 o = SDATA (default_directory); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1070 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1071 /* 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
|
1072 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
|
1073 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
|
1074 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
|
1075 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
|
1076 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
|
1077 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
|
1078 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
|
1079 |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
1080 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
|
1081 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
|
1082 /* 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
|
1083 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
|
1084 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
|
1085 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1086 /* 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
|
1087 && ! (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
|
1088 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1089 /* 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
|
1090 && ! (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
|
1091 #endif |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1092 #else /* not DOS_NT */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1093 /* 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
|
1094 DOS or Windows). */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1095 && ! (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
|
1096 #endif /* not DOS_NT */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1097 ) |
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
|
1098 { |
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 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
|
1100 |
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 GCPRO1 (name); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
1102 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
|
1103 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
|
1104 } |
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 |
230 | 1106 #ifdef VMS |
1107 /* Filenames on VMS are always upper case. */ | |
1108 name = Fupcase (name); | |
1109 #endif | |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1110 #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
|
1111 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
|
1112 #endif |
230 | 1113 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1114 nm = SDATA (name); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1115 |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1116 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1117 /* 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
|
1118 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
|
1119 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
|
1120 |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1121 /* 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
|
1122 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
|
1123 { |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1124 is_escaped = 1; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1125 nm += 2; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1126 } |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1127 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1128 /* 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
|
1129 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
|
1130 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
|
1131 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
|
1132 { |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1133 drive = nm[0]; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1134 nm += 2; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1135 } |
19695
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1136 |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1137 #ifdef WINDOWSNT |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1138 /* 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
|
1139 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
|
1140 "//somedir". */ |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1141 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
|
1142 nm++; |
d28bbba0fcd0
(Fexpand_file_name) [WINDOWSNT]: When stripping
Geoff Voelker <voelker@cs.washington.edu>
parents:
19664
diff
changeset
|
1143 #endif /* WINDOWSNT */ |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1144 #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
|
1145 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1146 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1147 /* 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
|
1148 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
|
1149 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1150 drive = 0; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1151 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1152 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1153 |
36482
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1154 /* 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
|
1155 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
|
1156 allocating a new string if name is already fully expanded. */ |
230 | 1157 if ( |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1158 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
|
1159 #ifdef MSDOS |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1160 && drive && !is_escaped |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1161 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1162 #ifdef WINDOWSNT |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1163 && (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
|
1164 #endif |
230 | 1165 #ifdef VMS |
1166 || index (nm, ':') | |
1167 #endif /* VMS */ | |
1168 ) | |
1169 { | |
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
|
1170 /* 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
|
1171 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
|
1172 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
|
1173 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
|
1174 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
|
1175 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
|
1176 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
|
1177 |
230 | 1178 p = nm; |
1179 while (*p) | |
1180 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1181 /* 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
|
1182 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
|
1183 |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1184 /* "." and ".." are hairy. */ |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1185 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
|
1186 && p[1] == '.' |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1187 && (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
|
1188 || p[2] == 0 |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1189 || (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
|
1190 || p[3] == 0)))) |
230 | 1191 lose = 1; |
36482
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1192 /* 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
|
1193 slash. */ |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1194 else if (p > nm |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1195 && IS_DIRECTORY_SEP (p[0]) |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1196 && IS_DIRECTORY_SEP (p[1])) |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1197 lose = 1; |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1198 |
230 | 1199 #ifdef VMS |
1200 if (p[0] == '\\') | |
1201 lose = 1; | |
1202 if (p[0] == '/') { | |
1203 /* if dev:[dir]/, move nm to / */ | |
1204 if (!slash && p > nm && (brack || colon)) { | |
1205 nm = (brack ? brack + 1 : colon + 1); | |
1206 lbrack = rbrack = 0; | |
1207 brack = 0; | |
1208 colon = 0; | |
1209 } | |
1210 slash = p; | |
1211 } | |
1212 if (p[0] == '-') | |
1213 #ifndef VMS4_4 | |
1214 /* VMS pre V4.4,convert '-'s in filenames. */ | |
1215 if (lbrack == rbrack) | |
1216 { | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1217 if (dots < 2) /* this is to allow negative version numbers */ |
230 | 1218 p[0] = '_'; |
1219 } | |
1220 else | |
1221 #endif /* VMS4_4 */ | |
1222 if (lbrack > rbrack && | |
1223 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') && | |
1224 (p[1] == '.' || p[1] == ']' || p[1] == '>'))) | |
1225 lose = 1; | |
1226 #ifndef VMS4_4 | |
1227 else | |
1228 p[0] = '_'; | |
1229 #endif /* VMS4_4 */ | |
1230 /* count open brackets, reset close bracket pointer */ | |
1231 if (p[0] == '[' || p[0] == '<') | |
1232 lbrack++, brack = 0; | |
1233 /* count close brackets, set close bracket pointer */ | |
1234 if (p[0] == ']' || p[0] == '>') | |
1235 rbrack++, brack = p; | |
1236 /* detect ][ or >< */ | |
1237 if ((p[0] == ']' || p[0] == '>') && (p[1] == '[' || p[1] == '<')) | |
1238 lose = 1; | |
1239 if ((p[0] == ':' || p[0] == ']' || p[0] == '>') && p[1] == '~') | |
1240 nm = p + 1, lose = 1; | |
1241 if (p[0] == ':' && (colon || slash)) | |
1242 /* if dev1:[dir]dev2:, move nm to dev2: */ | |
1243 if (brack) | |
1244 { | |
1245 nm = brack + 1; | |
1246 brack = 0; | |
1247 } | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1248 /* if /name/dev:, move nm to dev: */ |
230 | 1249 else if (slash) |
1250 nm = slash + 1; | |
1251 /* if node::dev:, move colon following dev */ | |
1252 else if (colon && colon[-1] == ':') | |
1253 colon = p; | |
1254 /* if dev1:dev2:, move nm to dev2: */ | |
1255 else if (colon && colon[-1] != ':') | |
1256 { | |
1257 nm = colon + 1; | |
1258 colon = 0; | |
1259 } | |
1260 if (p[0] == ':' && !colon) | |
1261 { | |
1262 if (p[1] == ':') | |
1263 p++; | |
1264 colon = p; | |
1265 } | |
1266 if (lbrack == rbrack) | |
1267 if (p[0] == ';') | |
1268 dots = 2; | |
1269 else if (p[0] == '.') | |
1270 dots++; | |
1271 #endif /* VMS */ | |
1272 p++; | |
1273 } | |
1274 if (!lose) | |
1275 { | |
1276 #ifdef VMS | |
1277 if (index (nm, '/')) | |
1278 return build_string (sys_translate_unix (nm)); | |
1279 #endif /* VMS */ | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1280 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1281 /* 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
|
1282 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
|
1283 required. */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1284 CORRECT_DIR_SEPS (nm); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1285 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1286 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
|
1287 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1288 if (strcmp (nm, SDATA (name)) != 0) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1289 name = build_string (nm); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1290 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1291 else |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1292 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1293 /* drive must be set, so this is okay */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1294 if (strcmp (nm - 2, SDATA (name)) != 0) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1295 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1296 name = make_string (nm - 2, p - nm + 2); |
46424
9aa6b2db42da
* fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
Ken Raeburn <raeburn@raeburn.org>
parents:
46370
diff
changeset
|
1297 SSET (name, 0, DRIVE_LETTER (drive)); |
9aa6b2db42da
* fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
Ken Raeburn <raeburn@raeburn.org>
parents:
46370
diff
changeset
|
1298 SSET (name, 1, ':'); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1299 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1300 return name; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1301 #else /* not DOS_NT */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1302 if (nm == SDATA (name)) |
230 | 1303 return name; |
1304 return build_string (nm); | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1305 #endif /* not DOS_NT */ |
230 | 1306 } |
1307 } | |
1308 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1309 /* 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
|
1310 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
|
1311 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
|
1312 and /foo/../ sequences. |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1313 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1314 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
|
1315 - 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
|
1316 - 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
|
1317 start with / |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1318 - 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
|
1319 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1320 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
|
1321 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
|
1322 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
|
1323 append it to the current working directory. */ |
230 | 1324 |
1325 newdir = 0; | |
1326 | |
1327 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
|
1328 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1329 if (IS_DIRECTORY_SEP (nm[1]) |
230 | 1330 #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
|
1331 || nm[1] == ':' |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1332 #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
|
1333 || 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
|
1334 { |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1335 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
|
1336 newdir = (unsigned char *) ""; |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1337 nm++; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1338 #ifdef DOS_NT |
15109
b801c02f3e92
(Fexpand_file_name) [DOS_NT]: Keep dir sep following ~
Richard M. Stallman <rms@gnu.org>
parents:
15097
diff
changeset
|
1339 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
|
1340 #endif |
230 | 1341 #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
|
1342 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
|
1343 #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
|
1344 } |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1345 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
|
1346 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1347 for (p = nm; *p && (!IS_DIRECTORY_SEP (*p) |
230 | 1348 #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
|
1349 && *p != ':' |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1350 #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
|
1351 ); p++); |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1352 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
|
1353 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
|
1354 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
|
1355 |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1356 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
|
1357 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
|
1358 { |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1359 newdir = (unsigned char *) pw -> pw_dir; |
230 | 1360 #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
|
1361 nm = p + 1; /* skip the terminator */ |
230 | 1362 #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
|
1363 nm = p; |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1364 #ifdef DOS_NT |
15109
b801c02f3e92
(Fexpand_file_name) [DOS_NT]: Keep dir sep following ~
Richard M. Stallman <rms@gnu.org>
parents:
15097
diff
changeset
|
1365 collapse_newdir = 0; |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1366 #endif |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1367 #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
|
1368 } |
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 /* 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
|
1371 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
|
1372 } |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1373 } |
230 | 1374 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1375 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1376 /* 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
|
1377 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
|
1378 if (!newdir && drive) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1379 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1380 /* 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
|
1381 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
|
1382 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1383 newdir = alloca (MAXPATHLEN + 1); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1384 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
|
1385 newdir = NULL; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1386 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1387 if (!newdir) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1388 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1389 /* 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
|
1390 newdir = alloca (4); |
15324
6fd4e01fd332
(DRIVE_LETTER): [DOS_NT] New macro.
Richard M. Stallman <rms@gnu.org>
parents:
15313
diff
changeset
|
1391 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
|
1392 newdir[1] = ':'; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1393 newdir[2] = '/'; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1394 newdir[3] = 0; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1395 } |
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 #endif /* DOS_NT */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1398 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1399 /* 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
|
1400 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
|
1401 |
15124
b2c682fcd3ef
(Fexpand_file_name) [DOS_NT]: Correct the `if' clause
Richard M. Stallman <rms@gnu.org>
parents:
15109
diff
changeset
|
1402 if (1 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1403 #ifndef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1404 /* /... 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
|
1405 && !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
|
1406 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1407 #ifdef WINDOWSNT |
15124
b2c682fcd3ef
(Fexpand_file_name) [DOS_NT]: Correct the `if' clause
Richard M. Stallman <rms@gnu.org>
parents:
15109
diff
changeset
|
1408 && !(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
|
1409 #endif |
230 | 1410 #ifdef VMS |
1411 && !index (nm, ':') | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1412 #endif |
230 | 1413 && !newdir) |
1414 { | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1415 newdir = SDATA (default_directory); |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1416 #ifdef DOS_NT |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1417 /* 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
|
1418 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
|
1419 { |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1420 is_escaped = 1; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1421 newdir += 2; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1422 } |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1423 #endif |
230 | 1424 } |
1425 | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1426 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1427 if (newdir) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1428 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1429 /* 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
|
1430 if ( |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1431 /* 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
|
1432 ! (IS_DRIVE (newdir[0]) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1433 && 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
|
1434 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1435 /* 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
|
1436 && ! (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
|
1437 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1438 ) |
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 /* 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
|
1441 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
|
1442 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
|
1443 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
|
1444 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
|
1445 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1446 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
|
1447 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1448 drive = newdir[0]; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1449 newdir += 2; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1450 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1451 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
|
1452 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1453 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
|
1454 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
|
1455 strcat (tmp, nm); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1456 nm = tmp; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1457 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1458 newdir = alloca (MAXPATHLEN + 1); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1459 if (drive) |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1460 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1461 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
|
1462 newdir = "/"; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1463 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1464 else |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1465 getwd (newdir); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1466 } |
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 /* 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
|
1469 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
|
1470 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1471 drive = newdir[0]; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1472 newdir += 2; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1473 } |
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 /* 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
|
1476 (//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
|
1477 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
|
1478 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1479 #ifdef WINDOWSNT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1480 if (IS_DIRECTORY_SEP (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
|
1481 { |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1482 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
|
1483 p = newdir + 2; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1484 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
|
1485 p++; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1486 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
|
1487 *p = 0; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1488 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1489 else |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1490 #endif |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1491 newdir = ""; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1492 } |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1493 } |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1494 #endif /* DOS_NT */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1495 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1496 if (newdir) |
372 | 1497 { |
15313
0fad77a676b7
(Fexpand_file_name) [WINDOWSNT]: Don't strip trailing /
Richard M. Stallman <rms@gnu.org>
parents:
15124
diff
changeset
|
1498 /* 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
|
1499 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
|
1500 length = strlen (newdir); |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1501 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
|
1502 #ifdef WINDOWSNT |
0fad77a676b7
(Fexpand_file_name) [WINDOWSNT]: Don't strip trailing /
Richard M. Stallman <rms@gnu.org>
parents:
15124
diff
changeset
|
1503 && !(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
|
1504 #endif |
0fad77a676b7
(Fexpand_file_name) [WINDOWSNT]: Don't strip trailing /
Richard M. Stallman <rms@gnu.org>
parents:
15124
diff
changeset
|
1505 ) |
372 | 1506 { |
1507 unsigned char *temp = (unsigned char *) alloca (length); | |
1508 bcopy (newdir, temp, length - 1); | |
1509 temp[length - 1] = 0; | |
1510 newdir = temp; | |
1511 } | |
1512 tlen = length + 1; | |
1513 } | |
1514 else | |
1515 tlen = 0; | |
230 | 1516 |
372 | 1517 /* Now concatenate the directory and name to new space in the stack frame */ |
1518 tlen += strlen (nm) + 1; | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1519 #ifdef DOS_NT |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1520 /* 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
|
1521 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
|
1522 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
|
1523 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
|
1524 target += 4; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1525 #else /* not DOS_NT */ |
230 | 1526 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
|
1527 #endif /* not DOS_NT */ |
230 | 1528 *target = 0; |
1529 | |
1530 if (newdir) | |
1531 { | |
1532 #ifndef VMS | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1533 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
|
1534 { |
22113
be43fb8acb62
(Fexpand_file_name): Change conditional
Richard M. Stallman <rms@gnu.org>
parents:
22106
diff
changeset
|
1535 #ifdef DOS_NT |
22106
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1536 /* 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
|
1537 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
|
1538 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
|
1539 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
|
1540 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
|
1541 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
|
1542 && newdir[1] == '\0')) |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1543 #endif |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1544 strcpy (target, newdir); |
f4a52ea42920
(Fexpand_file_name) [WINDOWSNT]: Be careful not to
Richard M. Stallman <rms@gnu.org>
parents:
22056
diff
changeset
|
1545 } |
230 | 1546 else |
1547 #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
|
1548 file_name_as_directory (target, newdir); |
230 | 1549 } |
1550 | |
1551 strcat (target, nm); | |
1552 #ifdef VMS | |
1553 if (index (target, '/')) | |
1554 strcpy (target, sys_translate_unix (target)); | |
1555 #endif /* VMS */ | |
1556 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1557 /* 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
|
1558 |
36482
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1559 /* 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
|
1560 appear. */ |
230 | 1561 |
1562 p = target; | |
1563 o = target; | |
1564 | |
1565 while (*p) | |
1566 { | |
1567 #ifdef VMS | |
1568 if (*p != ']' && *p != '>' && *p != '-') | |
1569 { | |
1570 if (*p == '\\') | |
1571 p++; | |
1572 *o++ = *p++; | |
1573 } | |
1574 else if ((p[0] == ']' || p[0] == '>') && p[0] == p[1] + 2) | |
1575 /* brackets are offset from each other by 2 */ | |
1576 { | |
1577 p += 2; | |
1578 if (*p != '.' && *p != '-' && o[-1] != '.') | |
1579 /* convert [foo][bar] to [bar] */ | |
1580 while (o[-1] != '[' && o[-1] != '<') | |
1581 o--; | |
1582 else if (*p == '-' && *o != '.') | |
1583 *--p = '.'; | |
1584 } | |
1585 else if (p[0] == '-' && o[-1] == '.' && | |
1586 (p[1] == '.' || p[1] == ']' || p[1] == '>')) | |
1587 /* flush .foo.- ; leave - if stopped by '[' or '<' */ | |
1588 { | |
1589 do | |
1590 o--; | |
1591 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
|
1592 if (p[1] == '.') /* foo.-.bar ==> bar. */ |
230 | 1593 p += 2; |
1594 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */ | |
1595 p++, o--; | |
1596 /* else [foo.-] ==> [-] */ | |
1597 } | |
1598 else | |
1599 { | |
1600 #ifndef VMS4_4 | |
1601 if (*p == '-' && | |
1602 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' && | |
1603 p[1] != ']' && p[1] != '>' && p[1] != '.') | |
1604 *p = '_'; | |
1605 #endif /* VMS4_4 */ | |
1606 *o++ = *p++; | |
1607 } | |
1608 #else /* not VMS */ | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1609 if (!IS_DIRECTORY_SEP (*p)) |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1610 { |
230 | 1611 *o++ = *p++; |
1612 } | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1613 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
|
1614 && p[1] == '.' |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1615 && (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
|
1616 || 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
|
1617 { |
6168f42d716c
* fileio.c (Fexpand_file_name): Don't fiddle with "/." if it's the
Jim Blandy <jimb@redhat.com>
parents:
1536
diff
changeset
|
1618 /* 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
|
1619 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
|
1620 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
|
1621 *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
|
1622 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
|
1623 } |
11426
6502c07121b7
(Fexpand_file_name): Use IS_DIRECTORY_SEP instead of
Karl Heuer <kwzh@gnu.org>
parents:
11392
diff
changeset
|
1624 else if (IS_DIRECTORY_SEP (p[0]) && p[1] == '.' && p[2] == '.' |
230 | 1625 /* `/../' is the "superroot" on certain file systems. */ |
1626 && o != target | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1627 && (IS_DIRECTORY_SEP (p[3]) || p[3] == 0)) |
230 | 1628 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1629 while (o != target && (--o) && !IS_DIRECTORY_SEP (*o)) |
230 | 1630 ; |
17503
ba848dceb1c9
(Fexpand_file_name): Fix expansion of "/foo/../".
Richard M. Stallman <rms@gnu.org>
parents:
17396
diff
changeset
|
1631 /* 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
|
1632 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
|
1633 ++o; |
230 | 1634 p += 3; |
1635 } | |
36482
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1636 else if (p > target |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1637 && 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
|
1638 { |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1639 /* Collapse multiple `/' in a row. */ |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1640 *o++ = *p++; |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1641 while (IS_DIRECTORY_SEP (*p)) |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1642 ++p; |
3df7026fc965
(Fexpand_file_name): Collapse sequences of slashes
Gerd Moellmann <gerd@gnu.org>
parents:
35175
diff
changeset
|
1643 } |
230 | 1644 else |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1645 { |
230 | 1646 *o++ = *p++; |
1647 } | |
1648 #endif /* not VMS */ | |
1649 } | |
1650 | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1651 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1652 /* 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
|
1653 #ifdef WINDOWSNT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1654 /* 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
|
1655 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
|
1656 #endif /* WINDOWSNT */ |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1657 { |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1658 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
|
1659 target -= 2; |
15324
6fd4e01fd332
(DRIVE_LETTER): [DOS_NT] New macro.
Richard M. Stallman <rms@gnu.org>
parents:
15313
diff
changeset
|
1660 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
|
1661 target[1] = ':'; |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
1662 } |
21987
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1663 /* 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
|
1664 if (is_escaped) |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1665 { |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1666 target -= 2; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1667 target[0] = '/'; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1668 target[1] = ':'; |
cd7ff97f3b05
(Fexpand_file_name) [DOS_NT]: Note when special escape
Richard M. Stallman <rms@gnu.org>
parents:
21949
diff
changeset
|
1669 } |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
1670 CORRECT_DIR_SEPS (target); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1671 #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
|
1672 |
230 | 1673 return make_string (target, o - target); |
1674 } | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
1675 |
40306
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1676 #if 0 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1677 /* 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
|
1678 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
|
1679 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
|
1680 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
|
1681 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
|
1682 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
|
1683 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1684 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
|
1685 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
|
1686 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1687 /* 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
|
1688 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
|
1689 "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
|
1690 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
|
1691 (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
|
1692 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
|
1693 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
|
1694 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
|
1695 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
|
1696 (name, defalt) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1697 Lisp_Object name, defalt; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1698 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1699 unsigned char *nm; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1700 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1701 register unsigned char *newdir, *p, *o; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1702 int tlen; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1703 unsigned char *target; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1704 struct passwd *pw; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1705 int lose; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1706 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1707 unsigned char * colon = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1708 unsigned char * close = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1709 unsigned char * slash = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1710 unsigned char * brack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1711 int lbrack = 0, rbrack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1712 int dots = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1713 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1714 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
1715 CHECK_STRING (name); |
40306
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1716 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1717 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1718 /* 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
|
1719 name = Fupcase (name); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1720 #endif |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1721 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1722 nm = SDATA (name); |
40306
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1723 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1724 /* 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
|
1725 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
|
1726 if ( |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1727 nm[0] == '/' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1728 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1729 || index (nm, ':') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1730 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1731 ) |
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 p = nm; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1734 lose = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1735 while (*p) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1736 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1737 if (p[0] == '/' && p[1] == '/' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1738 #ifdef APOLLO |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1739 /* // 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
|
1740 && nm != p |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1741 #endif /* APOLLO */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1742 ) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1743 nm = p + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1744 if (p[0] == '/' && p[1] == '~') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1745 nm = p + 1, lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1746 if (p[0] == '/' && p[1] == '.' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1747 && (p[2] == '/' || p[2] == 0 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1748 || (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
|
1749 lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1750 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1751 if (p[0] == '\\') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1752 lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1753 if (p[0] == '/') { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1754 /* if dev:[dir]/, move nm to / */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1755 if (!slash && p > nm && (brack || colon)) { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1756 nm = (brack ? brack + 1 : colon + 1); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1757 lbrack = rbrack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1758 brack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1759 colon = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1760 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1761 slash = p; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1762 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1763 if (p[0] == '-') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1764 #ifndef VMS4_4 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1765 /* 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
|
1766 if (lbrack == rbrack) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1767 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1768 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
|
1769 p[0] = '_'; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1770 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1771 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1772 #endif /* VMS4_4 */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1773 if (lbrack > rbrack && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1774 ((p[-1] == '.' || p[-1] == '[' || p[-1] == '<') && |
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 lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1777 #ifndef VMS4_4 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1778 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1779 p[0] = '_'; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1780 #endif /* VMS4_4 */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1781 /* 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
|
1782 if (p[0] == '[' || p[0] == '<') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1783 lbrack++, brack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1784 /* 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
|
1785 if (p[0] == ']' || p[0] == '>') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1786 rbrack++, brack = p; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1787 /* detect ][ or >< */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1788 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
|
1789 lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1790 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
|
1791 nm = p + 1, lose = 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1792 if (p[0] == ':' && (colon || slash)) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1793 /* 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
|
1794 if (brack) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1795 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1796 nm = brack + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1797 brack = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1798 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1799 /* 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
|
1800 else if (slash) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1801 nm = slash + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1802 /* 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
|
1803 else if (colon && colon[-1] == ':') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1804 colon = p; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1805 /* 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
|
1806 else if (colon && colon[-1] != ':') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1807 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1808 nm = colon + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1809 colon = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1810 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1811 if (p[0] == ':' && !colon) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1812 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1813 if (p[1] == ':') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1814 p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1815 colon = p; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1816 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1817 if (lbrack == rbrack) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1818 if (p[0] == ';') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1819 dots = 2; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1820 else if (p[0] == '.') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1821 dots++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1822 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1823 p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1824 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1825 if (!lose) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1826 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1827 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1828 if (index (nm, '/')) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1829 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
|
1830 #endif /* VMS */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1831 if (nm == SDATA (name)) |
40306
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1832 return name; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1833 return build_string (nm); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1834 } |
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 /* 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
|
1838 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1839 newdir = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1840 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1841 if (nm[0] == '~') /* prefix ~ */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1842 if (nm[1] == '/' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1843 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1844 || nm[1] == ':' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1845 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1846 || nm[1] == 0)/* ~/filename */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1847 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1848 if (!(newdir = (unsigned char *) egetenv ("HOME"))) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1849 newdir = (unsigned char *) ""; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1850 nm++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1851 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1852 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
|
1853 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1854 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1855 else /* ~user/filename */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1856 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1857 /* Get past ~ to user */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1858 unsigned char *user = nm + 1; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1859 /* Find end of name. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1860 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
|
1861 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
|
1862 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1863 unsigned char *ptr1 = index (user, ':'); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1864 if (ptr1 != 0 && ptr1 - user < len) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1865 len = ptr1 - user; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1866 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1867 /* 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
|
1868 o = (unsigned char *) alloca (len + 1); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1869 bcopy ((char *) user, o, len); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1870 o[len] = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1871 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1872 /* Look up the user name. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1873 pw = (struct passwd *) getpwnam (o + 1); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1874 if (!pw) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1875 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
|
1876 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1877 newdir = (unsigned char *) pw->pw_dir; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1878 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1879 /* Discard the user name from NM. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1880 nm += len; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1881 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1882 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1883 if (nm[0] != '/' |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1884 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1885 && !index (nm, ':') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1886 #endif /* not VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1887 && !newdir) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1888 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1889 if (NILP (defalt)) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1890 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
|
1891 CHECK_STRING (defalt); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
1892 newdir = SDATA (defalt); |
40306
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1893 } |
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 /* 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
|
1896 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1897 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
|
1898 target = (unsigned char *) alloca (tlen); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1899 *target = 0; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1900 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1901 if (newdir) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1902 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1903 #ifndef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1904 if (nm[0] == 0 || nm[0] == '/') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1905 strcpy (target, newdir); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1906 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1907 #endif |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1908 file_name_as_directory (target, newdir); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1909 } |
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 strcat (target, nm); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1912 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1913 if (index (target, '/')) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1914 strcpy (target, sys_translate_unix (target)); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1915 #endif /* VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1916 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1917 /* 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
|
1918 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1919 p = target; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1920 o = target; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1921 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1922 while (*p) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1923 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1924 #ifdef VMS |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1925 if (*p != ']' && *p != '>' && *p != '-') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1926 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1927 if (*p == '\\') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1928 p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1929 *o++ = *p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1930 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1931 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
|
1932 /* 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
|
1933 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1934 p += 2; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1935 if (*p != '.' && *p != '-' && o[-1] != '.') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1936 /* convert [foo][bar] to [bar] */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1937 while (o[-1] != '[' && o[-1] != '<') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1938 o--; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1939 else if (*p == '-' && *o != '.') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1940 *--p = '.'; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1941 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1942 else if (p[0] == '-' && o[-1] == '.' && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1943 (p[1] == '.' || p[1] == ']' || p[1] == '>')) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1944 /* 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
|
1945 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1946 do |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1947 o--; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1948 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
|
1949 if (p[1] == '.') /* foo.-.bar ==> bar. */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1950 p += 2; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1951 else if (o[-1] == '.') /* '.foo.-]' ==> ']' */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1952 p++, o--; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1953 /* else [foo.-] ==> [-] */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1954 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1955 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1956 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1957 #ifndef VMS4_4 |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1958 if (*p == '-' && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1959 o[-1] != '[' && o[-1] != '<' && o[-1] != '.' && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1960 p[1] != ']' && p[1] != '>' && p[1] != '.') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1961 *p = '_'; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1962 #endif /* VMS4_4 */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1963 *o++ = *p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1964 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1965 #else /* not VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1966 if (*p != '/') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1967 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1968 *o++ = *p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1969 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1970 else if (!strncmp (p, "//", 2) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1971 #ifdef APOLLO |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1972 /* // 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
|
1973 && o != target |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1974 #endif /* APOLLO */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1975 ) |
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 o = target; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1978 p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1979 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1980 else if (p[0] == '/' && p[1] == '.' && |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1981 (p[2] == '/' || p[2] == 0)) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1982 p += 2; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1983 else if (!strncmp (p, "/..", 3) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1984 /* `/../' 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
|
1985 && o != target |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1986 && (p[3] == '/' || p[3] == 0)) |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1987 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1988 while (o != target && *--o != '/') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1989 ; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1990 #ifdef APOLLO |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1991 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
|
1992 ++o; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1993 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1994 #endif /* APOLLO */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1995 if (o == target && *o == '/') |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1996 ++o; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1997 p += 3; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1998 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
1999 else |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2000 { |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2001 *o++ = *p++; |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2002 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2003 #endif /* not VMS */ |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2004 } |
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 return make_string (target, o - target); |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2007 } |
f4cf12231193
Revert last change (which removed old commented-out
Eli Zaretskii <eliz@gnu.org>
parents:
40168
diff
changeset
|
2008 #endif |
230 | 2009 |
2010 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
|
2011 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
|
2012 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
|
2013 `$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
|
2014 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
|
2015 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
|
2016 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
|
2017 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
|
2018 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
2019 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
|
2020 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
|
2021 (filename) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2022 Lisp_Object filename; |
230 | 2023 { |
2024 unsigned char *nm; | |
2025 | |
2026 register unsigned char *s, *p, *o, *x, *endp; | |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31775
diff
changeset
|
2027 unsigned char *target = NULL; |
230 | 2028 int total = 0; |
2029 int substituted = 0; | |
2030 unsigned char *xnm; | |
43197
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2031 struct passwd *pw; |
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
2032 Lisp_Object handler; |
230 | 2033 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2034 CHECK_STRING (filename); |
230 | 2035 |
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
2036 /* 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
|
2037 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
|
2038 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
|
2039 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2040 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
|
2041 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2042 nm = SDATA (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2043 #ifdef DOS_NT |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2044 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
|
2045 CORRECT_DIR_SEPS (nm); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2046 substituted = (strcmp (nm, SDATA (filename)) != 0); |
8185
b5cc015a3698
(Ffile_name_directory, Ffile_name_nondirectory,
Richard M. Stallman <rms@gnu.org>
parents:
8079
diff
changeset
|
2047 #endif |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2048 endp = nm + SBYTES (filename); |
230 | 2049 |
19754
380cbf03df01
(Fexpand_file_name): If default dir isn't string, use `/'.
Richard M. Stallman <rms@gnu.org>
parents:
19695
diff
changeset
|
2050 /* If /~ or // appears, discard everything through first slash. */ |
230 | 2051 |
2052 for (p = nm; p != endp; p++) | |
2053 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2054 if ((p[0] == '~' |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2055 #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
|
2056 /* // 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
|
2057 WindowsNT systems. */ |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2058 || (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
|
2059 #else /* not (APOLLO || WINDOWSNT) */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2060 || 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
|
2061 #endif /* not (APOLLO || WINDOWSNT) */ |
230 | 2062 ) |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2063 && p != nm |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2064 && (0 |
230 | 2065 #ifdef VMS |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2066 || p[-1] == ':' || p[-1] == ']' || p[-1] == '>' |
230 | 2067 #endif /* VMS */ |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2068 || IS_DIRECTORY_SEP (p[-1]))) |
230 | 2069 { |
43197
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2070 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
|
2071 #ifdef VMS |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2072 && *s != ':' |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2073 #endif /* VMS */ |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2074 ); s++); |
43564
1874239cb5be
(Fsubstitute_in_file_name): Fix the change from 2002-02-08.
Eli Zaretskii <eliz@gnu.org>
parents:
43197
diff
changeset
|
2075 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
|
2076 { |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2077 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
|
2078 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
|
2079 o [s - p] = 0; |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2080 |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2081 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
|
2082 } |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2083 /* 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
|
2084 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
|
2085 ~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
|
2086 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
|
2087 { |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2088 nm = p; |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2089 substituted = 1; |
4934ed73c7a4
(Fsubstitute_in_file_name): If the file name includes ~user,
Eli Zaretskii <eliz@gnu.org>
parents:
43081
diff
changeset
|
2090 } |
230 | 2091 } |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2092 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2093 /* 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
|
2094 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
|
2095 && 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
|
2096 { |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2097 nm = p; |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2098 substituted = 1; |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2099 } |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2100 #endif /* DOS_NT */ |
230 | 2101 } |
2102 | |
2103 #ifdef VMS | |
2104 return build_string (nm); | |
2105 #else | |
2106 | |
2107 /* See if any variables are substituted into the string | |
2108 and find the total length of their values in `total' */ | |
2109 | |
2110 for (p = nm; p != endp;) | |
2111 if (*p != '$') | |
2112 p++; | |
2113 else | |
2114 { | |
2115 p++; | |
2116 if (p == endp) | |
2117 goto badsubst; | |
2118 else if (*p == '$') | |
2119 { | |
2120 /* "$$" means a single "$" */ | |
2121 p++; | |
2122 total -= 1; | |
2123 substituted = 1; | |
2124 continue; | |
2125 } | |
2126 else if (*p == '{') | |
2127 { | |
2128 o = ++p; | |
2129 while (p != endp && *p != '}') p++; | |
2130 if (*p != '}') goto missingclose; | |
2131 s = p; | |
2132 } | |
2133 else | |
2134 { | |
2135 o = p; | |
2136 while (p != endp && (isalnum (*p) || *p == '_')) p++; | |
2137 s = p; | |
2138 } | |
2139 | |
2140 /* Copy out the variable name */ | |
2141 target = (unsigned char *) alloca (s - o + 1); | |
2142 strncpy (target, o, s - o); | |
2143 target[s - o] = 0; | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2144 #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
|
2145 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
|
2146 #endif /* DOS_NT */ |
230 | 2147 |
2148 /* Get variable value */ | |
2149 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
|
2150 if (o) |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2151 { |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2152 total += strlen (o); |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2153 substituted = 1; |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2154 } |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2155 else if (*p == '}') |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2156 goto badvar; |
230 | 2157 } |
2158 | |
2159 if (!substituted) | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2160 return filename; |
230 | 2161 |
2162 /* If substitution required, recopy the string and do it */ | |
2163 /* Make space in stack frame for the new copy */ | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2164 xnm = (unsigned char *) alloca (SBYTES (filename) + total + 1); |
230 | 2165 x = xnm; |
2166 | |
2167 /* Copy the rest of the name through, replacing $ constructs with values */ | |
2168 for (p = nm; *p;) | |
2169 if (*p != '$') | |
2170 *x++ = *p++; | |
2171 else | |
2172 { | |
2173 p++; | |
2174 if (p == endp) | |
2175 goto badsubst; | |
2176 else if (*p == '$') | |
2177 { | |
2178 *x++ = *p++; | |
2179 continue; | |
2180 } | |
2181 else if (*p == '{') | |
2182 { | |
2183 o = ++p; | |
2184 while (p != endp && *p != '}') p++; | |
2185 if (*p != '}') goto missingclose; | |
2186 s = p++; | |
2187 } | |
2188 else | |
2189 { | |
2190 o = p; | |
2191 while (p != endp && (isalnum (*p) || *p == '_')) p++; | |
2192 s = p; | |
2193 } | |
2194 | |
2195 /* Copy out the variable name */ | |
2196 target = (unsigned char *) alloca (s - o + 1); | |
2197 strncpy (target, o, s - o); | |
2198 target[s - o] = 0; | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2199 #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
|
2200 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
|
2201 #endif /* DOS_NT */ |
230 | 2202 |
2203 /* Get variable value */ | |
2204 o = (unsigned char *) egetenv (target); | |
2205 if (!o) | |
41595
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2206 { |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2207 *x++ = '$'; |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2208 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
|
2209 } |
3a10e73aa1c1
(Ffind_file_name_handler): Give precedence to handlers
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41288
diff
changeset
|
2210 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
|
2211 { |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2212 /* 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
|
2213 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
|
2214 while (*o) |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2215 { |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
2216 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
|
2217 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
|
2218 } |
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 else |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2221 { |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2222 strcpy (x, o); |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2223 x += strlen (o); |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2224 } |
230 | 2225 } |
2226 | |
2227 *x = 0; | |
2228 | |
19754
380cbf03df01
(Fexpand_file_name): If default dir isn't string, use `/'.
Richard M. Stallman <rms@gnu.org>
parents:
19695
diff
changeset
|
2229 /* If /~ or // appears, discard everything through first slash. */ |
230 | 2230 |
2231 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
|
2232 if ((p[0] == '~' |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2233 #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
|
2234 || (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
|
2235 #else /* not (APOLLO || WINDOWSNT) */ |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2236 || 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
|
2237 #endif /* not (APOLLO || WINDOWSNT) */ |
230 | 2238 ) |
17580
331ce9fbf08b
(Fsubstitute_in_file_name): Use xnm uniformly, never nm,
Richard M. Stallman <rms@gnu.org>
parents:
17558
diff
changeset
|
2239 && p != xnm && IS_DIRECTORY_SEP (p[-1])) |
230 | 2240 xnm = p; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2241 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2242 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
|
2243 && 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
|
2244 xnm = p; |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2245 #endif |
230 | 2246 |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2247 if (STRING_MULTIBYTE (filename)) |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
2248 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
|
2249 return make_unibyte_string (xnm, x - xnm); |
230 | 2250 |
2251 badsubst: | |
2252 error ("Bad format environment-variable substitution"); | |
2253 missingclose: | |
2254 error ("Missing \"}\" in environment-variable substitution"); | |
2255 badvar: | |
2256 error ("Substituting nonexistent environment variable \"%s\"", target); | |
2257 | |
2258 /* NOTREACHED */ | |
2259 #endif /* not VMS */ | |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31775
diff
changeset
|
2260 return Qnil; |
230 | 2261 } |
2262 | |
853 | 2263 /* 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
|
2264 (directory-file-name (expand-file-name FOO)). */ |
853 | 2265 |
230 | 2266 Lisp_Object |
2267 expand_and_dir_to_file (filename, defdir) | |
2268 Lisp_Object filename, defdir; | |
2269 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2270 register Lisp_Object absname; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2271 |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2272 absname = Fexpand_file_name (filename, defdir); |
230 | 2273 #ifdef VMS |
2274 { | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2275 register int c = SREF (absname, SBYTES (absname) - 1); |
230 | 2276 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
|
2277 absname = Fdirectory_file_name (absname); |
230 | 2278 } |
2279 #else | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2280 /* Remove final slash, if any (unless this is the root dir). |
230 | 2281 stat behaves differently depending! */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2282 if (SCHARS (absname) > 1 |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2283 && IS_DIRECTORY_SEP (SREF (absname, SBYTES (absname) - 1)) |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2284 && !IS_DEVICE_SEP (SREF (absname, SBYTES (absname)-2))) |
4483
6894dd27c9ec
(expand_and_dir_to_file): Use Fdirectory_file_name.
Richard M. Stallman <rms@gnu.org>
parents:
4451
diff
changeset
|
2285 /* 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
|
2286 absname = Fdirectory_file_name (absname); |
230 | 2287 #endif |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2288 return absname; |
230 | 2289 } |
2290 | |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2291 /* 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
|
2292 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
|
2293 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
|
2294 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
|
2295 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
|
2296 |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2297 *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
|
2298 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
|
2299 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
|
2300 |
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2301 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
|
2302 |
8846
6bf0ce964319
(barf_or_query_if_file_exists): Fix declaration.
Karl Heuer <kwzh@gnu.org>
parents:
8808
diff
changeset
|
2303 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
|
2304 barf_or_query_if_file_exists (absname, querystring, interactive, statptr, quick) |
230 | 2305 Lisp_Object absname; |
2306 unsigned char *querystring; | |
2307 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
|
2308 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
|
2309 int quick; |
230 | 2310 { |
21949
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
2311 register Lisp_Object tem, encoded_filename; |
8597 | 2312 struct stat statbuf; |
230 | 2313 struct gcpro gcpro1; |
2314 | |
21949
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
2315 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
|
2316 |
8597 | 2317 /* stat is a good way to tell whether the file exists, |
2318 regardless of what access permissions it has. */ | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2319 if (stat (SDATA (encoded_filename), &statbuf) >= 0) |
230 | 2320 { |
2321 if (! interactive) | |
2322 Fsignal (Qfile_already_exists, | |
2323 Fcons (build_string ("File already exists"), | |
2324 Fcons (absname, Qnil))); | |
2325 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
|
2326 tem = format1 ("File %s already exists; %s anyway? ", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2327 SDATA (absname), querystring); |
21304
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2328 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
|
2329 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
|
2330 else |
1c2b68b607c8
(barf_or_query_if_file_exists): New arg QUICK. All calls changed.
Richard M. Stallman <rms@gnu.org>
parents:
21244
diff
changeset
|
2331 tem = do_yes_or_no_p (tem); |
230 | 2332 UNGCPRO; |
485 | 2333 if (NILP (tem)) |
230 | 2334 Fsignal (Qfile_already_exists, |
2335 Fcons (build_string ("File already exists"), | |
2336 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
|
2337 if (statptr) |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2338 *statptr = statbuf; |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2339 } |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2340 else |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2341 { |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2342 if (statptr) |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2343 statptr->st_mode = 0; |
230 | 2344 } |
2345 return; | |
2346 } | |
2347 | |
2348 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
|
2349 "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
|
2350 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
|
2351 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
|
2352 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
|
2353 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
|
2354 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
|
2355 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
|
2356 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
|
2357 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
|
2358 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
|
2359 (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
|
2360 Lisp_Object file, newname, ok_if_already_exists, keep_time; |
230 | 2361 { |
2362 int ifd, ofd, n; | |
2363 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
|
2364 struct stat st, out_st; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2365 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2366 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46285
diff
changeset
|
2367 int count = SPECPDL_INDEX (); |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2368 int input_file_statable_p; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2369 Lisp_Object encoded_file, encoded_newname; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2370 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2371 encoded_file = encoded_newname = Qnil; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2372 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
|
2373 CHECK_STRING (file); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2374 CHECK_STRING (newname); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2375 |
39603
5d5957da979a
(Fcopy_file): If NEWNAME is a directory copy FILE there.
Gerd Moellmann <gerd@gnu.org>
parents:
39457
diff
changeset
|
2376 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
|
2377 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
|
2378 else |
5d5957da979a
(Fcopy_file): If NEWNAME is a directory copy FILE there.
Gerd Moellmann <gerd@gnu.org>
parents:
39457
diff
changeset
|
2379 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
|
2380 |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2381 file = Fexpand_file_name (file, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2382 |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
2383 /* 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
|
2384 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
|
2385 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
|
2386 /* 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
|
2387 if (NILP (handler)) |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2388 handler = Ffind_file_name_handler (newname, Qcopy_file); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2389 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2390 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
|
2391 ok_if_already_exists, keep_time)); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2392 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2393 encoded_file = ENCODE_FILE (file); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2394 encoded_newname = ENCODE_FILE (newname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2395 |
485 | 2396 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
|
2397 || INTEGERP (ok_if_already_exists)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2398 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
|
2399 INTEGERP (ok_if_already_exists), &out_st, 0); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2400 else if (stat (SDATA (encoded_newname), &out_st) < 0) |
13098
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2401 out_st.st_mode = 0; |
230 | 2402 |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2403 #ifdef WINDOWSNT |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2404 if (!CopyFile (SDATA (encoded_file), |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2405 SDATA (encoded_newname), |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2406 FALSE)) |
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2407 report_file_error ("Copying file", Fcons (file, Fcons (newname, Qnil))); |
47896
2a844a827c29
(Fcopy_file): Fix backward test of KEEP_TIME.
Richard M. Stallman <rms@gnu.org>
parents:
47851
diff
changeset
|
2408 else if (!NILP (keep_time)) |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2409 { |
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2410 EMACS_TIME now; |
43792
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2411 DWORD attributes; |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2412 char * filename; |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2413 |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2414 EMACS_GET_TIME (now); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2415 filename = SDATA (encoded_newname); |
43792
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2416 |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2417 /* 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
|
2418 attributes = GetFileAttributes (filename); |
43799
b1abfedc2e1d
(Fcopy_file): Fix last change.
Jason Rumney <jasonr@gnu.org>
parents:
43792
diff
changeset
|
2419 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
|
2420 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
|
2421 { |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2422 /* Restore original attributes. */ |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2423 SetFileAttributes (filename, attributes); |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2424 Fsignal (Qfile_date_error, |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2425 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
|
2426 Fcons (newname, Qnil))); |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2427 } |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2428 /* Restore original attributes. */ |
8bb81d691271
(Fcopy_file) [WINDOWS_NT]: Ensure file is not
Jason Rumney <jasonr@gnu.org>
parents:
43680
diff
changeset
|
2429 SetFileAttributes (filename, attributes); |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2430 } |
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2431 #else /* not WINDOWSNT */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2432 ifd = emacs_open (SDATA (encoded_file), O_RDONLY, 0); |
230 | 2433 if (ifd < 0) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2434 report_file_error ("Opening input file", Fcons (file, Qnil)); |
230 | 2435 |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2436 record_unwind_protect (close_file_unwind, make_number (ifd)); |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2437 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2438 /* 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
|
2439 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
|
2440 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
|
2441 |
21739
e02be2b47d18
(Fcopy_file): Skip dev/inode check on Windows.
Geoff Voelker <voelker@cs.washington.edu>
parents:
21684
diff
changeset
|
2442 #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
|
2443 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
|
2444 && 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
|
2445 { |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2446 errno = 0; |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2447 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
|
2448 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
|
2449 } |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2450 #endif |
e1d400bc526e
(barf_or_query_if_file_exists): New arg STATPTR. Callers changed.
Richard M. Stallman <rms@gnu.org>
parents:
12985
diff
changeset
|
2451 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2452 #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
|
2453 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
|
2454 { |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2455 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
|
2456 { |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2457 #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
|
2458 /* 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
|
2459 errno = EISDIR; |
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2460 #endif /* EISDIR */ |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2461 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
|
2462 } |
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 #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
|
2465 |
230 | 2466 #ifdef VMS |
2467 /* Create the copy file with the same record format as the input file */ | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2468 ofd = sys_creat (SDATA (encoded_newname), 0666, ifd); |
230 | 2469 #else |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2470 #ifdef MSDOS |
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2471 /* System's default file type was set to binary by _fmode in emacs.c. */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2472 ofd = creat (SDATA (encoded_newname), 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
|
2473 #else /* not MSDOS */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2474 ofd = creat (SDATA (encoded_newname), 0666); |
5494
1ea2b4351945
[MSDOS]: #include "msdos.h" and <sys/param.h> needed for
Richard M. Stallman <rms@gnu.org>
parents:
5410
diff
changeset
|
2475 #endif /* not MSDOS */ |
230 | 2476 #endif /* VMS */ |
2477 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
|
2478 report_file_error ("Opening output file", Fcons (newname, Qnil)); |
230 | 2479 |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2480 record_unwind_protect (close_file_unwind, make_number (ofd)); |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2481 |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2482 immediate_quit = 1; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2483 QUIT; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
2484 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
|
2485 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
|
2486 report_file_error ("I/O error", Fcons (newname, Qnil)); |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2487 immediate_quit = 0; |
230 | 2488 |
7493
f4fb8b913c5d
(Fcopy_file): Close output before setting its times.
Richard M. Stallman <rms@gnu.org>
parents:
7445
diff
changeset
|
2489 /* 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
|
2490 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
|
2491 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
|
2492 |
4879
1774c84aca2e
(Fcopy_file): Don't allow the copying of anything other than regular
Brian Fox <bfox@gnu.org>
parents:
4853
diff
changeset
|
2493 if (input_file_statable_p) |
230 | 2494 { |
34633
3a16306fdadf
(Fcopy_file): Rename the last argument to keep_time, to
Eli Zaretskii <eliz@gnu.org>
parents:
34176
diff
changeset
|
2495 if (!NILP (keep_time)) |
230 | 2496 { |
564 | 2497 EMACS_TIME atime, mtime; |
2498 EMACS_SET_SECS_USECS (atime, st.st_atime, 0); | |
2499 EMACS_SET_SECS_USECS (mtime, st.st_mtime, 0); | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2500 if (set_file_times (SDATA (encoded_newname), |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2501 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
|
2502 Fsignal (Qfile_date_error, |
17287
b1cb0037ecec
(Fcopy_file): Fix error message.
Richard M. Stallman <rms@gnu.org>
parents:
17286
diff
changeset
|
2503 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
|
2504 Fcons (newname, Qnil))); |
230 | 2505 } |
13541
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2506 #ifndef MSDOS |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2507 chmod (SDATA (encoded_newname), st.st_mode & 07777); |
13541
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2508 #else /* MSDOS */ |
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2509 #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
|
2510 /* 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
|
2511 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
|
2512 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
|
2513 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
|
2514 if ((_djstat_flags & _STFAIL_WRITEBIT) == 0) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2515 chmod (SDATA (encoded_newname), st.st_mode & 07777); |
13541
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2516 #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
|
2517 #endif /* MSDOS */ |
230 | 2518 } |
2519 | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
2520 emacs_close (ifd); |
37292
80082652ed9f
(Fcopy_file) [WINDOWSNT]: Use CopyFile.
Gerd Moellmann <gerd@gnu.org>
parents:
37063
diff
changeset
|
2521 #endif /* WINDOWSNT */ |
7493
f4fb8b913c5d
(Fcopy_file): Close output before setting its times.
Richard M. Stallman <rms@gnu.org>
parents:
7445
diff
changeset
|
2522 |
592
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2523 /* Discard the unwind protects. */ |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2524 specpdl_ptr = specpdl + count; |
e65af468dcc2
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
564
diff
changeset
|
2525 |
230 | 2526 UNGCPRO; |
2527 return Qnil; | |
2528 } | |
10084
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2529 |
1533
b86ef0432100
(Fmake_directory_internal): Renamed from Fmake_directory.
Richard M. Stallman <rms@gnu.org>
parents:
1377
diff
changeset
|
2530 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
|
2531 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
|
2532 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
|
2533 (directory) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2534 Lisp_Object directory; |
230 | 2535 { |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
2536 const unsigned char *dir; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2537 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2538 Lisp_Object encoded_dir; |
230 | 2539 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2540 CHECK_STRING (directory); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2541 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
|
2542 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2543 handler = Ffind_file_name_handler (directory, Qmake_directory_internal); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2544 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2545 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
|
2546 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2547 encoded_dir = ENCODE_FILE (directory); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2548 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2549 dir = SDATA (encoded_dir); |
230 | 2550 |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2551 #ifdef WINDOWSNT |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2552 if (mkdir (dir) != 0) |
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2553 #else |
230 | 2554 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
|
2555 #endif |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2556 report_file_error ("Creating directory", Flist (1, &directory)); |
230 | 2557 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2558 return Qnil; |
230 | 2559 } |
2560 | |
686
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
2561 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
|
2562 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
|
2563 (directory) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2564 Lisp_Object directory; |
230 | 2565 { |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
2566 const unsigned char *dir; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2567 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2568 Lisp_Object encoded_dir; |
230 | 2569 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2570 CHECK_STRING (directory); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2571 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
|
2572 |
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2573 handler = Ffind_file_name_handler (directory, Qdelete_directory); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2574 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2575 return call2 (handler, Qdelete_directory, directory); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2576 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2577 encoded_dir = ENCODE_FILE (directory); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2578 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2579 dir = SDATA (encoded_dir); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2580 |
230 | 2581 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
|
2582 report_file_error ("Removing directory", Flist (1, &directory)); |
230 | 2583 |
2584 return Qnil; | |
2585 } | |
2586 | |
2587 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
|
2588 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
|
2589 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
|
2590 (filename) |
230 | 2591 Lisp_Object filename; |
2592 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2593 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2594 Lisp_Object encoded_file; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2595 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2596 CHECK_STRING (filename); |
230 | 2597 filename = Fexpand_file_name (filename, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2598 |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2599 handler = Ffind_file_name_handler (filename, Qdelete_file); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2600 if (!NILP (handler)) |
9170
1d95c81487a3
(Fdelete_file): Undo Sep 16 change.
Karl Heuer <kwzh@gnu.org>
parents:
9131
diff
changeset
|
2601 return call2 (handler, Qdelete_file, filename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2602 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2603 encoded_file = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2604 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2605 if (0 > unlink (SDATA (encoded_file))) |
230 | 2606 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
|
2607 return Qnil; |
230 | 2608 } |
2609 | |
10084
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2610 static Lisp_Object |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2611 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
|
2612 Lisp_Object ignore; |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2613 { |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2614 return Qt; |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2615 } |
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 /* 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
|
2618 |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2619 int |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2620 internal_delete_file (filename) |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2621 Lisp_Object filename; |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2622 { |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2623 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
|
2624 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
|
2625 } |
e930bf84753c
(internal_delete_file, internal_delete_file_1): New functions.
Richard M. Stallman <rms@gnu.org>
parents:
9962
diff
changeset
|
2626 |
230 | 2627 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
|
2628 "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
|
2629 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
|
2630 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
|
2631 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
|
2632 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
|
2633 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
|
2634 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
|
2635 (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
|
2636 Lisp_Object file, newname, ok_if_already_exists; |
230 | 2637 { |
2638 #ifdef NO_ARG_ARRAY | |
2639 Lisp_Object args[2]; | |
2640 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2641 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2642 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2643 Lisp_Object encoded_file, encoded_newname; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2644 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2645 encoded_file = encoded_newname = Qnil; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2646 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
|
2647 CHECK_STRING (file); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2648 CHECK_STRING (newname); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2649 file = Fexpand_file_name (file, Qnil); |
230 | 2650 newname = Fexpand_file_name (newname, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2651 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2652 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2653 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
|
2654 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
|
2655 if (NILP (handler)) |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
2656 handler = Ffind_file_name_handler (newname, Qrename_file); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2657 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
|
2658 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
|
2659 file, newname, ok_if_already_exists)); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2660 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2661 encoded_file = ENCODE_FILE (file); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2662 encoded_newname = ENCODE_FILE (newname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2663 |
30376
a931186f35fa
(syms_of_coding): Doc fix for inhibit-iso-escape-detection.
Eli Zaretskii <eliz@gnu.org>
parents:
29813
diff
changeset
|
2664 #ifdef DOS_NT |
a931186f35fa
(syms_of_coding): Doc fix for inhibit-iso-escape-detection.
Eli Zaretskii <eliz@gnu.org>
parents:
29813
diff
changeset
|
2665 /* 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
|
2666 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
|
2667 file name. */ |
a931186f35fa
(syms_of_coding): Doc fix for inhibit-iso-escape-detection.
Eli Zaretskii <eliz@gnu.org>
parents:
29813
diff
changeset
|
2668 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
|
2669 #endif |
485 | 2670 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
|
2671 || INTEGERP (ok_if_already_exists)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2672 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
|
2673 INTEGERP (ok_if_already_exists), 0, 0); |
230 | 2674 #ifndef BSD4_1 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2675 if (0 > rename (SDATA (encoded_file), SDATA (encoded_newname))) |
230 | 2676 #else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2677 if (0 > link (SDATA (encoded_file), SDATA (encoded_newname)) |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2678 || 0 > unlink (SDATA (encoded_file))) |
230 | 2679 #endif |
2680 { | |
2681 if (errno == EXDEV) | |
2682 { | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2683 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
|
2684 /* 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
|
2685 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
|
2686 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
|
2687 Fdelete_file (file); |
230 | 2688 } |
2689 else | |
2690 #ifdef NO_ARG_ARRAY | |
2691 { | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2692 args[0] = file; |
230 | 2693 args[1] = newname; |
2694 report_file_error ("Renaming", Flist (2, args)); | |
2695 } | |
2696 #else | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2697 report_file_error ("Renaming", Flist (2, &file)); |
230 | 2698 #endif |
2699 } | |
2700 UNGCPRO; | |
2701 return Qnil; | |
2702 } | |
2703 | |
2704 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
|
2705 "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
|
2706 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
|
2707 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
|
2708 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
|
2709 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
|
2710 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
|
2711 (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
|
2712 Lisp_Object file, newname, ok_if_already_exists; |
230 | 2713 { |
2714 #ifdef NO_ARG_ARRAY | |
2715 Lisp_Object args[2]; | |
2716 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2717 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2718 Lisp_Object encoded_file, encoded_newname; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2719 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2720 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2721 GCPRO4 (file, newname, encoded_file, encoded_newname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2722 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
|
2723 CHECK_STRING (file); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2724 CHECK_STRING (newname); |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2725 file = Fexpand_file_name (file, Qnil); |
230 | 2726 newname = Fexpand_file_name (newname, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2727 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2728 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2729 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
|
2730 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
|
2731 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2732 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
|
2733 newname, ok_if_already_exists)); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2734 |
12985
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2735 /* 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
|
2736 call the corresponding file handler. */ |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2737 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
|
2738 if (!NILP (handler)) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2739 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
|
2740 newname, ok_if_already_exists)); |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2741 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2742 encoded_file = ENCODE_FILE (file); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2743 encoded_newname = ENCODE_FILE (newname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2744 |
485 | 2745 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
|
2746 || INTEGERP (ok_if_already_exists)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2747 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
|
2748 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
|
2749 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2750 unlink (SDATA (newname)); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2751 if (0 > link (SDATA (encoded_file), SDATA (encoded_newname))) |
230 | 2752 { |
2753 #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
|
2754 args[0] = file; |
230 | 2755 args[1] = newname; |
2756 report_file_error ("Adding new name", Flist (2, args)); | |
2757 #else | |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2758 report_file_error ("Adding new name", Flist (2, &file)); |
230 | 2759 #endif |
2760 } | |
2761 | |
2762 UNGCPRO; | |
2763 return Qnil; | |
2764 } | |
2765 | |
2766 #ifdef S_IFLNK | |
2767 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
|
2768 "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
|
2769 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
|
2770 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
|
2771 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
|
2772 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
|
2773 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
|
2774 (filename, linkname, ok_if_already_exists) |
732 | 2775 Lisp_Object filename, linkname, ok_if_already_exists; |
230 | 2776 { |
2777 #ifdef NO_ARG_ARRAY | |
2778 Lisp_Object args[2]; | |
2779 #endif | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2780 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2781 Lisp_Object encoded_filename, encoded_linkname; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2782 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2783 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2784 GCPRO4 (filename, linkname, encoded_filename, encoded_linkname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2785 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
|
2786 CHECK_STRING (filename); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2787 CHECK_STRING (linkname); |
5245
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
2788 /* 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
|
2789 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
|
2790 we want to permit links to relative file names. */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2791 if (SREF (filename, 0) == '~') |
5245
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
2792 filename = Fexpand_file_name (filename, Qnil); |
732 | 2793 linkname = Fexpand_file_name (linkname, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2794 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2795 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2796 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
|
2797 handler = Ffind_file_name_handler (filename, Qmake_symbolic_link); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2798 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
|
2799 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
|
2800 linkname, ok_if_already_exists)); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2801 |
12985
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2802 /* 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
|
2803 call the corresponding file handler. */ |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2804 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
|
2805 if (!NILP (handler)) |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2806 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
|
2807 linkname, ok_if_already_exists)); |
3adacdaa1d3f
(Fmake_symbolic_link, Fadd_name_to_file):
Richard M. Stallman <rms@gnu.org>
parents:
12853
diff
changeset
|
2808 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2809 encoded_filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2810 encoded_linkname = ENCODE_FILE (linkname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2811 |
485 | 2812 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
|
2813 || INTEGERP (ok_if_already_exists)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2814 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
|
2815 INTEGERP (ok_if_already_exists), 0, 0); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2816 if (0 > symlink (SDATA (encoded_filename), |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2817 SDATA (encoded_linkname))) |
230 | 2818 { |
2819 /* If we didn't complain already, silently delete existing file. */ | |
2820 if (errno == EEXIST) | |
2821 { | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2822 unlink (SDATA (encoded_linkname)); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2823 if (0 <= symlink (SDATA (encoded_filename), |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2824 SDATA (encoded_linkname))) |
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2825 { |
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2826 UNGCPRO; |
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2827 return Qnil; |
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
2828 } |
230 | 2829 } |
2830 | |
2831 #ifdef NO_ARG_ARRAY | |
2832 args[0] = filename; | |
732 | 2833 args[1] = linkname; |
230 | 2834 report_file_error ("Making symbolic link", Flist (2, args)); |
2835 #else | |
2836 report_file_error ("Making symbolic link", Flist (2, &filename)); | |
2837 #endif | |
2838 } | |
2839 UNGCPRO; | |
2840 return Qnil; | |
2841 } | |
2842 #endif /* S_IFLNK */ | |
2843 | |
2844 #ifdef VMS | |
2845 | |
2846 DEFUN ("define-logical-name", Fdefine_logical_name, Sdefine_logical_name, | |
2847 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
|
2848 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
|
2849 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
|
2850 (name, string) |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
2851 Lisp_Object name; |
230 | 2852 Lisp_Object string; |
2853 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2854 CHECK_STRING (name); |
485 | 2855 if (NILP (string)) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2856 delete_logical_name (SDATA (name)); |
230 | 2857 else |
2858 { | |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2859 CHECK_STRING (string); |
230 | 2860 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2861 if (SCHARS (string) == 0) |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2862 delete_logical_name (SDATA (name)); |
230 | 2863 else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2864 define_logical_name (SDATA (name), SDATA (string)); |
230 | 2865 } |
2866 | |
2867 return string; | |
2868 } | |
2869 #endif /* VMS */ | |
2870 | |
2871 #ifdef HPUX_NET | |
2872 | |
2873 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
|
2874 doc: /* Open a network connection to PATH using LOGIN as the login string. */) |
230 | 2875 (path, login) |
2876 Lisp_Object path, login; | |
2877 { | |
2878 int netresult; | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2879 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2880 CHECK_STRING (path); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2881 CHECK_STRING (login); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2882 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2883 netresult = netunam (SDATA (path), SDATA (login)); |
230 | 2884 |
2885 if (netresult == -1) | |
2886 return Qnil; | |
2887 else | |
2888 return Qt; | |
2889 } | |
2890 #endif /* HPUX_NET */ | |
2891 | |
2892 DEFUN ("file-name-absolute-p", Ffile_name_absolute_p, Sfile_name_absolute_p, | |
2893 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
|
2894 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
|
2895 On Unix, this is a name starting with a `/' or a `~'. */) |
230 | 2896 (filename) |
2897 Lisp_Object filename; | |
2898 { | |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
2899 const unsigned char *ptr; |
230 | 2900 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2901 CHECK_STRING (filename); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2902 ptr = SDATA (filename); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2903 if (IS_DIRECTORY_SEP (*ptr) || *ptr == '~' |
230 | 2904 #ifdef VMS |
2905 /* ??? This criterion is probably wrong for '<'. */ | |
2906 || index (ptr, ':') || index (ptr, '<') | |
2907 || (*ptr == '[' && (ptr[1] != '-' || (ptr[2] != '.' && ptr[2] != ']')) | |
2908 && ptr[1] != '.') | |
2909 #endif /* VMS */ | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
2910 #ifdef DOS_NT |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2911 || (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
|
2912 #endif |
230 | 2913 ) |
2914 return Qt; | |
2915 else | |
2916 return Qnil; | |
2917 } | |
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2918 |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2919 /* 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
|
2920 |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2921 static int |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2922 check_executable (filename) |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2923 char *filename; |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2924 { |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2925 #ifdef DOS_NT |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2926 int len = strlen (filename); |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2927 char *suffix; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2928 struct stat st; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2929 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
|
2930 return 0; |
15625
537b4cdf9eff
(Fcopy_file): Use st_ino under DJGPP v2 and later to
Karl Heuer <kwzh@gnu.org>
parents:
15617
diff
changeset
|
2931 #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
|
2932 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
|
2933 #else |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2934 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
|
2935 && len >= 5 |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2936 && (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
|
2937 || 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
|
2938 || stricmp (suffix, ".bat") == 0) |
2178c4d6a427
(check_executable) [DOS_NT]: Treat all dirs as executable.
Richard M. Stallman <rms@gnu.org>
parents:
13451
diff
changeset
|
2939 || (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
|
2940 #endif /* not WINDOWSNT */ |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2941 #else /* not DOS_NT */ |
15533
a749d414efbb
(check_executable): Use euidaccess, not eaccess.
Richard M. Stallman <rms@gnu.org>
parents:
15427
diff
changeset
|
2942 #ifdef HAVE_EUIDACCESS |
a749d414efbb
(check_executable): Use euidaccess, not eaccess.
Richard M. Stallman <rms@gnu.org>
parents:
15427
diff
changeset
|
2943 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
|
2944 #else |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2945 /* 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
|
2946 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
|
2947 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
|
2948 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
|
2949 #endif |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2950 #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
|
2951 } |
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 /* 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
|
2954 |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2955 static int |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2956 check_writable (filename) |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2957 char *filename; |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2958 { |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2959 #ifdef MSDOS |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2960 struct stat st; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2961 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
|
2962 return 0; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2963 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
|
2964 #else /* not MSDOS */ |
15738
4ccf88623c95
(check_writable): Use euidaccess, not eaccess.
Karl Heuer <kwzh@gnu.org>
parents:
15625
diff
changeset
|
2965 #ifdef HAVE_EUIDACCESS |
4ccf88623c95
(check_writable): Use euidaccess, not eaccess.
Karl Heuer <kwzh@gnu.org>
parents:
15625
diff
changeset
|
2966 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
|
2967 #else |
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2968 /* 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
|
2969 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
|
2970 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
|
2971 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
|
2972 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
|
2973 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
|
2974 #endif |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
2975 #endif /* not MSDOS */ |
9078
283534a85f5a
(Ffile_writable_p): Use stat to test for existence.
Richard M. Stallman <rms@gnu.org>
parents:
8885
diff
changeset
|
2976 } |
230 | 2977 |
2978 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
|
2979 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
|
2980 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
|
2981 (filename) |
230 | 2982 Lisp_Object filename; |
2983 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2984 Lisp_Object absname; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2985 Lisp_Object handler; |
8597 | 2986 struct stat statbuf; |
230 | 2987 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
2988 CHECK_STRING (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2989 absname = Fexpand_file_name (filename, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2990 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2991 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2992 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
|
2993 handler = Ffind_file_name_handler (absname, Qfile_exists_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
2994 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
2995 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
|
2996 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2997 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
2998 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
2999 return (stat (SDATA (absname), &statbuf) >= 0) ? Qt : Qnil; |
230 | 3000 } |
3001 | |
3002 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
|
3003 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
|
3004 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
|
3005 (filename) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3006 Lisp_Object filename; |
230 | 3007 { |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3008 Lisp_Object absname; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3009 Lisp_Object handler; |
230 | 3010 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3011 CHECK_STRING (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3012 absname = Fexpand_file_name (filename, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3013 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3014 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3015 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
|
3016 handler = Ffind_file_name_handler (absname, Qfile_executable_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3017 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3018 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
|
3019 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3020 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3021 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3022 return (check_executable (SDATA (absname)) ? Qt : Qnil); |
230 | 3023 } |
3024 | |
3025 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
|
3026 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
|
3027 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
|
3028 (filename) |
230 | 3029 Lisp_Object filename; |
3030 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3031 Lisp_Object absname; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3032 Lisp_Object handler; |
8597 | 3033 int desc; |
16534
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3034 int flags; |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3035 struct stat statbuf; |
230 | 3036 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3037 CHECK_STRING (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3038 absname = Fexpand_file_name (filename, Qnil); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3039 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3040 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3041 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
|
3042 handler = Ffind_file_name_handler (absname, Qfile_readable_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3043 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3044 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
|
3045 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3046 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3047 |
38929
ffa8f910b5f1
2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
Andrew Choi <akochoi@shaw.ca>
parents:
38924
diff
changeset
|
3048 #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
|
3049 /* 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
|
3050 directories. */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3051 if (access (SDATA (absname), 0) == 0) |
13902
31e37f3d8ccd
(Ffile_readable_p) [MSDOS]: Use access rather than open.
Richard M. Stallman <rms@gnu.org>
parents:
13769
diff
changeset
|
3052 return Qt; |
31e37f3d8ccd
(Ffile_readable_p) [MSDOS]: Use access rather than open.
Richard M. Stallman <rms@gnu.org>
parents:
13769
diff
changeset
|
3053 return Qnil; |
38929
ffa8f910b5f1
2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
Andrew Choi <akochoi@shaw.ca>
parents:
38924
diff
changeset
|
3054 #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
|
3055 flags = O_RDONLY; |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3056 #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
|
3057 /* 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
|
3058 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
|
3059 except in the case of a fifo, on a system which handles it. */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3060 desc = stat (SDATA (absname), &statbuf); |
16534
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3061 if (desc < 0) |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3062 return Qnil; |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3063 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
|
3064 flags |= O_NONBLOCK; |
21aae8d73ddd
(USG5 or BSD_SYSTEM or LINUX): Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
16474
diff
changeset
|
3065 #endif |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3066 desc = emacs_open (SDATA (absname), flags, 0); |
8597 | 3067 if (desc < 0) |
3068 return Qnil; | |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3069 emacs_close (desc); |
8597 | 3070 return Qt; |
38929
ffa8f910b5f1
2001-08-24 Andrew Choi <akochoi@cse.cuhk.edu.hk>
Andrew Choi <akochoi@shaw.ca>
parents:
38924
diff
changeset
|
3071 #endif /* not DOS_NT and not macintosh */ |
230 | 3072 } |
3073 | |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3074 /* 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
|
3075 on the RT/PC. */ |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3076 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
|
3077 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
|
3078 (filename) |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3079 Lisp_Object filename; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3080 { |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3081 Lisp_Object absname, dir, encoded; |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3082 Lisp_Object handler; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3083 struct stat statbuf; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3084 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3085 CHECK_STRING (filename); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3086 absname = Fexpand_file_name (filename, Qnil); |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3087 |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3088 /* 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
|
3089 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
|
3090 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
|
3091 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3092 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
|
3093 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3094 encoded = ENCODE_FILE (absname); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3095 if (stat (SDATA (encoded), &statbuf) >= 0) |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3096 return (check_writable (SDATA (encoded)) |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3097 ? Qt : Qnil); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3098 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3099 dir = Ffile_name_directory (absname); |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3100 #ifdef VMS |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3101 if (!NILP (dir)) |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3102 dir = Fdirectory_file_name (dir); |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3103 #endif /* VMS */ |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3104 #ifdef MSDOS |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3105 if (!NILP (dir)) |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3106 dir = Fdirectory_file_name (dir); |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3107 #endif /* MSDOS */ |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3108 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3109 dir = ENCODE_FILE (dir); |
28673
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3110 #ifdef WINDOWSNT |
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3111 /* 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
|
3112 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
|
3113 should check ACLs though, which do affect this. */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3114 if (stat (SDATA (dir), &statbuf) < 0) |
28673
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3115 return Qnil; |
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3116 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
|
3117 #else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3118 return (check_writable (!NILP (dir) ? (char *) SDATA (dir) : "") |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3119 ? Qt : Qnil); |
28673
55c84ae4d634
(Ffile_writable_p) [WINDOWSNT]: Return nil if parent
Gerd Moellmann <gerd@gnu.org>
parents:
28561
diff
changeset
|
3120 #endif |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3121 } |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3122 |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3123 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
|
3124 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
|
3125 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
|
3126 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
|
3127 (filename, string) |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3128 Lisp_Object filename, string; |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3129 { |
40354
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3130 Lisp_Object handler, encoded_filename, absname; |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3131 int fd; |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3132 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3133 CHECK_STRING (filename); |
40354
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3134 absname = Fexpand_file_name (filename, Qnil); |
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3135 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3136 CHECK_STRING (string); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3137 |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3138 /* If the file name has special constructs in it, |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3139 call the corresponding file handler. */ |
40354
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3140 handler = Ffind_file_name_handler (absname, Qaccess_file); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3141 if (!NILP (handler)) |
40354
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3142 return call3 (handler, Qaccess_file, absname, string); |
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3143 |
3f7dedbea4ea
(Faccess_file): Run the argument filename through
Eli Zaretskii <eliz@gnu.org>
parents:
40306
diff
changeset
|
3144 encoded_filename = ENCODE_FILE (absname); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3145 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3146 fd = emacs_open (SDATA (encoded_filename), O_RDONLY, 0); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3147 if (fd < 0) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3148 report_file_error (SDATA (string), Fcons (filename, Qnil)); |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3149 emacs_close (fd); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3150 |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3151 return Qnil; |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3152 } |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
3153 |
230 | 3154 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
|
3155 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
|
3156 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
|
3157 Otherwise returns nil. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3158 (filename) |
230 | 3159 Lisp_Object filename; |
3160 { | |
3161 #ifdef S_IFLNK | |
3162 char *buf; | |
3163 int bufsize; | |
3164 int valsize; | |
3165 Lisp_Object val; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3166 Lisp_Object handler; |
230 | 3167 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3168 CHECK_STRING (filename); |
230 | 3169 filename = Fexpand_file_name (filename, Qnil); |
3170 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3171 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3172 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
|
3173 handler = Ffind_file_name_handler (filename, Qfile_symlink_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3174 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3175 return call2 (handler, Qfile_symlink_p, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3176 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3177 filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3178 |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3179 bufsize = 50; |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3180 buf = NULL; |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3181 do |
230 | 3182 { |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3183 bufsize *= 2; |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3184 buf = (char *) xrealloc (buf, bufsize); |
230 | 3185 bzero (buf, bufsize); |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3186 |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3187 errno = 0; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3188 valsize = readlink (SDATA (filename), buf, bufsize); |
39291
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3189 if (valsize == -1) |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3190 { |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3191 #ifdef ERANGE |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3192 /* 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
|
3193 if (errno == ERANGE) |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3194 valsize = bufsize; |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3195 else |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3196 #endif |
39291
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3197 { |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3198 xfree (buf); |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3199 return Qnil; |
f9c8c910fe9a
(Ffile_symlink_p): Fix last change.
Gerd Moellmann <gerd@gnu.org>
parents:
39281
diff
changeset
|
3200 } |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3201 } |
230 | 3202 } |
39281
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3203 while (valsize >= bufsize); |
269a01a4ee76
(Ffile_symlink_p): If readlink returns ERANGE, take
Gerd Moellmann <gerd@gnu.org>
parents:
39023
diff
changeset
|
3204 |
230 | 3205 val = make_string (buf, valsize); |
27870
a36c3e02f43b
(Ffile_symlink_p): If result starts with a `/'
Gerd Moellmann <gerd@gnu.org>
parents:
27789
diff
changeset
|
3206 if (buf[0] == '/' && index (buf, ':')) |
a36c3e02f43b
(Ffile_symlink_p): If result starts with a `/'
Gerd Moellmann <gerd@gnu.org>
parents:
27789
diff
changeset
|
3207 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
|
3208 xfree (buf); |
21048
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
3209 val = DECODE_FILE (val); |
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
3210 return val; |
230 | 3211 #else /* not S_IFLNK */ |
3212 return Qnil; | |
3213 #endif /* not S_IFLNK */ | |
3214 } | |
3215 | |
3216 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
|
3217 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
|
3218 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
|
3219 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
|
3220 (filename) |
230 | 3221 Lisp_Object filename; |
3222 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3223 register Lisp_Object absname; |
230 | 3224 struct stat st; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3225 Lisp_Object handler; |
230 | 3226 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3227 absname = expand_and_dir_to_file (filename, current_buffer->directory); |
230 | 3228 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3229 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3230 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
|
3231 handler = Ffind_file_name_handler (absname, Qfile_directory_p); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3232 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3233 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
|
3234 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3235 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3236 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3237 if (stat (SDATA (absname), &st) < 0) |
230 | 3238 return Qnil; |
3239 return (st.st_mode & S_IFMT) == S_IFDIR ? Qt : Qnil; | |
3240 } | |
3241 | |
536 | 3242 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
|
3243 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
|
3244 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
|
3245 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
|
3246 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
|
3247 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
|
3248 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
|
3249 searchable directory. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3250 (filename) |
536 | 3251 Lisp_Object filename; |
3252 { | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3253 Lisp_Object handler; |
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
3254 int tem; |
8703
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3255 struct gcpro gcpro1; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3256 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3257 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3258 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
|
3259 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
|
3260 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3261 return call2 (handler, Qfile_accessible_directory_p, filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3262 |
8703
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3263 /* 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
|
3264 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
|
3265 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
|
3266 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
|
3267 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
|
3268 to file-executable-p. */ |
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3269 GCPRO1 (filename); |
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
3270 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
|
3271 || NILP (Ffile_executable_p (filename))); |
8703
aaa0730f8b1e
(Ffile_accessible_directory_p): Put back the gcpro.
Karl Heuer <kwzh@gnu.org>
parents:
8662
diff
changeset
|
3272 UNGCPRO; |
8602
99f6ae4160f5
(Fmake_symbolic_link, Ffile_accessible_directory_p, Finsert_file_contents,
Karl Heuer <kwzh@gnu.org>
parents:
8597
diff
changeset
|
3273 return tem ? Qnil : Qt; |
536 | 3274 } |
3275 | |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3276 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
|
3277 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
|
3278 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
|
3279 (filename) |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3280 Lisp_Object filename; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3281 { |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3282 register Lisp_Object absname; |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3283 struct stat st; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3284 Lisp_Object handler; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3285 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3286 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
|
3287 |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3288 /* 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
|
3289 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
|
3290 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
|
3291 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3292 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
|
3293 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3294 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3295 |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3296 #ifdef WINDOWSNT |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3297 { |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3298 int result; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3299 Lisp_Object tem = Vw32_get_true_file_attributes; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3300 |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3301 /* 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
|
3302 Vw32_get_true_file_attributes = Qt; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3303 result = stat (SDATA (absname), &st); |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3304 Vw32_get_true_file_attributes = tem; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3305 |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3306 if (result < 0) |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3307 return Qnil; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3308 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
|
3309 } |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3310 #else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3311 if (stat (SDATA (absname), &st) < 0) |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3312 return Qnil; |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3313 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
|
3314 #endif |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3315 } |
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3316 |
230 | 3317 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
|
3318 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
|
3319 (filename) |
230 | 3320 Lisp_Object filename; |
3321 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3322 Lisp_Object absname; |
230 | 3323 struct stat st; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3324 Lisp_Object handler; |
230 | 3325 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3326 absname = expand_and_dir_to_file (filename, current_buffer->directory); |
230 | 3327 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3328 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3329 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
|
3330 handler = Ffind_file_name_handler (absname, Qfile_modes); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3331 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3332 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
|
3333 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3334 absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3335 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3336 if (stat (SDATA (absname), &st) < 0) |
230 | 3337 return Qnil; |
15625
537b4cdf9eff
(Fcopy_file): Use st_ino under DJGPP v2 and later to
Karl Heuer <kwzh@gnu.org>
parents:
15617
diff
changeset
|
3338 #if defined (MSDOS) && __DJGPP__ < 2 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3339 if (check_executable (SDATA (absname))) |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
3340 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
|
3341 #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
|
3342 |
230 | 3343 return make_number (st.st_mode & 07777); |
3344 } | |
3345 | |
3346 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
|
3347 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
|
3348 Only the 12 low bits of MODE are used. */) |
230 | 3349 (filename, mode) |
3350 Lisp_Object filename, mode; | |
3351 { | |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3352 Lisp_Object absname, encoded_absname; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3353 Lisp_Object handler; |
230 | 3354 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3355 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
|
3356 CHECK_NUMBER (mode); |
230 | 3357 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3358 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3359 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
|
3360 handler = Ffind_file_name_handler (absname, Qset_file_modes); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3361 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3362 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
|
3363 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3364 encoded_absname = ENCODE_FILE (absname); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3365 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3366 if (chmod (SDATA (encoded_absname), XINT (mode)) < 0) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3367 report_file_error ("Doing chmod", Fcons (absname, Qnil)); |
230 | 3368 |
3369 return Qnil; | |
3370 } | |
3371 | |
1763
65e858c07a8b
(Fset_default_file_modes, Fdefault_file_modes): Renamed from .._mode.
Richard M. Stallman <rms@gnu.org>
parents:
1762
diff
changeset
|
3372 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
|
3373 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
|
3374 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
|
3375 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
|
3376 (mode) |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3377 Lisp_Object mode; |
550 | 3378 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3379 CHECK_NUMBER (mode); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3380 |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3381 umask ((~ XINT (mode)) & 0777); |
550 | 3382 |
3383 return Qnil; | |
3384 } | |
3385 | |
1763
65e858c07a8b
(Fset_default_file_modes, Fdefault_file_modes): Renamed from .._mode.
Richard M. Stallman <rms@gnu.org>
parents:
1762
diff
changeset
|
3386 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
|
3387 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
|
3388 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
|
3389 () |
550 | 3390 { |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3391 int realmask; |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3392 Lisp_Object value; |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3393 |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3394 realmask = umask (0); |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3395 umask (realmask); |
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3396 |
9266
811ad893828b
(Fdefault_file_modes, Finsert_file_contents, Fdo_auto_save): Use new accessor
Karl Heuer <kwzh@gnu.org>
parents:
9241
diff
changeset
|
3397 XSETINT (value, (~ realmask) & 0777); |
1762
d70878f22be4
(Fset_default_file_mode, Fdefault_file_mode):
Richard M. Stallman <rms@gnu.org>
parents:
1761
diff
changeset
|
3398 return value; |
550 | 3399 } |
27925
8ef4ce88fa64
[__NetBSD__]: Define `unix'.
Gerd Moellmann <gerd@gnu.org>
parents:
27870
diff
changeset
|
3400 |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
3401 |
27925
8ef4ce88fa64
[__NetBSD__]: Define `unix'.
Gerd Moellmann <gerd@gnu.org>
parents:
27870
diff
changeset
|
3402 #ifdef __NetBSD__ |
8ef4ce88fa64
[__NetBSD__]: Define `unix'.
Gerd Moellmann <gerd@gnu.org>
parents:
27870
diff
changeset
|
3403 #define unix 42 |
8ef4ce88fa64
[__NetBSD__]: Define `unix'.
Gerd Moellmann <gerd@gnu.org>
parents:
27870
diff
changeset
|
3404 #endif |
8ef4ce88fa64
[__NetBSD__]: Define `unix'.
Gerd Moellmann <gerd@gnu.org>
parents:
27870
diff
changeset
|
3405 |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3406 #ifdef unix |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3407 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
|
3408 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
|
3409 () |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3410 { |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3411 sync (); |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3412 return Qnil; |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3413 } |
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 #endif /* unix */ |
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
3416 |
230 | 3417 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
|
3418 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
|
3419 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
|
3420 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
|
3421 (file1, file2) |
230 | 3422 Lisp_Object file1, file2; |
3423 { | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3424 Lisp_Object absname1, absname2; |
230 | 3425 struct stat st; |
3426 int mtime1; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3427 Lisp_Object handler; |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
3428 struct gcpro gcpro1, gcpro2; |
230 | 3429 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3430 CHECK_STRING (file1); |
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3431 CHECK_STRING (file2); |
230 | 3432 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3433 absname1 = Qnil; |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3434 GCPRO2 (absname1, file2); |
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3435 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
|
3436 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
|
3437 UNGCPRO; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3438 |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3439 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3440 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
|
3441 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
|
3442 if (NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3443 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
|
3444 if (!NILP (handler)) |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
3445 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
|
3446 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3447 GCPRO2 (absname1, absname2); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3448 absname1 = ENCODE_FILE (absname1); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3449 absname2 = ENCODE_FILE (absname2); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3450 UNGCPRO; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3451 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3452 if (stat (SDATA (absname1), &st) < 0) |
230 | 3453 return Qnil; |
3454 | |
3455 mtime1 = st.st_mtime; | |
3456 | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3457 if (stat (SDATA (absname2), &st) < 0) |
230 | 3458 return Qt; |
3459 | |
3460 return (mtime1 > st.st_mtime) ? Qt : Qnil; | |
3461 } | |
3462 | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
3463 #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
|
3464 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
|
3465 #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
|
3466 |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3467 #ifndef READ_BUF_SIZE |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3468 #define READ_BUF_SIZE (64 << 10) |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3469 #endif |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3470 |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3471 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
|
3472 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3473 /* 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
|
3474 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
|
3475 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
|
3476 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
|
3477 insertion). |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3478 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3479 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
|
3480 alter the buffer contents, change the current buffer. |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3481 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3482 Here, we reset all those changes by: |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3483 o set back the current buffer. |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3484 o move all markers and overlays to BEG. |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3485 o remove all text properties. |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3486 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
|
3487 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3488 static Lisp_Object |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3489 decide_coding_unwind (unwind_data) |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3490 Lisp_Object unwind_data; |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3491 { |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3492 Lisp_Object multibyte, undo_list, buffer; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3493 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3494 multibyte = XCAR (unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3495 unwind_data = XCDR (unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3496 undo_list = XCAR (unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3497 buffer = XCDR (unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3498 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3499 if (current_buffer != XBUFFER (buffer)) |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3500 set_buffer_internal (XBUFFER (buffer)); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3501 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
|
3502 adjust_overlays_for_delete (BEG, Z - BEG); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3503 BUF_INTERVALS (current_buffer) = 0; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3504 TEMP_SET_PT_BOTH (BEG, BEG_BYTE); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3505 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3506 /* 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
|
3507 current_buffer->enable_multibyte_characters = multibyte; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
3508 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
|
3509 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3510 return Qnil; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3511 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3512 |
38364
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3513 |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3514 /* 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
|
3515 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3516 static int non_regular_fd; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3517 static int non_regular_inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3518 static int non_regular_nbytes; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3519 |
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 /* Read from a non-regular file. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3522 Read non_regular_trytry bytes max from non_regular_fd. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3523 Non_regular_inserted specifies where to put the read bytes. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3524 Value is the number of bytes read. */ |
38364
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3525 |
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3526 static Lisp_Object |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3527 read_non_regular () |
38364
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3528 { |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3529 int nbytes; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3530 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3531 immediate_quit = 1; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3532 QUIT; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3533 nbytes = emacs_read (non_regular_fd, |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
3534 BEG_ADDR + PT_BYTE - BEG_BYTE + non_regular_inserted, |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3535 non_regular_nbytes); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3536 immediate_quit = 0; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3537 return make_number (nbytes); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3538 } |
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 /* Condition-case handler used when reading from non-regular files |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3542 in insert-file-contents. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3543 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3544 static Lisp_Object |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3545 read_non_regular_quit () |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3546 { |
38364
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3547 return Qnil; |
835bdb0887ed
(unwind_read): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
37961
diff
changeset
|
3548 } |
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 |
230 | 3551 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
|
3552 1, 5, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3553 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
|
3554 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
|
3555 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
|
3556 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
|
3557 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
|
3558 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
|
3559 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
|
3560 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
|
3561 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
|
3562 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
|
3563 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3564 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
|
3565 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
|
3566 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
|
3567 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
|
3568 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
|
3569 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
|
3570 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
|
3571 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3572 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
|
3573 `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
|
3574 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
|
3575 actually used. */) |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
3576 (filename, visit, beg, end, replace) |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3577 Lisp_Object filename, visit, beg, end, replace; |
230 | 3578 { |
3579 struct stat st; | |
3580 register int fd; | |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
3581 int inserted = 0; |
230 | 3582 register int how_much; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3583 register int unprocessed; |
46285
3f111801efb4
Rename BINDING_STACK_SIZE to SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46020
diff
changeset
|
3584 int count = SPECPDL_INDEX (); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3585 struct gcpro gcpro1, gcpro2, gcpro3, gcpro4; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3586 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
|
3587 Lisp_Object p; |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31775
diff
changeset
|
3588 int total = 0; |
9921
62392796a691
(Finsert_file_contents): Init not_regular at the beginning.
Richard M. Stallman <rms@gnu.org>
parents:
9915
diff
changeset
|
3589 int not_regular = 0; |
22053
8697087ea026
(Finsert_file_contents): Check that a -*- coding: -*- spec
Richard M. Stallman <rms@gnu.org>
parents:
22042
diff
changeset
|
3590 unsigned char read_buf[READ_BUF_SIZE]; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3591 struct coding_system coding; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
3592 unsigned char buffer[1 << 14]; |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3593 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
|
3594 int set_coding_system = 0; |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3595 int coding_system_decided = 0; |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
3596 int read_quit = 0; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3597 |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3598 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
|
3599 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
|
3600 |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3601 if (!NILP (current_buffer->read_only)) |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3602 Fbarf_if_buffer_read_only (); |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
3603 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3604 val = Qnil; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
3605 p = Qnil; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3606 orig_filename = Qnil; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3607 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3608 GCPRO4 (filename, val, p, orig_filename); |
230 | 3609 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3610 CHECK_STRING (filename); |
230 | 3611 filename = Fexpand_file_name (filename, Qnil); |
3612 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3613 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3614 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
|
3615 handler = Ffind_file_name_handler (filename, Qinsert_file_contents); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3616 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3617 { |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3618 val = call6 (handler, Qinsert_file_contents, filename, |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3619 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
|
3620 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
|
3621 inserted = XINT (XCAR (XCDR (val))); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3622 goto handled; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3623 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
3624 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3625 orig_filename = filename; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3626 filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3627 |
230 | 3628 fd = -1; |
3629 | |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3630 #ifdef WINDOWSNT |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3631 { |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3632 Lisp_Object tem = Vw32_get_true_file_attributes; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3633 |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3634 /* 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
|
3635 Vw32_get_true_file_attributes = Qt; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3636 total = stat (SDATA (filename), &st); |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3637 Vw32_get_true_file_attributes = tem; |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3638 } |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3639 if (total < 0) |
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3640 #else |
230 | 3641 #ifndef APOLLO |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3642 if (stat (SDATA (filename), &st) < 0) |
230 | 3643 #else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3644 if ((fd = emacs_open (SDATA (filename), O_RDONLY, 0)) < 0 |
230 | 3645 || fstat (fd, &st) < 0) |
3646 #endif /* not APOLLO */ | |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
3647 #endif /* WINDOWSNT */ |
230 | 3648 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3649 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
|
3650 badopen: |
485 | 3651 if (NILP (visit)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3652 report_file_error ("Opening input file", Fcons (orig_filename, Qnil)); |
230 | 3653 st.st_mtime = -1; |
3654 how_much = 0; | |
19925
31b8e0e60e2d
(Finsert_file_contents): If a coding system is
Richard M. Stallman <rms@gnu.org>
parents:
19861
diff
changeset
|
3655 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
|
3656 Fset (Qbuffer_file_coding_system, Vcoding_system_for_read); |
230 | 3657 goto notfound; |
3658 } | |
3659 | |
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3660 #ifdef S_IFREG |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3661 /* 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
|
3662 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
|
3663 least signal an error. */ |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3664 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
|
3665 { |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3666 not_regular = 1; |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3667 |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3668 if (! NILP (visit)) |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3669 goto notfound; |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3670 |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3671 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
|
3672 Fsignal (Qfile_error, |
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
3673 Fcons (build_string ("not a regular file"), |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3674 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
|
3675 } |
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3676 #endif |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3677 |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3678 if (fd < 0) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3679 if ((fd = emacs_open (SDATA (filename), O_RDONLY, 0)) < 0) |
8047
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3680 goto badopen; |
fb950b66d754
(Finsert_file_contents): Fix check for non-regular files.
Karl Heuer <kwzh@gnu.org>
parents:
7695
diff
changeset
|
3681 |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3682 /* 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
|
3683 if (!NILP (replace)) |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3684 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
|
3685 |
230 | 3686 record_unwind_protect (close_file_unwind, make_number (fd)); |
3687 | |
3688 /* Supposedly happens on VMS. */ | |
48562
b3e8e8c5face
(Finsert_file_contents): Give a more appropriate error
Jason Rumney <jasonr@gnu.org>
parents:
48423
diff
changeset
|
3689 /* Can happen on any platform that uses long as type of off_t, but allows |
b3e8e8c5face
(Finsert_file_contents): Give a more appropriate error
Jason Rumney <jasonr@gnu.org>
parents:
48423
diff
changeset
|
3690 file sizes to exceed 2Gb. VMS is no longer officially supported, so |
b3e8e8c5face
(Finsert_file_contents): Give a more appropriate error
Jason Rumney <jasonr@gnu.org>
parents:
48423
diff
changeset
|
3691 give a message suitable for the latter case. */ |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3692 if (! not_regular && st.st_size < 0) |
48562
b3e8e8c5face
(Finsert_file_contents): Give a more appropriate error
Jason Rumney <jasonr@gnu.org>
parents:
48423
diff
changeset
|
3693 error ("Maximum buffer size exceeded"); |
752 | 3694 |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
3695 /* Prevent redisplay optimizations. */ |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
3696 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
|
3697 |
27134
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3698 if (!NILP (visit)) |
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3699 { |
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3700 if (!NILP (beg) || !NILP (end)) |
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3701 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
|
3702 if (BEG < Z && NILP (replace)) |
ac336ecd19ff
(Finsert_file_contents): Signal error if visiting file
Kenichi Handa <handa@m17n.org>
parents:
26855
diff
changeset
|
3703 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
|
3704 } |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3705 |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3706 if (!NILP (beg)) |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3707 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
|
3708 else |
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
3709 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
|
3710 |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3711 if (!NILP (end)) |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
3712 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
|
3713 else |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3714 { |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3715 if (! not_regular) |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3716 { |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3717 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
|
3718 |
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3719 /* 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
|
3720 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
|
3721 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
|
3722 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
|
3723 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
|
3724 || ((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
|
3725 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
|
3726 |
2db1b1bb1d18
(Finsert_file_contents): If the file size returned from
Gerd Moellmann <gerd@gnu.org>
parents:
37292
diff
changeset
|
3727 /* 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
|
3728 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
|
3729 file in the /proc filesystem. */ |
2db1b1bb1d18
(Finsert_file_contents): If the file size returned from
Gerd Moellmann <gerd@gnu.org>
parents:
37292
diff
changeset
|
3730 if (st.st_size == 0) |
2db1b1bb1d18
(Finsert_file_contents): If the file size returned from
Gerd Moellmann <gerd@gnu.org>
parents:
37292
diff
changeset
|
3731 XSETINT (end, READ_BUF_SIZE); |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
3732 } |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3733 } |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
3734 |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3735 if (BEG < Z) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3736 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3737 /* 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
|
3738 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
|
3739 `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
|
3740 Lisp_Object val; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3741 val = Qnil; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3742 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3743 if (!NILP (Vcoding_system_for_read)) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3744 val = Vcoding_system_for_read; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3745 else if (! NILP (replace)) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3746 /* 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
|
3747 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
|
3748 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
|
3749 else |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3750 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3751 /* 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
|
3752 specification if it is not seekable. */ |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3753 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
|
3754 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3755 /* 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
|
3756 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
|
3757 We assume that the 1K-byte and 3K-byte for heading |
24651 | 3758 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
|
3759 purpose. */ |
27613 | 3760 int nread; |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3761 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3762 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
|
3763 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
|
3764 else |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3765 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3766 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
|
3767 if (nread >= 0) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3768 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3769 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
|
3770 report_file_error ("Setting file position", |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3771 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
|
3772 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
|
3773 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3774 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3775 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3776 if (nread < 0) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3777 error ("IO error reading %s: %s", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3778 SDATA (orig_filename), emacs_strerror (errno)); |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3779 else if (nread > 0) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3780 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3781 struct buffer *prev = current_buffer; |
44563
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3782 Lisp_Object buffer; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3783 struct buffer *buf; |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3784 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3785 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
|
3786 |
44563
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3787 buffer = Fget_buffer_create (build_string (" *code-converting-work*")); |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3788 buf = XBUFFER (buffer); |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3789 |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3790 buf->directory = current_buffer->directory; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3791 buf->read_only = Qnil; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3792 buf->filename = Qnil; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3793 buf->undo_list = Qt; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3794 buf->overlays_before = Qnil; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3795 buf->overlays_after = Qnil; |
27789
eb273bf5c3a8
(Finsert_file_contents): Unbind the binding of
Gerd Moellmann <gerd@gnu.org>
parents:
27618
diff
changeset
|
3796 |
44563
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3797 set_buffer_internal (buf); |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3798 Ferase_buffer (); |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3799 buf->enable_multibyte_characters = Qnil; |
3f86b146a02b
(Finsert_file_contents):
Richard M. Stallman <rms@gnu.org>
parents:
43799
diff
changeset
|
3800 |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3801 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
|
3802 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
|
3803 val = call2 (Vset_auto_coding_function, |
6e11bb792d4f
(Finsert_file_contents): Call Vset_auto_coding_function
Kenichi Handa <handa@m17n.org>
parents:
22753
diff
changeset
|
3804 filename, make_number (nread)); |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3805 set_buffer_internal (prev); |
27789
eb273bf5c3a8
(Finsert_file_contents): Unbind the binding of
Gerd Moellmann <gerd@gnu.org>
parents:
27618
diff
changeset
|
3806 |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3807 /* 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
|
3808 current buffer. */ |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3809 specpdl_ptr--; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3810 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3811 /* 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
|
3812 if (lseek (fd, 0, 0) < 0) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3813 report_file_error ("Setting file position", |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3814 Fcons (orig_filename, Qnil)); |
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 } |
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 (NILP (val)) |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3819 { |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3820 /* 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
|
3821 file-coding-system-alist. */ |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3822 Lisp_Object args[6], coding_systems; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3823 |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3824 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
|
3825 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
|
3826 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
|
3827 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
|
3828 val = XCAR (coding_systems); |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3829 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3830 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3831 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
3832 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
|
3833 /* 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
|
3834 set_coding_system = 1; |
22362
e845baca3407
(Finsert_file_contents): Always update
Karl Heuer <kwzh@gnu.org>
parents:
22311
diff
changeset
|
3835 |
24932
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
3836 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
|
3837 && ! NILP (val)) |
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
3838 /* 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
|
3839 end-of-line conversion. */ |
22613
285822d24189
(Finsert_file_contents): Call setup_raw_text_coding_system.
Kenichi Handa <handa@m17n.org>
parents:
22493
diff
changeset
|
3840 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
|
3841 |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
3842 coding.src_multibyte = 0; |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
3843 coding.dst_multibyte |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
3844 = !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
|
3845 coding_system_decided = 1; |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3846 } |
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3847 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3848 /* 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
|
3849 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
|
3850 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
|
3851 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
|
3852 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
3853 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
|
3854 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
|
3855 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
|
3856 in a less optimal way. |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3857 |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3858 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
|
3859 method and hope for the best. |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3860 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
|
3861 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
|
3862 if (!NILP (replace) |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
3863 && BEGV < ZV |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
3864 && !(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
|
3865 { |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
3866 /* 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
|
3867 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
|
3868 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
|
3869 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
|
3870 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
|
3871 int overlap; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3872 /* 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
|
3873 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
|
3874 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
|
3875 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
|
3876 |
16695
7df45948d2d8
(Finsert_file_contents): Handle BEG and END non-nil
Richard M. Stallman <rms@gnu.org>
parents:
16662
diff
changeset
|
3877 if (XINT (beg) != 0) |
7df45948d2d8
(Finsert_file_contents): Handle BEG and END non-nil
Richard M. Stallman <rms@gnu.org>
parents:
16662
diff
changeset
|
3878 { |
7df45948d2d8
(Finsert_file_contents): Handle BEG and END non-nil
Richard M. Stallman <rms@gnu.org>
parents:
16662
diff
changeset
|
3879 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
|
3880 report_file_error ("Setting file position", |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3881 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
|
3882 } |
7df45948d2d8
(Finsert_file_contents): Handle BEG and END non-nil
Richard M. Stallman <rms@gnu.org>
parents:
16662
diff
changeset
|
3883 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3884 immediate_quit = 1; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3885 QUIT; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3886 /* 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
|
3887 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
|
3888 while (1) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3889 { |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3890 int nread, bufpos; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3891 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3892 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
|
3893 if (nread < 0) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3894 error ("IO error reading %s: %s", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3895 SDATA (orig_filename), emacs_strerror (errno)); |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3896 else if (nread == 0) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3897 break; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
3898 |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17823
diff
changeset
|
3899 if (coding.type == coding_type_undecided) |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3900 detect_coding (&coding, buffer, nread); |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
3901 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
|
3902 /* 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
|
3903 Let's give up here. */ |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3904 { |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3905 giveup_match_end = 1; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3906 break; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3907 } |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3908 |
17835
f36ffb6f1208
Name change through the code:
Kenichi Handa <handa@m17n.org>
parents:
17823
diff
changeset
|
3909 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
|
3910 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
|
3911 if (coding.eol_type != CODING_EOL_UNDECIDED |
18973
9f5b8d5eed29
(Finsert_file_contents): Use new macros
Kenichi Handa <handa@m17n.org>
parents:
18861
diff
changeset
|
3912 && coding.eol_type != CODING_EOL_LF) |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3913 /* 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
|
3914 Let's give up here. */ |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3915 { |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3916 giveup_match_end = 1; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3917 break; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3918 } |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3919 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3920 bufpos = 0; |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
3921 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
|
3922 && 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
|
3923 same_at_start++, bufpos++; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3924 /* If we found a discrepancy, stop the scan. |
14036 | 3925 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
|
3926 if (bufpos != nread) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3927 break; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3928 } |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3929 immediate_quit = 0; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3930 /* If the file matches the buffer completely, |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3931 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
|
3932 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
|
3933 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3934 emacs_close (fd); |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
3935 specpdl_ptr--; |
7595
9f0893928a4d
(Finsert_file_contents): Declare buffer as unsigned
Richard M. Stallman <rms@gnu.org>
parents:
7551
diff
changeset
|
3936 /* 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
|
3937 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
|
3938 goto handled; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3939 } |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3940 immediate_quit = 1; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3941 QUIT; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3942 /* 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
|
3943 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
|
3944 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
|
3945 while (!giveup_match_end) |
5975
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 int total_read, nread, bufpos, curpos, trial; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3948 |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3949 /* 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
|
3950 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
|
3951 /* 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
|
3952 if (curpos == 0) |
aba3ffcc8f51
(Finsert_file_contents): Check for beginning of file.
Karl Heuer <kwzh@gnu.org>
parents:
7611
diff
changeset
|
3953 break; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3954 /* 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
|
3955 trial = min (curpos, sizeof buffer); |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3956 if (lseek (fd, curpos - trial, 0) < 0) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3957 report_file_error ("Setting file position", |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
3958 Fcons (orig_filename, Qnil)); |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3959 |
39457
dbb9a3969094
(Finsert_file_contents): If REPLACE is non-nil, stop
Gerd Moellmann <gerd@gnu.org>
parents:
39291
diff
changeset
|
3960 total_read = nread = 0; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3961 while (total_read < trial) |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3962 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
3963 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
|
3964 if (nread < 0) |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3965 error ("IO error reading %s: %s", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
3966 SDATA (orig_filename), emacs_strerror (errno)); |
38619
879c6b736b9f
(Finsert_file_contents): Don't treat a return value
Gerd Moellmann <gerd@gnu.org>
parents:
38450
diff
changeset
|
3967 else if (nread == 0) |
879c6b736b9f
(Finsert_file_contents): Don't treat a return value
Gerd Moellmann <gerd@gnu.org>
parents:
38450
diff
changeset
|
3968 break; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3969 total_read += nread; |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3970 } |
38619
879c6b736b9f
(Finsert_file_contents): Don't treat a return value
Gerd Moellmann <gerd@gnu.org>
parents:
38450
diff
changeset
|
3971 |
14036 | 3972 /* 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
|
3973 the Emacs buffer. */ |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3974 bufpos = total_read; |
38619
879c6b736b9f
(Finsert_file_contents): Don't treat a return value
Gerd Moellmann <gerd@gnu.org>
parents:
38450
diff
changeset
|
3975 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3976 /* 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
|
3977 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
|
3978 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
|
3979 && 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
|
3980 same_at_end--, bufpos--; |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3981 |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3982 /* If we found a discrepancy, stop the scan. |
14036 | 3983 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
|
3984 if (bufpos != 0) |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3985 { |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3986 /* 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
|
3987 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
|
3988 if (same_at_end > same_at_start |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3989 && 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
|
3990 && ! NILP (current_buffer->enable_multibyte_characters) |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
3991 && (CODING_MAY_REQUIRE_DECODING (&coding))) |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3992 giveup_match_end = 1; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3993 break; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
3994 } |
39457
dbb9a3969094
(Finsert_file_contents): If REPLACE is non-nil, stop
Gerd Moellmann <gerd@gnu.org>
parents:
39291
diff
changeset
|
3995 |
dbb9a3969094
(Finsert_file_contents): If REPLACE is non-nil, stop
Gerd Moellmann <gerd@gnu.org>
parents:
39291
diff
changeset
|
3996 if (nread == 0) |
dbb9a3969094
(Finsert_file_contents): If REPLACE is non-nil, stop
Gerd Moellmann <gerd@gnu.org>
parents:
39291
diff
changeset
|
3997 break; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3998 } |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
3999 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
|
4000 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4001 if (! giveup_match_end) |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4002 { |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4003 int temp; |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4004 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4005 /* 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
|
4006 |
22753
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4007 /* 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
|
4008 character boundary. */ |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4009 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
|
4010 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
|
4011 && ! 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
|
4012 same_at_start--; |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4013 |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4014 /* 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
|
4015 character boundary. */ |
554594d88cd3
(Finsert_file_contents): Give up match-end only if
Richard M. Stallman <rms@gnu.org>
parents:
18647
diff
changeset
|
4016 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
|
4017 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
|
4018 && ! 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
|
4019 same_at_end++; |
554594d88cd3
(Finsert_file_contents): Give up match-end only if
Richard M. Stallman <rms@gnu.org>
parents:
18647
diff
changeset
|
4020 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4021 /* 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
|
4022 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
|
4023 - (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
|
4024 if (overlap > 0) |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4025 same_at_end += overlap; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4026 |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4027 /* 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
|
4028 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
|
4029 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
|
4030 |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4031 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
|
4032 /* 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
|
4033 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
|
4034 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
|
4035 |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4036 /* 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
|
4037 keep it that way. */ |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4038 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
|
4039 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
|
4040 |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4041 replace_handled = 1; |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4042 } |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4043 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4044 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4045 /* 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
|
4046 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
|
4047 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
|
4048 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
|
4049 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4050 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
|
4051 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
|
4052 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
|
4053 in a more optimized way. */ |
22492
241ac6fe2983
(Finsert_file_contents): Redo the change for handling
Kenichi Handa <handa@m17n.org>
parents:
22478
diff
changeset
|
4054 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
|
4055 { |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4056 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
|
4057 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
|
4058 int overlap; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4059 int bufpos; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4060 /* 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
|
4061 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
|
4062 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
|
4063 int temp; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4064 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4065 /* 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
|
4066 CONVERSION_BUFFER. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4067 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4068 if (lseek (fd, XINT (beg), 0) < 0) |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4069 { |
24451
4e77e063fc79
(Finsert_file_contents): Use xfree.
Dave Love <fx@gnu.org>
parents:
24392
diff
changeset
|
4070 xfree (conversion_buffer); |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4071 report_file_error ("Setting file position", |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4072 Fcons (orig_filename, Qnil)); |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4073 } |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4074 |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4075 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
|
4076 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
|
4077 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
|
4078 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
|
4079 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4080 while (how_much < total) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4081 { |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4082 /* 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
|
4083 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
|
4084 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
|
4085 int this; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4086 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4087 /* 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
|
4088 immediate_quit = 1; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4089 QUIT; |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
4090 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
|
4091 immediate_quit = 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 if (this < 0 || this + unprocessed == 0) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4094 { |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4095 how_much = this; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4096 break; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4097 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4098 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4099 how_much += this; |
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 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
|
4102 { |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4103 int require, result; |
17273
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 this += unprocessed; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4106 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4107 /* 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
|
4108 make CONVERSION_BUFFER bigger. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4109 require = decoding_buffer_size (&coding, this); |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4110 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
|
4111 { |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4112 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
|
4113 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
|
4114 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4115 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4116 /* 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
|
4117 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
|
4118 coding.mode |= CODING_MODE_LAST_BLOCK; |
38973
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4119 if (coding.composing != COMPOSITION_DISABLED) |
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4120 coding_allocate_composition_data (&coding, BEGV); |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4121 result = decode_coding (&coding, read_buf, |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4122 conversion_buffer + inserted, |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4123 this, bufsize - inserted); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4124 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4125 /* 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
|
4126 unprocessed = this - coding.consumed; |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4127 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
|
4128 if (!NILP (current_buffer->enable_multibyte_characters)) |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4129 this = coding.produced; |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4130 else |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4131 this = str_as_unibyte (conversion_buffer + inserted, |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4132 coding.produced); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4133 } |
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 inserted += this; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4136 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4137 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4138 /* 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
|
4139 are present in CONVERSION_BUFFER. |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4140 HOW_MUCH should equal TOTAL, |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4141 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
|
4142 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4143 if (how_much < 0) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4144 { |
25321
2ad9fa0386b6
(Finsert_file_contents): Use xfree.
Dave Love <fx@gnu.org>
parents:
25006
diff
changeset
|
4145 xfree (conversion_buffer); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4146 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4147 if (how_much == -1) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4148 error ("IO error reading %s: %s", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
4149 SDATA (orig_filename), emacs_strerror (errno)); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4150 else if (how_much == -2) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4151 error ("maximum buffer size exceeded"); |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4152 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4153 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4154 /* 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
|
4155 with the buffer text. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4156 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4157 bufpos = 0; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4158 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
|
4159 && 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
|
4160 same_at_start++, bufpos++; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4161 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4162 /* 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
|
4163 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
|
4164 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4165 if (bufpos == inserted) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4166 { |
25321
2ad9fa0386b6
(Finsert_file_contents): Use xfree.
Dave Love <fx@gnu.org>
parents:
25006
diff
changeset
|
4167 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
|
4168 emacs_close (fd); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4169 specpdl_ptr--; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4170 /* 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
|
4171 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
|
4172 inserted = 0; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4173 goto handled; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4174 } |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4175 |
22753
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4176 /* 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
|
4177 character boundary. */ |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4178 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
|
4179 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
|
4180 && ! 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
|
4181 same_at_start--; |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4182 |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4183 /* 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
|
4184 the Emacs buffer. */ |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4185 bufpos = inserted; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4186 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4187 /* 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
|
4188 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
|
4189 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
|
4190 && 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
|
4191 same_at_end--, bufpos--; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4192 |
22753
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4193 /* 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
|
4194 character boundary. */ |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4195 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
|
4196 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
|
4197 && ! 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
|
4198 same_at_end++; |
4f555df67270
(Finsert_file_contents): When replacing, in multibyte bfr,
Richard M. Stallman <rms@gnu.org>
parents:
22697
diff
changeset
|
4199 |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4200 /* 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
|
4201 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
|
4202 if (overlap > 0) |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4203 same_at_end += overlap; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4204 |
17285
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4205 /* 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
|
4206 keep it that way. */ |
b065ab2a2e22
(Finsert_file_contents): When handling REPLACE,
Richard M. Stallman <rms@gnu.org>
parents:
17273
diff
changeset
|
4207 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
|
4208 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
|
4209 |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4210 /* 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
|
4211 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
|
4212 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
|
4213 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
|
4214 |
21949
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
4215 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
|
4216 { |
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4217 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
|
4218 temp = GPT; |
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4219 same_at_start = GPT_BYTE; |
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4220 } |
21949
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
4221 else |
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
4222 { |
a2166fb22606
(barf_or_query_if_file_exists): Encode file name.
Richard M. Stallman <rms@gnu.org>
parents:
21917
diff
changeset
|
4223 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
|
4224 } |
24877
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4225 /* 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
|
4226 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
|
4227 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
|
4228 0, 0, 0); |
38973
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4229 if (coding.cmp_data && coding.cmp_data->used) |
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4230 coding_restore_composition (&coding, Fcurrent_buffer ()); |
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4231 coding_free_composition_data (&coding); |
64125d607a06
Finsert_file_contents): Allocate, restore, and
Gerd Moellmann <gerd@gnu.org>
parents:
38967
diff
changeset
|
4232 |
24877
f0aa6266cd12
(Finsert_file_contents): In the case of REPALCE, call
Kenichi Handa <handa@m17n.org>
parents:
24712
diff
changeset
|
4233 /* 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
|
4234 inserted = PT - temp; |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4235 |
30605
2bf69b38f4d3
(Finsert_file_contents): Use xfree instead of free.
Gerd Moellmann <gerd@gnu.org>
parents:
30376
diff
changeset
|
4236 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
|
4237 emacs_close (fd); |
17273
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4238 specpdl_ptr--; |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4239 |
214a5cc55c56
(Finsert_file_contents): Determine the character coding
Richard M. Stallman <rms@gnu.org>
parents:
17271
diff
changeset
|
4240 goto handled; |
5975
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4241 } |
c766d816b07e
(Finsert_file_contents): New arg REPLACE.
Richard M. Stallman <rms@gnu.org>
parents:
5908
diff
changeset
|
4242 |
17286
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4243 if (! not_regular) |
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 register Lisp_Object temp; |
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 total = XINT (end) - XINT (beg); |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4248 |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4249 /* 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
|
4250 XSETINT (temp, total); |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4251 if (total != XINT (temp)) |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4252 error ("Maximum buffer size exceeded"); |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4253 } |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4254 else |
4ee0f02eff87
(Finsert_file_contents): Handle non-regular files.
Richard M. Stallman <rms@gnu.org>
parents:
17285
diff
changeset
|
4255 /* 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
|
4256 total = READ_BUF_SIZE; |
230 | 4257 |
4395
76b24be40a57
(Finsert_file_contents): Don't call prepare_to_modify_buffer
Richard M. Stallman <rms@gnu.org>
parents:
4270
diff
changeset
|
4258 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
|
4259 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
|
4260 |
651ee074f8b0
Change all references from point to PT.
Karl Heuer <kwzh@gnu.org>
parents:
16155
diff
changeset
|
4261 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
|
4262 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
|
4263 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
|
4264 |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4265 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
|
4266 { |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
4267 if (lseek (fd, XINT (beg), 0) < 0) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4268 report_file_error ("Setting file position", |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4269 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
|
4270 } |
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
4271 |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4272 /* 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
|
4273 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
|
4274 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
|
4275 error occurs. */ |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4276 how_much = 0; |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4277 |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4278 /* Total bytes inserted. */ |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4279 inserted = 0; |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4280 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4281 /* 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
|
4282 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
|
4283 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4284 int gap_size = GAP_SIZE; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4285 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4286 while (how_much < total) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4287 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4288 /* try is reserved in some compilers (Microsoft C) */ |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4289 int trytry = min (total - how_much, READ_BUF_SIZE); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4290 int this; |
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 if (not_regular) |
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 Lisp_Object val; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4295 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4296 /* Maybe make more room. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4297 if (gap_size < trytry) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4298 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4299 make_gap (total - gap_size); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4300 gap_size = GAP_SIZE; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4301 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4302 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4303 /* Read from the file, capturing `quit'. When an |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4304 error occurs, end the loop, and arrange for a quit |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4305 to be signaled after decoding the text we read. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4306 non_regular_fd = fd; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4307 non_regular_inserted = inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4308 non_regular_nbytes = trytry; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4309 val = internal_condition_case_1 (read_non_regular, Qnil, Qerror, |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4310 read_non_regular_quit); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4311 if (NILP (val)) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4312 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4313 read_quit = 1; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4314 break; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4315 } |
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 this = XINT (val); |
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 else |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4320 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4321 /* 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
|
4322 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
|
4323 here doesn't do any harm. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4324 immediate_quit = 1; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4325 QUIT; |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
4326 this = emacs_read (fd, BEG_ADDR + PT_BYTE - BEG_BYTE + inserted, trytry); |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4327 immediate_quit = 0; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4328 } |
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 if (this <= 0) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4331 { |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4332 how_much = this; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4333 break; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4334 } |
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 gap_size -= this; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4337 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4338 /* For a regular file, where TOTAL is the real size, |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4339 count HOW_MUCH to compare with it. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4340 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
|
4341 so don't bother counting in HOW_MUCH. |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4342 (INSERTED is where we count the number of characters inserted.) */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4343 if (! not_regular) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4344 how_much += this; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4345 inserted += this; |
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 } |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4348 |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4349 /* Make the text read part of the buffer. */ |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4350 GAP_SIZE -= inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4351 GPT += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4352 GPT_BYTE += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4353 ZV += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4354 ZV_BYTE += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4355 Z += inserted; |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4356 Z_BYTE += inserted; |
230 | 4357 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4358 if (GAP_SIZE > 0) |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4359 /* 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
|
4360 *GPT_ADDR = 0; |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4361 |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
4362 emacs_close (fd); |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4363 |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4364 /* Discard the unwind protect for closing the file. */ |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4365 specpdl_ptr--; |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4366 |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4367 if (how_much < 0) |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4368 error ("IO error reading %s: %s", |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
4369 SDATA (orig_filename), emacs_strerror (errno)); |
19399
8ece1f8d2ff6
(Finsert_file_contents) [DOS_NT]: Set buffer_file_type
Geoff Voelker <voelker@cs.washington.edu>
parents:
19206
diff
changeset
|
4370 |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4371 notfound: |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4372 |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4373 if (! coding_system_decided) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4374 { |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4375 /* The coding system is not yet decided. Decide it by an |
26638 | 4376 optimized method for handling `coding:' tag. |
4377 | |
4378 Note that we can get here only if the buffer was empty | |
4379 before the insertion. */ | |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4380 Lisp_Object val; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4381 val = Qnil; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4382 |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4383 if (!NILP (Vcoding_system_for_read)) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4384 val = Vcoding_system_for_read; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4385 else |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4386 { |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4387 /* 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
|
4388 before the insertion, we can toggle |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4389 enable-multibyte-characters directly here without taking |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4390 care of marker adjustment and byte combining problem. By |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4391 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
|
4392 the inserted text. */ |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4393 Lisp_Object unwind_data; |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46285
diff
changeset
|
4394 int count = SPECPDL_INDEX (); |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4395 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4396 unwind_data = Fcons (current_buffer->enable_multibyte_characters, |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4397 Fcons (current_buffer->undo_list, |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4398 Fcurrent_buffer ())); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4399 current_buffer->enable_multibyte_characters = Qnil; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4400 current_buffer->undo_list = Qt; |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4401 record_unwind_protect (decide_coding_unwind, unwind_data); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4402 |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4403 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
|
4404 { |
22811
6e11bb792d4f
(Finsert_file_contents): Call Vset_auto_coding_function
Kenichi Handa <handa@m17n.org>
parents:
22753
diff
changeset
|
4405 val = call2 (Vset_auto_coding_function, |
6e11bb792d4f
(Finsert_file_contents): Call Vset_auto_coding_function
Kenichi Handa <handa@m17n.org>
parents:
22753
diff
changeset
|
4406 filename, make_number (inserted)); |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4407 } |
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 (NILP (val)) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4410 { |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4411 /* 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
|
4412 file-coding-system-alist. */ |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4413 Lisp_Object args[6], coding_systems; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4414 |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4415 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
|
4416 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
|
4417 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
|
4418 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
|
4419 val = XCAR (coding_systems); |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4420 } |
26714
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4421 |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4422 unbind_to (count, Qnil); |
7dff939f49fe
(decide_coding_unwind): Renamed from
Kenichi Handa <handa@m17n.org>
parents:
26638
diff
changeset
|
4423 inserted = Z_BYTE - BEG_BYTE; |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4424 } |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4425 |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4426 /* 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
|
4427 We can't simply do |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4428 setup_coding_system (val, &coding); |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4429 on some system. */ |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4430 { |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4431 struct coding_system temp_coding; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4432 setup_coding_system (val, &temp_coding); |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4433 bcopy (&temp_coding, &coding, sizeof coding); |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4434 } |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4435 /* 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
|
4436 set_coding_system = 1; |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4437 |
24932
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
4438 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
|
4439 && ! NILP (val)) |
27a1d7a4c444
(Finsert_file_contents): If reading into a unibyte
Richard M. Stallman <rms@gnu.org>
parents:
24909
diff
changeset
|
4440 /* 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
|
4441 end-of-line conversion. */ |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4442 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
|
4443 coding.src_multibyte = 0; |
c449a480768c
(Finsert_file_contents): Be sure to setup src_multibyte
Kenichi Handa <handa@m17n.org>
parents:
29478
diff
changeset
|
4444 coding.dst_multibyte |
c449a480768c
(Finsert_file_contents): Be sure to setup src_multibyte
Kenichi Handa <handa@m17n.org>
parents:
29478
diff
changeset
|
4445 = !NILP (current_buffer->enable_multibyte_characters); |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4446 } |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4447 |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4448 if (!NILP (visit) |
39023
c0daac54d3e1
(Finsert_file_contents): Don't change the multibyteness
Gerd Moellmann <gerd@gnu.org>
parents:
39007
diff
changeset
|
4449 /* 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
|
4450 && NILP (replace) |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4451 && (coding.type == coding_type_no_conversion |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4452 || coding.type == coding_type_raw_text)) |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4453 { |
39023
c0daac54d3e1
(Finsert_file_contents): Don't change the multibyteness
Gerd Moellmann <gerd@gnu.org>
parents:
39007
diff
changeset
|
4454 /* 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
|
4455 unibyte. */ |
c0daac54d3e1
(Finsert_file_contents): Don't change the multibyteness
Gerd Moellmann <gerd@gnu.org>
parents:
39007
diff
changeset
|
4456 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
|
4457 coding.dst_multibyte = 0; |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4458 } |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4459 |
23878
0d713a8426b6
(Finsert_file_contents): Even if INSERTED is zero, if
Kenichi Handa <handa@m17n.org>
parents:
23617
diff
changeset
|
4460 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
|
4461 { |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4462 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
|
4463 { |
21009c0c7598
(Finsert_file_contents): Read a file contents into the
Kenichi Handa <handa@m17n.org>
parents:
20897
diff
changeset
|
4464 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
|
4465 &coding, 0, 0); |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
4466 inserted = coding.produced_char; |
21138
d10664297ed2
(Finsert_file_contents): Don't do position adjustments
Kenichi Handa <handa@m17n.org>
parents:
21048
diff
changeset
|
4467 } |
21504
0e2b0f6fc9c0
(Finsert_file_contents): Call adjust_after_insert also
Andreas Schwab <schwab@suse.de>
parents:
21423
diff
changeset
|
4468 else |
0e2b0f6fc9c0
(Finsert_file_contents): Call adjust_after_insert also
Andreas Schwab <schwab@suse.de>
parents:
21423
diff
changeset
|
4469 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
|
4470 inserted); |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4471 } |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4472 |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4473 #ifdef DOS_NT |
22697
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4474 /* 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
|
4475 (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
|
4476 conversion). */ |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4477 if ((coding.eol_type == CODING_EOL_UNDECIDED |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4478 || coding.eol_type == CODING_EOL_LF) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4479 && ! CODING_REQUIRE_DECODING (&coding)) |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4480 current_buffer->buffer_file_type = Qt; |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4481 else |
578f11200ed5
(Finsert_file_contents): Cancel previous change. Setup
Kenichi Handa <handa@m17n.org>
parents:
22681
diff
changeset
|
4482 current_buffer->buffer_file_type = Qnil; |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4483 #endif |
230 | 4484 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4485 handled: |
230 | 4486 |
485 | 4487 if (!NILP (visit)) |
230 | 4488 { |
6177
ac2ef13dca1b
(Finsert_file_contents): If undo_list was t, leave it t.
Richard M. Stallman <rms@gnu.org>
parents:
6036
diff
changeset
|
4489 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
|
4490 current_buffer->undo_list = Qnil; |
230 | 4491 #ifdef APOLLO |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
4492 stat (SDATA (filename), &st); |
230 | 4493 #endif |
5390
d9c81d7079f3
(Finsert_file_contents): Don't run after change hook
Richard M. Stallman <rms@gnu.org>
parents:
5351
diff
changeset
|
4494 |
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
|
4495 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
|
4496 { |
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 current_buffer->modtime = st.st_mtime; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4498 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
|
4499 } |
5390
d9c81d7079f3
(Finsert_file_contents): Don't run after change hook
Richard M. Stallman <rms@gnu.org>
parents:
5351
diff
changeset
|
4500 |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
4501 SAVE_MODIFF = MODIFF; |
230 | 4502 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
|
4503 XSETFASTINT (current_buffer->save_length, Z - BEG); |
230 | 4504 #ifdef CLASH_DETECTION |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4505 if (NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4506 { |
11658
304577bc9b51
(Finsert_file_contents): Use file_truename for unlocking.
Richard M. Stallman <rms@gnu.org>
parents:
11632
diff
changeset
|
4507 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
|
4508 unlock_file (current_buffer->file_truename); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4509 unlock_file (filename); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4510 } |
230 | 4511 #endif /* CLASH_DETECTION */ |
9915
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
4512 if (not_regular) |
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
4513 Fsignal (Qfile_error, |
ec185bc66071
(Finsert_file_contents): If VISIT, set the buffer components
Richard M. Stallman <rms@gnu.org>
parents:
9872
diff
changeset
|
4514 Fcons (build_string ("not a regular file"), |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4515 Fcons (orig_filename, Qnil))); |
230 | 4516 } |
4517 | |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4518 /* Decode file format */ |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4519 if (inserted > 0) |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4520 { |
34167
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4521 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
|
4522 |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4523 /* 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
|
4524 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
|
4525 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
|
4526 if (!NILP (visit)) |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4527 { |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4528 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
|
4529 current_buffer->undo_list = Qt; |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4530 } |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4531 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
4532 insval = call3 (Qformat_decode, |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4533 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
|
4534 CHECK_NUMBER (insval); |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4535 inserted = XFASTINT (insval); |
34167
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4536 |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4537 if (!NILP (visit)) |
ce6d3ca84e6d
(Finsert_file_contents): When VISIT is t, don't
Gerd Moellmann <gerd@gnu.org>
parents:
34104
diff
changeset
|
4538 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
|
4539 } |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
4540 |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
4541 if (set_coding_system) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
4542 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
|
4543 |
17396
7fbce3c83857
(Finsert_file_contents): Do call signal_after_change
Richard M. Stallman <rms@gnu.org>
parents:
17287
diff
changeset
|
4544 /* 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
|
4545 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
|
4546 "before" the buffer is changed. */ |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
4547 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
|
4548 && (NILP (visit) || !NILP (replace))) |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
4549 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
4550 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
|
4551 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
|
4552 } |
20432
987ddd5cb6ee
(Finsert_file_contents): Set Vlast_coding_system_used
Kenichi Handa <handa@m17n.org>
parents:
20370
diff
changeset
|
4553 |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4554 p = Vafter_insert_file_functions; |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
4555 while (CONSP (p)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4556 { |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
4557 insval = call1 (XCAR (p), make_number (inserted)); |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4558 if (!NILP (insval)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4559 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
4560 CHECK_NUMBER (insval); |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4561 inserted = XFASTINT (insval); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4562 } |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4563 QUIT; |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
4564 p = XCDR (p); |
29152
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4565 } |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4566 |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4567 if (!NILP (visit) |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4568 && current_buffer->modtime == -1) |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4569 { |
9e9b47b53f50
1999-06-01 Kenichi HANDA <handa@etl.go.jp>
Dave Love <fx@gnu.org>
parents:
29009
diff
changeset
|
4570 /* 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
|
4571 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
|
4572 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4573 |
38450
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4574 if (read_quit) |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4575 Fsignal (Qquit, Qnil); |
8416a4627a13
(unwind_read): Function removed.
Gerd Moellmann <gerd@gnu.org>
parents:
38367
diff
changeset
|
4576 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
4577 /* ??? 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
|
4578 if (NILP (val)) |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4579 val = Fcons (orig_filename, |
6036
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4580 Fcons (make_number (inserted), |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4581 Qnil)); |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4582 |
7e9984c9a36e
(Finsert_file_contents): If REPLACE, always do lseek.
Richard M. Stallman <rms@gnu.org>
parents:
5978
diff
changeset
|
4583 RETURN_UNGCPRO (unbind_to (count, val)); |
230 | 4584 } |
3787
04b741620a50
* fileio.c (Finsert_file_contents): Two new args, BEG and END.
Jim Blandy <jimb@redhat.com>
parents:
3721
diff
changeset
|
4585 |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4586 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
|
4587 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
|
4588 Lisp_Object, Lisp_Object)); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4589 |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4590 /* 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
|
4591 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
|
4592 |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4593 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
|
4594 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
|
4595 -- K.Handa */ |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4596 |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
4597 static Lisp_Object |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4598 build_annotations_unwind (buf) |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4599 Lisp_Object buf; |
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 Lisp_Object tembuf; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4602 |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4603 if (XBUFFER (buf) == current_buffer) |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4604 return Qnil; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4605 tembuf = Fcurrent_buffer (); |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4606 Fset_buffer (buf); |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4607 Fkill_buffer (tembuf); |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4608 return Qnil; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4609 } |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4610 |
41151
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4611 /* 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
|
4612 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4613 void |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4614 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
|
4615 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
|
4616 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
|
4617 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
|
4618 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4619 Lisp_Object val; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4620 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4621 if (auto_saving) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4622 val = Qnil; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4623 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
|
4624 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
|
4625 else |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4626 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4627 /* 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
|
4628 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
|
4629 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
|
4630 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
|
4631 `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
|
4632 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4633 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
|
4634 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
|
4635 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
|
4636 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
|
4637 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
|
4638 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4639 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
|
4640 if (NILP (val) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4641 || 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
|
4642 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4643 val = Qnil; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4644 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
|
4645 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
|
4646 } |
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 if (NILP (val)) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4649 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4650 /* 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
|
4651 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
|
4652 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4653 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
|
4654 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
|
4655 args[6] = lockname; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4656 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
|
4657 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
|
4658 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
|
4659 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4660 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4661 if (NILP (val) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4662 && !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
|
4663 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4664 /* 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
|
4665 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
|
4666 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
|
4667 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
|
4668 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4669 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4670 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
|
4671 && !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
|
4672 /* Confirm that VAL can surely encode the current region. */ |
45640
a181c1d41a78
(choose_write_coding_system): Call select-safe-coding-system properly.
Pavel Janík <Pavel@Janik.cz>
parents:
45628
diff
changeset
|
4673 val = call5 (Vselect_safe_coding_system_function, |
a181c1d41a78
(choose_write_coding_system): Call select-safe-coding-system properly.
Pavel Janík <Pavel@Janik.cz>
parents:
45628
diff
changeset
|
4674 start, end, val, Qnil, filename); |
41151
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4675 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4676 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
|
4677 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
|
4678 && !using_default_coding) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4679 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4680 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
|
4681 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
|
4682 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
|
4683 &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
|
4684 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
|
4685 { |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4686 Lisp_Object subsidiaries; |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4687 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4688 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
|
4689 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
|
4690 if (VECTORP (subsidiaries) |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4691 && 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
|
4692 coding->symbol |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4693 = 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
|
4694 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4695 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4696 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4697 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
|
4698 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
|
4699 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
|
4700 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4701 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4702 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
|
4703 |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4704 done_setup_coding: |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4705 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
|
4706 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
|
4707 } |
02fcac02955b
(choose_write_coding_system): New fun, extracted from Fwrite_region.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41032
diff
changeset
|
4708 |
21020
f7ace8487b28
(auto_save_1): Pass new arg to Fwrite_region.
Richard M. Stallman <rms@gnu.org>
parents:
20944
diff
changeset
|
4709 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
|
4710 "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
|
4711 doc: /* Write current region into specified file. |
41993
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4712 When called from a program, requires three arguments: |
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4713 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
|
4714 specifying the part of the buffer to write. |
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4715 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
|
4716 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
|
4717 instead of any buffer contents; END is ignored. |
0b548ba2f6d6
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
41969
diff
changeset
|
4718 |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4719 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
|
4720 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
|
4721 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
|
4722 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
|
4723 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
|
4724 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
|
4725 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
|
4726 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
|
4727 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
|
4728 If VISIT is neither t nor nil nor a string, |
46323
7500d7e20ea7
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
46293
diff
changeset
|
4729 that means do not display the \"Wrote file\" message. |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4730 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
|
4731 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
|
4732 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
|
4733 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
|
4734 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
|
4735 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
|
4736 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
|
4737 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
|
4738 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
4739 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
|
4740 `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
|
4741 `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
|
4742 `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
|
4743 (start, end, filename, append, visit, lockname, mustbenew) |
25597
16a9c3c6f90e
(Fwrite_region): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
25595
diff
changeset
|
4744 Lisp_Object start, end, filename, append, visit, lockname, mustbenew; |
230 | 4745 { |
4746 register int desc; | |
4747 int failure; | |
31829
43566b0aec59
Avoid some more compiler warnings.
Gerd Moellmann <gerd@gnu.org>
parents:
31775
diff
changeset
|
4748 int save_errno = 0; |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
4749 const unsigned char *fn; |
230 | 4750 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
|
4751 int tem; |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46285
diff
changeset
|
4752 int count = SPECPDL_INDEX (); |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4753 int count1; |
230 | 4754 #ifdef VMS |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4755 unsigned char *fname = 0; /* If non-0, original filename (must rename) */ |
230 | 4756 #endif /* VMS */ |
848 | 4757 Lisp_Object handler; |
2407
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
4758 Lisp_Object visit_file; |
41211
2e188a8c4ad8
(Fwrite_region): Avoid initializer for Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents:
41181
diff
changeset
|
4759 Lisp_Object annotations; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4760 Lisp_Object encoded_filename; |
33249
bc4bfaca97aa
(Fwrite_region): Use `visiting' rather than `visit'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31829
diff
changeset
|
4761 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
|
4762 int quietly = !NILP (visit); |
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
4763 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
|
4764 struct buffer *given_buffer; |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4765 #ifdef DOS_NT |
18764
2ef1d8539441
(Fwrite_region) [DOS_NT]: Always use binary mode since
Richard M. Stallman <rms@gnu.org>
parents:
18744
diff
changeset
|
4766 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
|
4767 #endif /* DOS_NT */ |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
4768 struct coding_system coding; |
230 | 4769 |
33249
bc4bfaca97aa
(Fwrite_region): Use `visiting' rather than `visit'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31829
diff
changeset
|
4770 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
|
4771 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
|
4772 |
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
4773 if (!NILP (start) && !STRINGP (start)) |
230 | 4774 validate_region (&start, &end); |
4775 | |
41288
1d1183771c4f
(Fwrite_region): Move choose_write_coding_system to after build_annotations.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41211
diff
changeset
|
4776 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
|
4777 |
2407
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
4778 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
|
4779 |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4780 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
|
4781 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
|
4782 |
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
4783 if (STRINGP (visit)) |
2435
b72453ad92ae
(Fwrite_region): Don't fail to set visit_file.
Richard M. Stallman <rms@gnu.org>
parents:
2407
diff
changeset
|
4784 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
|
4785 else |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
4786 visit_file = filename; |
1c590cd84ab3
(Fexpand_file_name): Default DEFALT at beginning,
Richard M. Stallman <rms@gnu.org>
parents:
2280
diff
changeset
|
4787 |
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
4788 if (NILP (lockname)) |
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
4789 lockname = visit_file; |
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
4790 |
41211
2e188a8c4ad8
(Fwrite_region): Avoid initializer for Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents:
41181
diff
changeset
|
4791 annotations = Qnil; |
2e188a8c4ad8
(Fwrite_region): Avoid initializer for Lisp_Object.
Richard M. Stallman <rms@gnu.org>
parents:
41181
diff
changeset
|
4792 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4793 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4794 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
|
4795 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
|
4796 /* 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
|
4797 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
|
4798 handler = Ffind_file_name_handler (visit, Qwrite_region); |
848 | 4799 |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4800 if (!NILP (handler)) |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4801 { |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4802 Lisp_Object val; |
3705
309c27256ceb
(Fcopy_file): Pass all the args to the handler.
Richard M. Stallman <rms@gnu.org>
parents:
3598
diff
changeset
|
4803 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
|
4804 filename, append, visit); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4805 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4806 if (visiting) |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4807 { |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
4808 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
|
4809 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
|
4810 current_buffer->filename = visit_file; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4811 } |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
4812 UNGCPRO; |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4813 return val; |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4814 } |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
4815 |
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
4816 /* 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
|
4817 if (NILP (start)) |
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
4818 { |
9307
44d6fc4b638b
(Finsert_file_contents, Fwrite_region, Fdo_auto_save, Fset_buffer_auto_saved):
Karl Heuer <kwzh@gnu.org>
parents:
9291
diff
changeset
|
4819 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
|
4820 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
|
4821 } |
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
4822 |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4823 record_unwind_protect (build_annotations_unwind, Fcurrent_buffer ()); |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46285
diff
changeset
|
4824 count1 = SPECPDL_INDEX (); |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4825 |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4826 given_buffer = current_buffer; |
45561
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4827 |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4828 if (!STRINGP (start)) |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4829 { |
45561
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4830 annotations = build_annotations (start, end); |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4831 |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4832 if (current_buffer != given_buffer) |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4833 { |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4834 XSETFASTINT (start, BEGV); |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4835 XSETFASTINT (end, ZV); |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4836 } |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4837 } |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4838 |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4839 UNGCPRO; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4840 |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4841 GCPRO5 (start, filename, annotations, visit_file, lockname); |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4842 |
41288
1d1183771c4f
(Fwrite_region): Move choose_write_coding_system to after build_annotations.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41211
diff
changeset
|
4843 /* 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
|
4844 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
|
4845 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
|
4846 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
|
4847 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
|
4848 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
|
4849 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
|
4850 |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
4851 given_buffer = current_buffer; |
45561
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4852 if (! STRINGP (start)) |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4853 { |
45561
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4854 annotations = build_annotations_2 (start, end, |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4855 coding.pre_write_conversion, annotations); |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4856 if (current_buffer != given_buffer) |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4857 { |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4858 XSETFASTINT (start, BEGV); |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4859 XSETFASTINT (end, ZV); |
54b933234eb4
(Fwrite_region): If START is a string, don't make any annotations.
Richard M. Stallman <rms@gnu.org>
parents:
45551
diff
changeset
|
4860 } |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
4861 } |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
4862 |
230 | 4863 #ifdef CLASH_DETECTION |
4864 if (!auto_saving) | |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
4865 { |
19206
c21764412813
(Fwrite_region): Turn off the feature of checking
Richard M. Stallman <rms@gnu.org>
parents:
19067
diff
changeset
|
4866 #if 0 /* This causes trouble for GNUS. */ |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
4867 /* 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
|
4868 query before proceeding. */ |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
4869 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
|
4870 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
|
4871 #endif |
16317
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
4872 |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
4873 lock_file (lockname); |
763b3b143ed6
(Vuser_login_name): Declared extern.
Richard M. Stallman <rms@gnu.org>
parents:
16226
diff
changeset
|
4874 } |
230 | 4875 #endif /* CLASH_DETECTION */ |
4876 | |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4877 encoded_filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4878 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
4879 fn = SDATA (encoded_filename); |
230 | 4880 desc = -1; |
485 | 4881 if (!NILP (append)) |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4882 #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
|
4883 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
|
4884 #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
|
4885 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
|
4886 #endif /* not DOS_NT */ |
230 | 4887 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
4888 if (desc < 0 && (NILP (append) || errno == ENOENT)) |
230 | 4889 #ifdef VMS |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4890 if (auto_saving) /* Overwrite any previous version of autosave file */ |
230 | 4891 { |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4892 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
|
4893 desc = emacs_open (fn, O_RDWR, 0); |
230 | 4894 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
|
4895 desc = creat_copy_attrs (STRINGP (current_buffer->filename) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
4896 ? SDATA (current_buffer->filename) : 0, |
536 | 4897 fn); |
230 | 4898 } |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4899 else /* Write to temporary name and rename if no errors */ |
230 | 4900 { |
4901 Lisp_Object temp_name; | |
4902 temp_name = Ffile_name_directory (filename); | |
4903 | |
485 | 4904 if (!NILP (temp_name)) |
230 | 4905 { |
4906 temp_name = Fmake_temp_name (concat2 (temp_name, | |
4907 build_string ("$$SAVE$$"))); | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
4908 fname = SDATA (filename); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
4909 fn = SDATA (temp_name); |
230 | 4910 desc = creat_copy_attrs (fname, fn); |
4911 if (desc < 0) | |
4912 { | |
4913 /* If we can't open the temporary file, try creating a new | |
4914 version of the original file. VMS "creat" creates a | |
4915 new version rather than truncating an existing file. */ | |
4916 fn = fname; | |
4917 fname = 0; | |
4918 desc = creat (fn, 0666); | |
4919 #if 0 /* This can clobber an existing file and fail to replace it, | |
4920 if the user runs out of space. */ | |
4921 if (desc < 0) | |
4922 { | |
4923 /* We can't make a new version; | |
4924 try to truncate and rewrite existing version if any. */ | |
4925 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
|
4926 desc = emacs_open (fn, O_RDWR, 0); |
230 | 4927 } |
4928 #endif | |
4929 } | |
4930 } | |
4931 else | |
4932 desc = creat (fn, 0666); | |
4933 } | |
4934 #else /* not VMS */ | |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4935 #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
|
4936 desc = emacs_open (fn, |
36693
ca1461008b2c
(Fwrite_region) [DOS_NT]: Remove O_TRUNC from open
Gerd Moellmann <gerd@gnu.org>
parents:
36633
diff
changeset
|
4937 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
|
4938 | (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
|
4939 S_IREAD | S_IWRITE); |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
4940 #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
|
4941 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
|
4942 | (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
|
4943 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
|
4944 #endif /* not DOS_NT */ |
230 | 4945 #endif /* not VMS */ |
4946 | |
4947 if (desc < 0) | |
4948 { | |
4949 #ifdef CLASH_DETECTION | |
4950 save_errno = errno; | |
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
4951 if (!auto_saving) unlock_file (lockname); |
230 | 4952 errno = save_errno; |
4953 #endif /* CLASH_DETECTION */ | |
28846
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4954 UNGCPRO; |
230 | 4955 report_file_error ("Opening output file", Fcons (filename, Qnil)); |
4956 } | |
4957 | |
4958 record_unwind_protect (close_file_unwind, make_number (desc)); | |
4959 | |
22681
127d903d615a
(Ffile_regular_p) [WINDOWSNT]: Bind
Richard M. Stallman <rms@gnu.org>
parents:
22668
diff
changeset
|
4960 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
|
4961 { |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4962 long ret; |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4963 |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4964 if (NUMBERP (append)) |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4965 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
|
4966 else |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4967 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
|
4968 if (ret < 0) |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4969 { |
230 | 4970 #ifdef CLASH_DETECTION |
28846
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4971 if (!auto_saving) unlock_file (lockname); |
230 | 4972 #endif /* CLASH_DETECTION */ |
28846
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4973 UNGCPRO; |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4974 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
|
4975 } |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4976 } |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4977 |
0027ff9c083a
(Fwrite_region): If APPEND arg is an integer, seek to
Dave Love <fx@gnu.org>
parents:
28697
diff
changeset
|
4978 UNGCPRO; |
230 | 4979 |
4980 #ifdef VMS | |
4981 /* | |
4982 * Kludge Warning: The VMS C RTL likes to insert carriage returns | |
4983 * if we do writes that don't end with a carriage return. Furthermore | |
4984 * it cannot handle writes of more then 16K. The modified | |
4985 * version of "sys_write" in SYSDEP.C (see comment there) copes with | |
4986 * this EXCEPT for the last record (iff it doesn't end with a carriage | |
4987 * return). This implies that if your buffer doesn't end with a carriage | |
4988 * return, you get one free... tough. However it also means that if | |
4989 * we make two calls to sys_write (a la the following code) you can | |
4990 * get one at the gap as well. The easiest way to fix this (honest) | |
4991 * is to move the gap to the next newline (or the end of the buffer). | |
4992 * Thus this change. | |
4993 * | |
4994 * Yech! | |
4995 */ | |
4996 if (GPT > BEG && GPT_ADDR[-1] != '\n') | |
4997 move_gap (find_next_newline (GPT, 1)); | |
17723
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
4998 #else |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
4999 /* 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
|
5000 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
|
5001 if (INTEGERP (start) |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5002 && coding.type == coding_type_iso2022 |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5003 && coding.flags & CODING_FLAG_ISO_DESIGNATE_AT_BOL |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5004 && 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
|
5005 { |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5006 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
|
5007 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
|
5008 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
|
5009 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
|
5010 } |
230 | 5011 #endif |
5012 | |
5013 failure = 0; | |
5014 immediate_quit = 1; | |
5015 | |
5410
c96b98efb5b4
(Fwrite_region): Don't change START and END from nil
Richard M. Stallman <rms@gnu.org>
parents:
5395
diff
changeset
|
5016 if (STRINGP (start)) |
230 | 5017 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5018 failure = 0 > a_write (desc, start, 0, SCHARS (start), |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5019 &annotations, &coding); |
230 | 5020 save_errno = errno; |
5021 } | |
5022 else if (XINT (start) != XINT (end)) | |
5023 { | |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5024 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
|
5025 |
230 | 5026 if (XINT (start) < GPT) |
5027 { | |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5028 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
|
5029 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
|
5030 &annotations, &coding); |
230 | 5031 save_errno = errno; |
5032 } | |
5033 | |
5034 if (XINT (end) > GPT && !failure) | |
5035 { | |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5036 tem = max (XINT (start), GPT); |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5037 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
|
5038 &annotations, &coding); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5039 save_errno = errno; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5040 } |
13451
3a69848f7892
(Fwrite_region): Move the code that writes annotations for empty files.
Richard M. Stallman <rms@gnu.org>
parents:
13221
diff
changeset
|
5041 } |
3a69848f7892
(Fwrite_region): Move the code that writes annotations for empty files.
Richard M. Stallman <rms@gnu.org>
parents:
13221
diff
changeset
|
5042 else |
3a69848f7892
(Fwrite_region): Move the code that writes annotations for empty files.
Richard M. Stallman <rms@gnu.org>
parents:
13221
diff
changeset
|
5043 { |
3a69848f7892
(Fwrite_region): Move the code that writes annotations for empty files.
Richard M. Stallman <rms@gnu.org>
parents:
13221
diff
changeset
|
5044 /* 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
|
5045 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
|
5046 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
|
5047 save_errno = errno; |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5048 } |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5049 |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
5050 if (CODING_REQUIRE_FLUSHING (&coding) |
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
5051 && !(coding.mode & CODING_MODE_LAST_BLOCK) |
20651
0de9f45a1db6
(Finsert_file_contents): When not decoding,
Richard M. Stallman <rms@gnu.org>
parents:
20621
diff
changeset
|
5052 && ! failure) |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5053 { |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5054 /* We have to flush out a data. */ |
20713
bab57112b50e
(Finsert_file_contents): Even if
Kenichi Handa <handa@m17n.org>
parents:
20707
diff
changeset
|
5055 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
|
5056 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
|
5057 save_errno = errno; |
230 | 5058 } |
5059 | |
5060 immediate_quit = 0; | |
5061 | |
2280
bd56d208ed22
* fileio.c (HAVE_FSYNC): Define, if appropriate.
Jim Blandy <jimb@redhat.com>
parents:
2257
diff
changeset
|
5062 #ifdef HAVE_FSYNC |
230 | 5063 /* Note fsync appears to change the modtime on BSD4.2 (both vax and sun). |
5064 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
|
5065 /* 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
|
5066 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
|
5067 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
|
5068 { |
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
5069 /* 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
|
5070 if (errno != EINTR) |
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
5071 failure = 1, save_errno = errno; |
1a96888d82ed
(Fwrite_region): If fsync fails with EINTR, don't
Karl Heuer <kwzh@gnu.org>
parents:
12369
diff
changeset
|
5072 } |
230 | 5073 #endif |
5074 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
5075 /* Spurious "file has changed on disk" warnings have been |
230 | 5076 observed on Suns as well. |
5077 It seems that `close' can change the modtime, under nfs. | |
5078 | |
5079 (This has supposedly been fixed in Sunos 4, | |
5080 but who knows about all the other machines with NFS?) */ | |
5081 #if 0 | |
5082 | |
5083 /* On VMS and APOLLO, must do the stat after the close | |
5084 since closing changes the modtime. */ | |
5085 #ifndef VMS | |
5086 #ifndef APOLLO | |
5087 /* Recall that #if defined does not work on VMS. */ | |
5088 #define FOO | |
5089 fstat (desc, &st); | |
5090 #endif | |
5091 #endif | |
5092 #endif | |
5093 | |
5094 /* 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
|
5095 if (emacs_close (desc) < 0) |
230 | 5096 failure = 1, save_errno = errno; |
5097 | |
5098 #ifdef VMS | |
5099 /* If we wrote to a temporary name and had no errors, rename to real name. */ | |
5100 if (fname) | |
5101 { | |
5102 if (!failure) | |
5103 failure = (rename (fn, fname) != 0), save_errno = errno; | |
5104 fn = fname; | |
5105 } | |
5106 #endif /* VMS */ | |
5107 | |
5108 #ifndef FOO | |
5109 stat (fn, &st); | |
5110 #endif | |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5111 /* 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
|
5112 specpdl_ptr = specpdl + count1; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5113 /* 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
|
5114 visit_file = unbind_to (count, visit_file); |
230 | 5115 |
5116 #ifdef CLASH_DETECTION | |
5117 if (!auto_saving) | |
12853
032f8aae6bbe
(Fwrite_region): New arg lockname.
Richard M. Stallman <rms@gnu.org>
parents:
12642
diff
changeset
|
5118 unlock_file (lockname); |
230 | 5119 #endif /* CLASH_DETECTION */ |
5120 | |
5121 /* Do this before reporting IO error | |
5122 to avoid a "file has changed on disk" warning on | |
5123 next attempt to save. */ | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5124 if (visiting) |
230 | 5125 current_buffer->modtime = st.st_mtime; |
5126 | |
5127 if (failure) | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5128 error ("IO error writing %s: %s", SDATA (filename), |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5129 emacs_strerror (save_errno)); |
230 | 5130 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5131 if (visiting) |
230 | 5132 { |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5133 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
|
5134 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
|
5135 current_buffer->filename = visit_file; |
7551
69f20f10799a
(Fwrite_region): Set update_mode_lines.
Richard M. Stallman <rms@gnu.org>
parents:
7549
diff
changeset
|
5136 update_mode_lines++; |
230 | 5137 } |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5138 else if (quietly) |
230 | 5139 return Qnil; |
5140 | |
5141 if (!auto_saving) | |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
5142 message_with_string ("Wrote %s", visit_file, 1); |
230 | 5143 |
5144 return Qnil; | |
5145 } | |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5146 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5147 Lisp_Object merge (); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5148 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5149 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
|
5150 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
|
5151 (a, b) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5152 Lisp_Object a, b; |
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 return Flss (Fcar (a), Fcar (b)); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5155 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5156 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5157 /* 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
|
5158 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
|
5159 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
|
5160 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
|
5161 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
|
5162 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
|
5163 as save-excursion would do. */ |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5164 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5165 static Lisp_Object |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5166 build_annotations (start, end) |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5167 Lisp_Object start, end; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5168 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5169 Lisp_Object annotations; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5170 Lisp_Object p, res; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5171 struct gcpro gcpro1, gcpro2; |
16044
63b85944e37b
(build_annotations): Remember original buffer that the
Richard M. Stallman <rms@gnu.org>
parents:
15738
diff
changeset
|
5172 Lisp_Object original_buffer; |
30927
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5173 int i; |
16044
63b85944e37b
(build_annotations): Remember original buffer that the
Richard M. Stallman <rms@gnu.org>
parents:
15738
diff
changeset
|
5174 |
63b85944e37b
(build_annotations): Remember original buffer that the
Richard M. Stallman <rms@gnu.org>
parents:
15738
diff
changeset
|
5175 XSETBUFFER (original_buffer, current_buffer); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5176 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5177 annotations = Qnil; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5178 p = Vwrite_region_annotate_functions; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5179 GCPRO2 (annotations, p); |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
5180 while (CONSP (p)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5181 { |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5182 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
|
5183 Vwrite_region_annotations_so_far = annotations; |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
5184 res = call2 (XCAR (p), start, end); |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5185 /* 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
|
5186 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
|
5187 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
|
5188 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
|
5189 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
|
5190 if (current_buffer != given_buffer) |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5191 { |
18107
7e13abad5cca
(Fwrite_region, build_annotations):
Richard M. Stallman <rms@gnu.org>
parents:
17959
diff
changeset
|
5192 XSETFASTINT (start, BEGV); |
7e13abad5cca
(Fwrite_region, build_annotations):
Richard M. Stallman <rms@gnu.org>
parents:
17959
diff
changeset
|
5193 XSETFASTINT (end, ZV); |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5194 annotations = Qnil; |
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
5195 } |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5196 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
|
5197 annotations = merge (annotations, res, Qcar_less_than_car); |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
5198 p = XCDR (p); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5199 } |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5200 |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5201 /* 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
|
5202 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
|
5203 p = Vauto_save_file_format; |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5204 else |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5205 p = current_buffer->file_format; |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
5206 for (i = 0; CONSP (p); p = XCDR (p), ++i) |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5207 { |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5208 struct buffer *given_buffer = current_buffer; |
30927
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5209 |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5210 Vwrite_region_annotations_so_far = annotations; |
30927
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5211 |
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5212 /* 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
|
5213 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
|
5214 current. */ |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
5215 res = call5 (Qformat_annotate_function, XCAR (p), start, end, |
30927
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5216 original_buffer, make_number (i)); |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5217 if (current_buffer != given_buffer) |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5218 { |
18107
7e13abad5cca
(Fwrite_region, build_annotations):
Richard M. Stallman <rms@gnu.org>
parents:
17959
diff
changeset
|
5219 XSETFASTINT (start, BEGV); |
7e13abad5cca
(Fwrite_region, build_annotations):
Richard M. Stallman <rms@gnu.org>
parents:
17959
diff
changeset
|
5220 XSETFASTINT (end, ZV); |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5221 annotations = Qnil; |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
5222 } |
30927
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5223 |
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5224 if (CONSP (res)) |
5c0b3d6959c4
(build_annotations): Add a comment explaining the
Gerd Moellmann <gerd@gnu.org>
parents:
30605
diff
changeset
|
5225 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
|
5226 } |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5227 |
41181
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5228 UNGCPRO; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5229 return annotations; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5230 } |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5231 |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5232 static Lisp_Object |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5233 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
|
5234 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
|
5235 { |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5236 struct gcpro gcpro1; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5237 Lisp_Object res; |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5238 |
00d37e30f901
(build_annotations): Split off the tail.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
41151
diff
changeset
|
5239 GCPRO1 (annotations); |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5240 /* 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
|
5241 implied by the current coding-system. */ |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5242 if (!NILP (pre_write_conversion)) |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5243 { |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5244 struct buffer *given_buffer = current_buffer; |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5245 Vwrite_region_annotations_so_far = annotations; |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5246 res = call2 (pre_write_conversion, start, end); |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5247 Flength (res); |
17723
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5248 annotations = (current_buffer != given_buffer |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5249 ? res |
f67a321c8fb6
(Fwrite_region): Add 7th optional arg
Kenichi Handa <handa@m17n.org>
parents:
17718
diff
changeset
|
5250 : merge (annotations, res, Qcar_less_than_car)); |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5251 } |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5252 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5253 UNGCPRO; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5254 return annotations; |
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 |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5257 /* 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
|
5258 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
|
5259 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
|
5260 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
|
5261 each at its appropriate position. |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5262 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5263 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
|
5264 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5265 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
|
5266 |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5267 static int |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5268 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
|
5269 int desc; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5270 Lisp_Object string; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5271 register int nchars; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5272 int pos; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5273 Lisp_Object *annot; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5274 struct coding_system *coding; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5275 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5276 Lisp_Object tem; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5277 int nextpos; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5278 int lastpos = pos + nchars; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5279 |
8079
3f543986a45a
(a_write): Loop while *ANNOT is listp, not consp. Previous code omitted
Roland McGrath <roland@gnu.org>
parents:
8068
diff
changeset
|
5280 while (NILP (*annot) || CONSP (*annot)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5281 { |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5282 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
|
5283 nextpos = pos - 1; |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5284 if (INTEGERP (tem)) |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5285 nextpos = XFASTINT (tem); |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5286 |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5287 /* 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
|
5288 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
|
5289 if (! (nextpos >= pos && nextpos <= lastpos)) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5290 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
|
5291 |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5292 /* 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
|
5293 if (nextpos > pos) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5294 { |
28561
98330e399518
(a_write): Remove redundant semi-colons.
Eli Zaretskii <eliz@gnu.org>
parents:
28507
diff
changeset
|
5295 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
|
5296 return -1; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5297 pos = nextpos; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5298 } |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5299 /* Output the annotation. */ |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5300 tem = Fcdr (Fcar (*annot)); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5301 if (STRINGP (tem)) |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5302 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5303 if (0 > e_write (desc, tem, 0, SCHARS (tem), coding)) |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5304 return -1; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5305 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5306 *annot = Fcdr (*annot); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5307 } |
21514 | 5308 return 0; |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5309 } |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
5310 |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5311 #ifndef WRITE_BUF_SIZE |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5312 #define WRITE_BUF_SIZE (16 * 1024) |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5313 #endif |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5314 |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5315 /* 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
|
5316 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
|
5317 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
|
5318 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
|
5319 |
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5320 static int |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5321 e_write (desc, string, start, end, coding) |
230 | 5322 int desc; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5323 Lisp_Object string; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5324 int start, end; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5325 struct coding_system *coding; |
230 | 5326 { |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5327 register char *addr; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5328 register int nbytes; |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5329 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
|
5330 int return_val = 0; |
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 if (start >= end) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5333 coding->composing = COMPOSITION_DISABLED; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5334 if (coding->composing != COMPOSITION_DISABLED) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5335 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
|
5336 |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5337 if (STRINGP (string)) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5338 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5339 addr = SDATA (string); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5340 nbytes = SBYTES (string); |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
5341 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
|
5342 } |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5343 else if (start < end) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5344 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5345 /* 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
|
5346 addr = CHAR_POS_ADDR (start); |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5347 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
|
5348 coding->src_multibyte |
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
5349 = !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
|
5350 } |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5351 else |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5352 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5353 addr = ""; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5354 nbytes = 0; |
29009
85822da9ece9
(Finsert_file_contents): Setup src_multibyte and
Kenichi Handa <handa@m17n.org>
parents:
28928
diff
changeset
|
5355 coding->src_multibyte = 1; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5356 } |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5357 |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5358 /* 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
|
5359 now it is handled within encode_coding. */ |
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5360 while (1) |
230 | 5361 { |
22441
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5362 int result; |
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5363 |
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5364 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
|
5365 if (coding->produced > 0) |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5366 { |
26088
b7aa6ac26872
Add support for large files, 64-bit Solaris, system locale codings.
Paul Eggert <eggert@twinsun.com>
parents:
25934
diff
changeset
|
5367 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
|
5368 if (coding->produced) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5369 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5370 return_val = -1; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5371 break; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5372 } |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5373 } |
27564
bb284bade4d0
(e_write): Fix the handling of
Kenichi Handa <handa@m17n.org>
parents:
27134
diff
changeset
|
5374 nbytes -= coding->consumed; |
bb284bade4d0
(e_write): Fix the handling of
Kenichi Handa <handa@m17n.org>
parents:
27134
diff
changeset
|
5375 addr += coding->consumed; |
bb284bade4d0
(e_write): Fix the handling of
Kenichi Handa <handa@m17n.org>
parents:
27134
diff
changeset
|
5376 if (result == CODING_FINISH_INSUFFICIENT_SRC |
bb284bade4d0
(e_write): Fix the handling of
Kenichi Handa <handa@m17n.org>
parents:
27134
diff
changeset
|
5377 && nbytes > 0) |
22441
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5378 { |
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5379 /* 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
|
5380 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
|
5381 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
|
5382 if (nbytes) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5383 { |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5384 return_val = -1; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5385 break; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5386 } |
22441
dd560c810254
(set_auto_coding_unwind): New function.
Kenichi Handa <handa@m17n.org>
parents:
22362
diff
changeset
|
5387 } |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5388 if (nbytes <= 0) |
17062
a9f1f08212ec
Include charset.h and coding.h.
Karl Heuer <kwzh@gnu.org>
parents:
16696
diff
changeset
|
5389 break; |
26855
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5390 start += coding->consumed_char; |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5391 if (coding->cmp_data) |
68a90068d489
(Fsubstitute_in_file_name): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
26742
diff
changeset
|
5392 coding_adjust_composition_offset (coding, start); |
230 | 5393 } |
29478
01f18086f2ac
(e_write): Free composition data if stored in
Kenichi Handa <handa@m17n.org>
parents:
29312
diff
changeset
|
5394 |
01f18086f2ac
(e_write): Free composition data if stored in
Kenichi Handa <handa@m17n.org>
parents:
29312
diff
changeset
|
5395 if (coding->cmp_data) |
01f18086f2ac
(e_write): Free composition data if stored in
Kenichi Handa <handa@m17n.org>
parents:
29312
diff
changeset
|
5396 coding_free_composition_data (coding); |
01f18086f2ac
(e_write): Free composition data if stored in
Kenichi Handa <handa@m17n.org>
parents:
29312
diff
changeset
|
5397 |
28561
98330e399518
(a_write): Remove redundant semi-colons.
Eli Zaretskii <eliz@gnu.org>
parents:
28507
diff
changeset
|
5398 return return_val; |
230 | 5399 } |
20533
60b9e88f8743
(Finsert_file_contents): Update call to CHAR_HEAD_P.
Richard M. Stallman <rms@gnu.org>
parents:
20432
diff
changeset
|
5400 |
230 | 5401 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
|
5402 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
|
5403 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
|
5404 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
|
5405 (buf) |
230 | 5406 Lisp_Object buf; |
5407 { | |
5408 struct buffer *b; | |
5409 struct stat st; | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5410 Lisp_Object handler; |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5411 Lisp_Object filename; |
230 | 5412 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
5413 CHECK_BUFFER (buf); |
230 | 5414 b = XBUFFER (buf); |
5415 | |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
5416 if (!STRINGP (b->filename)) return Qt; |
230 | 5417 if (b->modtime == 0) return Qt; |
5418 | |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5419 /* If the file name has special constructs in it, |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5420 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
|
5421 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
|
5422 Qverify_visited_file_modtime); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5423 if (!NILP (handler)) |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5424 return call2 (handler, Qverify_visited_file_modtime, buf); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
5425 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5426 filename = ENCODE_FILE (b->filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5427 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5428 if (stat (SDATA (filename), &st) < 0) |
230 | 5429 { |
5430 /* If the file doesn't exist now and didn't exist before, | |
5431 we say that it isn't modified, provided the error is a tame one. */ | |
5432 if (errno == ENOENT || errno == EACCES || errno == ENOTDIR) | |
5433 st.st_mtime = -1; | |
5434 else | |
5435 st.st_mtime = 0; | |
5436 } | |
5437 if (st.st_mtime == b->modtime | |
5438 /* If both are positive, accept them if they are off by one second. */ | |
5439 || (st.st_mtime > 0 && b->modtime > 0 | |
5440 && (st.st_mtime == b->modtime + 1 | |
5441 || st.st_mtime == b->modtime - 1))) | |
5442 return Qt; | |
5443 return Qnil; | |
5444 } | |
5445 | |
5446 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
|
5447 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
|
5448 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
|
5449 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
|
5450 () |
230 | 5451 { |
5452 current_buffer->modtime = 0; | |
5453 return Qnil; | |
5454 } | |
5455 | |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5456 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
|
5457 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
|
5458 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
|
5459 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
|
5460 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
|
5461 () |
230 | 5462 { |
11878
86257fdd585c
(Fvisited_file_modtime): Cast arg to long_to_cons.
Karl Heuer <kwzh@gnu.org>
parents:
11667
diff
changeset
|
5463 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
|
5464 } |
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 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
|
5467 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
|
5468 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
|
5469 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
|
5470 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
|
5471 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
|
5472 \(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
|
5473 \(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
|
5474 (time_list) |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5475 Lisp_Object time_list; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5476 { |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5477 if (!NILP (time_list)) |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5478 current_buffer->modtime = cons_to_long (time_list); |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5479 else |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5480 { |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5481 register Lisp_Object filename; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5482 struct stat st; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5483 Lisp_Object handler; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5484 |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5485 filename = Fexpand_file_name (current_buffer->filename, Qnil); |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5486 |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5487 /* 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
|
5488 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
|
5489 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
|
5490 if (!NILP (handler)) |
3721
4550c56785d8
(Fset_visited_file_modtime): Don't give the handler
Richard M. Stallman <rms@gnu.org>
parents:
3705
diff
changeset
|
5491 /* 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
|
5492 return call2 (handler, Qset_visited_file_modtime, Qnil); |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5493 |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5494 filename = ENCODE_FILE (filename); |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
5495 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5496 if (stat (SDATA (filename), &st) >= 0) |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5497 current_buffer->modtime = st.st_mtime; |
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
5498 } |
230 | 5499 |
5500 return Qnil; | |
5501 } | |
5502 | |
5503 Lisp_Object | |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5504 auto_save_error (error) |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5505 Lisp_Object error; |
230 | 5506 { |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5507 Lisp_Object args[3], msg; |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5508 int i, nbytes; |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5509 struct gcpro gcpro1; |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5510 |
230 | 5511 ring_bell (); |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5512 |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5513 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
|
5514 args[1] = current_buffer->name; |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5515 args[2] = Ferror_message_string (error); |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5516 msg = Fformat (3, args); |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5517 GCPRO1 (msg); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5518 nbytes = SBYTES (msg); |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5519 |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5520 for (i = 0; i < 3; ++i) |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5521 { |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5522 if (i == 0) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5523 message2 (SDATA (msg), nbytes, STRING_MULTIBYTE (msg)); |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5524 else |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5525 message2_nolog (SDATA (msg), nbytes, STRING_MULTIBYTE (msg)); |
34176
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5526 Fsleep_for (make_number (1), Qnil); |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5527 } |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5528 |
2441e63b9d57
(auto_save_error): Add parameter ERROR. Show the
Gerd Moellmann <gerd@gnu.org>
parents:
34167
diff
changeset
|
5529 UNGCPRO; |
230 | 5530 return Qnil; |
5531 } | |
5532 | |
5533 Lisp_Object | |
5534 auto_save_1 () | |
5535 { | |
5536 struct stat st; | |
5537 | |
5538 /* 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
|
5539 if (! NILP (current_buffer->filename) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5540 && stat (SDATA (current_buffer->filename), &st) >= 0) |
230 | 5541 /* But make sure we can overwrite it later! */ |
5542 auto_save_mode_bits = st.st_mode | 0600; | |
5543 else | |
5544 auto_save_mode_bits = 0666; | |
5545 | |
5546 return | |
5547 Fwrite_region (Qnil, Qnil, | |
5548 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
|
5549 Qnil, Qlambda, Qnil, Qnil); |
230 | 5550 } |
5551 | |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5552 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
|
5553 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
|
5554 Lisp_Object stream; |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5555 { |
12642
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
5556 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
|
5557 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
|
5558 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
|
5559 | XFASTINT (XCDR (stream)))); |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5560 return Qnil; |
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5561 } |
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5562 |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5563 static Lisp_Object |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5564 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
|
5565 Lisp_Object value; |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5566 { |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5567 minibuffer_auto_raise = XINT (value); |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5568 return Qnil; |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5569 } |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5570 |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5571 static Lisp_Object |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5572 do_auto_save_make_dir (dir) |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5573 Lisp_Object dir; |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5574 { |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5575 return call2 (Qmake_directory, dir, Qt); |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5576 } |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5577 |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5578 static Lisp_Object |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5579 do_auto_save_eh (ignore) |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5580 Lisp_Object ignore; |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5581 { |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5582 return Qnil; |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5583 } |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5584 |
230 | 5585 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
|
5586 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
|
5587 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
|
5588 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
|
5589 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
|
5590 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
|
5591 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
|
5592 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
|
5593 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5594 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
|
5595 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
|
5596 (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
|
5597 Lisp_Object no_message, current_only; |
230 | 5598 { |
5599 struct buffer *old = current_buffer, *b; | |
5600 Lisp_Object tail, buf; | |
5601 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
|
5602 int do_handled_files; |
4270
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
5603 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
|
5604 FILE *stream; |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5605 Lisp_Object lispstream; |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46285
diff
changeset
|
5606 int count = SPECPDL_INDEX (); |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5607 int orig_minibuffer_auto_raise = minibuffer_auto_raise; |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5608 int old_message_p = 0; |
42407
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5609 |
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5610 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
|
5611 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
|
5612 |
f2c23e762b64
(Fdo_auto_save): If NO_MESSAGE, don't call push_message.
Richard M. Stallman <rms@gnu.org>
parents:
42191
diff
changeset
|
5613 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
|
5614 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
|
5615 |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5616 if (NILP (no_message)) |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5617 { |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5618 old_message_p = push_message (); |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5619 record_unwind_protect (pop_message_unwind, Qnil); |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5620 } |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
5621 |
4270
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
5622 /* 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
|
5623 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
|
5624 oquit = Vquit_flag; |
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
5625 Vquit_flag = Qnil; |
230 | 5626 |
5627 /* No GCPRO needed, because (when it matters) all Lisp_Object variables | |
5628 point to non-strings reached from Vbuffer_alist. */ | |
5629 | |
485 | 5630 if (!NILP (Vrun_hooks)) |
230 | 5631 call1 (Vrun_hooks, intern ("auto-save-hook")); |
5632 | |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5633 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
|
5634 { |
37961
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5635 Lisp_Object listfile; |
28697
7d587a158d1f
(Fdo_auto_save): Create directories for auto-save
Gerd Moellmann <gerd@gnu.org>
parents:
28673
diff
changeset
|
5636 |
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
5637 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
|
5638 |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5639 /* 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
|
5640 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
|
5641 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
|
5642 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
|
5643 { |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5644 Lisp_Object dir; |
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5645 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
|
5646 if (NILP (Ffile_directory_p (dir))) |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5647 internal_condition_case_1 (do_auto_save_make_dir, |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5648 dir, Fcons (Fcons (Qfile_error, Qnil), Qnil), |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5649 do_auto_save_eh); |
37961
d95290112d89
(Fdo_auto_save): Don't try to create the directory of
Gerd Moellmann <gerd@gnu.org>
parents:
37390
diff
changeset
|
5650 } |
28697
7d587a158d1f
(Fdo_auto_save): Create directories for auto-save
Gerd Moellmann <gerd@gnu.org>
parents:
28673
diff
changeset
|
5651 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5652 stream = fopen (SDATA (listfile), "w"); |
19401
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5653 if (stream != NULL) |
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5654 { |
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5655 /* 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
|
5656 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
|
5657 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
|
5658 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
|
5659 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
|
5660 } |
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5661 else |
2ada2106a39c
(Fdo_auto_save): If open fails, make lispstream nil.
Richard M. Stallman <rms@gnu.org>
parents:
19399
diff
changeset
|
5662 lispstream = Qnil; |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5663 } |
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5664 else |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5665 { |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5666 stream = NULL; |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5667 lispstream = Qnil; |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5668 } |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5669 |
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5670 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
|
5671 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
|
5672 make_number (minibuffer_auto_raise)); |
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5673 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
|
5674 auto_saving = 1; |
cdfbcff1f22a
(do_auto_save_unwind): Set auto_saving to 0.
Richard M. Stallman <rms@gnu.org>
parents:
12540
diff
changeset
|
5675 |
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
|
5676 /* 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
|
5677 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
|
5678 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
|
5679 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
|
5680 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
|
5681 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
|
5682 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
|
5683 { |
25662
0a7261c1d487
Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member access.
Ken Raeburn <raeburn@raeburn.org>
parents:
25615
diff
changeset
|
5684 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
|
5685 b = XBUFFER (buf); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
5686 |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5687 /* 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
|
5688 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
|
5689 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
|
5690 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
|
5691 && 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
|
5692 { |
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
5693 if (!NILP (b->filename)) |
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
5694 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5695 fwrite (SDATA (b->filename), 1, |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5696 SBYTES (b->filename), stream); |
11632
ddbe0702ea95
(Fdo_auto_save): Record visited file name
Richard M. Stallman <rms@gnu.org>
parents:
11599
diff
changeset
|
5697 } |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5698 putc ('\n', stream); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5699 fwrite (SDATA (b->auto_save_file_name), 1, |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5700 SBYTES (b->auto_save_file_name), stream); |
18270
fd2ccbdc5660
(Fdo_auto_save): Use stdio to write the save-list file.
Richard M. Stallman <rms@gnu.org>
parents:
18210
diff
changeset
|
5701 putc ('\n', stream); |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5702 } |
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
|
5703 |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5704 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
|
5705 && 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
|
5706 continue; |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5707 |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5708 /* Don't auto-save indirect buffers. |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5709 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
|
5710 if (b->base_buffer) |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5711 continue; |
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5712 |
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
|
5713 /* 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
|
5714 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
|
5715 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
|
5716 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
|
5717 && 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
|
5718 && 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
|
5719 /* -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
|
5720 && 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
|
5721 && (do_handled_files |
7029
f67c02c50e2a
(Ffind_file_name_handler): New argument OPERATION. All callers changed.
Karl Heuer <kwzh@gnu.org>
parents:
6898
diff
changeset
|
5722 || 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
|
5723 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
|
5724 { |
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
|
5725 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
|
5726 |
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
|
5727 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
|
5728 |
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
|
5729 /* 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
|
5730 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
|
5731 && 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
|
5732 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
|
5733 |
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
|
5734 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
|
5735 > (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
|
5736 /* 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
|
5737 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
|
5738 && 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
|
5739 /* 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
|
5740 && !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
|
5741 && 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
|
5742 { |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5743 /* 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
|
5744 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
|
5745 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
|
5746 b->name, 1); |
18861
ed1871a409c8
(Finsert_file_contents) [DOS_NT]: Use the coding
Richard M. Stallman <rms@gnu.org>
parents:
18764
diff
changeset
|
5747 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
|
5748 /* 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
|
5749 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
|
5750 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
|
5751 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
|
5752 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
|
5753 } |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5754 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
|
5755 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
|
5756 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
|
5757 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
|
5758 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
|
5759 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
|
5760 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
|
5761 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
|
5762 |
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
|
5763 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
|
5764 |
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
|
5765 /* 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
|
5766 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
|
5767 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
|
5768 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
|
5769 } |
30eb06b22ae4
* fileio.c (Fdo_auto_save): If NO_MESSAGE is non-nil, don't tell
Jim Blandy <jimb@redhat.com>
parents:
1775
diff
changeset
|
5770 } |
230 | 5771 |
1059
430923239064
(Fdo_auto_save): Always call record_auto_save.
Richard M. Stallman <rms@gnu.org>
parents:
1044
diff
changeset
|
5772 /* 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
|
5773 record_auto_save (); |
230 | 5774 |
1775
f9ac4c0d8b72
* fileio.c (Fdo_auto_save): Add CURRENT_ONLY argument, as
Jim Blandy <jimb@redhat.com>
parents:
1763
diff
changeset
|
5775 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
|
5776 { |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5777 if (old_message_p) |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
5778 { |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5779 /* If we are going to restore an old message, |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5780 give time to read ours. */ |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
5781 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
|
5782 restore_message (); |
14616
051d6225ca90
(Fdo_auto_save): Pause before restoring old message.
Karl Heuer <kwzh@gnu.org>
parents:
14571
diff
changeset
|
5783 } |
5875
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
5784 else |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5785 /* If we displayed a message and then restored a state |
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5786 with no message, leave a "done" message on the screen. */ |
5875
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
5787 message1 ("Auto-saving...done"); |
6bfcd23bfa84
(Fdo_auto_save): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5758
diff
changeset
|
5788 } |
230 | 5789 |
4270
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
5790 Vquit_flag = oquit; |
3ce8e11f338b
(Fdo_auto_save): Temporarily clear Vquit_flag.
Richard M. Stallman <rms@gnu.org>
parents:
3963
diff
changeset
|
5791 |
47394
e48ab1d671be
(Fdo_auto_save): Catch error making directory.
Richard M. Stallman <rms@gnu.org>
parents:
46948
diff
changeset
|
5792 /* This restores the message-stack status. */ |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
5793 unbind_to (count, Qnil); |
230 | 5794 return Qnil; |
5795 } | |
5796 | |
5797 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
|
5798 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
|
5799 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
|
5800 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
|
5801 () |
230 | 5802 { |
5803 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
|
5804 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
|
5805 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
|
5806 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
|
5807 } |
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
|
5808 |
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
|
5809 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
|
5810 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
|
5811 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
|
5812 () |
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
|
5813 { |
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
|
5814 current_buffer->auto_save_failure_time = -1; |
230 | 5815 return Qnil; |
5816 } | |
5817 | |
5818 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
|
5819 0, 0, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5820 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
|
5821 () |
230 | 5822 { |
10304
ce5ab980a14f
Use SAVE_MODIFF and BUF_SAVE_MODIFF
Richard M. Stallman <rms@gnu.org>
parents:
10084
diff
changeset
|
5823 return (SAVE_MODIFF < current_buffer->auto_save_modified) ? Qt : Qnil; |
230 | 5824 } |
5825 | |
5826 /* Reading and completing file names */ | |
5827 extern Lisp_Object Ffile_name_completion (), Ffile_name_all_completions (); | |
5828 | |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5829 /* 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
|
5830 |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5831 static Lisp_Object |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5832 double_dollars (val) |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5833 Lisp_Object val; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5834 { |
46465
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
5835 register const unsigned char *old; |
5c56d4068a01
(report_file_error): String pointer args now point to
Ken Raeburn <raeburn@raeburn.org>
parents:
46424
diff
changeset
|
5836 register unsigned char *new; |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5837 register int n; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5838 int osize, count; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5839 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5840 osize = SBYTES (val); |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
5841 |
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
5842 /* Count the number of $ characters. */ |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5843 for (n = osize, count = 0, old = SDATA (val); n > 0; n--) |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5844 if (*old++ == '$') count++; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5845 if (count > 0) |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5846 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5847 old = SDATA (val); |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5848 val = make_uninit_multibyte_string (SCHARS (val) + count, |
20621
ee017970042d
(Fdo_auto_save): Save and restore multibyteness of minibuffer.
Richard M. Stallman <rms@gnu.org>
parents:
20560
diff
changeset
|
5849 osize + count); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5850 new = SDATA (val); |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5851 for (n = osize; n > 0; n--) |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5852 if (*old != '$') |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5853 *new++ = *old++; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5854 else |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5855 { |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5856 *new++ = '$'; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5857 *new++ = '$'; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5858 old++; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5859 } |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5860 } |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5861 return val; |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5862 } |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5863 |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5864 static Lisp_Object |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5865 read_file_name_cleanup (arg) |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5866 Lisp_Object arg; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5867 { |
46020
9c590b35c6cf
(read_file_name_cleanup): Add missing return.
Juanma Barranquero <lekktu@gmail.com>
parents:
45640
diff
changeset
|
5868 return (current_buffer->directory = arg); |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5869 } |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5870 |
230 | 5871 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
|
5872 3, 3, 0, |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5873 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
|
5874 (string, dir, action) |
230 | 5875 Lisp_Object string, dir, action; |
5876 /* action is nil for complete, t for return list of completions, | |
5877 lambda for verify final value */ | |
5878 { | |
5879 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
|
5880 int changed; |
9955
dfb5d7e86733
(Fread_file_name_internal): Protect orig_string.
Richard M. Stallman <rms@gnu.org>
parents:
9921
diff
changeset
|
5881 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
|
5882 |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
5883 CHECK_STRING (string); |
16651
e7449d679e72
(Fread_file_name_internal): Verify STRING is a string.
Richard M. Stallman <rms@gnu.org>
parents:
16534
diff
changeset
|
5884 |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5885 realdir = dir; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5886 name = string; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5887 orig_string = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5888 specdir = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5889 changed = 0; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5890 /* 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
|
5891 GCPRO5 (string, realdir, name, specdir, orig_string); |
230 | 5892 |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5893 if (SCHARS (string) == 0) |
230 | 5894 { |
5895 if (EQ (action, Qlambda)) | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5896 { |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5897 UNGCPRO; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5898 return Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5899 } |
230 | 5900 } |
5901 else | |
5902 { | |
5903 orig_string = string; | |
5904 string = Fsubstitute_in_file_name (string); | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5905 changed = NILP (Fstring_equal (string, orig_string)); |
230 | 5906 name = Ffile_name_nondirectory (string); |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5907 val = Ffile_name_directory (string); |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5908 if (! NILP (val)) |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5909 realdir = Fexpand_file_name (val, realdir); |
230 | 5910 } |
5911 | |
485 | 5912 if (NILP (action)) |
230 | 5913 { |
5914 specdir = Ffile_name_directory (string); | |
5915 val = Ffile_name_completion (name, realdir); | |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5916 UNGCPRO; |
9131
2190d1e7a69f
(Ffind_file_name_handler, Fcopy_file, Frename_file, Fadd_name_to_file,
Karl Heuer <kwzh@gnu.org>
parents:
9078
diff
changeset
|
5917 if (!STRINGP (val)) |
230 | 5918 { |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5919 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
|
5920 return double_dollars (string); |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5921 return val; |
230 | 5922 } |
5923 | |
485 | 5924 if (!NILP (specdir)) |
230 | 5925 val = concat2 (specdir, val); |
5926 #ifndef VMS | |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5927 return double_dollars (val); |
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5928 #else /* not VMS */ |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5929 return val; |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
5930 #endif /* not VMS */ |
230 | 5931 } |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
5932 UNGCPRO; |
230 | 5933 |
5934 if (EQ (action, Qt)) | |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5935 { |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5936 Lisp_Object all = Ffile_name_all_completions (name, realdir); |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5937 Lisp_Object comp; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5938 int count; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5939 |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5940 if (NILP (Vread_file_name_predicate) |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5941 || EQ (Vread_file_name_predicate, Qfile_exists_p)) |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5942 return all; |
45551
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5943 |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5944 #ifndef VMS |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5945 if (EQ (Vread_file_name_predicate, Qfile_directory_p)) |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5946 { |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5947 /* Brute-force speed up for directory checking: |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5948 Discard strings which don't end in a slash. */ |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5949 for (comp = Qnil; CONSP (all); all = XCDR (all)) |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5950 { |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5951 Lisp_Object tem = XCAR (all); |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5952 int len; |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5953 if (STRINGP (tem) && |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5954 (len = SCHARS (tem), len > 0) && |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5955 IS_DIRECTORY_SEP (SREF (tem, len-1))) |
45551
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5956 comp = Fcons (tem, comp); |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5957 } |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5958 } |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5959 else |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5960 #endif |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5961 { |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5962 /* Must do it the hard (and slow) way. */ |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5963 GCPRO3 (all, comp, specdir); |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46285
diff
changeset
|
5964 count = SPECPDL_INDEX (); |
45551
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5965 record_unwind_protect (read_file_name_cleanup, current_buffer->directory); |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5966 current_buffer->directory = realdir; |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5967 for (comp = Qnil; CONSP (all); all = XCDR (all)) |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5968 if (!NILP (call1 (Vread_file_name_predicate, XCAR (all)))) |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5969 comp = Fcons (XCAR (all), comp); |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5970 unbind_to (count, Qnil); |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5971 UNGCPRO; |
811d06e337cb
(Fread_file_name_internal): Added brute-force
Kim F. Storm <storm@cua.dk>
parents:
45544
diff
changeset
|
5972 } |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5973 return Fnreverse (comp); |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5974 } |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5975 |
230 | 5976 /* Only other case actually used is ACTION = lambda */ |
5977 #ifdef VMS | |
5978 /* Supposedly this helps commands such as `cd' that read directory names, | |
5979 but can someone explain how it helps them? -- RMS */ | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
5980 if (SCHARS (name) == 0) |
230 | 5981 return Qt; |
5982 #endif /* VMS */ | |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5983 if (!NILP (Vread_file_name_predicate)) |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5984 return call1 (Vread_file_name_predicate, string); |
230 | 5985 return Ffile_exists_p (string); |
5986 } | |
5987 | |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5988 DEFUN ("read-file-name", Fread_file_name, Sread_file_name, 1, 6, 0, |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5989 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
|
5990 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
|
5991 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
|
5992 (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
|
5993 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
|
5994 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
|
5995 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
|
5996 Fifth arg INITIAL specifies text to start with. |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5997 If optional sixth arg PREDICATE is non-nil, possible completions and the |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
5998 resulting file name must satisfy (funcall PREDICATE NAME). |
40123
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
5999 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
|
6000 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6001 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
|
6002 `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
|
6003 provides a file dialog box. */) |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6004 (prompt, dir, default_filename, mustmatch, initial, predicate) |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6005 Lisp_Object prompt, dir, default_filename, mustmatch, initial, predicate; |
230 | 6006 { |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6007 Lisp_Object val, insdef, tem; |
230 | 6008 struct gcpro gcpro1, gcpro2; |
6009 register char *homedir; | |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6010 int replace_in_history = 0; |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6011 int add_to_history = 0; |
230 | 6012 int count; |
6013 | |
485 | 6014 if (NILP (dir)) |
230 | 6015 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
|
6016 if (NILP (default_filename)) |
47851
4c3bd5a753a1
(Fread_file_name): Use empty_string. Use if-expr to simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47394
diff
changeset
|
6017 default_filename = !NILP (initial) |
4c3bd5a753a1
(Fread_file_name): Use empty_string. Use if-expr to simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47394
diff
changeset
|
6018 ? Fexpand_file_name (initial, dir) |
4c3bd5a753a1
(Fread_file_name): Use empty_string. Use if-expr to simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47394
diff
changeset
|
6019 : current_buffer->filename; |
230 | 6020 |
6021 /* If dir starts with user's homedir, change that to ~. */ | |
6022 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
|
6023 #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
|
6024 /* 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
|
6025 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
|
6026 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
|
6027 { |
c9980ec72766
(Fread_file_name) [DOS_NT]: Don't crash if homedir is NULL.
Eli Zaretskii <eliz@gnu.org>
parents:
33249
diff
changeset
|
6028 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
|
6029 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
|
6030 } |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
6031 #endif |
230 | 6032 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
|
6033 && STRINGP (dir) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6034 && !strncmp (homedir, SDATA (dir), strlen (homedir)) |
46424
9aa6b2db42da
* fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
Ken Raeburn <raeburn@raeburn.org>
parents:
46370
diff
changeset
|
6035 && IS_DIRECTORY_SEP (SREF (dir, strlen (homedir)))) |
230 | 6036 { |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6037 dir = make_string (SDATA (dir) + strlen (homedir) - 1, |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6038 SBYTES (dir) - strlen (homedir) + 1); |
46424
9aa6b2db42da
* fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
Ken Raeburn <raeburn@raeburn.org>
parents:
46370
diff
changeset
|
6039 SSET (dir, 0, '~'); |
230 | 6040 } |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6041 /* Likewise for default_filename. */ |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6042 if (homedir != 0 |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6043 && STRINGP (default_filename) |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6044 && !strncmp (homedir, SDATA (default_filename), strlen (homedir)) |
46424
9aa6b2db42da
* fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
Ken Raeburn <raeburn@raeburn.org>
parents:
46370
diff
changeset
|
6045 && IS_DIRECTORY_SEP (SREF (default_filename, strlen (homedir)))) |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6046 { |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6047 default_filename |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6048 = make_string (SDATA (default_filename) + strlen (homedir) - 1, |
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6049 SBYTES (default_filename) - strlen (homedir) + 1); |
46424
9aa6b2db42da
* fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
Ken Raeburn <raeburn@raeburn.org>
parents:
46370
diff
changeset
|
6050 SSET (default_filename, 0, '~'); |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6051 } |
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6052 if (!NILP (default_filename)) |
24909
804955a16819
(Fread_file_name): Check type of DEFAULT_FILENAME.
Richard M. Stallman <rms@gnu.org>
parents:
24877
diff
changeset
|
6053 { |
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Janík <Pavel@Janik.cz>
parents:
40354
diff
changeset
|
6054 CHECK_STRING (default_filename); |
24909
804955a16819
(Fread_file_name): Check type of DEFAULT_FILENAME.
Richard M. Stallman <rms@gnu.org>
parents:
24877
diff
changeset
|
6055 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
|
6056 } |
230 | 6057 |
16651
e7449d679e72
(Fread_file_name_internal): Verify STRING is a string.
Richard M. Stallman <rms@gnu.org>
parents:
16534
diff
changeset
|
6058 if (insert_default_directory && STRINGP (dir)) |
230 | 6059 { |
6060 insdef = dir; | |
485 | 6061 if (!NILP (initial)) |
230 | 6062 { |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6063 Lisp_Object args[2], pos; |
230 | 6064 |
6065 args[0] = insdef; | |
6066 args[1] = initial; | |
6067 insdef = Fconcat (2, args); | |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6068 pos = make_number (SCHARS (double_dollars (dir))); |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6069 insdef = Fcons (double_dollars (insdef), pos); |
230 | 6070 } |
5647
7bd40f51b9e9
(double_dollars): New function.
Richard M. Stallman <rms@gnu.org>
parents:
5616
diff
changeset
|
6071 else |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6072 insdef = double_dollars (insdef); |
230 | 6073 } |
16651
e7449d679e72
(Fread_file_name_internal): Verify STRING is a string.
Richard M. Stallman <rms@gnu.org>
parents:
16534
diff
changeset
|
6074 else if (STRINGP (initial)) |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6075 insdef = Fcons (double_dollars (initial), make_number (0)); |
230 | 6076 else |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6077 insdef = Qnil; |
230 | 6078 |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6079 if (!NILP (Vread_file_name_function)) |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6080 { |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6081 Lisp_Object args[7]; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6082 |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6083 GCPRO2 (insdef, default_filename); |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6084 args[0] = Vread_file_name_function; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6085 args[1] = prompt; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6086 args[2] = dir; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6087 args[3] = default_filename; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6088 args[4] = mustmatch; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6089 args[5] = initial; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6090 args[6] = predicate; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6091 RETURN_UNGCPRO (Ffuncall (7, args)); |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6092 } |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6093 |
46293
1fb8f75062c6
Use macro SPECPDL_INDEX.
Juanma Barranquero <lekktu@gmail.com>
parents:
46285
diff
changeset
|
6094 count = SPECPDL_INDEX (); |
230 | 6095 #ifdef VMS |
6096 specbind (intern ("completion-ignore-case"), Qt); | |
6097 #endif | |
6098 | |
22658
9f320d762e2f
(Faccess_file): Check type of second argument STRING.
Richard M. Stallman <rms@gnu.org>
parents:
22613
diff
changeset
|
6099 specbind (intern ("minibuffer-completing-file-name"), Qt); |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6100 specbind (intern ("read-file-name-predicate"), |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6101 (NILP (predicate) ? Qfile_exists_p : predicate)); |
22658
9f320d762e2f
(Faccess_file): Check type of second argument STRING.
Richard M. Stallman <rms@gnu.org>
parents:
22613
diff
changeset
|
6102 |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
6103 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
|
6104 |
29312
8b6842c36473
(Fread_file_name) [HAVE_NTGUI]: Use file dialog.
Jason Rumney <jasonr@gnu.org>
parents:
29152
diff
changeset
|
6105 #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
|
6106 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
|
6107 && use_dialog_box |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6108 && have_menus_p ()) |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6109 { |
28117
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6110 /* 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
|
6111 Lisp_Object file; |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6112 file = Ffile_name_nondirectory (dir); |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6113 if (SCHARS (file) && NILP (default_filename)) |
28117
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6114 { |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6115 default_filename = file; |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6116 dir = Ffile_name_directory (dir); |
9fa9af3f0ca7
(Fread_file_name): Handle case that DIR contains a
Gerd Moellmann <gerd@gnu.org>
parents:
27925
diff
changeset
|
6117 } |
29312
8b6842c36473
(Fread_file_name) [HAVE_NTGUI]: Use file dialog.
Jason Rumney <jasonr@gnu.org>
parents:
29152
diff
changeset
|
6118 if (!NILP(default_filename)) |
8b6842c36473
(Fread_file_name) [HAVE_NTGUI]: Use file dialog.
Jason Rumney <jasonr@gnu.org>
parents:
29152
diff
changeset
|
6119 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
|
6120 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
|
6121 add_to_history = 1; |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6122 } |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6123 else |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6124 #endif |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6125 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
|
6126 dir, mustmatch, insdef, |
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6127 Qfile_name_history, default_filename, Qnil); |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6128 |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6129 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
|
6130 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
|
6131 replace_in_history = 1; |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6132 |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6133 /* 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
|
6134 (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
|
6135 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
|
6136 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
|
6137 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
|
6138 if (EQ (val, default_filename)) |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6139 { |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6140 /* 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
|
6141 to the history. Maybe we should. */ |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6142 if (! replace_in_history) |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6143 add_to_history = 1; |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6144 |
47851
4c3bd5a753a1
(Fread_file_name): Use empty_string. Use if-expr to simplify.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
47394
diff
changeset
|
6145 val = empty_string; |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6146 } |
230 | 6147 |
6148 unbind_to (count, Qnil); | |
6149 UNGCPRO; | |
485 | 6150 if (NILP (val)) |
230 | 6151 error ("No file name specified"); |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6152 |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6153 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
|
6154 |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
6155 if (!NILP (tem) && !NILP (default_filename)) |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6156 val = default_filename; |
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
46323
diff
changeset
|
6157 else if (SCHARS (val) == 0 && NILP (insdef)) |
5245
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
6158 { |
14074
f15db8536fdd
(Ffile_name_directory, Ffile_name_nondirectory, Ffile_name_as_directory,
Erik Naggum <erik@naggum.no>
parents:
14036
diff
changeset
|
6159 if (!NILP (default_filename)) |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6160 val = default_filename; |
5245
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
6161 else |
4a9b93b0eac3
(Fmake_symbolic_link): Do expand FILENAME if starts with ~.
Richard M. Stallman <rms@gnu.org>
parents:
5129
diff
changeset
|
6162 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
|
6163 } |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6164 val = Fsubstitute_in_file_name (val); |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6165 |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6166 if (replace_in_history) |
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6167 /* 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
|
6168 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
|
6169 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
|
6170 else if (add_to_history) |
230 | 6171 { |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6172 /* 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
|
6173 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
|
6174 Lisp_Object val1 = double_dollars (val); |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6175 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
|
6176 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
|
6177 Fset (Qfile_name_history, |
24712
31a648f12180
(Fread_file_name): Correct handling of dollars in file
Andreas Schwab <schwab@suse.de>
parents:
24651
diff
changeset
|
6178 Fcons (val1, tem)); |
230 | 6179 } |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6180 |
20897
77deec174f57
(Fread_file_name): Alter the history
Richard M. Stallman <rms@gnu.org>
parents:
20790
diff
changeset
|
6181 return val; |
230 | 6182 } |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6183 |
230 | 6184 |
21514 | 6185 void |
23569
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6186 init_fileio_once () |
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6187 { |
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6188 /* 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
|
6189 XSETFASTINT (Vdirectory_sep_char, '/'); |
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6190 } |
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6191 |
25006
c79dc141ef5a
(Fdo_auto_save): Handle the case that echo_area_message
Gerd Moellmann <gerd@gnu.org>
parents:
24932
diff
changeset
|
6192 |
23569
b1255c3676c7
fileio.c (init_fileio_once): New function.
Geoff Voelker <voelker@cs.washington.edu>
parents:
22977
diff
changeset
|
6193 void |
230 | 6194 syms_of_fileio () |
6195 { | |
1105
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
6196 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
|
6197 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
|
6198 Qdirectory_file_name = intern ("directory-file-name"); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
6199 Qfile_name_directory = intern ("file-name-directory"); |
80ad8d0704ba
(Ffile_name_directory, Ffile_name_nondirectory):
Richard M. Stallman <rms@gnu.org>
parents:
1071
diff
changeset
|
6200 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
|
6201 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
|
6202 Qfile_name_as_directory = intern ("file-name-as-directory"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6203 Qcopy_file = intern ("copy-file"); |
8227
0e6b7eeedc3b
(Fmake_directory_internal): Use Qmake_directory_internal.
Richard M. Stallman <rms@gnu.org>
parents:
8185
diff
changeset
|
6204 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
|
6205 Qmake_directory = intern ("make-directory"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6206 Qdelete_directory = intern ("delete-directory"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6207 Qdelete_file = intern ("delete-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6208 Qrename_file = intern ("rename-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6209 Qadd_name_to_file = intern ("add-name-to-file"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6210 Qmake_symbolic_link = intern ("make-symbolic-link"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6211 Qfile_exists_p = intern ("file-exists-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6212 Qfile_executable_p = intern ("file-executable-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6213 Qfile_readable_p = intern ("file-readable-p"); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6214 Qfile_writable_p = intern ("file-writable-p"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6215 Qfile_symlink_p = intern ("file-symlink-p"); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6216 Qaccess_file = intern ("access-file"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6217 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
|
6218 Qfile_regular_p = intern ("file-regular-p"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6219 Qfile_accessible_directory_p = intern ("file-accessible-directory-p"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6220 Qfile_modes = intern ("file-modes"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6221 Qset_file_modes = intern ("set-file-modes"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6222 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
|
6223 Qinsert_file_contents = intern ("insert-file-contents"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6224 Qwrite_region = intern ("write-region"); |
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6225 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
|
6226 Qset_visited_file_modtime = intern ("set-visited-file-modtime"); |
843
8f6ea998ad0a
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
806
diff
changeset
|
6227 |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
6228 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
|
6229 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
|
6230 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
|
6231 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
|
6232 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
|
6233 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
|
6234 staticpro (&Qfile_name_as_directory); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6235 staticpro (&Qcopy_file); |
8243
bf7b3b969ab5
(syms_of_fileio): Finish previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8227
diff
changeset
|
6236 staticpro (&Qmake_directory_internal); |
28697
7d587a158d1f
(Fdo_auto_save): Create directories for auto-save
Gerd Moellmann <gerd@gnu.org>
parents:
28673
diff
changeset
|
6237 staticpro (&Qmake_directory); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6238 staticpro (&Qdelete_directory); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6239 staticpro (&Qdelete_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6240 staticpro (&Qrename_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6241 staticpro (&Qadd_name_to_file); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6242 staticpro (&Qmake_symbolic_link); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6243 staticpro (&Qfile_exists_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6244 staticpro (&Qfile_executable_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6245 staticpro (&Qfile_readable_p); |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6246 staticpro (&Qfile_writable_p); |
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6247 staticpro (&Qaccess_file); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6248 staticpro (&Qfile_symlink_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6249 staticpro (&Qfile_directory_p); |
11599
51bc10be0dc7
(Ffile_regular_p): Use Qfile_regular_p.
Richard M. Stallman <rms@gnu.org>
parents:
11426
diff
changeset
|
6250 staticpro (&Qfile_regular_p); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6251 staticpro (&Qfile_accessible_directory_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6252 staticpro (&Qfile_modes); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6253 staticpro (&Qset_file_modes); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6254 staticpro (&Qfile_newer_than_file_p); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6255 staticpro (&Qinsert_file_contents); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6256 staticpro (&Qwrite_region); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6257 staticpro (&Qverify_visited_file_modtime); |
16226
a70ec9baba1a
(syms_of_fileio): staticpro Qset_visited_file_modtime.
Erik Naggum <erik@naggum.no>
parents:
16167
diff
changeset
|
6258 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
|
6259 |
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
6260 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
|
6261 Fset (Qfile_name_history, Qnil); |
863
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6262 staticpro (&Qfile_name_history); |
427299469901
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
853
diff
changeset
|
6263 |
230 | 6264 Qfile_error = intern ("file-error"); |
6265 staticpro (&Qfile_error); | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
6266 Qfile_already_exists = intern ("file-already-exists"); |
230 | 6267 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
|
6268 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
|
6269 staticpro (&Qfile_date_error); |
25595 | 6270 Qexcl = intern ("excl"); |
6271 staticpro (&Qexcl); | |
230 | 6272 |
9789
a1e6724db219
Change explicit uses of the Unix directory separator
Richard M. Stallman <rms@gnu.org>
parents:
9572
diff
changeset
|
6273 #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
|
6274 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
|
6275 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
|
6276 #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
|
6277 |
19861
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
6278 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
|
6279 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
|
6280 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
|
6281 Vfile_name_coding_system = Qnil; |
163421a61771
(ENCODE_FILE): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
19754
diff
changeset
|
6282 |
21048
4d1d3581eeb4
(ENCODE_FILE): This macro is moved to coding.h.
Kenichi Handa <handa@m17n.org>
parents:
21030
diff
changeset
|
6283 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
|
6284 &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
|
6285 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
|
6286 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
|
6287 |
8151a2b431d0
(file-name-coding-system, default-file-name-coding-system): Doc fix (links
Pavel Janík <Pavel@Janik.cz>
parents:
41655
diff
changeset
|
6288 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
|
6289 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
|
6290 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
|
6291 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
|
6292 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
|
6293 |
11053
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6294 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
|
6295 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
|
6296 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
|
6297 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
|
6298 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
|
6299 Vauto_save_file_format = Qt; |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6300 |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6301 Qformat_decode = intern ("format-decode"); |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6302 staticpro (&Qformat_decode); |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6303 Qformat_annotate_function = intern ("format-annotate-function"); |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6304 staticpro (&Qformat_annotate_function); |
f14a518fcb33
(Finsert_file_contents): Call format-decode.
Boris Goldowsky <boris@gnu.org>
parents:
10734
diff
changeset
|
6305 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6306 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
|
6307 staticpro (&Qcar_less_than_car); |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6308 |
230 | 6309 Fput (Qfile_error, Qerror_conditions, |
6310 Fcons (Qfile_error, Fcons (Qerror, Qnil))); | |
6311 Fput (Qfile_error, Qerror_message, | |
6312 build_string ("File error")); | |
6313 | |
6314 Fput (Qfile_already_exists, Qerror_conditions, | |
6315 Fcons (Qfile_already_exists, | |
6316 Fcons (Qfile_error, Fcons (Qerror, Qnil)))); | |
6317 Fput (Qfile_already_exists, Qerror_message, | |
6318 build_string ("File already exists")); | |
6319 | |
17271
e34a30952e14
(Fcopy_file): Use Qfile_date_error if can't set file date.
Richard M. Stallman <rms@gnu.org>
parents:
17114
diff
changeset
|
6320 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
|
6321 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
|
6322 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
|
6323 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
|
6324 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
|
6325 |
45544
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6326 DEFVAR_LISP ("read-file-name-function", &Vread_file_name_function, |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6327 doc: /* If this is non-nil, `read-file-name' does its work by calling this function. */); |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6328 Vread_file_name_function = Qnil; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6329 |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6330 DEFVAR_LISP ("read-file-name-predicate", &Vread_file_name_predicate, |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6331 doc: /* Current predicate used by `read-file-name-internal'. */); |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6332 Vread_file_name_predicate = Qnil; |
b8f71d4c359f
(Vread_file_name_function, Vread_file_name_predicate):
Kim F. Storm <storm@cua.dk>
parents:
45485
diff
changeset
|
6333 |
230 | 6334 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
|
6335 doc: /* *Non-nil means when reading a filename start with default dir in minibuffer. */); |
230 | 6336 insert_default_directory = 1; |
6337 | |
6338 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
|
6339 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
|
6340 nil means use format `var'. This variable is meaningful only on VMS. */); |
230 | 6341 vms_stmlf_recfm = 0; |
6342 | |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
6343 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
|
6344 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
|
6345 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
|
6346 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
|
6347 on other platforms, it is initialized so that Lisp code can find out |
46539
b95625933c8f
(syms_of_fileio): Remove redundant deprecation info.
Juanma Barranquero <lekktu@gmail.com>
parents:
46465
diff
changeset
|
6348 what the normal separator is. */); |
15097
32c26cb9e078
(Fexpand_file_name, Ffile_name_absolute_p): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
15072
diff
changeset
|
6349 |
850
0bc61321ba50
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
848
diff
changeset
|
6350 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
|
6351 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
|
6352 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
|
6353 HANDLER. |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6354 |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6355 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
|
6356 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
|
6357 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
|
6358 (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
|
6359 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
|
6360 (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
|
6361 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
|
6362 for its argument. */); |
1178
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6363 Vfile_name_handler_alist = Qnil; |
fb4ec23ef80f
Don't include sys/dir.h.
Richard M. Stallman <rms@gnu.org>
parents:
1105
diff
changeset
|
6364 |
19641
d7f2d75a09d3
(Vset_auto_coding_function): Name changed from
Kenichi Handa <handa@m17n.org>
parents:
19572
diff
changeset
|
6365 DEFVAR_LISP ("set-auto-coding-function", |
d7f2d75a09d3
(Vset_auto_coding_function): Name changed from
Kenichi Handa <handa@m17n.org>
parents:
19572
diff
changeset
|
6366 &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
|
6367 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
|
6368 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
|
6369 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
|
6370 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
|
6371 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
|
6372 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
|
6373 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
|
6374 -*- ... coding: CODING-SYSTEM; ... -*- |
e528f2adeed4
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Janík <Pavel@Janik.cz>
parents:
39973
diff
changeset
|
6375 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
|
6376 Vset_auto_coding_function = Qnil; |
19448
950a178e8783
(Vauto_file_coding_system_function): New variable.
Kenichi Handa <handa@m17n.org>
parents:
19437
diff
changeset
|
6377 |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6378 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
|
6379 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
|
6380 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
|
6381 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
|
6382 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
|
6383 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
|
6384 Vafter_insert_file_functions = Qnil; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6385 |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6386 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
|
6387 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
|
6388 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
|
6389 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
|
6390 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
|
6391 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
|
6392 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
|
6393 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
|
6394 increasing order. If there are several functions in the list, the several |
45485
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
6395 lists are merged destructively. Alternatively, the function can return |
08b14b8f7bc2
(read_non_regular, Finsert_file_contents): Use BEG_BYTE.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
44563
diff
changeset
|
6396 with a different buffer current and value nil.*/); |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6397 Vwrite_region_annotate_functions = Qnil; |
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6398 |
8317
c59be9428778
(Fwrite_region): Do unwind the new unwind protect.
Richard M. Stallman <rms@gnu.org>
parents:
8243
diff
changeset
|
6399 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
|
6400 &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
|
6401 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
|
6402 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
|
6403 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
|
6404 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
|
6405 |
6678
e29adbacde1d
(Fdo_auto_save): Don't turn off auto save mode.
Richard M. Stallman <rms@gnu.org>
parents:
6498
diff
changeset
|
6406 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
|
6407 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
|
6408 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
|
6409 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
|
6410 |
7041
7b8c405c910a
(syms_of_fileio): New Lisp var inhibit-file-name-operation.
Richard M. Stallman <rms@gnu.org>
parents:
7029
diff
changeset
|
6411 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
|
6412 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
|
6413 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
|
6414 |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
6415 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
|
6416 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
|
6417 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
|
6418 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
|
6419 a non-nil value. */); |
7445
c9942f71e2e9
(Finsert_file_contents) [MSDOS]: Ignore the replace feature.
Richard M. Stallman <rms@gnu.org>
parents:
7182
diff
changeset
|
6420 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
|
6421 |
1679
cd48b2c1a7a4
Give subprocess creation a way to find a valid current directory
Jim Blandy <jimb@redhat.com>
parents:
1589
diff
changeset
|
6422 defsubr (&Sfind_file_name_handler); |
230 | 6423 defsubr (&Sfile_name_directory); |
6424 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
|
6425 defsubr (&Sunhandled_file_name_directory); |
230 | 6426 defsubr (&Sfile_name_as_directory); |
6427 defsubr (&Sdirectory_file_name); | |
6428 defsubr (&Smake_temp_name); | |
6429 defsubr (&Sexpand_file_name); | |
6430 defsubr (&Ssubstitute_in_file_name); | |
6431 defsubr (&Scopy_file); | |
1533
b86ef0432100
(Fmake_directory_internal): Renamed from Fmake_directory.
Richard M. Stallman <rms@gnu.org>
parents:
1377
diff
changeset
|
6432 defsubr (&Smake_directory_internal); |
686
bd3068742807
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
648
diff
changeset
|
6433 defsubr (&Sdelete_directory); |
230 | 6434 defsubr (&Sdelete_file); |
6435 defsubr (&Srename_file); | |
6436 defsubr (&Sadd_name_to_file); | |
6437 #ifdef S_IFLNK | |
6438 defsubr (&Smake_symbolic_link); | |
6439 #endif /* S_IFLNK */ | |
6440 #ifdef VMS | |
6441 defsubr (&Sdefine_logical_name); | |
6442 #endif /* VMS */ | |
6443 #ifdef HPUX_NET | |
6444 defsubr (&Ssysnetunam); | |
6445 #endif /* HPUX_NET */ | |
6446 defsubr (&Sfile_name_absolute_p); | |
6447 defsubr (&Sfile_exists_p); | |
6448 defsubr (&Sfile_executable_p); | |
6449 defsubr (&Sfile_readable_p); | |
6450 defsubr (&Sfile_writable_p); | |
16155
ddc7e0142964
(Faccess_file): New function.
Richard M. Stallman <rms@gnu.org>
parents:
16044
diff
changeset
|
6451 defsubr (&Saccess_file); |
230 | 6452 defsubr (&Sfile_symlink_p); |
6453 defsubr (&Sfile_directory_p); | |
536 | 6454 defsubr (&Sfile_accessible_directory_p); |
9346
fec27dfc0684
(Ffile_regular_p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
9307
diff
changeset
|
6455 defsubr (&Sfile_regular_p); |
230 | 6456 defsubr (&Sfile_modes); |
6457 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
|
6458 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
|
6459 defsubr (&Sdefault_file_modes); |
230 | 6460 defsubr (&Sfile_newer_than_file_p); |
6461 defsubr (&Sinsert_file_contents); | |
6462 defsubr (&Swrite_region); | |
4841
8800a7377ceb
(Vafter_insert_file_functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
6463 defsubr (&Scar_less_than_car); |
230 | 6464 defsubr (&Sverify_visited_file_modtime); |
6465 defsubr (&Sclear_visited_file_modtime); | |
2257
668491072928
(Fvisited_file_modtime): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2236
diff
changeset
|
6466 defsubr (&Svisited_file_modtime); |
230 | 6467 defsubr (&Sset_visited_file_modtime); |
6468 defsubr (&Sdo_auto_save); | |
6469 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
|
6470 defsubr (&Sclear_buffer_auto_save_failure); |
230 | 6471 defsubr (&Srecent_auto_save_p); |
6472 | |
6473 defsubr (&Sread_file_name_internal); | |
6474 defsubr (&Sread_file_name); | |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
6475 |
1204
567860ca77e0
* fileio.c (syms_of_fileio): Don't try to defsubr Sunix_sync
Jim Blandy <jimb@redhat.com>
parents:
1178
diff
changeset
|
6476 #ifdef unix |
689
45401d45581d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
686
diff
changeset
|
6477 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
|
6478 #endif |
230 | 6479 } |
27618 | 6480 |