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