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