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