Mercurial > emacs
annotate lisp/files.el @ 1973:3a08dacd8bfb
These are in preparation for a more thorough renaming to occur soon.
* scroll-bar.el: Provide `scroll-bar', not `scrollbar'.
* term/x-win.el: Require `scroll-bar', not `scrollbar'.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Tue, 02 Mar 1993 02:11:18 +0000 |
parents | 494dd05d460c |
children | bff31af6c721 |
rev | line source |
---|---|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
1 ;;; files.el --- file input and output commands for Emacs |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
844
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
844
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
778
diff
changeset
|
5 ;; Maintainer: FSF |
337 | 6 |
7 ;; This file is part of GNU Emacs. | |
8 | |
9 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
778
diff
changeset
|
11 ;; the Free Software Foundation; either version 2, or (at your option) |
337 | 12 ;; any later version. |
13 | |
14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;; GNU General Public License for more details. | |
18 | |
19 ;; You should have received a copy of the GNU General Public License | |
20 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
22 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
778
diff
changeset
|
23 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
778
diff
changeset
|
24 |
337 | 25 (defconst delete-auto-save-files t |
26 "*Non-nil means delete a buffer's auto-save file when the buffer is saved.") | |
27 | |
28 (defconst directory-abbrev-alist | |
29 nil | |
30 "*Alist of abbreviations for file directories. | |
31 A list of elements of the form (FROM . TO), each meaning to replace | |
32 FROM with TO when it appears in a directory name. This replacement is | |
33 done when setting up the default directory of a newly visited file. | |
34 *Every* FROM string should start with `^'. | |
35 | |
36 Use this feature when you have directories which you normally refer to | |
37 via absolute symbolic links. Make TO the name of the link, and FROM | |
38 the name it is linked to.") | |
39 | |
40 ;;; Turn off backup files on VMS since it has version numbers. | |
41 (defconst make-backup-files (not (eq system-type 'vax-vms)) | |
42 "*Create a backup of each file when it is saved for the first time. | |
43 This can be done by renaming the file or by copying. | |
44 | |
45 Renaming means that Emacs renames the existing file so that it is a | |
46 backup file, then writes the buffer into a new file. Any other names | |
47 that the old file had will now refer to the backup file. The new file | |
48 is owned by you and its group is defaulted. | |
49 | |
50 Copying means that Emacs copies the existing file into the backup | |
51 file, then writes the buffer on top of the existing file. Any other | |
52 names that the old file had will now refer to the new (edited) file. | |
53 The file's owner and group are unchanged. | |
54 | |
55 The choice of renaming or copying is controlled by the variables | |
56 `backup-by-copying', `backup-by-copying-when-linked' and | |
57 `backup-by-copying-when-mismatch'.") | |
58 | |
59 ;; Do this so that local variables based on the file name | |
60 ;; are not overridden by the major mode. | |
61 (defvar backup-inhibited nil | |
62 "Non-nil means don't make a backup file for this buffer.") | |
63 (put 'backup-inhibited 'permanent-local t) | |
64 | |
65 (defconst backup-by-copying nil | |
66 "*Non-nil means always use copying to create backup files. | |
67 See documentation of variable `make-backup-files'.") | |
68 | |
69 (defconst backup-by-copying-when-linked nil | |
70 "*Non-nil means use copying to create backups for files with multiple names. | |
71 This causes the alternate names to refer to the latest version as edited. | |
72 This variable is relevant only if `backup-by-copying' is nil.") | |
73 | |
74 (defconst backup-by-copying-when-mismatch nil | |
75 "*Non-nil means create backups by copying if this preserves owner or group. | |
76 Renaming may still be used (subject to control of other variables) | |
77 when it would not result in changing the owner or group of the file; | |
78 that is, for files which are owned by you and whose group matches | |
79 the default for a new file created there by you. | |
80 This variable is relevant only if `backup-by-copying' is nil.") | |
81 | |
82 (defvar backup-enable-predicate | |
83 '(lambda (name) | |
84 (or (< (length name) 5) | |
85 (not (string-equal "/tmp/" (substring name 0 5))))) | |
86 "Predicate that looks at a file name and decides whether to make backups. | |
87 Called with an absolute file name as argument, it returns t to enable backup.") | |
88 | |
89 (defconst buffer-offer-save nil | |
90 "*Non-nil in a buffer means offer to save the buffer on exit | |
91 even if the buffer is not visiting a file. | |
92 Automatically local in all buffers.") | |
93 (make-variable-buffer-local 'buffer-offer-save) | |
94 | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
95 (defconst find-file-existing-other-name nil |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
96 "*Non-nil means find a file under alternative names, in existing buffers. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
97 This means if any existing buffer is visiting the file you want |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
98 under another name, you get the existing buffer instead of a new buffer.") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
99 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
100 (defconst find-file-visit-truename nil |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
101 "*Non-nil means visit a file under its truename. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
102 The truename of a file is found by chasing all links |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
103 both at the file level and at the levels of the containing directories.") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
104 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
105 (defvar buffer-file-truename nil |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
106 "The truename of the file visited in the current buffer. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
107 This variable is automatically local in all buffers, when non-nil.") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
108 (make-variable-buffer-local 'buffer-file-truename) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
109 (put 'buffer-file-truename 'permanent-local t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
110 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
111 (defvar buffer-file-number nil |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
112 "The device number and file number of the file visited in the current buffer. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
113 The value is a list of the form (FILENUM DEVNUM). |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
114 This pair of numbers uniquely identifies the file. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
115 If the buffer is visiting a new file, the value is nil.") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
116 (make-variable-buffer-local 'buffer-file-number) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
117 (put 'buffer-file-number 'permanent-local t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
118 |
337 | 119 (defconst file-precious-flag nil |
120 "*Non-nil means protect against I/O errors while saving files. | |
121 Some modes set this non-nil in particular buffers.") | |
122 | |
123 (defvar version-control nil | |
124 "*Control use of version numbers for backup files. | |
125 t means make numeric backup versions unconditionally. | |
126 nil means make them for files that have some already. | |
127 never means do not make them.") | |
128 | |
129 (defvar dired-kept-versions 2 | |
130 "*When cleaning directory, number of versions to keep.") | |
131 | |
132 (defvar trim-versions-without-asking nil | |
844
bf829a2d63b4
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
819
diff
changeset
|
133 "*If t, deletes excess backup versions silently. |
bf829a2d63b4
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
819
diff
changeset
|
134 If nil, asks confirmation. Any other value prevents any trimming.") |
337 | 135 |
136 (defvar kept-old-versions 2 | |
137 "*Number of oldest versions to keep when a new numbered backup is made.") | |
138 | |
139 (defvar kept-new-versions 2 | |
140 "*Number of newest versions to keep when a new numbered backup is made. | |
141 Includes the new backup. Must be > 0") | |
142 | |
143 (defconst require-final-newline nil | |
144 "*Value of t says silently ensure a file ends in a newline when it is saved. | |
145 Non-nil but not t says ask user whether to add a newline when there isn't one. | |
146 nil means don't add newlines.") | |
147 | |
148 (defconst auto-save-default t | |
149 "*Non-nil says by default do auto-saving of every file-visiting buffer.") | |
150 | |
151 (defconst auto-save-visited-file-name nil | |
152 "*Non-nil says auto-save a buffer in the file it is visiting, when practical. | |
153 Normally auto-save files are written under other names.") | |
154 | |
155 (defconst save-abbrevs nil | |
156 "*Non-nil means save word abbrevs too when files are saved. | |
157 Loading an abbrev file sets this to t.") | |
158 | |
159 (defconst find-file-run-dired t | |
160 "*Non-nil says run dired if find-file is given the name of a directory.") | |
161 | |
1879
c9b4ece292cc
(find-file-hooks): Delete permanent-local property.
Richard M. Stallman <rms@gnu.org>
parents:
1799
diff
changeset
|
162 ;;;It is not useful to make this a local variable. |
c9b4ece292cc
(find-file-hooks): Delete permanent-local property.
Richard M. Stallman <rms@gnu.org>
parents:
1799
diff
changeset
|
163 ;;;(put 'find-file-not-found-hooks 'permanent-local t) |
337 | 164 (defvar find-file-not-found-hooks nil |
165 "List of functions to be called for `find-file' on nonexistent file. | |
166 These functions are called as soon as the error is detected. | |
167 `buffer-file-name' is already set up. | |
168 The functions are called in the order given until one of them returns non-nil.") | |
169 | |
1879
c9b4ece292cc
(find-file-hooks): Delete permanent-local property.
Richard M. Stallman <rms@gnu.org>
parents:
1799
diff
changeset
|
170 ;;;It is not useful to make this a local variable. |
c9b4ece292cc
(find-file-hooks): Delete permanent-local property.
Richard M. Stallman <rms@gnu.org>
parents:
1799
diff
changeset
|
171 ;;;(put 'find-file-hooks 'permanent-local t) |
337 | 172 (defvar find-file-hooks nil |
173 "List of functions to be called after a buffer is loaded from a file. | |
174 The buffer's local variables (if any) will have been processed before the | |
175 functions are called.") | |
176 | |
177 (put 'write-file-hooks 'permanent-local t) | |
178 (defvar write-file-hooks nil | |
179 "List of functions to be called before writing out a buffer to a file. | |
180 If one of them returns non-nil, the file is considered already written | |
605 | 181 and the rest are not called. |
182 These hooks are considered to pertain to the visited file. | |
183 So this list is cleared if you change the visited file name. | |
184 See also `write-contents-hooks'.") | |
185 | |
186 (defvar write-contents-hooks nil | |
187 "List of functions to be called before writing out a buffer to a file. | |
188 If one of them returns non-nil, the file is considered already written | |
189 and the rest are not called. | |
190 These hooks are considered to pertain to the buffer's contents, | |
191 not to the particular visited file; thus, `set-visited-file-name' does | |
192 not clear this variable, but changing the major mode does clear it. | |
193 See also `write-file-hooks'.") | |
337 | 194 |
195 (defconst enable-local-variables t | |
196 "*Control use of local-variables lists in files you visit. | |
197 The value can be t, nil or something else. | |
198 A value of t means local-variables lists are obeyed; | |
199 nil means they are ignored; anything else means query. | |
200 | |
201 The command \\[normal-mode] always obeys local-variables lists | |
202 and ignores this variable.") | |
203 | |
1066
9b788095582b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
941
diff
changeset
|
204 (defconst enable-local-eval 'maybe |
722
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
205 "*Control processing of the \"variable\" `eval' in a file's local variables. |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
206 The value can be t, nil or something else. |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
207 A value of t means obey `eval' variables; |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
208 nil means ignore them; anything else means query. |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
209 |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
210 The command \\[normal-mode] always obeys local-variables lists |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
211 and ignores this variable.") |
337 | 212 |
213 ;; Avoid losing in versions where CLASH_DETECTION is disabled. | |
214 (or (fboundp 'lock-buffer) | |
215 (fset 'lock-buffer 'ignore)) | |
216 (or (fboundp 'unlock-buffer) | |
217 (fset 'unlock-buffer 'ignore)) | |
218 | |
219 (defun pwd () | |
220 "Show the current default directory." | |
221 (interactive nil) | |
222 (message "Directory %s" default-directory)) | |
223 | |
224 (defun cd (dir) | |
225 "Make DIR become the current buffer's default directory." | |
226 (interactive "DChange default directory: ") | |
227 (setq dir (expand-file-name dir)) | |
228 (if (not (eq system-type 'vax-vms)) | |
229 (setq dir (file-name-as-directory dir))) | |
230 (if (not (file-directory-p dir)) | |
231 (error "%s is not a directory" dir) | |
232 (if (file-executable-p dir) | |
233 (setq default-directory dir) | |
234 (error "Cannot cd to %s: Permission denied" dir))) | |
423 | 235 ;; We used to call pwd at this point. That's not terribly helpful |
236 ;; when we're invoking cd interactively, and the new cmushell-based | |
237 ;; shell has its own (better) facilities for this. | |
238 ) | |
337 | 239 |
240 (defun load-file (file) | |
241 "Load the Lisp file named FILE." | |
242 (interactive "fLoad file: ") | |
243 (load (expand-file-name file) nil nil t)) | |
244 | |
245 (defun load-library (library) | |
246 "Load the library named LIBRARY. | |
247 This is an interface to the function `load'." | |
248 (interactive "sLoad library: ") | |
249 (load library)) | |
1134
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
250 |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
251 ;; OTHER is the other file to be compared. |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
252 (defun file-local-copy (file) |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
253 "Copy the file FILE into a temporary file on this machine. |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
254 Returns the name of the local copy, or nil, if FILE is directly |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
255 accessible." |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1537
diff
changeset
|
256 (let ((handler (find-file-name-handler file))) |
1134
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
257 (if handler |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
258 (funcall handler 'file-local-copy file) |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
259 nil))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
260 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
261 (defun file-truename (filename) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
262 "Return the truename of FILENAME, which should be absolute. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
263 The truename of a file name is found by chasing symbolic links |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
264 both at the level of the file and at the level of the directories |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
265 containing it, until no links are left at any level." |
1406
62dae4a3c7fb
* files.el (file-truename): The variable ~ should be considered an
Jim Blandy <jimb@redhat.com>
parents:
1395
diff
changeset
|
266 (if (string= filename "~") |
62dae4a3c7fb
* files.el (file-truename): The variable ~ should be considered an
Jim Blandy <jimb@redhat.com>
parents:
1395
diff
changeset
|
267 (setq filename (expand-file-name filename))) |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1537
diff
changeset
|
268 (let ((handler (find-file-name-handler filename))) |
1453
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
269 ;; For file name that has a special handler, call handler. |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
270 ;; This is so that ange-ftp can save time by doing a no-op. |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
271 (if handler |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
272 (funcall handler 'file-truename filename) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
273 (let ((dir (file-name-directory filename)) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
274 target dirfile) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
275 ;; Get the truename of the directory. |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
276 (setq dirfile (directory-file-name dir)) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
277 ;; If these are equal, we have the (or a) root directory. |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
278 (or (string= dir dirfile) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
279 (setq dir (file-name-as-directory (file-truename dirfile)))) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
280 ;; Put it back on the file name. |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
281 (setq filename (concat dir (file-name-nondirectory filename))) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
282 ;; Is the file name the name of a link? |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
283 (setq target (file-symlink-p filename)) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
284 (if target |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
285 ;; Yes => chase that link, then start all over |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
286 ;; since the link may point to a directory name that uses links. |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
287 (file-truename (expand-file-name target dir)) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
288 ;; No, we are done! |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
289 filename))))) |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1537
diff
changeset
|
290 |
337 | 291 |
292 (defun switch-to-buffer-other-window (buffer) | |
293 "Select buffer BUFFER in another window." | |
294 (interactive "BSwitch to buffer in other window: ") | |
295 (let ((pop-up-windows t)) | |
296 (pop-to-buffer buffer t))) | |
297 | |
778 | 298 (defun switch-to-buffer-other-frame (buffer) |
299 "Switch to buffer BUFFER in another frame." | |
300 (interactive "BSwitch to buffer in other frame: ") | |
301 (let ((pop-up-frames t)) | |
1799
8e52d9366e6c
(switch-to-buffer-other-frame): Pass t to pop-to-buffer.
Roland McGrath <roland@gnu.org>
parents:
1725
diff
changeset
|
302 (pop-to-buffer buffer t))) |
423 | 303 |
337 | 304 (defun find-file (filename) |
305 "Edit file FILENAME. | |
306 Switch to a buffer visiting file FILENAME, | |
307 creating one if none already exists." | |
308 (interactive "FFind file: ") | |
309 (switch-to-buffer (find-file-noselect filename))) | |
310 | |
311 (defun find-file-other-window (filename) | |
312 "Edit file FILENAME, in another window. | |
313 May create a new window, or reuse an existing one. | |
314 See the function `display-buffer'." | |
315 (interactive "FFind file in other window: ") | |
316 (switch-to-buffer-other-window (find-file-noselect filename))) | |
317 | |
778 | 318 (defun find-file-other-frame (filename) |
319 "Edit file FILENAME, in another frame. | |
320 May create a new frame, or reuse an existing one. | |
423 | 321 See the function `display-buffer'." |
778 | 322 (interactive "FFind file in other frame: ") |
323 (switch-to-buffer-other-frame (find-file-noselect filename))) | |
423 | 324 |
337 | 325 (defun find-file-read-only (filename) |
326 "Edit file FILENAME but don't allow changes. | |
327 Like \\[find-file] but marks buffer as read-only. | |
328 Use \\[toggle-read-only] to permit editing." | |
329 (interactive "fFind file read-only: ") | |
330 (find-file filename) | |
331 (setq buffer-read-only t)) | |
332 | |
333 (defun find-file-read-only-other-window (filename) | |
334 "Edit file FILENAME in another window but don't allow changes. | |
335 Like \\[find-file-other-window] but marks buffer as read-only. | |
336 Use \\[toggle-read-only] to permit editing." | |
337 (interactive "fFind file read-only other window: ") | |
338 (find-file filename) | |
339 (setq buffer-read-only t)) | |
340 | |
778 | 341 (defun find-file-read-only-other-frame (filename) |
342 "Edit file FILENAME in another frame but don't allow changes. | |
343 Like \\[find-file-other-frame] but marks buffer as read-only. | |
423 | 344 Use \\[toggle-read-only] to permit editing." |
778 | 345 (interactive "fFind file read-only other frame: ") |
346 (find-file-other-frame filename) | |
423 | 347 (setq buffer-read-only t)) |
348 | |
337 | 349 (defun find-alternate-file (filename) |
350 "Find file FILENAME, select its buffer, kill previous buffer. | |
351 If the current buffer now contains an empty file that you just visited | |
352 \(presumably by mistake), use this command to visit the file you really want." | |
353 (interactive | |
354 (let ((file buffer-file-name) | |
355 (file-name nil) | |
356 (file-dir nil)) | |
357 (and file | |
358 (setq file-name (file-name-nondirectory file) | |
359 file-dir (file-name-directory file))) | |
941 | 360 (list (read-file-name |
361 "Find alternate file: " file-dir nil nil file-name)))) | |
337 | 362 (and (buffer-modified-p) |
363 ;; (not buffer-read-only) | |
364 (not (yes-or-no-p (format "Buffer %s is modified; kill anyway? " | |
365 (buffer-name)))) | |
366 (error "Aborted")) | |
367 (let ((obuf (current-buffer)) | |
368 (ofile buffer-file-name) | |
369 (oname (buffer-name))) | |
370 (rename-buffer " **lose**") | |
371 (setq buffer-file-name nil) | |
372 (unwind-protect | |
373 (progn | |
374 (unlock-buffer) | |
375 (find-file filename)) | |
376 (cond ((eq obuf (current-buffer)) | |
377 (setq buffer-file-name ofile) | |
378 (lock-buffer) | |
379 (rename-buffer oname)))) | |
380 (or (eq (current-buffer) obuf) | |
381 (kill-buffer obuf)))) | |
382 | |
383 (defun create-file-buffer (filename) | |
384 "Create a suitably named buffer for visiting FILENAME, and return it. | |
385 FILENAME (sans directory) is used unchanged if that name is free; | |
386 otherwise a string <2> or <3> or ... is appended to get an unused name." | |
387 (let ((lastname (file-name-nondirectory filename))) | |
388 (if (string= lastname "") | |
389 (setq lastname filename)) | |
390 (generate-new-buffer lastname))) | |
391 | |
423 | 392 (defun generate-new-buffer (name) |
393 "Create and return a buffer with a name based on NAME. | |
1461 | 394 Choose the buffer's name using `generate-new-buffer-name'." |
423 | 395 (get-buffer-create (generate-new-buffer-name name))) |
396 | |
817 | 397 (defconst automount-dir-prefix "^/tmp_mnt/" |
398 "Regexp to match the automounter prefix in a directory name.") | |
399 | |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
400 (defvar abbreviated-home-dir nil |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
401 "The the user's homedir abbreviated according to `directory-abbrev-list'.") |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
402 |
423 | 403 (defun abbreviate-file-name (filename) |
1461 | 404 "Return a version of FILENAME shortened using `directory-abbrev-alist'. |
423 | 405 This also substitutes \"~\" for the user's home directory. |
1461 | 406 Type \\[describe-variable] directory-abbrev-alist RET for more information." |
817 | 407 ;; Get rid of the prefixes added by the automounter. |
408 (if (and (string-match automount-dir-prefix filename) | |
409 (file-exists-p (file-name-directory | |
410 (substring filename (1- (match-end 0)))))) | |
411 (setq filename (substring filename (1- (match-end 0))))) | |
423 | 412 (let ((tail directory-abbrev-alist)) |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
413 ;; If any elt of directory-abbrev-alist matches this name, |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
414 ;; abbreviate accordingly. |
423 | 415 (while tail |
416 (if (string-match (car (car tail)) filename) | |
417 (setq filename | |
418 (concat (cdr (car tail)) (substring filename (match-end 0))))) | |
419 (setq tail (cdr tail))) | |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
420 ;; Compute and save the abbreviated homedir name. |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
421 ;; We defer computing this until the first time it's needed, to |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
422 ;; give time for directory-abbrev-alist to be set properly. |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
423 (or abbreviated-home-dir |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
424 (setq abbreviated-home-dir |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
425 (let ((abbreviated-home-dir "$foo")) |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
426 (concat "^" (abbreviate-file-name (expand-file-name "~")))))) |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
427 ;; If FILENAME starts with the abbreviated homedir, |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
428 ;; make it start with `~' instead. |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
429 (if (string-match abbreviated-home-dir filename) |
423 | 430 (setq filename |
431 (concat "~" (substring filename (match-end 0))))) | |
432 filename)) | |
433 | |
337 | 434 (defun find-file-noselect (filename &optional nowarn) |
435 "Read file FILENAME into a buffer and return the buffer. | |
436 If a buffer exists visiting FILENAME, return that one, but | |
437 verify that the file has not changed since visited or saved. | |
438 The buffer is not selected, just returned to the caller." | |
817 | 439 (setq filename |
440 (abbreviate-file-name | |
441 (expand-file-name filename))) | |
337 | 442 (if (file-directory-p filename) |
443 (if find-file-run-dired | |
444 (dired-noselect filename) | |
445 (error "%s is a directory." filename)) | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
446 (let* ((buf (get-file-buffer filename)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
447 (truename (abbreviate-file-name (file-truename filename))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
448 (number (nthcdr 10 (file-attributes truename))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
449 ;; Find any buffer for a file which has same truename. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
450 (same-truename |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
451 (or buf ; Shortcut |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
452 (let (found |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
453 (list (buffer-list))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
454 (while (and (not found) list) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
455 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
456 (set-buffer (car list)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
457 (if (string= buffer-file-truename truename) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
458 (setq found (car list)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
459 (setq list (cdr list))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
460 found))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
461 (same-number |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
462 (or buf ; Shortcut |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
463 (and number |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
464 (let (found |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
465 (list (buffer-list))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
466 (while (and (not found) list) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
467 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
468 (set-buffer (car list)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
469 (if (equal buffer-file-number number) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
470 (setq found (car list)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
471 (setq list (cdr list))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
472 found)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
473 error) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
474 ;; Let user know if there is a buffer with the same truename. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
475 (if (and (not buf) same-truename (not nowarn)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
476 (message "%s and %s are the same file (%s)" |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
477 filename (buffer-file-name same-truename) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
478 truename) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
479 (if (and (not buf) same-number (not nowarn)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
480 (message "%s and %s are the same file" |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
481 filename (buffer-file-name same-number)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
482 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
483 ;; Optionally also find that buffer. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
484 (if (or find-file-existing-other-name find-file-visit-truename) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
485 (setq buf (or same-truename same-number))) |
337 | 486 (if buf |
487 (or nowarn | |
488 (verify-visited-file-modtime buf) | |
489 (cond ((not (file-exists-p filename)) | |
490 (error "File %s no longer exists!" filename)) | |
491 ((yes-or-no-p | |
492 (format | |
493 (if (buffer-modified-p buf) | |
494 "File %s changed on disk. Discard your edits? " | |
495 "File %s changed on disk. Read the new version? ") | |
496 (file-name-nondirectory filename))) | |
497 (save-excursion | |
498 (set-buffer buf) | |
499 (revert-buffer t t))))) | |
500 (save-excursion | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
501 ;;; The truename stuff makes this obsolete. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
502 ;;; (let* ((link-name (car (file-attributes filename))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
503 ;;; (linked-buf (and (stringp link-name) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
504 ;;; (get-file-buffer link-name)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
505 ;;; (if (bufferp linked-buf) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
506 ;;; (message "Symbolic link to file in buffer %s" |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
507 ;;; (buffer-name linked-buf)))) |
337 | 508 (setq buf (create-file-buffer filename)) |
509 (set-buffer buf) | |
510 (erase-buffer) | |
511 (condition-case () | |
512 (insert-file-contents filename t) | |
513 (file-error | |
514 (setq error t) | |
515 ;; Run find-file-not-found-hooks until one returns non-nil. | |
516 (let ((hooks find-file-not-found-hooks)) | |
517 (while (and hooks | |
518 (not (funcall (car hooks)))) | |
519 (setq hooks (cdr hooks)))))) | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
520 ;; Find the file's truename, and maybe use that as visited name. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
521 (setq buffer-file-truename (abbreviate-file-name truename)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
522 (setq buffer-file-number number) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
523 (if find-file-visit-truename (setq filename buffer-file-truename)) |
337 | 524 ;; Set buffer's default directory to that of the file. |
525 (setq default-directory (file-name-directory filename)) | |
526 ;; Turn off backup files for certain file names. Since | |
527 ;; this is a permanent local, the major mode won't eliminate it. | |
528 (and (not (funcall backup-enable-predicate buffer-file-name)) | |
529 (progn | |
530 (make-local-variable 'backup-inhibited) | |
531 (setq backup-inhibited t))) | |
532 (after-find-file error (not nowarn)))) | |
533 buf))) | |
534 | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
535 (defun after-find-file (&optional error warn noauto) |
337 | 536 "Called after finding a file and by the default revert function. |
537 Sets buffer mode, parses local variables. | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
538 Optional args ERROR, WARN, and NOAUTO: ERROR non-nil means there was an |
337 | 539 error in reading the file. WARN non-nil means warn if there |
540 exists an auto-save file more recent than the visited file. | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
541 NOAUTO means don't mess with auto-save mode. |
337 | 542 Finishes by calling the functions in `find-file-hooks'." |
543 (setq buffer-read-only (not (file-writable-p buffer-file-name))) | |
544 (if noninteractive | |
545 nil | |
546 (let* (not-serious | |
547 (msg | |
548 (cond ((and error (file-attributes buffer-file-name)) | |
549 (setq buffer-read-only t) | |
550 "File exists, but is read-protected.") | |
551 ((not buffer-read-only) | |
552 (if (and warn | |
553 (file-newer-than-file-p (make-auto-save-file-name) | |
554 buffer-file-name)) | |
555 "Auto save file is newer; consider M-x recover-file" | |
556 (setq not-serious t) | |
557 (if error "(New file)" nil))) | |
558 ((not error) | |
559 (setq not-serious t) | |
560 "Note: file is write protected") | |
561 ((file-attributes (directory-file-name default-directory)) | |
562 "File not found and directory write-protected") | |
1537
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
563 ((file-exists-p (file-name-directory buffer-file-name)) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
564 (setq buffer-read-only nil)) |
337 | 565 (t |
423 | 566 (setq buffer-read-only nil) |
1537
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
567 (if (file-exists-p (file-name-directory (directory-file-name (file-name-directory buffer-file-name)))) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
568 "Use M-x make-dir RET RET to create the directory" |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
569 "Use C-u M-x make-dir RET RET to create directory and its parents"))))) |
337 | 570 (if msg |
571 (progn | |
572 (message msg) | |
573 (or not-serious (sit-for 1 nil t))))) | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
574 (if (and auto-save-default (not noauto)) |
337 | 575 (auto-save-mode t))) |
576 (normal-mode t) | |
577 (mapcar 'funcall find-file-hooks)) | |
578 | |
579 (defun normal-mode (&optional find-file) | |
580 "Choose the major mode for this buffer automatically. | |
581 Also sets up any specified local variables of the file. | |
582 Uses the visited file name, the -*- line, and the local variables spec. | |
583 | |
584 This function is called automatically from `find-file'. In that case, | |
585 we may set up specified local variables depending on the value of | |
586 `enable-local-variables': if it is t, we do; if it is nil, we don't; | |
587 otherwise, we query. `enable-local-variables' is ignored if you | |
588 run `normal-mode' explicitly." | |
589 (interactive) | |
590 (or find-file (funcall (or default-major-mode 'fundamental-mode))) | |
591 (condition-case err | |
592 (set-auto-mode) | |
593 (error (message "File mode specification error: %s" | |
594 (prin1-to-string err)))) | |
595 (condition-case err | |
566 | 596 (let ((enable-local-variables (or (not find-file) |
597 enable-local-variables))) | |
598 (hack-local-variables)) | |
337 | 599 (error (message "File local-variables error: %s" |
600 (prin1-to-string err))))) | |
601 | |
566 | 602 (defvar auto-mode-alist (mapcar 'purecopy |
603 '(("\\.text\\'" . text-mode) | |
604 ("\\.c\\'" . c-mode) | |
605 ("\\.h\\'" . c-mode) | |
606 ("\\.tex\\'" . TeX-mode) | |
607 ("\\.ltx\\'" . LaTeX-mode) | |
608 ("\\.el\\'" . emacs-lisp-mode) | |
609 ("\\.mm\\'" . nroff-mode) | |
610 ("\\.me\\'" . nroff-mode) | |
611 ("\\.scm\\'" . scheme-mode) | |
612 ("\\.l\\'" . lisp-mode) | |
613 ("\\.lisp\\'" . lisp-mode) | |
614 ("\\.f\\'" . fortran-mode) | |
615 ("\\.for\\'" . fortran-mode) | |
616 ("\\.mss\\'" . scribe-mode) | |
617 ("\\.pl\\'" . prolog-mode) | |
618 ("\\.cc\\'" . c++-mode) | |
619 ("\\.C\\'" . c++-mode) | |
620 ;;; Less common extensions come here | |
621 ;;; so more common ones above are found faster. | |
622 ("\\.s\\'" . asm-mode) | |
623 ("ChangeLog\\'" . change-log-mode) | |
1090
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
624 ("ChangeLog.[0-9]+\\'" . change-log-mode) |
566 | 625 ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode) |
1090
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
626 ;; The following should come after the ChangeLog pattern |
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
627 ;; for the sake of ChangeLog.1, etc. |
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
628 ("\\.[12345678]\\'" . nroff-mode) |
566 | 629 ("\\.TeX\\'" . TeX-mode) |
630 ("\\.sty\\'" . LaTeX-mode) | |
631 ("\\.bbl\\'" . LaTeX-mode) | |
632 ("\\.bib\\'" . bibtex-mode) | |
633 ("\\.article\\'" . text-mode) | |
634 ("\\.letter\\'" . text-mode) | |
635 ("\\.texinfo\\'" . texinfo-mode) | |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
817
diff
changeset
|
636 ("\\.texi\\'" . texinfo-mode) |
566 | 637 ("\\.lsp\\'" . lisp-mode) |
638 ("\\.awk\\'" . awk-mode) | |
639 ("\\.prolog\\'" . prolog-mode) | |
640 ;; Mailer puts message to be edited in | |
641 ;; /tmp/Re.... or Message | |
642 ("^/tmp/Re" . text-mode) | |
643 ("/Message[0-9]*\\'" . text-mode) | |
644 ;; some news reader is reported to use this | |
645 ("^/tmp/fol/" . text-mode) | |
646 ("\\.y\\'" . c-mode) | |
647 ("\\.oak\\'" . scheme-mode) | |
648 ("\\.scm.[0-9]*\\'" . scheme-mode) | |
649 ;; .emacs following a directory delimiter | |
650 ;; in either Unix or VMS syntax. | |
651 ("[]>:/]\\..*emacs\\'" . emacs-lisp-mode) | |
652 ("\\.ml\\'" . lisp-mode))) | |
653 "\ | |
654 Alist of filename patterns vs corresponding major mode functions. | |
655 Each element looks like (REGEXP . FUNCTION). | |
656 Visiting a file whose name matches REGEXP causes FUNCTION to be called.") | |
657 | |
337 | 658 (defun set-auto-mode () |
659 "Select major mode appropriate for current buffer. | |
566 | 660 This checks for a -*- mode tag in the buffer's text, or |
661 compares the filename against the entries in auto-mode-alist. It does | |
662 not check for the \"mode:\" local variable in the Local Variables | |
663 section of the file; for that, use `hack-local-variables'. | |
664 | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
665 If `enable-local-variables' is nil, this function does not check for a |
566 | 666 -*- mode tag." |
337 | 667 ;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*- |
668 (let (beg end mode) | |
669 (save-excursion | |
670 (goto-char (point-min)) | |
671 (skip-chars-forward " \t\n") | |
566 | 672 (if (and enable-local-variables |
673 (search-forward "-*-" (save-excursion (end-of-line) (point)) t) | |
337 | 674 (progn |
675 (skip-chars-forward " \t") | |
676 (setq beg (point)) | |
566 | 677 (search-forward "-*-" |
678 (save-excursion (end-of-line) (point)) | |
679 t)) | |
337 | 680 (progn |
681 (forward-char -3) | |
682 (skip-chars-backward " \t") | |
683 (setq end (point)) | |
684 (goto-char beg) | |
685 (if (search-forward ":" end t) | |
686 (progn | |
687 (goto-char beg) | |
688 (if (let ((case-fold-search t)) | |
689 (search-forward "mode:" end t)) | |
690 (progn | |
691 (skip-chars-forward " \t") | |
692 (setq beg (point)) | |
693 (if (search-forward ";" end t) | |
694 (forward-char -1) | |
695 (goto-char end)) | |
696 (skip-chars-backward " \t") | |
697 (setq mode (buffer-substring beg (point)))))) | |
698 (setq mode (buffer-substring beg end))))) | |
699 (setq mode (intern (concat (downcase mode) "-mode"))) | |
700 (let ((alist auto-mode-alist) | |
701 (name buffer-file-name)) | |
702 (let ((case-fold-search (eq system-type 'vax-vms))) | |
703 ;; Remove backup-suffixes from file name. | |
704 (setq name (file-name-sans-versions name)) | |
705 ;; Find first matching alist entry. | |
706 (while (and (not mode) alist) | |
707 (if (string-match (car (car alist)) name) | |
708 (setq mode (cdr (car alist)))) | |
709 (setq alist (cdr alist))))))) | |
710 (if mode (funcall mode)))) | |
711 | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
712 (defun hack-local-variables-prop-line () |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
713 ;; Set local variables specified in the -*- line. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
714 ;; Returns t if mode was set. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
715 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
716 (goto-char (point-min)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
717 (skip-chars-forward " \t\n\r") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
718 (let ((result '()) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
719 (end (save-excursion (end-of-line) (point))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
720 mode-p) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
721 ;; Parse the -*- line into the `result' alist. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
722 (cond ((not (search-forward "-*-" end t)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
723 ;; doesn't have one. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
724 nil) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
725 ((looking-at "[ \t]*\\([^ \t\n\r:;]+\\)\\([ \t]*-\\*-\\)") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
726 ;; Simple form: "-*- MODENAME -*-". |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
727 (setq result |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
728 (list (cons 'mode |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
729 (intern (buffer-substring |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
730 (match-beginning 1) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
731 (match-end 1))))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
732 (t |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
733 ;; Hairy form: '-*-' [ <variable> ':' <value> ';' ]* '-*-' |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
734 ;; (last ";" is optional). |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
735 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
736 (if (search-forward "-*-" end t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
737 (setq end (- (point) 3)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
738 (error "-*- not terminated before end of line"))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
739 (while (< (point) end) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
740 (or (looking-at "[ \t]*\\([^ \t\n:]+\\)[ \t]*:[ \t]*") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
741 (error "malformed -*- line")) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
742 (goto-char (match-end 0)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
743 (let ((key (intern (downcase (buffer-substring |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
744 (match-beginning 1) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
745 (match-end 1))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
746 (val (save-restriction |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
747 (narrow-to-region (point) end) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
748 (read (current-buffer))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
749 (setq result (cons (cons key val) result)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
750 (skip-chars-forward " \t;"))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
751 (setq result (nreverse result)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
752 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
753 ;; Mode is magic. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
754 (let (mode) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
755 (while (setq mode (assq 'mode result)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
756 (setq mode-p t result (delq mode result)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
757 (funcall (intern (concat (downcase (symbol-name (cdr mode))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
758 "-mode"))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
759 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
760 (if (and result |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
761 (or (eq enable-local-variables t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
762 (and enable-local-variables |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
763 (save-window-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
764 (switch-to-buffer (current-buffer)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
765 (y-or-n-p (format "Set local variables as specified in -*- line of %s? " |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
766 (file-name-nondirectory buffer-file-name))))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
767 (while result |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
768 (let ((key (car (car result))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
769 (val (cdr (car result)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
770 ;; 'mode has already been removed from this list. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
771 (hack-one-local-variable key val)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
772 (setq result (cdr result)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
773 mode-p))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
774 |
566 | 775 (defun hack-local-variables () |
1371 | 776 "Parse and put into effect this buffer's local variables spec." |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
777 (hack-local-variables-prop-line) |
337 | 778 ;; Look for "Local variables:" line in last page. |
779 (save-excursion | |
780 (goto-char (point-max)) | |
781 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move) | |
782 (if (let ((case-fold-search t)) | |
783 (and (search-forward "Local Variables:" nil t) | |
566 | 784 (or (eq enable-local-variables t) |
337 | 785 (and enable-local-variables |
786 (save-window-excursion | |
787 (switch-to-buffer (current-buffer)) | |
788 (save-excursion | |
789 (beginning-of-line) | |
790 (set-window-start (selected-window) (point))) | |
791 (y-or-n-p (format "Set local variables as specified at end of %s? " | |
792 (file-name-nondirectory buffer-file-name)))))))) | |
793 (let ((continue t) | |
1066
9b788095582b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
941
diff
changeset
|
794 prefix prefixlen suffix beg |
9b788095582b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
941
diff
changeset
|
795 (enable-local-eval enable-local-eval)) |
337 | 796 ;; The prefix is what comes before "local variables:" in its line. |
797 ;; The suffix is what comes after "local variables:" in its line. | |
798 (skip-chars-forward " \t") | |
799 (or (eolp) | |
800 (setq suffix (buffer-substring (point) | |
801 (progn (end-of-line) (point))))) | |
802 (goto-char (match-beginning 0)) | |
803 (or (bolp) | |
804 (setq prefix | |
805 (buffer-substring (point) | |
806 (progn (beginning-of-line) (point))))) | |
566 | 807 |
337 | 808 (if prefix (setq prefixlen (length prefix) |
809 prefix (regexp-quote prefix))) | |
810 (if suffix (setq suffix (concat (regexp-quote suffix) "$"))) | |
811 (while continue | |
812 ;; Look at next local variable spec. | |
813 (if selective-display (re-search-forward "[\n\C-m]") | |
814 (forward-line 1)) | |
815 ;; Skip the prefix, if any. | |
816 (if prefix | |
817 (if (looking-at prefix) | |
818 (forward-char prefixlen) | |
819 (error "Local variables entry is missing the prefix"))) | |
820 ;; Find the variable name; strip whitespace. | |
821 (skip-chars-forward " \t") | |
822 (setq beg (point)) | |
823 (skip-chars-forward "^:\n") | |
824 (if (eolp) (error "Missing colon in local variables entry")) | |
825 (skip-chars-backward " \t") | |
826 (let* ((str (buffer-substring beg (point))) | |
827 (var (read str)) | |
828 val) | |
829 ;; Setting variable named "end" means end of list. | |
830 (if (string-equal (downcase str) "end") | |
831 (setq continue nil) | |
832 ;; Otherwise read the variable value. | |
833 (skip-chars-forward "^:") | |
834 (forward-char 1) | |
835 (setq val (read (current-buffer))) | |
836 (skip-chars-backward "\n") | |
837 (skip-chars-forward " \t") | |
838 (or (if suffix (looking-at suffix) (eolp)) | |
839 (error "Local variables entry is terminated incorrectly")) | |
840 ;; Set the variable. "Variables" mode and eval are funny. | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
841 (hack-one-local-variable var val)))))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
842 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
843 (defconst ignored-local-variables |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
844 '(enable-local-eval) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
845 "Variables to be ignored in a file's local variable spec.") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
846 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
847 ;; "Set" one variable in a local variables spec. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
848 ;; A few variable names are treated specially. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
849 (defun hack-one-local-variable (var val) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
850 (cond ((eq var 'mode) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
851 (funcall (intern (concat (downcase (symbol-name val)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
852 "-mode")))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
853 ((memq var ignored-local-variables) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
854 nil) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
855 ;; "Setting" eval means either eval it or do nothing. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
856 ((eq var 'eval) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
857 (if (and (not (string= (user-login-name) "root")) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
858 (or (eq enable-local-eval t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
859 (and enable-local-eval |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
860 (save-window-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
861 (switch-to-buffer (current-buffer)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
862 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
863 (beginning-of-line) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
864 (set-window-start (selected-window) (point))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
865 (setq enable-local-eval |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
866 (y-or-n-p (format "Process `eval' local variable in file %s? " |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
867 (file-name-nondirectory buffer-file-name)))))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
868 (save-excursion (eval val)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
869 (message "Ignoring `eval:' in file's local variables"))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
870 ;; Ordinary variable, really set it. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
871 (t (make-local-variable var) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
872 (set var val)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
873 |
337 | 874 |
875 (defun set-visited-file-name (filename) | |
876 "Change name of file visited in current buffer to FILENAME. | |
877 The next time the buffer is saved it will go in the newly specified file. | |
878 nil or empty string as argument means make buffer not be visiting any file. | |
879 Remember to delete the initial contents of the minibuffer | |
880 if you wish to pass an empty string as the argument." | |
881 (interactive "FSet visited file name: ") | |
882 (if filename | |
883 (setq filename | |
884 (if (string-equal filename "") | |
885 nil | |
886 (expand-file-name filename)))) | |
887 (or (equal filename buffer-file-name) | |
888 (null filename) | |
889 (progn | |
890 (lock-buffer filename) | |
891 (unlock-buffer))) | |
892 (setq buffer-file-name filename) | |
893 (if filename ; make buffer name reflect filename. | |
423 | 894 (let ((new-name (file-name-nondirectory buffer-file-name))) |
337 | 895 (if (string= new-name "") |
896 (error "Empty file name")) | |
897 (if (eq system-type 'vax-vms) | |
898 (setq new-name (downcase new-name))) | |
899 (setq default-directory (file-name-directory buffer-file-name)) | |
423 | 900 (rename-buffer new-name t))) |
337 | 901 (setq buffer-backed-up nil) |
902 (clear-visited-file-modtime) | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
903 (if filename |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
904 (progn |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
905 (setq buffer-file-truename |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
906 (abbreviate-file-name (file-truename buffer-file-name))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
907 (if find-file-visit-truename |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
908 (setq buffer-file-name buffer-file-truename)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
909 (setq buffer-file-number (nth 10 (file-attributes buffer-file-name)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
910 (setq buffer-file-truename nil buffer-file-number nil)) |
337 | 911 ;; write-file-hooks is normally used for things like ftp-find-file |
912 ;; that visit things that are not local files as if they were files. | |
913 ;; Changing to visit an ordinary local file instead should flush the hook. | |
914 (kill-local-variable 'write-file-hooks) | |
915 (kill-local-variable 'revert-buffer-function) | |
916 (kill-local-variable 'backup-inhibited) | |
917 ;; Turn off backup files for certain file names. | |
918 ;; Since this is a permanent local, the major mode won't eliminate it. | |
919 (and (not (funcall backup-enable-predicate buffer-file-name)) | |
920 (progn | |
921 (make-local-variable 'backup-inhibited) | |
922 (setq backup-inhibited t))) | |
923 ;; If auto-save was not already on, turn it on if appropriate. | |
924 (if (not buffer-auto-save-file-name) | |
1471
2e29ad2afc42
(set-visited-file-name): Change the auto save file name.
Richard M. Stallman <rms@gnu.org>
parents:
1461
diff
changeset
|
925 (auto-save-mode (and buffer-file-name auto-save-default)) |
2e29ad2afc42
(set-visited-file-name): Change the auto save file name.
Richard M. Stallman <rms@gnu.org>
parents:
1461
diff
changeset
|
926 ;; If auto save is on, start using a new name. |
2e29ad2afc42
(set-visited-file-name): Change the auto save file name.
Richard M. Stallman <rms@gnu.org>
parents:
1461
diff
changeset
|
927 ;; We deliberately don't rename or delete the old auto save |
2e29ad2afc42
(set-visited-file-name): Change the auto save file name.
Richard M. Stallman <rms@gnu.org>
parents:
1461
diff
changeset
|
928 ;; for the old visited file name. This is because perhaps |
2e29ad2afc42
(set-visited-file-name): Change the auto save file name.
Richard M. Stallman <rms@gnu.org>
parents:
1461
diff
changeset
|
929 ;; the user wants to save the new state and then compare with the |
2e29ad2afc42
(set-visited-file-name): Change the auto save file name.
Richard M. Stallman <rms@gnu.org>
parents:
1461
diff
changeset
|
930 ;; previous state from the auto save file. |
2e29ad2afc42
(set-visited-file-name): Change the auto save file name.
Richard M. Stallman <rms@gnu.org>
parents:
1461
diff
changeset
|
931 (setq buffer-auto-save-file-name |
2e29ad2afc42
(set-visited-file-name): Change the auto save file name.
Richard M. Stallman <rms@gnu.org>
parents:
1461
diff
changeset
|
932 (make-auto-save-file-name))) |
337 | 933 (if buffer-file-name |
934 (set-buffer-modified-p t))) | |
935 | |
936 (defun write-file (filename) | |
937 "Write current buffer into file FILENAME. | |
938 Makes buffer visit that file, and marks it not modified." | |
939 ;; (interactive "FWrite file: ") | |
940 (interactive | |
941 (list (if buffer-file-name | |
942 (read-file-name "Write file: " | |
943 nil nil nil nil) | |
944 (read-file-name "Write file: " | |
945 (cdr (assq 'default-directory | |
946 (buffer-local-variables))) | |
947 nil nil (buffer-name))))) | |
948 (or (null filename) (string-equal filename "") | |
949 (set-visited-file-name filename)) | |
950 (set-buffer-modified-p t) | |
951 (save-buffer)) | |
952 | |
953 (defun backup-buffer () | |
954 "Make a backup of the disk file visited by the current buffer, if appropriate. | |
955 This is normally done before saving the buffer the first time. | |
956 If the value is non-nil, it is the result of `file-modes' on the original | |
957 file; this means that the caller, after saving the buffer, should change | |
958 the modes of the new file to agree with the old modes." | |
959 (if (and make-backup-files (not backup-inhibited) | |
960 (not buffer-backed-up) | |
961 (file-exists-p buffer-file-name) | |
962 (memq (aref (elt (file-attributes buffer-file-name) 8) 0) | |
963 '(?- ?l))) | |
964 (let ((real-file-name buffer-file-name) | |
965 backup-info backupname targets setmodes) | |
966 ;; If specified name is a symbolic link, chase it to the target. | |
967 ;; Thus we make the backups in the directory where the real file is. | |
968 (while (let ((tem (file-symlink-p real-file-name))) | |
969 (if tem | |
970 (setq real-file-name | |
971 (expand-file-name tem | |
972 (file-name-directory real-file-name)))) | |
973 tem)) | |
974 (setq backup-info (find-backup-file-name real-file-name) | |
975 backupname (car backup-info) | |
976 targets (cdr backup-info)) | |
977 ;;; (if (file-directory-p buffer-file-name) | |
978 ;;; (error "Cannot save buffer in directory %s" buffer-file-name)) | |
979 (condition-case () | |
980 (let ((delete-old-versions | |
981 ;; If have old versions to maybe delete, | |
982 ;; ask the user to confirm now, before doing anything. | |
983 ;; But don't actually delete til later. | |
984 (and targets | |
844
bf829a2d63b4
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
819
diff
changeset
|
985 (or (eq trim-versions-without-asking t) (eq trim-versions-without-asking nil)) |
337 | 986 (or trim-versions-without-asking |
987 (y-or-n-p (format "Delete excess backup versions of %s? " | |
988 real-file-name)))))) | |
989 ;; Actually write the back up file. | |
990 (condition-case () | |
991 (if (or file-precious-flag | |
992 ; (file-symlink-p buffer-file-name) | |
993 backup-by-copying | |
994 (and backup-by-copying-when-linked | |
995 (> (file-nlinks real-file-name) 1)) | |
996 (and backup-by-copying-when-mismatch | |
997 (let ((attr (file-attributes real-file-name))) | |
998 (or (nth 9 attr) | |
999 (/= (nth 2 attr) (user-uid)))))) | |
1103
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1000 (condition-case () |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1001 (copy-file real-file-name backupname t t) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1002 (file-error |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1003 ;; If copying fails because file BACKUPNAME |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1004 ;; is not writable, delete that file and try again. |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1005 (if (and (file-exists-p backupname) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1006 (not (file-writable-p backupname))) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1007 (delete-file backupname)) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1008 (copy-file real-file-name backupname t t))) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1009 ;; rename-file should delete old backup. |
337 | 1010 (rename-file real-file-name backupname t) |
1011 (setq setmodes (file-modes backupname))) | |
1012 (file-error | |
1013 ;; If trouble writing the backup, write it in ~. | |
1014 (setq backupname (expand-file-name "~/%backup%~")) | |
1015 (message "Cannot write backup file; backing up in ~/%%backup%%~") | |
1016 (sleep-for 1) | |
1103
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1017 (condition-case () |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1018 (copy-file real-file-name backupname t t) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1019 (file-error |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1020 ;; If copying fails because file BACKUPNAME |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1021 ;; is not writable, delete that file and try again. |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1022 (if (and (file-exists-p backupname) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1023 (not (file-writable-p backupname))) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1024 (delete-file backupname)) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1025 (copy-file real-file-name backupname t t))))) |
337 | 1026 (setq buffer-backed-up t) |
1027 ;; Now delete the old versions, if desired. | |
1028 (if delete-old-versions | |
1029 (while targets | |
1030 (condition-case () | |
1031 (delete-file (car targets)) | |
1032 (file-error nil)) | |
1033 (setq targets (cdr targets)))) | |
1034 setmodes) | |
1035 (file-error nil))))) | |
1036 | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1037 (defun file-name-sans-versions (name &optional keep-backup-version) |
337 | 1038 "Return FILENAME sans backup versions or strings. |
1039 This is a separate procedure so your site-init or startup file can | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1040 redefine it. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1041 If the optional argument KEEP-BACKUP-VERSION is non-nil, |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1042 we do not remove backup version numbers, only true file version numbers." |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1537
diff
changeset
|
1043 (let ((handler (find-file-name-handler name))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1044 (if handler |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1045 (funcall handler 'file-name-sans-versions name keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1046 (substring name 0 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1047 (if (eq system-type 'vax-vms) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1048 ;; VMS version number is (a) semicolon, optional |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1049 ;; sign, zero or more digits or (b) period, option |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1050 ;; sign, zero or more digits, provided this is the |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1051 ;; second period encountered outside of the |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1052 ;; device/directory part of the file name. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1053 (or (string-match ";[---+]?[0-9]*\\'" name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1054 (if (string-match "\\.[^]>:]*\\(\\.[---+]?[0-9]*\\)\\'" |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1055 name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1056 (match-beginning 1)) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1057 (length name)) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1058 (if keep-backup-version |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1059 (length name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1060 (or (string-match "\\.~[0-9]+~\\'" name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1061 (string-match "~\\'" name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1062 (length name)))))))) |
337 | 1063 |
1064 (defun make-backup-file-name (file) | |
1065 "Create the non-numeric backup file name for FILE. | |
1066 This is a separate function so you can redefine it for customization." | |
1067 (concat file "~")) | |
1068 | |
1069 (defun backup-file-name-p (file) | |
1070 "Return non-nil if FILE is a backup file name (numeric or not). | |
1071 This is a separate function so you can redefine it for customization. | |
1072 You may need to redefine `file-name-sans-versions' as well." | |
1073 (string-match "~$" file)) | |
1074 | |
890
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1075 ;; This is used in various files. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1076 ;; The usage of bv-length is not very clean, |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1077 ;; but I can't see a good alternative, |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1078 ;; so as of now I am leaving it alone. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1079 (defun backup-extract-version (fn) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1080 "Given the name of a numeric backup file, return the backup number. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1081 Uses the free variable `bv-length', whose value should be |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1082 the index in the name where the version number begins." |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1083 (if (and (string-match "[0-9]+~$" fn bv-length) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1084 (= (match-beginning 0) bv-length)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1085 (string-to-int (substring fn bv-length -1)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1086 0)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1087 |
337 | 1088 ;; I believe there is no need to alter this behavior for VMS; |
1089 ;; since backup files are not made on VMS, it should not get called. | |
1090 (defun find-backup-file-name (fn) | |
1091 "Find a file name for a backup file, and suggestions for deletions. | |
1092 Value is a list whose car is the name for the backup file | |
1093 and whose cdr is a list of old versions to consider deleting now." | |
1094 (if (eq version-control 'never) | |
1095 (list (make-backup-file-name fn)) | |
1096 (let* ((base-versions (concat (file-name-nondirectory fn) ".~")) | |
1097 (bv-length (length base-versions)) | |
1098 (possibilities (file-name-all-completions | |
1099 base-versions | |
1100 (file-name-directory fn))) | |
755 | 1101 (versions (sort (mapcar |
890
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1102 (function backup-extract-version) |
755 | 1103 possibilities) |
337 | 1104 '<)) |
423 | 1105 (high-water-mark (apply 'max 0 versions)) |
337 | 1106 (deserve-versions-p |
1107 (or version-control | |
1108 (> high-water-mark 0))) | |
1109 (number-to-delete (- (length versions) | |
1110 kept-old-versions kept-new-versions -1))) | |
1111 (if (not deserve-versions-p) | |
1112 (list (make-backup-file-name fn)) | |
1113 (cons (concat fn ".~" (int-to-string (1+ high-water-mark)) "~") | |
1114 (if (> number-to-delete 0) | |
1115 (mapcar (function (lambda (n) | |
1116 (concat fn ".~" (int-to-string n) "~"))) | |
1117 (let ((v (nthcdr kept-old-versions versions))) | |
1118 (rplacd (nthcdr (1- number-to-delete) v) ()) | |
1119 v)))))))) | |
1120 | |
1121 (defun file-nlinks (filename) | |
1122 "Return number of names file FILENAME has." | |
1123 (car (cdr (file-attributes filename)))) | |
1229
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1124 |
1246
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1125 (defun file-relative-name-1 (directory) |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1126 (cond ((string= directory "/") |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1127 filename) |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1128 ((string-match (concat "^" (regexp-quote directory)) |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1129 filename) |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1130 (substring filename (match-end 0))) |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1131 (t |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1132 (file-relative-name-1 |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1133 (file-name-directory (substring directory 0 -1)))))) |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1134 |
1229
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1135 (defun file-relative-name (filename &optional directory) |
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1136 "Convert FILENAME to be relative to DIRECTORY (default: default-directory)." |
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1137 (setq filename (expand-file-name filename) |
1230
f882f7a19c60
(file-relative-name): Don't lose when DIRECTORY is nil.
Roland McGrath <roland@gnu.org>
parents:
1229
diff
changeset
|
1138 directory (file-name-as-directory (if directory |
f882f7a19c60
(file-relative-name): Don't lose when DIRECTORY is nil.
Roland McGrath <roland@gnu.org>
parents:
1229
diff
changeset
|
1139 (expand-file-name directory) |
1229
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1140 default-directory))) |
1246
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1141 (file-relative-name-1 directory)) |
337 | 1142 |
1143 (defun save-buffer (&optional args) | |
1144 "Save current buffer in visited file if modified. Versions described below. | |
1145 By default, makes the previous version into a backup file | |
1146 if previously requested or if this is the first save. | |
1147 With 1 or 3 \\[universal-argument]'s, marks this version | |
1148 to become a backup when the next save is done. | |
1149 With 2 or 3 \\[universal-argument]'s, | |
1150 unconditionally makes the previous version into a backup file. | |
1151 With argument of 0, never makes the previous version into a backup file. | |
1152 | |
1153 If a file's name is FOO, the names of its numbered backup versions are | |
1154 FOO.~i~ for various integers i. A non-numbered backup file is called FOO~. | |
1155 Numeric backups (rather than FOO~) will be made if value of | |
1156 `version-control' is not the atom `never' and either there are already | |
1157 numeric versions of the file being backed up, or `version-control' is | |
1158 non-nil. | |
1159 We don't want excessive versions piling up, so there are variables | |
1160 `kept-old-versions', which tells Emacs how many oldest versions to keep, | |
1161 and `kept-new-versions', which tells how many newest versions to keep. | |
1162 Defaults are 2 old versions and 2 new. | |
1163 `dired-kept-versions' controls dired's clean-directory (.) command. | |
1164 If `trim-versions-without-asking' is nil, system will query user | |
1165 before trimming versions. Otherwise it does it silently." | |
1166 (interactive "p") | |
1167 (let ((modp (buffer-modified-p)) | |
1168 (large (> (buffer-size) 50000)) | |
1169 (make-backup-files (and make-backup-files (not (eq args 0))))) | |
1170 (and modp (memq args '(16 64)) (setq buffer-backed-up nil)) | |
1171 (if (and modp large) (message "Saving file %s..." (buffer-file-name))) | |
1172 (basic-save-buffer) | |
1173 (and modp (memq args '(4 64)) (setq buffer-backed-up nil)))) | |
1174 | |
1175 (defun delete-auto-save-file-if-necessary (&optional force) | |
1176 "Delete auto-save file for current buffer if `delete-auto-save-files' is t. | |
1177 Normally delete only if the file was written by this Emacs since | |
1178 the last real save, but optional arg FORCE non-nil means delete anyway." | |
1179 (and buffer-auto-save-file-name delete-auto-save-files | |
1180 (not (string= buffer-file-name buffer-auto-save-file-name)) | |
1181 (or force (recent-auto-save-p)) | |
1182 (progn | |
1183 (condition-case () | |
1184 (delete-file buffer-auto-save-file-name) | |
1185 (file-error nil)) | |
1186 (set-buffer-auto-saved)))) | |
1187 | |
1188 (defun basic-save-buffer () | |
1189 "Save the current buffer in its visited file, if it has been modified." | |
1190 (interactive) | |
1191 (if (buffer-modified-p) | |
1192 (let ((recent-save (recent-auto-save-p)) | |
1193 setmodes tempsetmodes) | |
1194 ;; On VMS, rename file and buffer to get rid of version number. | |
1195 (if (and (eq system-type 'vax-vms) | |
1196 (not (string= buffer-file-name | |
1197 (file-name-sans-versions buffer-file-name)))) | |
1198 (let (buffer-new-name) | |
1199 ;; Strip VMS version number before save. | |
1200 (setq buffer-file-name | |
1201 (file-name-sans-versions buffer-file-name)) | |
1202 ;; Construct a (unique) buffer name to correspond. | |
1203 (let ((buf (create-file-buffer (downcase buffer-file-name)))) | |
1204 (setq buffer-new-name (buffer-name buf)) | |
1205 (kill-buffer buf)) | |
1206 (rename-buffer buffer-new-name))) | |
1207 ;; If buffer has no file name, ask user for one. | |
1208 (or buffer-file-name | |
1209 (progn | |
1210 (setq buffer-file-name | |
1211 (expand-file-name (read-file-name "File to save in: ") nil) | |
1212 default-directory (file-name-directory buffer-file-name)) | |
1213 (auto-save-mode auto-save-default))) | |
1214 (or (verify-visited-file-modtime (current-buffer)) | |
1215 (not (file-exists-p buffer-file-name)) | |
1216 (yes-or-no-p | |
1217 (format "%s has changed since visited or saved. Save anyway? " | |
1218 (file-name-nondirectory buffer-file-name))) | |
1219 (error "Save not confirmed")) | |
1220 (save-restriction | |
1221 (widen) | |
1222 (and (> (point-max) 1) | |
1223 (/= (char-after (1- (point-max))) ?\n) | |
1224 (or (eq require-final-newline t) | |
1225 (and require-final-newline | |
1226 (y-or-n-p | |
1227 (format "Buffer %s does not end in newline. Add one? " | |
1228 (buffer-name))))) | |
1229 (save-excursion | |
1230 (goto-char (point-max)) | |
1231 (insert ?\n))) | |
605 | 1232 (let ((hooks (append write-contents-hooks write-file-hooks)) |
337 | 1233 (done nil)) |
1234 (while (and hooks | |
1235 (not (setq done (funcall (car hooks))))) | |
1236 (setq hooks (cdr hooks))) | |
1237 ;; If a hook returned t, file is already "written". | |
1238 (cond ((not done) | |
1239 (if (not (file-writable-p buffer-file-name)) | |
1240 (let ((dir (file-name-directory buffer-file-name))) | |
1241 (if (not (file-directory-p dir)) | |
1242 (error "%s is not a directory" dir) | |
1243 (if (not (file-exists-p buffer-file-name)) | |
1244 (error "Directory %s write-protected" dir) | |
1245 (if (yes-or-no-p | |
1246 (format "File %s is write-protected; try to save anyway? " | |
1247 (file-name-nondirectory | |
1248 buffer-file-name))) | |
1249 (setq tempsetmodes t) | |
1250 (error "Attempt to save to a file which you aren't allowed to write")))))) | |
1251 (or buffer-backed-up | |
1252 (setq setmodes (backup-buffer))) | |
1253 (if file-precious-flag | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1254 ;; If file is precious, write temp name, then rename it. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1255 (let ((dir (file-name-directory buffer-file-name)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1256 (realname buffer-file-name) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1257 tempname temp nogood i succeed) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1258 (setq i 0) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1259 (setq nogood t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1260 ;; Find the temporary name to write under. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1261 (while nogood |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1262 (setq tempname (format "%s#tmp#%d" dir i)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1263 (setq nogood (file-exists-p tempname)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1264 (setq i (1+ i))) |
337 | 1265 (unwind-protect |
1266 (progn (clear-visited-file-modtime) | |
1267 (write-region (point-min) (point-max) | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1268 tempname nil realname) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1269 (setq succeed t)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1270 ;; If writing the temp file fails, |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1271 ;; delete the temp file. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1272 (or succeed (delete-file tempname))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1273 ;; We succeeded in writing the temp file, |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1274 ;; so rename it. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1275 (rename-file tempname buffer-file-name t)) |
337 | 1276 ;; If file not writable, see if we can make it writable |
1277 ;; temporarily while we write it. | |
1278 ;; But no need to do so if we have just backed it up | |
1279 ;; (setmodes is set) because that says we're superseding. | |
1280 (cond ((and tempsetmodes (not setmodes)) | |
1281 ;; Change the mode back, after writing. | |
1282 (setq setmodes (file-modes buffer-file-name)) | |
1283 (set-file-modes buffer-file-name 511))) | |
1284 (write-region (point-min) (point-max) | |
1285 buffer-file-name nil t))))) | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1286 (setq buffer-file-number (nth 10 (file-attributes buffer-file-name))) |
337 | 1287 (if setmodes |
1288 (condition-case () | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1289 (set-file-modes buffer-file-name setmodes) |
337 | 1290 (error nil)))) |
1291 ;; If the auto-save file was recent before this command, | |
1292 ;; delete it now. | |
1293 (delete-auto-save-file-if-necessary recent-save) | |
1294 (run-hooks 'after-save-hooks)) | |
1295 (message "(No changes need to be saved)"))) | |
1296 | |
1297 (defun save-some-buffers (&optional arg exiting) | |
1298 "Save some modified file-visiting buffers. Asks user about each one. | |
423 | 1299 Optional argument (the prefix) non-nil means save all with no questions. |
1300 Optional second argument EXITING means ask about certain non-file buffers | |
1301 as well as about file buffers." | |
337 | 1302 (interactive "P") |
891 | 1303 (save-window-excursion |
632 | 1304 (if (zerop (map-y-or-n-p |
1305 (function | |
1306 (lambda (buffer) | |
1307 (and (buffer-modified-p buffer) | |
1308 (or | |
1309 (buffer-file-name buffer) | |
1310 (and exiting | |
1311 (progn | |
1312 (set-buffer buffer) | |
1313 (and buffer-offer-save (> (buffer-size) 0))))) | |
1314 (if arg | |
1315 t | |
1316 (if (buffer-file-name buffer) | |
1317 (format "Save file %s? " | |
1318 (buffer-file-name buffer)) | |
1319 (format "Save buffer %s? " | |
1320 (buffer-name buffer))))))) | |
1321 (function | |
1322 (lambda (buffer) | |
638 | 1323 (set-buffer buffer) |
1324 (save-buffer))) | |
632 | 1325 (buffer-list) |
891 | 1326 '("buffer" "buffers" "save") |
908
94eb4344341b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
891
diff
changeset
|
1327 (list (list ?\C-r (lambda (buf) |
94eb4344341b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
891
diff
changeset
|
1328 (view-buffer buf) |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
908
diff
changeset
|
1329 (setq view-exit-action |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
908
diff
changeset
|
1330 '(lambda (ignore) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
908
diff
changeset
|
1331 (exit-recursive-edit))) |
908
94eb4344341b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
891
diff
changeset
|
1332 (recursive-edit) |
94eb4344341b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
891
diff
changeset
|
1333 ;; Return nil to ask about BUF again. |
94eb4344341b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
891
diff
changeset
|
1334 nil) |
891 | 1335 "display the current buffer")) |
1336 )) | |
632 | 1337 (message "(No files need saving)")))) |
337 | 1338 |
1339 (defun not-modified (&optional arg) | |
1340 "Mark current buffer as unmodified, not needing to be saved. | |
1341 With prefix arg, mark buffer as modified, so \\[save-buffer] will save." | |
1342 (interactive "P") | |
1343 (message (if arg "Modification-flag set" | |
1344 "Modification-flag cleared")) | |
1345 (set-buffer-modified-p arg)) | |
1346 | |
1347 (defun toggle-read-only (&optional arg) | |
1348 "Change whether this buffer is visiting its file read-only. | |
1349 With arg, set read-only iff arg is positive." | |
1350 (interactive "P") | |
1351 (setq buffer-read-only | |
1352 (if (null arg) | |
1353 (not buffer-read-only) | |
1354 (> (prefix-numeric-value arg) 0))) | |
1355 ;; Force mode-line redisplay | |
1356 (set-buffer-modified-p (buffer-modified-p))) | |
1357 | |
1358 (defun insert-file (filename) | |
1359 "Insert contents of file FILENAME into buffer after point. | |
1360 Set mark after the inserted text. | |
1361 | |
1362 This function is meant for the user to run interactively. | |
1363 Don't call it from programs! Use `insert-file-contents' instead. | |
1364 \(Its calling sequence is different; see its documentation)." | |
1365 (interactive "fInsert file: ") | |
1366 (let ((tem (insert-file-contents filename))) | |
1367 (push-mark (+ (point) (car (cdr tem)))))) | |
1368 | |
1369 (defun append-to-file (start end filename) | |
1370 "Append the contents of the region to the end of file FILENAME. | |
1371 When called from a function, expects three arguments, | |
1372 START, END and FILENAME. START and END are buffer positions | |
1373 saying what text to write." | |
1374 (interactive "r\nFAppend to file: ") | |
1375 (write-region start end filename t)) | |
1376 | |
1377 (defun file-newest-backup (filename) | |
1378 "Return most recent backup file for FILENAME or nil if no backups exist." | |
1379 (let* ((filename (expand-file-name filename)) | |
1380 (file (file-name-nondirectory filename)) | |
1381 (dir (file-name-directory filename)) | |
1382 (comp (file-name-all-completions file dir)) | |
1383 newest) | |
1384 (while comp | |
1385 (setq file (concat dir (car comp)) | |
1386 comp (cdr comp)) | |
1387 (if (and (backup-file-name-p file) | |
1388 (or (null newest) (file-newer-than-file-p file newest))) | |
1389 (setq newest file))) | |
1390 newest)) | |
1391 | |
1392 (defun rename-uniquely () | |
1393 "Rename current buffer to a similar name not already taken. | |
1394 This function is useful for creating multiple shell process buffers | |
1395 or multiple mail buffers, etc." | |
1396 (interactive) | |
1397 (let* ((new-buf (generate-new-buffer (buffer-name))) | |
1398 (name (buffer-name new-buf))) | |
1399 (kill-buffer new-buf) | |
1400 (rename-buffer name) | |
1401 (set-buffer-modified-p (buffer-modified-p)))) ; force mode line update | |
423 | 1402 |
1537
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1403 (defun make-directory (dir &optional parents) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1404 "Create the directory DIR and any nonexistent parent dirs." |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1405 (interactive "FMake directory: \nP") |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1537
diff
changeset
|
1406 (let ((handler (find-file-name-handler dir))) |
1537
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1407 (if handler |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1408 (funcall handler 'make-directory dir parents) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1409 (if (not parents) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1410 (make-directory-internal dir) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1411 (let ((dir (directory-file-name (expand-file-name dir))) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1412 create-list) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1413 (while (not (file-exists-p dir)) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1414 (setq create-list (cons dir create-list) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1415 dir (directory-file-name (file-name-directory dir)))) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1416 (while create-list |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1417 (make-directory-internal (car create-list)) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1418 (setq create-list (cdr create-list)))))))) |
337 | 1419 |
1420 (put 'revert-buffer-function 'permanent-local t) | |
1421 (defvar revert-buffer-function nil | |
1422 "Function to use to revert this buffer, or nil to do the default.") | |
1423 | |
1424 (put 'revert-buffer-insert-file-contents-function 'permanent-local t) | |
1425 (defvar revert-buffer-insert-file-contents-function nil | |
1426 "Function to use to insert contents when reverting this buffer. | |
1427 Gets two args, first the nominal file name to use, | |
1428 and second, t if reading the auto-save file.") | |
1429 | |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1430 (defun revert-buffer (&optional ignore-auto noconfirm) |
337 | 1431 "Replace the buffer text with the text of the visited file on disk. |
1432 This undoes all changes since the file was visited or saved. | |
605 | 1433 With a prefix argument, offer to revert from latest auto-save file, if |
1434 that is more recent than the visited file. | |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1435 |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1436 When called from lisp, the first argument is IGNORE-AUTO; only offer |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1437 to revert from the auto-save file when this is nil. Note that the |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1438 sense of this argument is the reverse of the prefix argument, for the |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1439 sake of backward compatibility. IGNORE-AUTO is optional, defaulting |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1440 to nil. |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1441 |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1442 Optional second argument NOCONFIRM means don't ask for confirmation at |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1443 all. |
337 | 1444 |
605 | 1445 If the value of `revert-buffer-function' is non-nil, it is called to |
1446 do the work." | |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1447 ;; I admit it's odd to reverse the sense of the prefix argument, but |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1448 ;; there is a lot of code out there which assumes that the first |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1449 ;; argument should be t to avoid consulting the auto-save file, and |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1450 ;; there's no straightforward way to encourage authors to notice a |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1451 ;; reversal of the argument sense. So I'm just changing the user |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1452 ;; interface, but leaving the programmatic interface the same. |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1453 (interactive (list (not prefix-arg))) |
337 | 1454 (if revert-buffer-function |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1455 (funcall revert-buffer-function ignore-auto noconfirm) |
337 | 1456 (let* ((opoint (point)) |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1457 (auto-save-p (and (not ignore-auto) |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1458 (recent-auto-save-p) |
337 | 1459 buffer-auto-save-file-name |
1460 (file-readable-p buffer-auto-save-file-name) | |
1461 (y-or-n-p | |
1462 "Buffer has been auto-saved recently. Revert from auto-save file? "))) | |
1463 (file-name (if auto-save-p | |
1464 buffer-auto-save-file-name | |
1465 buffer-file-name))) | |
1466 (cond ((null file-name) | |
1467 (error "Buffer does not seem to be associated with any file")) | |
1468 ((or noconfirm | |
1469 (yes-or-no-p (format "Revert buffer from file %s? " | |
1470 file-name))) | |
1471 ;; If file was backed up but has changed since, | |
1472 ;; we shd make another backup. | |
1473 (and (not auto-save-p) | |
423 | 1474 (not (verify-visited-file-modtime (current-buffer))) |
337 | 1475 (setq buffer-backed-up nil)) |
1476 ;; Get rid of all undo records for this buffer. | |
1477 (or (eq buffer-undo-list t) | |
1478 (setq buffer-undo-list nil)) | |
1479 (let ((buffer-read-only nil) | |
1480 ;; Don't make undo records for the reversion. | |
1481 (buffer-undo-list t)) | |
1482 (if revert-buffer-insert-file-contents-function | |
1483 (funcall revert-buffer-insert-file-contents-function | |
1484 file-name auto-save-p) | |
1485 (if (not (file-exists-p file-name)) | |
1486 (error "File %s no longer exists!" file-name)) | |
1487 ;; Bind buffer-file-name to nil | |
1488 ;; so that we don't try to lock the file. | |
1489 (let ((buffer-file-name nil)) | |
1490 (or auto-save-p | |
1491 (unlock-buffer)) | |
1492 (erase-buffer)) | |
1493 (insert-file-contents file-name (not auto-save-p)))) | |
1494 (goto-char (min opoint (point-max))) | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
1495 (after-find-file nil nil t) |
337 | 1496 t))))) |
1497 | |
1498 (defun recover-file (file) | |
1499 "Visit file FILE, but get contents from its last auto-save file." | |
1500 (interactive | |
1501 (let ((prompt-file buffer-file-name) | |
1502 (file-name nil) | |
1503 (file-dir nil)) | |
1504 (and prompt-file | |
1505 (setq file-name (file-name-nondirectory prompt-file) | |
1506 file-dir (file-name-directory prompt-file))) | |
1507 (list (read-file-name "Recover file: " | |
1508 file-dir nil nil file-name)))) | |
1509 (setq file (expand-file-name file)) | |
1510 (if (auto-save-file-name-p file) (error "%s is an auto-save file" file)) | |
1511 (let ((file-name (let ((buffer-file-name file)) | |
1512 (make-auto-save-file-name)))) | |
1513 (cond ((not (file-newer-than-file-p file-name file)) | |
1514 (error "Auto-save file %s not current" file-name)) | |
1515 ((save-window-excursion | |
1516 (if (not (eq system-type 'vax-vms)) | |
1517 (with-output-to-temp-buffer "*Directory*" | |
1518 (buffer-disable-undo standard-output) | |
1519 (call-process "ls" nil standard-output nil | |
736
18b892513cb7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
735
diff
changeset
|
1520 (if (file-symlink-p file) "-lL" "-l") |
18b892513cb7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
735
diff
changeset
|
1521 file file-name))) |
337 | 1522 (yes-or-no-p (format "Recover auto save file %s? " file-name))) |
1523 (switch-to-buffer (find-file-noselect file t)) | |
1524 (let ((buffer-read-only nil)) | |
1525 (erase-buffer) | |
1526 (insert-file-contents file-name nil)) | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
1527 (after-find-file nil nil t)) |
337 | 1528 (t (error "Recover-file cancelled."))))) |
1529 | |
1530 (defun kill-some-buffers () | |
1531 "For each buffer, ask whether to kill it." | |
1532 (interactive) | |
1533 (let ((list (buffer-list))) | |
1534 (while list | |
1535 (let* ((buffer (car list)) | |
1536 (name (buffer-name buffer))) | |
1537 (and (not (string-equal name "")) | |
1538 (/= (aref name 0) ? ) | |
1539 (yes-or-no-p | |
1540 (format "Buffer %s %s. Kill? " | |
1541 name | |
1542 (if (buffer-modified-p buffer) | |
1543 "HAS BEEN EDITED" "is unmodified"))) | |
1544 (kill-buffer buffer))) | |
1545 (setq list (cdr list))))) | |
1546 | |
1547 (defun auto-save-mode (arg) | |
1548 "Toggle auto-saving of contents of current buffer. | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1549 With prefix argument ARG, turn auto-saving on if positive, else off." |
337 | 1550 (interactive "P") |
1551 (setq buffer-auto-save-file-name | |
1552 (and (if (null arg) | |
1553 (not buffer-auto-save-file-name) | |
1554 (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0)))) | |
1555 (if (and buffer-file-name auto-save-visited-file-name | |
1556 (not buffer-read-only)) | |
1557 buffer-file-name | |
1558 (make-auto-save-file-name)))) | |
1559 (if (interactive-p) | |
1560 (message "Auto-save %s (in this buffer)" | |
1561 (if buffer-auto-save-file-name "on" "off"))) | |
1562 buffer-auto-save-file-name) | |
1563 | |
1564 (defun rename-auto-save-file () | |
1565 "Adjust current buffer's auto save file name for current conditions. | |
1566 Also rename any existing auto save file, if it was made in this session." | |
1567 (let ((osave buffer-auto-save-file-name)) | |
1568 (setq buffer-auto-save-file-name | |
1569 (make-auto-save-file-name)) | |
1570 (if (and osave buffer-auto-save-file-name | |
1571 (not (string= buffer-auto-save-file-name buffer-file-name)) | |
1572 (not (string= buffer-auto-save-file-name osave)) | |
1573 (file-exists-p osave) | |
1574 (recent-auto-save-p)) | |
1575 (rename-file osave buffer-auto-save-file-name t)))) | |
1576 | |
1577 (defun make-auto-save-file-name () | |
1578 "Return file name to use for auto-saves of current buffer. | |
1579 Does not consider `auto-save-visited-file-name' as that variable is checked | |
1580 before calling this function. You can redefine this for customization. | |
1581 See also `auto-save-file-name-p'." | |
1582 (if buffer-file-name | |
1583 (concat (file-name-directory buffer-file-name) | |
1584 "#" | |
1585 (file-name-nondirectory buffer-file-name) | |
1586 "#") | |
1587 ;; For non-file bfr, use bfr name and Emacs pid. | |
1588 (expand-file-name (format "#%s#%s#" (buffer-name) (make-temp-name ""))))) | |
1589 | |
1590 (defun auto-save-file-name-p (filename) | |
1591 "Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'. | |
1592 FILENAME should lack slashes. You can redefine this for customization." | |
1593 (string-match "^#.*#$" filename)) | |
1594 | |
1595 (defconst list-directory-brief-switches | |
1596 (if (eq system-type 'vax-vms) "" "-CF") | |
1597 "*Switches for list-directory to pass to `ls' for brief listing,") | |
1598 | |
1599 (defconst list-directory-verbose-switches | |
1600 (if (eq system-type 'vax-vms) | |
1601 "/PROTECTION/SIZE/DATE/OWNER/WIDTH=(OWNER:10)" | |
1602 "-l") | |
1603 "*Switches for list-directory to pass to `ls' for verbose listing,") | |
1604 | |
1605 (defun list-directory (dirname &optional verbose) | |
1606 "Display a list of files in or matching DIRNAME, a la `ls'. | |
1607 DIRNAME is globbed by the shell if necessary. | |
1608 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'. | |
1609 Actions controlled by variables `list-directory-brief-switches' | |
1610 and `list-directory-verbose-switches'." | |
1611 (interactive (let ((pfx current-prefix-arg)) | |
1612 (list (read-file-name (if pfx "List directory (verbose): " | |
1613 "List directory (brief): ") | |
1614 nil default-directory nil) | |
1615 pfx))) | |
1616 (let ((switches (if verbose list-directory-verbose-switches | |
1617 list-directory-brief-switches))) | |
1618 (or dirname (setq dirname default-directory)) | |
1619 (setq dirname (expand-file-name dirname)) | |
1620 (with-output-to-temp-buffer "*Directory*" | |
1621 (buffer-disable-undo standard-output) | |
1622 (princ "Directory ") | |
1623 (princ dirname) | |
1624 (terpri) | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1625 (save-excursion |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1626 (set-buffer "*Directory*") |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1627 (let ((wildcard (not (file-directory-p dirname)))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1628 (insert-directory dirname switches wildcard (not wildcard))))))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1629 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1630 (defvar insert-directory-program "ls" |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1631 "Absolute or relative name of the `ls' program used by `insert-directory'.") |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1632 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1633 ;; insert-directory |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1634 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1635 ;; FULL-DIRECTORY-P is nil. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1636 ;; The single line of output must display FILE's name as it was |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1637 ;; given, namely, an absolute path name. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1638 ;; - must insert exactly one line for each file if WILDCARD or |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1639 ;; FULL-DIRECTORY-P is t, plus one optional "total" line |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1640 ;; before the file lines, plus optional text after the file lines. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1641 ;; Lines are delimited by "\n", so filenames containing "\n" are not |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1642 ;; allowed. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1643 ;; File lines should display the basename. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1644 ;; - must be consistent with |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1645 ;; - functions dired-move-to-filename, (these two define what a file line is) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1646 ;; dired-move-to-end-of-filename, |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1647 ;; dired-between-files, (shortcut for (not (dired-move-to-filename))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1648 ;; dired-insert-headerline |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1649 ;; dired-after-subdir-garbage (defines what a "total" line is) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1650 ;; - variable dired-subdir-regexp |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1651 (defun insert-directory (file switches &optional wildcard full-directory-p) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1652 "Insert directory listing for of FILE, formatted according to SWITCHES. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1653 Leaves point after the inserted text. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1654 Optional third arg WILDCARD means treat FILE as shell wildcard. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1655 Optional fourth arg FULL-DIRECTORY-P means file is a directory and |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1656 switches do not contain `d', so that a full listing is expected. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1657 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1658 This works by running a directory listing program |
1892
c4ff65277bb3
(insert-directory): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1879
diff
changeset
|
1659 whose name is in the variable `insert-directory-program'. |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1660 If WILDCARD, it also runs the shell specified by `shell-file-name'." |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1537
diff
changeset
|
1661 (let ((handler (find-file-name-handler file))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1662 (if handler |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1663 (funcall handler 'insert-directory file switches |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1664 wildcard full-directory-p) |
337 | 1665 (if (eq system-type 'vax-vms) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1666 (vms-read-directory file switches (current-buffer)) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1667 (if wildcard |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1668 (let ((default-directory (file-name-directory file))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1669 (call-process shell-file-name nil t nil |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1670 "-c" (concat insert-directory-program |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1671 " -d " switches " " |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1672 (file-name-nondirectory file)))) |
1182 | 1673 ;;; ;; Chase links till we reach a non-link. |
1674 ;;; (let (symlink) | |
1675 ;;; (while (setq symlink (file-symlink-p file)) | |
1676 ;;; (setq file symlink))) | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1677 (call-process insert-directory-program nil t nil switches file)))))) |
337 | 1678 |
1679 (defun save-buffers-kill-emacs (&optional arg) | |
1680 "Offer to save each buffer, then kill this Emacs process. | |
1681 With prefix arg, silently save all file-visiting buffers, then kill." | |
1682 (interactive "P") | |
1683 (save-some-buffers arg t) | |
1684 (and (or (not (memq t (mapcar (function | |
1685 (lambda (buf) (and (buffer-file-name buf) | |
1686 (buffer-modified-p buf)))) | |
1687 (buffer-list)))) | |
1688 (yes-or-no-p "Modified buffers exist; exit anyway? ")) | |
1689 (or (not (fboundp 'process-list)) | |
1690 ;; process-list is not defined on VMS. | |
1691 (let ((processes (process-list)) | |
1692 active) | |
1693 (while processes | |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
736
diff
changeset
|
1694 (and (memq (process-status (car processes)) '(run stop open)) |
337 | 1695 (let ((val (process-kill-without-query (car processes)))) |
1696 (process-kill-without-query (car processes) val) | |
1697 val) | |
1698 (setq active t)) | |
1699 (setq processes (cdr processes))) | |
1700 (or (not active) | |
1701 (yes-or-no-p "Active processes exist; kill them and exit anyway? ")))) | |
1702 (kill-emacs))) | |
1703 | |
1704 (define-key ctl-x-map "\C-f" 'find-file) | |
1705 (define-key ctl-x-map "\C-q" 'toggle-read-only) | |
1706 (define-key ctl-x-map "\C-r" 'find-file-read-only) | |
1707 (define-key ctl-x-map "\C-v" 'find-alternate-file) | |
1708 (define-key ctl-x-map "\C-s" 'save-buffer) | |
1709 (define-key ctl-x-map "s" 'save-some-buffers) | |
1710 (define-key ctl-x-map "\C-w" 'write-file) | |
1711 (define-key ctl-x-map "i" 'insert-file) | |
1712 (define-key esc-map "~" 'not-modified) | |
1713 (define-key ctl-x-map "\C-d" 'list-directory) | |
1714 (define-key ctl-x-map "\C-c" 'save-buffers-kill-emacs) | |
1715 | |
1716 (define-key ctl-x-4-map "f" 'find-file-other-window) | |
1717 (define-key ctl-x-4-map "r" 'find-file-read-only-other-window) | |
1718 (define-key ctl-x-4-map "\C-f" 'find-file-other-window) | |
1719 (define-key ctl-x-4-map "b" 'switch-to-buffer-other-window) | |
854
0b4f3a91f207
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
1720 (define-key ctl-x-4-map "\C-o" 'display-buffer) |
423 | 1721 |
778 | 1722 (define-key ctl-x-5-map "b" 'switch-to-buffer-other-frame) |
1723 (define-key ctl-x-5-map "f" 'find-file-other-frame) | |
1724 (define-key ctl-x-5-map "\C-f" 'find-file-other-frame) | |
1725 (define-key ctl-x-5-map "r" 'find-file-read-only-other-frame) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
1726 |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
1727 ;;; files.el ends here |