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