]> code.delx.au - gnu-emacs/blob - lisp/files.el
*** empty log message ***
[gnu-emacs] / lisp / files.el
1 ;; File input and output commands for Emacs
2 ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
3
4 ;; This file is part of GNU Emacs.
5
6 ;; GNU Emacs is free software; you can redistribute it and/or modify
7 ;; it under the terms of the GNU General Public License as published by
8 ;; the Free Software Foundation; either version 1, or (at your option)
9 ;; any later version.
10
11 ;; GNU Emacs is distributed in the hope that it will be useful,
12 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ;; GNU General Public License for more details.
15
16 ;; You should have received a copy of the GNU General Public License
17 ;; along with GNU Emacs; see the file COPYING. If not, write to
18 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 (defconst delete-auto-save-files t
21 "*Non-nil means delete a buffer's auto-save file when the buffer is saved.")
22
23 (defconst directory-abbrev-alist
24 nil
25 "*Alist of abbreviations for file directories.
26 A list of elements of the form (FROM . TO), each meaning to replace
27 FROM with TO when it appears in a directory name. This replacement is
28 done when setting up the default directory of a newly visited file.
29 *Every* FROM string should start with `^'.
30
31 Use this feature when you have directories which you normally refer to
32 via absolute symbolic links. Make TO the name of the link, and FROM
33 the name it is linked to.")
34
35 ;;; Turn off backup files on VMS since it has version numbers.
36 (defconst make-backup-files (not (eq system-type 'vax-vms))
37 "*Create a backup of each file when it is saved for the first time.
38 This can be done by renaming the file or by copying.
39
40 Renaming means that Emacs renames the existing file so that it is a
41 backup file, then writes the buffer into a new file. Any other names
42 that the old file had will now refer to the backup file. The new file
43 is owned by you and its group is defaulted.
44
45 Copying means that Emacs copies the existing file into the backup
46 file, then writes the buffer on top of the existing file. Any other
47 names that the old file had will now refer to the new (edited) file.
48 The file's owner and group are unchanged.
49
50 The choice of renaming or copying is controlled by the variables
51 `backup-by-copying', `backup-by-copying-when-linked' and
52 `backup-by-copying-when-mismatch'.")
53
54 ;; Do this so that local variables based on the file name
55 ;; are not overridden by the major mode.
56 (defvar backup-inhibited nil
57 "Non-nil means don't make a backup file for this buffer.")
58 (put 'backup-inhibited 'permanent-local t)
59
60 (defconst backup-by-copying nil
61 "*Non-nil means always use copying to create backup files.
62 See documentation of variable `make-backup-files'.")
63
64 (defconst backup-by-copying-when-linked nil
65 "*Non-nil means use copying to create backups for files with multiple names.
66 This causes the alternate names to refer to the latest version as edited.
67 This variable is relevant only if `backup-by-copying' is nil.")
68
69 (defconst backup-by-copying-when-mismatch nil
70 "*Non-nil means create backups by copying if this preserves owner or group.
71 Renaming may still be used (subject to control of other variables)
72 when it would not result in changing the owner or group of the file;
73 that is, for files which are owned by you and whose group matches
74 the default for a new file created there by you.
75 This variable is relevant only if `backup-by-copying' is nil.")
76
77 (defvar backup-enable-predicate
78 '(lambda (name)
79 (or (< (length name) 5)
80 (not (string-equal "/tmp/" (substring name 0 5)))))
81 "Predicate that looks at a file name and decides whether to make backups.
82 Called with an absolute file name as argument, it returns t to enable backup.")
83
84 (defconst buffer-offer-save nil
85 "*Non-nil in a buffer means offer to save the buffer on exit
86 even if the buffer is not visiting a file.
87 Automatically local in all buffers.")
88 (make-variable-buffer-local 'buffer-offer-save)
89
90 (defconst file-precious-flag nil
91 "*Non-nil means protect against I/O errors while saving files.
92 Some modes set this non-nil in particular buffers.")
93
94 (defvar version-control nil
95 "*Control use of version numbers for backup files.
96 t means make numeric backup versions unconditionally.
97 nil means make them for files that have some already.
98 never means do not make them.")
99
100 (defvar dired-kept-versions 2
101 "*When cleaning directory, number of versions to keep.")
102
103 (defvar trim-versions-without-asking nil
104 "*If true, deletes excess backup versions silently.
105 Otherwise asks confirmation.")
106
107 (defvar kept-old-versions 2
108 "*Number of oldest versions to keep when a new numbered backup is made.")
109
110 (defvar kept-new-versions 2
111 "*Number of newest versions to keep when a new numbered backup is made.
112 Includes the new backup. Must be > 0")
113
114 (defconst require-final-newline nil
115 "*Value of t says silently ensure a file ends in a newline when it is saved.
116 Non-nil but not t says ask user whether to add a newline when there isn't one.
117 nil means don't add newlines.")
118
119 (defconst auto-save-default t
120 "*Non-nil says by default do auto-saving of every file-visiting buffer.")
121
122 (defconst auto-save-visited-file-name nil
123 "*Non-nil says auto-save a buffer in the file it is visiting, when practical.
124 Normally auto-save files are written under other names.")
125
126 (defconst save-abbrevs nil
127 "*Non-nil means save word abbrevs too when files are saved.
128 Loading an abbrev file sets this to t.")
129
130 (defconst find-file-run-dired t
131 "*Non-nil says run dired if find-file is given the name of a directory.")
132
133 (put 'find-file-not-found-hooks 'permanent-local t)
134 (defvar find-file-not-found-hooks nil
135 "List of functions to be called for `find-file' on nonexistent file.
136 These functions are called as soon as the error is detected.
137 `buffer-file-name' is already set up.
138 The functions are called in the order given until one of them returns non-nil.")
139
140 (put 'find-file-hooks 'permanent-local t)
141 (defvar find-file-hooks nil
142 "List of functions to be called after a buffer is loaded from a file.
143 The buffer's local variables (if any) will have been processed before the
144 functions are called.")
145
146 (put 'write-file-hooks 'permanent-local t)
147 (defvar write-file-hooks nil
148 "List of functions to be called before writing out a buffer to a file.
149 If one of them returns non-nil, the file is considered already written
150 and the rest are not called.")
151
152 (defconst enable-local-variables t
153 "*Control use of local-variables lists in files you visit.
154 The value can be t, nil or something else.
155 A value of t means local-variables lists are obeyed;
156 nil means they are ignored; anything else means query.
157
158 The command \\[normal-mode] always obeys local-variables lists
159 and ignores this variable.")
160
161 (defconst ignore-local-eval nil
162 "*Non-nil means ignore the \"variable\" `eval' in a file's local variables.
163 This applies when the local-variables list is scanned automatically
164 after you find a file. If you explicitly request such a scan with
165 \\[normal-mode], there is no query, regardless of this variable.")
166
167 ;; Avoid losing in versions where CLASH_DETECTION is disabled.
168 (or (fboundp 'lock-buffer)
169 (fset 'lock-buffer 'ignore))
170 (or (fboundp 'unlock-buffer)
171 (fset 'unlock-buffer 'ignore))
172 \f
173 (defun pwd ()
174 "Show the current default directory."
175 (interactive nil)
176 (message "Directory %s" default-directory))
177
178 (defun cd (dir)
179 "Make DIR become the current buffer's default directory."
180 (interactive "DChange default directory: ")
181 (setq dir (expand-file-name dir))
182 (if (not (eq system-type 'vax-vms))
183 (setq dir (file-name-as-directory dir)))
184 (if (not (file-directory-p dir))
185 (error "%s is not a directory" dir)
186 (if (file-executable-p dir)
187 (setq default-directory dir)
188 (error "Cannot cd to %s: Permission denied" dir)))
189 ;; We used to call pwd at this point. That's not terribly helpful
190 ;; when we're invoking cd interactively, and the new cmushell-based
191 ;; shell has its own (better) facilities for this.
192 )
193
194 (defun load-file (file)
195 "Load the Lisp file named FILE."
196 (interactive "fLoad file: ")
197 (load (expand-file-name file) nil nil t))
198
199 (defun load-library (library)
200 "Load the library named LIBRARY.
201 This is an interface to the function `load'."
202 (interactive "sLoad library: ")
203 (load library))
204 \f
205 (defun switch-to-buffer-other-window (buffer)
206 "Select buffer BUFFER in another window."
207 (interactive "BSwitch to buffer in other window: ")
208 (let ((pop-up-windows t))
209 (pop-to-buffer buffer t)))
210
211 (defun switch-to-buffer-other-screen (buffer)
212 "Switch to buffer BUFFER in another screen."
213 (interactive "BSwitch to buffer in other screen: ")
214 (let ((pop-up-screens t))
215 (pop-to-buffer buffer)))
216
217 (defun find-file (filename)
218 "Edit file FILENAME.
219 Switch to a buffer visiting file FILENAME,
220 creating one if none already exists."
221 (interactive "FFind file: ")
222 (switch-to-buffer (find-file-noselect filename)))
223
224 (defun find-file-other-window (filename)
225 "Edit file FILENAME, in another window.
226 May create a new window, or reuse an existing one.
227 See the function `display-buffer'."
228 (interactive "FFind file in other window: ")
229 (switch-to-buffer-other-window (find-file-noselect filename)))
230
231 (defun find-file-other-screen (filename)
232 "Edit file FILENAME, in another screen.
233 May create a new screen, or reuse an existing one.
234 See the function `display-buffer'."
235 (interactive "FFind file in other screen: ")
236 (switch-to-buffer-other-screen (find-file-noselect filename)))
237
238 (defun find-file-read-only (filename)
239 "Edit file FILENAME but don't allow changes.
240 Like \\[find-file] but marks buffer as read-only.
241 Use \\[toggle-read-only] to permit editing."
242 (interactive "fFind file read-only: ")
243 (find-file filename)
244 (setq buffer-read-only t))
245
246 (defun find-file-read-only-other-window (filename)
247 "Edit file FILENAME in another window but don't allow changes.
248 Like \\[find-file-other-window] but marks buffer as read-only.
249 Use \\[toggle-read-only] to permit editing."
250 (interactive "fFind file read-only other window: ")
251 (find-file filename)
252 (setq buffer-read-only t))
253
254 (defun find-file-read-only-other-screen (filename)
255 "Edit file FILENAME in another screen but don't allow changes.
256 Like \\[find-file-other-screen] but marks buffer as read-only.
257 Use \\[toggle-read-only] to permit editing."
258 (interactive "fFind file read-only other screen: ")
259 (find-file-other-screen filename)
260 (setq buffer-read-only t))
261
262 (defun find-alternate-file (filename)
263 "Find file FILENAME, select its buffer, kill previous buffer.
264 If the current buffer now contains an empty file that you just visited
265 \(presumably by mistake), use this command to visit the file you really want."
266 (interactive
267 (let ((file buffer-file-name)
268 (file-name nil)
269 (file-dir nil))
270 (and file
271 (setq file-name (file-name-nondirectory file)
272 file-dir (file-name-directory file)))
273 (list (read-file-name "Find alternate file: " file-dir nil nil file-name))))
274 (and (buffer-modified-p)
275 ;; (not buffer-read-only)
276 (not (yes-or-no-p (format "Buffer %s is modified; kill anyway? "
277 (buffer-name))))
278 (error "Aborted"))
279 (let ((obuf (current-buffer))
280 (ofile buffer-file-name)
281 (oname (buffer-name)))
282 (rename-buffer " **lose**")
283 (setq buffer-file-name nil)
284 (unwind-protect
285 (progn
286 (unlock-buffer)
287 (find-file filename))
288 (cond ((eq obuf (current-buffer))
289 (setq buffer-file-name ofile)
290 (lock-buffer)
291 (rename-buffer oname))))
292 (or (eq (current-buffer) obuf)
293 (kill-buffer obuf))))
294
295 (defun create-file-buffer (filename)
296 "Create a suitably named buffer for visiting FILENAME, and return it.
297 FILENAME (sans directory) is used unchanged if that name is free;
298 otherwise a string <2> or <3> or ... is appended to get an unused name."
299 (let ((lastname (file-name-nondirectory filename)))
300 (if (string= lastname "")
301 (setq lastname filename))
302 (generate-new-buffer lastname)))
303
304 (defun generate-new-buffer (name)
305 "Create and return a buffer with a name based on NAME.
306 Choose the buffer's name using generate-new-buffer-name."
307 (get-buffer-create (generate-new-buffer-name name)))
308
309 (defun abbreviate-file-name (filename)
310 "Return a version of FILENAME shortened using directory-abbrev-alist.
311 This also substitutes \"~\" for the user's home directory.
312 See \\[describe-variable] directory-abbrev-alist RET for more information."
313 (let ((tail directory-abbrev-alist))
314 (while tail
315 (if (string-match (car (car tail)) filename)
316 (setq filename
317 (concat (cdr (car tail)) (substring filename (match-end 0)))))
318 (setq tail (cdr tail)))
319 (if (string-match (concat "^" (expand-file-name "~")) filename)
320 (setq filename
321 (concat "~" (substring filename (match-end 0)))))
322 filename))
323
324 (defun find-file-noselect (filename &optional nowarn)
325 "Read file FILENAME into a buffer and return the buffer.
326 If a buffer exists visiting FILENAME, return that one, but
327 verify that the file has not changed since visited or saved.
328 The buffer is not selected, just returned to the caller."
329 (setq filename (expand-file-name filename))
330 ;; Get rid of the prefixes added by the automounter.
331 (if (and (string-match "^/tmp_mnt/" filename)
332 (file-exists-p (file-name-directory
333 (substring filename (1- (match-end 0))))))
334 (setq filename (substring filename (1- (match-end 0)))))
335 (setq filename (abbreviate-file-name filename))
336 (if (file-directory-p filename)
337 (if find-file-run-dired
338 (dired-noselect filename)
339 (error "%s is a directory." filename))
340 (let ((buf (get-file-buffer filename))
341 error)
342 (if buf
343 (or nowarn
344 (verify-visited-file-modtime buf)
345 (cond ((not (file-exists-p filename))
346 (error "File %s no longer exists!" filename))
347 ((yes-or-no-p
348 (format
349 (if (buffer-modified-p buf)
350 "File %s changed on disk. Discard your edits? "
351 "File %s changed on disk. Read the new version? ")
352 (file-name-nondirectory filename)))
353 (save-excursion
354 (set-buffer buf)
355 (revert-buffer t t)))))
356 (save-excursion
357 (let* ((link-name (car (file-attributes filename)))
358 (linked-buf (and (stringp link-name)
359 (get-file-buffer link-name))))
360 (if (bufferp linked-buf)
361 (message "Symbolic link to file in buffer %s"
362 (buffer-name linked-buf))))
363 (setq buf (create-file-buffer filename))
364 (set-buffer buf)
365 (erase-buffer)
366 (condition-case ()
367 (insert-file-contents filename t)
368 (file-error
369 (setq error t)
370 ;; Run find-file-not-found-hooks until one returns non-nil.
371 (let ((hooks find-file-not-found-hooks))
372 (while (and hooks
373 (not (funcall (car hooks))))
374 (setq hooks (cdr hooks))))))
375 ;; Set buffer's default directory to that of the file.
376 (setq default-directory (file-name-directory filename))
377 ;; Turn off backup files for certain file names. Since
378 ;; this is a permanent local, the major mode won't eliminate it.
379 (and (not (funcall backup-enable-predicate buffer-file-name))
380 (progn
381 (make-local-variable 'backup-inhibited)
382 (setq backup-inhibited t)))
383 (after-find-file error (not nowarn))))
384 buf)))
385 \f
386 (defun after-find-file (&optional error warn)
387 "Called after finding a file and by the default revert function.
388 Sets buffer mode, parses local variables.
389 Optional args ERROR and WARN: ERROR non-nil means there was an
390 error in reading the file. WARN non-nil means warn if there
391 exists an auto-save file more recent than the visited file.
392 Finishes by calling the functions in `find-file-hooks'."
393 (setq buffer-read-only (not (file-writable-p buffer-file-name)))
394 (if noninteractive
395 nil
396 (let* (not-serious
397 (msg
398 (cond ((and error (file-attributes buffer-file-name))
399 (setq buffer-read-only t)
400 "File exists, but is read-protected.")
401 ((not buffer-read-only)
402 (if (and warn
403 (file-newer-than-file-p (make-auto-save-file-name)
404 buffer-file-name))
405 "Auto save file is newer; consider M-x recover-file"
406 (setq not-serious t)
407 (if error "(New file)" nil)))
408 ((not error)
409 (setq not-serious t)
410 "Note: file is write protected")
411 ((file-attributes (directory-file-name default-directory))
412 "File not found and directory write-protected")
413 (t
414 ;; If the directory the buffer is in doesn't exist,
415 ;; offer to create it. It's better to do this now
416 ;; than when we save the buffer, because we want
417 ;; autosaving to work.
418 (setq buffer-read-only nil)
419 (or (file-exists-p (file-name-directory buffer-file-name))
420 (if (yes-or-no-p
421 (format
422 "The directory containing %s does not exist. Create? "
423 (abbreviate-file-name buffer-file-name)))
424 (make-directory-path
425 (file-name-directory buffer-file-name))))
426 nil))))
427 (if msg
428 (progn
429 (message msg)
430 (or not-serious (sit-for 1 nil t)))))
431 (if auto-save-default
432 (auto-save-mode t)))
433 (normal-mode t)
434 (mapcar 'funcall find-file-hooks))
435
436 (defun normal-mode (&optional find-file)
437 "Choose the major mode for this buffer automatically.
438 Also sets up any specified local variables of the file.
439 Uses the visited file name, the -*- line, and the local variables spec.
440
441 This function is called automatically from `find-file'. In that case,
442 we may set up specified local variables depending on the value of
443 `enable-local-variables': if it is t, we do; if it is nil, we don't;
444 otherwise, we query. `enable-local-variables' is ignored if you
445 run `normal-mode' explicitly."
446 (interactive)
447 (or find-file (funcall (or default-major-mode 'fundamental-mode)))
448 (condition-case err
449 (set-auto-mode)
450 (error (message "File mode specification error: %s"
451 (prin1-to-string err))))
452 (condition-case err
453 (hack-local-variables (not find-file))
454 (error (message "File local-variables error: %s"
455 (prin1-to-string err)))))
456
457 ;(defvar auto-mode-alist ...) now in loaddefs.el
458 (defun set-auto-mode ()
459 "Select major mode appropriate for current buffer.
460 May base decision on visited file name (see variable `auto-mode-alist')
461 or on buffer contents (-*- line or local variables spec), but does not look
462 for the \"mode:\" local variable. For that, use `hack-local-variables'."
463 ;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*-
464 (let (beg end mode)
465 (save-excursion
466 (goto-char (point-min))
467 (skip-chars-forward " \t\n")
468 (if (and (search-forward "-*-" (save-excursion (end-of-line) (point)) t)
469 (progn
470 (skip-chars-forward " \t")
471 (setq beg (point))
472 (search-forward "-*-" (save-excursion (end-of-line) (point)) t))
473 (progn
474 (forward-char -3)
475 (skip-chars-backward " \t")
476 (setq end (point))
477 (goto-char beg)
478 (if (search-forward ":" end t)
479 (progn
480 (goto-char beg)
481 (if (let ((case-fold-search t))
482 (search-forward "mode:" end t))
483 (progn
484 (skip-chars-forward " \t")
485 (setq beg (point))
486 (if (search-forward ";" end t)
487 (forward-char -1)
488 (goto-char end))
489 (skip-chars-backward " \t")
490 (setq mode (buffer-substring beg (point))))))
491 (setq mode (buffer-substring beg end)))))
492 (setq mode (intern (concat (downcase mode) "-mode")))
493 (let ((alist auto-mode-alist)
494 (name buffer-file-name))
495 (let ((case-fold-search (eq system-type 'vax-vms)))
496 ;; Remove backup-suffixes from file name.
497 (setq name (file-name-sans-versions name))
498 ;; Find first matching alist entry.
499 (while (and (not mode) alist)
500 (if (string-match (car (car alist)) name)
501 (setq mode (cdr (car alist))))
502 (setq alist (cdr alist)))))))
503 (if mode (funcall mode))))
504
505 (defun hack-local-variables (&optional force)
506 "Parse (and bind or evaluate as appropriate) any local variables
507 for current buffer."
508 ;; Look for "Local variables:" line in last page.
509 (save-excursion
510 (goto-char (point-max))
511 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move)
512 (if (let ((case-fold-search t))
513 (and (search-forward "Local Variables:" nil t)
514 (or force (eq enable-local-variables t)
515 (and enable-local-variables
516 (save-window-excursion
517 (switch-to-buffer (current-buffer))
518 (save-excursion
519 (beginning-of-line)
520 (set-window-start (selected-window) (point)))
521 (y-or-n-p (format "Set local variables as specified at end of %s? "
522 (file-name-nondirectory buffer-file-name))))))))
523 (let ((continue t)
524 prefix prefixlen suffix beg)
525 ;; The prefix is what comes before "local variables:" in its line.
526 ;; The suffix is what comes after "local variables:" in its line.
527 (skip-chars-forward " \t")
528 (or (eolp)
529 (setq suffix (buffer-substring (point)
530 (progn (end-of-line) (point)))))
531 (goto-char (match-beginning 0))
532 (or (bolp)
533 (setq prefix
534 (buffer-substring (point)
535 (progn (beginning-of-line) (point)))))
536 (if prefix (setq prefixlen (length prefix)
537 prefix (regexp-quote prefix)))
538 (if suffix (setq suffix (concat (regexp-quote suffix) "$")))
539 (while continue
540 ;; Look at next local variable spec.
541 (if selective-display (re-search-forward "[\n\C-m]")
542 (forward-line 1))
543 ;; Skip the prefix, if any.
544 (if prefix
545 (if (looking-at prefix)
546 (forward-char prefixlen)
547 (error "Local variables entry is missing the prefix")))
548 ;; Find the variable name; strip whitespace.
549 (skip-chars-forward " \t")
550 (setq beg (point))
551 (skip-chars-forward "^:\n")
552 (if (eolp) (error "Missing colon in local variables entry"))
553 (skip-chars-backward " \t")
554 (let* ((str (buffer-substring beg (point)))
555 (var (read str))
556 val)
557 ;; Setting variable named "end" means end of list.
558 (if (string-equal (downcase str) "end")
559 (setq continue nil)
560 ;; Otherwise read the variable value.
561 (skip-chars-forward "^:")
562 (forward-char 1)
563 (setq val (read (current-buffer)))
564 (skip-chars-backward "\n")
565 (skip-chars-forward " \t")
566 (or (if suffix (looking-at suffix) (eolp))
567 (error "Local variables entry is terminated incorrectly"))
568 ;; Set the variable. "Variables" mode and eval are funny.
569 (cond ((eq var 'mode)
570 (funcall (intern (concat (downcase (symbol-name val))
571 "-mode"))))
572 ((eq var 'eval)
573 (if (or (and ignore-local-eval (not force))
574 (string= (user-login-name) "root"))
575 (message "Ignoring `eval:' in file's local variables")
576 (save-excursion (eval val))))
577 (t (make-local-variable var)
578 (set var val))))))))))
579 \f
580 (defun set-visited-file-name (filename)
581 "Change name of file visited in current buffer to FILENAME.
582 The next time the buffer is saved it will go in the newly specified file.
583 nil or empty string as argument means make buffer not be visiting any file.
584 Remember to delete the initial contents of the minibuffer
585 if you wish to pass an empty string as the argument."
586 (interactive "FSet visited file name: ")
587 (if filename
588 (setq filename
589 (if (string-equal filename "")
590 nil
591 (expand-file-name filename))))
592 (or (equal filename buffer-file-name)
593 (null filename)
594 (progn
595 (lock-buffer filename)
596 (unlock-buffer)))
597 (setq buffer-file-name filename)
598 (if filename ; make buffer name reflect filename.
599 (let ((new-name (file-name-nondirectory buffer-file-name)))
600 (if (string= new-name "")
601 (error "Empty file name"))
602 (if (eq system-type 'vax-vms)
603 (setq new-name (downcase new-name)))
604 (setq default-directory (file-name-directory buffer-file-name))
605 (rename-buffer new-name t)))
606 (setq buffer-backed-up nil)
607 (clear-visited-file-modtime)
608 ;; write-file-hooks is normally used for things like ftp-find-file
609 ;; that visit things that are not local files as if they were files.
610 ;; Changing to visit an ordinary local file instead should flush the hook.
611 (kill-local-variable 'write-file-hooks)
612 (kill-local-variable 'revert-buffer-function)
613 (kill-local-variable 'backup-inhibited)
614 ;; Turn off backup files for certain file names.
615 ;; Since this is a permanent local, the major mode won't eliminate it.
616 (and (not (funcall backup-enable-predicate buffer-file-name))
617 (progn
618 (make-local-variable 'backup-inhibited)
619 (setq backup-inhibited t)))
620 ;; If auto-save was not already on, turn it on if appropriate.
621 (if (not buffer-auto-save-file-name)
622 (auto-save-mode (and buffer-file-name auto-save-default)))
623 (if buffer-file-name
624 (set-buffer-modified-p t)))
625
626 (defun write-file (filename)
627 "Write current buffer into file FILENAME.
628 Makes buffer visit that file, and marks it not modified."
629 ;; (interactive "FWrite file: ")
630 (interactive
631 (list (if buffer-file-name
632 (read-file-name "Write file: "
633 nil nil nil nil)
634 (read-file-name "Write file: "
635 (cdr (assq 'default-directory
636 (buffer-local-variables)))
637 nil nil (buffer-name)))))
638 (or (null filename) (string-equal filename "")
639 (set-visited-file-name filename))
640 (set-buffer-modified-p t)
641 (save-buffer))
642 \f
643 (defun backup-buffer ()
644 "Make a backup of the disk file visited by the current buffer, if appropriate.
645 This is normally done before saving the buffer the first time.
646 If the value is non-nil, it is the result of `file-modes' on the original
647 file; this means that the caller, after saving the buffer, should change
648 the modes of the new file to agree with the old modes."
649 (if (and make-backup-files (not backup-inhibited)
650 (not buffer-backed-up)
651 (file-exists-p buffer-file-name)
652 (memq (aref (elt (file-attributes buffer-file-name) 8) 0)
653 '(?- ?l)))
654 (let ((real-file-name buffer-file-name)
655 backup-info backupname targets setmodes)
656 ;; If specified name is a symbolic link, chase it to the target.
657 ;; Thus we make the backups in the directory where the real file is.
658 (while (let ((tem (file-symlink-p real-file-name)))
659 (if tem
660 (setq real-file-name
661 (expand-file-name tem
662 (file-name-directory real-file-name))))
663 tem))
664 (setq backup-info (find-backup-file-name real-file-name)
665 backupname (car backup-info)
666 targets (cdr backup-info))
667 ;;; (if (file-directory-p buffer-file-name)
668 ;;; (error "Cannot save buffer in directory %s" buffer-file-name))
669 (condition-case ()
670 (let ((delete-old-versions
671 ;; If have old versions to maybe delete,
672 ;; ask the user to confirm now, before doing anything.
673 ;; But don't actually delete til later.
674 (and targets
675 (or trim-versions-without-asking
676 (y-or-n-p (format "Delete excess backup versions of %s? "
677 real-file-name))))))
678 ;; Actually write the back up file.
679 (condition-case ()
680 (if (or file-precious-flag
681 ; (file-symlink-p buffer-file-name)
682 backup-by-copying
683 (and backup-by-copying-when-linked
684 (> (file-nlinks real-file-name) 1))
685 (and backup-by-copying-when-mismatch
686 (let ((attr (file-attributes real-file-name)))
687 (or (nth 9 attr)
688 (/= (nth 2 attr) (user-uid))))))
689 (copy-file real-file-name backupname t t)
690 ; rename-file should delete old backup.
691 ; (condition-case ()
692 ; (delete-file backupname)
693 ; (file-error nil))
694 (rename-file real-file-name backupname t)
695 (setq setmodes (file-modes backupname)))
696 (file-error
697 ;; If trouble writing the backup, write it in ~.
698 (setq backupname (expand-file-name "~/%backup%~"))
699 (message "Cannot write backup file; backing up in ~/%%backup%%~")
700 (sleep-for 1)
701 (copy-file real-file-name backupname t t)))
702 (setq buffer-backed-up t)
703 ;; Now delete the old versions, if desired.
704 (if delete-old-versions
705 (while targets
706 (condition-case ()
707 (delete-file (car targets))
708 (file-error nil))
709 (setq targets (cdr targets))))
710 setmodes)
711 (file-error nil)))))
712
713 (defun file-name-sans-versions (name)
714 "Return FILENAME sans backup versions or strings.
715 This is a separate procedure so your site-init or startup file can
716 redefine it."
717 (substring name 0
718 (if (eq system-type 'vax-vms)
719 ;; VMS version number is (a) semicolon, optional
720 ;; sign, zero or more digits or (b) period, option
721 ;; sign, zero or more digits, provided this is the
722 ;; second period encountered outside of the
723 ;; device/directory part of the file name.
724 (or (string-match ";[---+]?[0-9]*\\'" name)
725 (if (string-match "\\.[^]>:]*\\(\\.[---+]?[0-9]*\\)\\'"
726 name)
727 (match-beginning 1))
728 (length name))
729 (or (string-match "\\.~[0-9]+~\\'" name)
730 (string-match "~\\'" name)
731 (length name)))))
732
733 (defun make-backup-file-name (file)
734 "Create the non-numeric backup file name for FILE.
735 This is a separate function so you can redefine it for customization."
736 (concat file "~"))
737
738 (defun backup-file-name-p (file)
739 "Return non-nil if FILE is a backup file name (numeric or not).
740 This is a separate function so you can redefine it for customization.
741 You may need to redefine `file-name-sans-versions' as well."
742 (string-match "~$" file))
743
744 ;; I believe there is no need to alter this behavior for VMS;
745 ;; since backup files are not made on VMS, it should not get called.
746 (defun find-backup-file-name (fn)
747 "Find a file name for a backup file, and suggestions for deletions.
748 Value is a list whose car is the name for the backup file
749 and whose cdr is a list of old versions to consider deleting now."
750 (if (eq version-control 'never)
751 (list (make-backup-file-name fn))
752 (let* ((base-versions (concat (file-name-nondirectory fn) ".~"))
753 (bv-length (length base-versions))
754 (possibilities (file-name-all-completions
755 base-versions
756 (file-name-directory fn)))
757 (versions (sort (mapcar 'backup-extract-version possibilities)
758 '<))
759 (high-water-mark (apply 'max 0 versions))
760 (deserve-versions-p
761 (or version-control
762 (> high-water-mark 0)))
763 (number-to-delete (- (length versions)
764 kept-old-versions kept-new-versions -1)))
765 (if (not deserve-versions-p)
766 (list (make-backup-file-name fn))
767 (cons (concat fn ".~" (int-to-string (1+ high-water-mark)) "~")
768 (if (> number-to-delete 0)
769 (mapcar (function (lambda (n)
770 (concat fn ".~" (int-to-string n) "~")))
771 (let ((v (nthcdr kept-old-versions versions)))
772 (rplacd (nthcdr (1- number-to-delete) v) ())
773 v))))))))
774
775 (defun backup-extract-version (fn)
776 (if (and (string-match "[0-9]+~$" fn bv-length)
777 (= (match-beginning 0) bv-length))
778 (string-to-int (substring fn bv-length -1))
779 0))
780
781 (defun file-nlinks (filename)
782 "Return number of names file FILENAME has."
783 (car (cdr (file-attributes filename))))
784 \f
785 (defun save-buffer (&optional args)
786 "Save current buffer in visited file if modified. Versions described below.
787 By default, makes the previous version into a backup file
788 if previously requested or if this is the first save.
789 With 1 or 3 \\[universal-argument]'s, marks this version
790 to become a backup when the next save is done.
791 With 2 or 3 \\[universal-argument]'s,
792 unconditionally makes the previous version into a backup file.
793 With argument of 0, never makes the previous version into a backup file.
794
795 If a file's name is FOO, the names of its numbered backup versions are
796 FOO.~i~ for various integers i. A non-numbered backup file is called FOO~.
797 Numeric backups (rather than FOO~) will be made if value of
798 `version-control' is not the atom `never' and either there are already
799 numeric versions of the file being backed up, or `version-control' is
800 non-nil.
801 We don't want excessive versions piling up, so there are variables
802 `kept-old-versions', which tells Emacs how many oldest versions to keep,
803 and `kept-new-versions', which tells how many newest versions to keep.
804 Defaults are 2 old versions and 2 new.
805 `dired-kept-versions' controls dired's clean-directory (.) command.
806 If `trim-versions-without-asking' is nil, system will query user
807 before trimming versions. Otherwise it does it silently."
808 (interactive "p")
809 (let ((modp (buffer-modified-p))
810 (large (> (buffer-size) 50000))
811 (make-backup-files (and make-backup-files (not (eq args 0)))))
812 (and modp (memq args '(16 64)) (setq buffer-backed-up nil))
813 (if (and modp large) (message "Saving file %s..." (buffer-file-name)))
814 (basic-save-buffer)
815 (and modp (memq args '(4 64)) (setq buffer-backed-up nil))))
816
817 (defun delete-auto-save-file-if-necessary (&optional force)
818 "Delete auto-save file for current buffer if `delete-auto-save-files' is t.
819 Normally delete only if the file was written by this Emacs since
820 the last real save, but optional arg FORCE non-nil means delete anyway."
821 (and buffer-auto-save-file-name delete-auto-save-files
822 (not (string= buffer-file-name buffer-auto-save-file-name))
823 (or force (recent-auto-save-p))
824 (progn
825 (condition-case ()
826 (delete-file buffer-auto-save-file-name)
827 (file-error nil))
828 (set-buffer-auto-saved))))
829
830 (defun basic-save-buffer ()
831 "Save the current buffer in its visited file, if it has been modified."
832 (interactive)
833 (if (buffer-modified-p)
834 (let ((recent-save (recent-auto-save-p))
835 setmodes tempsetmodes)
836 ;; On VMS, rename file and buffer to get rid of version number.
837 (if (and (eq system-type 'vax-vms)
838 (not (string= buffer-file-name
839 (file-name-sans-versions buffer-file-name))))
840 (let (buffer-new-name)
841 ;; Strip VMS version number before save.
842 (setq buffer-file-name
843 (file-name-sans-versions buffer-file-name))
844 ;; Construct a (unique) buffer name to correspond.
845 (let ((buf (create-file-buffer (downcase buffer-file-name))))
846 (setq buffer-new-name (buffer-name buf))
847 (kill-buffer buf))
848 (rename-buffer buffer-new-name)))
849 ;; If buffer has no file name, ask user for one.
850 (or buffer-file-name
851 (progn
852 (setq buffer-file-name
853 (expand-file-name (read-file-name "File to save in: ") nil)
854 default-directory (file-name-directory buffer-file-name))
855 (auto-save-mode auto-save-default)))
856 (or (verify-visited-file-modtime (current-buffer))
857 (not (file-exists-p buffer-file-name))
858 (yes-or-no-p
859 (format "%s has changed since visited or saved. Save anyway? "
860 (file-name-nondirectory buffer-file-name)))
861 (error "Save not confirmed"))
862 (save-restriction
863 (widen)
864 (and (> (point-max) 1)
865 (/= (char-after (1- (point-max))) ?\n)
866 (or (eq require-final-newline t)
867 (and require-final-newline
868 (y-or-n-p
869 (format "Buffer %s does not end in newline. Add one? "
870 (buffer-name)))))
871 (save-excursion
872 (goto-char (point-max))
873 (insert ?\n)))
874 (let ((hooks write-file-hooks)
875 (done nil))
876 (while (and hooks
877 (not (setq done (funcall (car hooks)))))
878 (setq hooks (cdr hooks)))
879 ;; If a hook returned t, file is already "written".
880 (cond ((not done)
881 (if (not (file-writable-p buffer-file-name))
882 (let ((dir (file-name-directory buffer-file-name)))
883 (if (not (file-directory-p dir))
884 (error "%s is not a directory" dir)
885 (if (not (file-exists-p buffer-file-name))
886 (error "Directory %s write-protected" dir)
887 (if (yes-or-no-p
888 (format "File %s is write-protected; try to save anyway? "
889 (file-name-nondirectory
890 buffer-file-name)))
891 (setq tempsetmodes t)
892 (error "Attempt to save to a file which you aren't allowed to write"))))))
893 (or buffer-backed-up
894 (setq setmodes (backup-buffer)))
895 (if file-precious-flag
896 ;; If file is precious, rename it away before
897 ;; overwriting it.
898 (let ((rename t)
899 realname tempname temp)
900 ;; Chase symlinks; rename the ultimate actual file.
901 (setq realname buffer-file-name)
902 (while (setq temp (file-symlink-p realname))
903 (setq realname temp))
904 (setq tempname (concat realname "#"))
905 (condition-case ()
906 (progn (rename-file realname tempname t)
907 (setq setmodes (file-modes tempname)))
908 (file-error (setq rename nil tempname nil)))
909 (if (file-directory-p realname)
910 (error "%s is a directory" realname))
911 (unwind-protect
912 (progn (clear-visited-file-modtime)
913 (write-region (point-min) (point-max)
914 realname nil t)
915 (setq rename nil))
916 ;; If rename is still t, writing failed.
917 ;; So rename the old file back to original name,
918 (if rename
919 (progn
920 (rename-file tempname realname t)
921 (clear-visited-file-modtime))
922 ;; Otherwise we don't need the original file,
923 ;; so flush it, if we still have it.
924 ;; If rename failed due to name length restriction
925 ;; then TEMPNAME is now nil.
926 (if tempname
927 (condition-case ()
928 (delete-file tempname)
929 (error nil))))))
930 ;; If file not writable, see if we can make it writable
931 ;; temporarily while we write it.
932 ;; But no need to do so if we have just backed it up
933 ;; (setmodes is set) because that says we're superseding.
934 (cond ((and tempsetmodes (not setmodes))
935 ;; Change the mode back, after writing.
936 (setq setmodes (file-modes buffer-file-name))
937 (set-file-modes buffer-file-name 511)))
938 (write-region (point-min) (point-max)
939 buffer-file-name nil t)))))
940 (if setmodes
941 (condition-case ()
942 (set-file-modes buffer-file-name setmodes)
943 (error nil))))
944 ;; If the auto-save file was recent before this command,
945 ;; delete it now.
946 (delete-auto-save-file-if-necessary recent-save)
947 (run-hooks 'after-save-hooks))
948 (message "(No changes need to be saved)")))
949
950 (defun save-some-buffers (&optional arg exiting)
951 "Save some modified file-visiting buffers. Asks user about each one.
952 Optional argument (the prefix) non-nil means save all with no questions.
953 Optional second argument EXITING means ask about certain non-file buffers
954 as well as about file buffers."
955 (interactive "P")
956 (if (zerop (map-y-or-n-p
957 (function
958 (lambda (buffer)
959 (and (buffer-modified-p buffer)
960 (or
961 (buffer-file-name buffer)
962 (and exiting
963 (save-excursion
964 (set-buffer buffer)
965 (and buffer-offer-save (> (buffer-size) 0)))))
966 (if arg
967 t
968 (if (buffer-file-name buffer)
969 (format "Save file %s? "
970 (buffer-file-name buffer))
971 (format "Save buffer %s? "
972 (buffer-name buffer)))))))
973 (function
974 (lambda (buffer)
975 (save-excursion
976 (set-buffer buffer)
977 (save-buffer))))
978 (buffer-list)
979 '("buffer" "buffers" "save")))
980 (message "(No files need saving)")))
981 \f
982 (defun not-modified (&optional arg)
983 "Mark current buffer as unmodified, not needing to be saved.
984 With prefix arg, mark buffer as modified, so \\[save-buffer] will save."
985 (interactive "P")
986 (message (if arg "Modification-flag set"
987 "Modification-flag cleared"))
988 (set-buffer-modified-p arg))
989
990 (defun toggle-read-only (&optional arg)
991 "Change whether this buffer is visiting its file read-only.
992 With arg, set read-only iff arg is positive."
993 (interactive "P")
994 (setq buffer-read-only
995 (if (null arg)
996 (not buffer-read-only)
997 (> (prefix-numeric-value arg) 0)))
998 ;; Force mode-line redisplay
999 (set-buffer-modified-p (buffer-modified-p)))
1000
1001 (defun insert-file (filename)
1002 "Insert contents of file FILENAME into buffer after point.
1003 Set mark after the inserted text.
1004
1005 This function is meant for the user to run interactively.
1006 Don't call it from programs! Use `insert-file-contents' instead.
1007 \(Its calling sequence is different; see its documentation)."
1008 (interactive "fInsert file: ")
1009 (let ((tem (insert-file-contents filename)))
1010 (push-mark (+ (point) (car (cdr tem))))))
1011
1012 (defun append-to-file (start end filename)
1013 "Append the contents of the region to the end of file FILENAME.
1014 When called from a function, expects three arguments,
1015 START, END and FILENAME. START and END are buffer positions
1016 saying what text to write."
1017 (interactive "r\nFAppend to file: ")
1018 (write-region start end filename t))
1019
1020 (defun file-newest-backup (filename)
1021 "Return most recent backup file for FILENAME or nil if no backups exist."
1022 (let* ((filename (expand-file-name filename))
1023 (file (file-name-nondirectory filename))
1024 (dir (file-name-directory filename))
1025 (comp (file-name-all-completions file dir))
1026 newest)
1027 (while comp
1028 (setq file (concat dir (car comp))
1029 comp (cdr comp))
1030 (if (and (backup-file-name-p file)
1031 (or (null newest) (file-newer-than-file-p file newest)))
1032 (setq newest file)))
1033 newest))
1034
1035 (defun rename-uniquely ()
1036 "Rename current buffer to a similar name not already taken.
1037 This function is useful for creating multiple shell process buffers
1038 or multiple mail buffers, etc."
1039 (interactive)
1040 (let* ((new-buf (generate-new-buffer (buffer-name)))
1041 (name (buffer-name new-buf)))
1042 (kill-buffer new-buf)
1043 (rename-buffer name)
1044 (set-buffer-modified-p (buffer-modified-p)))) ; force mode line update
1045
1046 (defun make-directory-path (path)
1047 "Create all the directories along path that don't exist yet."
1048 (interactive "Fdirectory path to create: ")
1049 (let ((path (directory-file-name (expand-file-name path)))
1050 create-list)
1051 (while (not (file-exists-p path))
1052 (setq create-list (cons path create-list)
1053 path (directory-file-name (file-name-directory path))))
1054 (while create-list
1055 (make-directory (car create-list))
1056 (setq create-list (cdr create-list)))))
1057
1058 \f
1059 (put 'revert-buffer-function 'permanent-local t)
1060 (defvar revert-buffer-function nil
1061 "Function to use to revert this buffer, or nil to do the default.")
1062
1063 (put 'revert-buffer-insert-file-contents-function 'permanent-local t)
1064 (defvar revert-buffer-insert-file-contents-function nil
1065 "Function to use to insert contents when reverting this buffer.
1066 Gets two args, first the nominal file name to use,
1067 and second, t if reading the auto-save file.")
1068
1069 (defun revert-buffer (&optional arg noconfirm)
1070 "Replace the buffer text with the text of the visited file on disk.
1071 This undoes all changes since the file was visited or saved.
1072 If latest auto-save file is more recent than the visited file,
1073 asks user whether to use that instead.
1074
1075 Optional first argument ARG means don't offer to use auto-save file.
1076 This is the prefix arg when called interactively.
1077 Optional second argument NOCONFIRM means don't ask for confirmation at all.
1078
1079 If `revert-buffer-function' value is non-nil, it is called to do the work."
1080 (interactive "P")
1081 (if revert-buffer-function
1082 (funcall revert-buffer-function arg noconfirm)
1083 (let* ((opoint (point))
1084 (auto-save-p (and (null arg) (recent-auto-save-p)
1085 buffer-auto-save-file-name
1086 (file-readable-p buffer-auto-save-file-name)
1087 (y-or-n-p
1088 "Buffer has been auto-saved recently. Revert from auto-save file? ")))
1089 (file-name (if auto-save-p
1090 buffer-auto-save-file-name
1091 buffer-file-name)))
1092 (cond ((null file-name)
1093 (error "Buffer does not seem to be associated with any file"))
1094 ((or noconfirm
1095 (yes-or-no-p (format "Revert buffer from file %s? "
1096 file-name)))
1097 ;; If file was backed up but has changed since,
1098 ;; we shd make another backup.
1099 (and (not auto-save-p)
1100 (not (verify-visited-file-modtime (current-buffer)))
1101 (setq buffer-backed-up nil))
1102 ;; Get rid of all undo records for this buffer.
1103 (or (eq buffer-undo-list t)
1104 (setq buffer-undo-list nil))
1105 (let ((buffer-read-only nil)
1106 ;; Don't make undo records for the reversion.
1107 (buffer-undo-list t))
1108 (if revert-buffer-insert-file-contents-function
1109 (funcall revert-buffer-insert-file-contents-function
1110 file-name auto-save-p)
1111 (if (not (file-exists-p file-name))
1112 (error "File %s no longer exists!" file-name))
1113 ;; Bind buffer-file-name to nil
1114 ;; so that we don't try to lock the file.
1115 (let ((buffer-file-name nil))
1116 (or auto-save-p
1117 (unlock-buffer))
1118 (erase-buffer))
1119 (insert-file-contents file-name (not auto-save-p))))
1120 (goto-char (min opoint (point-max)))
1121 (after-find-file nil)
1122 t)))))
1123
1124 (defun recover-file (file)
1125 "Visit file FILE, but get contents from its last auto-save file."
1126 (interactive
1127 (let ((prompt-file buffer-file-name)
1128 (file-name nil)
1129 (file-dir nil))
1130 (and prompt-file
1131 (setq file-name (file-name-nondirectory prompt-file)
1132 file-dir (file-name-directory prompt-file)))
1133 (list (read-file-name "Recover file: "
1134 file-dir nil nil file-name))))
1135 (setq file (expand-file-name file))
1136 (if (auto-save-file-name-p file) (error "%s is an auto-save file" file))
1137 (let ((file-name (let ((buffer-file-name file))
1138 (make-auto-save-file-name))))
1139 (cond ((not (file-newer-than-file-p file-name file))
1140 (error "Auto-save file %s not current" file-name))
1141 ((save-window-excursion
1142 (if (not (eq system-type 'vax-vms))
1143 (with-output-to-temp-buffer "*Directory*"
1144 (buffer-disable-undo standard-output)
1145 (call-process "ls" nil standard-output nil
1146 "-l" file file-name)))
1147 (yes-or-no-p (format "Recover auto save file %s? " file-name)))
1148 (switch-to-buffer (find-file-noselect file t))
1149 (let ((buffer-read-only nil))
1150 (erase-buffer)
1151 (insert-file-contents file-name nil))
1152 (after-find-file nil))
1153 (t (error "Recover-file cancelled.")))))
1154
1155 (defun kill-some-buffers ()
1156 "For each buffer, ask whether to kill it."
1157 (interactive)
1158 (let ((list (buffer-list)))
1159 (while list
1160 (let* ((buffer (car list))
1161 (name (buffer-name buffer)))
1162 (and (not (string-equal name ""))
1163 (/= (aref name 0) ? )
1164 (yes-or-no-p
1165 (format "Buffer %s %s. Kill? "
1166 name
1167 (if (buffer-modified-p buffer)
1168 "HAS BEEN EDITED" "is unmodified")))
1169 (kill-buffer buffer)))
1170 (setq list (cdr list)))))
1171 \f
1172 (defun auto-save-mode (arg)
1173 "Toggle auto-saving of contents of current buffer.
1174 With ARG, turn auto-saving on if positive, else off."
1175 (interactive "P")
1176 (setq buffer-auto-save-file-name
1177 (and (if (null arg)
1178 (not buffer-auto-save-file-name)
1179 (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0))))
1180 (if (and buffer-file-name auto-save-visited-file-name
1181 (not buffer-read-only))
1182 buffer-file-name
1183 (make-auto-save-file-name))))
1184 (if (interactive-p)
1185 (message "Auto-save %s (in this buffer)"
1186 (if buffer-auto-save-file-name "on" "off")))
1187 buffer-auto-save-file-name)
1188
1189 (defun rename-auto-save-file ()
1190 "Adjust current buffer's auto save file name for current conditions.
1191 Also rename any existing auto save file, if it was made in this session."
1192 (let ((osave buffer-auto-save-file-name))
1193 (setq buffer-auto-save-file-name
1194 (make-auto-save-file-name))
1195 (if (and osave buffer-auto-save-file-name
1196 (not (string= buffer-auto-save-file-name buffer-file-name))
1197 (not (string= buffer-auto-save-file-name osave))
1198 (file-exists-p osave)
1199 (recent-auto-save-p))
1200 (rename-file osave buffer-auto-save-file-name t))))
1201
1202 (defun make-auto-save-file-name ()
1203 "Return file name to use for auto-saves of current buffer.
1204 Does not consider `auto-save-visited-file-name' as that variable is checked
1205 before calling this function. You can redefine this for customization.
1206 See also `auto-save-file-name-p'."
1207 (if buffer-file-name
1208 (concat (file-name-directory buffer-file-name)
1209 "#"
1210 (file-name-nondirectory buffer-file-name)
1211 "#")
1212 ;; For non-file bfr, use bfr name and Emacs pid.
1213 (expand-file-name (format "#%s#%s#" (buffer-name) (make-temp-name "")))))
1214
1215 (defun auto-save-file-name-p (filename)
1216 "Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'.
1217 FILENAME should lack slashes. You can redefine this for customization."
1218 (string-match "^#.*#$" filename))
1219 \f
1220 (defconst list-directory-brief-switches
1221 (if (eq system-type 'vax-vms) "" "-CF")
1222 "*Switches for list-directory to pass to `ls' for brief listing,")
1223
1224 (defconst list-directory-verbose-switches
1225 (if (eq system-type 'vax-vms)
1226 "/PROTECTION/SIZE/DATE/OWNER/WIDTH=(OWNER:10)"
1227 "-l")
1228 "*Switches for list-directory to pass to `ls' for verbose listing,")
1229
1230 (defun list-directory (dirname &optional verbose)
1231 "Display a list of files in or matching DIRNAME, a la `ls'.
1232 DIRNAME is globbed by the shell if necessary.
1233 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
1234 Actions controlled by variables `list-directory-brief-switches'
1235 and `list-directory-verbose-switches'."
1236 (interactive (let ((pfx current-prefix-arg))
1237 (list (read-file-name (if pfx "List directory (verbose): "
1238 "List directory (brief): ")
1239 nil default-directory nil)
1240 pfx)))
1241 (let ((switches (if verbose list-directory-verbose-switches
1242 list-directory-brief-switches)))
1243 (or dirname (setq dirname default-directory))
1244 (setq dirname (expand-file-name dirname))
1245 (with-output-to-temp-buffer "*Directory*"
1246 (buffer-disable-undo standard-output)
1247 (princ "Directory ")
1248 (princ dirname)
1249 (terpri)
1250 (if (eq system-type 'vax-vms)
1251 (vms-read-directory dirname switches standard-output)
1252 (if (file-directory-p dirname)
1253 (save-excursion
1254 (set-buffer "*Directory*")
1255 (call-process "ls" nil standard-output nil switches
1256 (setq default-directory
1257 (file-name-as-directory dirname))))
1258 (let ((default-directory (file-name-directory dirname)))
1259 (if (file-exists-p default-directory)
1260 (call-process shell-file-name nil standard-output nil
1261 "-c" (concat "exec ls "
1262 switches " "
1263 (file-name-nondirectory dirname)))
1264 (princ "No such directory: ")
1265 (princ dirname)
1266 (terpri))))))))
1267
1268 (defun save-buffers-kill-emacs (&optional arg)
1269 "Offer to save each buffer, then kill this Emacs process.
1270 With prefix arg, silently save all file-visiting buffers, then kill."
1271 (interactive "P")
1272 (save-some-buffers arg t)
1273 (and (or (not (memq t (mapcar (function
1274 (lambda (buf) (and (buffer-file-name buf)
1275 (buffer-modified-p buf))))
1276 (buffer-list))))
1277 (yes-or-no-p "Modified buffers exist; exit anyway? "))
1278 (or (not (fboundp 'process-list))
1279 ;; process-list is not defined on VMS.
1280 (let ((processes (process-list))
1281 active)
1282 (while processes
1283 (and (memq (process-status (car processes)) '(run stop))
1284 (let ((val (process-kill-without-query (car processes))))
1285 (process-kill-without-query (car processes) val)
1286 val)
1287 (setq active t))
1288 (setq processes (cdr processes)))
1289 (or (not active)
1290 (yes-or-no-p "Active processes exist; kill them and exit anyway? "))))
1291 (kill-emacs)))
1292 \f
1293 (define-key ctl-x-map "\C-f" 'find-file)
1294 (define-key ctl-x-map "\C-q" 'toggle-read-only)
1295 (define-key ctl-x-map "\C-r" 'find-file-read-only)
1296 (define-key ctl-x-map "\C-v" 'find-alternate-file)
1297 (define-key ctl-x-map "\C-s" 'save-buffer)
1298 (define-key ctl-x-map "s" 'save-some-buffers)
1299 (define-key ctl-x-map "\C-w" 'write-file)
1300 (define-key ctl-x-map "i" 'insert-file)
1301 (define-key esc-map "~" 'not-modified)
1302 (define-key ctl-x-map "\C-d" 'list-directory)
1303 (define-key ctl-x-map "\C-c" 'save-buffers-kill-emacs)
1304
1305 (define-key ctl-x-4-map "f" 'find-file-other-window)
1306 (define-key ctl-x-4-map "r" 'find-file-read-only-other-window)
1307 (define-key ctl-x-4-map "\C-f" 'find-file-other-window)
1308 (define-key ctl-x-4-map "b" 'switch-to-buffer-other-window)
1309
1310 (define-key ctl-x-3-map "b" 'switch-to-buffer-other-screen)
1311 (define-key ctl-x-3-map "f" 'find-file-other-screen)
1312 (define-key ctl-x-3-map "r" 'find-file-read-only-other-screen)