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