1992-05-30 23:54:21 +00:00
|
|
|
|
;;; files.el --- file input and output commands for Emacs
|
|
|
|
|
|
1996-03-02 06:37:35 +00:00
|
|
|
|
;; Copyright (C) 1985, 86, 87, 92, 93,
|
1998-03-12 22:44:12 +00:00
|
|
|
|
;; 94, 95, 96, 97, 1998 Free Software Foundation, Inc.
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1992-07-22 04:22:42 +00:00
|
|
|
|
;; Maintainer: FSF
|
|
|
|
|
|
1991-07-19 14:42:53 +00:00
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
1992-07-16 21:47:34 +00:00
|
|
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
1996-01-15 05:08:57 +00:00
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
|
|
|
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
;; Boston, MA 02111-1307, USA.
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1993-03-22 03:27:18 +00:00
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; Defines most of Emacs's file- and directory-handling functions,
|
|
|
|
|
;; including basic file visiting, backup generation, link handling,
|
|
|
|
|
;; ITS-id version control, load- and write-hook handling, and the like.
|
|
|
|
|
|
1992-07-16 21:47:34 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defgroup backup nil
|
|
|
|
|
"Backups of edited data files."
|
1997-06-18 17:24:59 +00:00
|
|
|
|
:group 'files)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defgroup find-file nil
|
1997-06-18 17:24:59 +00:00
|
|
|
|
"Finding files."
|
|
|
|
|
:group 'files)
|
1997-05-05 22:04:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defcustom delete-auto-save-files t
|
1998-01-07 09:41:30 +00:00
|
|
|
|
"*Non-nil means delete auto-save file when a buffer is saved or killed.
|
|
|
|
|
|
|
|
|
|
Note that auto-save file will not be deleted if the buffer is killed
|
|
|
|
|
when it has unsaved changes."
|
1997-05-05 22:04:00 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'auto-save)
|
|
|
|
|
|
|
|
|
|
(defcustom directory-abbrev-alist
|
1991-07-19 14:42:53 +00:00
|
|
|
|
nil
|
|
|
|
|
"*Alist of abbreviations for file directories.
|
|
|
|
|
A list of elements of the form (FROM . TO), each meaning to replace
|
|
|
|
|
FROM with TO when it appears in a directory name. This replacement is
|
|
|
|
|
done when setting up the default directory of a newly visited file.
|
|
|
|
|
*Every* FROM string should start with `^'.
|
|
|
|
|
|
1993-09-17 17:51:40 +00:00
|
|
|
|
Do not use `~' in the TO strings.
|
|
|
|
|
They should be ordinary absolute directory names.
|
|
|
|
|
|
1991-07-19 14:42:53 +00:00
|
|
|
|
Use this feature when you have directories which you normally refer to
|
|
|
|
|
via absolute symbolic links. Make TO the name of the link, and FROM
|
1997-05-05 22:04:00 +00:00
|
|
|
|
the name it is linked to."
|
|
|
|
|
:type '(repeat (cons :format "%v"
|
|
|
|
|
:value ("" . "")
|
|
|
|
|
(regexp :tag "From")
|
|
|
|
|
(regexp :tag "To")))
|
|
|
|
|
:group 'abbrev
|
|
|
|
|
:group 'find-file)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
;;; Turn off backup files on VMS since it has version numbers.
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom make-backup-files (not (eq system-type 'vax-vms))
|
1993-06-11 05:59:16 +00:00
|
|
|
|
"*Non-nil means make a backup of a file the first time it is saved.
|
1991-07-19 14:42:53 +00:00
|
|
|
|
This can be done by renaming the file or by copying.
|
|
|
|
|
|
|
|
|
|
Renaming means that Emacs renames the existing file so that it is a
|
|
|
|
|
backup file, then writes the buffer into a new file. Any other names
|
|
|
|
|
that the old file had will now refer to the backup file. The new file
|
|
|
|
|
is owned by you and its group is defaulted.
|
|
|
|
|
|
|
|
|
|
Copying means that Emacs copies the existing file into the backup
|
|
|
|
|
file, then writes the buffer on top of the existing file. Any other
|
|
|
|
|
names that the old file had will now refer to the new (edited) file.
|
|
|
|
|
The file's owner and group are unchanged.
|
|
|
|
|
|
|
|
|
|
The choice of renaming or copying is controlled by the variables
|
|
|
|
|
`backup-by-copying', `backup-by-copying-when-linked' and
|
1997-05-05 22:04:00 +00:00
|
|
|
|
`backup-by-copying-when-mismatch'. See also `backup-inhibited'."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'backup)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
;; Do this so that local variables based on the file name
|
|
|
|
|
;; are not overridden by the major mode.
|
|
|
|
|
(defvar backup-inhibited nil
|
1993-08-13 01:17:59 +00:00
|
|
|
|
"Non-nil means don't make a backup, regardless of the other parameters.
|
|
|
|
|
This variable is intended for use by making it local to a buffer.
|
|
|
|
|
But it is local only if you make it local.")
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(put 'backup-inhibited 'permanent-local t)
|
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom backup-by-copying nil
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"*Non-nil means always use copying to create backup files.
|
1997-05-05 22:04:00 +00:00
|
|
|
|
See documentation of variable `make-backup-files'."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'backup)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom backup-by-copying-when-linked nil
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"*Non-nil means use copying to create backups for files with multiple names.
|
|
|
|
|
This causes the alternate names to refer to the latest version as edited.
|
1997-05-05 22:04:00 +00:00
|
|
|
|
This variable is relevant only if `backup-by-copying' is nil."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'backup)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom backup-by-copying-when-mismatch nil
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"*Non-nil means create backups by copying if this preserves owner or group.
|
|
|
|
|
Renaming may still be used (subject to control of other variables)
|
|
|
|
|
when it would not result in changing the owner or group of the file;
|
|
|
|
|
that is, for files which are owned by you and whose group matches
|
|
|
|
|
the default for a new file created there by you.
|
1997-05-05 22:04:00 +00:00
|
|
|
|
This variable is relevant only if `backup-by-copying' is nil."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'backup)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
(defvar backup-enable-predicate
|
|
|
|
|
'(lambda (name)
|
|
|
|
|
(or (< (length name) 5)
|
|
|
|
|
(not (string-equal "/tmp/" (substring name 0 5)))))
|
|
|
|
|
"Predicate that looks at a file name and decides whether to make backups.
|
|
|
|
|
Called with an absolute file name as argument, it returns t to enable backup.")
|
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom buffer-offer-save nil
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"*Non-nil in a buffer means offer to save the buffer on exit
|
|
|
|
|
even if the buffer is not visiting a file.
|
1997-05-05 22:04:00 +00:00
|
|
|
|
Automatically local in all buffers."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'backup)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(make-variable-buffer-local 'buffer-offer-save)
|
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom find-file-existing-other-name t
|
1992-10-12 04:45:53 +00:00
|
|
|
|
"*Non-nil means find a file under alternative names, in existing buffers.
|
|
|
|
|
This means if any existing buffer is visiting the file you want
|
1997-05-05 22:04:00 +00:00
|
|
|
|
under another name, you get the existing buffer instead of a new buffer."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'find-file)
|
1992-10-12 04:45:53 +00:00
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom find-file-visit-truename nil
|
1992-10-12 04:45:53 +00:00
|
|
|
|
"*Non-nil means visit a file under its truename.
|
|
|
|
|
The truename of a file is found by chasing all links
|
1997-05-05 22:04:00 +00:00
|
|
|
|
both at the file level and at the levels of the containing directories."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'find-file)
|
1992-10-12 04:45:53 +00:00
|
|
|
|
|
1997-05-20 05:27:50 +00:00
|
|
|
|
(defcustom revert-without-query
|
1996-12-16 01:33:02 +00:00
|
|
|
|
nil
|
1996-12-15 20:52:40 +00:00
|
|
|
|
"*Specify which files should be reverted without query.
|
|
|
|
|
The value is a list of regular expressions.
|
|
|
|
|
If the file name matches one of these regular expressions,
|
1997-05-20 05:27:50 +00:00
|
|
|
|
then `revert-buffer' reverts the file without querying
|
1997-05-05 22:04:00 +00:00
|
|
|
|
if the file has changed on disk and you have not edited the buffer."
|
1997-10-02 02:57:16 +00:00
|
|
|
|
:type '(repeat regexp)
|
1997-05-05 22:04:00 +00:00
|
|
|
|
:group 'find-file)
|
1996-12-15 20:52:40 +00:00
|
|
|
|
|
1992-10-12 04:45:53 +00:00
|
|
|
|
(defvar buffer-file-number nil
|
|
|
|
|
"The device number and file number of the file visited in the current buffer.
|
|
|
|
|
The value is a list of the form (FILENUM DEVNUM).
|
|
|
|
|
This pair of numbers uniquely identifies the file.
|
|
|
|
|
If the buffer is visiting a new file, the value is nil.")
|
|
|
|
|
(make-variable-buffer-local 'buffer-file-number)
|
|
|
|
|
(put 'buffer-file-number 'permanent-local t)
|
|
|
|
|
|
1996-06-04 16:17:22 +00:00
|
|
|
|
(defvar buffer-file-numbers-unique (not (memq system-type '(windows-nt)))
|
|
|
|
|
"Non-nil means that buffer-file-number uniquely identifies files.")
|
|
|
|
|
|
1998-05-21 14:26:10 +00:00
|
|
|
|
(defvar file-name-invalid-regexp
|
|
|
|
|
(cond ((and (eq system-type 'ms-dos) (not (msdos-long-file-names)))
|
1998-07-15 10:21:04 +00:00
|
|
|
|
(concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" ; colon except after drive
|
1998-05-21 14:26:10 +00:00
|
|
|
|
"[+, ;=|<>\"?*]\\|\\[\\|\\]\\|" ; invalid characters
|
1998-08-24 10:21:51 +00:00
|
|
|
|
"[\000-\031]\\|" ; control characters
|
1998-05-21 14:26:10 +00:00
|
|
|
|
"\\(/\\.\\.?[^/]\\)\\|" ; leading dots
|
|
|
|
|
"\\(/[^/.]+\\.[^/.]*\\.\\)")) ; more than a single dot
|
|
|
|
|
((memq system-type '(ms-dos windows-nt))
|
1998-07-15 10:21:04 +00:00
|
|
|
|
(concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" ; colon except after drive
|
1998-06-14 15:34:02 +00:00
|
|
|
|
"[|<>\"?*\000-\031]")) ; invalid characters
|
1998-05-21 14:26:10 +00:00
|
|
|
|
(t "[\000]"))
|
|
|
|
|
"Regexp recognizing file names which aren't allowed by the filesystem.")
|
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom file-precious-flag nil
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"*Non-nil means protect against I/O errors while saving files.
|
1995-06-07 20:45:11 +00:00
|
|
|
|
Some modes set this non-nil in particular buffers.
|
1995-06-09 01:00:42 +00:00
|
|
|
|
|
|
|
|
|
This feature works by writing the new contents into a temporary file
|
|
|
|
|
and then renaming the temporary file to replace the original.
|
|
|
|
|
In this way, any I/O error in writing leaves the original untouched,
|
|
|
|
|
and there is never any instant where the file is nonexistent.
|
|
|
|
|
|
|
|
|
|
Note that this feature forces backups to be made by copying.
|
1995-06-07 20:45:11 +00:00
|
|
|
|
Yet, at the same time, saving a precious file
|
1997-05-05 22:04:00 +00:00
|
|
|
|
breaks any hard links between it and other files."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'backup)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom version-control nil
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"*Control use of version numbers for backup files.
|
|
|
|
|
t means make numeric backup versions unconditionally.
|
|
|
|
|
nil means make them for files that have some already.
|
1997-05-05 22:04:00 +00:00
|
|
|
|
`never' means do not make them."
|
1998-06-24 09:08:57 +00:00
|
|
|
|
:type '(choice (const :tag "Never" never)
|
|
|
|
|
(const :tag "If existing" nil)
|
|
|
|
|
(other :tag "Always" t))
|
1997-05-05 22:04:00 +00:00
|
|
|
|
:group 'backup
|
|
|
|
|
:group 'vc)
|
|
|
|
|
|
|
|
|
|
(defcustom dired-kept-versions 2
|
|
|
|
|
"*When cleaning directory, number of versions to keep."
|
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'backup
|
|
|
|
|
:group 'dired)
|
|
|
|
|
|
|
|
|
|
(defcustom delete-old-versions nil
|
1994-07-06 21:34:31 +00:00
|
|
|
|
"*If t, delete excess backup versions silently.
|
1997-05-05 22:04:00 +00:00
|
|
|
|
If nil, ask confirmation. Any other value prevents any trimming."
|
|
|
|
|
:type '(choice (const :tag "Delete" t)
|
|
|
|
|
(const :tag "Ask" nil)
|
1998-06-24 09:08:57 +00:00
|
|
|
|
(other :tag "Leave" other))
|
1997-05-05 22:04:00 +00:00
|
|
|
|
:group 'backup)
|
|
|
|
|
|
|
|
|
|
(defcustom kept-old-versions 2
|
|
|
|
|
"*Number of oldest versions to keep when a new numbered backup is made."
|
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'backup)
|
|
|
|
|
|
|
|
|
|
(defcustom kept-new-versions 2
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"*Number of newest versions to keep when a new numbered backup is made.
|
1997-05-05 22:04:00 +00:00
|
|
|
|
Includes the new backup. Must be > 0"
|
|
|
|
|
:type 'integer
|
|
|
|
|
:group 'backup)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom require-final-newline nil
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"*Value of t says silently ensure a file ends in a newline when it is saved.
|
|
|
|
|
Non-nil but not t says ask user whether to add a newline when there isn't one.
|
1997-05-05 22:04:00 +00:00
|
|
|
|
nil means don't add newlines."
|
1997-06-20 02:59:38 +00:00
|
|
|
|
:type '(choice (const :tag "Off" nil)
|
|
|
|
|
(const :tag "Add" t)
|
1998-06-24 09:08:57 +00:00
|
|
|
|
(other :tag "Ask" ask))
|
1997-05-05 22:04:00 +00:00
|
|
|
|
:group 'editing-basics)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom auto-save-default t
|
|
|
|
|
"*Non-nil says by default do auto-saving of every file-visiting buffer."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'auto-save)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom auto-save-visited-file-name nil
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"*Non-nil says auto-save a buffer in the file it is visiting, when practical.
|
1997-05-05 22:04:00 +00:00
|
|
|
|
Normally auto-save files are written under other names."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'auto-save)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom save-abbrevs nil
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"*Non-nil means save word abbrevs too when files are saved.
|
1997-05-05 22:04:00 +00:00
|
|
|
|
Loading an abbrev file sets this to t."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'abbrev)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom find-file-run-dired t
|
|
|
|
|
"*Non-nil says run dired if `find-file' is given the name of a directory."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'find-file)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1993-02-15 19:02:55 +00:00
|
|
|
|
;;;It is not useful to make this a local variable.
|
|
|
|
|
;;;(put 'find-file-not-found-hooks 'permanent-local t)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(defvar find-file-not-found-hooks nil
|
|
|
|
|
"List of functions to be called for `find-file' on nonexistent file.
|
|
|
|
|
These functions are called as soon as the error is detected.
|
|
|
|
|
`buffer-file-name' is already set up.
|
|
|
|
|
The functions are called in the order given until one of them returns non-nil.")
|
|
|
|
|
|
1993-02-15 19:02:55 +00:00
|
|
|
|
;;;It is not useful to make this a local variable.
|
|
|
|
|
;;;(put 'find-file-hooks 'permanent-local t)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(defvar find-file-hooks nil
|
|
|
|
|
"List of functions to be called after a buffer is loaded from a file.
|
|
|
|
|
The buffer's local variables (if any) will have been processed before the
|
|
|
|
|
functions are called.")
|
|
|
|
|
|
|
|
|
|
(defvar write-file-hooks nil
|
|
|
|
|
"List of functions to be called before writing out a buffer to a file.
|
|
|
|
|
If one of them returns non-nil, the file is considered already written
|
1992-04-04 05:55:39 +00:00
|
|
|
|
and the rest are not called.
|
|
|
|
|
These hooks are considered to pertain to the visited file.
|
|
|
|
|
So this list is cleared if you change the visited file name.
|
1996-01-09 23:17:37 +00:00
|
|
|
|
|
|
|
|
|
Don't make this variable buffer-local; instead, use `local-write-file-hooks'.
|
|
|
|
|
See also `write-contents-hooks'.")
|
1993-09-21 07:23:26 +00:00
|
|
|
|
;;; However, in case someone does make it local...
|
|
|
|
|
(put 'write-file-hooks 'permanent-local t)
|
1993-03-26 07:28:20 +00:00
|
|
|
|
|
|
|
|
|
(defvar local-write-file-hooks nil
|
|
|
|
|
"Just like `write-file-hooks', except intended for per-buffer use.
|
|
|
|
|
The functions in this list are called before the ones in
|
1996-01-09 23:17:37 +00:00
|
|
|
|
`write-file-hooks'.
|
|
|
|
|
|
|
|
|
|
This variable is meant to be used for hooks that have to do with a
|
|
|
|
|
particular visited file. Therefore, it is a permanent local, so that
|
|
|
|
|
changing the major mode does not clear it. However, calling
|
|
|
|
|
`set-visited-file-name' does clear it.")
|
1993-09-21 07:23:26 +00:00
|
|
|
|
(make-variable-buffer-local 'local-write-file-hooks)
|
|
|
|
|
(put 'local-write-file-hooks 'permanent-local t)
|
1992-04-04 05:55:39 +00:00
|
|
|
|
|
|
|
|
|
(defvar write-contents-hooks nil
|
|
|
|
|
"List of functions to be called before writing out a buffer to a file.
|
|
|
|
|
If one of them returns non-nil, the file is considered already written
|
|
|
|
|
and the rest are not called.
|
1996-01-09 23:17:37 +00:00
|
|
|
|
|
|
|
|
|
This variable is meant to be used for hooks that pertain to the
|
|
|
|
|
buffer's contents, not to the particular visited file; thus,
|
|
|
|
|
`set-visited-file-name' does not clear this variable; but changing the
|
1996-01-15 05:08:57 +00:00
|
|
|
|
major mode does clear it.
|
|
|
|
|
|
|
|
|
|
This variable automatically becomes buffer-local whenever it is set.
|
1996-11-17 19:41:48 +00:00
|
|
|
|
If you use `add-hook' to add elements to the list, use nil for the
|
1996-01-15 05:08:57 +00:00
|
|
|
|
LOCAL argument.
|
1996-01-09 23:17:37 +00:00
|
|
|
|
|
1992-04-04 05:55:39 +00:00
|
|
|
|
See also `write-file-hooks'.")
|
1996-01-09 23:17:37 +00:00
|
|
|
|
(make-variable-buffer-local 'write-contents-hooks)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom enable-local-variables t
|
1996-10-13 14:00:48 +00:00
|
|
|
|
"*Control use of local variables in files you visit.
|
1991-07-19 14:42:53 +00:00
|
|
|
|
The value can be t, nil or something else.
|
1996-10-13 14:00:48 +00:00
|
|
|
|
A value of t means file local variables specifications are obeyed;
|
1991-07-19 14:42:53 +00:00
|
|
|
|
nil means they are ignored; anything else means query.
|
1998-11-07 02:01:59 +00:00
|
|
|
|
This variable also controls use of major modes specified in
|
|
|
|
|
a -*- line.
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1998-11-07 02:01:59 +00:00
|
|
|
|
The command \\[normal-mode], when used interactively,
|
|
|
|
|
always obeys file local variable specifications and the -*- line,
|
|
|
|
|
and ignores this variable."
|
1997-05-05 22:04:00 +00:00
|
|
|
|
:type '(choice (const :tag "Obey" t)
|
|
|
|
|
(const :tag "Ignore" nil)
|
1998-06-24 09:08:57 +00:00
|
|
|
|
(other :tag "Query" other))
|
1997-05-05 22:04:00 +00:00
|
|
|
|
:group 'find-file)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1998-06-13 06:17:13 +00:00
|
|
|
|
(defvar local-enable-local-variables t
|
|
|
|
|
"Like `enable-local-variables' but meant for buffer-local bindings.
|
1998-11-07 02:01:59 +00:00
|
|
|
|
The meaningful values are nil and non-nil. The default is non-nil.
|
1998-06-13 06:17:13 +00:00
|
|
|
|
If a major mode sets this to nil, buffer-locally, then any local
|
1998-11-07 02:01:59 +00:00
|
|
|
|
variables list in the file will be ignored.
|
|
|
|
|
|
|
|
|
|
This variable does not affect the use of major modes
|
|
|
|
|
specified in a -*- line.")
|
1998-06-13 06:17:13 +00:00
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom enable-local-eval 'maybe
|
1992-06-23 21:48:27 +00:00
|
|
|
|
"*Control processing of the \"variable\" `eval' in a file's local variables.
|
|
|
|
|
The value can be t, nil or something else.
|
|
|
|
|
A value of t means obey `eval' variables;
|
|
|
|
|
nil means ignore them; anything else means query.
|
|
|
|
|
|
|
|
|
|
The command \\[normal-mode] always obeys local-variables lists
|
1997-05-05 22:04:00 +00:00
|
|
|
|
and ignores this variable."
|
|
|
|
|
:type '(choice (const :tag "Obey" t)
|
|
|
|
|
(const :tag "Ignore" nil)
|
1998-06-24 09:08:57 +00:00
|
|
|
|
(other :tag "Query" other))
|
1997-05-05 22:04:00 +00:00
|
|
|
|
:group 'find-file)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
;; Avoid losing in versions where CLASH_DETECTION is disabled.
|
|
|
|
|
(or (fboundp 'lock-buffer)
|
1993-04-25 06:14:06 +00:00
|
|
|
|
(defalias 'lock-buffer 'ignore))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(or (fboundp 'unlock-buffer)
|
1993-04-25 06:14:06 +00:00
|
|
|
|
(defalias 'unlock-buffer 'ignore))
|
1996-09-16 09:43:42 +00:00
|
|
|
|
(or (fboundp 'file-locked-p)
|
|
|
|
|
(defalias 'file-locked-p 'ignore))
|
1993-07-20 07:12:30 +00:00
|
|
|
|
|
1997-06-18 17:24:59 +00:00
|
|
|
|
(defvar view-read-only nil
|
|
|
|
|
"*Non-nil means buffers visiting files read-only, do it in view mode.")
|
|
|
|
|
|
1998-05-19 05:21:42 +00:00
|
|
|
|
(defvar temporary-file-directory
|
|
|
|
|
(file-name-as-directory
|
1998-05-16 03:38:20 +00:00
|
|
|
|
(cond ((memq system-type '(ms-dos windows-nt))
|
|
|
|
|
(or (getenv "TEMP") (getenv "TMPDIR") (getenv "TMP") "c:/temp"))
|
|
|
|
|
((memq system-type '(vax-vms axp-vms))
|
|
|
|
|
(or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "SYS$SCRATCH:"))
|
|
|
|
|
(t
|
|
|
|
|
(or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "/tmp"))))
|
1998-05-19 05:21:42 +00:00
|
|
|
|
"The directory for writing temporary files.")
|
1998-05-16 03:38:20 +00:00
|
|
|
|
|
1998-06-09 02:52:41 +00:00
|
|
|
|
;; The system null device. (Should reference NULL_DEVICE from C.)
|
|
|
|
|
(defvar null-device "/dev/null" "The system null device.")
|
|
|
|
|
|
1993-07-20 07:12:30 +00:00
|
|
|
|
;; This hook function provides support for ange-ftp host name
|
|
|
|
|
;; completion. It runs the usual ange-ftp hook, but only for
|
|
|
|
|
;; completion operations. Having this here avoids the need
|
|
|
|
|
;; to load ange-ftp when it's not really in use.
|
|
|
|
|
(defun ange-ftp-completion-hook-function (op &rest args)
|
|
|
|
|
(if (memq op '(file-name-completion file-name-all-completions))
|
|
|
|
|
(apply 'ange-ftp-hook-function op args)
|
1994-04-27 23:43:46 +00:00
|
|
|
|
(let ((inhibit-file-name-handlers
|
|
|
|
|
(cons 'ange-ftp-completion-hook-function
|
|
|
|
|
(and (eq inhibit-file-name-operation op)
|
|
|
|
|
inhibit-file-name-handlers)))
|
|
|
|
|
(inhibit-file-name-operation op))
|
1993-07-20 07:12:30 +00:00
|
|
|
|
(apply op args))))
|
1996-01-01 22:51:51 +00:00
|
|
|
|
|
|
|
|
|
(defun convert-standard-filename (filename)
|
|
|
|
|
"Convert a standard file's name to something suitable for the current OS.
|
|
|
|
|
This function's standard definition is trivial; it just returns the argument.
|
|
|
|
|
However, on some systems, the function is redefined
|
|
|
|
|
with a definition that really does change some file names."
|
|
|
|
|
filename)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
(defun pwd ()
|
|
|
|
|
"Show the current default directory."
|
|
|
|
|
(interactive nil)
|
|
|
|
|
(message "Directory %s" default-directory))
|
|
|
|
|
|
1993-04-25 06:14:06 +00:00
|
|
|
|
(defvar cd-path nil
|
|
|
|
|
"Value of the CDPATH environment variable, as a list.
|
|
|
|
|
Not actually set up until the first time you you use it.")
|
|
|
|
|
|
|
|
|
|
(defun parse-colon-path (cd-path)
|
1997-05-20 05:27:50 +00:00
|
|
|
|
"Explode a colon-separated search path into a list of directory names."
|
1993-04-25 06:14:06 +00:00
|
|
|
|
(and cd-path
|
|
|
|
|
(let (cd-prefix cd-list (cd-start 0) cd-colon)
|
1995-05-15 22:22:25 +00:00
|
|
|
|
(setq cd-path (concat cd-path path-separator))
|
|
|
|
|
(while (setq cd-colon (string-match path-separator cd-path cd-start))
|
1993-04-25 06:14:06 +00:00
|
|
|
|
(setq cd-list
|
1993-05-24 21:45:20 +00:00
|
|
|
|
(nconc cd-list
|
1993-07-22 05:34:53 +00:00
|
|
|
|
(list (if (= cd-start cd-colon)
|
|
|
|
|
nil
|
|
|
|
|
(substitute-in-file-name
|
1993-07-20 22:04:53 +00:00
|
|
|
|
(file-name-as-directory
|
|
|
|
|
(substring cd-path cd-start cd-colon)))))))
|
1993-04-25 06:14:06 +00:00
|
|
|
|
(setq cd-start (+ cd-colon 1)))
|
|
|
|
|
cd-list)))
|
|
|
|
|
|
|
|
|
|
(defun cd-absolute (dir)
|
1993-06-11 16:02:27 +00:00
|
|
|
|
"Change current directory to given absolute file name DIR."
|
1994-07-27 18:55:38 +00:00
|
|
|
|
;; Put the name into directory syntax now,
|
|
|
|
|
;; because otherwise expand-file-name may give some bad results.
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(if (not (eq system-type 'vax-vms))
|
|
|
|
|
(setq dir (file-name-as-directory dir)))
|
1994-07-27 18:55:38 +00:00
|
|
|
|
(setq dir (abbreviate-file-name (expand-file-name dir)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(if (not (file-directory-p dir))
|
1997-07-16 05:30:34 +00:00
|
|
|
|
(if (file-exists-p dir)
|
|
|
|
|
(error "%s is not a directory" dir)
|
1997-08-05 05:49:10 +00:00
|
|
|
|
(error "%s: no such directory" dir))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(if (file-executable-p dir)
|
|
|
|
|
(setq default-directory dir)
|
1993-05-24 21:45:20 +00:00
|
|
|
|
(error "Cannot cd to %s: Permission denied" dir))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1993-04-25 06:14:06 +00:00
|
|
|
|
(defun cd (dir)
|
|
|
|
|
"Make DIR become the current buffer's default directory.
|
1993-06-11 16:02:27 +00:00
|
|
|
|
If your environment includes a `CDPATH' variable, try each one of that
|
|
|
|
|
colon-separated list of directories when resolving a relative directory name."
|
1995-07-30 07:02:13 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(list (read-file-name "Change default directory: "
|
1995-09-30 16:35:12 +00:00
|
|
|
|
default-directory default-directory
|
|
|
|
|
(and (member cd-path '(nil ("./")))
|
|
|
|
|
(null (getenv "CDPATH"))))))
|
1993-06-11 16:02:27 +00:00
|
|
|
|
(if (file-name-absolute-p dir)
|
|
|
|
|
(cd-absolute (expand-file-name dir))
|
|
|
|
|
(if (null cd-path)
|
|
|
|
|
(let ((trypath (parse-colon-path (getenv "CDPATH"))))
|
|
|
|
|
(setq cd-path (or trypath (list "./")))))
|
|
|
|
|
(if (not (catch 'found
|
|
|
|
|
(mapcar
|
|
|
|
|
(function (lambda (x)
|
|
|
|
|
(let ((f (expand-file-name (concat x dir))))
|
|
|
|
|
(if (file-directory-p f)
|
|
|
|
|
(progn
|
|
|
|
|
(cd-absolute f)
|
|
|
|
|
(throw 'found t))))))
|
|
|
|
|
cd-path)
|
|
|
|
|
nil))
|
|
|
|
|
(error "No such directory found via CDPATH environment variable"))))
|
1993-04-25 06:14:06 +00:00
|
|
|
|
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(defun load-file (file)
|
|
|
|
|
"Load the Lisp file named FILE."
|
|
|
|
|
(interactive "fLoad file: ")
|
|
|
|
|
(load (expand-file-name file) nil nil t))
|
|
|
|
|
|
|
|
|
|
(defun load-library (library)
|
|
|
|
|
"Load the library named LIBRARY.
|
|
|
|
|
This is an interface to the function `load'."
|
|
|
|
|
(interactive "sLoad library: ")
|
|
|
|
|
(load library))
|
1992-09-14 01:39:31 +00:00
|
|
|
|
|
1994-04-23 02:15:05 +00:00
|
|
|
|
(defun file-local-copy (file &optional buffer)
|
1992-09-14 01:39:31 +00:00
|
|
|
|
"Copy the file FILE into a temporary file on this machine.
|
|
|
|
|
Returns the name of the local copy, or nil, if FILE is directly
|
|
|
|
|
accessible."
|
1994-04-22 23:59:24 +00:00
|
|
|
|
(let ((handler (find-file-name-handler file 'file-local-copy)))
|
1992-09-14 01:39:31 +00:00
|
|
|
|
(if handler
|
|
|
|
|
(funcall handler 'file-local-copy file)
|
|
|
|
|
nil)))
|
1992-10-12 04:45:53 +00:00
|
|
|
|
|
1994-07-05 20:23:13 +00:00
|
|
|
|
(defun file-truename (filename &optional counter prev-dirs)
|
1992-10-12 04:45:53 +00:00
|
|
|
|
"Return the truename of FILENAME, which should be absolute.
|
|
|
|
|
The truename of a file name is found by chasing symbolic links
|
|
|
|
|
both at the level of the file and at the level of the directories
|
1994-07-05 20:23:13 +00:00
|
|
|
|
containing it, until no links are left at any level.
|
|
|
|
|
|
|
|
|
|
The arguments COUNTER and PREV-DIRS are used only in recursive calls.
|
|
|
|
|
Do not specify them in other calls."
|
|
|
|
|
;; COUNTER can be a cons cell whose car is the count of how many more links
|
|
|
|
|
;; to chase before getting an error.
|
|
|
|
|
;; PREV-DIRS can be a cons cell whose car is an alist
|
|
|
|
|
;; of truenames we've just recently computed.
|
1995-06-13 08:27:11 +00:00
|
|
|
|
|
|
|
|
|
;; The last test looks dubious, maybe `+' is meant here? --simon.
|
|
|
|
|
(if (or (string= filename "") (string= filename "~")
|
1993-11-10 20:41:17 +00:00
|
|
|
|
(and (string= (substring filename 0 1) "~")
|
|
|
|
|
(string-match "~[^/]*" filename)))
|
1993-04-30 11:54:04 +00:00
|
|
|
|
(progn
|
|
|
|
|
(setq filename (expand-file-name filename))
|
|
|
|
|
(if (string= filename "")
|
|
|
|
|
(setq filename "/"))))
|
1994-07-05 20:23:13 +00:00
|
|
|
|
(or counter (setq counter (list 100)))
|
1994-07-29 03:45:49 +00:00
|
|
|
|
(let (done
|
|
|
|
|
;; For speed, remove the ange-ftp completion handler from the list.
|
|
|
|
|
;; We know it's not needed here.
|
|
|
|
|
;; For even more speed, do this only on the outermost call.
|
|
|
|
|
(file-name-handler-alist
|
|
|
|
|
(if prev-dirs file-name-handler-alist
|
|
|
|
|
(let ((tem (copy-sequence file-name-handler-alist)))
|
|
|
|
|
(delq (rassq 'ange-ftp-completion-hook-function tem) tem)))))
|
|
|
|
|
(or prev-dirs (setq prev-dirs (list nil)))
|
1997-09-02 19:38:31 +00:00
|
|
|
|
|
|
|
|
|
;; andrewi@harlequin.co.uk - none of the following code (except for
|
|
|
|
|
;; invoking the file-name handler) currently applies on Windows
|
|
|
|
|
;; (ie. there are no native symlinks), but there is an issue with
|
|
|
|
|
;; case differences being ignored by the OS, and short "8.3 DOS"
|
|
|
|
|
;; name aliases existing for all files. (The short names are not
|
|
|
|
|
;; reported by directory-files, but can be used to refer to files.)
|
|
|
|
|
;; It seems appropriate for file-truename to resolve these issues in
|
|
|
|
|
;; the most natural way, which on Windows is to call the function
|
|
|
|
|
;; `w32-long-file-name' - this returns the exact name of a file as
|
|
|
|
|
;; it is stored on disk (expanding short name aliases with the full
|
|
|
|
|
;; name in the process).
|
|
|
|
|
(if (eq system-type 'windows-nt)
|
|
|
|
|
(let ((handler (find-file-name-handler filename 'file-truename))
|
|
|
|
|
newname)
|
|
|
|
|
;; For file name that has a special handler, call handler.
|
|
|
|
|
;; This is so that ange-ftp can save time by doing a no-op.
|
|
|
|
|
(if handler
|
|
|
|
|
(setq filename (funcall handler 'file-truename filename))
|
|
|
|
|
;; If filename contains a wildcard, newname will be the old name.
|
|
|
|
|
(if (string-match "[*?]" filename)
|
|
|
|
|
(setq newname filename)
|
|
|
|
|
;; If filename doesn't exist, newname will be nil.
|
|
|
|
|
(setq newname (w32-long-file-name filename)))
|
|
|
|
|
(setq filename (or newname filename)))
|
|
|
|
|
(setq done t)))
|
|
|
|
|
|
1994-07-05 20:23:13 +00:00
|
|
|
|
;; If this file directly leads to a link, process that iteratively
|
|
|
|
|
;; so that we don't use lots of stack.
|
|
|
|
|
(while (not done)
|
|
|
|
|
(setcar counter (1- (car counter)))
|
|
|
|
|
(if (< (car counter) 0)
|
|
|
|
|
(error "Apparent cycle of symbolic links for %s" filename))
|
|
|
|
|
(let ((handler (find-file-name-handler filename 'file-truename)))
|
|
|
|
|
;; For file name that has a special handler, call handler.
|
|
|
|
|
;; This is so that ange-ftp can save time by doing a no-op.
|
|
|
|
|
(if handler
|
|
|
|
|
(setq filename (funcall handler 'file-truename filename)
|
|
|
|
|
done t)
|
1994-10-02 20:10:39 +00:00
|
|
|
|
(let ((dir (or (file-name-directory filename) default-directory))
|
1994-07-05 20:23:13 +00:00
|
|
|
|
target dirfile)
|
|
|
|
|
;; Get the truename of the directory.
|
|
|
|
|
(setq dirfile (directory-file-name dir))
|
|
|
|
|
;; If these are equal, we have the (or a) root directory.
|
|
|
|
|
(or (string= dir dirfile)
|
|
|
|
|
;; If this is the same dir we last got the truename for,
|
|
|
|
|
;; save time--don't recalculate.
|
|
|
|
|
(if (assoc dir (car prev-dirs))
|
|
|
|
|
(setq dir (cdr (assoc dir (car prev-dirs))))
|
|
|
|
|
(let ((old dir)
|
|
|
|
|
(new (file-name-as-directory (file-truename dirfile counter prev-dirs))))
|
|
|
|
|
(setcar prev-dirs (cons (cons old new) (car prev-dirs)))
|
|
|
|
|
(setq dir new))))
|
|
|
|
|
(if (equal ".." (file-name-nondirectory filename))
|
|
|
|
|
(setq filename
|
|
|
|
|
(directory-file-name (file-name-directory (directory-file-name dir)))
|
|
|
|
|
done t)
|
|
|
|
|
(if (equal "." (file-name-nondirectory filename))
|
|
|
|
|
(setq filename (directory-file-name dir)
|
|
|
|
|
done t)
|
|
|
|
|
;; Put it back on the file name.
|
|
|
|
|
(setq filename (concat dir (file-name-nondirectory filename)))
|
|
|
|
|
;; Is the file name the name of a link?
|
|
|
|
|
(setq target (file-symlink-p filename))
|
|
|
|
|
(if target
|
|
|
|
|
;; Yes => chase that link, then start all over
|
|
|
|
|
;; since the link may point to a directory name that uses links.
|
|
|
|
|
;; We can't safely use expand-file-name here
|
|
|
|
|
;; since target might look like foo/../bar where foo
|
|
|
|
|
;; is itself a link. Instead, we handle . and .. above.
|
|
|
|
|
(setq filename
|
|
|
|
|
(if (file-name-absolute-p target)
|
|
|
|
|
target
|
|
|
|
|
(concat dir target))
|
|
|
|
|
done nil)
|
|
|
|
|
;; No, we are done!
|
|
|
|
|
(setq done t))))))))
|
|
|
|
|
filename))
|
1992-12-12 15:21:45 +00:00
|
|
|
|
|
1993-05-29 20:00:45 +00:00
|
|
|
|
(defun file-chase-links (filename)
|
|
|
|
|
"Chase links in FILENAME until a name that is not a link.
|
|
|
|
|
Does not examine containing directories for links,
|
|
|
|
|
unlike `file-truename'."
|
|
|
|
|
(let (tem (count 100) (newname filename))
|
|
|
|
|
(while (setq tem (file-symlink-p newname))
|
1997-06-27 09:04:14 +00:00
|
|
|
|
(save-match-data
|
|
|
|
|
(if (= count 0)
|
|
|
|
|
(error "Apparent cycle of symbolic links for %s" filename))
|
|
|
|
|
;; In the context of a link, `//' doesn't mean what Emacs thinks.
|
|
|
|
|
(while (string-match "//+" tem)
|
|
|
|
|
(setq tem (replace-match "/" nil nil tem)))
|
|
|
|
|
;; Handle `..' by hand, since it needs to work in the
|
|
|
|
|
;; target of any directory symlink.
|
|
|
|
|
;; This code is not quite complete; it does not handle
|
|
|
|
|
;; embedded .. in some cases such as ./../foo and foo/bar/../../../lose.
|
|
|
|
|
(while (string-match "\\`\\.\\./" tem)
|
|
|
|
|
(setq tem (substring tem 3))
|
|
|
|
|
(setq newname (expand-file-name newname))
|
|
|
|
|
;; Chase links in the default dir of the symlink.
|
|
|
|
|
(setq newname
|
|
|
|
|
(file-chase-links
|
|
|
|
|
(directory-file-name (file-name-directory newname))))
|
|
|
|
|
;; Now find the parent of that dir.
|
|
|
|
|
(setq newname (file-name-directory newname)))
|
|
|
|
|
(setq newname (expand-file-name tem (file-name-directory newname)))
|
|
|
|
|
(setq count (1- count))))
|
1993-05-29 20:00:45 +00:00
|
|
|
|
newname))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-01-05 02:55:09 +00:00
|
|
|
|
(defun switch-to-buffer-other-window (buffer &optional norecord)
|
|
|
|
|
"Select buffer BUFFER in another window.
|
|
|
|
|
Optional second arg NORECORD non-nil means
|
|
|
|
|
do not put this buffer at the front of the list of recently selected ones."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(interactive "BSwitch to buffer in other window: ")
|
|
|
|
|
(let ((pop-up-windows t))
|
1997-01-05 02:55:09 +00:00
|
|
|
|
(pop-to-buffer buffer t norecord)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-01-05 02:55:09 +00:00
|
|
|
|
(defun switch-to-buffer-other-frame (buffer &optional norecord)
|
|
|
|
|
"Switch to buffer BUFFER in another frame.
|
|
|
|
|
Optional second arg NORECORD non-nil means
|
|
|
|
|
do not put this buffer at the front of the list of recently selected ones."
|
1992-07-15 02:24:58 +00:00
|
|
|
|
(interactive "BSwitch to buffer in other frame: ")
|
|
|
|
|
(let ((pop-up-frames t))
|
1997-01-05 02:55:09 +00:00
|
|
|
|
(pop-to-buffer buffer t norecord)
|
1994-07-07 05:07:02 +00:00
|
|
|
|
(raise-frame (window-frame (selected-window)))))
|
1991-10-31 08:30:58 +00:00
|
|
|
|
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(defun find-file (filename)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"Edit file FILENAME.
|
|
|
|
|
Switch to a buffer visiting file FILENAME,
|
1997-05-28 03:35:36 +00:00
|
|
|
|
creating one if none already exists."
|
|
|
|
|
(interactive "FFind file: ")
|
|
|
|
|
(switch-to-buffer (find-file-noselect filename)))
|
1997-02-20 05:44:24 +00:00
|
|
|
|
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(defun find-file-other-window (filename)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"Edit file FILENAME, in another window.
|
|
|
|
|
May create a new window, or reuse an existing one.
|
|
|
|
|
See the function `display-buffer'."
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(interactive "FFind file in other window: ")
|
|
|
|
|
(switch-to-buffer-other-window (find-file-noselect filename)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(defun find-file-other-frame (filename)
|
1992-07-15 02:24:58 +00:00
|
|
|
|
"Edit file FILENAME, in another frame.
|
|
|
|
|
May create a new frame, or reuse an existing one.
|
1991-10-31 08:30:58 +00:00
|
|
|
|
See the function `display-buffer'."
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(interactive "FFind file in other frame: ")
|
|
|
|
|
(switch-to-buffer-other-frame (find-file-noselect filename)))
|
1991-10-31 08:30:58 +00:00
|
|
|
|
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(defun find-file-read-only (filename)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"Edit file FILENAME but don't allow changes.
|
|
|
|
|
Like \\[find-file] but marks buffer as read-only.
|
|
|
|
|
Use \\[toggle-read-only] to permit editing."
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(interactive "fFind file read-only: ")
|
|
|
|
|
(find-file filename)
|
1997-06-18 17:24:59 +00:00
|
|
|
|
(toggle-read-only 1)
|
1993-05-29 22:28:56 +00:00
|
|
|
|
(current-buffer))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(defun find-file-read-only-other-window (filename)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"Edit file FILENAME in another window but don't allow changes.
|
|
|
|
|
Like \\[find-file-other-window] but marks buffer as read-only.
|
|
|
|
|
Use \\[toggle-read-only] to permit editing."
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(interactive "fFind file read-only other window: ")
|
|
|
|
|
(find-file-other-window filename)
|
1997-06-18 17:24:59 +00:00
|
|
|
|
(toggle-read-only 1)
|
1993-05-29 22:28:56 +00:00
|
|
|
|
(current-buffer))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(defun find-file-read-only-other-frame (filename)
|
1992-07-15 02:24:58 +00:00
|
|
|
|
"Edit file FILENAME in another frame but don't allow changes.
|
|
|
|
|
Like \\[find-file-other-frame] but marks buffer as read-only.
|
1991-10-31 08:30:58 +00:00
|
|
|
|
Use \\[toggle-read-only] to permit editing."
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(interactive "fFind file read-only other frame: ")
|
|
|
|
|
(find-file-other-frame filename)
|
1997-06-18 17:24:59 +00:00
|
|
|
|
(toggle-read-only 1)
|
1993-05-29 22:28:56 +00:00
|
|
|
|
(current-buffer))
|
1991-10-31 08:30:58 +00:00
|
|
|
|
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(defun find-alternate-file-other-window (filename)
|
1995-10-11 15:39:13 +00:00
|
|
|
|
"Find file FILENAME as a replacement for the file in the next window.
|
1997-05-28 03:35:36 +00:00
|
|
|
|
This command does not select that window."
|
1995-10-11 15:39:13 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(save-selected-window
|
|
|
|
|
(other-window 1)
|
|
|
|
|
(let ((file buffer-file-name)
|
|
|
|
|
(file-name nil)
|
|
|
|
|
(file-dir nil))
|
|
|
|
|
(and file
|
|
|
|
|
(setq file-name (file-name-nondirectory file)
|
|
|
|
|
file-dir (file-name-directory file)))
|
|
|
|
|
(list (read-file-name
|
1997-05-28 03:35:36 +00:00
|
|
|
|
"Find alternate file: " file-dir nil nil file-name)))))
|
1995-10-11 15:39:13 +00:00
|
|
|
|
(if (one-window-p)
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(find-file-other-window filename)
|
1995-10-11 15:39:13 +00:00
|
|
|
|
(save-selected-window
|
|
|
|
|
(other-window 1)
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(find-alternate-file filename))))
|
1995-10-11 15:39:13 +00:00
|
|
|
|
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(defun find-alternate-file (filename)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"Find file FILENAME, select its buffer, kill previous buffer.
|
|
|
|
|
If the current buffer now contains an empty file that you just visited
|
1997-05-28 03:35:36 +00:00
|
|
|
|
\(presumably by mistake), use this command to visit the file you really want."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(interactive
|
|
|
|
|
(let ((file buffer-file-name)
|
|
|
|
|
(file-name nil)
|
|
|
|
|
(file-dir nil))
|
|
|
|
|
(and file
|
|
|
|
|
(setq file-name (file-name-nondirectory file)
|
|
|
|
|
file-dir (file-name-directory file)))
|
1992-08-06 02:56:35 +00:00
|
|
|
|
(list (read-file-name
|
1997-05-28 03:35:36 +00:00
|
|
|
|
"Find alternate file: " file-dir nil nil file-name))))
|
1994-09-24 01:27:46 +00:00
|
|
|
|
(and (buffer-modified-p) (buffer-file-name)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
;; (not buffer-read-only)
|
|
|
|
|
(not (yes-or-no-p (format "Buffer %s is modified; kill anyway? "
|
|
|
|
|
(buffer-name))))
|
|
|
|
|
(error "Aborted"))
|
|
|
|
|
(let ((obuf (current-buffer))
|
|
|
|
|
(ofile buffer-file-name)
|
1993-05-28 01:22:00 +00:00
|
|
|
|
(onum buffer-file-number)
|
|
|
|
|
(otrue buffer-file-truename)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(oname (buffer-name)))
|
1995-09-17 14:12:02 +00:00
|
|
|
|
(if (get-buffer " **lose**")
|
|
|
|
|
(kill-buffer " **lose**"))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(rename-buffer " **lose**")
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(unlock-buffer)
|
1996-06-12 14:43:51 +00:00
|
|
|
|
(setq buffer-file-name nil)
|
|
|
|
|
(setq buffer-file-number nil)
|
|
|
|
|
(setq buffer-file-truename nil)
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(find-file filename))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(cond ((eq obuf (current-buffer))
|
|
|
|
|
(setq buffer-file-name ofile)
|
1993-05-28 01:22:00 +00:00
|
|
|
|
(setq buffer-file-number onum)
|
|
|
|
|
(setq buffer-file-truename otrue)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(lock-buffer)
|
|
|
|
|
(rename-buffer oname))))
|
|
|
|
|
(or (eq (current-buffer) obuf)
|
|
|
|
|
(kill-buffer obuf))))
|
1997-08-11 22:32:01 +00:00
|
|
|
|
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(defun create-file-buffer (filename)
|
|
|
|
|
"Create a suitably named buffer for visiting FILENAME, and return it.
|
|
|
|
|
FILENAME (sans directory) is used unchanged if that name is free;
|
|
|
|
|
otherwise a string <2> or <3> or ... is appended to get an unused name."
|
|
|
|
|
(let ((lastname (file-name-nondirectory filename)))
|
|
|
|
|
(if (string= lastname "")
|
|
|
|
|
(setq lastname filename))
|
|
|
|
|
(generate-new-buffer lastname)))
|
|
|
|
|
|
1991-10-31 08:30:58 +00:00
|
|
|
|
(defun generate-new-buffer (name)
|
|
|
|
|
"Create and return a buffer with a name based on NAME.
|
1992-10-21 04:52:59 +00:00
|
|
|
|
Choose the buffer's name using `generate-new-buffer-name'."
|
1991-10-31 08:30:58 +00:00
|
|
|
|
(get-buffer-create (generate-new-buffer-name name)))
|
|
|
|
|
|
1996-12-16 01:33:02 +00:00
|
|
|
|
(defvar automount-dir-prefix "^/tmp_mnt/"
|
1992-07-17 22:17:57 +00:00
|
|
|
|
"Regexp to match the automounter prefix in a directory name.")
|
|
|
|
|
|
1992-12-26 08:46:31 +00:00
|
|
|
|
(defvar abbreviated-home-dir nil
|
1993-10-12 20:57:36 +00:00
|
|
|
|
"The user's homedir abbreviated according to `directory-abbrev-list'.")
|
1992-12-26 08:46:31 +00:00
|
|
|
|
|
1991-10-31 08:30:58 +00:00
|
|
|
|
(defun abbreviate-file-name (filename)
|
1992-10-21 04:52:59 +00:00
|
|
|
|
"Return a version of FILENAME shortened using `directory-abbrev-alist'.
|
1991-10-31 08:30:58 +00:00
|
|
|
|
This also substitutes \"~\" for the user's home directory.
|
1992-10-21 04:52:59 +00:00
|
|
|
|
Type \\[describe-variable] directory-abbrev-alist RET for more information."
|
1992-07-17 22:17:57 +00:00
|
|
|
|
;; Get rid of the prefixes added by the automounter.
|
1996-06-28 08:28:51 +00:00
|
|
|
|
(if (and automount-dir-prefix
|
|
|
|
|
(string-match automount-dir-prefix filename)
|
1992-07-17 22:17:57 +00:00
|
|
|
|
(file-exists-p (file-name-directory
|
|
|
|
|
(substring filename (1- (match-end 0))))))
|
|
|
|
|
(setq filename (substring filename (1- (match-end 0)))))
|
1991-10-31 08:30:58 +00:00
|
|
|
|
(let ((tail directory-abbrev-alist))
|
1992-12-26 08:46:31 +00:00
|
|
|
|
;; If any elt of directory-abbrev-alist matches this name,
|
|
|
|
|
;; abbreviate accordingly.
|
1991-10-31 08:30:58 +00:00
|
|
|
|
(while tail
|
|
|
|
|
(if (string-match (car (car tail)) filename)
|
|
|
|
|
(setq filename
|
|
|
|
|
(concat (cdr (car tail)) (substring filename (match-end 0)))))
|
|
|
|
|
(setq tail (cdr tail)))
|
1992-12-26 08:46:31 +00:00
|
|
|
|
;; Compute and save the abbreviated homedir name.
|
|
|
|
|
;; We defer computing this until the first time it's needed, to
|
|
|
|
|
;; give time for directory-abbrev-alist to be set properly.
|
1993-06-10 20:44:12 +00:00
|
|
|
|
;; We include a slash at the end, to avoid spurious matches
|
|
|
|
|
;; such as `/usr/foobar' when the home dir is `/usr/foo'.
|
1992-12-26 08:46:31 +00:00
|
|
|
|
(or abbreviated-home-dir
|
|
|
|
|
(setq abbreviated-home-dir
|
|
|
|
|
(let ((abbreviated-home-dir "$foo"))
|
1993-06-13 01:57:02 +00:00
|
|
|
|
(concat "^" (abbreviate-file-name (expand-file-name "~"))
|
|
|
|
|
"\\(/\\|$\\)"))))
|
1995-12-24 09:25:19 +00:00
|
|
|
|
|
1992-12-26 08:46:31 +00:00
|
|
|
|
;; If FILENAME starts with the abbreviated homedir,
|
|
|
|
|
;; make it start with `~' instead.
|
1994-01-14 18:06:40 +00:00
|
|
|
|
(if (and (string-match abbreviated-home-dir filename)
|
|
|
|
|
;; If the home dir is just /, don't change it.
|
|
|
|
|
(not (and (= (match-end 0) 1)
|
1994-05-10 21:00:32 +00:00
|
|
|
|
(= (aref filename 0) ?/)))
|
1996-01-01 22:51:51 +00:00
|
|
|
|
;; MS-DOS root directories can come with a drive letter;
|
|
|
|
|
;; Novell Netware allows drive letters beyond `Z:'.
|
1995-12-24 09:25:19 +00:00
|
|
|
|
(not (and (or (eq system-type 'ms-dos)
|
1994-11-01 05:48:21 +00:00
|
|
|
|
(eq system-type 'windows-nt))
|
1994-05-10 21:00:32 +00:00
|
|
|
|
(save-match-data
|
1996-01-01 22:51:51 +00:00
|
|
|
|
(string-match "^[a-zA-`]:/$" filename)))))
|
1991-10-31 08:30:58 +00:00
|
|
|
|
(setq filename
|
1993-05-03 03:37:22 +00:00
|
|
|
|
(concat "~"
|
1993-06-13 01:57:02 +00:00
|
|
|
|
(substring filename (match-beginning 1) (match-end 1))
|
1993-05-03 03:37:22 +00:00
|
|
|
|
(substring filename (match-end 0)))))
|
1991-10-31 08:30:58 +00:00
|
|
|
|
filename))
|
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom find-file-not-true-dirname-list nil
|
1993-05-02 12:46:26 +00:00
|
|
|
|
"*List of logical names for which visiting shouldn't save the true dirname.
|
|
|
|
|
On VMS, when you visit a file using a logical name that searches a path,
|
|
|
|
|
you may or may not want the visited file name to record the specific
|
|
|
|
|
directory where the file was found. If you *do not* want that, add the logical
|
1997-05-05 22:04:00 +00:00
|
|
|
|
name to this list as a string."
|
|
|
|
|
:type '(repeat (string :tag "Name"))
|
|
|
|
|
:group 'find-file)
|
1993-05-02 12:46:26 +00:00
|
|
|
|
|
1994-03-09 00:23:30 +00:00
|
|
|
|
(defun find-buffer-visiting (filename)
|
|
|
|
|
"Return the buffer visiting file FILENAME (a string).
|
|
|
|
|
This is like `get-file-buffer', except that it checks for any buffer
|
|
|
|
|
visiting the same file, possibly under a different name.
|
|
|
|
|
If there is no such live buffer, return nil."
|
|
|
|
|
(let ((buf (get-file-buffer filename))
|
|
|
|
|
(truename (abbreviate-file-name (file-truename filename))))
|
|
|
|
|
(or buf
|
|
|
|
|
(let ((list (buffer-list)) found)
|
|
|
|
|
(while (and (not found) list)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (car list))
|
|
|
|
|
(if (and buffer-file-name
|
|
|
|
|
(string= buffer-file-truename truename))
|
|
|
|
|
(setq found (car list))))
|
|
|
|
|
(setq list (cdr list)))
|
|
|
|
|
found)
|
1994-03-09 06:20:32 +00:00
|
|
|
|
(let ((number (nthcdr 10 (file-attributes truename)))
|
1994-03-09 00:23:30 +00:00
|
|
|
|
(list (buffer-list)) found)
|
1996-06-04 16:17:22 +00:00
|
|
|
|
(and buffer-file-numbers-unique
|
|
|
|
|
number
|
1994-03-10 17:23:56 +00:00
|
|
|
|
(while (and (not found) list)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer (car list))
|
1994-04-14 02:27:36 +00:00
|
|
|
|
(if (and buffer-file-name
|
|
|
|
|
(equal buffer-file-number number)
|
1994-03-10 17:23:56 +00:00
|
|
|
|
;; Verify this buffer's file number
|
|
|
|
|
;; still belongs to its file.
|
|
|
|
|
(file-exists-p buffer-file-name)
|
|
|
|
|
(equal (nthcdr 10 (file-attributes buffer-file-name))
|
|
|
|
|
number))
|
|
|
|
|
(setq found (car list))))
|
|
|
|
|
(setq list (cdr list))))
|
1994-03-09 00:23:30 +00:00
|
|
|
|
found))))
|
1997-08-11 22:32:01 +00:00
|
|
|
|
|
1998-10-16 19:20:55 +00:00
|
|
|
|
(defcustom find-file-wildcards t
|
|
|
|
|
"*Non-nil means file-visiting commands should handle wildcards.
|
|
|
|
|
For example, if you specify `*.c', that would visit all the files
|
|
|
|
|
whose names match the pattern."
|
|
|
|
|
:group 'files
|
|
|
|
|
:type 'boolean)
|
|
|
|
|
|
1995-08-14 16:05:46 +00:00
|
|
|
|
(defun find-file-noselect (filename &optional nowarn rawfile)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"Read file FILENAME into a buffer and return the buffer.
|
|
|
|
|
If a buffer exists visiting FILENAME, return that one, but
|
|
|
|
|
verify that the file has not changed since visited or saved.
|
1997-02-20 05:44:24 +00:00
|
|
|
|
The buffer is not selected, just returned to the caller.
|
|
|
|
|
Optional first arg NOWARN non-nil means suppress any warning messages.
|
1997-08-04 03:07:28 +00:00
|
|
|
|
Optional second arg RAWFILE non-nil means the file is read literally."
|
1992-07-17 22:17:57 +00:00
|
|
|
|
(setq filename
|
|
|
|
|
(abbreviate-file-name
|
|
|
|
|
(expand-file-name filename)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(if (file-directory-p filename)
|
|
|
|
|
(if find-file-run-dired
|
1995-11-10 19:12:42 +00:00
|
|
|
|
(dired-noselect (if find-file-visit-truename
|
|
|
|
|
(abbreviate-file-name (file-truename filename))
|
|
|
|
|
filename))
|
1996-01-24 23:25:44 +00:00
|
|
|
|
(error "%s is a directory" filename))
|
1998-10-16 19:20:55 +00:00
|
|
|
|
(if (and find-file-wildcards
|
1999-01-03 15:03:32 +00:00
|
|
|
|
(not (string-match "\\`/:" filename))
|
1998-10-16 19:20:55 +00:00
|
|
|
|
(string-match "[[*?]" filename))
|
|
|
|
|
(let ((files (file-expand-wildcards filename t))
|
|
|
|
|
(find-file-wildcards nil))
|
1999-01-03 15:03:32 +00:00
|
|
|
|
(if (null files)
|
|
|
|
|
(error "No files match `%s'" filename))
|
1998-10-16 19:20:55 +00:00
|
|
|
|
(car (mapcar #'(lambda (fn) (find-file-noselect fn))
|
|
|
|
|
files)))
|
|
|
|
|
(let* ((buf (get-file-buffer filename))
|
|
|
|
|
(truename (abbreviate-file-name (file-truename filename)))
|
|
|
|
|
(number (nthcdr 10 (file-attributes truename)))
|
|
|
|
|
;; Find any buffer for a file which has same truename.
|
|
|
|
|
(other (and (not buf) (find-buffer-visiting filename))))
|
|
|
|
|
;; Let user know if there is a buffer with the same truename.
|
|
|
|
|
(if other
|
|
|
|
|
(progn
|
|
|
|
|
(or nowarn
|
|
|
|
|
(string-equal filename (buffer-file-name other))
|
|
|
|
|
(message "%s and %s are the same file"
|
|
|
|
|
filename (buffer-file-name other)))
|
|
|
|
|
;; Optionally also find that buffer.
|
|
|
|
|
(if (or find-file-existing-other-name find-file-visit-truename)
|
|
|
|
|
(setq buf other))))
|
|
|
|
|
(if buf
|
|
|
|
|
;; We are using an existing buffer.
|
|
|
|
|
(progn
|
|
|
|
|
(or nowarn
|
|
|
|
|
(verify-visited-file-modtime buf)
|
|
|
|
|
(cond ((not (file-exists-p filename))
|
|
|
|
|
(error "File %s no longer exists!" filename))
|
|
|
|
|
;; Certain files should be reverted automatically
|
|
|
|
|
;; if they have changed on disk and not in the buffer.
|
|
|
|
|
((and (not (buffer-modified-p buf))
|
|
|
|
|
(let ((tail revert-without-query)
|
|
|
|
|
(found nil))
|
|
|
|
|
(while tail
|
|
|
|
|
(if (string-match (car tail) filename)
|
|
|
|
|
(setq found t))
|
|
|
|
|
(setq tail (cdr tail)))
|
|
|
|
|
found))
|
|
|
|
|
(with-current-buffer buf
|
|
|
|
|
(message "Reverting file %s..." filename)
|
|
|
|
|
(revert-buffer t t)
|
|
|
|
|
(message "Reverting file %s...done" filename)))
|
|
|
|
|
((yes-or-no-p
|
|
|
|
|
(if (string= (file-name-nondirectory filename)
|
|
|
|
|
(buffer-name buf))
|
|
|
|
|
(format
|
|
|
|
|
(if (buffer-modified-p buf)
|
|
|
|
|
"File %s changed on disk. Discard your edits? "
|
|
|
|
|
"File %s changed on disk. Reread from disk? ")
|
|
|
|
|
(file-name-nondirectory filename))
|
1998-06-09 02:49:43 +00:00
|
|
|
|
(format
|
|
|
|
|
(if (buffer-modified-p buf)
|
1998-10-16 19:20:55 +00:00
|
|
|
|
"File %s changed on disk. Discard your edits in %s? "
|
|
|
|
|
"File %s changed on disk. Reread from disk into %s? ")
|
|
|
|
|
(file-name-nondirectory filename)
|
|
|
|
|
(buffer-name buf))))
|
|
|
|
|
(with-current-buffer buf
|
|
|
|
|
(revert-buffer t t)))))
|
|
|
|
|
(with-current-buffer buf
|
|
|
|
|
(when (not (eq (not (null rawfile))
|
|
|
|
|
(not (null find-file-literally))))
|
|
|
|
|
(if (buffer-modified-p)
|
1998-06-09 02:49:43 +00:00
|
|
|
|
(if (y-or-n-p (if rawfile
|
1998-10-16 19:20:55 +00:00
|
|
|
|
"Save file and revisit literally? "
|
|
|
|
|
"Save file and revisit non-literally? "))
|
|
|
|
|
(progn
|
|
|
|
|
(save-buffer)
|
|
|
|
|
(find-file-noselect-1 buf filename nowarn
|
|
|
|
|
rawfile truename number))
|
|
|
|
|
(if (y-or-n-p (if rawfile
|
|
|
|
|
"Discard your edits and revisit file literally? "
|
|
|
|
|
"Discard your edits and revisit file non-literally? "))
|
|
|
|
|
(find-file-noselect-1 buf filename nowarn
|
|
|
|
|
rawfile truename number)
|
|
|
|
|
(error (if rawfile "File already visited non-literally"
|
|
|
|
|
"File already visited literally"))))
|
|
|
|
|
(if (y-or-n-p (if rawfile
|
|
|
|
|
"Revisit file literally? "
|
|
|
|
|
"Revisit file non-literally? "))
|
|
|
|
|
(find-file-noselect-1 buf filename nowarn
|
|
|
|
|
rawfile truename number)
|
|
|
|
|
(error (if rawfile "File already visited non-literally"
|
|
|
|
|
"File already visited literally"))))))
|
|
|
|
|
;; Return the buffer we are using.
|
|
|
|
|
buf)
|
|
|
|
|
;; Create a new buffer.
|
|
|
|
|
(setq buf (create-file-buffer filename))
|
|
|
|
|
(set-buffer-major-mode buf)
|
|
|
|
|
;; find-file-noselect-1 may use a different buffer.
|
|
|
|
|
(find-file-noselect-1 buf filename nowarn
|
|
|
|
|
rawfile truename number))))))
|
1998-06-09 02:49:43 +00:00
|
|
|
|
|
|
|
|
|
(defun find-file-noselect-1 (buf filename nowarn rawfile truename number)
|
1998-06-13 04:44:32 +00:00
|
|
|
|
(let ((inhibit-read-only t)
|
|
|
|
|
error)
|
1998-06-09 02:49:43 +00:00
|
|
|
|
(with-current-buffer buf
|
|
|
|
|
(kill-local-variable 'find-file-literally)
|
1998-06-23 15:49:54 +00:00
|
|
|
|
;; Needed in case we are re-visiting the file with a different
|
|
|
|
|
;; text representation.
|
1998-07-12 03:14:44 +00:00
|
|
|
|
(kill-local-variable 'buffer-file-coding-system)
|
1998-06-09 02:49:43 +00:00
|
|
|
|
(erase-buffer)
|
|
|
|
|
(and (default-value 'enable-multibyte-characters)
|
|
|
|
|
(not rawfile)
|
|
|
|
|
(set-buffer-multibyte t))
|
|
|
|
|
(if rawfile
|
|
|
|
|
(condition-case ()
|
|
|
|
|
(insert-file-contents-literally filename t)
|
|
|
|
|
(file-error
|
|
|
|
|
(when (and (file-exists-p filename)
|
|
|
|
|
(not (file-readable-p filename)))
|
|
|
|
|
(kill-buffer buf)
|
|
|
|
|
(signal 'file-error (list "File is not readable"
|
|
|
|
|
filename)))
|
|
|
|
|
;; Unconditionally set error
|
|
|
|
|
(setq error t)))
|
|
|
|
|
(condition-case ()
|
|
|
|
|
(insert-file-contents filename t)
|
|
|
|
|
(file-error
|
|
|
|
|
(when (and (file-exists-p filename)
|
|
|
|
|
(not (file-readable-p filename)))
|
|
|
|
|
(kill-buffer buf)
|
|
|
|
|
(signal 'file-error (list "File is not readable"
|
|
|
|
|
filename)))
|
|
|
|
|
;; Run find-file-not-found-hooks until one returns non-nil.
|
|
|
|
|
(or (run-hook-with-args-until-success 'find-file-not-found-hooks)
|
|
|
|
|
;; If they fail too, set error.
|
|
|
|
|
(setq error t)))))
|
|
|
|
|
;; Find the file's truename, and maybe use that as visited name.
|
|
|
|
|
(setq buffer-file-truename truename)
|
|
|
|
|
(setq buffer-file-number number)
|
|
|
|
|
;; On VMS, we may want to remember which directory in a search list
|
|
|
|
|
;; the file was found in.
|
|
|
|
|
(and (eq system-type 'vax-vms)
|
|
|
|
|
(let (logical)
|
|
|
|
|
(if (string-match ":" (file-name-directory filename))
|
|
|
|
|
(setq logical (substring (file-name-directory filename)
|
|
|
|
|
0 (match-beginning 0))))
|
|
|
|
|
(not (member logical find-file-not-true-dirname-list)))
|
|
|
|
|
(setq buffer-file-name buffer-file-truename))
|
|
|
|
|
(if find-file-visit-truename
|
|
|
|
|
(setq buffer-file-name
|
|
|
|
|
(setq filename
|
|
|
|
|
(expand-file-name buffer-file-truename))))
|
|
|
|
|
;; Set buffer's default directory to that of the file.
|
|
|
|
|
(setq default-directory (file-name-directory filename))
|
|
|
|
|
;; Turn off backup files for certain file names. Since
|
|
|
|
|
;; this is a permanent local, the major mode won't eliminate it.
|
|
|
|
|
(and (not (funcall backup-enable-predicate buffer-file-name))
|
|
|
|
|
(progn
|
|
|
|
|
(make-local-variable 'backup-inhibited)
|
|
|
|
|
(setq backup-inhibited t)))
|
|
|
|
|
(if rawfile
|
|
|
|
|
(progn
|
|
|
|
|
(set-buffer-multibyte nil)
|
|
|
|
|
(setq buffer-file-coding-system 'no-conversion)
|
|
|
|
|
(make-local-variable 'find-file-literally)
|
|
|
|
|
(setq find-file-literally t))
|
1998-06-23 15:49:54 +00:00
|
|
|
|
(after-find-file error (not nowarn)))
|
|
|
|
|
(current-buffer))))
|
1997-08-11 22:32:01 +00:00
|
|
|
|
|
|
|
|
|
(defun insert-file-contents-literally (filename &optional visit beg end replace)
|
|
|
|
|
"Like `insert-file-contents', but only reads in the file literally.
|
|
|
|
|
A buffer may be modified in several ways after reading into the buffer,
|
|
|
|
|
to Emacs features such as format decoding, character code
|
|
|
|
|
conversion, find-file-hooks, automatic uncompression, etc.
|
|
|
|
|
|
|
|
|
|
This function ensures that none of these modifications will take place."
|
|
|
|
|
(let ((format-alist nil)
|
|
|
|
|
(after-insert-file-functions nil)
|
|
|
|
|
(coding-system-for-read 'no-conversion)
|
|
|
|
|
(coding-system-for-write 'no-conversion)
|
|
|
|
|
(jka-compr-compression-info-list nil)
|
|
|
|
|
(find-buffer-file-type-function
|
|
|
|
|
(if (fboundp 'find-buffer-file-type)
|
|
|
|
|
(symbol-function 'find-buffer-file-type)
|
|
|
|
|
nil)))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn
|
|
|
|
|
(fset 'find-buffer-file-type (lambda (filename) t))
|
|
|
|
|
(insert-file-contents filename visit beg end replace))
|
|
|
|
|
(if find-buffer-file-type-function
|
|
|
|
|
(fset 'find-buffer-file-type find-buffer-file-type-function)
|
|
|
|
|
(fmakunbound 'find-buffer-file-type)))))
|
|
|
|
|
|
|
|
|
|
(defun insert-file-literally (filename)
|
|
|
|
|
"Insert contents of file FILENAME into buffer after point with no conversion.
|
|
|
|
|
|
|
|
|
|
This function is meant for the user to run interactively.
|
|
|
|
|
Don't call it from programs! Use `insert-file-contents-literally' instead.
|
|
|
|
|
\(Its calling sequence is different; see its documentation)."
|
|
|
|
|
(interactive "*fInsert file literally: ")
|
|
|
|
|
(if (file-directory-p filename)
|
|
|
|
|
(signal 'file-error (list "Opening input file" "file is a directory"
|
|
|
|
|
filename)))
|
|
|
|
|
(let ((tem (insert-file-contents-literally filename)))
|
|
|
|
|
(push-mark (+ (point) (car (cdr tem))))))
|
|
|
|
|
|
|
|
|
|
(defvar find-file-literally nil
|
|
|
|
|
"Non-nil if this buffer was made by `find-file-literally' or equivalent.
|
|
|
|
|
This is a permanent local.")
|
|
|
|
|
(put 'find-file-literally 'permanent-local t)
|
1997-07-08 09:57:37 +00:00
|
|
|
|
|
|
|
|
|
(defun find-file-literally (filename)
|
|
|
|
|
"Visit file FILENAME with no conversion of any kind.
|
|
|
|
|
Format conversion and character code conversion are both disabled,
|
|
|
|
|
and multibyte characters are disabled in the resulting buffer.
|
1997-08-04 03:07:28 +00:00
|
|
|
|
The major mode used is Fundamental mode regardless of the file name,
|
|
|
|
|
and local variable specifications in the file are ignored.
|
1997-08-11 22:32:01 +00:00
|
|
|
|
Automatic uncompression is also disabled.
|
|
|
|
|
|
|
|
|
|
You cannot absolutely rely on this function to result in
|
1997-08-27 17:25:46 +00:00
|
|
|
|
visiting the file literally. If Emacs already has a buffer
|
1997-08-11 22:32:01 +00:00
|
|
|
|
which is visiting the file, you get the existing buffer,
|
|
|
|
|
regardless of whether it was created literally or not.
|
|
|
|
|
|
|
|
|
|
In a Lisp program, if you want to be sure of accessing a file's
|
|
|
|
|
contents literally, you should create a temporary buffer and then read
|
|
|
|
|
the file contents into it using `insert-file-contents-literally'."
|
1997-07-08 09:57:37 +00:00
|
|
|
|
(interactive "FFind file literally: ")
|
1997-08-11 22:32:01 +00:00
|
|
|
|
(switch-to-buffer (find-file-noselect filename nil t)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1994-08-28 07:37:42 +00:00
|
|
|
|
(defvar after-find-file-from-revert-buffer nil)
|
|
|
|
|
|
1994-08-17 21:46:05 +00:00
|
|
|
|
(defun after-find-file (&optional error warn noauto
|
1995-12-25 21:05:31 +00:00
|
|
|
|
after-find-file-from-revert-buffer
|
|
|
|
|
nomodes)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"Called after finding a file and by the default revert function.
|
|
|
|
|
Sets buffer mode, parses local variables.
|
1992-09-24 07:23:59 +00:00
|
|
|
|
Optional args ERROR, WARN, and NOAUTO: ERROR non-nil means there was an
|
1991-07-19 14:42:53 +00:00
|
|
|
|
error in reading the file. WARN non-nil means warn if there
|
|
|
|
|
exists an auto-save file more recent than the visited file.
|
1992-09-24 07:23:59 +00:00
|
|
|
|
NOAUTO means don't mess with auto-save mode.
|
1994-08-17 21:46:05 +00:00
|
|
|
|
Fourth arg AFTER-FIND-FILE-FROM-REVERT-BUFFER non-nil
|
|
|
|
|
means this call was from `revert-buffer'.
|
1995-12-25 21:05:31 +00:00
|
|
|
|
Fifth arg NOMODES non-nil means don't alter the file's modes.
|
|
|
|
|
Finishes by calling the functions in `find-file-hooks'
|
|
|
|
|
unless NOMODES is non-nil."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(setq buffer-read-only (not (file-writable-p buffer-file-name)))
|
|
|
|
|
(if noninteractive
|
|
|
|
|
nil
|
|
|
|
|
(let* (not-serious
|
|
|
|
|
(msg
|
|
|
|
|
(cond ((and error (file-attributes buffer-file-name))
|
|
|
|
|
(setq buffer-read-only t)
|
1993-08-06 18:03:10 +00:00
|
|
|
|
"File exists, but cannot be read.")
|
1991-07-19 14:42:53 +00:00
|
|
|
|
((not buffer-read-only)
|
|
|
|
|
(if (and warn
|
|
|
|
|
(file-newer-than-file-p (make-auto-save-file-name)
|
|
|
|
|
buffer-file-name))
|
1996-04-19 09:32:55 +00:00
|
|
|
|
(format "%s has auto save data; consider M-x recover-file"
|
|
|
|
|
(file-name-nondirectory buffer-file-name))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(setq not-serious t)
|
|
|
|
|
(if error "(New file)" nil)))
|
|
|
|
|
((not error)
|
|
|
|
|
(setq not-serious t)
|
|
|
|
|
"Note: file is write protected")
|
|
|
|
|
((file-attributes (directory-file-name default-directory))
|
|
|
|
|
"File not found and directory write-protected")
|
1992-11-03 07:07:02 +00:00
|
|
|
|
((file-exists-p (file-name-directory buffer-file-name))
|
|
|
|
|
(setq buffer-read-only nil))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(t
|
1991-10-31 08:30:58 +00:00
|
|
|
|
(setq buffer-read-only nil)
|
1992-11-03 07:07:02 +00:00
|
|
|
|
(if (file-exists-p (file-name-directory (directory-file-name (file-name-directory buffer-file-name))))
|
1998-12-10 02:30:03 +00:00
|
|
|
|
"Use M-x make-directory RET RET to create the directory"
|
|
|
|
|
"Use C-u M-x make-directory RET RET to create directory and its parents")))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(if msg
|
|
|
|
|
(progn
|
|
|
|
|
(message msg)
|
|
|
|
|
(or not-serious (sit-for 1 nil t)))))
|
1992-09-24 07:23:59 +00:00
|
|
|
|
(if (and auto-save-default (not noauto))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(auto-save-mode t)))
|
1995-12-25 21:05:31 +00:00
|
|
|
|
(if nomodes
|
|
|
|
|
nil
|
|
|
|
|
(normal-mode t)
|
1997-06-18 17:24:59 +00:00
|
|
|
|
(if (and buffer-read-only view-read-only
|
|
|
|
|
(not (eq (get major-mode 'mode-class) 'special)))
|
|
|
|
|
(view-mode-enter))
|
1995-12-25 21:05:31 +00:00
|
|
|
|
(run-hooks 'find-file-hooks)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
(defun normal-mode (&optional find-file)
|
|
|
|
|
"Choose the major mode for this buffer automatically.
|
|
|
|
|
Also sets up any specified local variables of the file.
|
|
|
|
|
Uses the visited file name, the -*- line, and the local variables spec.
|
|
|
|
|
|
|
|
|
|
This function is called automatically from `find-file'. In that case,
|
1998-11-07 02:01:59 +00:00
|
|
|
|
we may set up the file-specified mode and local variables,
|
|
|
|
|
depending on the value of `enable-local-variables': if it is t, we do;
|
|
|
|
|
if it is nil, we don't; otherwise, we query.
|
|
|
|
|
In addition, if `local-enable-local-variables' is nil, we do
|
|
|
|
|
not set local variables (though we do notice a mode specified with -*-.)
|
|
|
|
|
|
|
|
|
|
`enable-local-variables' is ignored if you run `normal-mode' interactively,
|
|
|
|
|
or from Lisp without specifying the optional argument FIND-FILE;
|
|
|
|
|
in that case, this function acts as if `enable-local-variables' were t."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(or find-file (funcall (or default-major-mode 'fundamental-mode)))
|
|
|
|
|
(condition-case err
|
|
|
|
|
(set-auto-mode)
|
|
|
|
|
(error (message "File mode specification error: %s"
|
|
|
|
|
(prin1-to-string err))))
|
|
|
|
|
(condition-case err
|
1992-02-27 23:17:44 +00:00
|
|
|
|
(let ((enable-local-variables (or (not find-file)
|
|
|
|
|
enable-local-variables)))
|
|
|
|
|
(hack-local-variables))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(error (message "File local-variables error: %s"
|
|
|
|
|
(prin1-to-string err)))))
|
|
|
|
|
|
1995-11-29 21:18:05 +00:00
|
|
|
|
(defvar auto-mode-alist
|
1996-01-01 22:51:51 +00:00
|
|
|
|
'(("\\.te?xt\\'" . text-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("\\.c\\'" . c-mode)
|
|
|
|
|
("\\.h\\'" . c-mode)
|
|
|
|
|
("\\.tex\\'" . tex-mode)
|
|
|
|
|
("\\.ltx\\'" . latex-mode)
|
|
|
|
|
("\\.el\\'" . emacs-lisp-mode)
|
|
|
|
|
("\\.scm\\'" . scheme-mode)
|
|
|
|
|
("\\.l\\'" . lisp-mode)
|
|
|
|
|
("\\.lisp\\'" . lisp-mode)
|
|
|
|
|
("\\.f\\'" . fortran-mode)
|
1996-04-21 02:01:31 +00:00
|
|
|
|
("\\.F\\'" . fortran-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("\\.for\\'" . fortran-mode)
|
|
|
|
|
("\\.p\\'" . pascal-mode)
|
|
|
|
|
("\\.pas\\'" . pascal-mode)
|
|
|
|
|
("\\.ad[abs]\\'" . ada-mode)
|
1997-11-23 02:13:26 +00:00
|
|
|
|
("\\.\\([pP][Llm]\\|al\\)\\'" . perl-mode)
|
1997-05-10 05:36:01 +00:00
|
|
|
|
("\\.s?html?\\'" . html-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("\\.cc\\'" . c++-mode)
|
|
|
|
|
("\\.hh\\'" . c++-mode)
|
1996-10-10 21:39:13 +00:00
|
|
|
|
("\\.hpp\\'" . c++-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("\\.C\\'" . c++-mode)
|
|
|
|
|
("\\.H\\'" . c++-mode)
|
|
|
|
|
("\\.cpp\\'" . c++-mode)
|
|
|
|
|
("\\.cxx\\'" . c++-mode)
|
|
|
|
|
("\\.hxx\\'" . c++-mode)
|
|
|
|
|
("\\.c\\+\\+\\'" . c++-mode)
|
|
|
|
|
("\\.h\\+\\+\\'" . c++-mode)
|
1996-10-28 10:01:55 +00:00
|
|
|
|
("\\.m\\'" . objc-mode)
|
1996-04-11 14:45:09 +00:00
|
|
|
|
("\\.java\\'" . java-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("\\.mk\\'" . makefile-mode)
|
1998-08-01 19:02:22 +00:00
|
|
|
|
("\\(M\\|m\\|GNUm\\)akefile\\(\\.in\\)?\\'" . makefile-mode)
|
1997-12-11 07:07:42 +00:00
|
|
|
|
("\\.am\\'" . makefile-mode) ;For Automake.
|
1992-02-27 23:17:44 +00:00
|
|
|
|
;;; Less common extensions come here
|
|
|
|
|
;;; so more common ones above are found faster.
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("\\.texinfo\\'" . texinfo-mode)
|
1996-01-01 22:51:51 +00:00
|
|
|
|
("\\.te?xi\\'" . texinfo-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("\\.s\\'" . asm-mode)
|
1995-12-19 20:28:26 +00:00
|
|
|
|
("\\.S\\'" . asm-mode)
|
|
|
|
|
("\\.asm\\'" . asm-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("ChangeLog\\'" . change-log-mode)
|
1998-08-01 19:02:22 +00:00
|
|
|
|
("change\\.log\\'" . change-log-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("changelo\\'" . change-log-mode)
|
1998-08-01 19:02:22 +00:00
|
|
|
|
("ChangeLog\\.[0-9]+\\'" . change-log-mode)
|
1996-09-25 22:37:27 +00:00
|
|
|
|
;; for MSDOS and MS-Windows (which are case-insensitive)
|
|
|
|
|
("changelog\\'" . change-log-mode)
|
1998-08-01 19:02:22 +00:00
|
|
|
|
("changelog\\.[0-9]+\\'" . change-log-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode)
|
|
|
|
|
("\\.scm\\.[0-9]*\\'" . scheme-mode)
|
1996-02-02 18:47:34 +00:00
|
|
|
|
("\\.[ck]?sh\\'\\|\\.shar\\'\\|/\\.z?profile\\'" . sh-mode)
|
1998-07-26 14:04:41 +00:00
|
|
|
|
("\\(/\\|\\`\\)\\.\\(bash_profile\\|z?login\\|bash_login\\|z?logout\\)\\'" . sh-mode)
|
|
|
|
|
("\\(/\\|\\`\\)\\.\\(bash_logout\\|[kz]shrc\\|bashrc\\|t?cshrc\\|esrc\\)\\'" . sh-mode)
|
|
|
|
|
("\\(/\\|\\`\\)\\.\\([kz]shenv\\|xinitrc\\|startxrc\\|xsession\\)\\'" . sh-mode)
|
1998-10-20 18:48:06 +00:00
|
|
|
|
("\\.m?spec$" . sh-mode)
|
1998-07-25 00:19:51 +00:00
|
|
|
|
("\\.mm\\'" . nroff-mode)
|
|
|
|
|
("\\.me\\'" . nroff-mode)
|
|
|
|
|
("\\.ms\\'" . nroff-mode)
|
|
|
|
|
("\\.man\\'" . nroff-mode)
|
1995-07-17 22:48:06 +00:00
|
|
|
|
;;; The following should come after the ChangeLog pattern
|
|
|
|
|
;;; for the sake of ChangeLog.1, etc.
|
|
|
|
|
;;; and after the .scm.[0-9] pattern too.
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("\\.[12345678]\\'" . nroff-mode)
|
|
|
|
|
("\\.TeX\\'" . tex-mode)
|
|
|
|
|
("\\.sty\\'" . latex-mode)
|
|
|
|
|
("\\.cls\\'" . latex-mode) ;LaTeX 2e class
|
1997-07-23 20:56:12 +00:00
|
|
|
|
("\\.clo\\'" . latex-mode) ;LaTeX 2e class option
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("\\.bbl\\'" . latex-mode)
|
|
|
|
|
("\\.bib\\'" . bibtex-mode)
|
1999-01-11 13:55:15 +00:00
|
|
|
|
("\\.sql\\'" . sql-mode)
|
1997-09-06 22:18:47 +00:00
|
|
|
|
("\\.m4\\'" . m4-mode)
|
|
|
|
|
("\\.mc\\'" . m4-mode)
|
1997-07-23 20:56:12 +00:00
|
|
|
|
("\\.mf\\'" . metafont-mode)
|
|
|
|
|
("\\.mp\\'" . metapost-mode)
|
1998-01-18 03:21:25 +00:00
|
|
|
|
("\\.vhdl?\\'" . vhdl-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("\\.article\\'" . text-mode)
|
|
|
|
|
("\\.letter\\'" . text-mode)
|
|
|
|
|
("\\.tcl\\'" . tcl-mode)
|
1996-01-19 22:50:21 +00:00
|
|
|
|
("\\.exp\\'" . tcl-mode)
|
1996-02-16 00:50:22 +00:00
|
|
|
|
("\\.itcl\\'" . tcl-mode)
|
|
|
|
|
("\\.itk\\'" . tcl-mode)
|
1997-05-10 05:36:01 +00:00
|
|
|
|
("\\.icn\\'" . icon-mode)
|
|
|
|
|
("\\.sim\\'" . simula-mode)
|
|
|
|
|
("\\.mss\\'" . scribe-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("\\.f90\\'" . f90-mode)
|
|
|
|
|
("\\.lsp\\'" . lisp-mode)
|
|
|
|
|
("\\.awk\\'" . awk-mode)
|
|
|
|
|
("\\.prolog\\'" . prolog-mode)
|
|
|
|
|
("\\.tar\\'" . tar-mode)
|
1997-09-02 19:38:31 +00:00
|
|
|
|
("\\.\\(arc\\|zip\\|lzh\\|zoo\\|jar\\)\\'" . archive-mode)
|
|
|
|
|
("\\.\\(ARC\\|ZIP\\|LZH\\|ZOO\\|JAR\\)\\'" . archive-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
;; Mailer puts message to be edited in
|
|
|
|
|
;; /tmp/Re.... or Message
|
1996-01-17 19:14:20 +00:00
|
|
|
|
("\\`/tmp/Re" . text-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("/Message[0-9]*\\'" . text-mode)
|
|
|
|
|
("/drafts/[0-9]+\\'" . mh-letter-mode)
|
1998-03-05 02:17:48 +00:00
|
|
|
|
("\\.zone\\'" . zone-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
;; some news reader is reported to use this
|
1996-01-17 19:14:20 +00:00
|
|
|
|
("\\`/tmp/fol/" . text-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("\\.y\\'" . c-mode)
|
|
|
|
|
("\\.lex\\'" . c-mode)
|
|
|
|
|
("\\.oak\\'" . scheme-mode)
|
1996-01-15 05:08:57 +00:00
|
|
|
|
("\\.sgml?\\'" . sgml-mode)
|
1998-06-23 17:45:10 +00:00
|
|
|
|
("\\.xml\\'" . sgml-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
("\\.dtd\\'" . sgml-mode)
|
1997-04-12 19:20:07 +00:00
|
|
|
|
("\\.ds\\(ss\\)?l\\'" . dsssl-mode)
|
1998-07-24 04:36:09 +00:00
|
|
|
|
("\\.idl\\'" . idl-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
;; .emacs following a directory delimiter
|
1997-07-19 05:39:06 +00:00
|
|
|
|
;; in Unix, MSDOG or VMS syntax.
|
|
|
|
|
("[]>:/\\]\\..*emacs\\'" . emacs-lisp-mode)
|
1998-08-01 19:02:22 +00:00
|
|
|
|
("\\`\\..*emacs\\'" . emacs-lisp-mode)
|
1995-11-29 21:18:05 +00:00
|
|
|
|
;; _emacs following a directory delimiter
|
|
|
|
|
;; in MsDos syntax
|
|
|
|
|
("[:/]_emacs\\'" . emacs-lisp-mode)
|
1998-08-27 15:26:46 +00:00
|
|
|
|
("\\.ml\\'" . lisp-mode)
|
|
|
|
|
("\\.asn$" . snmp-mode)
|
|
|
|
|
("\\.mib$" . snmp-mode)
|
|
|
|
|
("\\.smi$" . snmp-mode)
|
|
|
|
|
("\\.as2$" . snmpv2-mode)
|
|
|
|
|
("\\.mi2$" . snmpv2-mode)
|
|
|
|
|
("\\.sm2$" . snmpv2-mode))
|
1992-02-27 23:17:44 +00:00
|
|
|
|
"\
|
|
|
|
|
Alist of filename patterns vs corresponding major mode functions.
|
1994-10-19 00:08:18 +00:00
|
|
|
|
Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL).
|
|
|
|
|
\(NON-NIL stands for anything that is not nil; the value does not matter.)
|
|
|
|
|
Visiting a file whose name matches REGEXP specifies FUNCTION as the
|
|
|
|
|
mode function to use. FUNCTION will be called, unless it is nil.
|
|
|
|
|
|
|
|
|
|
If the element has the form (REGEXP FUNCTION NON-NIL), then after
|
|
|
|
|
calling FUNCTION (if it's not nil), we delete the suffix that matched
|
|
|
|
|
REGEXP and search the list again for another match.")
|
1992-02-27 23:17:44 +00:00
|
|
|
|
|
1998-03-05 02:17:48 +00:00
|
|
|
|
|
1996-12-16 01:33:02 +00:00
|
|
|
|
(defvar interpreter-mode-alist
|
1994-02-16 07:06:10 +00:00
|
|
|
|
'(("perl" . perl-mode)
|
1996-04-12 18:42:22 +00:00
|
|
|
|
("perl5" . perl-mode)
|
1997-11-23 02:13:26 +00:00
|
|
|
|
("miniperl" . perl-mode)
|
1994-02-16 07:06:10 +00:00
|
|
|
|
("wish" . tcl-mode)
|
1994-05-23 09:48:37 +00:00
|
|
|
|
("wishx" . tcl-mode)
|
1994-02-17 05:52:56 +00:00
|
|
|
|
("tcl" . tcl-mode)
|
1994-05-23 09:48:37 +00:00
|
|
|
|
("tclsh" . tcl-mode)
|
1994-02-17 05:52:56 +00:00
|
|
|
|
("awk" . awk-mode)
|
1996-02-19 08:13:10 +00:00
|
|
|
|
("mawk" . awk-mode)
|
1995-09-28 19:19:08 +00:00
|
|
|
|
("nawk" . awk-mode)
|
1994-02-17 05:52:56 +00:00
|
|
|
|
("gawk" . awk-mode)
|
1996-01-05 02:34:37 +00:00
|
|
|
|
("scm" . scheme-mode)
|
|
|
|
|
("ash" . sh-mode)
|
|
|
|
|
("bash" . sh-mode)
|
|
|
|
|
("csh" . sh-mode)
|
|
|
|
|
("dtksh" . sh-mode)
|
|
|
|
|
("es" . sh-mode)
|
|
|
|
|
("itcsh" . sh-mode)
|
|
|
|
|
("jsh" . sh-mode)
|
|
|
|
|
("ksh" . sh-mode)
|
|
|
|
|
("oash" . sh-mode)
|
|
|
|
|
("pdksh" . sh-mode)
|
|
|
|
|
("rc" . sh-mode)
|
1998-10-20 18:48:06 +00:00
|
|
|
|
("rpm" . sh-mode)
|
1996-01-05 02:34:37 +00:00
|
|
|
|
("sh" . sh-mode)
|
|
|
|
|
("sh5" . sh-mode)
|
|
|
|
|
("tcsh" . sh-mode)
|
|
|
|
|
("wksh" . sh-mode)
|
|
|
|
|
("wsh" . sh-mode)
|
|
|
|
|
("zsh" . sh-mode)
|
|
|
|
|
("tail" . text-mode)
|
|
|
|
|
("more" . text-mode)
|
|
|
|
|
("less" . text-mode)
|
|
|
|
|
("pg" . text-mode))
|
1994-02-16 07:06:10 +00:00
|
|
|
|
"Alist mapping interpreter names to major modes.
|
|
|
|
|
This alist applies to files whose first line starts with `#!'.
|
|
|
|
|
Each element looks like (INTERPRETER . MODE).
|
|
|
|
|
The car of each element is compared with
|
|
|
|
|
the name of the interpreter specified in the first line.
|
|
|
|
|
If it matches, mode MODE is selected.")
|
|
|
|
|
|
1996-12-16 01:33:02 +00:00
|
|
|
|
(defvar inhibit-first-line-modes-regexps '("\\.tar\\'" "\\.tgz\\'")
|
1994-04-09 22:27:31 +00:00
|
|
|
|
"List of regexps; if one matches a file name, don't look for `-*-'.")
|
1993-05-31 21:50:52 +00:00
|
|
|
|
|
1996-12-16 01:33:02 +00:00
|
|
|
|
(defvar inhibit-first-line-modes-suffixes nil
|
1995-04-02 02:22:14 +00:00
|
|
|
|
"List of regexps for what to ignore, for `inhibit-first-line-modes-regexps'.
|
|
|
|
|
When checking `inhibit-first-line-modes-regexps', we first discard
|
|
|
|
|
from the end of the file name anything that matches one of these regexps.")
|
|
|
|
|
|
1998-06-13 06:17:13 +00:00
|
|
|
|
(defvar user-init-file nil
|
|
|
|
|
"File name, including directory, of user's initialization file.")
|
1994-01-06 04:30:52 +00:00
|
|
|
|
|
1997-05-05 04:38:26 +00:00
|
|
|
|
(defun set-auto-mode (&optional just-from-file-name)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"Select major mode appropriate for current buffer.
|
1994-05-23 09:48:37 +00:00
|
|
|
|
This checks for a -*- mode tag in the buffer's text,
|
|
|
|
|
compares the filename against the entries in `auto-mode-alist',
|
|
|
|
|
or checks the interpreter that runs this file against
|
|
|
|
|
`interpreter-mode-alist'.
|
|
|
|
|
|
|
|
|
|
It does not check for the `mode:' local variable in the
|
|
|
|
|
Local Variables section of the file; for that, use `hack-local-variables'.
|
1992-02-27 23:17:44 +00:00
|
|
|
|
|
1992-10-12 04:45:53 +00:00
|
|
|
|
If `enable-local-variables' is nil, this function does not check for a
|
1997-05-05 04:38:26 +00:00
|
|
|
|
-*- mode tag.
|
|
|
|
|
|
|
|
|
|
If the optional argument JUST-FROM-FILE-NAME is non-nil,
|
|
|
|
|
then we do not set anything but the major mode,
|
|
|
|
|
and we don't even do that unless it would come from the file name."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*-
|
1995-11-10 19:08:56 +00:00
|
|
|
|
(let (beg end done modes)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(skip-chars-forward " \t\n")
|
1993-09-11 10:45:25 +00:00
|
|
|
|
(and enable-local-variables
|
|
|
|
|
;; Don't look for -*- if this file name matches any
|
1994-04-09 22:27:31 +00:00
|
|
|
|
;; of the regexps in inhibit-first-line-modes-regexps.
|
1994-10-04 02:56:49 +00:00
|
|
|
|
(let ((temp inhibit-first-line-modes-regexps)
|
1995-05-01 15:49:09 +00:00
|
|
|
|
(name (if buffer-file-name
|
|
|
|
|
(file-name-sans-versions buffer-file-name)
|
|
|
|
|
(buffer-name))))
|
1995-04-03 21:37:39 +00:00
|
|
|
|
(while (let ((sufs inhibit-first-line-modes-suffixes))
|
|
|
|
|
(while (and sufs (not (string-match (car sufs) name)))
|
|
|
|
|
(setq sufs (cdr sufs)))
|
|
|
|
|
sufs)
|
|
|
|
|
(setq name (substring name 0 (match-beginning 0))))
|
1993-09-11 10:45:25 +00:00
|
|
|
|
(while (and temp
|
1995-04-02 02:22:14 +00:00
|
|
|
|
(not (string-match (car temp) name)))
|
1993-09-11 10:45:25 +00:00
|
|
|
|
(setq temp (cdr temp)))
|
|
|
|
|
(not temp))
|
|
|
|
|
(search-forward "-*-" (save-excursion
|
|
|
|
|
;; If the file begins with "#!"
|
|
|
|
|
;; (exec interpreter magic), look
|
|
|
|
|
;; for mode frobs in the first two
|
|
|
|
|
;; lines. You cannot necessarily
|
|
|
|
|
;; put them in the first line of
|
|
|
|
|
;; such a file without screwing up
|
|
|
|
|
;; the interpreter invocation.
|
|
|
|
|
(end-of-line (and (looking-at "^#!") 2))
|
|
|
|
|
(point)) t)
|
|
|
|
|
(progn
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(setq beg (point))
|
|
|
|
|
(search-forward "-*-"
|
|
|
|
|
(save-excursion (end-of-line) (point))
|
|
|
|
|
t))
|
|
|
|
|
(progn
|
|
|
|
|
(forward-char -3)
|
|
|
|
|
(skip-chars-backward " \t")
|
|
|
|
|
(setq end (point))
|
|
|
|
|
(goto-char beg)
|
|
|
|
|
(if (save-excursion (search-forward ":" end t))
|
|
|
|
|
;; Find all specifications for the `mode:' variable
|
1994-03-13 21:40:11 +00:00
|
|
|
|
;; and execute them left to right.
|
1993-09-11 10:45:25 +00:00
|
|
|
|
(while (let ((case-fold-search t))
|
1994-12-09 06:14:44 +00:00
|
|
|
|
(or (and (looking-at "mode:")
|
|
|
|
|
(goto-char (match-end 0)))
|
|
|
|
|
(re-search-forward "[ \t;]mode:" end t)))
|
1993-09-11 10:45:25 +00:00
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(setq beg (point))
|
|
|
|
|
(if (search-forward ";" end t)
|
|
|
|
|
(forward-char -1)
|
|
|
|
|
(goto-char end))
|
|
|
|
|
(skip-chars-backward " \t")
|
1995-11-10 19:08:56 +00:00
|
|
|
|
(setq modes (cons (intern (concat (downcase (buffer-substring beg (point))) "-mode"))
|
|
|
|
|
modes)))
|
1993-09-11 10:45:25 +00:00
|
|
|
|
;; Simple -*-MODE-*- case.
|
1995-11-10 19:08:56 +00:00
|
|
|
|
(setq modes (cons (intern (concat (downcase (buffer-substring beg end))
|
|
|
|
|
"-mode"))
|
|
|
|
|
modes))))))
|
|
|
|
|
;; If we found modes to use, invoke them now,
|
|
|
|
|
;; outside the save-excursion.
|
1997-07-16 05:30:34 +00:00
|
|
|
|
(when modes
|
|
|
|
|
(unless just-from-file-name
|
|
|
|
|
(mapcar 'funcall (nreverse modes)))
|
|
|
|
|
(setq done t))
|
1995-11-10 19:08:56 +00:00
|
|
|
|
;; If we didn't find a mode from a -*- line, try using the file name.
|
|
|
|
|
(if (and (not done) buffer-file-name)
|
|
|
|
|
(let ((name buffer-file-name)
|
|
|
|
|
(keep-going t))
|
|
|
|
|
;; Remove backup-suffixes from file name.
|
|
|
|
|
(setq name (file-name-sans-versions name))
|
|
|
|
|
(while keep-going
|
|
|
|
|
(setq keep-going nil)
|
|
|
|
|
(let ((alist auto-mode-alist)
|
|
|
|
|
(mode nil))
|
|
|
|
|
;; Find first matching alist entry.
|
1995-12-24 09:25:19 +00:00
|
|
|
|
(let ((case-fold-search
|
1995-11-10 19:08:56 +00:00
|
|
|
|
(memq system-type '(vax-vms windows-nt))))
|
|
|
|
|
(while (and (not mode) alist)
|
|
|
|
|
(if (string-match (car (car alist)) name)
|
|
|
|
|
(if (and (consp (cdr (car alist)))
|
|
|
|
|
(nth 2 (car alist)))
|
|
|
|
|
(progn
|
|
|
|
|
(setq mode (car (cdr (car alist)))
|
|
|
|
|
name (substring name 0 (match-beginning 0))
|
|
|
|
|
keep-going t))
|
|
|
|
|
(setq mode (cdr (car alist))
|
|
|
|
|
keep-going nil)))
|
|
|
|
|
(setq alist (cdr alist))))
|
|
|
|
|
(if mode
|
1998-04-26 04:19:28 +00:00
|
|
|
|
;; When JUST-FROM-FILE-NAME is set,
|
|
|
|
|
;; we are working on behalf of set-visited-file-name.
|
|
|
|
|
;; In that case, if the major mode specified is the
|
|
|
|
|
;; same one we already have, don't actually reset it.
|
|
|
|
|
;; We don't want to lose minor modes such as Font Lock.
|
|
|
|
|
(unless (and just-from-file-name (eq mode major-mode))
|
|
|
|
|
(funcall mode))
|
1995-11-10 19:08:56 +00:00
|
|
|
|
;; If we can't deduce a mode from the file name,
|
|
|
|
|
;; look for an interpreter specified in the first line.
|
1995-12-15 21:11:52 +00:00
|
|
|
|
;; As a special case, allow for things like "#!/bin/env perl",
|
|
|
|
|
;; which finds the interpreter anywhere in $PATH.
|
1995-11-10 19:08:56 +00:00
|
|
|
|
(let ((interpreter
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
1996-02-19 08:13:10 +00:00
|
|
|
|
(if (looking-at "#![ \t]?\\([^ \t\n]*/bin/env[ \t]\\)?\\([^ \t\n]+\\)")
|
1995-12-15 21:11:52 +00:00
|
|
|
|
(buffer-substring (match-beginning 2)
|
|
|
|
|
(match-end 2))
|
1995-11-10 19:08:56 +00:00
|
|
|
|
"")))
|
|
|
|
|
elt)
|
|
|
|
|
;; Map interpreter name to a mode.
|
|
|
|
|
(setq elt (assoc (file-name-nondirectory interpreter)
|
|
|
|
|
interpreter-mode-alist))
|
1997-05-05 04:38:26 +00:00
|
|
|
|
(unless just-from-file-name
|
|
|
|
|
(if elt
|
|
|
|
|
(funcall (cdr elt))))))))))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1992-10-12 04:45:53 +00:00
|
|
|
|
(defun hack-local-variables-prop-line ()
|
|
|
|
|
;; Set local variables specified in the -*- line.
|
1997-09-01 07:17:07 +00:00
|
|
|
|
;; Ignore any specification for `mode:' and `coding:';
|
|
|
|
|
;; set-auto-mode should already have handled `mode:',
|
|
|
|
|
;; set-auto-coding should already have handled `coding:'.
|
1992-10-12 04:45:53 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
1994-03-29 07:08:23 +00:00
|
|
|
|
(let ((result nil)
|
1998-11-07 02:01:59 +00:00
|
|
|
|
(end (save-excursion (end-of-line (and (looking-at "^#!") 2)) (point)))
|
|
|
|
|
(enable-local-variables
|
|
|
|
|
(and local-enable-local-variables enable-local-variables)))
|
1992-10-12 04:45:53 +00:00
|
|
|
|
;; Parse the -*- line into the `result' alist.
|
|
|
|
|
(cond ((not (search-forward "-*-" end t))
|
|
|
|
|
;; doesn't have one.
|
|
|
|
|
nil)
|
|
|
|
|
((looking-at "[ \t]*\\([^ \t\n\r:;]+\\)\\([ \t]*-\\*-\\)")
|
1994-03-29 07:08:23 +00:00
|
|
|
|
;; Simple form: "-*- MODENAME -*-". Already handled.
|
|
|
|
|
nil)
|
1992-10-12 04:45:53 +00:00
|
|
|
|
(t
|
|
|
|
|
;; Hairy form: '-*-' [ <variable> ':' <value> ';' ]* '-*-'
|
|
|
|
|
;; (last ";" is optional).
|
|
|
|
|
(save-excursion
|
|
|
|
|
(if (search-forward "-*-" end t)
|
|
|
|
|
(setq end (- (point) 3))
|
|
|
|
|
(error "-*- not terminated before end of line")))
|
|
|
|
|
(while (< (point) end)
|
|
|
|
|
(or (looking-at "[ \t]*\\([^ \t\n:]+\\)[ \t]*:[ \t]*")
|
|
|
|
|
(error "malformed -*- line"))
|
|
|
|
|
(goto-char (match-end 0))
|
1995-06-05 12:30:11 +00:00
|
|
|
|
;; There used to be a downcase here,
|
|
|
|
|
;; but the manual didn't say so,
|
|
|
|
|
;; and people want to set var names that aren't all lc.
|
|
|
|
|
(let ((key (intern (buffer-substring
|
|
|
|
|
(match-beginning 1)
|
|
|
|
|
(match-end 1))))
|
1992-10-12 04:45:53 +00:00
|
|
|
|
(val (save-restriction
|
|
|
|
|
(narrow-to-region (point) end)
|
|
|
|
|
(read (current-buffer)))))
|
1996-10-13 14:00:48 +00:00
|
|
|
|
;; It is traditional to ignore
|
|
|
|
|
;; case when checking for `mode' in set-auto-mode,
|
|
|
|
|
;; so we must do that here as well.
|
|
|
|
|
;; That is inconsistent, but we're stuck with it.
|
1997-09-01 07:17:07 +00:00
|
|
|
|
;; The same can be said for `coding' in set-auto-coding.
|
1996-10-13 14:00:48 +00:00
|
|
|
|
(or (equal (downcase (symbol-name key)) "mode")
|
1997-09-01 07:17:07 +00:00
|
|
|
|
(equal (downcase (symbol-name key)) "coding")
|
1994-03-29 07:08:23 +00:00
|
|
|
|
(setq result (cons (cons key val) result)))
|
1992-10-12 04:45:53 +00:00
|
|
|
|
(skip-chars-forward " \t;")))
|
|
|
|
|
(setq result (nreverse result))))
|
1995-12-24 09:25:19 +00:00
|
|
|
|
|
1992-10-12 04:45:53 +00:00
|
|
|
|
(if (and result
|
|
|
|
|
(or (eq enable-local-variables t)
|
|
|
|
|
(and enable-local-variables
|
|
|
|
|
(save-window-excursion
|
1993-12-23 03:49:15 +00:00
|
|
|
|
(condition-case nil
|
|
|
|
|
(switch-to-buffer (current-buffer))
|
|
|
|
|
(error
|
|
|
|
|
;; If we fail to switch in the selected window,
|
|
|
|
|
;; it is probably a minibuffer.
|
|
|
|
|
;; So try another window.
|
|
|
|
|
(condition-case nil
|
|
|
|
|
(switch-to-buffer-other-window (current-buffer))
|
|
|
|
|
(error
|
|
|
|
|
(switch-to-buffer-other-frame (current-buffer))))))
|
1992-10-12 04:45:53 +00:00
|
|
|
|
(y-or-n-p (format "Set local variables as specified in -*- line of %s? "
|
|
|
|
|
(file-name-nondirectory buffer-file-name)))))))
|
1996-06-09 19:11:53 +00:00
|
|
|
|
(let ((enable-local-eval enable-local-eval))
|
|
|
|
|
(while result
|
|
|
|
|
(hack-one-local-variable (car (car result)) (cdr (car result)))
|
|
|
|
|
(setq result (cdr result))))))))
|
1992-10-12 04:45:53 +00:00
|
|
|
|
|
1994-12-15 12:36:03 +00:00
|
|
|
|
(defvar hack-local-variables-hook nil
|
|
|
|
|
"Normal hook run after processing a file's local variables specs.
|
|
|
|
|
Major modes can use this to examine user-specified local variables
|
|
|
|
|
in order to initialize other data structure based on them.")
|
|
|
|
|
|
1997-05-05 04:38:26 +00:00
|
|
|
|
(defun hack-local-variables (&optional mode-only)
|
|
|
|
|
"Parse and put into effect this buffer's local variables spec.
|
|
|
|
|
If MODE-ONLY is non-nil, all we do is check whether the major mode
|
|
|
|
|
is specified, returning t if it is specified."
|
|
|
|
|
(unless mode-only
|
|
|
|
|
(hack-local-variables-prop-line))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
;; Look for "Local variables:" line in last page.
|
1998-11-07 02:01:59 +00:00
|
|
|
|
(let (mode-specified
|
|
|
|
|
(enable-local-variables
|
|
|
|
|
(and local-enable-local-variables enable-local-variables)))
|
1997-05-05 04:38:26 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move)
|
|
|
|
|
(if (let ((case-fold-search t))
|
|
|
|
|
(and (search-forward "Local Variables:" nil t)
|
|
|
|
|
(or (eq enable-local-variables t)
|
|
|
|
|
mode-only
|
|
|
|
|
(and enable-local-variables
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
(switch-to-buffer (current-buffer))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(set-window-start (selected-window) (point)))
|
|
|
|
|
(y-or-n-p (format "Set local variables as specified at end of %s? "
|
|
|
|
|
(if buffer-file-name
|
|
|
|
|
(file-name-nondirectory
|
|
|
|
|
buffer-file-name)
|
|
|
|
|
(concat "buffer "
|
|
|
|
|
(buffer-name))))))))))
|
|
|
|
|
(let ((continue t)
|
|
|
|
|
prefix prefixlen suffix beg
|
|
|
|
|
mode-specified
|
|
|
|
|
(enable-local-eval enable-local-eval))
|
|
|
|
|
;; The prefix is what comes before "local variables:" in its line.
|
|
|
|
|
;; The suffix is what comes after "local variables:" in its line.
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(skip-chars-forward " \t")
|
1997-05-05 04:38:26 +00:00
|
|
|
|
(or (eolp)
|
|
|
|
|
(setq suffix (buffer-substring (point)
|
|
|
|
|
(progn (end-of-line) (point)))))
|
|
|
|
|
(goto-char (match-beginning 0))
|
|
|
|
|
(or (bolp)
|
|
|
|
|
(setq prefix
|
|
|
|
|
(buffer-substring (point)
|
|
|
|
|
(progn (beginning-of-line) (point)))))
|
|
|
|
|
|
|
|
|
|
(if prefix (setq prefixlen (length prefix)
|
|
|
|
|
prefix (regexp-quote prefix)))
|
|
|
|
|
(if suffix (setq suffix (concat (regexp-quote suffix) "$")))
|
|
|
|
|
(while continue
|
|
|
|
|
;; Look at next local variable spec.
|
|
|
|
|
(if selective-display (re-search-forward "[\n\C-m]")
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
;; Skip the prefix, if any.
|
|
|
|
|
(if prefix
|
|
|
|
|
(if (looking-at prefix)
|
|
|
|
|
(forward-char prefixlen)
|
|
|
|
|
(error "Local variables entry is missing the prefix")))
|
|
|
|
|
;; Find the variable name; strip whitespace.
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(setq beg (point))
|
|
|
|
|
(skip-chars-forward "^:\n")
|
|
|
|
|
(if (eolp) (error "Missing colon in local variables entry"))
|
|
|
|
|
(skip-chars-backward " \t")
|
|
|
|
|
(let* ((str (buffer-substring beg (point)))
|
|
|
|
|
(var (read str))
|
|
|
|
|
val)
|
|
|
|
|
;; Setting variable named "end" means end of list.
|
|
|
|
|
(if (string-equal (downcase str) "end")
|
|
|
|
|
(setq continue nil)
|
|
|
|
|
;; Otherwise read the variable value.
|
|
|
|
|
(skip-chars-forward "^:")
|
|
|
|
|
(forward-char 1)
|
|
|
|
|
(setq val (read (current-buffer)))
|
|
|
|
|
(skip-chars-backward "\n")
|
|
|
|
|
(skip-chars-forward " \t")
|
|
|
|
|
(or (if suffix (looking-at suffix) (eolp))
|
|
|
|
|
(error "Local variables entry is terminated incorrectly"))
|
|
|
|
|
(if mode-only
|
|
|
|
|
(if (eq var 'mode)
|
|
|
|
|
(setq mode-specified t))
|
|
|
|
|
;; Set the variable. "Variables" mode and eval are funny.
|
|
|
|
|
(hack-one-local-variable var val))))))))
|
|
|
|
|
(unless mode-only
|
|
|
|
|
(run-hooks 'hack-local-variables-hook))
|
|
|
|
|
mode-specified))
|
1992-10-12 04:45:53 +00:00
|
|
|
|
|
1996-12-16 01:33:02 +00:00
|
|
|
|
(defvar ignored-local-variables
|
1992-10-12 04:45:53 +00:00
|
|
|
|
'(enable-local-eval)
|
|
|
|
|
"Variables to be ignored in a file's local variable spec.")
|
|
|
|
|
|
1994-04-07 19:03:17 +00:00
|
|
|
|
;; Get confirmation before setting these variables as locals in a file.
|
1994-07-05 20:23:13 +00:00
|
|
|
|
(put 'debugger 'risky-local-variable t)
|
1994-05-25 20:43:21 +00:00
|
|
|
|
(put 'enable-local-eval 'risky-local-variable t)
|
1994-12-13 13:44:20 +00:00
|
|
|
|
(put 'ignored-local-variables 'risky-local-variable t)
|
1994-04-07 19:03:17 +00:00
|
|
|
|
(put 'eval 'risky-local-variable t)
|
|
|
|
|
(put 'file-name-handler-alist 'risky-local-variable t)
|
|
|
|
|
(put 'minor-mode-map-alist 'risky-local-variable t)
|
|
|
|
|
(put 'after-load-alist 'risky-local-variable t)
|
1994-05-25 20:43:21 +00:00
|
|
|
|
(put 'buffer-file-name 'risky-local-variable t)
|
|
|
|
|
(put 'buffer-auto-save-file-name 'risky-local-variable t)
|
|
|
|
|
(put 'buffer-file-truename 'risky-local-variable t)
|
1994-07-07 16:25:53 +00:00
|
|
|
|
(put 'exec-path 'risky-local-variable t)
|
|
|
|
|
(put 'load-path 'risky-local-variable t)
|
|
|
|
|
(put 'exec-directory 'risky-local-variable t)
|
|
|
|
|
(put 'process-environment 'risky-local-variable t)
|
1996-07-22 02:13:28 +00:00
|
|
|
|
(put 'dabbrev-case-fold-search 'risky-local-variable t)
|
|
|
|
|
(put 'dabbrev-case-replace 'risky-local-variable t)
|
1994-07-07 20:34:55 +00:00
|
|
|
|
;; Don't wait for outline.el to be loaded, for the sake of outline-minor-mode.
|
|
|
|
|
(put 'outline-level 'risky-local-variable t)
|
1994-07-14 22:48:40 +00:00
|
|
|
|
(put 'rmail-output-file-alist 'risky-local-variable t)
|
1994-05-25 20:43:21 +00:00
|
|
|
|
|
1994-09-27 22:59:50 +00:00
|
|
|
|
;; This one is safe because the user gets to check it before it is used.
|
|
|
|
|
(put 'compile-command 'safe-local-variable t)
|
|
|
|
|
|
1994-04-30 04:29:23 +00:00
|
|
|
|
(defun hack-one-local-variable-quotep (exp)
|
|
|
|
|
(and (consp exp) (eq (car exp) 'quote) (consp (cdr exp))))
|
|
|
|
|
|
1992-10-12 04:45:53 +00:00
|
|
|
|
;; "Set" one variable in a local variables spec.
|
|
|
|
|
;; A few variable names are treated specially.
|
|
|
|
|
(defun hack-one-local-variable (var val)
|
|
|
|
|
(cond ((eq var 'mode)
|
|
|
|
|
(funcall (intern (concat (downcase (symbol-name val))
|
|
|
|
|
"-mode"))))
|
1997-09-01 07:17:07 +00:00
|
|
|
|
((eq var 'coding)
|
|
|
|
|
;; We have already handled coding: tag in set-auto-coding.
|
|
|
|
|
nil)
|
1992-10-12 04:45:53 +00:00
|
|
|
|
((memq var ignored-local-variables)
|
|
|
|
|
nil)
|
|
|
|
|
;; "Setting" eval means either eval it or do nothing.
|
1993-06-10 21:31:56 +00:00
|
|
|
|
;; Likewise for setting hook variables.
|
1994-04-07 19:03:17 +00:00
|
|
|
|
((or (get var 'risky-local-variable)
|
1994-09-27 22:59:50 +00:00
|
|
|
|
(and
|
1998-04-01 03:44:50 +00:00
|
|
|
|
(string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|-command$\\|-predicate$"
|
1994-09-27 22:59:50 +00:00
|
|
|
|
(symbol-name var))
|
|
|
|
|
(not (get var 'safe-local-variable))))
|
1996-01-04 23:34:55 +00:00
|
|
|
|
;; Permit evalling a put of a harmless property.
|
1994-04-30 04:29:23 +00:00
|
|
|
|
;; if the args do nothing tricky.
|
|
|
|
|
(if (or (and (eq var 'eval)
|
|
|
|
|
(consp val)
|
|
|
|
|
(eq (car val) 'put)
|
|
|
|
|
(hack-one-local-variable-quotep (nth 1 val))
|
|
|
|
|
(hack-one-local-variable-quotep (nth 2 val))
|
|
|
|
|
;; Only allow safe values of lisp-indent-hook;
|
|
|
|
|
;; not functions.
|
|
|
|
|
(or (numberp (nth 3 val))
|
1994-05-23 04:55:57 +00:00
|
|
|
|
(equal (nth 3 val) ''defun))
|
1994-04-30 04:29:23 +00:00
|
|
|
|
(memq (nth 1 (nth 2 val))
|
|
|
|
|
'(lisp-indent-hook)))
|
|
|
|
|
;; Permit eval if not root and user says ok.
|
1994-07-08 21:26:56 +00:00
|
|
|
|
(and (not (zerop (user-uid)))
|
1994-04-30 04:29:23 +00:00
|
|
|
|
(or (eq enable-local-eval t)
|
|
|
|
|
(and enable-local-eval
|
|
|
|
|
(save-window-excursion
|
|
|
|
|
(switch-to-buffer (current-buffer))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(beginning-of-line)
|
|
|
|
|
(set-window-start (selected-window) (point)))
|
|
|
|
|
(setq enable-local-eval
|
1998-11-29 15:41:38 +00:00
|
|
|
|
(y-or-n-p (format "Process `eval' or hook local variables in %s? "
|
|
|
|
|
(if buffer-file-name
|
|
|
|
|
(concat "file " (file-name-nondirectory buffer-file-name))
|
|
|
|
|
(concat "buffer " (buffer-name)))))))))))
|
1993-06-10 21:31:56 +00:00
|
|
|
|
(if (eq var 'eval)
|
|
|
|
|
(save-excursion (eval val))
|
|
|
|
|
(make-local-variable var)
|
|
|
|
|
(set var val))
|
1998-11-29 15:41:38 +00:00
|
|
|
|
(message "Ignoring `eval:' in the local variables list")))
|
1992-10-12 04:45:53 +00:00
|
|
|
|
;; Ordinary variable, really set it.
|
|
|
|
|
(t (make-local-variable var)
|
|
|
|
|
(set var val))))
|
|
|
|
|
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom change-major-mode-with-file-name t
|
1997-05-05 04:38:26 +00:00
|
|
|
|
"*Non-nil means \\[write-file] should set the major mode from the file name.
|
|
|
|
|
However, the mode will not be changed if
|
|
|
|
|
\(1) a local variables list or the `-*-' line specifies a major mode, or
|
|
|
|
|
\(2) the current major mode is a \"special\" mode,
|
1997-05-05 17:06:10 +00:00
|
|
|
|
\ not suitable for ordinary files, or
|
1997-05-05 22:04:00 +00:00
|
|
|
|
\(3) the new file name does not particularly specify any mode."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'editing-basics)
|
1997-05-05 04:38:26 +00:00
|
|
|
|
|
1997-02-03 09:42:56 +00:00
|
|
|
|
(defun set-visited-file-name (filename &optional no-query along-with-file)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"Change name of file visited in current buffer to FILENAME.
|
|
|
|
|
The next time the buffer is saved it will go in the newly specified file.
|
|
|
|
|
nil or empty string as argument means make buffer not be visiting any file.
|
|
|
|
|
Remember to delete the initial contents of the minibuffer
|
1996-06-29 19:50:56 +00:00
|
|
|
|
if you wish to pass an empty string as the argument.
|
|
|
|
|
|
|
|
|
|
The optional second argument NO-QUERY, if non-nil, inhibits asking for
|
1997-02-03 09:42:56 +00:00
|
|
|
|
confirmation in the case where another buffer is already visiting FILENAME.
|
|
|
|
|
|
|
|
|
|
The optional third argument ALONG-WITH-FILE, if non-nil, means that
|
|
|
|
|
the old visited file has been renamed to the new name FILENAME."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(interactive "FSet visited file name: ")
|
1994-12-31 07:49:59 +00:00
|
|
|
|
(if (buffer-base-buffer)
|
|
|
|
|
(error "An indirect buffer cannot visit a file"))
|
1994-07-05 07:23:18 +00:00
|
|
|
|
(let (truename)
|
|
|
|
|
(if filename
|
|
|
|
|
(setq filename
|
|
|
|
|
(if (string-equal filename "")
|
|
|
|
|
nil
|
|
|
|
|
(expand-file-name filename))))
|
|
|
|
|
(if filename
|
|
|
|
|
(progn
|
|
|
|
|
(setq truename (file-truename filename))
|
|
|
|
|
(if find-file-visit-truename
|
|
|
|
|
(setq filename truename))))
|
1996-03-26 23:57:49 +00:00
|
|
|
|
(let ((buffer (and filename (find-buffer-visiting filename))))
|
1996-03-01 20:29:32 +00:00
|
|
|
|
(and buffer (not (eq buffer (current-buffer)))
|
1996-06-29 19:50:56 +00:00
|
|
|
|
(not no-query)
|
1996-03-01 20:29:32 +00:00
|
|
|
|
(not (y-or-n-p (message "A buffer is visiting %s; proceed? "
|
|
|
|
|
filename)))
|
|
|
|
|
(error "Aborted")))
|
1994-07-05 07:23:18 +00:00
|
|
|
|
(or (equal filename buffer-file-name)
|
|
|
|
|
(progn
|
|
|
|
|
(and filename (lock-buffer filename))
|
|
|
|
|
(unlock-buffer)))
|
|
|
|
|
(setq buffer-file-name filename)
|
|
|
|
|
(if filename ; make buffer name reflect filename.
|
|
|
|
|
(let ((new-name (file-name-nondirectory buffer-file-name)))
|
|
|
|
|
(if (string= new-name "")
|
|
|
|
|
(error "Empty file name"))
|
|
|
|
|
(if (eq system-type 'vax-vms)
|
|
|
|
|
(setq new-name (downcase new-name)))
|
|
|
|
|
(setq default-directory (file-name-directory buffer-file-name))
|
|
|
|
|
(or (string= new-name (buffer-name))
|
|
|
|
|
(rename-buffer new-name t))))
|
|
|
|
|
(setq buffer-backed-up nil)
|
1997-02-03 09:42:56 +00:00
|
|
|
|
(or along-with-file
|
|
|
|
|
(clear-visited-file-modtime))
|
1995-10-24 22:14:39 +00:00
|
|
|
|
;; Abbreviate the file names of the buffer.
|
1994-07-05 22:36:54 +00:00
|
|
|
|
(if truename
|
1995-10-24 22:14:39 +00:00
|
|
|
|
(progn
|
|
|
|
|
(setq buffer-file-truename (abbreviate-file-name truename))
|
|
|
|
|
(if find-file-visit-truename
|
|
|
|
|
(setq buffer-file-name buffer-file-truename))))
|
1994-07-05 07:23:18 +00:00
|
|
|
|
(setq buffer-file-number
|
|
|
|
|
(if filename
|
1995-10-29 20:23:42 +00:00
|
|
|
|
(nthcdr 10 (file-attributes buffer-file-name))
|
1994-07-05 07:23:18 +00:00
|
|
|
|
nil)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
;; write-file-hooks is normally used for things like ftp-find-file
|
|
|
|
|
;; that visit things that are not local files as if they were files.
|
|
|
|
|
;; Changing to visit an ordinary local file instead should flush the hook.
|
|
|
|
|
(kill-local-variable 'write-file-hooks)
|
1993-03-26 07:28:20 +00:00
|
|
|
|
(kill-local-variable 'local-write-file-hooks)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(kill-local-variable 'revert-buffer-function)
|
|
|
|
|
(kill-local-variable 'backup-inhibited)
|
1994-03-27 19:49:47 +00:00
|
|
|
|
;; If buffer was read-only because of version control,
|
|
|
|
|
;; that reason is gone now, so make it writable.
|
|
|
|
|
(if vc-mode
|
|
|
|
|
(setq buffer-read-only nil))
|
|
|
|
|
(kill-local-variable 'vc-mode)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
;; Turn off backup files for certain file names.
|
|
|
|
|
;; Since this is a permanent local, the major mode won't eliminate it.
|
1998-02-27 22:13:26 +00:00
|
|
|
|
(and buffer-file-name
|
|
|
|
|
(not (funcall backup-enable-predicate buffer-file-name))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(progn
|
|
|
|
|
(make-local-variable 'backup-inhibited)
|
|
|
|
|
(setq backup-inhibited t)))
|
1993-07-01 18:39:58 +00:00
|
|
|
|
(let ((oauto buffer-auto-save-file-name))
|
|
|
|
|
;; If auto-save was not already on, turn it on if appropriate.
|
|
|
|
|
(if (not buffer-auto-save-file-name)
|
|
|
|
|
(and buffer-file-name auto-save-default
|
|
|
|
|
(auto-save-mode t))
|
|
|
|
|
;; If auto save is on, start using a new name.
|
|
|
|
|
;; We deliberately don't rename or delete the old auto save
|
|
|
|
|
;; for the old visited file name. This is because perhaps
|
|
|
|
|
;; the user wants to save the new state and then compare with the
|
|
|
|
|
;; previous state from the auto save file.
|
|
|
|
|
(setq buffer-auto-save-file-name
|
|
|
|
|
(make-auto-save-file-name)))
|
|
|
|
|
;; Rename the old auto save file if any.
|
|
|
|
|
(and oauto buffer-auto-save-file-name
|
1993-07-01 20:33:56 +00:00
|
|
|
|
(file-exists-p oauto)
|
1993-07-01 18:39:58 +00:00
|
|
|
|
(rename-file oauto buffer-auto-save-file-name t)))
|
1997-02-03 09:42:56 +00:00
|
|
|
|
(and buffer-file-name
|
|
|
|
|
(not along-with-file)
|
1997-05-05 04:38:26 +00:00
|
|
|
|
(set-buffer-modified-p t))
|
|
|
|
|
;; Update the major mode, if the file name determines it.
|
|
|
|
|
(condition-case nil
|
|
|
|
|
;; Don't change the mode if it is special.
|
|
|
|
|
(or (not change-major-mode-with-file-name)
|
|
|
|
|
(get major-mode 'mode-class)
|
|
|
|
|
;; Don't change the mode if the local variable list specifies it.
|
|
|
|
|
(hack-local-variables t)
|
|
|
|
|
(set-auto-mode t))
|
|
|
|
|
(error nil)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(defun write-file (filename &optional confirm)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"Write current buffer into file FILENAME.
|
1993-03-03 05:12:05 +00:00
|
|
|
|
Makes buffer visit that file, and marks it not modified.
|
|
|
|
|
If the buffer is already visiting a file, you can specify
|
|
|
|
|
a directory name as FILENAME, to write a file of the same
|
1995-04-10 04:49:13 +00:00
|
|
|
|
old name in that directory.
|
1996-02-02 18:47:34 +00:00
|
|
|
|
|
1995-04-10 04:49:13 +00:00
|
|
|
|
If optional second arg CONFIRM is non-nil,
|
1996-02-02 18:47:34 +00:00
|
|
|
|
ask for confirmation for overwriting an existing file.
|
1997-05-28 03:35:36 +00:00
|
|
|
|
Interactively, confirmation is required unless you supply a prefix argument."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
;; (interactive "FWrite file: ")
|
|
|
|
|
(interactive
|
|
|
|
|
(list (if buffer-file-name
|
|
|
|
|
(read-file-name "Write file: "
|
|
|
|
|
nil nil nil nil)
|
|
|
|
|
(read-file-name "Write file: "
|
|
|
|
|
(cdr (assq 'default-directory
|
|
|
|
|
(buffer-local-variables)))
|
1998-04-01 03:44:50 +00:00
|
|
|
|
nil nil (file-name-nondirectory (buffer-name))))
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(not current-prefix-arg)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(or (null filename) (string-equal filename "")
|
1993-03-03 05:12:05 +00:00
|
|
|
|
(progn
|
|
|
|
|
;; If arg is just a directory,
|
|
|
|
|
;; use same file name, but in that directory.
|
|
|
|
|
(if (and (file-directory-p filename) buffer-file-name)
|
|
|
|
|
(setq filename (concat (file-name-as-directory filename)
|
|
|
|
|
(file-name-nondirectory buffer-file-name))))
|
1995-04-10 04:49:13 +00:00
|
|
|
|
(and confirm
|
|
|
|
|
(file-exists-p filename)
|
|
|
|
|
(or (y-or-n-p (format "File `%s' exists; overwrite? " filename))
|
|
|
|
|
(error "Canceled")))
|
1996-10-26 18:12:01 +00:00
|
|
|
|
(set-visited-file-name filename (not confirm))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(set-buffer-modified-p t)
|
1997-11-20 22:00:57 +00:00
|
|
|
|
;; Make buffer writable if file is writable.
|
|
|
|
|
(and buffer-file-name
|
|
|
|
|
(file-writable-p buffer-file-name)
|
|
|
|
|
(setq buffer-read-only nil))
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(save-buffer))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
(defun backup-buffer ()
|
|
|
|
|
"Make a backup of the disk file visited by the current buffer, if appropriate.
|
|
|
|
|
This is normally done before saving the buffer the first time.
|
|
|
|
|
If the value is non-nil, it is the result of `file-modes' on the original
|
|
|
|
|
file; this means that the caller, after saving the buffer, should change
|
1996-12-06 23:29:47 +00:00
|
|
|
|
the modes of the new file to agree with the old modes.
|
|
|
|
|
|
|
|
|
|
A backup may be done by renaming or by copying; see documentation of
|
|
|
|
|
variable `make-backup-files'. If it's done by renaming, then the file is
|
|
|
|
|
no longer accessible under its old name."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(if (and make-backup-files (not backup-inhibited)
|
|
|
|
|
(not buffer-backed-up)
|
|
|
|
|
(file-exists-p buffer-file-name)
|
|
|
|
|
(memq (aref (elt (file-attributes buffer-file-name) 8) 0)
|
|
|
|
|
'(?- ?l)))
|
|
|
|
|
(let ((real-file-name buffer-file-name)
|
|
|
|
|
backup-info backupname targets setmodes)
|
|
|
|
|
;; If specified name is a symbolic link, chase it to the target.
|
|
|
|
|
;; Thus we make the backups in the directory where the real file is.
|
1993-05-29 20:00:45 +00:00
|
|
|
|
(setq real-file-name (file-chase-links real-file-name))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(setq backup-info (find-backup-file-name real-file-name)
|
|
|
|
|
backupname (car backup-info)
|
|
|
|
|
targets (cdr backup-info))
|
|
|
|
|
;;; (if (file-directory-p buffer-file-name)
|
|
|
|
|
;;; (error "Cannot save buffer in directory %s" buffer-file-name))
|
1995-01-12 21:05:07 +00:00
|
|
|
|
(if backup-info
|
|
|
|
|
(condition-case ()
|
|
|
|
|
(let ((delete-old-versions
|
|
|
|
|
;; If have old versions to maybe delete,
|
|
|
|
|
;; ask the user to confirm now, before doing anything.
|
|
|
|
|
;; But don't actually delete til later.
|
|
|
|
|
(and targets
|
|
|
|
|
(or (eq delete-old-versions t) (eq delete-old-versions nil))
|
|
|
|
|
(or delete-old-versions
|
|
|
|
|
(y-or-n-p (format "Delete excess backup versions of %s? "
|
|
|
|
|
real-file-name))))))
|
|
|
|
|
;; Actually write the back up file.
|
|
|
|
|
(condition-case ()
|
|
|
|
|
(if (or file-precious-flag
|
|
|
|
|
; (file-symlink-p buffer-file-name)
|
|
|
|
|
backup-by-copying
|
|
|
|
|
(and backup-by-copying-when-linked
|
|
|
|
|
(> (file-nlinks real-file-name) 1))
|
|
|
|
|
(and backup-by-copying-when-mismatch
|
|
|
|
|
(let ((attr (file-attributes real-file-name)))
|
|
|
|
|
(or (nth 9 attr)
|
|
|
|
|
(not (file-ownership-preserved-p real-file-name))))))
|
|
|
|
|
(condition-case ()
|
|
|
|
|
(copy-file real-file-name backupname t t)
|
|
|
|
|
(file-error
|
|
|
|
|
;; If copying fails because file BACKUPNAME
|
|
|
|
|
;; is not writable, delete that file and try again.
|
|
|
|
|
(if (and (file-exists-p backupname)
|
|
|
|
|
(not (file-writable-p backupname)))
|
|
|
|
|
(delete-file backupname))
|
|
|
|
|
(copy-file real-file-name backupname t t)))
|
|
|
|
|
;; rename-file should delete old backup.
|
|
|
|
|
(rename-file real-file-name backupname t)
|
|
|
|
|
(setq setmodes (file-modes backupname)))
|
|
|
|
|
(file-error
|
|
|
|
|
;; If trouble writing the backup, write it in ~.
|
1996-01-01 22:51:51 +00:00
|
|
|
|
(setq backupname (expand-file-name
|
|
|
|
|
(convert-standard-filename
|
|
|
|
|
"~/%backup%~")))
|
|
|
|
|
(message "Cannot write backup file; backing up in %s"
|
|
|
|
|
(file-name-nondirectory backupname))
|
1995-01-12 21:05:07 +00:00
|
|
|
|
(sleep-for 1)
|
|
|
|
|
(condition-case ()
|
|
|
|
|
(copy-file real-file-name backupname t t)
|
|
|
|
|
(file-error
|
|
|
|
|
;; If copying fails because file BACKUPNAME
|
|
|
|
|
;; is not writable, delete that file and try again.
|
|
|
|
|
(if (and (file-exists-p backupname)
|
|
|
|
|
(not (file-writable-p backupname)))
|
|
|
|
|
(delete-file backupname))
|
|
|
|
|
(copy-file real-file-name backupname t t)))))
|
|
|
|
|
(setq buffer-backed-up t)
|
|
|
|
|
;; Now delete the old versions, if desired.
|
|
|
|
|
(if delete-old-versions
|
|
|
|
|
(while targets
|
|
|
|
|
(condition-case ()
|
|
|
|
|
(delete-file (car targets))
|
|
|
|
|
(file-error nil))
|
|
|
|
|
(setq targets (cdr targets))))
|
|
|
|
|
setmodes)
|
|
|
|
|
(file-error nil))))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1992-09-13 04:35:22 +00:00
|
|
|
|
(defun file-name-sans-versions (name &optional keep-backup-version)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"Return FILENAME sans backup versions or strings.
|
|
|
|
|
This is a separate procedure so your site-init or startup file can
|
1992-09-13 04:35:22 +00:00
|
|
|
|
redefine it.
|
|
|
|
|
If the optional argument KEEP-BACKUP-VERSION is non-nil,
|
|
|
|
|
we do not remove backup version numbers, only true file version numbers."
|
1994-04-22 23:59:24 +00:00
|
|
|
|
(let ((handler (find-file-name-handler name 'file-name-sans-versions)))
|
1992-09-13 04:35:22 +00:00
|
|
|
|
(if handler
|
|
|
|
|
(funcall handler 'file-name-sans-versions name keep-backup-version)
|
|
|
|
|
(substring name 0
|
|
|
|
|
(if (eq system-type 'vax-vms)
|
|
|
|
|
;; VMS version number is (a) semicolon, optional
|
|
|
|
|
;; sign, zero or more digits or (b) period, option
|
|
|
|
|
;; sign, zero or more digits, provided this is the
|
|
|
|
|
;; second period encountered outside of the
|
|
|
|
|
;; device/directory part of the file name.
|
1994-03-12 00:23:12 +00:00
|
|
|
|
(or (string-match ";[-+]?[0-9]*\\'" name)
|
|
|
|
|
(if (string-match "\\.[^]>:]*\\(\\.[-+]?[0-9]*\\)\\'"
|
1992-09-13 04:35:22 +00:00
|
|
|
|
name)
|
|
|
|
|
(match-beginning 1))
|
|
|
|
|
(length name))
|
|
|
|
|
(if keep-backup-version
|
|
|
|
|
(length name)
|
1995-07-18 20:57:57 +00:00
|
|
|
|
(or (string-match "\\.~[0-9.]+~\\'" name)
|
1992-09-13 04:35:22 +00:00
|
|
|
|
(string-match "~\\'" name)
|
|
|
|
|
(length name))))))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1994-09-22 04:15:33 +00:00
|
|
|
|
(defun file-ownership-preserved-p (file)
|
|
|
|
|
"Returns t if deleting FILE and rewriting it would preserve the owner."
|
|
|
|
|
(let ((handler (find-file-name-handler file 'file-ownership-preserved-p)))
|
|
|
|
|
(if handler
|
|
|
|
|
(funcall handler 'file-ownership-preserved-p file)
|
1995-05-22 20:00:17 +00:00
|
|
|
|
(let ((attributes (file-attributes file)))
|
1995-05-15 22:22:25 +00:00
|
|
|
|
;; Return t if the file doesn't exist, since it's true that no
|
|
|
|
|
;; information would be lost by an (attempted) delete and create.
|
|
|
|
|
(or (null attributes)
|
|
|
|
|
(= (nth 2 attributes) (user-uid)))))))
|
1994-09-22 04:15:33 +00:00
|
|
|
|
|
1994-09-19 04:32:41 +00:00
|
|
|
|
(defun file-name-sans-extension (filename)
|
|
|
|
|
"Return FILENAME sans final \"extension\".
|
|
|
|
|
The extension, in a file name, is the part that follows the last `.'."
|
|
|
|
|
(save-match-data
|
|
|
|
|
(let ((file (file-name-sans-versions (file-name-nondirectory filename)))
|
|
|
|
|
directory)
|
|
|
|
|
(if (string-match "\\.[^.]*\\'" file)
|
|
|
|
|
(if (setq directory (file-name-directory filename))
|
|
|
|
|
(expand-file-name (substring file 0 (match-beginning 0))
|
|
|
|
|
directory)
|
|
|
|
|
(substring file 0 (match-beginning 0)))
|
|
|
|
|
filename))))
|
|
|
|
|
|
1996-10-13 14:00:48 +00:00
|
|
|
|
(defun file-name-extension (filename &optional period)
|
|
|
|
|
"Return FILENAME's final \"extension\".
|
|
|
|
|
The extension, in a file name, is the part that follows the last `.'.
|
|
|
|
|
Return nil for extensionless file names such as `foo'.
|
|
|
|
|
Return the empty string for file names such as `foo.'.
|
|
|
|
|
|
|
|
|
|
If PERIOD is non-nil, then the returned value includes the period
|
|
|
|
|
that delimits the extension, and if FILENAME has no extension,
|
|
|
|
|
the value is \"\"."
|
|
|
|
|
(save-match-data
|
|
|
|
|
(let ((file (file-name-sans-versions (file-name-nondirectory filename))))
|
|
|
|
|
(if (string-match "\\.[^.]*\\'" file)
|
|
|
|
|
(substring file (+ (match-beginning 0) (if period 0 1)))
|
|
|
|
|
(if period
|
|
|
|
|
"")))))
|
|
|
|
|
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(defun make-backup-file-name (file)
|
|
|
|
|
"Create the non-numeric backup file name for FILE.
|
|
|
|
|
This is a separate function so you can redefine it for customization."
|
1996-05-21 17:21:25 +00:00
|
|
|
|
(if (and (eq system-type 'ms-dos)
|
|
|
|
|
(not (msdos-long-file-names)))
|
1994-01-06 04:30:52 +00:00
|
|
|
|
(let ((fn (file-name-nondirectory file)))
|
|
|
|
|
(concat (file-name-directory file)
|
1995-12-19 21:30:13 +00:00
|
|
|
|
(or
|
|
|
|
|
(and (string-match "\\`[^.]+\\'" fn)
|
|
|
|
|
(concat (match-string 0 fn) ".~"))
|
|
|
|
|
(and (string-match "\\`[^.]+\\.\\(..?\\)?" fn)
|
|
|
|
|
(concat (match-string 0 fn) "~")))))
|
1994-01-06 04:30:52 +00:00
|
|
|
|
(concat file "~")))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
(defun backup-file-name-p (file)
|
|
|
|
|
"Return non-nil if FILE is a backup file name (numeric or not).
|
|
|
|
|
This is a separate function so you can redefine it for customization.
|
|
|
|
|
You may need to redefine `file-name-sans-versions' as well."
|
1995-12-19 21:30:13 +00:00
|
|
|
|
(string-match "~\\'" file))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-10 05:44:56 +00:00
|
|
|
|
(defvar backup-extract-version-start)
|
|
|
|
|
|
1992-07-28 19:38:08 +00:00
|
|
|
|
;; This is used in various files.
|
|
|
|
|
;; The usage of bv-length is not very clean,
|
|
|
|
|
;; but I can't see a good alternative,
|
|
|
|
|
;; so as of now I am leaving it alone.
|
|
|
|
|
(defun backup-extract-version (fn)
|
|
|
|
|
"Given the name of a numeric backup file, return the backup number.
|
1997-05-10 05:44:56 +00:00
|
|
|
|
Uses the free variable `backup-extract-version-start', whose value should be
|
1992-07-28 19:38:08 +00:00
|
|
|
|
the index in the name where the version number begins."
|
1997-05-10 05:44:56 +00:00
|
|
|
|
(if (and (string-match "[0-9]+~$" fn backup-extract-version-start)
|
|
|
|
|
(= (match-beginning 0) backup-extract-version-start))
|
|
|
|
|
(string-to-int (substring fn backup-extract-version-start -1))
|
1992-07-28 19:38:08 +00:00
|
|
|
|
0))
|
|
|
|
|
|
1991-07-19 14:42:53 +00:00
|
|
|
|
;; I believe there is no need to alter this behavior for VMS;
|
|
|
|
|
;; since backup files are not made on VMS, it should not get called.
|
|
|
|
|
(defun find-backup-file-name (fn)
|
|
|
|
|
"Find a file name for a backup file, and suggestions for deletions.
|
|
|
|
|
Value is a list whose car is the name for the backup file
|
1995-01-12 21:05:07 +00:00
|
|
|
|
and whose cdr is a list of old versions to consider deleting now.
|
|
|
|
|
If the value is nil, don't make a backup."
|
|
|
|
|
(let ((handler (find-file-name-handler fn 'find-backup-file-name)))
|
|
|
|
|
;; Run a handler for this function so that ange-ftp can refuse to do it.
|
|
|
|
|
(if handler
|
|
|
|
|
(funcall handler 'find-backup-file-name fn)
|
|
|
|
|
(if (eq version-control 'never)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(list (make-backup-file-name fn))
|
1995-01-12 21:05:07 +00:00
|
|
|
|
(let* ((base-versions (concat (file-name-nondirectory fn) ".~"))
|
1997-05-10 05:44:56 +00:00
|
|
|
|
(backup-extract-version-start (length base-versions))
|
1995-01-12 21:05:07 +00:00
|
|
|
|
possibilities
|
|
|
|
|
(versions nil)
|
|
|
|
|
(high-water-mark 0)
|
|
|
|
|
(deserve-versions-p nil)
|
|
|
|
|
(number-to-delete 0))
|
|
|
|
|
(condition-case ()
|
|
|
|
|
(setq possibilities (file-name-all-completions
|
|
|
|
|
base-versions
|
|
|
|
|
(file-name-directory fn))
|
|
|
|
|
versions (sort (mapcar
|
|
|
|
|
(function backup-extract-version)
|
|
|
|
|
possibilities)
|
|
|
|
|
'<)
|
|
|
|
|
high-water-mark (apply 'max 0 versions)
|
|
|
|
|
deserve-versions-p (or version-control
|
|
|
|
|
(> high-water-mark 0))
|
|
|
|
|
number-to-delete (- (length versions)
|
|
|
|
|
kept-old-versions kept-new-versions -1))
|
|
|
|
|
(file-error
|
|
|
|
|
(setq possibilities nil)))
|
|
|
|
|
(if (not deserve-versions-p)
|
|
|
|
|
(list (make-backup-file-name fn))
|
|
|
|
|
(cons (concat fn ".~" (int-to-string (1+ high-water-mark)) "~")
|
|
|
|
|
(if (and (> number-to-delete 0)
|
|
|
|
|
;; Delete nothing if there is overflow
|
|
|
|
|
;; in the number of versions to keep.
|
|
|
|
|
(>= (+ kept-new-versions kept-old-versions -1) 0))
|
|
|
|
|
(mapcar (function (lambda (n)
|
|
|
|
|
(concat fn ".~" (int-to-string n) "~")))
|
|
|
|
|
(let ((v (nthcdr kept-old-versions versions)))
|
|
|
|
|
(rplacd (nthcdr (1- number-to-delete) v) ())
|
|
|
|
|
v))))))))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
(defun file-nlinks (filename)
|
|
|
|
|
"Return number of names file FILENAME has."
|
|
|
|
|
(car (cdr (file-attributes filename))))
|
1992-09-27 02:25:31 +00:00
|
|
|
|
|
|
|
|
|
(defun file-relative-name (filename &optional directory)
|
1997-04-11 01:47:41 +00:00
|
|
|
|
"Convert FILENAME to be relative to DIRECTORY (default: default-directory).
|
|
|
|
|
This function returns a relative file name which is equivalent to FILENAME
|
|
|
|
|
when used with that default directory as the default.
|
|
|
|
|
If this is impossible (which can happen on MSDOS and Windows
|
|
|
|
|
when the file name and directory use different drive names)
|
|
|
|
|
then it returns FILENAME."
|
1997-02-05 01:32:44 +00:00
|
|
|
|
(save-match-data
|
1997-05-10 05:44:56 +00:00
|
|
|
|
(let ((fname (expand-file-name filename)))
|
|
|
|
|
(setq directory (file-name-as-directory
|
|
|
|
|
(expand-file-name (or directory default-directory))))
|
|
|
|
|
;; On Microsoft OSes, if FILENAME and DIRECTORY have different
|
|
|
|
|
;; drive names, they can't be relative, so return the absolute name.
|
|
|
|
|
(if (and (or (eq system-type 'ms-dos)
|
|
|
|
|
(eq system-type 'windows-nt))
|
|
|
|
|
(not (string-equal (substring fname 0 2)
|
|
|
|
|
(substring directory 0 2))))
|
|
|
|
|
filename
|
1997-06-27 09:04:14 +00:00
|
|
|
|
(let ((ancestor ".")
|
|
|
|
|
(fname-dir (file-name-as-directory fname)))
|
|
|
|
|
(while (and (not (string-match (concat "^" (regexp-quote directory)) fname-dir))
|
|
|
|
|
(not (string-match (concat "^" (regexp-quote directory)) fname)))
|
1997-05-10 05:44:56 +00:00
|
|
|
|
(setq directory (file-name-directory (substring directory 0 -1))
|
1997-06-27 09:04:14 +00:00
|
|
|
|
ancestor (if (equal ancestor ".")
|
|
|
|
|
".."
|
|
|
|
|
(concat "../" ancestor))))
|
|
|
|
|
;; Now ancestor is empty, or .., or ../.., etc.
|
|
|
|
|
(if (string-match (concat "^" (regexp-quote directory)) fname)
|
|
|
|
|
;; We matched within FNAME's directory part.
|
|
|
|
|
;; Add the rest of FNAME onto ANCESTOR.
|
|
|
|
|
(let ((rest (substring fname (match-end 0))))
|
|
|
|
|
(if (and (equal ancestor ".")
|
|
|
|
|
(not (equal rest "")))
|
|
|
|
|
;; But don't bother with ANCESTOR if it would give us `./'.
|
|
|
|
|
rest
|
|
|
|
|
(concat (file-name-as-directory ancestor) rest)))
|
|
|
|
|
;; We matched FNAME's directory equivalent.
|
|
|
|
|
ancestor))))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
(defun save-buffer (&optional args)
|
|
|
|
|
"Save current buffer in visited file if modified. Versions described below.
|
|
|
|
|
By default, makes the previous version into a backup file
|
|
|
|
|
if previously requested or if this is the first save.
|
1995-12-23 07:34:59 +00:00
|
|
|
|
With 1 \\[universal-argument], marks this version
|
1991-07-19 14:42:53 +00:00
|
|
|
|
to become a backup when the next save is done.
|
1995-12-23 07:34:59 +00:00
|
|
|
|
With 2 \\[universal-argument]'s,
|
1991-07-19 14:42:53 +00:00
|
|
|
|
unconditionally makes the previous version into a backup file.
|
1995-12-23 07:34:59 +00:00
|
|
|
|
With 3 \\[universal-argument]'s, marks this version
|
|
|
|
|
to become a backup when the next save is done,
|
|
|
|
|
and unconditionally makes the previous version into a backup file.
|
|
|
|
|
|
1998-10-08 02:20:26 +00:00
|
|
|
|
With argument of 0, never make the previous version into a backup file.
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
If a file's name is FOO, the names of its numbered backup versions are
|
|
|
|
|
FOO.~i~ for various integers i. A non-numbered backup file is called FOO~.
|
|
|
|
|
Numeric backups (rather than FOO~) will be made if value of
|
|
|
|
|
`version-control' is not the atom `never' and either there are already
|
|
|
|
|
numeric versions of the file being backed up, or `version-control' is
|
|
|
|
|
non-nil.
|
|
|
|
|
We don't want excessive versions piling up, so there are variables
|
|
|
|
|
`kept-old-versions', which tells Emacs how many oldest versions to keep,
|
|
|
|
|
and `kept-new-versions', which tells how many newest versions to keep.
|
|
|
|
|
Defaults are 2 old versions and 2 new.
|
|
|
|
|
`dired-kept-versions' controls dired's clean-directory (.) command.
|
1994-07-06 21:34:31 +00:00
|
|
|
|
If `delete-old-versions' is nil, system will query user
|
1998-07-12 03:14:44 +00:00
|
|
|
|
before trimming versions. Otherwise it does it silently.
|
|
|
|
|
|
1998-10-08 02:20:26 +00:00
|
|
|
|
If `vc-make-backup-files' is nil, which is the default,
|
|
|
|
|
no backup files are made for files managed by version control.
|
|
|
|
|
(This is because the version control system itself records previous versions.)
|
|
|
|
|
|
1998-07-12 03:14:44 +00:00
|
|
|
|
See the subroutine `basic-save-buffer' for more information."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(interactive "p")
|
|
|
|
|
(let ((modp (buffer-modified-p))
|
|
|
|
|
(large (> (buffer-size) 50000))
|
1994-08-06 03:19:35 +00:00
|
|
|
|
(make-backup-files (or (and make-backup-files (not (eq args 0)))
|
|
|
|
|
(memq args '(16 64)))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(and modp (memq args '(16 64)) (setq buffer-backed-up nil))
|
|
|
|
|
(if (and modp large) (message "Saving file %s..." (buffer-file-name)))
|
|
|
|
|
(basic-save-buffer)
|
|
|
|
|
(and modp (memq args '(4 64)) (setq buffer-backed-up nil))))
|
|
|
|
|
|
|
|
|
|
(defun delete-auto-save-file-if-necessary (&optional force)
|
|
|
|
|
"Delete auto-save file for current buffer if `delete-auto-save-files' is t.
|
|
|
|
|
Normally delete only if the file was written by this Emacs since
|
|
|
|
|
the last real save, but optional arg FORCE non-nil means delete anyway."
|
|
|
|
|
(and buffer-auto-save-file-name delete-auto-save-files
|
|
|
|
|
(not (string= buffer-file-name buffer-auto-save-file-name))
|
|
|
|
|
(or force (recent-auto-save-p))
|
|
|
|
|
(progn
|
|
|
|
|
(condition-case ()
|
|
|
|
|
(delete-file buffer-auto-save-file-name)
|
|
|
|
|
(file-error nil))
|
|
|
|
|
(set-buffer-auto-saved))))
|
|
|
|
|
|
1999-01-12 22:20:25 +00:00
|
|
|
|
(defvar auto-save-hook nil
|
|
|
|
|
"Normal hook run just before auto-saving.")
|
|
|
|
|
|
1995-08-28 15:15:28 +00:00
|
|
|
|
(defvar after-save-hook nil
|
|
|
|
|
"Normal hook that is run after a buffer is saved to its file.")
|
|
|
|
|
|
1998-05-11 01:33:54 +00:00
|
|
|
|
(defvar save-buffer-coding-system nil
|
|
|
|
|
"If non-nil, use this coding system for saving the buffer.
|
|
|
|
|
More precisely, use this coding system in place of the
|
|
|
|
|
value of `buffer-file-coding-system', when saving the buffer.
|
|
|
|
|
Calling `write-region' for any purpose other than saving the buffer
|
|
|
|
|
will still use `buffer-file-coding-system'; this variable has no effect
|
|
|
|
|
in such cases.")
|
|
|
|
|
|
1998-07-24 10:43:29 +00:00
|
|
|
|
(make-variable-buffer-local 'save-buffer-coding-system)
|
|
|
|
|
(put 'save-buffer-coding-system 'permanent-local t)
|
|
|
|
|
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(defun basic-save-buffer ()
|
1995-08-28 15:15:28 +00:00
|
|
|
|
"Save the current buffer in its visited file, if it has been modified.
|
1998-07-12 03:14:44 +00:00
|
|
|
|
The hooks `write-contents-hooks', `local-write-file-hooks' and
|
|
|
|
|
`write-file-hooks' get a chance to do the job of saving; if they do not,
|
|
|
|
|
then the buffer is saved in the visited file file in the usual way.
|
|
|
|
|
After saving the buffer, this function runs `after-save-hook'."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(interactive)
|
1998-03-05 04:00:53 +00:00
|
|
|
|
(save-current-buffer
|
1994-12-31 07:49:59 +00:00
|
|
|
|
;; In an indirect buffer, save its base buffer instead.
|
|
|
|
|
(if (buffer-base-buffer)
|
|
|
|
|
(set-buffer (buffer-base-buffer)))
|
|
|
|
|
(if (buffer-modified-p)
|
|
|
|
|
(let ((recent-save (recent-auto-save-p))
|
|
|
|
|
setmodes tempsetmodes)
|
|
|
|
|
;; On VMS, rename file and buffer to get rid of version number.
|
|
|
|
|
(if (and (eq system-type 'vax-vms)
|
|
|
|
|
(not (string= buffer-file-name
|
|
|
|
|
(file-name-sans-versions buffer-file-name))))
|
|
|
|
|
(let (buffer-new-name)
|
|
|
|
|
;; Strip VMS version number before save.
|
|
|
|
|
(setq buffer-file-name
|
|
|
|
|
(file-name-sans-versions buffer-file-name))
|
|
|
|
|
;; Construct a (unique) buffer name to correspond.
|
|
|
|
|
(let ((buf (create-file-buffer (downcase buffer-file-name))))
|
|
|
|
|
(setq buffer-new-name (buffer-name buf))
|
|
|
|
|
(kill-buffer buf))
|
|
|
|
|
(rename-buffer buffer-new-name)))
|
|
|
|
|
;; If buffer has no file name, ask user for one.
|
|
|
|
|
(or buffer-file-name
|
1995-08-19 17:01:27 +00:00
|
|
|
|
(let ((filename
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(read-file-name "File to save in: ") nil)))
|
|
|
|
|
(and (file-exists-p filename)
|
|
|
|
|
(or (y-or-n-p (format "File `%s' exists; overwrite? "
|
|
|
|
|
filename))
|
|
|
|
|
(error "Canceled")))
|
|
|
|
|
(set-visited-file-name filename)))
|
1994-12-31 07:49:59 +00:00
|
|
|
|
(or (verify-visited-file-modtime (current-buffer))
|
|
|
|
|
(not (file-exists-p buffer-file-name))
|
|
|
|
|
(yes-or-no-p
|
|
|
|
|
(format "%s has changed since visited or saved. Save anyway? "
|
|
|
|
|
(file-name-nondirectory buffer-file-name)))
|
|
|
|
|
(error "Save not confirmed"))
|
|
|
|
|
(save-restriction
|
|
|
|
|
(widen)
|
1998-03-05 04:00:53 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(and (> (point-max) 1)
|
|
|
|
|
(/= (char-after (1- (point-max))) ?\n)
|
|
|
|
|
(not (and (eq selective-display t)
|
|
|
|
|
(= (char-after (1- (point-max))) ?\r)))
|
|
|
|
|
(or (eq require-final-newline t)
|
|
|
|
|
(and require-final-newline
|
|
|
|
|
(y-or-n-p
|
|
|
|
|
(format "Buffer %s does not end in newline. Add one? "
|
|
|
|
|
(buffer-name)))))
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-max))
|
|
|
|
|
(insert ?\n))))
|
1994-12-31 07:49:59 +00:00
|
|
|
|
(or (run-hook-with-args-until-success 'write-contents-hooks)
|
|
|
|
|
(run-hook-with-args-until-success 'local-write-file-hooks)
|
|
|
|
|
(run-hook-with-args-until-success 'write-file-hooks)
|
|
|
|
|
;; If a hook returned t, file is already "written".
|
|
|
|
|
;; Otherwise, write it the usual way now.
|
|
|
|
|
(setq setmodes (basic-save-buffer-1)))
|
1997-10-19 20:20:15 +00:00
|
|
|
|
;; Now we have saved the current buffer. Let's make sure
|
|
|
|
|
;; that buffer-file-coding-system is fixed to what
|
|
|
|
|
;; actually used for saving by binding it locally.
|
1998-05-11 01:33:54 +00:00
|
|
|
|
(if save-buffer-coding-system
|
|
|
|
|
(setq save-buffer-coding-system last-coding-system-used)
|
|
|
|
|
(setq buffer-file-coding-system last-coding-system-used))
|
1995-10-29 20:23:42 +00:00
|
|
|
|
(setq buffer-file-number
|
|
|
|
|
(nthcdr 10 (file-attributes buffer-file-name)))
|
1994-12-31 07:49:59 +00:00
|
|
|
|
(if setmodes
|
|
|
|
|
(condition-case ()
|
|
|
|
|
(set-file-modes buffer-file-name setmodes)
|
|
|
|
|
(error nil))))
|
|
|
|
|
;; If the auto-save file was recent before this command,
|
|
|
|
|
;; delete it now.
|
|
|
|
|
(delete-auto-save-file-if-necessary recent-save)
|
1995-08-22 19:06:19 +00:00
|
|
|
|
;; Support VC `implicit' locking.
|
|
|
|
|
(vc-after-save)
|
1994-12-31 07:49:59 +00:00
|
|
|
|
(run-hooks 'after-save-hook))
|
|
|
|
|
(message "(No changes need to be saved)"))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1994-03-29 06:59:50 +00:00
|
|
|
|
;; This does the "real job" of writing a buffer into its visited file
|
|
|
|
|
;; and making a backup file. This is what is normally done
|
|
|
|
|
;; but inhibited if one of write-file-hooks returns non-nil.
|
|
|
|
|
;; It returns a value to store in setmodes.
|
|
|
|
|
(defun basic-save-buffer-1 ()
|
1998-07-24 10:43:29 +00:00
|
|
|
|
(if save-buffer-coding-system
|
|
|
|
|
(let ((coding-system-for-write save-buffer-coding-system))
|
|
|
|
|
(basic-save-buffer-2))
|
|
|
|
|
(basic-save-buffer-2)))
|
|
|
|
|
|
|
|
|
|
(defun basic-save-buffer-2 ()
|
|
|
|
|
(let (tempsetmodes setmodes)
|
1994-03-29 06:59:50 +00:00
|
|
|
|
(if (not (file-writable-p buffer-file-name))
|
|
|
|
|
(let ((dir (file-name-directory buffer-file-name)))
|
|
|
|
|
(if (not (file-directory-p dir))
|
1997-07-16 05:30:34 +00:00
|
|
|
|
(if (file-exists-p dir)
|
|
|
|
|
(error "%s is not a directory" dir)
|
1997-08-04 18:56:42 +00:00
|
|
|
|
(error "%s: no such directory" buffer-file-name))
|
1994-03-29 06:59:50 +00:00
|
|
|
|
(if (not (file-exists-p buffer-file-name))
|
|
|
|
|
(error "Directory %s write-protected" dir)
|
|
|
|
|
(if (yes-or-no-p
|
|
|
|
|
(format "File %s is write-protected; try to save anyway? "
|
|
|
|
|
(file-name-nondirectory
|
|
|
|
|
buffer-file-name)))
|
|
|
|
|
(setq tempsetmodes t)
|
|
|
|
|
(error "Attempt to save to a file which you aren't allowed to write"))))))
|
|
|
|
|
(or buffer-backed-up
|
|
|
|
|
(setq setmodes (backup-buffer)))
|
1995-12-24 09:25:19 +00:00
|
|
|
|
(let ((dir (file-name-directory buffer-file-name)))
|
1994-07-27 18:55:38 +00:00
|
|
|
|
(if (and file-precious-flag
|
|
|
|
|
(file-writable-p dir))
|
|
|
|
|
;; If file is precious, write temp name, then rename it.
|
|
|
|
|
;; This requires write access to the containing dir,
|
|
|
|
|
;; which is why we don't try it if we don't have that access.
|
|
|
|
|
(let ((realname buffer-file-name)
|
1994-09-20 04:27:40 +00:00
|
|
|
|
tempname temp nogood i succeed
|
|
|
|
|
(old-modtime (visited-file-modtime)))
|
1994-07-27 18:55:38 +00:00
|
|
|
|
(setq i 0)
|
|
|
|
|
(setq nogood t)
|
|
|
|
|
;; Find the temporary name to write under.
|
|
|
|
|
(while nogood
|
1996-01-01 22:51:51 +00:00
|
|
|
|
(setq tempname (format
|
1996-05-21 17:21:25 +00:00
|
|
|
|
(if (and (eq system-type 'ms-dos)
|
|
|
|
|
(not (msdos-long-file-names)))
|
1996-01-01 22:51:51 +00:00
|
|
|
|
"%s#%d.tm#" ; MSDOS limits files to 8+3
|
|
|
|
|
"%s#tmp#%d")
|
|
|
|
|
dir i))
|
1994-07-27 18:55:38 +00:00
|
|
|
|
(setq nogood (file-exists-p tempname))
|
|
|
|
|
(setq i (1+ i)))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(progn (clear-visited-file-modtime)
|
|
|
|
|
(write-region (point-min) (point-max)
|
1995-08-14 17:24:21 +00:00
|
|
|
|
tempname nil realname
|
|
|
|
|
buffer-file-truename)
|
1994-07-27 18:55:38 +00:00
|
|
|
|
(setq succeed t))
|
|
|
|
|
;; If writing the temp file fails,
|
|
|
|
|
;; delete the temp file.
|
1995-12-24 09:25:19 +00:00
|
|
|
|
(or succeed
|
1994-09-20 04:27:40 +00:00
|
|
|
|
(progn
|
|
|
|
|
(delete-file tempname)
|
|
|
|
|
(set-visited-file-modtime old-modtime))))
|
1994-07-27 18:55:38 +00:00
|
|
|
|
;; Since we have created an entirely new file
|
|
|
|
|
;; and renamed it, make sure it gets the
|
|
|
|
|
;; right permission bits set.
|
|
|
|
|
(setq setmodes (file-modes buffer-file-name))
|
|
|
|
|
;; We succeeded in writing the temp file,
|
|
|
|
|
;; so rename it.
|
|
|
|
|
(rename-file tempname buffer-file-name t))
|
|
|
|
|
;; If file not writable, see if we can make it writable
|
|
|
|
|
;; temporarily while we write it.
|
|
|
|
|
;; But no need to do so if we have just backed it up
|
|
|
|
|
;; (setmodes is set) because that says we're superseding.
|
|
|
|
|
(cond ((and tempsetmodes (not setmodes))
|
|
|
|
|
;; Change the mode back, after writing.
|
|
|
|
|
(setq setmodes (file-modes buffer-file-name))
|
|
|
|
|
(set-file-modes buffer-file-name 511)))
|
|
|
|
|
(write-region (point-min) (point-max)
|
1995-08-14 17:24:21 +00:00
|
|
|
|
buffer-file-name nil t buffer-file-truename)))
|
1994-03-29 06:59:50 +00:00
|
|
|
|
setmodes))
|
|
|
|
|
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(defun save-some-buffers (&optional arg exiting)
|
|
|
|
|
"Save some modified file-visiting buffers. Asks user about each one.
|
1991-10-31 08:30:58 +00:00
|
|
|
|
Optional argument (the prefix) non-nil means save all with no questions.
|
|
|
|
|
Optional second argument EXITING means ask about certain non-file buffers
|
|
|
|
|
as well as about file buffers."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(interactive "P")
|
1992-07-28 23:26:57 +00:00
|
|
|
|
(save-window-excursion
|
1995-12-24 09:25:19 +00:00
|
|
|
|
(let* ((queried nil)
|
|
|
|
|
(files-done
|
|
|
|
|
(map-y-or-n-p
|
|
|
|
|
(function
|
|
|
|
|
(lambda (buffer)
|
|
|
|
|
(and (buffer-modified-p buffer)
|
|
|
|
|
(not (buffer-base-buffer buffer))
|
|
|
|
|
(or
|
|
|
|
|
(buffer-file-name buffer)
|
|
|
|
|
(and exiting
|
|
|
|
|
(progn
|
|
|
|
|
(set-buffer buffer)
|
|
|
|
|
(and buffer-offer-save (> (buffer-size) 0)))))
|
|
|
|
|
(if arg
|
|
|
|
|
t
|
|
|
|
|
(setq queried t)
|
|
|
|
|
(if (buffer-file-name buffer)
|
|
|
|
|
(format "Save file %s? "
|
|
|
|
|
(buffer-file-name buffer))
|
|
|
|
|
(format "Save buffer %s? "
|
|
|
|
|
(buffer-name buffer)))))))
|
|
|
|
|
(function
|
|
|
|
|
(lambda (buffer)
|
|
|
|
|
(set-buffer buffer)
|
|
|
|
|
(save-buffer)))
|
|
|
|
|
(buffer-list)
|
|
|
|
|
'("buffer" "buffers" "save")
|
|
|
|
|
(list (list ?\C-r (lambda (buf)
|
1997-06-18 17:24:59 +00:00
|
|
|
|
(view-buffer buf
|
|
|
|
|
(function
|
|
|
|
|
(lambda (ignore)
|
|
|
|
|
(exit-recursive-edit))))
|
1995-12-24 09:25:19 +00:00
|
|
|
|
(recursive-edit)
|
|
|
|
|
;; Return nil to ask about BUF again.
|
|
|
|
|
nil)
|
|
|
|
|
"display the current buffer"))))
|
|
|
|
|
(abbrevs-done
|
|
|
|
|
(and save-abbrevs abbrevs-changed
|
|
|
|
|
(progn
|
|
|
|
|
(if (or arg
|
|
|
|
|
(y-or-n-p (format "Save abbrevs in %s? "
|
|
|
|
|
abbrev-file-name)))
|
|
|
|
|
(write-abbrev-file nil))
|
|
|
|
|
;; Don't keep bothering user if he says no.
|
|
|
|
|
(setq abbrevs-changed nil)
|
|
|
|
|
t))))
|
|
|
|
|
(or queried (> files-done 0) abbrevs-done
|
1994-01-01 06:21:59 +00:00
|
|
|
|
(message "(No files need saving)")))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
(defun not-modified (&optional arg)
|
|
|
|
|
"Mark current buffer as unmodified, not needing to be saved.
|
1995-01-15 10:59:20 +00:00
|
|
|
|
With prefix arg, mark buffer as modified, so \\[save-buffer] will save.
|
|
|
|
|
|
|
|
|
|
It is not a good idea to use this function in Lisp programs, because it
|
|
|
|
|
prints a message in the minibuffer. Instead, use `set-buffer-modified-p'."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(interactive "P")
|
|
|
|
|
(message (if arg "Modification-flag set"
|
|
|
|
|
"Modification-flag cleared"))
|
|
|
|
|
(set-buffer-modified-p arg))
|
|
|
|
|
|
|
|
|
|
(defun toggle-read-only (&optional arg)
|
|
|
|
|
"Change whether this buffer is visiting its file read-only.
|
1997-06-18 17:24:59 +00:00
|
|
|
|
With arg, set read-only iff arg is positive.
|
|
|
|
|
If visiting file read-only and `view-read-only' is non-nil, enter view mode."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(interactive "P")
|
1997-06-18 17:24:59 +00:00
|
|
|
|
(cond
|
|
|
|
|
((and arg (if (> (prefix-numeric-value arg) 0) buffer-read-only
|
|
|
|
|
(not buffer-read-only))) ; If buffer-read-only is set correctly,
|
|
|
|
|
nil) ; do nothing.
|
|
|
|
|
;; Toggle.
|
|
|
|
|
((and buffer-read-only view-mode)
|
1998-06-03 14:37:00 +00:00
|
|
|
|
(View-exit-and-edit)
|
|
|
|
|
(make-local-variable 'view-read-only)
|
|
|
|
|
(setq view-read-only t)) ; Must leave view mode.
|
1997-06-18 17:24:59 +00:00
|
|
|
|
((and (not buffer-read-only) view-read-only
|
|
|
|
|
(not (eq (get major-mode 'mode-class) 'special)))
|
|
|
|
|
(view-mode-enter))
|
|
|
|
|
(t (setq buffer-read-only (not buffer-read-only))
|
|
|
|
|
(force-mode-line-update))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(defun insert-file (filename)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"Insert contents of file FILENAME into buffer after point.
|
|
|
|
|
Set mark after the inserted text.
|
|
|
|
|
|
|
|
|
|
This function is meant for the user to run interactively.
|
|
|
|
|
Don't call it from programs! Use `insert-file-contents' instead.
|
|
|
|
|
\(Its calling sequence is different; see its documentation)."
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(interactive "*fInsert file: ")
|
1993-06-19 19:07:19 +00:00
|
|
|
|
(if (file-directory-p filename)
|
|
|
|
|
(signal 'file-error (list "Opening input file" "file is a directory"
|
|
|
|
|
filename)))
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(let ((tem (insert-file-contents filename)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(push-mark (+ (point) (car (cdr tem))))))
|
|
|
|
|
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(defun append-to-file (start end filename)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
"Append the contents of the region to the end of file FILENAME.
|
|
|
|
|
When called from a function, expects three arguments,
|
|
|
|
|
START, END and FILENAME. START and END are buffer positions
|
1997-08-19 10:59:47 +00:00
|
|
|
|
saying what text to write."
|
1997-05-28 03:35:36 +00:00
|
|
|
|
(interactive "r\nFAppend to file: ")
|
|
|
|
|
(write-region start end filename t))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
(defun file-newest-backup (filename)
|
|
|
|
|
"Return most recent backup file for FILENAME or nil if no backups exist."
|
|
|
|
|
(let* ((filename (expand-file-name filename))
|
|
|
|
|
(file (file-name-nondirectory filename))
|
|
|
|
|
(dir (file-name-directory filename))
|
|
|
|
|
(comp (file-name-all-completions file dir))
|
1996-04-03 05:55:12 +00:00
|
|
|
|
(newest nil)
|
|
|
|
|
tem)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(while comp
|
1996-04-03 05:55:12 +00:00
|
|
|
|
(setq tem (car comp)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
comp (cdr comp))
|
1996-04-03 05:55:12 +00:00
|
|
|
|
(cond ((and (backup-file-name-p tem)
|
|
|
|
|
(string= (file-name-sans-versions tem) file))
|
|
|
|
|
(setq tem (concat dir tem))
|
|
|
|
|
(if (or (null newest)
|
|
|
|
|
(file-newer-than-file-p tem newest))
|
|
|
|
|
(setq newest tem)))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
newest))
|
|
|
|
|
|
|
|
|
|
(defun rename-uniquely ()
|
|
|
|
|
"Rename current buffer to a similar name not already taken.
|
|
|
|
|
This function is useful for creating multiple shell process buffers
|
|
|
|
|
or multiple mail buffers, etc."
|
|
|
|
|
(interactive)
|
1995-04-24 14:59:22 +00:00
|
|
|
|
(save-match-data
|
1997-11-07 21:44:16 +00:00
|
|
|
|
(let ((base-name (buffer-name)))
|
|
|
|
|
(and (string-match "<[0-9]+>\\'" base-name)
|
|
|
|
|
(not (and buffer-file-name
|
|
|
|
|
(string= base-name
|
|
|
|
|
(file-name-nondirectory buffer-file-name))))
|
|
|
|
|
;; If the existing buffer name has a <NNN>,
|
|
|
|
|
;; which isn't part of the file name (if any),
|
|
|
|
|
;; then get rid of that.
|
|
|
|
|
(setq base-name (substring base-name 0 (match-beginning 0))))
|
|
|
|
|
(rename-buffer (generate-new-buffer-name base-name))
|
1995-04-25 22:22:21 +00:00
|
|
|
|
(force-mode-line-update))))
|
1991-10-31 08:30:58 +00:00
|
|
|
|
|
1992-11-03 07:07:02 +00:00
|
|
|
|
(defun make-directory (dir &optional parents)
|
1993-06-12 06:54:14 +00:00
|
|
|
|
"Create the directory DIR and any nonexistent parent dirs.
|
|
|
|
|
Interactively, the default choice of directory to create
|
|
|
|
|
is the current default directory for file names.
|
1996-01-04 23:34:55 +00:00
|
|
|
|
That is useful when you have visited a file in a nonexistent directory.
|
1993-06-12 06:54:14 +00:00
|
|
|
|
|
|
|
|
|
Noninteractively, the second (optional) argument PARENTS says whether
|
|
|
|
|
to create parent directories if they don't exist."
|
|
|
|
|
(interactive
|
|
|
|
|
(list (read-file-name "Make directory: " default-directory default-directory
|
|
|
|
|
nil nil)
|
|
|
|
|
t))
|
1994-04-22 23:59:24 +00:00
|
|
|
|
(let ((handler (find-file-name-handler dir 'make-directory)))
|
1992-11-03 07:07:02 +00:00
|
|
|
|
(if handler
|
|
|
|
|
(funcall handler 'make-directory dir parents)
|
|
|
|
|
(if (not parents)
|
|
|
|
|
(make-directory-internal dir)
|
|
|
|
|
(let ((dir (directory-file-name (expand-file-name dir)))
|
|
|
|
|
create-list)
|
|
|
|
|
(while (not (file-exists-p dir))
|
1995-12-24 09:25:19 +00:00
|
|
|
|
(setq create-list (cons dir create-list)
|
1992-11-03 07:07:02 +00:00
|
|
|
|
dir (directory-file-name (file-name-directory dir))))
|
|
|
|
|
(while create-list
|
|
|
|
|
(make-directory-internal (car create-list))
|
|
|
|
|
(setq create-list (cdr create-list))))))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
(put 'revert-buffer-function 'permanent-local t)
|
|
|
|
|
(defvar revert-buffer-function nil
|
1994-07-06 23:03:47 +00:00
|
|
|
|
"Function to use to revert this buffer, or nil to do the default.
|
|
|
|
|
The function receives two arguments IGNORE-AUTO and NOCONFIRM,
|
|
|
|
|
which are the arguments that `revert-buffer' received.")
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
(put 'revert-buffer-insert-file-contents-function 'permanent-local t)
|
|
|
|
|
(defvar revert-buffer-insert-file-contents-function nil
|
|
|
|
|
"Function to use to insert contents when reverting this buffer.
|
|
|
|
|
Gets two args, first the nominal file name to use,
|
|
|
|
|
and second, t if reading the auto-save file.")
|
|
|
|
|
|
1995-05-29 19:42:42 +00:00
|
|
|
|
(defvar before-revert-hook nil
|
|
|
|
|
"Normal hook for `revert-buffer' to run before reverting.
|
|
|
|
|
If `revert-buffer-function' is used to override the normal revert
|
|
|
|
|
mechanism, this hook is not used.")
|
|
|
|
|
|
|
|
|
|
(defvar after-revert-hook nil
|
|
|
|
|
"Normal hook for `revert-buffer' to run after reverting.
|
|
|
|
|
Note that the hook value that it runs is the value that was in effect
|
|
|
|
|
before reverting; that makes a difference if you have buffer-local
|
|
|
|
|
hook functions.
|
|
|
|
|
|
|
|
|
|
If `revert-buffer-function' is used to override the normal revert
|
|
|
|
|
mechanism, this hook is not used.")
|
|
|
|
|
|
1998-10-20 18:48:06 +00:00
|
|
|
|
(defvar revert-buffer-internal-hook)
|
|
|
|
|
|
1995-12-25 21:05:31 +00:00
|
|
|
|
(defun revert-buffer (&optional ignore-auto noconfirm preserve-modes)
|
1996-11-09 09:04:52 +00:00
|
|
|
|
"Replace current buffer text with the text of the visited file on disk.
|
1991-07-19 14:42:53 +00:00
|
|
|
|
This undoes all changes since the file was visited or saved.
|
1992-04-04 05:55:39 +00:00
|
|
|
|
With a prefix argument, offer to revert from latest auto-save file, if
|
|
|
|
|
that is more recent than the visited file.
|
1993-02-22 14:17:16 +00:00
|
|
|
|
|
1996-11-09 09:04:52 +00:00
|
|
|
|
This command also works for special buffers that contain text which
|
|
|
|
|
doesn't come from a file, but reflects some other data base instead:
|
|
|
|
|
for example, Dired buffers and buffer-list buffers. In these cases,
|
|
|
|
|
it reconstructs the buffer contents from the appropriate data base.
|
|
|
|
|
|
1995-03-08 03:43:34 +00:00
|
|
|
|
When called from Lisp, the first argument is IGNORE-AUTO; only offer
|
1993-02-22 14:17:16 +00:00
|
|
|
|
to revert from the auto-save file when this is nil. Note that the
|
|
|
|
|
sense of this argument is the reverse of the prefix argument, for the
|
|
|
|
|
sake of backward compatibility. IGNORE-AUTO is optional, defaulting
|
|
|
|
|
to nil.
|
|
|
|
|
|
|
|
|
|
Optional second argument NOCONFIRM means don't ask for confirmation at
|
1998-11-01 08:46:04 +00:00
|
|
|
|
all. (The local variable `revert-without-query', if non-nil, prevents
|
|
|
|
|
confirmation.)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1996-08-20 21:22:41 +00:00
|
|
|
|
Optional third argument PRESERVE-MODES non-nil means don't alter
|
|
|
|
|
the files modes. Normally we reinitialize them using `normal-mode'.
|
|
|
|
|
|
1992-04-04 05:55:39 +00:00
|
|
|
|
If the value of `revert-buffer-function' is non-nil, it is called to
|
1996-11-09 09:04:52 +00:00
|
|
|
|
do all the work for this command. Otherwise, the hooks
|
|
|
|
|
`before-revert-hook' and `after-revert-hook' are run at the beginning
|
|
|
|
|
and the end, and if `revert-buffer-insert-file-contents-function' is
|
|
|
|
|
non-nil, it is called instead of rereading visited file contents."
|
1994-01-18 19:13:11 +00:00
|
|
|
|
|
1993-02-22 14:17:16 +00:00
|
|
|
|
;; I admit it's odd to reverse the sense of the prefix argument, but
|
|
|
|
|
;; there is a lot of code out there which assumes that the first
|
|
|
|
|
;; argument should be t to avoid consulting the auto-save file, and
|
|
|
|
|
;; there's no straightforward way to encourage authors to notice a
|
|
|
|
|
;; reversal of the argument sense. So I'm just changing the user
|
|
|
|
|
;; interface, but leaving the programmatic interface the same.
|
1995-02-28 06:24:08 +00:00
|
|
|
|
(interactive (list (not current-prefix-arg)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(if revert-buffer-function
|
1993-02-22 14:17:16 +00:00
|
|
|
|
(funcall revert-buffer-function ignore-auto noconfirm)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(let* ((opoint (point))
|
1993-02-22 14:17:16 +00:00
|
|
|
|
(auto-save-p (and (not ignore-auto)
|
|
|
|
|
(recent-auto-save-p)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
buffer-auto-save-file-name
|
|
|
|
|
(file-readable-p buffer-auto-save-file-name)
|
|
|
|
|
(y-or-n-p
|
|
|
|
|
"Buffer has been auto-saved recently. Revert from auto-save file? ")))
|
|
|
|
|
(file-name (if auto-save-p
|
|
|
|
|
buffer-auto-save-file-name
|
|
|
|
|
buffer-file-name)))
|
|
|
|
|
(cond ((null file-name)
|
|
|
|
|
(error "Buffer does not seem to be associated with any file"))
|
|
|
|
|
((or noconfirm
|
1997-05-20 05:27:50 +00:00
|
|
|
|
(and (not (buffer-modified-p))
|
|
|
|
|
(let ((tail revert-without-query)
|
|
|
|
|
(found nil))
|
|
|
|
|
(while tail
|
|
|
|
|
(if (string-match (car tail) file-name)
|
|
|
|
|
(setq found t))
|
|
|
|
|
(setq tail (cdr tail)))
|
|
|
|
|
found))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(yes-or-no-p (format "Revert buffer from file %s? "
|
|
|
|
|
file-name)))
|
1994-02-01 01:31:37 +00:00
|
|
|
|
(run-hooks 'before-revert-hook)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
;; If file was backed up but has changed since,
|
|
|
|
|
;; we shd make another backup.
|
|
|
|
|
(and (not auto-save-p)
|
1991-10-31 08:30:58 +00:00
|
|
|
|
(not (verify-visited-file-modtime (current-buffer)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(setq buffer-backed-up nil))
|
|
|
|
|
;; Get rid of all undo records for this buffer.
|
|
|
|
|
(or (eq buffer-undo-list t)
|
|
|
|
|
(setq buffer-undo-list nil))
|
1995-05-29 06:59:26 +00:00
|
|
|
|
;; Effectively copy the after-revert-hook status,
|
|
|
|
|
;; since after-find-file will clobber it.
|
|
|
|
|
(let ((global-hook (default-value 'after-revert-hook))
|
|
|
|
|
(local-hook-p (local-variable-p 'after-revert-hook))
|
|
|
|
|
(local-hook (and (local-variable-p 'after-revert-hook)
|
|
|
|
|
after-revert-hook)))
|
|
|
|
|
(let (buffer-read-only
|
|
|
|
|
;; Don't make undo records for the reversion.
|
|
|
|
|
(buffer-undo-list t))
|
|
|
|
|
(if revert-buffer-insert-file-contents-function
|
|
|
|
|
(funcall revert-buffer-insert-file-contents-function
|
|
|
|
|
file-name auto-save-p)
|
|
|
|
|
(if (not (file-exists-p file-name))
|
|
|
|
|
(error "File %s no longer exists!" file-name))
|
|
|
|
|
;; Bind buffer-file-name to nil
|
|
|
|
|
;; so that we don't try to lock the file.
|
|
|
|
|
(let ((buffer-file-name nil))
|
|
|
|
|
(or auto-save-p
|
|
|
|
|
(unlock-buffer)))
|
|
|
|
|
(widen)
|
1997-08-26 11:45:49 +00:00
|
|
|
|
(let ((coding-system-for-read
|
|
|
|
|
;; Auto-saved file shoule be read without
|
|
|
|
|
;; any code conversion.
|
|
|
|
|
(if auto-save-p 'no-conversion
|
|
|
|
|
coding-system-for-read)))
|
|
|
|
|
(insert-file-contents file-name (not auto-save-p)
|
|
|
|
|
nil nil t))))
|
1995-05-29 06:59:26 +00:00
|
|
|
|
(goto-char (min opoint (point-max)))
|
|
|
|
|
;; Recompute the truename in case changes in symlinks
|
|
|
|
|
;; have changed the truename.
|
|
|
|
|
(setq buffer-file-truename
|
|
|
|
|
(abbreviate-file-name (file-truename buffer-file-name)))
|
1995-12-25 21:05:31 +00:00
|
|
|
|
(after-find-file nil nil t t preserve-modes)
|
1995-05-29 06:59:26 +00:00
|
|
|
|
;; Run after-revert-hook as it was before we reverted.
|
|
|
|
|
(setq-default revert-buffer-internal-hook global-hook)
|
|
|
|
|
(if local-hook-p
|
|
|
|
|
(progn
|
|
|
|
|
(make-local-variable 'revert-buffer-internal-hook)
|
|
|
|
|
(setq revert-buffer-internal-hook local-hook))
|
|
|
|
|
(kill-local-variable 'revert-buffer-internal-hook))
|
|
|
|
|
(run-hooks 'revert-buffer-internal-hook))
|
1994-02-01 01:31:37 +00:00
|
|
|
|
t)))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
(defun recover-file (file)
|
|
|
|
|
"Visit file FILE, but get contents from its last auto-save file."
|
1995-02-10 06:29:31 +00:00
|
|
|
|
;; Actually putting the file name in the minibuffer should be used
|
|
|
|
|
;; only rarely.
|
|
|
|
|
;; Not just because users often use the default.
|
1995-12-06 11:59:55 +00:00
|
|
|
|
(interactive "FRecover file: ")
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(setq file (expand-file-name file))
|
1994-02-16 18:23:16 +00:00
|
|
|
|
(if (auto-save-file-name-p (file-name-nondirectory file))
|
|
|
|
|
(error "%s is an auto-save file" file))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(let ((file-name (let ((buffer-file-name file))
|
|
|
|
|
(make-auto-save-file-name))))
|
1995-08-13 16:48:13 +00:00
|
|
|
|
(cond ((if (file-exists-p file)
|
|
|
|
|
(not (file-newer-than-file-p file-name file))
|
|
|
|
|
(not (file-exists-p file-name)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(error "Auto-save file %s not current" file-name))
|
|
|
|
|
((save-window-excursion
|
1997-09-02 19:38:31 +00:00
|
|
|
|
(if (not (memq system-type '(vax-vms windows-nt)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(with-output-to-temp-buffer "*Directory*"
|
|
|
|
|
(buffer-disable-undo standard-output)
|
|
|
|
|
(call-process "ls" nil standard-output nil
|
1992-07-02 22:11:40 +00:00
|
|
|
|
(if (file-symlink-p file) "-lL" "-l")
|
|
|
|
|
file file-name)))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(yes-or-no-p (format "Recover auto save file %s? " file-name)))
|
|
|
|
|
(switch-to-buffer (find-file-noselect file t))
|
1997-02-20 05:44:24 +00:00
|
|
|
|
(let ((buffer-read-only nil)
|
|
|
|
|
;; Auto-saved file shoule be read without any code conversion.
|
|
|
|
|
(coding-system-for-read 'no-conversion))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(erase-buffer)
|
|
|
|
|
(insert-file-contents file-name nil))
|
1992-09-24 07:23:59 +00:00
|
|
|
|
(after-find-file nil nil t))
|
1997-04-21 04:48:47 +00:00
|
|
|
|
(t (error "Recover-file cancelled")))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1995-05-07 18:39:02 +00:00
|
|
|
|
(defun recover-session ()
|
1995-04-30 19:46:44 +00:00
|
|
|
|
"Recover auto save files from a previous Emacs session.
|
|
|
|
|
This command first displays a Dired buffer showing you the
|
|
|
|
|
previous sessions that you could recover from.
|
|
|
|
|
To choose one, move point to the proper line and then type C-c C-c.
|
|
|
|
|
Then you'll be asked about a number of files to recover."
|
|
|
|
|
(interactive)
|
1996-10-02 10:26:51 +00:00
|
|
|
|
(if (null auto-save-list-file-prefix)
|
|
|
|
|
(error "You set `auto-save-list-file-prefix' to disable making session files"))
|
1995-12-28 19:24:16 +00:00
|
|
|
|
(let ((ls-lisp-support-shell-wildcards t))
|
1997-03-22 03:42:32 +00:00
|
|
|
|
(dired (concat auto-save-list-file-prefix "*")
|
|
|
|
|
(concat dired-listing-switches "t")))
|
1999-01-04 11:57:27 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(or (looking-at " Move to the session you want to recover,")
|
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
;; Each line starts with a space
|
|
|
|
|
;; so that Font Lock mode won't highlight the first character.
|
|
|
|
|
(insert " Move to the session you want to recover,\n"
|
|
|
|
|
" then type C-c C-c to select it.\n\n"
|
|
|
|
|
" You can also delete some of these files;\n"
|
|
|
|
|
" type d on a line to mark that file for deletion.\n\n"))))
|
1995-04-30 19:46:44 +00:00
|
|
|
|
(use-local-map (nconc (make-sparse-keymap) (current-local-map)))
|
1995-06-01 23:18:04 +00:00
|
|
|
|
(define-key (current-local-map) "\C-c\C-c" 'recover-session-finish))
|
1995-04-30 19:46:44 +00:00
|
|
|
|
|
1995-06-01 23:18:04 +00:00
|
|
|
|
(defun recover-session-finish ()
|
1995-04-30 19:46:44 +00:00
|
|
|
|
"Choose one saved session to recover auto-save files from.
|
|
|
|
|
This command is used in the special Dired buffer created by
|
1995-06-01 23:18:04 +00:00
|
|
|
|
\\[recover-session]."
|
1995-04-30 19:46:44 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
;; Get the name of the session file to recover from.
|
|
|
|
|
(let ((file (dired-get-filename))
|
1995-10-04 18:34:14 +00:00
|
|
|
|
files
|
1995-04-30 19:46:44 +00:00
|
|
|
|
(buffer (get-buffer-create " *recover*")))
|
1998-05-16 03:38:20 +00:00
|
|
|
|
(dired-unmark 1)
|
1995-08-01 23:34:53 +00:00
|
|
|
|
(dired-do-flagged-delete t)
|
1995-04-30 19:46:44 +00:00
|
|
|
|
(unwind-protect
|
|
|
|
|
(save-excursion
|
|
|
|
|
;; Read in the auto-save-list file.
|
|
|
|
|
(set-buffer buffer)
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(insert-file-contents file)
|
1995-10-04 18:34:14 +00:00
|
|
|
|
;; Loop thru the text of that file
|
|
|
|
|
;; and get out the names of the files to recover.
|
|
|
|
|
(while (not (eobp))
|
|
|
|
|
(let (thisfile autofile)
|
|
|
|
|
(if (eolp)
|
|
|
|
|
;; This is a pair of lines for a non-file-visiting buffer.
|
|
|
|
|
;; Get the auto-save file name and manufacture
|
|
|
|
|
;; a "visited file name" from that.
|
|
|
|
|
(progn
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(setq autofile
|
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
|
(point)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(end-of-line)
|
|
|
|
|
(point))))
|
|
|
|
|
(setq thisfile
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(substring
|
|
|
|
|
(file-name-nondirectory autofile)
|
|
|
|
|
1 -1)
|
|
|
|
|
(file-name-directory autofile)))
|
|
|
|
|
(forward-line 1))
|
|
|
|
|
;; This pair of lines is a file-visiting
|
|
|
|
|
;; buffer. Use the visited file name.
|
|
|
|
|
(progn
|
|
|
|
|
(setq thisfile
|
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
|
(point) (progn (end-of-line) (point))))
|
|
|
|
|
(forward-line 1)
|
|
|
|
|
(setq autofile
|
|
|
|
|
(buffer-substring-no-properties
|
|
|
|
|
(point) (progn (end-of-line) (point))))
|
|
|
|
|
(forward-line 1)))
|
|
|
|
|
;; Ignore a file if its auto-save file does not exist now.
|
|
|
|
|
(if (file-exists-p autofile)
|
|
|
|
|
(setq files (cons thisfile files)))))
|
|
|
|
|
(setq files (nreverse files))
|
1995-08-13 16:48:13 +00:00
|
|
|
|
;; The file contains a pair of line for each auto-saved buffer.
|
|
|
|
|
;; The first line of the pair contains the visited file name
|
|
|
|
|
;; or is empty if the buffer was not visiting a file.
|
|
|
|
|
;; The second line is the auto-save file name.
|
1995-10-04 18:34:14 +00:00
|
|
|
|
(if files
|
|
|
|
|
(map-y-or-n-p "Recover %s? "
|
|
|
|
|
(lambda (file)
|
|
|
|
|
(condition-case nil
|
|
|
|
|
(save-excursion (recover-file file))
|
1995-12-24 09:25:19 +00:00
|
|
|
|
(error
|
1995-10-04 18:34:14 +00:00
|
|
|
|
"Failed to recover `%s'" file)))
|
|
|
|
|
files
|
|
|
|
|
'("file" "files" "recover"))
|
|
|
|
|
(message "No files can be recovered from this session now")))
|
1995-04-30 19:46:44 +00:00
|
|
|
|
(kill-buffer buffer))))
|
|
|
|
|
|
1996-08-29 01:27:18 +00:00
|
|
|
|
(defun kill-some-buffers (&optional list)
|
|
|
|
|
"For each buffer in LIST, ask whether to kill it.
|
|
|
|
|
LIST defaults to all existing live buffers."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(interactive)
|
1996-08-29 01:27:18 +00:00
|
|
|
|
(if (null list)
|
|
|
|
|
(setq list (buffer-list)))
|
|
|
|
|
(while list
|
|
|
|
|
(let* ((buffer (car list))
|
|
|
|
|
(name (buffer-name buffer)))
|
|
|
|
|
(and (not (string-equal name ""))
|
|
|
|
|
(/= (aref name 0) ? )
|
|
|
|
|
(yes-or-no-p
|
|
|
|
|
(format "Buffer %s %s. Kill? "
|
|
|
|
|
name
|
|
|
|
|
(if (buffer-modified-p buffer)
|
|
|
|
|
"HAS BEEN EDITED" "is unmodified")))
|
|
|
|
|
(kill-buffer buffer)))
|
|
|
|
|
(setq list (cdr list))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
(defun auto-save-mode (arg)
|
|
|
|
|
"Toggle auto-saving of contents of current buffer.
|
1992-10-12 04:45:53 +00:00
|
|
|
|
With prefix argument ARG, turn auto-saving on if positive, else off."
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(interactive "P")
|
|
|
|
|
(setq buffer-auto-save-file-name
|
|
|
|
|
(and (if (null arg)
|
1994-07-06 21:41:47 +00:00
|
|
|
|
(or (not buffer-auto-save-file-name)
|
1998-10-06 23:22:48 +00:00
|
|
|
|
;; If auto-save is off because buffer has shrunk,
|
1994-07-06 21:41:47 +00:00
|
|
|
|
;; then toggling should turn it on.
|
|
|
|
|
(< buffer-saved-size 0))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(or (eq arg t) (listp arg) (and (integerp arg) (> arg 0))))
|
|
|
|
|
(if (and buffer-file-name auto-save-visited-file-name
|
|
|
|
|
(not buffer-read-only))
|
|
|
|
|
buffer-file-name
|
|
|
|
|
(make-auto-save-file-name))))
|
1994-04-05 03:49:42 +00:00
|
|
|
|
;; If -1 was stored here, to temporarily turn off saving,
|
|
|
|
|
;; turn it back on.
|
|
|
|
|
(and (< buffer-saved-size 0)
|
|
|
|
|
(setq buffer-saved-size 0))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(if (interactive-p)
|
|
|
|
|
(message "Auto-save %s (in this buffer)"
|
|
|
|
|
(if buffer-auto-save-file-name "on" "off")))
|
|
|
|
|
buffer-auto-save-file-name)
|
|
|
|
|
|
|
|
|
|
(defun rename-auto-save-file ()
|
|
|
|
|
"Adjust current buffer's auto save file name for current conditions.
|
|
|
|
|
Also rename any existing auto save file, if it was made in this session."
|
|
|
|
|
(let ((osave buffer-auto-save-file-name))
|
|
|
|
|
(setq buffer-auto-save-file-name
|
|
|
|
|
(make-auto-save-file-name))
|
|
|
|
|
(if (and osave buffer-auto-save-file-name
|
|
|
|
|
(not (string= buffer-auto-save-file-name buffer-file-name))
|
|
|
|
|
(not (string= buffer-auto-save-file-name osave))
|
|
|
|
|
(file-exists-p osave)
|
|
|
|
|
(recent-auto-save-p))
|
|
|
|
|
(rename-file osave buffer-auto-save-file-name t))))
|
|
|
|
|
|
|
|
|
|
(defun make-auto-save-file-name ()
|
|
|
|
|
"Return file name to use for auto-saves of current buffer.
|
|
|
|
|
Does not consider `auto-save-visited-file-name' as that variable is checked
|
|
|
|
|
before calling this function. You can redefine this for customization.
|
|
|
|
|
See also `auto-save-file-name-p'."
|
|
|
|
|
(if buffer-file-name
|
1996-05-21 17:21:25 +00:00
|
|
|
|
(if (and (eq system-type 'ms-dos)
|
|
|
|
|
(not (msdos-long-file-names)))
|
1995-12-29 03:36:35 +00:00
|
|
|
|
(let ((fn (file-name-nondirectory buffer-file-name)))
|
1997-09-01 21:29:44 +00:00
|
|
|
|
(string-match "\\`\\([^.]+\\)\\(\\.\\(..?\\)?.?\\|\\)\\'" fn)
|
1995-12-29 03:36:35 +00:00
|
|
|
|
(concat (file-name-directory buffer-file-name)
|
|
|
|
|
"#" (match-string 1 fn)
|
|
|
|
|
"." (match-string 3 fn) "#"))
|
|
|
|
|
(concat (file-name-directory buffer-file-name)
|
|
|
|
|
"#"
|
|
|
|
|
(file-name-nondirectory buffer-file-name)
|
|
|
|
|
"#"))
|
1994-06-17 21:42:34 +00:00
|
|
|
|
|
|
|
|
|
;; Deal with buffers that don't have any associated files. (Mail
|
|
|
|
|
;; mode tends to create a good number of these.)
|
|
|
|
|
|
1994-06-15 02:43:39 +00:00
|
|
|
|
(let ((buffer-name (buffer-name))
|
1994-06-17 21:42:34 +00:00
|
|
|
|
(limit 0))
|
1997-03-29 00:32:54 +00:00
|
|
|
|
;; Eliminate all slashes and backslashes by
|
|
|
|
|
;; replacing them with sequences that start with %.
|
|
|
|
|
;; Quote % also, to keep distinct names distinct.
|
|
|
|
|
(while (string-match "[/\\%]" buffer-name limit)
|
|
|
|
|
(let* ((character (aref buffer-name (match-beginning 0)))
|
|
|
|
|
(replacement
|
|
|
|
|
(cond ((eq character ?%) "%%")
|
|
|
|
|
((eq character ?/) "%+")
|
|
|
|
|
((eq character ?\\) "%-"))))
|
|
|
|
|
(setq buffer-name (replace-match replacement t t buffer-name))
|
|
|
|
|
(setq limit (1+ (match-end 0)))))
|
1996-09-01 00:20:33 +00:00
|
|
|
|
;; Generate the file name.
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(format "#%s#%s#" buffer-name (make-temp-name ""))
|
|
|
|
|
;; Try a few alternative directories, to get one we can write it.
|
|
|
|
|
(cond
|
|
|
|
|
((file-writable-p default-directory) default-directory)
|
|
|
|
|
((file-writable-p "/var/tmp/") "/var/tmp/")
|
|
|
|
|
("~/"))))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
|
|
|
|
(defun auto-save-file-name-p (filename)
|
|
|
|
|
"Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'.
|
|
|
|
|
FILENAME should lack slashes. You can redefine this for customization."
|
|
|
|
|
(string-match "^#.*#$" filename))
|
|
|
|
|
|
1995-12-28 19:24:16 +00:00
|
|
|
|
(defun wildcard-to-regexp (wildcard)
|
|
|
|
|
"Given a shell file name pattern WILDCARD, return an equivalent regexp.
|
|
|
|
|
The generated regexp will match a filename iff the filename
|
|
|
|
|
matches that wildcard according to shell rules. Only wildcards known
|
|
|
|
|
by `sh' are supported."
|
|
|
|
|
(let* ((i (string-match "[[.*+\\^$?]" wildcard))
|
|
|
|
|
;; Copy the initial run of non-special characters.
|
|
|
|
|
(result (substring wildcard 0 i))
|
|
|
|
|
(len (length wildcard)))
|
|
|
|
|
;; If no special characters, we're almost done.
|
|
|
|
|
(if i
|
|
|
|
|
(while (< i len)
|
|
|
|
|
(let ((ch (aref wildcard i))
|
|
|
|
|
j)
|
|
|
|
|
(setq
|
|
|
|
|
result
|
|
|
|
|
(concat result
|
|
|
|
|
(cond
|
1996-11-09 09:04:52 +00:00
|
|
|
|
((and (eq ch ?\[)
|
|
|
|
|
(< (1+ i) len)
|
|
|
|
|
(eq (aref wildcard (1+ i)) ?\]))
|
|
|
|
|
"\\[")
|
1995-12-28 19:24:16 +00:00
|
|
|
|
((eq ch ?\[) ; [...] maps to regexp char class
|
|
|
|
|
(progn
|
|
|
|
|
(setq i (1+ i))
|
|
|
|
|
(concat
|
|
|
|
|
(cond
|
|
|
|
|
((eq (aref wildcard i) ?!) ; [!...] -> [^...]
|
|
|
|
|
(progn
|
|
|
|
|
(setq i (1+ i))
|
|
|
|
|
(if (eq (aref wildcard i) ?\])
|
|
|
|
|
(progn
|
|
|
|
|
(setq i (1+ i))
|
|
|
|
|
"[^]")
|
|
|
|
|
"[^")))
|
|
|
|
|
((eq (aref wildcard i) ?^)
|
|
|
|
|
;; Found "[^". Insert a `\0' character
|
|
|
|
|
;; (which cannot happen in a filename)
|
|
|
|
|
;; into the character class, so that `^'
|
|
|
|
|
;; is not the first character after `[',
|
|
|
|
|
;; and thus non-special in a regexp.
|
|
|
|
|
(progn
|
|
|
|
|
(setq i (1+ i))
|
|
|
|
|
"[\000^"))
|
|
|
|
|
((eq (aref wildcard i) ?\])
|
|
|
|
|
;; I don't think `]' can appear in a
|
|
|
|
|
;; character class in a wildcard, but
|
|
|
|
|
;; let's be general here.
|
|
|
|
|
(progn
|
|
|
|
|
(setq i (1+ i))
|
|
|
|
|
"[]"))
|
|
|
|
|
(t "["))
|
|
|
|
|
(prog1 ; copy everything upto next `]'.
|
|
|
|
|
(substring wildcard
|
|
|
|
|
i
|
|
|
|
|
(setq j (string-match
|
|
|
|
|
"]" wildcard i)))
|
|
|
|
|
(setq i (if j (1- j) (1- len)))))))
|
|
|
|
|
((eq ch ?.) "\\.")
|
|
|
|
|
((eq ch ?*) "[^\000]*")
|
|
|
|
|
((eq ch ?+) "\\+")
|
|
|
|
|
((eq ch ?^) "\\^")
|
|
|
|
|
((eq ch ?$) "\\$")
|
|
|
|
|
((eq ch ?\\) "\\\\") ; probably cannot happen...
|
|
|
|
|
((eq ch ??) "[^\000]")
|
|
|
|
|
(t (char-to-string ch)))))
|
|
|
|
|
(setq i (1+ i)))))
|
|
|
|
|
;; Shell wildcards should match the entire filename,
|
|
|
|
|
;; not its part. Make the regexp say so.
|
|
|
|
|
(concat "\\`" result "\\'")))
|
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom list-directory-brief-switches
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(if (eq system-type 'vax-vms) "" "-CF")
|
1997-05-05 22:04:00 +00:00
|
|
|
|
"*Switches for list-directory to pass to `ls' for brief listing,"
|
|
|
|
|
:type 'string
|
|
|
|
|
:group 'dired)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1997-05-05 22:04:00 +00:00
|
|
|
|
(defcustom list-directory-verbose-switches
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(if (eq system-type 'vax-vms)
|
|
|
|
|
"/PROTECTION/SIZE/DATE/OWNER/WIDTH=(OWNER:10)"
|
|
|
|
|
"-l")
|
1997-05-05 22:04:00 +00:00
|
|
|
|
"*Switches for list-directory to pass to `ls' for verbose listing,"
|
|
|
|
|
:type 'string
|
|
|
|
|
:group 'dired)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1998-10-16 19:20:55 +00:00
|
|
|
|
(defun file-expand-wildcards (pattern &optional full)
|
|
|
|
|
"Expand wildcard pattern PATTERN.
|
1998-12-26 05:14:48 +00:00
|
|
|
|
This returns a list of file names which match the pattern.
|
|
|
|
|
|
|
|
|
|
If PATTERN is written as an absolute relative file name,
|
|
|
|
|
the values are absolute also.
|
|
|
|
|
|
|
|
|
|
If PATTERN is written as a relative file name, it is interpreted
|
|
|
|
|
relative to the current default directory, `default-directory'.
|
|
|
|
|
The file names returned are normally also relative to the current
|
|
|
|
|
default directory. However, if FULL is non-nil, they are absolute."
|
|
|
|
|
(let* ((nondir (file-name-nondirectory pattern))
|
|
|
|
|
(dirpart (file-name-directory pattern))
|
|
|
|
|
;; A list of all dirs that DIRPART specifies.
|
|
|
|
|
;; This can be more than one dir
|
|
|
|
|
;; if DIRPART contains wildcards.
|
|
|
|
|
(dirs (if (and dirpart (string-match "[[.*+\\^$?]" dirpart))
|
|
|
|
|
(mapcar 'file-name-as-directory
|
|
|
|
|
(file-expand-wildcards (directory-file-name dirpart)))
|
|
|
|
|
(list dirpart)))
|
|
|
|
|
contents)
|
|
|
|
|
(while dirs
|
|
|
|
|
(when (or (null (car dirs)) ; Possible if DIRPART is not wild.
|
|
|
|
|
(file-directory-p (directory-file-name (car dirs))))
|
|
|
|
|
(let ((this-dir-contents
|
|
|
|
|
(directory-files (or (car dirs) ".") full
|
|
|
|
|
(wildcard-to-regexp nondir))))
|
|
|
|
|
(setq contents
|
|
|
|
|
(nconc
|
|
|
|
|
(if (and (car dirs) (not full))
|
|
|
|
|
(mapcar (function (lambda (name) (concat (car dirs) name)))
|
|
|
|
|
this-dir-contents)
|
|
|
|
|
this-dir-contents)
|
|
|
|
|
contents))))
|
|
|
|
|
(setq dirs (cdr dirs)))
|
|
|
|
|
contents))
|
1998-10-16 19:20:55 +00:00
|
|
|
|
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(defun list-directory (dirname &optional verbose)
|
|
|
|
|
"Display a list of files in or matching DIRNAME, a la `ls'.
|
|
|
|
|
DIRNAME is globbed by the shell if necessary.
|
|
|
|
|
Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
|
|
|
|
|
Actions controlled by variables `list-directory-brief-switches'
|
|
|
|
|
and `list-directory-verbose-switches'."
|
|
|
|
|
(interactive (let ((pfx current-prefix-arg))
|
|
|
|
|
(list (read-file-name (if pfx "List directory (verbose): "
|
|
|
|
|
"List directory (brief): ")
|
|
|
|
|
nil default-directory nil)
|
|
|
|
|
pfx)))
|
|
|
|
|
(let ((switches (if verbose list-directory-verbose-switches
|
|
|
|
|
list-directory-brief-switches)))
|
|
|
|
|
(or dirname (setq dirname default-directory))
|
|
|
|
|
(setq dirname (expand-file-name dirname))
|
|
|
|
|
(with-output-to-temp-buffer "*Directory*"
|
|
|
|
|
(buffer-disable-undo standard-output)
|
|
|
|
|
(princ "Directory ")
|
|
|
|
|
(princ dirname)
|
|
|
|
|
(terpri)
|
1992-09-13 04:35:22 +00:00
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer "*Directory*")
|
1996-01-28 19:27:44 +00:00
|
|
|
|
(setq default-directory
|
|
|
|
|
(if (file-directory-p dirname)
|
|
|
|
|
(file-name-as-directory dirname)
|
|
|
|
|
(file-name-directory dirname)))
|
1992-09-13 04:35:22 +00:00
|
|
|
|
(let ((wildcard (not (file-directory-p dirname))))
|
|
|
|
|
(insert-directory dirname switches wildcard (not wildcard)))))))
|
|
|
|
|
|
|
|
|
|
(defvar insert-directory-program "ls"
|
|
|
|
|
"Absolute or relative name of the `ls' program used by `insert-directory'.")
|
|
|
|
|
|
|
|
|
|
;; insert-directory
|
|
|
|
|
;; - must insert _exactly_one_line_ describing FILE if WILDCARD and
|
|
|
|
|
;; FULL-DIRECTORY-P is nil.
|
|
|
|
|
;; The single line of output must display FILE's name as it was
|
|
|
|
|
;; given, namely, an absolute path name.
|
|
|
|
|
;; - must insert exactly one line for each file if WILDCARD or
|
|
|
|
|
;; FULL-DIRECTORY-P is t, plus one optional "total" line
|
|
|
|
|
;; before the file lines, plus optional text after the file lines.
|
|
|
|
|
;; Lines are delimited by "\n", so filenames containing "\n" are not
|
|
|
|
|
;; allowed.
|
|
|
|
|
;; File lines should display the basename.
|
|
|
|
|
;; - must be consistent with
|
|
|
|
|
;; - functions dired-move-to-filename, (these two define what a file line is)
|
|
|
|
|
;; dired-move-to-end-of-filename,
|
|
|
|
|
;; dired-between-files, (shortcut for (not (dired-move-to-filename)))
|
|
|
|
|
;; dired-insert-headerline
|
|
|
|
|
;; dired-after-subdir-garbage (defines what a "total" line is)
|
|
|
|
|
;; - variable dired-subdir-regexp
|
|
|
|
|
(defun insert-directory (file switches &optional wildcard full-directory-p)
|
1993-07-18 06:40:09 +00:00
|
|
|
|
"Insert directory listing for FILE, formatted according to SWITCHES.
|
1992-09-13 04:35:22 +00:00
|
|
|
|
Leaves point after the inserted text.
|
1994-07-12 00:35:27 +00:00
|
|
|
|
SWITCHES may be a string of options, or a list of strings.
|
1992-09-13 04:35:22 +00:00
|
|
|
|
Optional third arg WILDCARD means treat FILE as shell wildcard.
|
|
|
|
|
Optional fourth arg FULL-DIRECTORY-P means file is a directory and
|
|
|
|
|
switches do not contain `d', so that a full listing is expected.
|
|
|
|
|
|
|
|
|
|
This works by running a directory listing program
|
1993-02-20 06:23:08 +00:00
|
|
|
|
whose name is in the variable `insert-directory-program'.
|
1992-09-13 04:35:22 +00:00
|
|
|
|
If WILDCARD, it also runs the shell specified by `shell-file-name'."
|
1994-05-28 12:33:08 +00:00
|
|
|
|
;; We need the directory in order to find the right handler.
|
|
|
|
|
(let ((handler (find-file-name-handler (expand-file-name file)
|
|
|
|
|
'insert-directory)))
|
1992-09-13 04:35:22 +00:00
|
|
|
|
(if handler
|
|
|
|
|
(funcall handler 'insert-directory file switches
|
|
|
|
|
wildcard full-directory-p)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(if (eq system-type 'vax-vms)
|
1992-09-13 04:35:22 +00:00
|
|
|
|
(vms-read-directory file switches (current-buffer))
|
1998-03-03 01:35:39 +00:00
|
|
|
|
(let* ((coding-system-for-read
|
|
|
|
|
(and enable-multibyte-characters
|
|
|
|
|
(or file-name-coding-system
|
|
|
|
|
default-file-name-coding-system)))
|
1998-05-22 03:24:28 +00:00
|
|
|
|
;; This is to control encoding the arguments in call-process.
|
1998-03-03 07:17:56 +00:00
|
|
|
|
(coding-system-for-write coding-system-for-read)
|
1998-03-03 01:35:39 +00:00
|
|
|
|
(result
|
|
|
|
|
(if wildcard
|
|
|
|
|
;; Run ls in the directory of the file pattern we asked for.
|
|
|
|
|
(let ((default-directory
|
|
|
|
|
(if (file-name-absolute-p file)
|
|
|
|
|
(file-name-directory file)
|
|
|
|
|
(file-name-directory (expand-file-name file))))
|
|
|
|
|
(pattern (file-name-nondirectory file))
|
|
|
|
|
(beg 0))
|
|
|
|
|
;; Quote some characters that have special meanings in shells;
|
|
|
|
|
;; but don't quote the wildcards--we want them to be special.
|
|
|
|
|
;; We also currently don't quote the quoting characters
|
|
|
|
|
;; in case people want to use them explicitly to quote
|
|
|
|
|
;; wildcard characters.
|
|
|
|
|
(while (string-match "[ \t\n;<>&|()#$]" pattern beg)
|
|
|
|
|
(setq pattern
|
|
|
|
|
(concat (substring pattern 0 (match-beginning 0))
|
|
|
|
|
"\\"
|
|
|
|
|
(substring pattern (match-beginning 0)))
|
|
|
|
|
beg (1+ (match-end 0))))
|
|
|
|
|
(call-process shell-file-name nil t nil
|
|
|
|
|
"-c" (concat "\\";; Disregard shell aliases!
|
|
|
|
|
insert-directory-program
|
|
|
|
|
" -d "
|
|
|
|
|
(if (stringp switches)
|
|
|
|
|
switches
|
|
|
|
|
(mapconcat 'identity switches " "))
|
|
|
|
|
" -- "
|
1998-03-03 07:17:56 +00:00
|
|
|
|
pattern)))
|
1998-03-03 01:35:39 +00:00
|
|
|
|
;; SunOS 4.1.3, SVr4 and others need the "." to list the
|
|
|
|
|
;; directory if FILE is a symbolic link.
|
|
|
|
|
(apply 'call-process
|
|
|
|
|
insert-directory-program nil t nil
|
|
|
|
|
(let (list)
|
|
|
|
|
(if (listp switches)
|
|
|
|
|
(setq list switches)
|
|
|
|
|
(if (not (equal switches ""))
|
|
|
|
|
(progn
|
|
|
|
|
;; Split the switches at any spaces
|
|
|
|
|
;; so we can pass separate options as separate args.
|
|
|
|
|
(while (string-match " " switches)
|
|
|
|
|
(setq list (cons (substring switches 0 (match-beginning 0))
|
|
|
|
|
list)
|
|
|
|
|
switches (substring switches (match-end 0))))
|
|
|
|
|
(setq list (nreverse (cons switches list))))))
|
|
|
|
|
(append list
|
|
|
|
|
;; Avoid lossage if FILE starts with `-'.
|
|
|
|
|
'("--")
|
1998-05-22 03:24:28 +00:00
|
|
|
|
(progn
|
|
|
|
|
(if (string-match "\\`~" file)
|
|
|
|
|
(setq file (expand-file-name file)))
|
|
|
|
|
(list
|
|
|
|
|
(if full-directory-p
|
|
|
|
|
(concat (file-name-as-directory file) ".")
|
|
|
|
|
file)))))))))
|
1998-03-03 01:35:39 +00:00
|
|
|
|
(if (/= result 0)
|
|
|
|
|
;; We get here if ls failed.
|
|
|
|
|
;; Access the file to get a suitable error.
|
|
|
|
|
(access-file file "Reading directory")))))))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
|
1994-02-24 04:00:41 +00:00
|
|
|
|
(defvar kill-emacs-query-functions nil
|
1994-05-26 01:11:06 +00:00
|
|
|
|
"Functions to call with no arguments to query about killing Emacs.
|
1995-03-02 19:36:40 +00:00
|
|
|
|
If any of these functions returns nil, killing Emacs is cancelled.
|
|
|
|
|
`save-buffers-kill-emacs' (\\[save-buffers-kill-emacs]) calls these functions,
|
|
|
|
|
but `kill-emacs', the low level primitive, does not.
|
|
|
|
|
See also `kill-emacs-hook'.")
|
1994-02-24 04:00:41 +00:00
|
|
|
|
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(defun save-buffers-kill-emacs (&optional arg)
|
|
|
|
|
"Offer to save each buffer, then kill this Emacs process.
|
|
|
|
|
With prefix arg, silently save all file-visiting buffers, then kill."
|
|
|
|
|
(interactive "P")
|
|
|
|
|
(save-some-buffers arg t)
|
|
|
|
|
(and (or (not (memq t (mapcar (function
|
|
|
|
|
(lambda (buf) (and (buffer-file-name buf)
|
|
|
|
|
(buffer-modified-p buf))))
|
|
|
|
|
(buffer-list))))
|
|
|
|
|
(yes-or-no-p "Modified buffers exist; exit anyway? "))
|
|
|
|
|
(or (not (fboundp 'process-list))
|
|
|
|
|
;; process-list is not defined on VMS.
|
|
|
|
|
(let ((processes (process-list))
|
|
|
|
|
active)
|
|
|
|
|
(while processes
|
1992-07-04 16:51:02 +00:00
|
|
|
|
(and (memq (process-status (car processes)) '(run stop open))
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(let ((val (process-kill-without-query (car processes))))
|
|
|
|
|
(process-kill-without-query (car processes) val)
|
|
|
|
|
val)
|
|
|
|
|
(setq active t))
|
|
|
|
|
(setq processes (cdr processes)))
|
|
|
|
|
(or (not active)
|
1999-01-06 23:58:41 +00:00
|
|
|
|
(list-processes)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(yes-or-no-p "Active processes exist; kill them and exit anyway? "))))
|
1994-02-24 04:00:41 +00:00
|
|
|
|
;; Query the user for other things, perhaps.
|
1994-12-24 16:41:31 +00:00
|
|
|
|
(run-hook-with-args-until-failure 'kill-emacs-query-functions)
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(kill-emacs)))
|
|
|
|
|
|
1996-10-04 05:10:54 +00:00
|
|
|
|
;; We use /: as a prefix to "quote" a file name
|
|
|
|
|
;; so that magic file name handlers will not apply to it.
|
|
|
|
|
|
|
|
|
|
(setq file-name-handler-alist
|
|
|
|
|
(cons '("\\`/:" . file-name-non-special)
|
|
|
|
|
file-name-handler-alist))
|
|
|
|
|
|
|
|
|
|
;; We depend on being the last handler on the list,
|
|
|
|
|
;; so that anything else which does need handling
|
|
|
|
|
;; has been handled already.
|
|
|
|
|
;; So it is safe for us to inhibit *all* magic file name handlers.
|
|
|
|
|
|
|
|
|
|
(defun file-name-non-special (operation &rest arguments)
|
|
|
|
|
(let ((file-name-handler-alist nil)
|
1997-10-19 21:02:27 +00:00
|
|
|
|
(default-directory
|
|
|
|
|
(if (eq operation 'insert-directory)
|
|
|
|
|
(directory-file-name
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(unhandled-file-name-directory default-directory)))
|
|
|
|
|
default-directory))
|
1996-10-04 05:10:54 +00:00
|
|
|
|
;; Get a list of the indices of the args which are file names.
|
|
|
|
|
(file-arg-indices
|
|
|
|
|
(cdr (or (assq operation
|
|
|
|
|
;; The first four are special because they
|
|
|
|
|
;; return a file name. We want to include the /:
|
|
|
|
|
;; in the return value.
|
|
|
|
|
;; So just avoid stripping it in the first place.
|
|
|
|
|
'((expand-file-name . nil)
|
1997-05-30 06:38:56 +00:00
|
|
|
|
;; `identity' means just return the first arg
|
|
|
|
|
;; as stripped of its quoting.
|
|
|
|
|
(substitute-in-file-name . identity)
|
1996-10-04 05:10:54 +00:00
|
|
|
|
(file-name-directory . nil)
|
|
|
|
|
(file-name-as-directory . nil)
|
|
|
|
|
(directory-file-name . nil)
|
1997-06-08 03:26:07 +00:00
|
|
|
|
(file-name-completion 0 1)
|
|
|
|
|
(file-name-all-completions 0 1)
|
1996-10-04 05:10:54 +00:00
|
|
|
|
(rename-file 0 1)
|
|
|
|
|
(copy-file 0 1)
|
|
|
|
|
(make-symbolic-link 0 1)
|
|
|
|
|
(add-name-to-file 0 1)))
|
|
|
|
|
;; For all other operations, treat the first argument only
|
|
|
|
|
;; as the file name.
|
|
|
|
|
'(nil 0))))
|
|
|
|
|
;; Copy ARGUMENTS so we can replace elements in it.
|
|
|
|
|
(arguments (copy-sequence arguments)))
|
|
|
|
|
;; Strip off the /: from the file names that have this handler.
|
|
|
|
|
(save-match-data
|
1997-05-30 06:38:56 +00:00
|
|
|
|
(while (consp file-arg-indices)
|
1997-10-19 20:34:22 +00:00
|
|
|
|
(let ((pair (nthcdr (car file-arg-indices) arguments)))
|
|
|
|
|
(and (car pair)
|
|
|
|
|
(string-match "\\`/:" (car pair))
|
|
|
|
|
(setcar pair
|
|
|
|
|
(if (= (length (car pair)) 2)
|
|
|
|
|
"/"
|
|
|
|
|
(substring (car pair) 2)))))
|
1996-10-04 05:10:54 +00:00
|
|
|
|
(setq file-arg-indices (cdr file-arg-indices))))
|
1997-05-30 06:38:56 +00:00
|
|
|
|
(if (eq file-arg-indices 'identity)
|
|
|
|
|
(car arguments)
|
|
|
|
|
(apply operation arguments))))
|
1996-10-04 05:10:54 +00:00
|
|
|
|
|
1991-07-19 14:42:53 +00:00
|
|
|
|
(define-key ctl-x-map "\C-f" 'find-file)
|
|
|
|
|
(define-key ctl-x-map "\C-r" 'find-file-read-only)
|
|
|
|
|
(define-key ctl-x-map "\C-v" 'find-alternate-file)
|
|
|
|
|
(define-key ctl-x-map "\C-s" 'save-buffer)
|
|
|
|
|
(define-key ctl-x-map "s" 'save-some-buffers)
|
|
|
|
|
(define-key ctl-x-map "\C-w" 'write-file)
|
|
|
|
|
(define-key ctl-x-map "i" 'insert-file)
|
|
|
|
|
(define-key esc-map "~" 'not-modified)
|
|
|
|
|
(define-key ctl-x-map "\C-d" 'list-directory)
|
|
|
|
|
(define-key ctl-x-map "\C-c" 'save-buffers-kill-emacs)
|
|
|
|
|
|
|
|
|
|
(define-key ctl-x-4-map "f" 'find-file-other-window)
|
|
|
|
|
(define-key ctl-x-4-map "r" 'find-file-read-only-other-window)
|
|
|
|
|
(define-key ctl-x-4-map "\C-f" 'find-file-other-window)
|
|
|
|
|
(define-key ctl-x-4-map "b" 'switch-to-buffer-other-window)
|
1992-07-22 23:07:07 +00:00
|
|
|
|
(define-key ctl-x-4-map "\C-o" 'display-buffer)
|
1991-10-31 08:30:58 +00:00
|
|
|
|
|
1992-07-15 02:24:58 +00:00
|
|
|
|
(define-key ctl-x-5-map "b" 'switch-to-buffer-other-frame)
|
|
|
|
|
(define-key ctl-x-5-map "f" 'find-file-other-frame)
|
|
|
|
|
(define-key ctl-x-5-map "\C-f" 'find-file-other-frame)
|
|
|
|
|
(define-key ctl-x-5-map "r" 'find-file-read-only-other-frame)
|
1992-05-30 23:54:21 +00:00
|
|
|
|
|
|
|
|
|
;;; files.el ends here
|