1 ;;; files.el --- file input and output commands for Emacs
3 ;; Copyright (C) 1985, 86, 87, 92, 93,
4 ;; 94, 95, 1996 Free Software Foundation, Inc.
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
27 ;; Defines most of Emacs's file- and directory-handling functions,
28 ;; including basic file visiting, backup generation, link handling,
29 ;; ITS-id version control, load- and write-hook handling, and the like.
34 "Backups of edited data files."
37 (defgroup find-file nil
42 (defcustom delete-auto-save-files t
43 "*Non-nil means delete auto-save file when a buffer is saved or killed."
47 (defcustom directory-abbrev-alist
49 "*Alist of abbreviations for file directories.
50 A list of elements of the form (FROM . TO), each meaning to replace
51 FROM with TO when it appears in a directory name. This replacement is
52 done when setting up the default directory of a newly visited file.
53 *Every* FROM string should start with `^'.
55 Do not use `~' in the TO strings.
56 They should be ordinary absolute directory names.
58 Use this feature when you have directories which you normally refer to
59 via absolute symbolic links. Make TO the name of the link, and FROM
60 the name it is linked to."
61 :type
'(repeat (cons :format
"%v"
68 ;;; Turn off backup files on VMS since it has version numbers.
69 (defcustom make-backup-files
(not (eq system-type
'vax-vms
))
70 "*Non-nil means make a backup of a file the first time it is saved.
71 This can be done by renaming the file or by copying.
73 Renaming means that Emacs renames the existing file so that it is a
74 backup file, then writes the buffer into a new file. Any other names
75 that the old file had will now refer to the backup file. The new file
76 is owned by you and its group is defaulted.
78 Copying means that Emacs copies the existing file into the backup
79 file, then writes the buffer on top of the existing file. Any other
80 names that the old file had will now refer to the new (edited) file.
81 The file's owner and group are unchanged.
83 The choice of renaming or copying is controlled by the variables
84 `backup-by-copying', `backup-by-copying-when-linked' and
85 `backup-by-copying-when-mismatch'. See also `backup-inhibited'."
89 ;; Do this so that local variables based on the file name
90 ;; are not overridden by the major mode.
91 (defvar backup-inhibited nil
92 "Non-nil means don't make a backup, regardless of the other parameters.
93 This variable is intended for use by making it local to a buffer.
94 But it is local only if you make it local.")
95 (put 'backup-inhibited
'permanent-local t
)
97 (defcustom backup-by-copying nil
98 "*Non-nil means always use copying to create backup files.
99 See documentation of variable `make-backup-files'."
103 (defcustom backup-by-copying-when-linked nil
104 "*Non-nil means use copying to create backups for files with multiple names.
105 This causes the alternate names to refer to the latest version as edited.
106 This variable is relevant only if `backup-by-copying' is nil."
110 (defcustom backup-by-copying-when-mismatch nil
111 "*Non-nil means create backups by copying if this preserves owner or group.
112 Renaming may still be used (subject to control of other variables)
113 when it would not result in changing the owner or group of the file;
114 that is, for files which are owned by you and whose group matches
115 the default for a new file created there by you.
116 This variable is relevant only if `backup-by-copying' is nil."
120 (defvar backup-enable-predicate
122 (or (< (length name
) 5)
123 (not (string-equal "/tmp/" (substring name
0 5)))))
124 "Predicate that looks at a file name and decides whether to make backups.
125 Called with an absolute file name as argument, it returns t to enable backup.")
127 (defcustom buffer-offer-save nil
128 "*Non-nil in a buffer means offer to save the buffer on exit
129 even if the buffer is not visiting a file.
130 Automatically local in all buffers."
133 (make-variable-buffer-local 'buffer-offer-save
)
135 (defcustom find-file-existing-other-name t
136 "*Non-nil means find a file under alternative names, in existing buffers.
137 This means if any existing buffer is visiting the file you want
138 under another name, you get the existing buffer instead of a new buffer."
142 (defcustom find-file-visit-truename nil
143 "*Non-nil means visit a file under its truename.
144 The truename of a file is found by chasing all links
145 both at the file level and at the levels of the containing directories."
149 (defcustom revert-without-query
151 "*Specify which files should be reverted without query.
152 The value is a list of regular expressions.
153 If the file name matches one of these regular expressions,
154 then `revert-buffer' reverts the file without querying
155 if the file has changed on disk and you have not edited the buffer."
159 (defvar buffer-file-number nil
160 "The device number and file number of the file visited in the current buffer.
161 The value is a list of the form (FILENUM DEVNUM).
162 This pair of numbers uniquely identifies the file.
163 If the buffer is visiting a new file, the value is nil.")
164 (make-variable-buffer-local 'buffer-file-number
)
165 (put 'buffer-file-number
'permanent-local t
)
167 (defvar buffer-file-numbers-unique
(not (memq system-type
'(windows-nt)))
168 "Non-nil means that buffer-file-number uniquely identifies files.")
170 (defcustom file-precious-flag nil
171 "*Non-nil means protect against I/O errors while saving files.
172 Some modes set this non-nil in particular buffers.
174 This feature works by writing the new contents into a temporary file
175 and then renaming the temporary file to replace the original.
176 In this way, any I/O error in writing leaves the original untouched,
177 and there is never any instant where the file is nonexistent.
179 Note that this feature forces backups to be made by copying.
180 Yet, at the same time, saving a precious file
181 breaks any hard links between it and other files."
185 (defcustom version-control nil
186 "*Control use of version numbers for backup files.
187 t means make numeric backup versions unconditionally.
188 nil means make them for files that have some already.
189 `never' means do not make them."
194 (defcustom dired-kept-versions
2
195 "*When cleaning directory, number of versions to keep."
200 (defcustom delete-old-versions nil
201 "*If t, delete excess backup versions silently.
202 If nil, ask confirmation. Any other value prevents any trimming."
203 :type
'(choice (const :tag
"Delete" t
)
204 (const :tag
"Ask" nil
)
205 (sexp :tag
"Leave" :format
"%t\n" other
))
208 (defcustom kept-old-versions
2
209 "*Number of oldest versions to keep when a new numbered backup is made."
213 (defcustom kept-new-versions
2
214 "*Number of newest versions to keep when a new numbered backup is made.
215 Includes the new backup. Must be > 0"
219 (defcustom require-final-newline nil
220 "*Value of t says silently ensure a file ends in a newline when it is saved.
221 Non-nil but not t says ask user whether to add a newline when there isn't one.
222 nil means don't add newlines."
223 :type
'(choice (const :tag
"Off" nil
)
225 (sexp :tag
"Ask" :format
"%t\n" ask
))
226 :group
'editing-basics
)
228 (defcustom auto-save-default t
229 "*Non-nil says by default do auto-saving of every file-visiting buffer."
233 (defcustom auto-save-visited-file-name nil
234 "*Non-nil says auto-save a buffer in the file it is visiting, when practical.
235 Normally auto-save files are written under other names."
239 (defcustom save-abbrevs nil
240 "*Non-nil means save word abbrevs too when files are saved.
241 Loading an abbrev file sets this to t."
245 (defcustom find-file-run-dired t
246 "*Non-nil says run dired if `find-file' is given the name of a directory."
250 ;;;It is not useful to make this a local variable.
251 ;;;(put 'find-file-not-found-hooks 'permanent-local t)
252 (defvar find-file-not-found-hooks nil
253 "List of functions to be called for `find-file' on nonexistent file.
254 These functions are called as soon as the error is detected.
255 `buffer-file-name' is already set up.
256 The functions are called in the order given until one of them returns non-nil.")
258 ;;;It is not useful to make this a local variable.
259 ;;;(put 'find-file-hooks 'permanent-local t)
260 (defvar find-file-hooks nil
261 "List of functions to be called after a buffer is loaded from a file.
262 The buffer's local variables (if any) will have been processed before the
263 functions are called.")
265 (defvar write-file-hooks nil
266 "List of functions to be called before writing out a buffer to a file.
267 If one of them returns non-nil, the file is considered already written
268 and the rest are not called.
269 These hooks are considered to pertain to the visited file.
270 So this list is cleared if you change the visited file name.
272 Don't make this variable buffer-local; instead, use `local-write-file-hooks'.
273 See also `write-contents-hooks'.")
274 ;;; However, in case someone does make it local...
275 (put 'write-file-hooks
'permanent-local t
)
277 (defvar local-write-file-hooks nil
278 "Just like `write-file-hooks', except intended for per-buffer use.
279 The functions in this list are called before the ones in
282 This variable is meant to be used for hooks that have to do with a
283 particular visited file. Therefore, it is a permanent local, so that
284 changing the major mode does not clear it. However, calling
285 `set-visited-file-name' does clear it.")
286 (make-variable-buffer-local 'local-write-file-hooks
)
287 (put 'local-write-file-hooks
'permanent-local t
)
289 (defvar write-contents-hooks nil
290 "List of functions to be called before writing out a buffer to a file.
291 If one of them returns non-nil, the file is considered already written
292 and the rest are not called.
294 This variable is meant to be used for hooks that pertain to the
295 buffer's contents, not to the particular visited file; thus,
296 `set-visited-file-name' does not clear this variable; but changing the
297 major mode does clear it.
299 This variable automatically becomes buffer-local whenever it is set.
300 If you use `add-hook' to add elements to the list, use nil for the
303 See also `write-file-hooks'.")
304 (make-variable-buffer-local 'write-contents-hooks
)
306 (defcustom enable-local-variables t
307 "*Control use of local variables in files you visit.
308 The value can be t, nil or something else.
309 A value of t means file local variables specifications are obeyed;
310 nil means they are ignored; anything else means query.
312 The command \\[normal-mode] always obeys file local variable
313 specifications and ignores this variable."
314 :type
'(choice (const :tag
"Obey" t
)
315 (const :tag
"Ignore" nil
)
316 (sexp :tag
"Query" :format
"%t\n" other
))
319 (defcustom enable-local-eval
'maybe
320 "*Control processing of the \"variable\" `eval' in a file's local variables.
321 The value can be t, nil or something else.
322 A value of t means obey `eval' variables;
323 nil means ignore them; anything else means query.
325 The command \\[normal-mode] always obeys local-variables lists
326 and ignores this variable."
327 :type
'(choice (const :tag
"Obey" t
)
328 (const :tag
"Ignore" nil
)
329 (sexp :tag
"Query" :format
"%t\n" other
))
332 ;; Avoid losing in versions where CLASH_DETECTION is disabled.
333 (or (fboundp 'lock-buffer
)
334 (defalias 'lock-buffer
'ignore
))
335 (or (fboundp 'unlock-buffer
)
336 (defalias 'unlock-buffer
'ignore
))
337 (or (fboundp 'file-locked-p
)
338 (defalias 'file-locked-p
'ignore
))
340 (defvar view-read-only nil
341 "*Non-nil means buffers visiting files read-only, do it in view mode.")
343 ;; This hook function provides support for ange-ftp host name
344 ;; completion. It runs the usual ange-ftp hook, but only for
345 ;; completion operations. Having this here avoids the need
346 ;; to load ange-ftp when it's not really in use.
347 (defun ange-ftp-completion-hook-function (op &rest args
)
348 (if (memq op
'(file-name-completion file-name-all-completions
))
349 (apply 'ange-ftp-hook-function op args
)
350 (let ((inhibit-file-name-handlers
351 (cons 'ange-ftp-completion-hook-function
352 (and (eq inhibit-file-name-operation op
)
353 inhibit-file-name-handlers
)))
354 (inhibit-file-name-operation op
))
357 (defun convert-standard-filename (filename)
358 "Convert a standard file's name to something suitable for the current OS.
359 This function's standard definition is trivial; it just returns the argument.
360 However, on some systems, the function is redefined
361 with a definition that really does change some file names."
365 "Show the current default directory."
367 (message "Directory %s" default-directory
))
370 "Value of the CDPATH environment variable, as a list.
371 Not actually set up until the first time you you use it.")
373 (defvar path-separator
":"
374 "Character used to separate directories in search paths.")
376 (defun parse-colon-path (cd-path)
377 "Explode a colon-separated search path into a list of directory names."
379 (let (cd-prefix cd-list
(cd-start 0) cd-colon
)
380 (setq cd-path
(concat cd-path path-separator
))
381 (while (setq cd-colon
(string-match path-separator cd-path cd-start
))
384 (list (if (= cd-start cd-colon
)
386 (substitute-in-file-name
387 (file-name-as-directory
388 (substring cd-path cd-start cd-colon
)))))))
389 (setq cd-start
(+ cd-colon
1)))
392 (defun cd-absolute (dir)
393 "Change current directory to given absolute file name DIR."
394 ;; Put the name into directory syntax now,
395 ;; because otherwise expand-file-name may give some bad results.
396 (if (not (eq system-type
'vax-vms
))
397 (setq dir
(file-name-as-directory dir
)))
398 (setq dir
(abbreviate-file-name (expand-file-name dir
)))
399 (if (not (file-directory-p dir
))
400 (if (file-exists-p dir
)
401 (error "%s is not a directory" dir
)
402 (error "%s: no such directory" dir
))
403 (if (file-executable-p dir
)
404 (setq default-directory dir
)
405 (error "Cannot cd to %s: Permission denied" dir
))))
408 "Make DIR become the current buffer's default directory.
409 If your environment includes a `CDPATH' variable, try each one of that
410 colon-separated list of directories when resolving a relative directory name."
412 (list (read-file-name "Change default directory: "
413 default-directory default-directory
414 (and (member cd-path
'(nil ("./")))
415 (null (getenv "CDPATH"))))))
416 (if (file-name-absolute-p dir
)
417 (cd-absolute (expand-file-name dir
))
419 (let ((trypath (parse-colon-path (getenv "CDPATH"))))
420 (setq cd-path
(or trypath
(list "./")))))
421 (if (not (catch 'found
423 (function (lambda (x)
424 (let ((f (expand-file-name (concat x dir
))))
425 (if (file-directory-p f
)
428 (throw 'found t
))))))
431 (error "No such directory found via CDPATH environment variable"))))
433 (defun load-file (file)
434 "Load the Lisp file named FILE."
435 (interactive "fLoad file: ")
436 (load (expand-file-name file
) nil nil t
))
438 (defun load-library (library)
439 "Load the library named LIBRARY.
440 This is an interface to the function `load'."
441 (interactive "sLoad library: ")
444 (defun file-local-copy (file &optional buffer
)
445 "Copy the file FILE into a temporary file on this machine.
446 Returns the name of the local copy, or nil, if FILE is directly
448 (let ((handler (find-file-name-handler file
'file-local-copy
)))
450 (funcall handler
'file-local-copy file
)
453 (defun file-truename (filename &optional counter prev-dirs
)
454 "Return the truename of FILENAME, which should be absolute.
455 The truename of a file name is found by chasing symbolic links
456 both at the level of the file and at the level of the directories
457 containing it, until no links are left at any level.
459 The arguments COUNTER and PREV-DIRS are used only in recursive calls.
460 Do not specify them in other calls."
461 ;; COUNTER can be a cons cell whose car is the count of how many more links
462 ;; to chase before getting an error.
463 ;; PREV-DIRS can be a cons cell whose car is an alist
464 ;; of truenames we've just recently computed.
466 ;; The last test looks dubious, maybe `+' is meant here? --simon.
467 (if (or (string= filename
"") (string= filename
"~")
468 (and (string= (substring filename
0 1) "~")
469 (string-match "~[^/]*" filename
)))
471 (setq filename
(expand-file-name filename
))
472 (if (string= filename
"")
473 (setq filename
"/"))))
474 (or counter
(setq counter
(list 100)))
476 ;; For speed, remove the ange-ftp completion handler from the list.
477 ;; We know it's not needed here.
478 ;; For even more speed, do this only on the outermost call.
479 (file-name-handler-alist
480 (if prev-dirs file-name-handler-alist
481 (let ((tem (copy-sequence file-name-handler-alist
)))
482 (delq (rassq 'ange-ftp-completion-hook-function tem
) tem
)))))
483 (or prev-dirs
(setq prev-dirs
(list nil
)))
485 ;; andrewi@harlequin.co.uk - none of the following code (except for
486 ;; invoking the file-name handler) currently applies on Windows
487 ;; (ie. there are no native symlinks), but there is an issue with
488 ;; case differences being ignored by the OS, and short "8.3 DOS"
489 ;; name aliases existing for all files. (The short names are not
490 ;; reported by directory-files, but can be used to refer to files.)
491 ;; It seems appropriate for file-truename to resolve these issues in
492 ;; the most natural way, which on Windows is to call the function
493 ;; `w32-long-file-name' - this returns the exact name of a file as
494 ;; it is stored on disk (expanding short name aliases with the full
495 ;; name in the process).
496 (if (eq system-type
'windows-nt
)
497 (let ((handler (find-file-name-handler filename
'file-truename
))
499 ;; For file name that has a special handler, call handler.
500 ;; This is so that ange-ftp can save time by doing a no-op.
502 (setq filename
(funcall handler
'file-truename filename
))
503 ;; If filename contains a wildcard, newname will be the old name.
504 (if (string-match "[*?]" filename
)
505 (setq newname filename
)
506 ;; If filename doesn't exist, newname will be nil.
507 (setq newname
(w32-long-file-name filename
)))
508 (setq filename
(or newname filename
)))
511 ;; If this file directly leads to a link, process that iteratively
512 ;; so that we don't use lots of stack.
514 (setcar counter
(1- (car counter
)))
515 (if (< (car counter
) 0)
516 (error "Apparent cycle of symbolic links for %s" filename
))
517 (let ((handler (find-file-name-handler filename
'file-truename
)))
518 ;; For file name that has a special handler, call handler.
519 ;; This is so that ange-ftp can save time by doing a no-op.
521 (setq filename
(funcall handler
'file-truename filename
)
523 (let ((dir (or (file-name-directory filename
) default-directory
))
525 ;; Get the truename of the directory.
526 (setq dirfile
(directory-file-name dir
))
527 ;; If these are equal, we have the (or a) root directory.
528 (or (string= dir dirfile
)
529 ;; If this is the same dir we last got the truename for,
530 ;; save time--don't recalculate.
531 (if (assoc dir
(car prev-dirs
))
532 (setq dir
(cdr (assoc dir
(car prev-dirs
))))
534 (new (file-name-as-directory (file-truename dirfile counter prev-dirs
))))
535 (setcar prev-dirs
(cons (cons old new
) (car prev-dirs
)))
537 (if (equal ".." (file-name-nondirectory filename
))
539 (directory-file-name (file-name-directory (directory-file-name dir
)))
541 (if (equal "." (file-name-nondirectory filename
))
542 (setq filename
(directory-file-name dir
)
544 ;; Put it back on the file name.
545 (setq filename
(concat dir
(file-name-nondirectory filename
)))
546 ;; Is the file name the name of a link?
547 (setq target
(file-symlink-p filename
))
549 ;; Yes => chase that link, then start all over
550 ;; since the link may point to a directory name that uses links.
551 ;; We can't safely use expand-file-name here
552 ;; since target might look like foo/../bar where foo
553 ;; is itself a link. Instead, we handle . and .. above.
555 (if (file-name-absolute-p target
)
563 (defun file-chase-links (filename)
564 "Chase links in FILENAME until a name that is not a link.
565 Does not examine containing directories for links,
566 unlike `file-truename'."
567 (let (tem (count 100) (newname filename
))
568 (while (setq tem
(file-symlink-p newname
))
571 (error "Apparent cycle of symbolic links for %s" filename
))
572 ;; In the context of a link, `//' doesn't mean what Emacs thinks.
573 (while (string-match "//+" tem
)
574 (setq tem
(replace-match "/" nil nil tem
)))
575 ;; Handle `..' by hand, since it needs to work in the
576 ;; target of any directory symlink.
577 ;; This code is not quite complete; it does not handle
578 ;; embedded .. in some cases such as ./../foo and foo/bar/../../../lose.
579 (while (string-match "\\`\\.\\./" tem
)
580 (setq tem
(substring tem
3))
581 (setq newname
(expand-file-name newname
))
582 ;; Chase links in the default dir of the symlink.
585 (directory-file-name (file-name-directory newname
))))
586 ;; Now find the parent of that dir.
587 (setq newname
(file-name-directory newname
)))
588 (setq newname
(expand-file-name tem
(file-name-directory newname
)))
589 (setq count
(1- count
))))
592 (defun switch-to-buffer-other-window (buffer &optional norecord
)
593 "Select buffer BUFFER in another window.
594 Optional second arg NORECORD non-nil means
595 do not put this buffer at the front of the list of recently selected ones."
596 (interactive "BSwitch to buffer in other window: ")
597 (let ((pop-up-windows t
))
598 (pop-to-buffer buffer t norecord
)))
600 (defun switch-to-buffer-other-frame (buffer &optional norecord
)
601 "Switch to buffer BUFFER in another frame.
602 Optional second arg NORECORD non-nil means
603 do not put this buffer at the front of the list of recently selected ones."
604 (interactive "BSwitch to buffer in other frame: ")
605 (let ((pop-up-frames t
))
606 (pop-to-buffer buffer t norecord
)
607 (raise-frame (window-frame (selected-window)))))
609 (defun find-file (filename)
611 Switch to a buffer visiting file FILENAME,
612 creating one if none already exists."
613 (interactive "FFind file: ")
614 (switch-to-buffer (find-file-noselect filename
)))
616 (defun find-file-other-window (filename)
617 "Edit file FILENAME, in another window.
618 May create a new window, or reuse an existing one.
619 See the function `display-buffer'."
620 (interactive "FFind file in other window: ")
621 (switch-to-buffer-other-window (find-file-noselect filename
)))
623 (defun find-file-other-frame (filename)
624 "Edit file FILENAME, in another frame.
625 May create a new frame, or reuse an existing one.
626 See the function `display-buffer'."
627 (interactive "FFind file in other frame: ")
628 (switch-to-buffer-other-frame (find-file-noselect filename
)))
630 (defun find-file-read-only (filename)
631 "Edit file FILENAME but don't allow changes.
632 Like \\[find-file] but marks buffer as read-only.
633 Use \\[toggle-read-only] to permit editing."
634 (interactive "fFind file read-only: ")
639 (defun find-file-read-only-other-window (filename)
640 "Edit file FILENAME in another window but don't allow changes.
641 Like \\[find-file-other-window] but marks buffer as read-only.
642 Use \\[toggle-read-only] to permit editing."
643 (interactive "fFind file read-only other window: ")
644 (find-file-other-window filename
)
648 (defun find-file-read-only-other-frame (filename)
649 "Edit file FILENAME in another frame but don't allow changes.
650 Like \\[find-file-other-frame] but marks buffer as read-only.
651 Use \\[toggle-read-only] to permit editing."
652 (interactive "fFind file read-only other frame: ")
653 (find-file-other-frame filename
)
657 (defun find-alternate-file-other-window (filename)
658 "Find file FILENAME as a replacement for the file in the next window.
659 This command does not select that window."
661 (save-selected-window
663 (let ((file buffer-file-name
)
667 (setq file-name
(file-name-nondirectory file
)
668 file-dir
(file-name-directory file
)))
669 (list (read-file-name
670 "Find alternate file: " file-dir nil nil file-name
)))))
672 (find-file-other-window filename
)
673 (save-selected-window
675 (find-alternate-file filename
))))
677 (defun find-alternate-file (filename)
678 "Find file FILENAME, select its buffer, kill previous buffer.
679 If the current buffer now contains an empty file that you just visited
680 \(presumably by mistake), use this command to visit the file you really want."
682 (let ((file buffer-file-name
)
686 (setq file-name
(file-name-nondirectory file
)
687 file-dir
(file-name-directory file
)))
688 (list (read-file-name
689 "Find alternate file: " file-dir nil nil file-name
))))
690 (and (buffer-modified-p) (buffer-file-name)
691 ;; (not buffer-read-only)
692 (not (yes-or-no-p (format "Buffer %s is modified; kill anyway? "
695 (let ((obuf (current-buffer))
696 (ofile buffer-file-name
)
697 (onum buffer-file-number
)
698 (otrue buffer-file-truename
)
699 (oname (buffer-name)))
700 (if (get-buffer " **lose**")
701 (kill-buffer " **lose**"))
702 (rename-buffer " **lose**")
706 (setq buffer-file-name nil
)
707 (setq buffer-file-number nil
)
708 (setq buffer-file-truename nil
)
709 (find-file filename
))
710 (cond ((eq obuf
(current-buffer))
711 (setq buffer-file-name ofile
)
712 (setq buffer-file-number onum
)
713 (setq buffer-file-truename otrue
)
715 (rename-buffer oname
))))
716 (or (eq (current-buffer) obuf
)
717 (kill-buffer obuf
))))
719 (defun create-file-buffer (filename)
720 "Create a suitably named buffer for visiting FILENAME, and return it.
721 FILENAME (sans directory) is used unchanged if that name is free;
722 otherwise a string <2> or <3> or ... is appended to get an unused name."
723 (let ((lastname (file-name-nondirectory filename
)))
724 (if (string= lastname
"")
725 (setq lastname filename
))
726 (generate-new-buffer lastname
)))
728 (defun generate-new-buffer (name)
729 "Create and return a buffer with a name based on NAME.
730 Choose the buffer's name using `generate-new-buffer-name'."
731 (get-buffer-create (generate-new-buffer-name name
)))
733 (defvar automount-dir-prefix
"^/tmp_mnt/"
734 "Regexp to match the automounter prefix in a directory name.")
736 (defvar abbreviated-home-dir nil
737 "The user's homedir abbreviated according to `directory-abbrev-list'.")
739 (defun abbreviate-file-name (filename)
740 "Return a version of FILENAME shortened using `directory-abbrev-alist'.
741 This also substitutes \"~\" for the user's home directory.
742 Type \\[describe-variable] directory-abbrev-alist RET for more information."
743 ;; Get rid of the prefixes added by the automounter.
744 (if (and automount-dir-prefix
745 (string-match automount-dir-prefix filename
)
746 (file-exists-p (file-name-directory
747 (substring filename
(1- (match-end 0))))))
748 (setq filename
(substring filename
(1- (match-end 0)))))
749 (let ((tail directory-abbrev-alist
))
750 ;; If any elt of directory-abbrev-alist matches this name,
751 ;; abbreviate accordingly.
753 (if (string-match (car (car tail
)) filename
)
755 (concat (cdr (car tail
)) (substring filename
(match-end 0)))))
756 (setq tail
(cdr tail
)))
757 ;; Compute and save the abbreviated homedir name.
758 ;; We defer computing this until the first time it's needed, to
759 ;; give time for directory-abbrev-alist to be set properly.
760 ;; We include a slash at the end, to avoid spurious matches
761 ;; such as `/usr/foobar' when the home dir is `/usr/foo'.
762 (or abbreviated-home-dir
763 (setq abbreviated-home-dir
764 (let ((abbreviated-home-dir "$foo"))
765 (concat "^" (abbreviate-file-name (expand-file-name "~"))
768 ;; If FILENAME starts with the abbreviated homedir,
769 ;; make it start with `~' instead.
770 (if (and (string-match abbreviated-home-dir filename
)
771 ;; If the home dir is just /, don't change it.
772 (not (and (= (match-end 0) 1)
773 (= (aref filename
0) ?
/)))
774 ;; MS-DOS root directories can come with a drive letter;
775 ;; Novell Netware allows drive letters beyond `Z:'.
776 (not (and (or (eq system-type
'ms-dos
)
777 (eq system-type
'windows-nt
))
779 (string-match "^[a-zA-`]:/$" filename
)))))
782 (substring filename
(match-beginning 1) (match-end 1))
783 (substring filename
(match-end 0)))))
786 (defcustom find-file-not-true-dirname-list nil
787 "*List of logical names for which visiting shouldn't save the true dirname.
788 On VMS, when you visit a file using a logical name that searches a path,
789 you may or may not want the visited file name to record the specific
790 directory where the file was found. If you *do not* want that, add the logical
791 name to this list as a string."
792 :type
'(repeat (string :tag
"Name"))
795 (defun find-buffer-visiting (filename)
796 "Return the buffer visiting file FILENAME (a string).
797 This is like `get-file-buffer', except that it checks for any buffer
798 visiting the same file, possibly under a different name.
799 If there is no such live buffer, return nil."
800 (let ((buf (get-file-buffer filename
))
801 (truename (abbreviate-file-name (file-truename filename
))))
803 (let ((list (buffer-list)) found
)
804 (while (and (not found
) list
)
806 (set-buffer (car list
))
807 (if (and buffer-file-name
808 (string= buffer-file-truename truename
))
809 (setq found
(car list
))))
810 (setq list
(cdr list
)))
812 (let ((number (nthcdr 10 (file-attributes truename
)))
813 (list (buffer-list)) found
)
814 (and buffer-file-numbers-unique
816 (while (and (not found
) list
)
818 (set-buffer (car list
))
819 (if (and buffer-file-name
820 (equal buffer-file-number number
)
821 ;; Verify this buffer's file number
822 ;; still belongs to its file.
823 (file-exists-p buffer-file-name
)
824 (equal (nthcdr 10 (file-attributes buffer-file-name
))
826 (setq found
(car list
))))
827 (setq list
(cdr list
))))
830 (defun find-file-noselect (filename &optional nowarn rawfile
)
831 "Read file FILENAME into a buffer and return the buffer.
832 If a buffer exists visiting FILENAME, return that one, but
833 verify that the file has not changed since visited or saved.
834 The buffer is not selected, just returned to the caller.
835 Optional first arg NOWARN non-nil means suppress any warning messages.
836 Optional second arg RAWFILE non-nil means the file is read literally."
838 (abbreviate-file-name
839 (expand-file-name filename
)))
840 (if (file-directory-p filename
)
841 (if find-file-run-dired
842 (dired-noselect (if find-file-visit-truename
843 (abbreviate-file-name (file-truename filename
))
845 (error "%s is a directory" filename
))
846 (let* ((buf (get-file-buffer filename
))
847 (truename (abbreviate-file-name (file-truename filename
)))
848 (number (nthcdr 10 (file-attributes truename
)))
849 ;; Find any buffer for a file which has same truename.
850 (other (and (not buf
) (find-buffer-visiting filename
)))
852 ;; Let user know if there is a buffer with the same truename.
856 (string-equal filename
(buffer-file-name other
))
857 (message "%s and %s are the same file"
858 filename
(buffer-file-name other
)))
859 ;; Optionally also find that buffer.
860 (if (or find-file-existing-other-name find-file-visit-truename
)
864 (verify-visited-file-modtime buf
)
865 (cond ((not (file-exists-p filename
))
866 (error "File %s no longer exists!" filename
))
867 ;; Certain files should be reverted automatically
868 ;; if they have changed on disk and not in the buffer.
869 ((and (not (buffer-modified-p buf
))
870 (let ((tail revert-without-query
)
873 (if (string-match (car tail
) filename
)
875 (setq tail
(cdr tail
)))
877 (with-current-buffer buf
878 (message "Reverting file %s..." filename
)
880 (message "Reverting file %s...done" filename
)))
882 (if (string= (file-name-nondirectory filename
)
885 (if (buffer-modified-p buf
)
886 "File %s changed on disk. Discard your edits? "
887 "File %s changed on disk. Reread from disk? ")
888 (file-name-nondirectory filename
))
890 (if (buffer-modified-p buf
)
891 "File %s changed on disk. Discard your edits in %s? "
892 "File %s changed on disk. Reread from disk into %s? ")
893 (file-name-nondirectory filename
)
895 (with-current-buffer buf
896 (revert-buffer t t
)))
897 ((not (eq rawfile
(not (null find-file-literally
))))
899 (message "File is already visited, and not literally")
900 (message "File is already visited, and visited literally")))))
902 ;;; The truename stuff makes this obsolete.
903 ;;; (let* ((link-name (car (file-attributes filename)))
904 ;;; (linked-buf (and (stringp link-name)
905 ;;; (get-file-buffer link-name))))
906 ;;; (if (bufferp linked-buf)
907 ;;; (message "Symbolic link to file in buffer %s"
908 ;;; (buffer-name linked-buf))))
909 (setq buf
(create-file-buffer filename
))
910 (set-buffer-major-mode buf
)
915 (insert-file-contents-literally filename t
)
917 ;; Unconditionally set error
920 (insert-file-contents filename t
)
922 ;; Run find-file-not-found-hooks until one returns non-nil.
923 (or (run-hook-with-args-until-success 'find-file-not-found-hooks
)
924 ;; If they fail too, set error.
926 ;; Find the file's truename, and maybe use that as visited name.
927 (setq buffer-file-truename truename
)
928 (setq buffer-file-number number
)
929 ;; On VMS, we may want to remember which directory in a search list
930 ;; the file was found in.
931 (and (eq system-type
'vax-vms
)
933 (if (string-match ":" (file-name-directory filename
))
934 (setq logical
(substring (file-name-directory filename
)
935 0 (match-beginning 0))))
936 (not (member logical find-file-not-true-dirname-list
)))
937 (setq buffer-file-name buffer-file-truename
))
938 (if find-file-visit-truename
939 (setq buffer-file-name
941 (expand-file-name buffer-file-truename
))))
942 ;; Set buffer's default directory to that of the file.
943 (setq default-directory
(file-name-directory filename
))
944 ;; Turn off backup files for certain file names. Since
945 ;; this is a permanent local, the major mode won't eliminate it.
946 (and (not (funcall backup-enable-predicate buffer-file-name
))
948 (make-local-variable 'backup-inhibited
)
949 (setq backup-inhibited t
)))
952 (setq enable-multibyte-characters nil
)
953 (make-local-variable 'find-file-literally
)
954 (setq find-file-literally t
))
955 (after-find-file error
(not nowarn
))
956 (setq buf
(current-buffer)))))
959 (defun insert-file-contents-literally (filename &optional visit beg end replace
)
960 "Like `insert-file-contents', but only reads in the file literally.
961 A buffer may be modified in several ways after reading into the buffer,
962 to Emacs features such as format decoding, character code
963 conversion, find-file-hooks, automatic uncompression, etc.
965 This function ensures that none of these modifications will take place."
966 (let ((format-alist nil
)
967 (after-insert-file-functions nil
)
968 (coding-system-for-read 'no-conversion
)
969 (coding-system-for-write 'no-conversion
)
970 (jka-compr-compression-info-list nil
)
971 (find-buffer-file-type-function
972 (if (fboundp 'find-buffer-file-type
)
973 (symbol-function 'find-buffer-file-type
)
977 (fset 'find-buffer-file-type
(lambda (filename) t
))
978 (insert-file-contents filename visit beg end replace
))
979 (if find-buffer-file-type-function
980 (fset 'find-buffer-file-type find-buffer-file-type-function
)
981 (fmakunbound 'find-buffer-file-type
)))))
983 (defun insert-file-literally (filename)
984 "Insert contents of file FILENAME into buffer after point with no conversion.
986 This function is meant for the user to run interactively.
987 Don't call it from programs! Use `insert-file-contents-literally' instead.
988 \(Its calling sequence is different; see its documentation)."
989 (interactive "*fInsert file literally: ")
990 (if (file-directory-p filename
)
991 (signal 'file-error
(list "Opening input file" "file is a directory"
993 (let ((tem (insert-file-contents-literally filename
)))
994 (push-mark (+ (point) (car (cdr tem
))))))
996 (defvar find-file-literally nil
997 "Non-nil if this buffer was made by `find-file-literally' or equivalent.
998 This is a permanent local.")
999 (put 'find-file-literally
'permanent-local t
)
1001 (defun find-file-literally (filename)
1002 "Visit file FILENAME with no conversion of any kind.
1003 Format conversion and character code conversion are both disabled,
1004 and multibyte characters are disabled in the resulting buffer.
1005 The major mode used is Fundamental mode regardless of the file name,
1006 and local variable specifications in the file are ignored.
1007 Automatic uncompression is also disabled.
1009 You cannot absolutely rely on this function to result in
1010 visiting the file literally. If Emacs already has a buffer
1011 which is visiting the file, you get the existing buffer,
1012 regardless of whether it was created literally or not.
1014 In a Lisp program, if you want to be sure of accessing a file's
1015 contents literally, you should create a temporary buffer and then read
1016 the file contents into it using `insert-file-contents-literally'."
1017 (interactive "FFind file literally: ")
1018 (switch-to-buffer (find-file-noselect filename nil t
)))
1020 (defvar after-find-file-from-revert-buffer nil
)
1022 (defun after-find-file (&optional error warn noauto
1023 after-find-file-from-revert-buffer
1025 "Called after finding a file and by the default revert function.
1026 Sets buffer mode, parses local variables.
1027 Optional args ERROR, WARN, and NOAUTO: ERROR non-nil means there was an
1028 error in reading the file. WARN non-nil means warn if there
1029 exists an auto-save file more recent than the visited file.
1030 NOAUTO means don't mess with auto-save mode.
1031 Fourth arg AFTER-FIND-FILE-FROM-REVERT-BUFFER non-nil
1032 means this call was from `revert-buffer'.
1033 Fifth arg NOMODES non-nil means don't alter the file's modes.
1034 Finishes by calling the functions in `find-file-hooks'
1035 unless NOMODES is non-nil."
1036 (setq buffer-read-only
(not (file-writable-p buffer-file-name
)))
1041 (cond ((and error
(file-attributes buffer-file-name
))
1042 (setq buffer-read-only t
)
1043 "File exists, but cannot be read.")
1044 ((not buffer-read-only
)
1046 (file-newer-than-file-p (make-auto-save-file-name)
1048 (format "%s has auto save data; consider M-x recover-file"
1049 (file-name-nondirectory buffer-file-name
))
1050 (setq not-serious t
)
1051 (if error
"(New file)" nil
)))
1053 (setq not-serious t
)
1054 "Note: file is write protected")
1055 ((file-attributes (directory-file-name default-directory
))
1056 "File not found and directory write-protected")
1057 ((file-exists-p (file-name-directory buffer-file-name
))
1058 (setq buffer-read-only nil
))
1060 (setq buffer-read-only nil
)
1061 (if (file-exists-p (file-name-directory (directory-file-name (file-name-directory buffer-file-name
))))
1062 "Use M-x make-dir RET RET to create the directory"
1063 "Use C-u M-x make-dir RET RET to create directory and its parents")))))
1067 (or not-serious
(sit-for 1 nil t
)))))
1068 (if (and auto-save-default
(not noauto
))
1069 (auto-save-mode t
)))
1073 (if (and buffer-read-only view-read-only
1074 (not (eq (get major-mode
'mode-class
) 'special
)))
1076 (run-hooks 'find-file-hooks
)))
1078 (defun normal-mode (&optional find-file
)
1079 "Choose the major mode for this buffer automatically.
1080 Also sets up any specified local variables of the file.
1081 Uses the visited file name, the -*- line, and the local variables spec.
1083 This function is called automatically from `find-file'. In that case,
1084 we may set up specified local variables depending on the value of
1085 `enable-local-variables': if it is t, we do; if it is nil, we don't;
1086 otherwise, we query. `enable-local-variables' is ignored if you
1087 run `normal-mode' explicitly."
1089 (or find-file
(funcall (or default-major-mode
'fundamental-mode
)))
1092 (error (message "File mode specification error: %s"
1093 (prin1-to-string err
))))
1095 (let ((enable-local-variables (or (not find-file
)
1096 enable-local-variables
)))
1097 (hack-local-variables))
1098 (error (message "File local-variables error: %s"
1099 (prin1-to-string err
)))))
1101 (defvar auto-mode-alist
1102 '(("\\.te?xt\\'" . text-mode
)
1103 ("\\.c\\'" . c-mode
)
1104 ("\\.h\\'" . c-mode
)
1105 ("\\.tex\\'" . tex-mode
)
1106 ("\\.ltx\\'" . latex-mode
)
1107 ("\\.el\\'" . emacs-lisp-mode
)
1108 ("\\.mm\\'" . nroff-mode
)
1109 ("\\.me\\'" . nroff-mode
)
1110 ("\\.ms\\'" . nroff-mode
)
1111 ("\\.man\\'" . nroff-mode
)
1112 ("\\.scm\\'" . scheme-mode
)
1113 ("\\.l\\'" . lisp-mode
)
1114 ("\\.lisp\\'" . lisp-mode
)
1115 ("\\.f\\'" . fortran-mode
)
1116 ("\\.F\\'" . fortran-mode
)
1117 ("\\.for\\'" . fortran-mode
)
1118 ("\\.p\\'" . pascal-mode
)
1119 ("\\.pas\\'" . pascal-mode
)
1120 ("\\.ad[abs]\\'" . ada-mode
)
1121 ("\\.pl\\'" . perl-mode
)
1122 ("\\.pm\\'" . perl-mode
)
1123 ("\\.s?html?\\'" . html-mode
)
1124 ("\\.cc\\'" . c
++-mode
)
1125 ("\\.hh\\'" . c
++-mode
)
1126 ("\\.hpp\\'" . c
++-mode
)
1127 ("\\.C\\'" . c
++-mode
)
1128 ("\\.H\\'" . c
++-mode
)
1129 ("\\.cpp\\'" . c
++-mode
)
1130 ("\\.cxx\\'" . c
++-mode
)
1131 ("\\.hxx\\'" . c
++-mode
)
1132 ("\\.c\\+\\+\\'" . c
++-mode
)
1133 ("\\.h\\+\\+\\'" . c
++-mode
)
1134 ("\\.m\\'" . objc-mode
)
1135 ("\\.java\\'" . java-mode
)
1136 ("\\.mk\\'" . makefile-mode
)
1137 ("\\(M\\|m\\|GNUm\\)akefile\\(.in\\)?\\'" . makefile-mode
)
1138 ;;; Less common extensions come here
1139 ;;; so more common ones above are found faster.
1140 ("\\.texinfo\\'" . texinfo-mode
)
1141 ("\\.te?xi\\'" . texinfo-mode
)
1142 ("\\.s\\'" . asm-mode
)
1143 ("\\.S\\'" . asm-mode
)
1144 ("\\.asm\\'" . asm-mode
)
1145 ("ChangeLog\\'" . change-log-mode
)
1146 ("change.log\\'" . change-log-mode
)
1147 ("changelo\\'" . change-log-mode
)
1148 ("ChangeLog.[0-9]+\\'" . change-log-mode
)
1149 ;; for MSDOS and MS-Windows (which are case-insensitive)
1150 ("changelog\\'" . change-log-mode
)
1151 ("changelog.[0-9]+\\'" . change-log-mode
)
1152 ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode
)
1153 ("\\.scm\\.[0-9]*\\'" . scheme-mode
)
1154 ("\\.[ck]?sh\\'\\|\\.shar\\'\\|/\\.z?profile\\'" . sh-mode
)
1155 ("/\\.\\(bash_profile\\|z?login\\|bash_login\\|z?logout\\)\\'" . sh-mode
)
1156 ("/\\.\\(bash_logout\\|[kz]shrc\\|bashrc\\|t?cshrc\\|esrc\\)\\'" . sh-mode
)
1157 ("/\\.\\([kz]shenv\\|xinitrc\\|startxrc\\|xsession\\)\\'" . sh-mode
)
1158 ;;; The following should come after the ChangeLog pattern
1159 ;;; for the sake of ChangeLog.1, etc.
1160 ;;; and after the .scm.[0-9] pattern too.
1161 ("\\.[12345678]\\'" . nroff-mode
)
1162 ("\\.TeX\\'" . tex-mode
)
1163 ("\\.sty\\'" . latex-mode
)
1164 ("\\.cls\\'" . latex-mode
) ;LaTeX 2e class
1165 ("\\.clo\\'" . latex-mode
) ;LaTeX 2e class option
1166 ("\\.bbl\\'" . latex-mode
)
1167 ("\\.bib\\'" . bibtex-mode
)
1168 ("\\.m4\\'" . m4-mode
)
1169 ("\\.mc\\'" . m4-mode
)
1170 ("\\.mf\\'" . metafont-mode
)
1171 ("\\.mp\\'" . metapost-mode
)
1172 ("\\.article\\'" . text-mode
)
1173 ("\\.letter\\'" . text-mode
)
1174 ("\\.tcl\\'" . tcl-mode
)
1175 ("\\.exp\\'" . tcl-mode
)
1176 ("\\.itcl\\'" . tcl-mode
)
1177 ("\\.itk\\'" . tcl-mode
)
1178 ("\\.icn\\'" . icon-mode
)
1179 ("\\.sim\\'" . simula-mode
)
1180 ("\\.mss\\'" . scribe-mode
)
1181 ("\\.f90\\'" . f90-mode
)
1182 ("\\.lsp\\'" . lisp-mode
)
1183 ("\\.awk\\'" . awk-mode
)
1184 ("\\.prolog\\'" . prolog-mode
)
1185 ("\\.tar\\'" . tar-mode
)
1186 ("\\.\\(arc\\|zip\\|lzh\\|zoo\\|jar\\)\\'" . archive-mode
)
1187 ("\\.\\(ARC\\|ZIP\\|LZH\\|ZOO\\|JAR\\)\\'" . archive-mode
)
1188 ;; Mailer puts message to be edited in
1189 ;; /tmp/Re.... or Message
1190 ("\\`/tmp/Re" . text-mode
)
1191 ("/Message[0-9]*\\'" . text-mode
)
1192 ("/drafts/[0-9]+\\'" . mh-letter-mode
)
1193 ;; some news reader is reported to use this
1194 ("\\`/tmp/fol/" . text-mode
)
1195 ("\\.y\\'" . c-mode
)
1196 ("\\.lex\\'" . c-mode
)
1197 ("\\.oak\\'" . scheme-mode
)
1198 ("\\.sgml?\\'" . sgml-mode
)
1199 ("\\.dtd\\'" . sgml-mode
)
1200 ("\\.ds\\(ss\\)?l\\'" . dsssl-mode
)
1201 ;; .emacs following a directory delimiter
1202 ;; in Unix, MSDOG or VMS syntax.
1203 ("[]>:/\\]\\..*emacs\\'" . emacs-lisp-mode
)
1204 ;; _emacs following a directory delimiter
1206 ("[:/]_emacs\\'" . emacs-lisp-mode
)
1207 ("\\.ml\\'" . lisp-mode
))
1209 Alist of filename patterns vs corresponding major mode functions.
1210 Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL).
1211 \(NON-NIL stands for anything that is not nil; the value does not matter.)
1212 Visiting a file whose name matches REGEXP specifies FUNCTION as the
1213 mode function to use. FUNCTION will be called, unless it is nil.
1215 If the element has the form (REGEXP FUNCTION NON-NIL), then after
1216 calling FUNCTION (if it's not nil), we delete the suffix that matched
1217 REGEXP and search the list again for another match.")
1219 (defvar interpreter-mode-alist
1220 '(("perl" . perl-mode
)
1221 ("perl5" . perl-mode
)
1223 ("wishx" . tcl-mode
)
1225 ("tclsh" . tcl-mode
)
1230 ("scm" . scheme-mode
)
1248 ("tail" . text-mode
)
1249 ("more" . text-mode
)
1250 ("less" . text-mode
)
1252 "Alist mapping interpreter names to major modes.
1253 This alist applies to files whose first line starts with `#!'.
1254 Each element looks like (INTERPRETER . MODE).
1255 The car of each element is compared with
1256 the name of the interpreter specified in the first line.
1257 If it matches, mode MODE is selected.")
1259 (defvar inhibit-first-line-modes-regexps
'("\\.tar\\'" "\\.tgz\\'")
1260 "List of regexps; if one matches a file name, don't look for `-*-'.")
1262 (defvar inhibit-first-line-modes-suffixes nil
1263 "List of regexps for what to ignore, for `inhibit-first-line-modes-regexps'.
1264 When checking `inhibit-first-line-modes-regexps', we first discard
1265 from the end of the file name anything that matches one of these regexps.")
1267 (defvar user-init-file
1268 "" ; set by command-line
1269 "File name including directory of user's initialization file.")
1271 (defun set-auto-mode (&optional just-from-file-name
)
1272 "Select major mode appropriate for current buffer.
1273 This checks for a -*- mode tag in the buffer's text,
1274 compares the filename against the entries in `auto-mode-alist',
1275 or checks the interpreter that runs this file against
1276 `interpreter-mode-alist'.
1278 It does not check for the `mode:' local variable in the
1279 Local Variables section of the file; for that, use `hack-local-variables'.
1281 If `enable-local-variables' is nil, this function does not check for a
1284 If the optional argument JUST-FROM-FILE-NAME is non-nil,
1285 then we do not set anything but the major mode,
1286 and we don't even do that unless it would come from the file name."
1287 ;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*-
1288 (let (beg end done modes
)
1290 (goto-char (point-min))
1291 (skip-chars-forward " \t\n")
1292 (and enable-local-variables
1293 ;; Don't look for -*- if this file name matches any
1294 ;; of the regexps in inhibit-first-line-modes-regexps.
1295 (let ((temp inhibit-first-line-modes-regexps
)
1296 (name (if buffer-file-name
1297 (file-name-sans-versions buffer-file-name
)
1299 (while (let ((sufs inhibit-first-line-modes-suffixes
))
1300 (while (and sufs
(not (string-match (car sufs
) name
)))
1301 (setq sufs
(cdr sufs
)))
1303 (setq name
(substring name
0 (match-beginning 0))))
1305 (not (string-match (car temp
) name
)))
1306 (setq temp
(cdr temp
)))
1308 (search-forward "-*-" (save-excursion
1309 ;; If the file begins with "#!"
1310 ;; (exec interpreter magic), look
1311 ;; for mode frobs in the first two
1312 ;; lines. You cannot necessarily
1313 ;; put them in the first line of
1314 ;; such a file without screwing up
1315 ;; the interpreter invocation.
1316 (end-of-line (and (looking-at "^#!") 2))
1319 (skip-chars-forward " \t")
1321 (search-forward "-*-"
1322 (save-excursion (end-of-line) (point))
1326 (skip-chars-backward " \t")
1329 (if (save-excursion (search-forward ":" end t
))
1330 ;; Find all specifications for the `mode:' variable
1331 ;; and execute them left to right.
1332 (while (let ((case-fold-search t
))
1333 (or (and (looking-at "mode:")
1334 (goto-char (match-end 0)))
1335 (re-search-forward "[ \t;]mode:" end t
)))
1336 (skip-chars-forward " \t")
1338 (if (search-forward ";" end t
)
1341 (skip-chars-backward " \t")
1342 (setq modes
(cons (intern (concat (downcase (buffer-substring beg
(point))) "-mode"))
1344 ;; Simple -*-MODE-*- case.
1345 (setq modes
(cons (intern (concat (downcase (buffer-substring beg end
))
1348 ;; If we found modes to use, invoke them now,
1349 ;; outside the save-excursion.
1351 (unless just-from-file-name
1352 (mapcar 'funcall
(nreverse modes
)))
1354 ;; If we didn't find a mode from a -*- line, try using the file name.
1355 (if (and (not done
) buffer-file-name
)
1356 (let ((name buffer-file-name
)
1358 ;; Remove backup-suffixes from file name.
1359 (setq name
(file-name-sans-versions name
))
1361 (setq keep-going nil
)
1362 (let ((alist auto-mode-alist
)
1364 ;; Find first matching alist entry.
1365 (let ((case-fold-search
1366 (memq system-type
'(vax-vms windows-nt
))))
1367 (while (and (not mode
) alist
)
1368 (if (string-match (car (car alist
)) name
)
1369 (if (and (consp (cdr (car alist
)))
1370 (nth 2 (car alist
)))
1372 (setq mode
(car (cdr (car alist
)))
1373 name
(substring name
0 (match-beginning 0))
1375 (setq mode
(cdr (car alist
))
1377 (setq alist
(cdr alist
))))
1380 ;; If we can't deduce a mode from the file name,
1381 ;; look for an interpreter specified in the first line.
1382 ;; As a special case, allow for things like "#!/bin/env perl",
1383 ;; which finds the interpreter anywhere in $PATH.
1386 (goto-char (point-min))
1387 (if (looking-at "#![ \t]?\\([^ \t\n]*/bin/env[ \t]\\)?\\([^ \t\n]+\\)")
1388 (buffer-substring (match-beginning 2)
1392 ;; Map interpreter name to a mode.
1393 (setq elt
(assoc (file-name-nondirectory interpreter
)
1394 interpreter-mode-alist
))
1395 (unless just-from-file-name
1397 (funcall (cdr elt
))))))))))))
1399 (defun hack-local-variables-prop-line ()
1400 ;; Set local variables specified in the -*- line.
1401 ;; Ignore any specification for `mode:' and `coding:';
1402 ;; set-auto-mode should already have handled `mode:',
1403 ;; set-auto-coding should already have handled `coding:'.
1405 (goto-char (point-min))
1407 (end (save-excursion (end-of-line (and (looking-at "^#!") 2)) (point))))
1408 ;; Parse the -*- line into the `result' alist.
1409 (cond ((not (search-forward "-*-" end t
))
1410 ;; doesn't have one.
1412 ((looking-at "[ \t]*\\([^ \t\n\r:;]+\\)\\([ \t]*-\\*-\\)")
1413 ;; Simple form: "-*- MODENAME -*-". Already handled.
1416 ;; Hairy form: '-*-' [ <variable> ':' <value> ';' ]* '-*-'
1417 ;; (last ";" is optional).
1419 (if (search-forward "-*-" end t
)
1420 (setq end
(- (point) 3))
1421 (error "-*- not terminated before end of line")))
1422 (while (< (point) end
)
1423 (or (looking-at "[ \t]*\\([^ \t\n:]+\\)[ \t]*:[ \t]*")
1424 (error "malformed -*- line"))
1425 (goto-char (match-end 0))
1426 ;; There used to be a downcase here,
1427 ;; but the manual didn't say so,
1428 ;; and people want to set var names that aren't all lc.
1429 (let ((key (intern (buffer-substring
1432 (val (save-restriction
1433 (narrow-to-region (point) end
)
1434 (read (current-buffer)))))
1435 ;; It is traditional to ignore
1436 ;; case when checking for `mode' in set-auto-mode,
1437 ;; so we must do that here as well.
1438 ;; That is inconsistent, but we're stuck with it.
1439 ;; The same can be said for `coding' in set-auto-coding.
1440 (or (equal (downcase (symbol-name key
)) "mode")
1441 (equal (downcase (symbol-name key
)) "coding")
1442 (setq result
(cons (cons key val
) result
)))
1443 (skip-chars-forward " \t;")))
1444 (setq result
(nreverse result
))))
1447 (or (eq enable-local-variables t
)
1448 (and enable-local-variables
1449 (save-window-excursion
1451 (switch-to-buffer (current-buffer))
1453 ;; If we fail to switch in the selected window,
1454 ;; it is probably a minibuffer.
1455 ;; So try another window.
1457 (switch-to-buffer-other-window (current-buffer))
1459 (switch-to-buffer-other-frame (current-buffer))))))
1460 (y-or-n-p (format "Set local variables as specified in -*- line of %s? "
1461 (file-name-nondirectory buffer-file-name
)))))))
1462 (let ((enable-local-eval enable-local-eval
))
1464 (hack-one-local-variable (car (car result
)) (cdr (car result
)))
1465 (setq result
(cdr result
))))))))
1467 (defvar hack-local-variables-hook nil
1468 "Normal hook run after processing a file's local variables specs.
1469 Major modes can use this to examine user-specified local variables
1470 in order to initialize other data structure based on them.")
1472 (defun hack-local-variables (&optional mode-only
)
1473 "Parse and put into effect this buffer's local variables spec.
1474 If MODE-ONLY is non-nil, all we do is check whether the major mode
1475 is specified, returning t if it is specified."
1477 (hack-local-variables-prop-line))
1478 ;; Look for "Local variables:" line in last page.
1479 (let (mode-specified)
1481 (goto-char (point-max))
1482 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move
)
1483 (if (let ((case-fold-search t
))
1484 (and (search-forward "Local Variables:" nil t
)
1485 (or (eq enable-local-variables t
)
1487 (and enable-local-variables
1488 (save-window-excursion
1489 (switch-to-buffer (current-buffer))
1492 (set-window-start (selected-window) (point)))
1493 (y-or-n-p (format "Set local variables as specified at end of %s? "
1494 (if buffer-file-name
1495 (file-name-nondirectory
1498 (buffer-name))))))))))
1500 prefix prefixlen suffix beg
1502 (enable-local-eval enable-local-eval
))
1503 ;; The prefix is what comes before "local variables:" in its line.
1504 ;; The suffix is what comes after "local variables:" in its line.
1505 (skip-chars-forward " \t")
1507 (setq suffix
(buffer-substring (point)
1508 (progn (end-of-line) (point)))))
1509 (goto-char (match-beginning 0))
1512 (buffer-substring (point)
1513 (progn (beginning-of-line) (point)))))
1515 (if prefix
(setq prefixlen
(length prefix
)
1516 prefix
(regexp-quote prefix
)))
1517 (if suffix
(setq suffix
(concat (regexp-quote suffix
) "$")))
1519 ;; Look at next local variable spec.
1520 (if selective-display
(re-search-forward "[\n\C-m]")
1522 ;; Skip the prefix, if any.
1524 (if (looking-at prefix
)
1525 (forward-char prefixlen
)
1526 (error "Local variables entry is missing the prefix")))
1527 ;; Find the variable name; strip whitespace.
1528 (skip-chars-forward " \t")
1530 (skip-chars-forward "^:\n")
1531 (if (eolp) (error "Missing colon in local variables entry"))
1532 (skip-chars-backward " \t")
1533 (let* ((str (buffer-substring beg
(point)))
1536 ;; Setting variable named "end" means end of list.
1537 (if (string-equal (downcase str
) "end")
1539 ;; Otherwise read the variable value.
1540 (skip-chars-forward "^:")
1542 (setq val
(read (current-buffer)))
1543 (skip-chars-backward "\n")
1544 (skip-chars-forward " \t")
1545 (or (if suffix
(looking-at suffix
) (eolp))
1546 (error "Local variables entry is terminated incorrectly"))
1549 (setq mode-specified t
))
1550 ;; Set the variable. "Variables" mode and eval are funny.
1551 (hack-one-local-variable var val
))))))))
1553 (run-hooks 'hack-local-variables-hook
))
1556 (defvar ignored-local-variables
1557 '(enable-local-eval)
1558 "Variables to be ignored in a file's local variable spec.")
1560 ;; Get confirmation before setting these variables as locals in a file.
1561 (put 'debugger
'risky-local-variable t
)
1562 (put 'enable-local-eval
'risky-local-variable t
)
1563 (put 'ignored-local-variables
'risky-local-variable t
)
1564 (put 'eval
'risky-local-variable t
)
1565 (put 'file-name-handler-alist
'risky-local-variable t
)
1566 (put 'minor-mode-map-alist
'risky-local-variable t
)
1567 (put 'after-load-alist
'risky-local-variable t
)
1568 (put 'buffer-file-name
'risky-local-variable t
)
1569 (put 'buffer-auto-save-file-name
'risky-local-variable t
)
1570 (put 'buffer-file-truename
'risky-local-variable t
)
1571 (put 'exec-path
'risky-local-variable t
)
1572 (put 'load-path
'risky-local-variable t
)
1573 (put 'exec-directory
'risky-local-variable t
)
1574 (put 'process-environment
'risky-local-variable t
)
1575 (put 'dabbrev-case-fold-search
'risky-local-variable t
)
1576 (put 'dabbrev-case-replace
'risky-local-variable t
)
1577 ;; Don't wait for outline.el to be loaded, for the sake of outline-minor-mode.
1578 (put 'outline-level
'risky-local-variable t
)
1579 (put 'rmail-output-file-alist
'risky-local-variable t
)
1581 ;; This one is safe because the user gets to check it before it is used.
1582 (put 'compile-command
'safe-local-variable t
)
1584 (defun hack-one-local-variable-quotep (exp)
1585 (and (consp exp
) (eq (car exp
) 'quote
) (consp (cdr exp
))))
1587 ;; "Set" one variable in a local variables spec.
1588 ;; A few variable names are treated specially.
1589 (defun hack-one-local-variable (var val
)
1590 (cond ((eq var
'mode
)
1591 (funcall (intern (concat (downcase (symbol-name val
))
1594 ;; We have already handled coding: tag in set-auto-coding.
1596 ((memq var ignored-local-variables
)
1598 ;; "Setting" eval means either eval it or do nothing.
1599 ;; Likewise for setting hook variables.
1600 ((or (get var
'risky-local-variable
)
1602 (string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|-command$"
1604 (not (get var
'safe-local-variable
))))
1605 ;; Permit evalling a put of a harmless property.
1606 ;; if the args do nothing tricky.
1607 (if (or (and (eq var
'eval
)
1610 (hack-one-local-variable-quotep (nth 1 val
))
1611 (hack-one-local-variable-quotep (nth 2 val
))
1612 ;; Only allow safe values of lisp-indent-hook;
1614 (or (numberp (nth 3 val
))
1615 (equal (nth 3 val
) ''defun
))
1616 (memq (nth 1 (nth 2 val
))
1617 '(lisp-indent-hook)))
1618 ;; Permit eval if not root and user says ok.
1619 (and (not (zerop (user-uid)))
1620 (or (eq enable-local-eval t
)
1621 (and enable-local-eval
1622 (save-window-excursion
1623 (switch-to-buffer (current-buffer))
1626 (set-window-start (selected-window) (point)))
1627 (setq enable-local-eval
1628 (y-or-n-p (format "Process `eval' or hook local variables in file %s? "
1629 (file-name-nondirectory buffer-file-name
)))))))))
1631 (save-excursion (eval val
))
1632 (make-local-variable var
)
1634 (message "Ignoring `eval:' in file's local variables")))
1635 ;; Ordinary variable, really set it.
1636 (t (make-local-variable var
)
1640 (defcustom change-major-mode-with-file-name t
1641 "*Non-nil means \\[write-file] should set the major mode from the file name.
1642 However, the mode will not be changed if
1643 \(1) a local variables list or the `-*-' line specifies a major mode, or
1644 \(2) the current major mode is a \"special\" mode,
1645 \ not suitable for ordinary files, or
1646 \(3) the new file name does not particularly specify any mode."
1648 :group
'editing-basics
)
1650 (defun set-visited-file-name (filename &optional no-query along-with-file
)
1651 "Change name of file visited in current buffer to FILENAME.
1652 The next time the buffer is saved it will go in the newly specified file.
1653 nil or empty string as argument means make buffer not be visiting any file.
1654 Remember to delete the initial contents of the minibuffer
1655 if you wish to pass an empty string as the argument.
1657 The optional second argument NO-QUERY, if non-nil, inhibits asking for
1658 confirmation in the case where another buffer is already visiting FILENAME.
1660 The optional third argument ALONG-WITH-FILE, if non-nil, means that
1661 the old visited file has been renamed to the new name FILENAME."
1662 (interactive "FSet visited file name: ")
1663 (if (buffer-base-buffer)
1664 (error "An indirect buffer cannot visit a file"))
1668 (if (string-equal filename
"")
1670 (expand-file-name filename
))))
1673 (setq truename
(file-truename filename
))
1674 (if find-file-visit-truename
1675 (setq filename truename
))))
1676 (let ((buffer (and filename
(find-buffer-visiting filename
))))
1677 (and buffer
(not (eq buffer
(current-buffer)))
1679 (not (y-or-n-p (message "A buffer is visiting %s; proceed? "
1682 (or (equal filename buffer-file-name
)
1684 (and filename
(lock-buffer filename
))
1686 (setq buffer-file-name filename
)
1687 (if filename
; make buffer name reflect filename.
1688 (let ((new-name (file-name-nondirectory buffer-file-name
)))
1689 (if (string= new-name
"")
1690 (error "Empty file name"))
1691 (if (eq system-type
'vax-vms
)
1692 (setq new-name
(downcase new-name
)))
1693 (setq default-directory
(file-name-directory buffer-file-name
))
1694 (or (string= new-name
(buffer-name))
1695 (rename-buffer new-name t
))))
1696 (setq buffer-backed-up nil
)
1698 (clear-visited-file-modtime))
1699 ;; Abbreviate the file names of the buffer.
1702 (setq buffer-file-truename
(abbreviate-file-name truename
))
1703 (if find-file-visit-truename
1704 (setq buffer-file-name buffer-file-truename
))))
1705 (setq buffer-file-number
1707 (nthcdr 10 (file-attributes buffer-file-name
))
1709 ;; write-file-hooks is normally used for things like ftp-find-file
1710 ;; that visit things that are not local files as if they were files.
1711 ;; Changing to visit an ordinary local file instead should flush the hook.
1712 (kill-local-variable 'write-file-hooks
)
1713 (kill-local-variable 'local-write-file-hooks
)
1714 (kill-local-variable 'revert-buffer-function
)
1715 (kill-local-variable 'backup-inhibited
)
1716 ;; If buffer was read-only because of version control,
1717 ;; that reason is gone now, so make it writable.
1719 (setq buffer-read-only nil
))
1720 (kill-local-variable 'vc-mode
)
1721 ;; Turn off backup files for certain file names.
1722 ;; Since this is a permanent local, the major mode won't eliminate it.
1723 (and (not (funcall backup-enable-predicate buffer-file-name
))
1725 (make-local-variable 'backup-inhibited
)
1726 (setq backup-inhibited t
)))
1727 (let ((oauto buffer-auto-save-file-name
))
1728 ;; If auto-save was not already on, turn it on if appropriate.
1729 (if (not buffer-auto-save-file-name
)
1730 (and buffer-file-name auto-save-default
1732 ;; If auto save is on, start using a new name.
1733 ;; We deliberately don't rename or delete the old auto save
1734 ;; for the old visited file name. This is because perhaps
1735 ;; the user wants to save the new state and then compare with the
1736 ;; previous state from the auto save file.
1737 (setq buffer-auto-save-file-name
1738 (make-auto-save-file-name)))
1739 ;; Rename the old auto save file if any.
1740 (and oauto buffer-auto-save-file-name
1741 (file-exists-p oauto
)
1742 (rename-file oauto buffer-auto-save-file-name t
)))
1743 (and buffer-file-name
1744 (not along-with-file
)
1745 (set-buffer-modified-p t
))
1746 ;; Update the major mode, if the file name determines it.
1748 ;; Don't change the mode if it is special.
1749 (or (not change-major-mode-with-file-name
)
1750 (get major-mode
'mode-class
)
1751 ;; Don't change the mode if the local variable list specifies it.
1752 (hack-local-variables t
)
1756 (defun write-file (filename &optional confirm
)
1757 "Write current buffer into file FILENAME.
1758 Makes buffer visit that file, and marks it not modified.
1759 If the buffer is already visiting a file, you can specify
1760 a directory name as FILENAME, to write a file of the same
1761 old name in that directory.
1763 If optional second arg CONFIRM is non-nil,
1764 ask for confirmation for overwriting an existing file.
1765 Interactively, confirmation is required unless you supply a prefix argument."
1766 ;; (interactive "FWrite file: ")
1768 (list (if buffer-file-name
1769 (read-file-name "Write file: "
1771 (read-file-name "Write file: "
1772 (cdr (assq 'default-directory
1773 (buffer-local-variables)))
1774 nil nil
(buffer-name)))
1775 (not current-prefix-arg
)))
1776 (or (null filename
) (string-equal filename
"")
1778 ;; If arg is just a directory,
1779 ;; use same file name, but in that directory.
1780 (if (and (file-directory-p filename
) buffer-file-name
)
1781 (setq filename
(concat (file-name-as-directory filename
)
1782 (file-name-nondirectory buffer-file-name
))))
1784 (file-exists-p filename
)
1785 (or (y-or-n-p (format "File `%s' exists; overwrite? " filename
))
1786 (error "Canceled")))
1787 (set-visited-file-name filename
(not confirm
))))
1788 (set-buffer-modified-p t
)
1791 (defun backup-buffer ()
1792 "Make a backup of the disk file visited by the current buffer, if appropriate.
1793 This is normally done before saving the buffer the first time.
1794 If the value is non-nil, it is the result of `file-modes' on the original
1795 file; this means that the caller, after saving the buffer, should change
1796 the modes of the new file to agree with the old modes.
1798 A backup may be done by renaming or by copying; see documentation of
1799 variable `make-backup-files'. If it's done by renaming, then the file is
1800 no longer accessible under its old name."
1801 (if (and make-backup-files
(not backup-inhibited
)
1802 (not buffer-backed-up
)
1803 (file-exists-p buffer-file-name
)
1804 (memq (aref (elt (file-attributes buffer-file-name
) 8) 0)
1806 (let ((real-file-name buffer-file-name
)
1807 backup-info backupname targets setmodes
)
1808 ;; If specified name is a symbolic link, chase it to the target.
1809 ;; Thus we make the backups in the directory where the real file is.
1810 (setq real-file-name
(file-chase-links real-file-name
))
1811 (setq backup-info
(find-backup-file-name real-file-name
)
1812 backupname
(car backup-info
)
1813 targets
(cdr backup-info
))
1814 ;;; (if (file-directory-p buffer-file-name)
1815 ;;; (error "Cannot save buffer in directory %s" buffer-file-name))
1818 (let ((delete-old-versions
1819 ;; If have old versions to maybe delete,
1820 ;; ask the user to confirm now, before doing anything.
1821 ;; But don't actually delete til later.
1823 (or (eq delete-old-versions t
) (eq delete-old-versions nil
))
1824 (or delete-old-versions
1825 (y-or-n-p (format "Delete excess backup versions of %s? "
1826 real-file-name
))))))
1827 ;; Actually write the back up file.
1829 (if (or file-precious-flag
1830 ; (file-symlink-p buffer-file-name)
1832 (and backup-by-copying-when-linked
1833 (> (file-nlinks real-file-name
) 1))
1834 (and backup-by-copying-when-mismatch
1835 (let ((attr (file-attributes real-file-name
)))
1837 (not (file-ownership-preserved-p real-file-name
))))))
1839 (copy-file real-file-name backupname t t
)
1841 ;; If copying fails because file BACKUPNAME
1842 ;; is not writable, delete that file and try again.
1843 (if (and (file-exists-p backupname
)
1844 (not (file-writable-p backupname
)))
1845 (delete-file backupname
))
1846 (copy-file real-file-name backupname t t
)))
1847 ;; rename-file should delete old backup.
1848 (rename-file real-file-name backupname t
)
1849 (setq setmodes
(file-modes backupname
)))
1851 ;; If trouble writing the backup, write it in ~.
1852 (setq backupname
(expand-file-name
1853 (convert-standard-filename
1855 (message "Cannot write backup file; backing up in %s"
1856 (file-name-nondirectory backupname
))
1859 (copy-file real-file-name backupname t t
)
1861 ;; If copying fails because file BACKUPNAME
1862 ;; is not writable, delete that file and try again.
1863 (if (and (file-exists-p backupname
)
1864 (not (file-writable-p backupname
)))
1865 (delete-file backupname
))
1866 (copy-file real-file-name backupname t t
)))))
1867 (setq buffer-backed-up t
)
1868 ;; Now delete the old versions, if desired.
1869 (if delete-old-versions
1872 (delete-file (car targets
))
1874 (setq targets
(cdr targets
))))
1876 (file-error nil
))))))
1878 (defun file-name-sans-versions (name &optional keep-backup-version
)
1879 "Return FILENAME sans backup versions or strings.
1880 This is a separate procedure so your site-init or startup file can
1882 If the optional argument KEEP-BACKUP-VERSION is non-nil,
1883 we do not remove backup version numbers, only true file version numbers."
1884 (let ((handler (find-file-name-handler name
'file-name-sans-versions
)))
1886 (funcall handler
'file-name-sans-versions name keep-backup-version
)
1888 (if (eq system-type
'vax-vms
)
1889 ;; VMS version number is (a) semicolon, optional
1890 ;; sign, zero or more digits or (b) period, option
1891 ;; sign, zero or more digits, provided this is the
1892 ;; second period encountered outside of the
1893 ;; device/directory part of the file name.
1894 (or (string-match ";[-+]?[0-9]*\\'" name
)
1895 (if (string-match "\\.[^]>:]*\\(\\.[-+]?[0-9]*\\)\\'"
1897 (match-beginning 1))
1899 (if keep-backup-version
1901 (or (string-match "\\.~[0-9.]+~\\'" name
)
1902 (string-match "~\\'" name
)
1903 (length name
))))))))
1905 (defun file-ownership-preserved-p (file)
1906 "Returns t if deleting FILE and rewriting it would preserve the owner."
1907 (let ((handler (find-file-name-handler file
'file-ownership-preserved-p
)))
1909 (funcall handler
'file-ownership-preserved-p file
)
1910 (let ((attributes (file-attributes file
)))
1911 ;; Return t if the file doesn't exist, since it's true that no
1912 ;; information would be lost by an (attempted) delete and create.
1913 (or (null attributes
)
1914 (= (nth 2 attributes
) (user-uid)))))))
1916 (defun file-name-sans-extension (filename)
1917 "Return FILENAME sans final \"extension\".
1918 The extension, in a file name, is the part that follows the last `.'."
1920 (let ((file (file-name-sans-versions (file-name-nondirectory filename
)))
1922 (if (string-match "\\.[^.]*\\'" file
)
1923 (if (setq directory
(file-name-directory filename
))
1924 (expand-file-name (substring file
0 (match-beginning 0))
1926 (substring file
0 (match-beginning 0)))
1929 (defun file-name-extension (filename &optional period
)
1930 "Return FILENAME's final \"extension\".
1931 The extension, in a file name, is the part that follows the last `.'.
1932 Return nil for extensionless file names such as `foo'.
1933 Return the empty string for file names such as `foo.'.
1935 If PERIOD is non-nil, then the returned value includes the period
1936 that delimits the extension, and if FILENAME has no extension,
1939 (let ((file (file-name-sans-versions (file-name-nondirectory filename
))))
1940 (if (string-match "\\.[^.]*\\'" file
)
1941 (substring file
(+ (match-beginning 0) (if period
0 1)))
1945 (defun make-backup-file-name (file)
1946 "Create the non-numeric backup file name for FILE.
1947 This is a separate function so you can redefine it for customization."
1948 (if (and (eq system-type
'ms-dos
)
1949 (not (msdos-long-file-names)))
1950 (let ((fn (file-name-nondirectory file
)))
1951 (concat (file-name-directory file
)
1953 (and (string-match "\\`[^.]+\\'" fn
)
1954 (concat (match-string 0 fn
) ".~"))
1955 (and (string-match "\\`[^.]+\\.\\(..?\\)?" fn
)
1956 (concat (match-string 0 fn
) "~")))))
1959 (defun backup-file-name-p (file)
1960 "Return non-nil if FILE is a backup file name (numeric or not).
1961 This is a separate function so you can redefine it for customization.
1962 You may need to redefine `file-name-sans-versions' as well."
1963 (string-match "~\\'" file
))
1965 (defvar backup-extract-version-start
)
1967 ;; This is used in various files.
1968 ;; The usage of bv-length is not very clean,
1969 ;; but I can't see a good alternative,
1970 ;; so as of now I am leaving it alone.
1971 (defun backup-extract-version (fn)
1972 "Given the name of a numeric backup file, return the backup number.
1973 Uses the free variable `backup-extract-version-start', whose value should be
1974 the index in the name where the version number begins."
1975 (if (and (string-match "[0-9]+~$" fn backup-extract-version-start
)
1976 (= (match-beginning 0) backup-extract-version-start
))
1977 (string-to-int (substring fn backup-extract-version-start -
1))
1980 ;; I believe there is no need to alter this behavior for VMS;
1981 ;; since backup files are not made on VMS, it should not get called.
1982 (defun find-backup-file-name (fn)
1983 "Find a file name for a backup file, and suggestions for deletions.
1984 Value is a list whose car is the name for the backup file
1985 and whose cdr is a list of old versions to consider deleting now.
1986 If the value is nil, don't make a backup."
1987 (let ((handler (find-file-name-handler fn
'find-backup-file-name
)))
1988 ;; Run a handler for this function so that ange-ftp can refuse to do it.
1990 (funcall handler
'find-backup-file-name fn
)
1991 (if (eq version-control
'never
)
1992 (list (make-backup-file-name fn
))
1993 (let* ((base-versions (concat (file-name-nondirectory fn
) ".~"))
1994 (backup-extract-version-start (length base-versions
))
1998 (deserve-versions-p nil
)
1999 (number-to-delete 0))
2001 (setq possibilities
(file-name-all-completions
2003 (file-name-directory fn
))
2004 versions
(sort (mapcar
2005 (function backup-extract-version
)
2008 high-water-mark
(apply 'max
0 versions
)
2009 deserve-versions-p
(or version-control
2010 (> high-water-mark
0))
2011 number-to-delete
(- (length versions
)
2012 kept-old-versions kept-new-versions -
1))
2014 (setq possibilities nil
)))
2015 (if (not deserve-versions-p
)
2016 (list (make-backup-file-name fn
))
2017 (cons (concat fn
".~" (int-to-string (1+ high-water-mark
)) "~")
2018 (if (and (> number-to-delete
0)
2019 ;; Delete nothing if there is overflow
2020 ;; in the number of versions to keep.
2021 (>= (+ kept-new-versions kept-old-versions -
1) 0))
2022 (mapcar (function (lambda (n)
2023 (concat fn
".~" (int-to-string n
) "~")))
2024 (let ((v (nthcdr kept-old-versions versions
)))
2025 (rplacd (nthcdr (1- number-to-delete
) v
) ())
2028 (defun file-nlinks (filename)
2029 "Return number of names file FILENAME has."
2030 (car (cdr (file-attributes filename
))))
2032 (defun file-relative-name (filename &optional directory
)
2033 "Convert FILENAME to be relative to DIRECTORY (default: default-directory).
2034 This function returns a relative file name which is equivalent to FILENAME
2035 when used with that default directory as the default.
2036 If this is impossible (which can happen on MSDOS and Windows
2037 when the file name and directory use different drive names)
2038 then it returns FILENAME."
2040 (let ((fname (expand-file-name filename
)))
2041 (setq directory
(file-name-as-directory
2042 (expand-file-name (or directory default-directory
))))
2043 ;; On Microsoft OSes, if FILENAME and DIRECTORY have different
2044 ;; drive names, they can't be relative, so return the absolute name.
2045 (if (and (or (eq system-type
'ms-dos
)
2046 (eq system-type
'windows-nt
))
2047 (not (string-equal (substring fname
0 2)
2048 (substring directory
0 2))))
2050 (let ((ancestor ".")
2051 (fname-dir (file-name-as-directory fname
)))
2052 (while (and (not (string-match (concat "^" (regexp-quote directory
)) fname-dir
))
2053 (not (string-match (concat "^" (regexp-quote directory
)) fname
)))
2054 (setq directory
(file-name-directory (substring directory
0 -
1))
2055 ancestor
(if (equal ancestor
".")
2057 (concat "../" ancestor
))))
2058 ;; Now ancestor is empty, or .., or ../.., etc.
2059 (if (string-match (concat "^" (regexp-quote directory
)) fname
)
2060 ;; We matched within FNAME's directory part.
2061 ;; Add the rest of FNAME onto ANCESTOR.
2062 (let ((rest (substring fname
(match-end 0))))
2063 (if (and (equal ancestor
".")
2064 (not (equal rest
"")))
2065 ;; But don't bother with ANCESTOR if it would give us `./'.
2067 (concat (file-name-as-directory ancestor
) rest
)))
2068 ;; We matched FNAME's directory equivalent.
2071 (defun save-buffer (&optional args
)
2072 "Save current buffer in visited file if modified. Versions described below.
2073 By default, makes the previous version into a backup file
2074 if previously requested or if this is the first save.
2075 With 1 \\[universal-argument], marks this version
2076 to become a backup when the next save is done.
2077 With 2 \\[universal-argument]'s,
2078 unconditionally makes the previous version into a backup file.
2079 With 3 \\[universal-argument]'s, marks this version
2080 to become a backup when the next save is done,
2081 and unconditionally makes the previous version into a backup file.
2083 With argument of 0, never makes the previous version into a backup file.
2085 If a file's name is FOO, the names of its numbered backup versions are
2086 FOO.~i~ for various integers i. A non-numbered backup file is called FOO~.
2087 Numeric backups (rather than FOO~) will be made if value of
2088 `version-control' is not the atom `never' and either there are already
2089 numeric versions of the file being backed up, or `version-control' is
2091 We don't want excessive versions piling up, so there are variables
2092 `kept-old-versions', which tells Emacs how many oldest versions to keep,
2093 and `kept-new-versions', which tells how many newest versions to keep.
2094 Defaults are 2 old versions and 2 new.
2095 `dired-kept-versions' controls dired's clean-directory (.) command.
2096 If `delete-old-versions' is nil, system will query user
2097 before trimming versions. Otherwise it does it silently."
2099 (let ((modp (buffer-modified-p))
2100 (large (> (buffer-size) 50000))
2101 (make-backup-files (or (and make-backup-files
(not (eq args
0)))
2102 (memq args
'(16 64)))))
2103 (and modp
(memq args
'(16 64)) (setq buffer-backed-up nil
))
2104 (if (and modp large
) (message "Saving file %s..." (buffer-file-name)))
2106 (and modp
(memq args
'(4 64)) (setq buffer-backed-up nil
))))
2108 (defun delete-auto-save-file-if-necessary (&optional force
)
2109 "Delete auto-save file for current buffer if `delete-auto-save-files' is t.
2110 Normally delete only if the file was written by this Emacs since
2111 the last real save, but optional arg FORCE non-nil means delete anyway."
2112 (and buffer-auto-save-file-name delete-auto-save-files
2113 (not (string= buffer-file-name buffer-auto-save-file-name
))
2114 (or force
(recent-auto-save-p))
2117 (delete-file buffer-auto-save-file-name
)
2119 (set-buffer-auto-saved))))
2121 (defvar after-save-hook nil
2122 "Normal hook that is run after a buffer is saved to its file.")
2124 (defun basic-save-buffer ()
2125 "Save the current buffer in its visited file, if it has been modified.
2126 After saving the buffer, run `after-save-hook'."
2129 ;; In an indirect buffer, save its base buffer instead.
2130 (if (buffer-base-buffer)
2131 (set-buffer (buffer-base-buffer)))
2132 (if (buffer-modified-p)
2133 (let ((recent-save (recent-auto-save-p))
2134 setmodes tempsetmodes
)
2135 ;; On VMS, rename file and buffer to get rid of version number.
2136 (if (and (eq system-type
'vax-vms
)
2137 (not (string= buffer-file-name
2138 (file-name-sans-versions buffer-file-name
))))
2139 (let (buffer-new-name)
2140 ;; Strip VMS version number before save.
2141 (setq buffer-file-name
2142 (file-name-sans-versions buffer-file-name
))
2143 ;; Construct a (unique) buffer name to correspond.
2144 (let ((buf (create-file-buffer (downcase buffer-file-name
))))
2145 (setq buffer-new-name
(buffer-name buf
))
2147 (rename-buffer buffer-new-name
)))
2148 ;; If buffer has no file name, ask user for one.
2149 (or buffer-file-name
2152 (read-file-name "File to save in: ") nil
)))
2153 (and (file-exists-p filename
)
2154 (or (y-or-n-p (format "File `%s' exists; overwrite? "
2156 (error "Canceled")))
2157 (set-visited-file-name filename
)))
2158 (or (verify-visited-file-modtime (current-buffer))
2159 (not (file-exists-p buffer-file-name
))
2161 (format "%s has changed since visited or saved. Save anyway? "
2162 (file-name-nondirectory buffer-file-name
)))
2163 (error "Save not confirmed"))
2166 (and (> (point-max) 1)
2167 (/= (char-after (1- (point-max))) ?
\n)
2168 (not (and (eq selective-display t
)
2169 (= (char-after (1- (point-max))) ?
\r)))
2170 (or (eq require-final-newline t
)
2171 (and require-final-newline
2173 (format "Buffer %s does not end in newline. Add one? "
2176 (goto-char (point-max))
2178 (or (run-hook-with-args-until-success 'write-contents-hooks
)
2179 (run-hook-with-args-until-success 'local-write-file-hooks
)
2180 (run-hook-with-args-until-success 'write-file-hooks
)
2181 ;; If a hook returned t, file is already "written".
2182 ;; Otherwise, write it the usual way now.
2183 (setq setmodes
(basic-save-buffer-1)))
2184 (setq buffer-file-number
2185 (nthcdr 10 (file-attributes buffer-file-name
)))
2188 (set-file-modes buffer-file-name setmodes
)
2190 ;; If the auto-save file was recent before this command,
2192 (delete-auto-save-file-if-necessary recent-save
)
2193 ;; Support VC `implicit' locking.
2195 (run-hooks 'after-save-hook
))
2196 (message "(No changes need to be saved)"))))
2198 ;; This does the "real job" of writing a buffer into its visited file
2199 ;; and making a backup file. This is what is normally done
2200 ;; but inhibited if one of write-file-hooks returns non-nil.
2201 ;; It returns a value to store in setmodes.
2202 (defun basic-save-buffer-1 ()
2203 (let (tempsetmodes setmodes
)
2204 (if (not (file-writable-p buffer-file-name
))
2205 (let ((dir (file-name-directory buffer-file-name
)))
2206 (if (not (file-directory-p dir
))
2207 (if (file-exists-p dir
)
2208 (error "%s is not a directory" dir
)
2209 (error "%s: no such directory" buffer-file-name
))
2210 (if (not (file-exists-p buffer-file-name
))
2211 (error "Directory %s write-protected" dir
)
2213 (format "File %s is write-protected; try to save anyway? "
2214 (file-name-nondirectory
2216 (setq tempsetmodes t
)
2217 (error "Attempt to save to a file which you aren't allowed to write"))))))
2218 (or buffer-backed-up
2219 (setq setmodes
(backup-buffer)))
2220 (let ((dir (file-name-directory buffer-file-name
)))
2221 (if (and file-precious-flag
2222 (file-writable-p dir
))
2223 ;; If file is precious, write temp name, then rename it.
2224 ;; This requires write access to the containing dir,
2225 ;; which is why we don't try it if we don't have that access.
2226 (let ((realname buffer-file-name
)
2227 tempname temp nogood i succeed
2228 (old-modtime (visited-file-modtime)))
2231 ;; Find the temporary name to write under.
2233 (setq tempname
(format
2234 (if (and (eq system-type
'ms-dos
)
2235 (not (msdos-long-file-names)))
2236 "%s#%d.tm#" ; MSDOS limits files to 8+3
2239 (setq nogood
(file-exists-p tempname
))
2242 (progn (clear-visited-file-modtime)
2243 (write-region (point-min) (point-max)
2244 tempname nil realname
2245 buffer-file-truename
)
2247 ;; If writing the temp file fails,
2248 ;; delete the temp file.
2251 (delete-file tempname
)
2252 (set-visited-file-modtime old-modtime
))))
2253 ;; Since we have created an entirely new file
2254 ;; and renamed it, make sure it gets the
2255 ;; right permission bits set.
2256 (setq setmodes
(file-modes buffer-file-name
))
2257 ;; We succeeded in writing the temp file,
2259 (rename-file tempname buffer-file-name t
))
2260 ;; If file not writable, see if we can make it writable
2261 ;; temporarily while we write it.
2262 ;; But no need to do so if we have just backed it up
2263 ;; (setmodes is set) because that says we're superseding.
2264 (cond ((and tempsetmodes
(not setmodes
))
2265 ;; Change the mode back, after writing.
2266 (setq setmodes
(file-modes buffer-file-name
))
2267 (set-file-modes buffer-file-name
511)))
2268 (write-region (point-min) (point-max)
2269 buffer-file-name nil t buffer-file-truename
)))
2272 (defun save-some-buffers (&optional arg exiting
)
2273 "Save some modified file-visiting buffers. Asks user about each one.
2274 Optional argument (the prefix) non-nil means save all with no questions.
2275 Optional second argument EXITING means ask about certain non-file buffers
2276 as well as about file buffers."
2278 (save-window-excursion
2279 (let* ((queried nil
)
2284 (and (buffer-modified-p buffer
)
2285 (not (buffer-base-buffer buffer
))
2287 (buffer-file-name buffer
)
2291 (and buffer-offer-save
(> (buffer-size) 0)))))
2295 (if (buffer-file-name buffer
)
2296 (format "Save file %s? "
2297 (buffer-file-name buffer
))
2298 (format "Save buffer %s? "
2299 (buffer-name buffer
)))))))
2305 '("buffer" "buffers" "save")
2306 (list (list ?\C-r
(lambda (buf)
2310 (exit-recursive-edit))))
2312 ;; Return nil to ask about BUF again.
2314 "display the current buffer"))))
2316 (and save-abbrevs abbrevs-changed
2319 (y-or-n-p (format "Save abbrevs in %s? "
2321 (write-abbrev-file nil
))
2322 ;; Don't keep bothering user if he says no.
2323 (setq abbrevs-changed nil
)
2325 (or queried
(> files-done
0) abbrevs-done
2326 (message "(No files need saving)")))))
2328 (defun not-modified (&optional arg
)
2329 "Mark current buffer as unmodified, not needing to be saved.
2330 With prefix arg, mark buffer as modified, so \\[save-buffer] will save.
2332 It is not a good idea to use this function in Lisp programs, because it
2333 prints a message in the minibuffer. Instead, use `set-buffer-modified-p'."
2335 (message (if arg
"Modification-flag set"
2336 "Modification-flag cleared"))
2337 (set-buffer-modified-p arg
))
2339 (defun toggle-read-only (&optional arg
)
2340 "Change whether this buffer is visiting its file read-only.
2341 With arg, set read-only iff arg is positive.
2342 If visiting file read-only and `view-read-only' is non-nil, enter view mode."
2345 ((and arg
(if (> (prefix-numeric-value arg
) 0) buffer-read-only
2346 (not buffer-read-only
))) ; If buffer-read-only is set correctly,
2349 ((and buffer-read-only view-mode
)
2350 (View-exit-and-edit)) ; Must leave view mode.
2351 ((and (not buffer-read-only
) view-read-only
2352 (not (eq (get major-mode
'mode-class
) 'special
)))
2354 (t (setq buffer-read-only
(not buffer-read-only
))
2355 (force-mode-line-update))))
2357 (defun insert-file (filename)
2358 "Insert contents of file FILENAME into buffer after point.
2359 Set mark after the inserted text.
2361 This function is meant for the user to run interactively.
2362 Don't call it from programs! Use `insert-file-contents' instead.
2363 \(Its calling sequence is different; see its documentation)."
2364 (interactive "*fInsert file: ")
2365 (if (file-directory-p filename
)
2366 (signal 'file-error
(list "Opening input file" "file is a directory"
2368 (let ((tem (insert-file-contents filename
)))
2369 (push-mark (+ (point) (car (cdr tem
))))))
2371 (defun append-to-file (start end filename
)
2372 "Append the contents of the region to the end of file FILENAME.
2373 When called from a function, expects three arguments,
2374 START, END and FILENAME. START and END are buffer positions
2375 saying what text to write."
2376 (interactive "r\nFAppend to file: ")
2377 (write-region start end filename t
))
2379 (defun file-newest-backup (filename)
2380 "Return most recent backup file for FILENAME or nil if no backups exist."
2381 (let* ((filename (expand-file-name filename
))
2382 (file (file-name-nondirectory filename
))
2383 (dir (file-name-directory filename
))
2384 (comp (file-name-all-completions file dir
))
2388 (setq tem
(car comp
)
2390 (cond ((and (backup-file-name-p tem
)
2391 (string= (file-name-sans-versions tem
) file
))
2392 (setq tem
(concat dir tem
))
2393 (if (or (null newest
)
2394 (file-newer-than-file-p tem newest
))
2395 (setq newest tem
)))))
2398 (defun rename-uniquely ()
2399 "Rename current buffer to a similar name not already taken.
2400 This function is useful for creating multiple shell process buffers
2401 or multiple mail buffers, etc."
2404 (let* ((base-name (if (and (string-match "<[0-9]+>\\'" (buffer-name))
2405 (not (and buffer-file-name
2406 (string= (buffer-name)
2407 (file-name-nondirectory
2408 buffer-file-name
)))))
2409 ;; If the existing buffer name has a <NNN>,
2410 ;; which isn't part of the file name (if any),
2411 ;; then get rid of that.
2412 (substring (buffer-name) 0 (match-beginning 0))
2414 (new-buf (generate-new-buffer base-name
))
2415 (name (buffer-name new-buf
)))
2416 (kill-buffer new-buf
)
2417 (rename-buffer name
)
2418 (force-mode-line-update))))
2420 (defun make-directory (dir &optional parents
)
2421 "Create the directory DIR and any nonexistent parent dirs.
2422 Interactively, the default choice of directory to create
2423 is the current default directory for file names.
2424 That is useful when you have visited a file in a nonexistent directory.
2426 Noninteractively, the second (optional) argument PARENTS says whether
2427 to create parent directories if they don't exist."
2429 (list (read-file-name "Make directory: " default-directory default-directory
2432 (let ((handler (find-file-name-handler dir
'make-directory
)))
2434 (funcall handler
'make-directory dir parents
)
2436 (make-directory-internal dir
)
2437 (let ((dir (directory-file-name (expand-file-name dir
)))
2439 (while (not (file-exists-p dir
))
2440 (setq create-list
(cons dir create-list
)
2441 dir
(directory-file-name (file-name-directory dir
))))
2443 (make-directory-internal (car create-list
))
2444 (setq create-list
(cdr create-list
))))))))
2446 (put 'revert-buffer-function
'permanent-local t
)
2447 (defvar revert-buffer-function nil
2448 "Function to use to revert this buffer, or nil to do the default.
2449 The function receives two arguments IGNORE-AUTO and NOCONFIRM,
2450 which are the arguments that `revert-buffer' received.")
2452 (put 'revert-buffer-insert-file-contents-function
'permanent-local t
)
2453 (defvar revert-buffer-insert-file-contents-function nil
2454 "Function to use to insert contents when reverting this buffer.
2455 Gets two args, first the nominal file name to use,
2456 and second, t if reading the auto-save file.")
2458 (defvar before-revert-hook nil
2459 "Normal hook for `revert-buffer' to run before reverting.
2460 If `revert-buffer-function' is used to override the normal revert
2461 mechanism, this hook is not used.")
2463 (defvar after-revert-hook nil
2464 "Normal hook for `revert-buffer' to run after reverting.
2465 Note that the hook value that it runs is the value that was in effect
2466 before reverting; that makes a difference if you have buffer-local
2469 If `revert-buffer-function' is used to override the normal revert
2470 mechanism, this hook is not used.")
2472 (defun revert-buffer (&optional ignore-auto noconfirm preserve-modes
)
2473 "Replace current buffer text with the text of the visited file on disk.
2474 This undoes all changes since the file was visited or saved.
2475 With a prefix argument, offer to revert from latest auto-save file, if
2476 that is more recent than the visited file.
2478 This command also works for special buffers that contain text which
2479 doesn't come from a file, but reflects some other data base instead:
2480 for example, Dired buffers and buffer-list buffers. In these cases,
2481 it reconstructs the buffer contents from the appropriate data base.
2483 When called from Lisp, the first argument is IGNORE-AUTO; only offer
2484 to revert from the auto-save file when this is nil. Note that the
2485 sense of this argument is the reverse of the prefix argument, for the
2486 sake of backward compatibility. IGNORE-AUTO is optional, defaulting
2489 Optional second argument NOCONFIRM means don't ask for confirmation at
2492 Optional third argument PRESERVE-MODES non-nil means don't alter
2493 the files modes. Normally we reinitialize them using `normal-mode'.
2495 If the value of `revert-buffer-function' is non-nil, it is called to
2496 do all the work for this command. Otherwise, the hooks
2497 `before-revert-hook' and `after-revert-hook' are run at the beginning
2498 and the end, and if `revert-buffer-insert-file-contents-function' is
2499 non-nil, it is called instead of rereading visited file contents."
2501 ;; I admit it's odd to reverse the sense of the prefix argument, but
2502 ;; there is a lot of code out there which assumes that the first
2503 ;; argument should be t to avoid consulting the auto-save file, and
2504 ;; there's no straightforward way to encourage authors to notice a
2505 ;; reversal of the argument sense. So I'm just changing the user
2506 ;; interface, but leaving the programmatic interface the same.
2507 (interactive (list (not current-prefix-arg
)))
2508 (if revert-buffer-function
2509 (funcall revert-buffer-function ignore-auto noconfirm
)
2510 (let* ((opoint (point))
2511 (auto-save-p (and (not ignore-auto
)
2512 (recent-auto-save-p)
2513 buffer-auto-save-file-name
2514 (file-readable-p buffer-auto-save-file-name
)
2516 "Buffer has been auto-saved recently. Revert from auto-save file? ")))
2517 (file-name (if auto-save-p
2518 buffer-auto-save-file-name
2520 (cond ((null file-name
)
2521 (error "Buffer does not seem to be associated with any file"))
2523 (and (not (buffer-modified-p))
2524 (let ((tail revert-without-query
)
2527 (if (string-match (car tail
) file-name
)
2529 (setq tail
(cdr tail
)))
2531 (yes-or-no-p (format "Revert buffer from file %s? "
2533 (run-hooks 'before-revert-hook
)
2534 ;; If file was backed up but has changed since,
2535 ;; we shd make another backup.
2536 (and (not auto-save-p
)
2537 (not (verify-visited-file-modtime (current-buffer)))
2538 (setq buffer-backed-up nil
))
2539 ;; Get rid of all undo records for this buffer.
2540 (or (eq buffer-undo-list t
)
2541 (setq buffer-undo-list nil
))
2542 ;; Effectively copy the after-revert-hook status,
2543 ;; since after-find-file will clobber it.
2544 (let ((global-hook (default-value 'after-revert-hook
))
2545 (local-hook-p (local-variable-p 'after-revert-hook
))
2546 (local-hook (and (local-variable-p 'after-revert-hook
)
2547 after-revert-hook
)))
2548 (let (buffer-read-only
2549 ;; Don't make undo records for the reversion.
2550 (buffer-undo-list t
))
2551 (if revert-buffer-insert-file-contents-function
2552 (funcall revert-buffer-insert-file-contents-function
2553 file-name auto-save-p
)
2554 (if (not (file-exists-p file-name
))
2555 (error "File %s no longer exists!" file-name
))
2556 ;; Bind buffer-file-name to nil
2557 ;; so that we don't try to lock the file.
2558 (let ((buffer-file-name nil
))
2562 (let ((coding-system-for-read
2563 ;; Auto-saved file shoule be read without
2564 ;; any code conversion.
2565 (if auto-save-p
'no-conversion
2566 coding-system-for-read
)))
2567 (insert-file-contents file-name
(not auto-save-p
)
2569 (goto-char (min opoint
(point-max)))
2570 ;; Recompute the truename in case changes in symlinks
2571 ;; have changed the truename.
2572 (setq buffer-file-truename
2573 (abbreviate-file-name (file-truename buffer-file-name
)))
2574 (after-find-file nil nil t t preserve-modes
)
2575 ;; Run after-revert-hook as it was before we reverted.
2576 (setq-default revert-buffer-internal-hook global-hook
)
2579 (make-local-variable 'revert-buffer-internal-hook
)
2580 (setq revert-buffer-internal-hook local-hook
))
2581 (kill-local-variable 'revert-buffer-internal-hook
))
2582 (run-hooks 'revert-buffer-internal-hook
))
2585 (defun recover-file (file)
2586 "Visit file FILE, but get contents from its last auto-save file."
2587 ;; Actually putting the file name in the minibuffer should be used
2589 ;; Not just because users often use the default.
2590 (interactive "FRecover file: ")
2591 (setq file
(expand-file-name file
))
2592 (if (auto-save-file-name-p (file-name-nondirectory file
))
2593 (error "%s is an auto-save file" file
))
2594 (let ((file-name (let ((buffer-file-name file
))
2595 (make-auto-save-file-name))))
2596 (cond ((if (file-exists-p file
)
2597 (not (file-newer-than-file-p file-name file
))
2598 (not (file-exists-p file-name
)))
2599 (error "Auto-save file %s not current" file-name
))
2600 ((save-window-excursion
2601 (if (not (memq system-type
'(vax-vms windows-nt
)))
2602 (with-output-to-temp-buffer "*Directory*"
2603 (buffer-disable-undo standard-output
)
2604 (call-process "ls" nil standard-output nil
2605 (if (file-symlink-p file
) "-lL" "-l")
2607 (yes-or-no-p (format "Recover auto save file %s? " file-name
)))
2608 (switch-to-buffer (find-file-noselect file t
))
2609 (let ((buffer-read-only nil
)
2610 ;; Auto-saved file shoule be read without any code conversion.
2611 (coding-system-for-read 'no-conversion
))
2613 (insert-file-contents file-name nil
))
2614 (after-find-file nil nil t
))
2615 (t (error "Recover-file cancelled")))))
2617 (defun recover-session ()
2618 "Recover auto save files from a previous Emacs session.
2619 This command first displays a Dired buffer showing you the
2620 previous sessions that you could recover from.
2621 To choose one, move point to the proper line and then type C-c C-c.
2622 Then you'll be asked about a number of files to recover."
2624 (if (null auto-save-list-file-prefix
)
2625 (error "You set `auto-save-list-file-prefix' to disable making session files"))
2626 (let ((ls-lisp-support-shell-wildcards t
))
2627 (dired (concat auto-save-list-file-prefix
"*")
2628 (concat dired-listing-switches
"t")))
2629 (goto-char (point-min))
2630 (or (looking-at "Move to the session you want to recover,")
2631 (let ((inhibit-read-only t
))
2632 (insert "Move to the session you want to recover,\n"
2633 "then type C-c C-c to select it.\n\n"
2634 "You can also delete some of these files;\n"
2635 "type d on a line to mark that file for deletion.\n\n")))
2636 (use-local-map (nconc (make-sparse-keymap) (current-local-map)))
2637 (define-key (current-local-map) "\C-c\C-c" 'recover-session-finish
))
2639 (defun recover-session-finish ()
2640 "Choose one saved session to recover auto-save files from.
2641 This command is used in the special Dired buffer created by
2642 \\[recover-session]."
2644 ;; Get the name of the session file to recover from.
2645 (let ((file (dired-get-filename))
2647 (buffer (get-buffer-create " *recover*")))
2648 (dired-do-flagged-delete t
)
2651 ;; Read in the auto-save-list file.
2654 (insert-file-contents file
)
2655 ;; Loop thru the text of that file
2656 ;; and get out the names of the files to recover.
2658 (let (thisfile autofile
)
2660 ;; This is a pair of lines for a non-file-visiting buffer.
2661 ;; Get the auto-save file name and manufacture
2662 ;; a "visited file name" from that.
2666 (buffer-substring-no-properties
2674 (file-name-nondirectory autofile
)
2676 (file-name-directory autofile
)))
2678 ;; This pair of lines is a file-visiting
2679 ;; buffer. Use the visited file name.
2682 (buffer-substring-no-properties
2683 (point) (progn (end-of-line) (point))))
2686 (buffer-substring-no-properties
2687 (point) (progn (end-of-line) (point))))
2689 ;; Ignore a file if its auto-save file does not exist now.
2690 (if (file-exists-p autofile
)
2691 (setq files
(cons thisfile files
)))))
2692 (setq files
(nreverse files
))
2693 ;; The file contains a pair of line for each auto-saved buffer.
2694 ;; The first line of the pair contains the visited file name
2695 ;; or is empty if the buffer was not visiting a file.
2696 ;; The second line is the auto-save file name.
2698 (map-y-or-n-p "Recover %s? "
2701 (save-excursion (recover-file file
))
2703 "Failed to recover `%s'" file
)))
2705 '("file" "files" "recover"))
2706 (message "No files can be recovered from this session now")))
2707 (kill-buffer buffer
))))
2709 (defun kill-some-buffers (&optional list
)
2710 "For each buffer in LIST, ask whether to kill it.
2711 LIST defaults to all existing live buffers."
2714 (setq list
(buffer-list)))
2716 (let* ((buffer (car list
))
2717 (name (buffer-name buffer
)))
2718 (and (not (string-equal name
""))
2719 (/= (aref name
0) ?
)
2721 (format "Buffer %s %s. Kill? "
2723 (if (buffer-modified-p buffer
)
2724 "HAS BEEN EDITED" "is unmodified")))
2725 (kill-buffer buffer
)))
2726 (setq list
(cdr list
))))
2728 (defun auto-save-mode (arg)
2729 "Toggle auto-saving of contents of current buffer.
2730 With prefix argument ARG, turn auto-saving on if positive, else off."
2732 (setq buffer-auto-save-file-name
2734 (or (not buffer-auto-save-file-name
)
2735 ;; If autosave is off because buffer has shrunk,
2736 ;; then toggling should turn it on.
2737 (< buffer-saved-size
0))
2738 (or (eq arg t
) (listp arg
) (and (integerp arg
) (> arg
0))))
2739 (if (and buffer-file-name auto-save-visited-file-name
2740 (not buffer-read-only
))
2742 (make-auto-save-file-name))))
2743 ;; If -1 was stored here, to temporarily turn off saving,
2745 (and (< buffer-saved-size
0)
2746 (setq buffer-saved-size
0))
2748 (message "Auto-save %s (in this buffer)"
2749 (if buffer-auto-save-file-name
"on" "off")))
2750 buffer-auto-save-file-name
)
2752 (defun rename-auto-save-file ()
2753 "Adjust current buffer's auto save file name for current conditions.
2754 Also rename any existing auto save file, if it was made in this session."
2755 (let ((osave buffer-auto-save-file-name
))
2756 (setq buffer-auto-save-file-name
2757 (make-auto-save-file-name))
2758 (if (and osave buffer-auto-save-file-name
2759 (not (string= buffer-auto-save-file-name buffer-file-name
))
2760 (not (string= buffer-auto-save-file-name osave
))
2761 (file-exists-p osave
)
2762 (recent-auto-save-p))
2763 (rename-file osave buffer-auto-save-file-name t
))))
2765 (defun make-auto-save-file-name ()
2766 "Return file name to use for auto-saves of current buffer.
2767 Does not consider `auto-save-visited-file-name' as that variable is checked
2768 before calling this function. You can redefine this for customization.
2769 See also `auto-save-file-name-p'."
2770 (if buffer-file-name
2771 (if (and (eq system-type
'ms-dos
)
2772 (not (msdos-long-file-names)))
2773 (let ((fn (file-name-nondirectory buffer-file-name
)))
2774 (string-match "\\`\\([^.]+\\)\\(\\.\\(..?\\)?.?\\|\\)\\'" fn
)
2775 (concat (file-name-directory buffer-file-name
)
2776 "#" (match-string 1 fn
)
2777 "." (match-string 3 fn
) "#"))
2778 (concat (file-name-directory buffer-file-name
)
2780 (file-name-nondirectory buffer-file-name
)
2783 ;; Deal with buffers that don't have any associated files. (Mail
2784 ;; mode tends to create a good number of these.)
2786 (let ((buffer-name (buffer-name))
2788 ;; Eliminate all slashes and backslashes by
2789 ;; replacing them with sequences that start with %.
2790 ;; Quote % also, to keep distinct names distinct.
2791 (while (string-match "[/\\%]" buffer-name limit
)
2792 (let* ((character (aref buffer-name
(match-beginning 0)))
2794 (cond ((eq character ?%
) "%%")
2795 ((eq character ?
/) "%+")
2796 ((eq character ?
\\) "%-"))))
2797 (setq buffer-name
(replace-match replacement t t buffer-name
))
2798 (setq limit
(1+ (match-end 0)))))
2799 ;; Generate the file name.
2801 (format "#%s#%s#" buffer-name
(make-temp-name ""))
2802 ;; Try a few alternative directories, to get one we can write it.
2804 ((file-writable-p default-directory
) default-directory
)
2805 ((file-writable-p "/var/tmp/") "/var/tmp/")
2808 (defun auto-save-file-name-p (filename)
2809 "Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'.
2810 FILENAME should lack slashes. You can redefine this for customization."
2811 (string-match "^#.*#$" filename
))
2813 (defun wildcard-to-regexp (wildcard)
2814 "Given a shell file name pattern WILDCARD, return an equivalent regexp.
2815 The generated regexp will match a filename iff the filename
2816 matches that wildcard according to shell rules. Only wildcards known
2817 by `sh' are supported."
2818 (let* ((i (string-match "[[.*+\\^$?]" wildcard
))
2819 ;; Copy the initial run of non-special characters.
2820 (result (substring wildcard
0 i
))
2821 (len (length wildcard
)))
2822 ;; If no special characters, we're almost done.
2825 (let ((ch (aref wildcard i
))
2833 (eq (aref wildcard
(1+ i
)) ?\
]))
2835 ((eq ch ?\
[) ; [...] maps to regexp char class
2840 ((eq (aref wildcard i
) ?
!) ; [!...] -> [^...]
2843 (if (eq (aref wildcard i
) ?\
])
2848 ((eq (aref wildcard i
) ?^
)
2849 ;; Found "[^". Insert a `\0' character
2850 ;; (which cannot happen in a filename)
2851 ;; into the character class, so that `^'
2852 ;; is not the first character after `[',
2853 ;; and thus non-special in a regexp.
2857 ((eq (aref wildcard i
) ?\
])
2858 ;; I don't think `]' can appear in a
2859 ;; character class in a wildcard, but
2860 ;; let's be general here.
2865 (prog1 ; copy everything upto next `]'.
2868 (setq j
(string-match
2870 (setq i
(if j
(1- j
) (1- len
)))))))
2872 ((eq ch ?
*) "[^\000]*")
2876 ((eq ch ?
\\) "\\\\") ; probably cannot happen...
2877 ((eq ch ??
) "[^\000]")
2878 (t (char-to-string ch
)))))
2880 ;; Shell wildcards should match the entire filename,
2881 ;; not its part. Make the regexp say so.
2882 (concat "\\`" result
"\\'")))
2884 (defcustom list-directory-brief-switches
2885 (if (eq system-type
'vax-vms
) "" "-CF")
2886 "*Switches for list-directory to pass to `ls' for brief listing,"
2890 (defcustom list-directory-verbose-switches
2891 (if (eq system-type
'vax-vms
)
2892 "/PROTECTION/SIZE/DATE/OWNER/WIDTH=(OWNER:10)"
2894 "*Switches for list-directory to pass to `ls' for verbose listing,"
2898 (defun list-directory (dirname &optional verbose
)
2899 "Display a list of files in or matching DIRNAME, a la `ls'.
2900 DIRNAME is globbed by the shell if necessary.
2901 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
2902 Actions controlled by variables `list-directory-brief-switches'
2903 and `list-directory-verbose-switches'."
2904 (interactive (let ((pfx current-prefix-arg
))
2905 (list (read-file-name (if pfx
"List directory (verbose): "
2906 "List directory (brief): ")
2907 nil default-directory nil
)
2909 (let ((switches (if verbose list-directory-verbose-switches
2910 list-directory-brief-switches
)))
2911 (or dirname
(setq dirname default-directory
))
2912 (setq dirname
(expand-file-name dirname
))
2913 (with-output-to-temp-buffer "*Directory*"
2914 (buffer-disable-undo standard-output
)
2915 (princ "Directory ")
2919 (set-buffer "*Directory*")
2920 (setq default-directory
2921 (if (file-directory-p dirname
)
2922 (file-name-as-directory dirname
)
2923 (file-name-directory dirname
)))
2924 (let ((wildcard (not (file-directory-p dirname
))))
2925 (insert-directory dirname switches wildcard
(not wildcard
)))))))
2927 (defvar insert-directory-program
"ls"
2928 "Absolute or relative name of the `ls' program used by `insert-directory'.")
2931 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and
2932 ;; FULL-DIRECTORY-P is nil.
2933 ;; The single line of output must display FILE's name as it was
2934 ;; given, namely, an absolute path name.
2935 ;; - must insert exactly one line for each file if WILDCARD or
2936 ;; FULL-DIRECTORY-P is t, plus one optional "total" line
2937 ;; before the file lines, plus optional text after the file lines.
2938 ;; Lines are delimited by "\n", so filenames containing "\n" are not
2940 ;; File lines should display the basename.
2941 ;; - must be consistent with
2942 ;; - functions dired-move-to-filename, (these two define what a file line is)
2943 ;; dired-move-to-end-of-filename,
2944 ;; dired-between-files, (shortcut for (not (dired-move-to-filename)))
2945 ;; dired-insert-headerline
2946 ;; dired-after-subdir-garbage (defines what a "total" line is)
2947 ;; - variable dired-subdir-regexp
2948 (defun insert-directory (file switches
&optional wildcard full-directory-p
)
2949 "Insert directory listing for FILE, formatted according to SWITCHES.
2950 Leaves point after the inserted text.
2951 SWITCHES may be a string of options, or a list of strings.
2952 Optional third arg WILDCARD means treat FILE as shell wildcard.
2953 Optional fourth arg FULL-DIRECTORY-P means file is a directory and
2954 switches do not contain `d', so that a full listing is expected.
2956 This works by running a directory listing program
2957 whose name is in the variable `insert-directory-program'.
2958 If WILDCARD, it also runs the shell specified by `shell-file-name'."
2959 ;; We need the directory in order to find the right handler.
2960 (let ((handler (find-file-name-handler (expand-file-name file
)
2961 'insert-directory
)))
2963 (funcall handler
'insert-directory file switches
2964 wildcard full-directory-p
)
2965 (if (eq system-type
'vax-vms
)
2966 (vms-read-directory file switches
(current-buffer))
2969 ;; Run ls in the directory of the file pattern we asked for.
2970 (let ((default-directory
2971 (if (file-name-absolute-p file
)
2972 (file-name-directory file
)
2973 (file-name-directory (expand-file-name file
))))
2974 (pattern (file-name-nondirectory file
))
2976 ;; Quote some characters that have special meanings in shells;
2977 ;; but don't quote the wildcards--we want them to be special.
2978 ;; We also currently don't quote the quoting characters
2979 ;; in case people want to use them explicitly to quote
2980 ;; wildcard characters.
2981 (while (string-match "[ \t\n;<>&|()#$]" pattern beg
)
2983 (concat (substring pattern
0 (match-beginning 0))
2985 (substring pattern
(match-beginning 0)))
2986 beg
(1+ (match-end 0))))
2987 (call-process shell-file-name nil t nil
2988 "-c" (concat "\\" ;; Disregard shell aliases!
2989 insert-directory-program
2991 (if (stringp switches
)
2993 (mapconcat 'identity switches
" "))
2995 (encode-coding-string
2997 file-name-coding-system t
))))
2998 ;; SunOS 4.1.3, SVr4 and others need the "." to list the
2999 ;; directory if FILE is a symbolic link.
3000 (apply 'call-process
3001 insert-directory-program nil t nil
3003 (if (listp switches
)
3004 (setq list switches
)
3005 (if (not (equal switches
""))
3007 ;; Split the switches at any spaces
3008 ;; so we can pass separate options as separate args.
3009 (while (string-match " " switches
)
3010 (setq list
(cons (substring switches
0 (match-beginning 0))
3012 switches
(substring switches
(match-end 0))))
3013 (setq list
(nreverse (cons switches list
))))))
3015 ;; Avoid lossage if FILE starts with `-'.
3018 (encode-coding-string
3019 (if full-directory-p
3020 (concat (file-name-as-directory file
) ".")
3022 file-name-coding-system t
)))))))
3023 ;; We get here if ls failed.
3024 ;; Access the file to get a suitable error.
3025 (access-file file
"Reading directory"))))))
3027 (defvar kill-emacs-query-functions nil
3028 "Functions to call with no arguments to query about killing Emacs.
3029 If any of these functions returns nil, killing Emacs is cancelled.
3030 `save-buffers-kill-emacs' (\\[save-buffers-kill-emacs]) calls these functions,
3031 but `kill-emacs', the low level primitive, does not.
3032 See also `kill-emacs-hook'.")
3034 (defun save-buffers-kill-emacs (&optional arg
)
3035 "Offer to save each buffer, then kill this Emacs process.
3036 With prefix arg, silently save all file-visiting buffers, then kill."
3038 (save-some-buffers arg t
)
3039 (and (or (not (memq t
(mapcar (function
3040 (lambda (buf) (and (buffer-file-name buf
)
3041 (buffer-modified-p buf
))))
3043 (yes-or-no-p "Modified buffers exist; exit anyway? "))
3044 (or (not (fboundp 'process-list
))
3045 ;; process-list is not defined on VMS.
3046 (let ((processes (process-list))
3049 (and (memq (process-status (car processes
)) '(run stop open
))
3050 (let ((val (process-kill-without-query (car processes
))))
3051 (process-kill-without-query (car processes
) val
)
3054 (setq processes
(cdr processes
)))
3056 (yes-or-no-p "Active processes exist; kill them and exit anyway? "))))
3057 ;; Query the user for other things, perhaps.
3058 (run-hook-with-args-until-failure 'kill-emacs-query-functions
)
3061 ;; We use /: as a prefix to "quote" a file name
3062 ;; so that magic file name handlers will not apply to it.
3064 (setq file-name-handler-alist
3065 (cons '("\\`/:" . file-name-non-special
)
3066 file-name-handler-alist
))
3068 ;; We depend on being the last handler on the list,
3069 ;; so that anything else which does need handling
3070 ;; has been handled already.
3071 ;; So it is safe for us to inhibit *all* magic file name handlers.
3073 (defun file-name-non-special (operation &rest arguments
)
3074 (let ((file-name-handler-alist nil
)
3075 ;; Get a list of the indices of the args which are file names.
3077 (cdr (or (assq operation
3078 ;; The first four are special because they
3079 ;; return a file name. We want to include the /:
3080 ;; in the return value.
3081 ;; So just avoid stripping it in the first place.
3082 '((expand-file-name . nil
)
3083 ;; `identity' means just return the first arg
3084 ;; as stripped of its quoting.
3085 (substitute-in-file-name . identity
)
3086 (file-name-directory . nil
)
3087 (file-name-as-directory . nil
)
3088 (directory-file-name . nil
)
3089 (file-name-completion 0 1)
3090 (file-name-all-completions 0 1)
3093 (make-symbolic-link 0 1)
3094 (add-name-to-file 0 1)))
3095 ;; For all other operations, treat the first argument only
3096 ;; as the file name.
3098 ;; Copy ARGUMENTS so we can replace elements in it.
3099 (arguments (copy-sequence arguments
)))
3100 ;; Strip off the /: from the file names that have this handler.
3102 (while (consp file-arg-indices
)
3103 (and (nth (car file-arg-indices
) arguments
)
3104 (string-match "\\`/:" (nth (car file-arg-indices
) arguments
))
3105 (setcar (nthcdr (car file-arg-indices
) arguments
)
3106 (substring (nth (car file-arg-indices
) arguments
) 2)))
3107 (setq file-arg-indices
(cdr file-arg-indices
))))
3108 (if (eq file-arg-indices
'identity
)
3110 (apply operation arguments
))))
3112 (define-key ctl-x-map
"\C-f" 'find-file
)
3113 (define-key ctl-x-map
"\C-r" 'find-file-read-only
)
3114 (define-key ctl-x-map
"\C-v" 'find-alternate-file
)
3115 (define-key ctl-x-map
"\C-s" 'save-buffer
)
3116 (define-key ctl-x-map
"s" 'save-some-buffers
)
3117 (define-key ctl-x-map
"\C-w" 'write-file
)
3118 (define-key ctl-x-map
"i" 'insert-file
)
3119 (define-key esc-map
"~" 'not-modified
)
3120 (define-key ctl-x-map
"\C-d" 'list-directory
)
3121 (define-key ctl-x-map
"\C-c" 'save-buffers-kill-emacs
)
3123 (define-key ctl-x-4-map
"f" 'find-file-other-window
)
3124 (define-key ctl-x-4-map
"r" 'find-file-read-only-other-window
)
3125 (define-key ctl-x-4-map
"\C-f" 'find-file-other-window
)
3126 (define-key ctl-x-4-map
"b" 'switch-to-buffer-other-window
)
3127 (define-key ctl-x-4-map
"\C-o" 'display-buffer
)
3129 (define-key ctl-x-5-map
"b" 'switch-to-buffer-other-frame
)
3130 (define-key ctl-x-5-map
"f" 'find-file-other-frame
)
3131 (define-key ctl-x-5-map
"\C-f" 'find-file-other-frame
)
3132 (define-key ctl-x-5-map
"r" 'find-file-read-only-other-frame
)
3134 ;;; files.el ends here