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