(switch-to-buffer-other-window): Doc fix.
[emacs.git] / lisp / files.el
blobda1e7128a9420f0f2bbc143344b1cb12e29bb084
1 ;;; files.el --- file input and output commands for Emacs
3 ;; Copyright (C) 1985,86,87,92,93,94,95,96,97,98,99,2000,01,02,03,2004
4 ;;; Free Software Foundation, Inc.
6 ;; Maintainer: FSF
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
25 ;;; Commentary:
27 ;; Defines most of Emacs's file- and directory-handling functions,
28 ;; including basic file visiting, backup generation, link handling,
29 ;; ITS-id version control, load- and write-hook handling, and the like.
31 ;;; Code:
33 (defgroup backup nil
34 "Backups of edited data files."
35 :group 'files)
37 (defgroup find-file nil
38 "Finding files."
39 :group 'files)
42 (defcustom delete-auto-save-files t
43 "*Non-nil means delete auto-save file when a buffer is saved or killed.
45 Note that the auto-save file will not be deleted if the buffer is killed
46 when it has unsaved changes."
47 :type 'boolean
48 :group 'auto-save)
50 (defcustom directory-abbrev-alist
51 nil
52 "*Alist of abbreviations for file directories.
53 A list of elements of the form (FROM . TO), each meaning to replace
54 FROM with TO when it appears in a directory name. This replacement is
55 done when setting up the default directory of a newly visited file.
56 *Every* FROM string should start with `^'.
58 Do not use `~' in the TO strings.
59 They should be ordinary absolute directory names.
61 Use this feature when you have directories which you normally refer to
62 via absolute symbolic links. Make TO the name of the link, and FROM
63 the name it is linked to."
64 :type '(repeat (cons :format "%v"
65 :value ("" . "")
66 (regexp :tag "From")
67 (regexp :tag "To")))
68 :group 'abbrev
69 :group 'find-file)
71 ;; Turn off backup files on VMS since it has version numbers.
72 (defcustom make-backup-files (not (eq system-type 'vax-vms))
73 "*Non-nil means make a backup of a file the first time it is saved.
74 This can be done by renaming the file or by copying.
76 Renaming means that Emacs renames the existing file so that it is a
77 backup file, then writes the buffer into a new file. Any other names
78 that the old file had will now refer to the backup file. The new file
79 is owned by you and its group is defaulted.
81 Copying means that Emacs copies the existing file into the backup
82 file, then writes the buffer on top of the existing file. Any other
83 names that the old file had will now refer to the new (edited) file.
84 The file's owner and group are unchanged.
86 The choice of renaming or copying is controlled by the variables
87 `backup-by-copying', `backup-by-copying-when-linked',
88 `backup-by-copying-when-mismatch' and
89 `backup-by-copying-when-privileged-mismatch'. See also `backup-inhibited'."
90 :type 'boolean
91 :group 'backup)
93 ;; Do this so that local variables based on the file name
94 ;; are not overridden by the major mode.
95 (defvar backup-inhibited nil
96 "Non-nil means don't make a backup, regardless of the other parameters.
97 This variable is intended for use by making it local to a buffer.
98 But it is local only if you make it local.")
99 (put 'backup-inhibited 'permanent-local t)
101 (defcustom backup-by-copying nil
102 "*Non-nil means always use copying to create backup files.
103 See documentation of variable `make-backup-files'."
104 :type 'boolean
105 :group 'backup)
107 (defcustom backup-by-copying-when-linked nil
108 "*Non-nil means use copying to create backups for files with multiple names.
109 This causes the alternate names to refer to the latest version as edited.
110 This variable is relevant only if `backup-by-copying' is nil."
111 :type 'boolean
112 :group 'backup)
114 (defcustom backup-by-copying-when-mismatch nil
115 "*Non-nil means create backups by copying if this preserves owner or group.
116 Renaming may still be used (subject to control of other variables)
117 when it would not result in changing the owner or group of the file;
118 that is, for files which are owned by you and whose group matches
119 the default for a new file created there by you.
120 This variable is relevant only if `backup-by-copying' is nil."
121 :type 'boolean
122 :group 'backup)
124 (defcustom backup-by-copying-when-privileged-mismatch 200
125 "*Non-nil means create backups by copying to preserve a privileged owner.
126 Renaming may still be used (subject to control of other variables)
127 when it would not result in changing the owner of the file or if the owner
128 has a user id greater than the value of this variable. This is useful
129 when low-numbered uid's are used for special system users (such as root)
130 that must maintain ownership of certain files.
131 This variable is relevant only if `backup-by-copying' and
132 `backup-by-copying-when-mismatch' are nil."
133 :type '(choice (const nil) integer)
134 :group 'backup)
136 (defvar backup-enable-predicate 'normal-backup-enable-predicate
137 "Predicate that looks at a file name and decides whether to make backups.
138 Called with an absolute file name as argument, it returns t to enable backup.")
140 (defcustom buffer-offer-save nil
141 "*Non-nil in a buffer means always offer to save buffer on exit.
142 Do so even if the buffer is not visiting a file.
143 Automatically local in all buffers."
144 :type 'boolean
145 :group 'backup)
146 (make-variable-buffer-local 'buffer-offer-save)
148 (defcustom find-file-existing-other-name t
149 "*Non-nil means find a file under alternative names, in existing buffers.
150 This means if any existing buffer is visiting the file you want
151 under another name, you get the existing buffer instead of a new buffer."
152 :type 'boolean
153 :group 'find-file)
155 (defcustom find-file-visit-truename nil
156 "*Non-nil means visit a file under its truename.
157 The truename of a file is found by chasing all links
158 both at the file level and at the levels of the containing directories."
159 :type 'boolean
160 :group 'find-file)
162 (defcustom revert-without-query
164 "*Specify which files should be reverted without query.
165 The value is a list of regular expressions.
166 If the file name matches one of these regular expressions,
167 then `revert-buffer' reverts the file without querying
168 if the file has changed on disk and you have not edited the buffer."
169 :type '(repeat regexp)
170 :group 'find-file)
172 (defvar buffer-file-number nil
173 "The device number and file number of the file visited in the current buffer.
174 The value is a list of the form (FILENUM DEVNUM).
175 This pair of numbers uniquely identifies the file.
176 If the buffer is visiting a new file, the value is nil.")
177 (make-variable-buffer-local 'buffer-file-number)
178 (put 'buffer-file-number 'permanent-local t)
180 (defvar buffer-file-numbers-unique (not (memq system-type '(windows-nt)))
181 "Non-nil means that buffer-file-number uniquely identifies files.")
183 (defvar buffer-file-read-only nil
184 "Non-nil if visited file was read-only when visited.")
185 (make-variable-buffer-local 'buffer-file-read-only)
187 (defcustom temporary-file-directory
188 (file-name-as-directory
189 (cond ((memq system-type '(ms-dos windows-nt))
190 (or (getenv "TEMP") (getenv "TMPDIR") (getenv "TMP") "c:/temp"))
191 ((memq system-type '(vax-vms axp-vms))
192 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "SYS$SCRATCH:"))
194 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "/tmp"))))
195 "The directory for writing temporary files."
196 :group 'files
197 :type 'directory)
199 (defcustom small-temporary-file-directory
200 (if (eq system-type 'ms-dos) (getenv "TMPDIR"))
201 "The directory for writing small temporary files.
202 If non-nil, this directory is used instead of `temporary-file-directory'
203 by programs that create small temporary files. This is for systems that
204 have fast storage with limited space, such as a RAM disk."
205 :group 'files
206 :type '(choice (const nil) directory))
208 ;; The system null device. (Should reference NULL_DEVICE from C.)
209 (defvar null-device "/dev/null" "The system null device.")
211 (defvar file-name-invalid-regexp
212 (cond ((and (eq system-type 'ms-dos) (not (msdos-long-file-names)))
213 (concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" ; colon except after drive
214 "[+, ;=|<>\"?*]\\|\\[\\|\\]\\|" ; invalid characters
215 "[\000-\031]\\|" ; control characters
216 "\\(/\\.\\.?[^/]\\)\\|" ; leading dots
217 "\\(/[^/.]+\\.[^/.]*\\.\\)")) ; more than a single dot
218 ((memq system-type '(ms-dos windows-nt cygwin))
219 (concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" ; colon except after drive
220 "[|<>\"?*\000-\031]")) ; invalid characters
221 (t "[\000]"))
222 "Regexp recognizing file names which aren't allowed by the filesystem.")
224 (defcustom file-precious-flag nil
225 "*Non-nil means protect against I/O errors while saving files.
226 Some modes set this non-nil in particular buffers.
228 This feature works by writing the new contents into a temporary file
229 and then renaming the temporary file to replace the original.
230 In this way, any I/O error in writing leaves the original untouched,
231 and there is never any instant where the file is nonexistent.
233 Note that this feature forces backups to be made by copying.
234 Yet, at the same time, saving a precious file
235 breaks any hard links between it and other files."
236 :type 'boolean
237 :group 'backup)
239 (defcustom version-control nil
240 "*Control use of version numbers for backup files.
241 t means make numeric backup versions unconditionally.
242 nil means make them for files that have some already.
243 `never' means do not make them."
244 :type '(choice (const :tag "Never" never)
245 (const :tag "If existing" nil)
246 (other :tag "Always" t))
247 :group 'backup
248 :group 'vc)
250 (defcustom dired-kept-versions 2
251 "*When cleaning directory, number of versions to keep."
252 :type 'integer
253 :group 'backup
254 :group 'dired)
256 (defcustom delete-old-versions nil
257 "*If t, delete excess backup versions silently.
258 If nil, ask confirmation. Any other value prevents any trimming."
259 :type '(choice (const :tag "Delete" t)
260 (const :tag "Ask" nil)
261 (other :tag "Leave" other))
262 :group 'backup)
264 (defcustom kept-old-versions 2
265 "*Number of oldest versions to keep when a new numbered backup is made."
266 :type 'integer
267 :group 'backup)
269 (defcustom kept-new-versions 2
270 "*Number of newest versions to keep when a new numbered backup is made.
271 Includes the new backup. Must be > 0"
272 :type 'integer
273 :group 'backup)
275 (defcustom require-final-newline nil
276 "*Value of t says silently ensure a file ends in a newline when it is saved.
277 Non-nil but not t says ask user whether to add a newline when there isn't one.
278 nil means don't add newlines."
279 :type '(choice (const :tag "Off" nil)
280 (const :tag "Add" t)
281 (other :tag "Ask" ask))
282 :group 'editing-basics)
284 (defcustom auto-save-default t
285 "*Non-nil says by default do auto-saving of every file-visiting buffer."
286 :type 'boolean
287 :group 'auto-save)
289 (defcustom auto-save-visited-file-name nil
290 "*Non-nil says auto-save a buffer in the file it is visiting, when practical.
291 Normally auto-save files are written under other names."
292 :type 'boolean
293 :group 'auto-save)
295 (defcustom auto-save-file-name-transforms
296 `(("\\`/[^/]*:\\([^/]*/\\)*\\([^/]*\\)\\'"
297 ;; Don't put "\\2" inside expand-file-name, since it will be
298 ;; transformed to "/2" on DOS/Windows.
299 ,(concat temporary-file-directory "\\2") t))
300 "*Transforms to apply to buffer file name before making auto-save file name.
301 Each transform is a list (REGEXP REPLACEMENT UNIQUIFY):
302 REGEXP is a regular expression to match against the file name.
303 If it matches, `replace-match' is used to replace the
304 matching part with REPLACEMENT.
305 If the optional element UNIQUIFY is non-nil, the auto-save file name is
306 constructed by taking the directory part of the replaced file-name,
307 concatenated with the buffer file name with all directory separators
308 changed to `!' to prevent clashes. This will not work
309 correctly if your filesystem truncates the resulting name.
311 All the transforms in the list are tried, in the order they are listed.
312 When one transform applies, its result is final;
313 no further transforms are tried.
315 The default value is set up to put the auto-save file into the
316 temporary directory (see the variable `temporary-file-directory') for
317 editing a remote file.
319 On MS-DOS filesystems without long names this variable is always
320 ignored."
321 :group 'auto-save
322 :type '(repeat (list (string :tag "Regexp") (string :tag "Replacement")
323 (boolean :tag "Uniquify")))
324 :version "21.1")
326 (defcustom save-abbrevs t
327 "*Non-nil means save word abbrevs too when files are saved.
328 If `silently', don't ask the user before saving."
329 :type '(choice (const t) (const nil) (const silently))
330 :group 'abbrev)
332 (defcustom find-file-run-dired t
333 "*Non-nil means allow `find-file' to visit directories.
334 To visit the directory, `find-file' runs `find-directory-functions'."
335 :type 'boolean
336 :group 'find-file)
338 (defcustom find-directory-functions '(cvs-dired-noselect dired-noselect)
339 "*List of functions to try in sequence to visit a directory.
340 Each function is called with the directory name as the sole argument
341 and should return either a buffer or nil."
342 :type '(hook :options (cvs-dired-noselect dired-noselect))
343 :group 'find-file)
345 ;;;It is not useful to make this a local variable.
346 ;;;(put 'find-file-not-found-hooks 'permanent-local t)
347 (defvar find-file-not-found-functions nil
348 "List of functions to be called for `find-file' on nonexistent file.
349 These functions are called as soon as the error is detected.
350 Variable `buffer-file-name' is already set up.
351 The functions are called in the order given until one of them returns non-nil.")
352 (defvaralias 'find-file-not-found-hooks 'find-file-not-found-functions)
353 (make-obsolete-variable
354 'find-file-not-found-hooks 'find-file-not-found-functions "21.4")
356 ;;;It is not useful to make this a local variable.
357 ;;;(put 'find-file-hooks 'permanent-local t)
358 (defcustom find-file-hook nil
359 "List of functions to be called after a buffer is loaded from a file.
360 The buffer's local variables (if any) will have been processed before the
361 functions are called."
362 :group 'find-file
363 :type 'hook
364 :options '(auto-insert)
365 :version "21.4")
366 (defvaralias 'find-file-hooks 'find-file-hook)
367 (make-obsolete-variable 'find-file-hooks 'find-file-hook "21.4")
369 (defvar write-file-functions nil
370 "List of functions to be called before writing out a buffer to a file.
371 If one of them returns non-nil, the file is considered already written
372 and the rest are not called.
373 These hooks are considered to pertain to the visited file.
374 So any buffer-local binding of this variable is discarded if you change
375 the visited file name with \\[set-visited-file-name], but not when you
376 change the major mode.
378 This hook is not run if any of the functions in
379 `write-contents-functions' returns non-nil. Both hooks pertain
380 to how to save a buffer to file, for instance, choosing a suitable
381 coding system and setting mode bits. (See Info
382 node `(elisp)Saving Buffers'.) To perform various checks or
383 updates before the buffer is saved, use `before-save-hook' .")
384 (put 'write-file-functions 'permanent-local t)
385 (defvaralias 'write-file-hooks 'write-file-functions)
386 (make-obsolete-variable 'write-file-hooks 'write-file-functions "21.4")
388 (defvar local-write-file-hooks nil)
389 (make-variable-buffer-local 'local-write-file-hooks)
390 (put 'local-write-file-hooks 'permanent-local t)
391 (make-obsolete-variable 'local-write-file-hooks 'write-file-functions "21.4")
393 (defvar write-contents-functions nil
394 "List of functions to be called before writing out a buffer to a file.
395 If one of them returns non-nil, the file is considered already written
396 and the rest are not called and neither are the functions in
397 `write-file-functions'.
399 This variable is meant to be used for hooks that pertain to the
400 buffer's contents, not to the particular visited file; thus,
401 `set-visited-file-name' does not clear this variable; but changing the
402 major mode does clear it.
404 For hooks that _do_ pertain to the particular visited file, use
405 `write-file-functions'. Both this variable and
406 `write-file-functions' relate to how a buffer is saved to file.
407 To perform various checks or updates before the buffer is saved,
408 use `before-save-hook'.")
409 (make-variable-buffer-local 'write-contents-functions)
410 (defvaralias 'write-contents-hooks 'write-contents-functions)
411 (make-obsolete-variable 'write-contents-hooks 'write-contents-functions "21.4")
413 (defcustom enable-local-variables t
414 "*Control use of local variables in files you visit.
415 The value can be t, nil or something else.
416 A value of t means file local variables specifications are obeyed;
417 nil means they are ignored; anything else means query.
418 This variable also controls use of major modes specified in
419 a -*- line.
421 The command \\[normal-mode], when used interactively,
422 always obeys file local variable specifications and the -*- line,
423 and ignores this variable."
424 :type '(choice (const :tag "Obey" t)
425 (const :tag "Ignore" nil)
426 (other :tag "Query" other))
427 :group 'find-file)
429 (defvar local-enable-local-variables t
430 "Like `enable-local-variables' but meant for buffer-local bindings.
431 The meaningful values are nil and non-nil. The default is non-nil.
432 If a major mode sets this to nil, buffer-locally, then any local
433 variables list in the file will be ignored.
435 This variable does not affect the use of major modes
436 specified in a -*- line.")
438 (defcustom enable-local-eval 'maybe
439 "*Control processing of the \"variable\" `eval' in a file's local variables.
440 The value can be t, nil or something else.
441 A value of t means obey `eval' variables;
442 nil means ignore them; anything else means query.
444 The command \\[normal-mode] always obeys local-variables lists
445 and ignores this variable."
446 :type '(choice (const :tag "Obey" t)
447 (const :tag "Ignore" nil)
448 (other :tag "Query" other))
449 :group 'find-file)
451 ;; Avoid losing in versions where CLASH_DETECTION is disabled.
452 (or (fboundp 'lock-buffer)
453 (defalias 'lock-buffer 'ignore))
454 (or (fboundp 'unlock-buffer)
455 (defalias 'unlock-buffer 'ignore))
456 (or (fboundp 'file-locked-p)
457 (defalias 'file-locked-p 'ignore))
459 (defcustom view-read-only nil
460 "*Non-nil means buffers visiting files read-only do so in view mode.
461 In fact, this means that all read-only buffers normally have
462 View mode enabled, including buffers that are read-only because
463 you visit a file you cannot alter, and buffers you make read-only
464 using \\[toggle-read-only]."
465 :type 'boolean
466 :group 'view)
468 (put 'ange-ftp-completion-hook-function 'safe-magic t)
469 (defun ange-ftp-completion-hook-function (op &rest args)
470 "Provides support for ange-ftp host name completion.
471 Runs the usual ange-ftp hook, but only for completion operations."
472 ;; Having this here avoids the need to load ange-ftp when it's not
473 ;; really in use.
474 (if (memq op '(file-name-completion file-name-all-completions))
475 (apply 'ange-ftp-hook-function op args)
476 (let ((inhibit-file-name-handlers
477 (cons 'ange-ftp-completion-hook-function
478 (and (eq inhibit-file-name-operation op)
479 inhibit-file-name-handlers)))
480 (inhibit-file-name-operation op))
481 (apply op args))))
483 (defun convert-standard-filename (filename)
484 "Convert a standard file's name to something suitable for the current OS.
485 This means to guarantee valid names and perhaps to canonicalize
486 certain patterns.
488 This function's standard definition is trivial; it just returns
489 the argument. However, on Windows and DOS, replace invalid
490 characters. On DOS, make sure to obey the 8.3 limitations. On
491 Windows, turn Cygwin names into native names, and also turn
492 slashes into backslashes if the shell requires it (see
493 `w32-shell-dos-semantics')."
494 filename)
496 (defun read-directory-name (prompt &optional dir default-dirname mustmatch initial)
497 "Read directory name, prompting with PROMPT and completing in directory DIR.
498 Value is not expanded---you must call `expand-file-name' yourself.
499 Default name to DEFAULT-DIRNAME if user exits with the same
500 non-empty string that was inserted by this function.
501 (If DEFAULT-DIRNAME is omitted, the current buffer's directory is used,
502 except that if INITIAL is specified, that combined with DIR is used.)
503 If the user exits with an empty minibuffer, this function returns
504 an empty string. (This can only happen if the user erased the
505 pre-inserted contents or if `insert-default-directory' is nil.)
506 Fourth arg MUSTMATCH non-nil means require existing directory's name.
507 Non-nil and non-t means also require confirmation after completion.
508 Fifth arg INITIAL specifies text to start with.
509 DIR should be an absolute directory name. It defaults to
510 the value of `default-directory'."
511 (unless dir
512 (setq dir default-directory))
513 (unless default-dirname
514 (setq default-dirname
515 (if initial (concat dir initial) default-directory)))
516 (read-file-name prompt dir default-dirname mustmatch initial
517 'file-directory-p))
520 (defun pwd ()
521 "Show the current default directory."
522 (interactive nil)
523 (message "Directory %s" default-directory))
525 (defvar cd-path nil
526 "Value of the CDPATH environment variable, as a list.
527 Not actually set up until the first time you use it.")
529 (defun parse-colon-path (cd-path)
530 "Explode a search path into a list of directory names.
531 Directories are separated by occurrences of `path-separator'
532 \(which is colon in GNU and GNU-like systems)."
533 ;; We could use split-string here.
534 (and cd-path
535 (let (cd-list (cd-start 0) cd-colon)
536 (setq cd-path (concat cd-path path-separator))
537 (while (setq cd-colon (string-match path-separator cd-path cd-start))
538 (setq cd-list
539 (nconc cd-list
540 (list (if (= cd-start cd-colon)
542 (substitute-in-file-name
543 (file-name-as-directory
544 (substring cd-path cd-start cd-colon)))))))
545 (setq cd-start (+ cd-colon 1)))
546 cd-list)))
548 (defun cd-absolute (dir)
549 "Change current directory to given absolute file name DIR."
550 ;; Put the name into directory syntax now,
551 ;; because otherwise expand-file-name may give some bad results.
552 (if (not (eq system-type 'vax-vms))
553 (setq dir (file-name-as-directory dir)))
554 (setq dir (abbreviate-file-name (expand-file-name dir)))
555 (if (not (file-directory-p dir))
556 (if (file-exists-p dir)
557 (error "%s is not a directory" dir)
558 (error "%s: no such directory" dir))
559 (if (file-executable-p dir)
560 (setq default-directory dir)
561 (error "Cannot cd to %s: Permission denied" dir))))
563 (defun cd (dir)
564 "Make DIR become the current buffer's default directory.
565 If your environment includes a `CDPATH' variable, try each one of
566 that list of directories (separated by occurrences of
567 `path-separator') when resolving a relative directory name.
568 The path separator is colon in GNU and GNU-like systems."
569 (interactive
570 (list (read-directory-name "Change default directory: "
571 default-directory default-directory
572 (and (member cd-path '(nil ("./")))
573 (null (getenv "CDPATH"))))))
574 (if (file-name-absolute-p dir)
575 (cd-absolute (expand-file-name dir))
576 (if (null cd-path)
577 (let ((trypath (parse-colon-path (getenv "CDPATH"))))
578 (setq cd-path (or trypath (list "./")))))
579 (if (not (catch 'found
580 (mapcar
581 (function (lambda (x)
582 (let ((f (expand-file-name (concat x dir))))
583 (if (file-directory-p f)
584 (progn
585 (cd-absolute f)
586 (throw 'found t))))))
587 cd-path)
588 nil))
589 (error "No such directory found via CDPATH environment variable"))))
591 (defun load-file (file)
592 "Load the Lisp file named FILE."
593 ;; This is a case where .elc makes a lot of sense.
594 (interactive (list (let ((completion-ignored-extensions
595 (remove ".elc" completion-ignored-extensions)))
596 (read-file-name "Load file: "))))
597 (load (expand-file-name file) nil nil t))
599 (defun locate-file (filename path &optional suffixes predicate)
600 "Search for FILENAME through PATH.
601 If SUFFIXES is non-nil, it should be a list of suffixes to append to
602 file name when searching. If SUFFIXES is nil, it is equivalent to '(\"\").
603 If non-nil, PREDICATE is used instead of `file-readable-p'.
604 PREDICATE can also be an integer to pass to the `access' system call,
605 in which case file-name handlers are ignored. This usage is deprecated.
607 For compatibility, PREDICATE can also be one of the symbols
608 `executable', `readable', `writable', or `exists', or a list of
609 one or more of those symbols."
610 (if (and predicate (symbolp predicate) (not (functionp predicate)))
611 (setq predicate (list predicate)))
612 (when (and (consp predicate) (not (functionp predicate)))
613 (setq predicate
614 (logior (if (memq 'executable predicate) 1 0)
615 (if (memq 'writable predicate) 2 0)
616 (if (memq 'readable predicate) 4 0))))
617 (locate-file-internal filename path suffixes predicate))
619 (defun locate-file-completion (string path-and-suffixes action)
620 "Do completion for file names passed to `locate-file'.
621 PATH-AND-SUFFIXES is a pair of lists (DIRECTORIES . SUFFIXES)."
622 (if (file-name-absolute-p string)
623 (read-file-name-internal string nil action)
624 (let ((names nil)
625 (suffix (concat (regexp-opt (cdr path-and-suffixes) t) "\\'"))
626 (string-dir (file-name-directory string)))
627 (dolist (dir (car path-and-suffixes))
628 (unless dir
629 (setq dir default-directory))
630 (if string-dir (setq dir (expand-file-name string-dir dir)))
631 (when (file-directory-p dir)
632 (dolist (file (file-name-all-completions
633 (file-name-nondirectory string) dir))
634 (push (if string-dir (concat string-dir file) file) names)
635 (when (string-match suffix file)
636 (setq file (substring file 0 (match-beginning 0)))
637 (push (if string-dir (concat string-dir file) file) names)))))
638 (cond
639 ((eq action t) (all-completions string names))
640 ((null action) (try-completion string names))
641 (t (test-completion string names))))))
643 (defun load-library (library)
644 "Load the library named LIBRARY.
645 This is an interface to the function `load'."
646 (interactive
647 (list (completing-read "Load library: "
648 'locate-file-completion
649 (cons load-path load-suffixes))))
650 (load library))
652 (defun file-remote-p (file)
653 "Test whether FILE specifies a location on a remote system.
654 Return an identification of the system if the location is indeed
655 remote. The identification of the system may comprise a method
656 to access the system and its hostname, amongst other things.
658 For example, the filename \"/user@host:/foo\" specifies a location
659 on the system \"/user@host:\"."
660 (let ((handler (find-file-name-handler file 'file-remote-p)))
661 (if handler
662 (funcall handler 'file-remote-p file)
663 nil)))
665 (defun file-local-copy (file)
666 "Copy the file FILE into a temporary file on this machine.
667 Returns the name of the local copy, or nil, if FILE is directly
668 accessible."
669 ;; This formerly had an optional BUFFER argument that wasn't used by
670 ;; anything.
671 (let ((handler (find-file-name-handler file 'file-local-copy)))
672 (if handler
673 (funcall handler 'file-local-copy file)
674 nil)))
676 (defun file-truename (filename &optional counter prev-dirs)
677 "Return the truename of FILENAME, which should be absolute.
678 The truename of a file name is found by chasing symbolic links
679 both at the level of the file and at the level of the directories
680 containing it, until no links are left at any level.
682 \(fn FILENAME)"
683 ;; COUNTER and PREV-DIRS are only used in recursive calls.
684 ;; COUNTER can be a cons cell whose car is the count of how many
685 ;; more links to chase before getting an error.
686 ;; PREV-DIRS can be a cons cell whose car is an alist
687 ;; of truenames we've just recently computed.
688 (cond ((or (string= filename "") (string= filename "~"))
689 (setq filename (expand-file-name filename))
690 (if (string= filename "")
691 (setq filename "/")))
692 ((and (string= (substring filename 0 1) "~")
693 (string-match "~[^/]*/?" filename))
694 (let ((first-part
695 (substring filename 0 (match-end 0)))
696 (rest (substring filename (match-end 0))))
697 (setq filename (concat (expand-file-name first-part) rest)))))
699 (or counter (setq counter (list 100)))
700 (let (done
701 ;; For speed, remove the ange-ftp completion handler from the list.
702 ;; We know it's not needed here.
703 ;; For even more speed, do this only on the outermost call.
704 (file-name-handler-alist
705 (if prev-dirs file-name-handler-alist
706 (let ((tem (copy-sequence file-name-handler-alist)))
707 (delq (rassq 'ange-ftp-completion-hook-function tem) tem)))))
708 (or prev-dirs (setq prev-dirs (list nil)))
710 ;; andrewi@harlequin.co.uk - none of the following code (except for
711 ;; invoking the file-name handler) currently applies on Windows
712 ;; (ie. there are no native symlinks), but there is an issue with
713 ;; case differences being ignored by the OS, and short "8.3 DOS"
714 ;; name aliases existing for all files. (The short names are not
715 ;; reported by directory-files, but can be used to refer to files.)
716 ;; It seems appropriate for file-truename to resolve these issues in
717 ;; the most natural way, which on Windows is to call the function
718 ;; `w32-long-file-name' - this returns the exact name of a file as
719 ;; it is stored on disk (expanding short name aliases with the full
720 ;; name in the process).
721 (if (eq system-type 'windows-nt)
722 (let ((handler (find-file-name-handler filename 'file-truename)))
723 ;; For file name that has a special handler, call handler.
724 ;; This is so that ange-ftp can save time by doing a no-op.
725 (if handler
726 (setq filename (funcall handler 'file-truename filename))
727 ;; If filename contains a wildcard, newname will be the old name.
728 (unless (string-match "[[*?]" filename)
729 ;; If filename exists, use the long name
730 (setq filename (or (w32-long-file-name filename) filename))))
731 (setq done t)))
733 ;; If this file directly leads to a link, process that iteratively
734 ;; so that we don't use lots of stack.
735 (while (not done)
736 (setcar counter (1- (car counter)))
737 (if (< (car counter) 0)
738 (error "Apparent cycle of symbolic links for %s" filename))
739 (let ((handler (find-file-name-handler filename 'file-truename)))
740 ;; For file name that has a special handler, call handler.
741 ;; This is so that ange-ftp can save time by doing a no-op.
742 (if handler
743 (setq filename (funcall handler 'file-truename filename)
744 done t)
745 (let ((dir (or (file-name-directory filename) default-directory))
746 target dirfile)
747 ;; Get the truename of the directory.
748 (setq dirfile (directory-file-name dir))
749 ;; If these are equal, we have the (or a) root directory.
750 (or (string= dir dirfile)
751 ;; If this is the same dir we last got the truename for,
752 ;; save time--don't recalculate.
753 (if (assoc dir (car prev-dirs))
754 (setq dir (cdr (assoc dir (car prev-dirs))))
755 (let ((old dir)
756 (new (file-name-as-directory (file-truename dirfile counter prev-dirs))))
757 (setcar prev-dirs (cons (cons old new) (car prev-dirs)))
758 (setq dir new))))
759 (if (equal ".." (file-name-nondirectory filename))
760 (setq filename
761 (directory-file-name (file-name-directory (directory-file-name dir)))
762 done t)
763 (if (equal "." (file-name-nondirectory filename))
764 (setq filename (directory-file-name dir)
765 done t)
766 ;; Put it back on the file name.
767 (setq filename (concat dir (file-name-nondirectory filename)))
768 ;; Is the file name the name of a link?
769 (setq target (file-symlink-p filename))
770 (if target
771 ;; Yes => chase that link, then start all over
772 ;; since the link may point to a directory name that uses links.
773 ;; We can't safely use expand-file-name here
774 ;; since target might look like foo/../bar where foo
775 ;; is itself a link. Instead, we handle . and .. above.
776 (setq filename
777 (if (file-name-absolute-p target)
778 target
779 (concat dir target))
780 done nil)
781 ;; No, we are done!
782 (setq done t))))))))
783 filename))
785 (defun file-chase-links (filename &optional limit)
786 "Chase links in FILENAME until a name that is not a link.
787 Unlike `file-truename', this does not check whether a parent
788 directory name is a symbolic link.
789 If the optional argument LIMIT is a number,
790 it means chase no more than that many links and then stop."
791 (let (tem (newname filename)
792 (count 0))
793 (while (and (or (null limit) (< count limit))
794 (setq tem (file-symlink-p newname)))
795 (save-match-data
796 (if (and (null limit) (= count 100))
797 (error "Apparent cycle of symbolic links for %s" filename))
798 ;; In the context of a link, `//' doesn't mean what Emacs thinks.
799 (while (string-match "//+" tem)
800 (setq tem (replace-match "/" nil nil tem)))
801 ;; Handle `..' by hand, since it needs to work in the
802 ;; target of any directory symlink.
803 ;; This code is not quite complete; it does not handle
804 ;; embedded .. in some cases such as ./../foo and foo/bar/../../../lose.
805 (while (string-match "\\`\\.\\./" tem)
806 (setq tem (substring tem 3))
807 (setq newname (expand-file-name newname))
808 ;; Chase links in the default dir of the symlink.
809 (setq newname
810 (file-chase-links
811 (directory-file-name (file-name-directory newname))))
812 ;; Now find the parent of that dir.
813 (setq newname (file-name-directory newname)))
814 (setq newname (expand-file-name tem (file-name-directory newname)))
815 (setq count (1+ count))))
816 newname))
818 (defun recode-file-name (file coding new-coding &optional ok-if-already-exists)
819 "Change the encoding of FILE's name from CODING to NEW-CODING.
820 The value is a new name of FILE.
821 Signals a `file-already-exists' error if a file of the new name
822 already exists unless optional third argument OK-IF-ALREADY-EXISTS
823 is non-nil. A number as third arg means request confirmation if
824 the new name already exists. This is what happens in interactive
825 use with M-x."
826 (interactive
827 (let ((default-coding (or file-name-coding-system
828 default-file-name-coding-system))
829 (filename (read-file-name "Recode filename: " nil nil t))
830 from-coding to-coding)
831 (if (and default-coding
832 ;; We provide the default coding only when it seems that
833 ;; the filename is correctly decoded by the default
834 ;; coding.
835 (let ((charsets (find-charset-string filename)))
836 (and (not (memq 'eight-bit-control charsets))
837 (not (memq 'eight-bit-graphic charsets)))))
838 (setq from-coding (read-coding-system
839 (format "Recode filename %s from (default %s): "
840 filename default-coding)
841 default-coding))
842 (setq from-coding (read-coding-system
843 (format "Recode filename %s from: " filename))))
845 ;; We provide the default coding only when a user is going to
846 ;; change the encoding not from the default coding.
847 (if (eq from-coding default-coding)
848 (setq to-coding (read-coding-system
849 (format "Recode filename %s from %s to: "
850 filename from-coding)))
851 (setq to-coding (read-coding-system
852 (format "Recode filename %s from %s to (default %s): "
853 filename from-coding default-coding)
854 default-coding)))
855 (list filename from-coding to-coding)))
857 (let* ((default-coding (or file-name-coding-system
858 default-file-name-coding-system))
859 ;; FILE should have been decoded by DEFAULT-CODING.
860 (encoded (encode-coding-string file default-coding))
861 (newname (decode-coding-string encoded coding))
862 (new-encoded (encode-coding-string newname new-coding))
863 ;; Suppress further encoding.
864 (file-name-coding-system nil)
865 (default-file-name-coding-system nil)
866 (locale-coding-system nil))
867 (rename-file encoded new-encoded ok-if-already-exists)
868 newname))
870 (defun switch-to-buffer-other-window (buffer &optional norecord)
871 "Select buffer BUFFER in another window.
872 If BUFFER does not identify an existing buffer, then this function
873 creates a buffer with that name.
875 When called from Lisp, BUFFER can be a buffer, a string \(a buffer name),
876 or nil. If BUFFER is nil, then this function chooses a buffer
877 using `other-buffer'.
878 Optional second arg NORECORD non-nil means
879 do not put this buffer at the front of the list of recently selected ones.
880 This function returns the buffer it switched to.
882 This uses the function `display-buffer' as a subroutine; see its
883 documentation for additional customization information."
884 (interactive "BSwitch to buffer in other window: ")
885 (let ((pop-up-windows t)
886 ;; Don't let these interfere.
887 same-window-buffer-names same-window-regexps)
888 (pop-to-buffer buffer t norecord)))
890 (defun switch-to-buffer-other-frame (buffer &optional norecord)
891 "Switch to buffer BUFFER in another frame.
892 Optional second arg NORECORD non-nil means
893 do not put this buffer at the front of the list of recently selected ones.
895 This uses the function `display-buffer' as a subroutine; see its
896 documentation for additional customization information."
897 (interactive "BSwitch to buffer in other frame: ")
898 (let ((pop-up-frames t)
899 same-window-buffer-names same-window-regexps)
900 (pop-to-buffer buffer t norecord)
901 (raise-frame (window-frame (selected-window)))))
903 (defvar find-file-default nil
904 "Used within `find-file-read-args'.")
906 (defun find-file-read-args (prompt mustmatch)
907 (list (let ((find-file-default
908 (and buffer-file-name
909 (abbreviate-file-name buffer-file-name)))
910 (munge-default-fun
911 (lambda ()
912 (setq minibuffer-default find-file-default)
913 ;; Clear out this hook so it does not interfere
914 ;; with any recursive minibuffer usage.
915 (pop minibuffer-setup-hook)))
916 (minibuffer-setup-hook
917 minibuffer-setup-hook))
918 (add-hook 'minibuffer-setup-hook munge-default-fun)
919 (read-file-name prompt nil default-directory mustmatch))
922 (defun find-file (filename &optional wildcards)
923 "Edit file FILENAME.
924 Switch to a buffer visiting file FILENAME,
925 creating one if none already exists.
926 Interactively, the default if you just type RET is the current directory,
927 but the visited file name is available through the minibuffer history:
928 type M-n to pull it into the minibuffer.
930 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
931 expand wildcards (if any) and visit multiple files. You can
932 suppress wildcard expansion by setting `find-file-wildcards'.
934 To visit a file without any kind of conversion and without
935 automatically choosing a major mode, use \\[find-file-literally]."
936 (interactive
937 (find-file-read-args "Find file: " nil))
938 (let ((value (find-file-noselect filename nil nil wildcards)))
939 (if (listp value)
940 (mapcar 'switch-to-buffer (nreverse value))
941 (switch-to-buffer value))))
943 (defun find-file-other-window (filename &optional wildcards)
944 "Edit file FILENAME, in another window.
945 May create a new window, or reuse an existing one.
946 See the function `display-buffer'.
948 Interactively, the default if you just type RET is the current directory,
949 but the visited file name is available through the minibuffer history:
950 type M-n to pull it into the minibuffer.
952 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
953 expand wildcards (if any) and visit multiple files."
954 (interactive (find-file-read-args "Find file in other window: " nil))
955 (let ((value (find-file-noselect filename nil nil wildcards)))
956 (if (listp value)
957 (progn
958 (setq value (nreverse value))
959 (switch-to-buffer-other-window (car value))
960 (mapcar 'switch-to-buffer (cdr value)))
961 (switch-to-buffer-other-window value))))
963 (defun find-file-other-frame (filename &optional wildcards)
964 "Edit file FILENAME, in another frame.
965 May create a new frame, or reuse an existing one.
966 See the function `display-buffer'.
968 Interactively, the default if you just type RET is the current directory,
969 but the visited file name is available through the minibuffer history:
970 type M-n to pull it into the minibuffer.
972 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
973 expand wildcards (if any) and visit multiple files."
974 (interactive (find-file-read-args "Find file in other frame: " nil))
975 (let ((value (find-file-noselect filename nil nil wildcards)))
976 (if (listp value)
977 (progn
978 (setq value (nreverse value))
979 (switch-to-buffer-other-frame (car value))
980 (mapcar 'switch-to-buffer (cdr value)))
981 (switch-to-buffer-other-frame value))))
983 (defun find-file-read-only (filename &optional wildcards)
984 "Edit file FILENAME but don't allow changes.
985 Like \\[find-file] but marks buffer as read-only.
986 Use \\[toggle-read-only] to permit editing."
987 (interactive (find-file-read-args "Find file read-only: " t))
988 (unless (file-exists-p filename) (error "%s does not exist" filename))
989 (find-file filename wildcards)
990 (toggle-read-only 1)
991 (current-buffer))
993 (defun find-file-read-only-other-window (filename &optional wildcards)
994 "Edit file FILENAME in another window but don't allow changes.
995 Like \\[find-file-other-window] but marks buffer as read-only.
996 Use \\[toggle-read-only] to permit editing."
997 (interactive (find-file-read-args "Find file read-only other window: " t))
998 (unless (file-exists-p filename) (error "%s does not exist" filename))
999 (find-file-other-window filename wildcards)
1000 (toggle-read-only 1)
1001 (current-buffer))
1003 (defun find-file-read-only-other-frame (filename &optional wildcards)
1004 "Edit file FILENAME in another frame but don't allow changes.
1005 Like \\[find-file-other-frame] but marks buffer as read-only.
1006 Use \\[toggle-read-only] to permit editing."
1007 (interactive (find-file-read-args "Find file read-only other frame: " t))
1008 (unless (file-exists-p filename) (error "%s does not exist" filename))
1009 (find-file-other-frame filename wildcards)
1010 (toggle-read-only 1)
1011 (current-buffer))
1013 (defun find-alternate-file-other-window (filename)
1014 "Find file FILENAME as a replacement for the file in the next window.
1015 This command does not select that window."
1016 (interactive
1017 (save-selected-window
1018 (other-window 1)
1019 (let ((file buffer-file-name)
1020 (file-name nil)
1021 (file-dir nil))
1022 (and file
1023 (setq file-name (file-name-nondirectory file)
1024 file-dir (file-name-directory file)))
1025 (list (read-file-name
1026 "Find alternate file: " file-dir nil nil file-name)))))
1027 (if (one-window-p)
1028 (find-file-other-window filename)
1029 (save-selected-window
1030 (other-window 1)
1031 (find-alternate-file filename))))
1033 (defun find-alternate-file (filename)
1034 "Find file FILENAME, select its buffer, kill previous buffer.
1035 If the current buffer now contains an empty file that you just visited
1036 \(presumably by mistake), use this command to visit the file you really want."
1037 (interactive
1038 (let ((file buffer-file-name)
1039 (file-name nil)
1040 (file-dir nil))
1041 (and file
1042 (setq file-name (file-name-nondirectory file)
1043 file-dir (file-name-directory file)))
1044 (list (read-file-name
1045 "Find alternate file: " file-dir nil nil file-name))))
1046 (unless (run-hook-with-args-until-failure 'kill-buffer-query-functions)
1047 (error "Aborted"))
1048 (when (and (buffer-modified-p) (buffer-file-name))
1049 (if (yes-or-no-p (format "Buffer %s is modified; save it first? "
1050 (buffer-name)))
1051 (save-buffer)
1052 (unless (yes-or-no-p "Kill and replace the buffer without saving it? ")
1053 (error "Aborted"))))
1054 (let ((obuf (current-buffer))
1055 (ofile buffer-file-name)
1056 (onum buffer-file-number)
1057 (odir dired-directory)
1058 (otrue buffer-file-truename)
1059 (oname (buffer-name)))
1060 (if (get-buffer " **lose**")
1061 (kill-buffer " **lose**"))
1062 (rename-buffer " **lose**")
1063 (unwind-protect
1064 (progn
1065 (unlock-buffer)
1066 ;; This prevents us from finding the same buffer
1067 ;; if we specified the same file again.
1068 (setq buffer-file-name nil)
1069 (setq buffer-file-number nil)
1070 (setq buffer-file-truename nil)
1071 ;; Likewise for dired buffers.
1072 (setq dired-directory nil)
1073 (find-file filename))
1074 (when (eq obuf (current-buffer))
1075 ;; This executes if find-file gets an error
1076 ;; and does not really find anything.
1077 ;; We put things back as they were.
1078 ;; If find-file actually finds something, we kill obuf below.
1079 (setq buffer-file-name ofile)
1080 (setq buffer-file-number onum)
1081 (setq buffer-file-truename otrue)
1082 (setq dired-directory odir)
1083 (lock-buffer)
1084 (rename-buffer oname)))
1085 (unless (eq (current-buffer) obuf)
1086 (with-current-buffer obuf
1087 ;; We already asked; don't ask again.
1088 (let ((kill-buffer-query-functions))
1089 (kill-buffer obuf))))))
1091 (defun create-file-buffer (filename)
1092 "Create a suitably named buffer for visiting FILENAME, and return it.
1093 FILENAME (sans directory) is used unchanged if that name is free;
1094 otherwise a string <2> or <3> or ... is appended to get an unused name."
1095 (let ((lastname (file-name-nondirectory filename)))
1096 (if (string= lastname "")
1097 (setq lastname filename))
1098 (generate-new-buffer lastname)))
1100 (defun generate-new-buffer (name)
1101 "Create and return a buffer with a name based on NAME.
1102 Choose the buffer's name using `generate-new-buffer-name'."
1103 (get-buffer-create (generate-new-buffer-name name)))
1105 (defcustom automount-dir-prefix "^/tmp_mnt/"
1106 "Regexp to match the automounter prefix in a directory name."
1107 :group 'files
1108 :type 'regexp)
1110 (defvar abbreviated-home-dir nil
1111 "The user's homedir abbreviated according to `directory-abbrev-alist'.")
1113 (defun abbreviate-file-name (filename)
1114 "Return a version of FILENAME shortened using `directory-abbrev-alist'.
1115 This also substitutes \"~\" for the user's home directory and
1116 removes automounter prefixes (see the variable `automount-dir-prefix')."
1117 ;; Get rid of the prefixes added by the automounter.
1118 (if (and automount-dir-prefix
1119 (string-match automount-dir-prefix filename)
1120 (file-exists-p (file-name-directory
1121 (substring filename (1- (match-end 0))))))
1122 (setq filename (substring filename (1- (match-end 0)))))
1123 (let ((tail directory-abbrev-alist))
1124 ;; If any elt of directory-abbrev-alist matches this name,
1125 ;; abbreviate accordingly.
1126 (while tail
1127 (if (string-match (car (car tail)) filename)
1128 (setq filename
1129 (concat (cdr (car tail)) (substring filename (match-end 0)))))
1130 (setq tail (cdr tail)))
1131 ;; Compute and save the abbreviated homedir name.
1132 ;; We defer computing this until the first time it's needed, to
1133 ;; give time for directory-abbrev-alist to be set properly.
1134 ;; We include a slash at the end, to avoid spurious matches
1135 ;; such as `/usr/foobar' when the home dir is `/usr/foo'.
1136 (or abbreviated-home-dir
1137 (setq abbreviated-home-dir
1138 (let ((abbreviated-home-dir "$foo"))
1139 (concat "^" (abbreviate-file-name (expand-file-name "~"))
1140 "\\(/\\|$\\)"))))
1142 ;; If FILENAME starts with the abbreviated homedir,
1143 ;; make it start with `~' instead.
1144 (if (and (string-match abbreviated-home-dir filename)
1145 ;; If the home dir is just /, don't change it.
1146 (not (and (= (match-end 0) 1)
1147 (= (aref filename 0) ?/)))
1148 ;; MS-DOS root directories can come with a drive letter;
1149 ;; Novell Netware allows drive letters beyond `Z:'.
1150 (not (and (or (eq system-type 'ms-dos)
1151 (eq system-type 'cygwin)
1152 (eq system-type 'windows-nt))
1153 (save-match-data
1154 (string-match "^[a-zA-`]:/$" filename)))))
1155 (setq filename
1156 (concat "~"
1157 (substring filename (match-beginning 1) (match-end 1))
1158 (substring filename (match-end 0)))))
1159 filename))
1161 (defcustom find-file-not-true-dirname-list nil
1162 "*List of logical names for which visiting shouldn't save the true dirname.
1163 On VMS, when you visit a file using a logical name that searches a path,
1164 you may or may not want the visited file name to record the specific
1165 directory where the file was found. If you *do not* want that, add the logical
1166 name to this list as a string."
1167 :type '(repeat (string :tag "Name"))
1168 :group 'find-file)
1170 (defun find-buffer-visiting (filename &optional predicate)
1171 "Return the buffer visiting file FILENAME (a string).
1172 This is like `get-file-buffer', except that it checks for any buffer
1173 visiting the same file, possibly under a different name.
1174 If PREDICATE is non-nil, only a buffer satisfying it can be returned.
1175 If there is no such live buffer, return nil."
1176 (let ((predicate (or predicate #'identity))
1177 (truename (abbreviate-file-name (file-truename filename))))
1178 (or (let ((buf (get-file-buffer filename)))
1179 (when (and buf (funcall predicate buf)) buf))
1180 (let ((list (buffer-list)) found)
1181 (while (and (not found) list)
1182 (save-excursion
1183 (set-buffer (car list))
1184 (if (and buffer-file-name
1185 (string= buffer-file-truename truename)
1186 (funcall predicate (current-buffer)))
1187 (setq found (car list))))
1188 (setq list (cdr list)))
1189 found)
1190 (let* ((attributes (file-attributes truename))
1191 (number (nthcdr 10 attributes))
1192 (list (buffer-list)) found)
1193 (and buffer-file-numbers-unique
1194 number
1195 (while (and (not found) list)
1196 (with-current-buffer (car list)
1197 (if (and buffer-file-name
1198 (equal buffer-file-number number)
1199 ;; Verify this buffer's file number
1200 ;; still belongs to its file.
1201 (file-exists-p buffer-file-name)
1202 (equal (file-attributes buffer-file-truename)
1203 attributes)
1204 (funcall predicate (current-buffer)))
1205 (setq found (car list))))
1206 (setq list (cdr list))))
1207 found))))
1209 (defcustom find-file-wildcards t
1210 "*Non-nil means file-visiting commands should handle wildcards.
1211 For example, if you specify `*.c', that would visit all the files
1212 whose names match the pattern."
1213 :group 'files
1214 :version "20.4"
1215 :type 'boolean)
1217 (defcustom find-file-suppress-same-file-warnings nil
1218 "*Non-nil means suppress warning messages for symlinked files.
1219 When nil, Emacs prints a warning when visiting a file that is already
1220 visited, but with a different name. Setting this option to t
1221 suppresses this warning."
1222 :group 'files
1223 :version "21.1"
1224 :type 'boolean)
1226 (defcustom large-file-warning-threshold 10000000
1227 "Maximum size of file above which a confirmation is requested.
1228 When nil, never request confirmation."
1229 :group 'files
1230 :group 'find-file
1231 :type '(choice integer (const :tag "Never request confirmation" nil)))
1233 (defun find-file-noselect (filename &optional nowarn rawfile wildcards)
1234 "Read file FILENAME into a buffer and return the buffer.
1235 If a buffer exists visiting FILENAME, return that one, but
1236 verify that the file has not changed since visited or saved.
1237 The buffer is not selected, just returned to the caller.
1238 Optional first arg NOWARN non-nil means suppress any warning messages.
1239 Optional second arg RAWFILE non-nil means the file is read literally.
1240 Optional third arg WILDCARDS non-nil means do wildcard processing
1241 and visit all the matching files. When wildcards are actually
1242 used and expanded, the value is a list of buffers
1243 that are visiting the various files."
1244 (setq filename
1245 (abbreviate-file-name
1246 (expand-file-name filename)))
1247 (if (file-directory-p filename)
1248 (or (and find-file-run-dired
1249 (run-hook-with-args-until-success
1250 'find-directory-functions
1251 (if find-file-visit-truename
1252 (abbreviate-file-name (file-truename filename))
1253 filename)))
1254 (error "%s is a directory" filename))
1255 (if (and wildcards
1256 find-file-wildcards
1257 (not (string-match "\\`/:" filename))
1258 (string-match "[[*?]" filename))
1259 (let ((files (condition-case nil
1260 (file-expand-wildcards filename t)
1261 (error (list filename))))
1262 (find-file-wildcards nil))
1263 (if (null files)
1264 (find-file-noselect filename)
1265 (mapcar #'find-file-noselect files)))
1266 (let* ((buf (get-file-buffer filename))
1267 (truename (abbreviate-file-name (file-truename filename)))
1268 (attributes (file-attributes truename))
1269 (number (nthcdr 10 attributes))
1270 ;; Find any buffer for a file which has same truename.
1271 (other (and (not buf) (find-buffer-visiting filename))))
1272 ;; Let user know if there is a buffer with the same truename.
1273 (if other
1274 (progn
1275 (or nowarn
1276 find-file-suppress-same-file-warnings
1277 (string-equal filename (buffer-file-name other))
1278 (message "%s and %s are the same file"
1279 filename (buffer-file-name other)))
1280 ;; Optionally also find that buffer.
1281 (if (or find-file-existing-other-name find-file-visit-truename)
1282 (setq buf other))))
1283 ;; Check to see if the file looks uncommonly large.
1284 (when (and large-file-warning-threshold (nth 7 attributes)
1285 ;; Don't ask again if we already have the file or
1286 ;; if we're asked to be quiet.
1287 (not (or buf nowarn))
1288 (> (nth 7 attributes) large-file-warning-threshold)
1289 (not (y-or-n-p
1290 (format "File %s is large (%sMB), really open? "
1291 (file-name-nondirectory filename)
1292 (/ (nth 7 attributes) 1048576)))))
1293 (error "Aborted"))
1294 (if buf
1295 ;; We are using an existing buffer.
1296 (progn
1297 (or nowarn
1298 (verify-visited-file-modtime buf)
1299 (cond ((not (file-exists-p filename))
1300 (error "File %s no longer exists!" filename))
1301 ;; Certain files should be reverted automatically
1302 ;; if they have changed on disk and not in the buffer.
1303 ((and (not (buffer-modified-p buf))
1304 (let ((tail revert-without-query)
1305 (found nil))
1306 (while tail
1307 (if (string-match (car tail) filename)
1308 (setq found t))
1309 (setq tail (cdr tail)))
1310 found))
1311 (with-current-buffer buf
1312 (message "Reverting file %s..." filename)
1313 (revert-buffer t t)
1314 (message "Reverting file %s...done" filename)))
1315 ((yes-or-no-p
1316 (if (string= (file-name-nondirectory filename)
1317 (buffer-name buf))
1318 (format
1319 (if (buffer-modified-p buf)
1320 "File %s changed on disk. Discard your edits? "
1321 "File %s changed on disk. Reread from disk? ")
1322 (file-name-nondirectory filename))
1323 (format
1324 (if (buffer-modified-p buf)
1325 "File %s changed on disk. Discard your edits in %s? "
1326 "File %s changed on disk. Reread from disk into %s? ")
1327 (file-name-nondirectory filename)
1328 (buffer-name buf))))
1329 (with-current-buffer buf
1330 (revert-buffer t t)))))
1331 (with-current-buffer buf
1333 ;; Check if a formerly read-only file has become
1334 ;; writable and vice versa, but if the buffer agrees
1335 ;; with the new state of the file, that is ok too.
1336 (let ((read-only (not (file-writable-p buffer-file-name))))
1337 (unless (or (eq read-only buffer-file-read-only)
1338 (eq read-only buffer-read-only))
1339 (when (or nowarn
1340 (let ((question
1341 (format "File %s is %s on disk. Change buffer mode? "
1342 buffer-file-name
1343 (if read-only "read-only" "writable"))))
1344 (y-or-n-p question)))
1345 (setq buffer-read-only read-only)))
1346 (setq buffer-file-read-only read-only))
1348 (when (and (not (eq (not (null rawfile))
1349 (not (null find-file-literally))))
1350 ;; It is confusing to ask whether to visit
1351 ;; non-literally if they have the file in
1352 ;; hexl-mode.
1353 (not (eq major-mode 'hexl-mode)))
1354 (if (buffer-modified-p)
1355 (if (y-or-n-p (if rawfile
1356 "Save file and revisit literally? "
1357 "Save file and revisit non-literally? "))
1358 (progn
1359 (save-buffer)
1360 (find-file-noselect-1 buf filename nowarn
1361 rawfile truename number))
1362 (if (y-or-n-p (if rawfile
1363 "Discard your edits and revisit file literally? "
1364 "Discard your edits and revisit file non-literally? "))
1365 (find-file-noselect-1 buf filename nowarn
1366 rawfile truename number)
1367 (error (if rawfile "File already visited non-literally"
1368 "File already visited literally"))))
1369 (if (y-or-n-p (if rawfile
1370 "Revisit file literally? "
1371 "Revisit file non-literally? "))
1372 (find-file-noselect-1 buf filename nowarn
1373 rawfile truename number)
1374 (error (if rawfile "File already visited non-literally"
1375 "File already visited literally"))))))
1376 ;; Return the buffer we are using.
1377 buf)
1378 ;; Create a new buffer.
1379 (setq buf (create-file-buffer filename))
1380 (set-buffer-major-mode buf)
1381 ;; find-file-noselect-1 may use a different buffer.
1382 (find-file-noselect-1 buf filename nowarn
1383 rawfile truename number))))))
1385 (defun find-file-noselect-1 (buf filename nowarn rawfile truename number)
1386 (let (error)
1387 (with-current-buffer buf
1388 (kill-local-variable 'find-file-literally)
1389 ;; Needed in case we are re-visiting the file with a different
1390 ;; text representation.
1391 (kill-local-variable 'buffer-file-coding-system)
1392 (kill-local-variable 'cursor-type)
1393 (let ((inhibit-read-only t))
1394 (erase-buffer))
1395 (and (default-value 'enable-multibyte-characters)
1396 (not rawfile)
1397 (set-buffer-multibyte t))
1398 (if rawfile
1399 (condition-case ()
1400 (let ((inhibit-read-only t))
1401 (insert-file-contents-literally filename t))
1402 (file-error
1403 (when (and (file-exists-p filename)
1404 (not (file-readable-p filename)))
1405 (kill-buffer buf)
1406 (signal 'file-error (list "File is not readable"
1407 filename)))
1408 ;; Unconditionally set error
1409 (setq error t)))
1410 (condition-case ()
1411 (let ((inhibit-read-only t))
1412 (insert-file-contents filename t))
1413 (file-error
1414 (when (and (file-exists-p filename)
1415 (not (file-readable-p filename)))
1416 (kill-buffer buf)
1417 (signal 'file-error (list "File is not readable"
1418 filename)))
1419 ;; Run find-file-not-found-hooks until one returns non-nil.
1420 (or (run-hook-with-args-until-success 'find-file-not-found-functions)
1421 ;; If they fail too, set error.
1422 (setq error t)))))
1423 ;; Record the file's truename, and maybe use that as visited name.
1424 (if (equal filename buffer-file-name)
1425 (setq buffer-file-truename truename)
1426 (setq buffer-file-truename
1427 (abbreviate-file-name (file-truename buffer-file-name))))
1428 (setq buffer-file-number number)
1429 ;; On VMS, we may want to remember which directory in a search list
1430 ;; the file was found in.
1431 (and (eq system-type 'vax-vms)
1432 (let (logical)
1433 (if (string-match ":" (file-name-directory filename))
1434 (setq logical (substring (file-name-directory filename)
1435 0 (match-beginning 0))))
1436 (not (member logical find-file-not-true-dirname-list)))
1437 (setq buffer-file-name buffer-file-truename))
1438 (if find-file-visit-truename
1439 (setq buffer-file-name
1440 (setq filename
1441 (expand-file-name buffer-file-truename))))
1442 ;; Set buffer's default directory to that of the file.
1443 (setq default-directory (file-name-directory buffer-file-name))
1444 ;; Turn off backup files for certain file names. Since
1445 ;; this is a permanent local, the major mode won't eliminate it.
1446 (and (not (funcall backup-enable-predicate buffer-file-name))
1447 (progn
1448 (make-local-variable 'backup-inhibited)
1449 (setq backup-inhibited t)))
1450 (if rawfile
1451 (progn
1452 (set-buffer-multibyte nil)
1453 (setq buffer-file-coding-system 'no-conversion)
1454 (make-local-variable 'find-file-literally)
1455 (setq find-file-literally t))
1456 (after-find-file error (not nowarn)))
1457 (current-buffer))))
1459 (defun insert-file-contents-literally (filename &optional visit beg end replace)
1460 "Like `insert-file-contents', but only reads in the file literally.
1461 A buffer may be modified in several ways after reading into the buffer,
1462 to Emacs features such as format decoding, character code
1463 conversion, `find-file-hook', automatic uncompression, etc.
1465 This function ensures that none of these modifications will take place."
1466 (let ((format-alist nil)
1467 (after-insert-file-functions nil)
1468 (coding-system-for-read 'no-conversion)
1469 (coding-system-for-write 'no-conversion)
1470 (find-buffer-file-type-function
1471 (if (fboundp 'find-buffer-file-type)
1472 (symbol-function 'find-buffer-file-type)
1473 nil))
1474 (inhibit-file-name-handlers
1475 (append '(jka-compr-handler image-file-handler)
1476 inhibit-file-name-handlers))
1477 (inhibit-file-name-operation 'insert-file-contents))
1478 (unwind-protect
1479 (progn
1480 (fset 'find-buffer-file-type (lambda (filename) t))
1481 (insert-file-contents filename visit beg end replace))
1482 (if find-buffer-file-type-function
1483 (fset 'find-buffer-file-type find-buffer-file-type-function)
1484 (fmakunbound 'find-buffer-file-type)))))
1486 (defun insert-file-1 (filename insert-func)
1487 (if (file-directory-p filename)
1488 (signal 'file-error (list "Opening input file" "file is a directory"
1489 filename)))
1490 (let* ((buffer (find-buffer-visiting (abbreviate-file-name (file-truename filename))
1491 #'buffer-modified-p))
1492 (tem (funcall insert-func filename)))
1493 (push-mark (+ (point) (car (cdr tem))))
1494 (when buffer
1495 (message "File %s already visited and modified in buffer %s"
1496 filename (buffer-name buffer)))))
1498 (defun insert-file-literally (filename)
1499 "Insert contents of file FILENAME into buffer after point with no conversion.
1501 This function is meant for the user to run interactively.
1502 Don't call it from programs! Use `insert-file-contents-literally' instead.
1503 \(Its calling sequence is different; see its documentation)."
1504 (interactive "*fInsert file literally: ")
1505 (insert-file-1 filename #'insert-file-contents-literally))
1507 (defvar find-file-literally nil
1508 "Non-nil if this buffer was made by `find-file-literally' or equivalent.
1509 This is a permanent local.")
1510 (put 'find-file-literally 'permanent-local t)
1512 (defun find-file-literally (filename)
1513 "Visit file FILENAME with no conversion of any kind.
1514 Format conversion and character code conversion are both disabled,
1515 and multibyte characters are disabled in the resulting buffer.
1516 The major mode used is Fundamental mode regardless of the file name,
1517 and local variable specifications in the file are ignored.
1518 Automatic uncompression and adding a newline at the end of the
1519 file due to `require-final-newline' is also disabled.
1521 You cannot absolutely rely on this function to result in
1522 visiting the file literally. If Emacs already has a buffer
1523 which is visiting the file, you get the existing buffer,
1524 regardless of whether it was created literally or not.
1526 In a Lisp program, if you want to be sure of accessing a file's
1527 contents literally, you should create a temporary buffer and then read
1528 the file contents into it using `insert-file-contents-literally'."
1529 (interactive "FFind file literally: ")
1530 (switch-to-buffer (find-file-noselect filename nil t)))
1532 (defvar after-find-file-from-revert-buffer nil)
1534 (defun after-find-file (&optional error warn noauto
1535 after-find-file-from-revert-buffer
1536 nomodes)
1537 "Called after finding a file and by the default revert function.
1538 Sets buffer mode, parses local variables.
1539 Optional args ERROR, WARN, and NOAUTO: ERROR non-nil means there was an
1540 error in reading the file. WARN non-nil means warn if there
1541 exists an auto-save file more recent than the visited file.
1542 NOAUTO means don't mess with auto-save mode.
1543 Fourth arg AFTER-FIND-FILE-FROM-REVERT-BUFFER non-nil
1544 means this call was from `revert-buffer'.
1545 Fifth arg NOMODES non-nil means don't alter the file's modes.
1546 Finishes by calling the functions in `find-file-hook'
1547 unless NOMODES is non-nil."
1548 (setq buffer-read-only (not (file-writable-p buffer-file-name)))
1549 (if noninteractive
1551 (let* (not-serious
1552 (msg
1553 (cond
1554 ((not warn) nil)
1555 ((and error (file-attributes buffer-file-name))
1556 (setq buffer-read-only t)
1557 "File exists, but cannot be read")
1558 ((not buffer-read-only)
1559 (if (and warn
1560 ;; No need to warn if buffer is auto-saved
1561 ;; under the name of the visited file.
1562 (not (and buffer-file-name
1563 auto-save-visited-file-name))
1564 (file-newer-than-file-p (or buffer-auto-save-file-name
1565 (make-auto-save-file-name))
1566 buffer-file-name))
1567 (format "%s has auto save data; consider M-x recover-this-file"
1568 (file-name-nondirectory buffer-file-name))
1569 (setq not-serious t)
1570 (if error "(New file)" nil)))
1571 ((not error)
1572 (setq not-serious t)
1573 "Note: file is write protected")
1574 ((file-attributes (directory-file-name default-directory))
1575 "File not found and directory write-protected")
1576 ((file-exists-p (file-name-directory buffer-file-name))
1577 (setq buffer-read-only nil))
1579 (setq buffer-read-only nil)
1580 "Use M-x make-directory RET RET to create the directory and its parents"))))
1581 (when msg
1582 (message "%s" msg)
1583 (or not-serious (sit-for 1 t))))
1584 (when (and auto-save-default (not noauto))
1585 (auto-save-mode t)))
1586 ;; Make people do a little extra work (C-x C-q)
1587 ;; before altering a backup file.
1588 (when (backup-file-name-p buffer-file-name)
1589 (setq buffer-read-only t))
1590 ;; When a file is marked read-only,
1591 ;; make the buffer read-only even if root is looking at it.
1592 (when (and (file-modes (buffer-file-name))
1593 (zerop (logand (file-modes (buffer-file-name)) #o222)))
1594 (setq buffer-read-only t))
1595 (unless nomodes
1596 (when (and view-read-only view-mode)
1597 (view-mode-disable))
1598 (normal-mode t)
1599 (when (and buffer-read-only
1600 view-read-only
1601 (not (eq (get major-mode 'mode-class) 'special)))
1602 (view-mode-enter))
1603 (run-hooks 'find-file-hook)))
1605 (defmacro report-errors (format &rest body)
1606 "Eval BODY and turn any error into a FORMAT message.
1607 FORMAT can have a %s escape which will be replaced with the actual error.
1608 If `debug-on-error' is set, errors are not caught, so that you can
1609 debug them.
1610 Avoid using a large BODY since it is duplicated."
1611 (declare (debug t) (indent 1))
1612 `(if debug-on-error
1613 (progn . ,body)
1614 (condition-case err
1615 (progn . ,body)
1616 (error (message ,format (prin1-to-string err))))))
1618 (defun normal-mode (&optional find-file)
1619 "Choose the major mode for this buffer automatically.
1620 Also sets up any specified local variables of the file.
1621 Uses the visited file name, the -*- line, and the local variables spec.
1623 This function is called automatically from `find-file'. In that case,
1624 we may set up the file-specified mode and local variables,
1625 depending on the value of `enable-local-variables': if it is t, we do;
1626 if it is nil, we don't; otherwise, we query.
1627 In addition, if `local-enable-local-variables' is nil, we do
1628 not set local variables (though we do notice a mode specified with -*-.)
1630 `enable-local-variables' is ignored if you run `normal-mode' interactively,
1631 or from Lisp without specifying the optional argument FIND-FILE;
1632 in that case, this function acts as if `enable-local-variables' were t."
1633 (interactive)
1634 (or find-file (funcall (or default-major-mode 'fundamental-mode)))
1635 (report-errors "File mode specification error: %s"
1636 (set-auto-mode))
1637 (report-errors "File local-variables error: %s"
1638 (let ((enable-local-variables (or (not find-file) enable-local-variables)))
1639 (hack-local-variables)))
1640 (if (fboundp 'ucs-set-table-for-input) ; don't lose when building
1641 (ucs-set-table-for-input)))
1643 (defvar auto-mode-alist
1644 ;; Note: The entries for the modes defined in cc-mode.el (c-mode,
1645 ;; c++-mode, java-mode and more) are added through autoload
1646 ;; directives in that file. That way is discouraged since it
1647 ;; spreads out the definition of the initial value.
1648 (mapc
1649 (lambda (elt)
1650 (cons (purecopy (car elt)) (cdr elt)))
1651 '(("\\.te?xt\\'" . text-mode)
1652 ("\\.tex\\'" . tex-mode)
1653 ("\\.ins\\'" . tex-mode) ;Installation files for TeX packages.
1654 ("\\.ltx\\'" . latex-mode)
1655 ("\\.dtx\\'" . doctex-mode)
1656 ("\\.el\\'" . emacs-lisp-mode)
1657 ("\\.\\(scm\\|stk\\|ss\\|sch\\)\\'" . scheme-mode)
1658 ("\\.l\\'" . lisp-mode)
1659 ("\\.lisp\\'" . lisp-mode)
1660 ("\\.f\\'" . fortran-mode)
1661 ("\\.F\\'" . fortran-mode)
1662 ("\\.for\\'" . fortran-mode)
1663 ("\\.p\\'" . pascal-mode)
1664 ("\\.pas\\'" . pascal-mode)
1665 ("\\.ad[abs]\\'" . ada-mode)
1666 ("\\.ad[bs].dg\\'" . ada-mode)
1667 ("\\.\\([pP]\\([Llm]\\|erl\\)\\|al\\)\\'" . perl-mode)
1668 ("\\.s?html?\\'" . html-mode)
1669 ("\\.mk\\'" . makefile-mode)
1670 ("\\(M\\|m\\|GNUm\\)akefile\\'" . makefile-mode)
1671 ("\\.am\\'" . makefile-mode) ;For Automake.
1672 ;; Less common extensions come here
1673 ;; so more common ones above are found faster.
1674 ("\\.texinfo\\'" . texinfo-mode)
1675 ("\\.te?xi\\'" . texinfo-mode)
1676 ("\\.s\\'" . asm-mode)
1677 ("\\.S\\'" . asm-mode)
1678 ("\\.asm\\'" . asm-mode)
1679 ("ChangeLog\\'" . change-log-mode)
1680 ("change\\.log\\'" . change-log-mode)
1681 ("changelo\\'" . change-log-mode)
1682 ("ChangeLog\\.[0-9]+\\'" . change-log-mode)
1683 ;; for MSDOS and MS-Windows (which are case-insensitive)
1684 ("changelog\\'" . change-log-mode)
1685 ("changelog\\.[0-9]+\\'" . change-log-mode)
1686 ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode)
1687 ("\\.scm\\.[0-9]*\\'" . scheme-mode)
1688 ("\\.[ck]?sh\\'\\|\\.shar\\'\\|/\\.z?profile\\'" . sh-mode)
1689 ("\\.bash\\'" . sh-mode)
1690 ("\\(/\\|\\`\\)\\.\\(bash_profile\\|z?login\\|bash_login\\|z?logout\\)\\'" . sh-mode)
1691 ("\\(/\\|\\`\\)\\.\\(bash_logout\\|shrc\\|[kz]shrc\\|bashrc\\|t?cshrc\\|esrc\\)\\'" . sh-mode)
1692 ("\\(/\\|\\`\\)\\.\\([kz]shenv\\|xinitrc\\|startxrc\\|xsession\\)\\'" . sh-mode)
1693 ("\\.m?spec\\'" . sh-mode)
1694 ("\\.mm\\'" . nroff-mode)
1695 ("\\.me\\'" . nroff-mode)
1696 ("\\.ms\\'" . nroff-mode)
1697 ("\\.man\\'" . nroff-mode)
1698 ("\\.TeX\\'" . tex-mode)
1699 ("\\.sty\\'" . latex-mode)
1700 ("\\.cls\\'" . latex-mode) ;LaTeX 2e class
1701 ("\\.clo\\'" . latex-mode) ;LaTeX 2e class option
1702 ("\\.bbl\\'" . latex-mode)
1703 ("\\.bib\\'" . bibtex-mode)
1704 ("\\.sql\\'" . sql-mode)
1705 ("\\.m4\\'" . m4-mode)
1706 ("\\.mc\\'" . m4-mode)
1707 ("\\.mf\\'" . metafont-mode)
1708 ("\\.mp\\'" . metapost-mode)
1709 ("\\.vhdl?\\'" . vhdl-mode)
1710 ("\\.article\\'" . text-mode)
1711 ("\\.letter\\'" . text-mode)
1712 ("\\.tcl\\'" . tcl-mode)
1713 ("\\.exp\\'" . tcl-mode)
1714 ("\\.itcl\\'" . tcl-mode)
1715 ("\\.itk\\'" . tcl-mode)
1716 ("\\.icn\\'" . icon-mode)
1717 ("\\.sim\\'" . simula-mode)
1718 ("\\.mss\\'" . scribe-mode)
1719 ("\\.f90\\'" . f90-mode)
1720 ("\\.f95\\'" . f90-mode)
1721 ("\\.indent\\.pro\\'" . fundamental-mode) ; to avoid idlwave-mode
1722 ("\\.pro\\'" . idlwave-mode)
1723 ("\\.lsp\\'" . lisp-mode)
1724 ("\\.prolog\\'" . prolog-mode)
1725 ("\\.tar\\'" . tar-mode)
1726 ("\\.\\(arc\\|zip\\|lzh\\|zoo\\|ear\\|jar\\|war\\)\\'" . archive-mode)
1727 ("\\.\\(ARC\\|ZIP\\|LZH\\|ZOO\\|EAR\\|JAR\\|WAR\\)\\'" . archive-mode)
1728 ("\\.sx[dmicw]\\'" . archive-mode) ; OpenOffice.org
1729 ;; Mailer puts message to be edited in
1730 ;; /tmp/Re.... or Message
1731 ("\\`/tmp/Re" . text-mode)
1732 ("/Message[0-9]*\\'" . text-mode)
1733 ("/drafts/[0-9]+\\'" . mh-letter-mode)
1734 ("\\.zone\\'" . zone-mode)
1735 ;; some news reader is reported to use this
1736 ("\\`/tmp/fol/" . text-mode)
1737 ("\\.oak\\'" . scheme-mode)
1738 ("\\.sgml?\\'" . sgml-mode)
1739 ("\\.xml\\'" . sgml-mode)
1740 ("\\.xsl\\'" . sgml-mode)
1741 ("\\.dtd\\'" . sgml-mode)
1742 ("\\.ds\\(ss\\)?l\\'" . dsssl-mode)
1743 ;; .emacs or .gnus or .viper following a directory delimiter in
1744 ;; Unix, MSDOG or VMS syntax.
1745 ("[]>:/\\]\\..*\\(emacs\\|gnus\\|viper\\)\\'" . emacs-lisp-mode)
1746 ("\\`\\..*emacs\\'" . emacs-lisp-mode)
1747 ;; _emacs following a directory delimiter
1748 ;; in MsDos syntax
1749 ("[:/]_emacs\\'" . emacs-lisp-mode)
1750 ("/crontab\\.X*[0-9]+\\'" . shell-script-mode)
1751 ("\\.ml\\'" . lisp-mode)
1752 ("\\.\\(asn\\|mib\\|smi\\)\\'" . snmp-mode)
1753 ("\\.\\(as\\|mi\\|sm\\)2\\'" . snmpv2-mode)
1754 ("\\.\\(diffs?\\|patch\\|rej\\)\\'" . diff-mode)
1755 ("\\.\\(dif\\|pat\\)\\'" . diff-mode) ; for MSDOG
1756 ("\\.[eE]?[pP][sS]\\'" . ps-mode)
1757 ("configure\\.\\(ac\\|in\\)\\'" . autoconf-mode)
1758 ("BROWSE\\'" . ebrowse-tree-mode)
1759 ("\\.ebrowse\\'" . ebrowse-tree-mode)
1760 ("#\\*mail\\*" . mail-mode)
1761 ;; Get rid of any trailing .n.m and try again.
1762 ;; This is for files saved by cvs-merge that look like .#<file>.<rev>
1763 ;; or .#<file>.<rev>-<rev> or VC's <file>.~<rev>~.
1764 ;; Using mode nil rather than `ignore' would let the search continue
1765 ;; through this list (with the shortened name) rather than start over.
1766 ("\\.~?[0-9]+\\.[0-9][-.0-9]*~?\\'" ignore t)
1767 ;; The following should come after the ChangeLog pattern
1768 ;; for the sake of ChangeLog.1, etc.
1769 ;; and after the .scm.[0-9] and CVS' <file>.<rev> patterns too.
1770 ("\\.[1-9]\\'" . nroff-mode)
1771 ("\\.g\\'" . antlr-mode)
1772 ("\\.ses\\'" . ses-mode)
1773 ("\\.orig\\'" nil t) ; from patch
1774 ("\\.in\\'" nil t)))
1775 "Alist of filename patterns vs corresponding major mode functions.
1776 Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL).
1777 \(NON-NIL stands for anything that is not nil; the value does not matter.)
1778 Visiting a file whose name matches REGEXP specifies FUNCTION as the
1779 mode function to use. FUNCTION will be called, unless it is nil.
1781 If the element has the form (REGEXP FUNCTION NON-NIL), then after
1782 calling FUNCTION (if it's not nil), we delete the suffix that matched
1783 REGEXP and search the list again for another match.")
1786 (defvar interpreter-mode-alist
1787 ;; Note: The entries for the modes defined in cc-mode.el (awk-mode
1788 ;; and pike-mode) are added through autoload directives in that
1789 ;; file. That way is discouraged since it spreads out the
1790 ;; definition of the initial value.
1791 (mapc
1792 (lambda (l)
1793 (cons (purecopy (car l)) (cdr l)))
1794 '(("perl" . perl-mode)
1795 ("perl5" . perl-mode)
1796 ("miniperl" . perl-mode)
1797 ("wish" . tcl-mode)
1798 ("wishx" . tcl-mode)
1799 ("tcl" . tcl-mode)
1800 ("tclsh" . tcl-mode)
1801 ("scm" . scheme-mode)
1802 ("ash" . sh-mode)
1803 ("bash" . sh-mode)
1804 ("bash2" . sh-mode)
1805 ("csh" . sh-mode)
1806 ("dtksh" . sh-mode)
1807 ("es" . sh-mode)
1808 ("itcsh" . sh-mode)
1809 ("jsh" . sh-mode)
1810 ("ksh" . sh-mode)
1811 ("oash" . sh-mode)
1812 ("pdksh" . sh-mode)
1813 ("rc" . sh-mode)
1814 ("rpm" . sh-mode)
1815 ("sh" . sh-mode)
1816 ("sh5" . sh-mode)
1817 ("tcsh" . sh-mode)
1818 ("wksh" . sh-mode)
1819 ("wsh" . sh-mode)
1820 ("zsh" . sh-mode)
1821 ("tail" . text-mode)
1822 ("more" . text-mode)
1823 ("less" . text-mode)
1824 ("pg" . text-mode)
1825 ("make" . makefile-mode) ; Debian uses this
1826 ("guile" . scheme-mode)
1827 ("clisp" . lisp-mode)))
1828 "Alist mapping interpreter names to major modes.
1829 This alist applies to files whose first line starts with `#!'.
1830 Each element looks like (INTERPRETER . MODE).
1831 The car of each element is compared with
1832 the name of the interpreter specified in the first line.
1833 If it matches, mode MODE is selected.")
1835 (defvar inhibit-first-line-modes-regexps '("\\.tar\\'" "\\.tgz\\'")
1836 "List of regexps; if one matches a file name, don't look for `-*-'.")
1838 (defvar inhibit-first-line-modes-suffixes nil
1839 "List of regexps for what to ignore, for `inhibit-first-line-modes-regexps'.
1840 When checking `inhibit-first-line-modes-regexps', we first discard
1841 from the end of the file name anything that matches one of these regexps.")
1843 (defvar auto-mode-interpreter-regexp
1844 "#![ \t]?\\([^ \t\n]*\
1845 /bin/env[ \t]\\)?\\([^ \t\n]+\\)"
1846 "Regular expression matching interpreters, for file mode determination.
1847 This regular expression is matched against the first line of a file
1848 to determine the file's mode in `set-auto-mode' when Emacs can't deduce
1849 a mode from the file's name. If it matches, the file is assumed to
1850 be interpreted by the interpreter matched by the second group of the
1851 regular expression. The mode is then determined as the mode associated
1852 with that interpreter in `interpreter-mode-alist'.")
1854 (defun set-auto-mode (&optional just-from-file-name)
1855 "Select major mode appropriate for current buffer.
1856 This checks for a -*- mode tag in the buffer's text,
1857 compares the filename against the entries in `auto-mode-alist',
1858 or checks the interpreter that runs this file against
1859 `interpreter-mode-alist'.
1861 It does not check for the `mode:' local variable in the
1862 Local Variables section of the file; for that, use `hack-local-variables'.
1864 If `enable-local-variables' is nil, this function does not check for a
1865 -*- mode tag.
1867 If the optional argument JUST-FROM-FILE-NAME is non-nil,
1868 then we do not set anything but the major mode,
1869 and we don't even do that unless it would come from the file name."
1870 ;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*-
1871 (let (end done modes)
1872 (save-excursion
1873 (goto-char (point-min))
1874 (skip-chars-forward " \t\n")
1875 (and enable-local-variables
1876 (setq end (set-auto-mode-1))
1877 (if (save-excursion (search-forward ":" end t))
1878 ;; Find all specifications for the `mode:' variable
1879 ;; and execute them left to right.
1880 (while (let ((case-fold-search t))
1881 (or (and (looking-at "mode:")
1882 (goto-char (match-end 0)))
1883 (re-search-forward "[ \t;]mode:" end t)))
1884 (skip-chars-forward " \t")
1885 (let ((beg (point)))
1886 (if (search-forward ";" end t)
1887 (forward-char -1)
1888 (goto-char end))
1889 (skip-chars-backward " \t")
1890 (push (intern (concat (downcase (buffer-substring beg (point))) "-mode"))
1891 modes)))
1892 ;; Simple -*-MODE-*- case.
1893 (push (intern (concat (downcase (buffer-substring (point) end))
1894 "-mode"))
1895 modes))))
1896 ;; If we found modes to use, invoke them now,
1897 ;; outside the save-excursion.
1898 (unless just-from-file-name
1899 (dolist (mode (nreverse modes))
1900 (if (not (functionp mode))
1901 (message "Ignoring unknown mode `%s'" mode)
1902 (setq done t)
1903 (funcall mode))))
1904 ;; If we didn't find a mode from a -*- line, try using the file name.
1905 (if (and (not done) buffer-file-name)
1906 (let ((name buffer-file-name)
1907 (keep-going t))
1908 ;; Remove backup-suffixes from file name.
1909 (setq name (file-name-sans-versions name))
1910 (while keep-going
1911 (setq keep-going nil)
1912 (let ((alist auto-mode-alist)
1913 (mode nil))
1914 ;; Find first matching alist entry.
1915 (let ((case-fold-search
1916 (memq system-type '(vax-vms windows-nt cygwin))))
1917 (while (and (not mode) alist)
1918 (if (string-match (car (car alist)) name)
1919 (if (and (consp (cdr (car alist)))
1920 (nth 2 (car alist)))
1921 (setq mode (car (cdr (car alist)))
1922 name (substring name 0 (match-beginning 0))
1923 keep-going t)
1924 (setq mode (cdr (car alist))
1925 keep-going nil)))
1926 (setq alist (cdr alist))))
1927 (if mode
1928 ;; When JUST-FROM-FILE-NAME is set,
1929 ;; we are working on behalf of set-visited-file-name.
1930 ;; In that case, if the major mode specified is the
1931 ;; same one we already have, don't actually reset it.
1932 ;; We don't want to lose minor modes such as Font Lock.
1933 (unless (and just-from-file-name (eq mode major-mode))
1934 (funcall mode))
1935 ;; If we can't deduce a mode from the file name,
1936 ;; look for an interpreter specified in the first line.
1937 ;; As a special case, allow for things like "#!/bin/env perl",
1938 ;; which finds the interpreter anywhere in $PATH.
1939 (let ((interpreter
1940 (save-excursion
1941 (goto-char (point-min))
1942 (if (looking-at auto-mode-interpreter-regexp)
1943 (match-string 2)
1944 "")))
1945 elt)
1946 ;; Map interpreter name to a mode.
1947 (setq elt (assoc (file-name-nondirectory interpreter)
1948 interpreter-mode-alist))
1949 (unless just-from-file-name
1950 (if elt
1951 (funcall (cdr elt))))))))))))
1954 (defun set-auto-mode-1 ()
1955 "Find the -*- spec in the buffer.
1956 Call with point at the place to start searching from.
1957 If one is found, set point to the beginning
1958 and return the position of the end.
1959 Otherwise, return nil; point may be changed."
1960 (let (beg end)
1961 (and
1962 ;; Don't look for -*- if this file name matches any
1963 ;; of the regexps in inhibit-first-line-modes-regexps.
1964 (let ((temp inhibit-first-line-modes-regexps)
1965 (name (if buffer-file-name
1966 (file-name-sans-versions buffer-file-name)
1967 (buffer-name))))
1968 (while (let ((sufs inhibit-first-line-modes-suffixes))
1969 (while (and sufs (not (string-match (car sufs) name)))
1970 (setq sufs (cdr sufs)))
1971 sufs)
1972 (setq name (substring name 0 (match-beginning 0))))
1973 (while (and temp
1974 (not (string-match (car temp) name)))
1975 (setq temp (cdr temp)))
1976 (not temp))
1978 (search-forward "-*-" (save-excursion
1979 ;; If the file begins with "#!"
1980 ;; (exec interpreter magic), look
1981 ;; for mode frobs in the first two
1982 ;; lines. You cannot necessarily
1983 ;; put them in the first line of
1984 ;; such a file without screwing up
1985 ;; the interpreter invocation.
1986 (end-of-line (and (looking-at "^#!") 2))
1987 (point)) t)
1988 (progn
1989 (skip-chars-forward " \t")
1990 (setq beg (point))
1991 (search-forward "-*-"
1992 (save-excursion (end-of-line) (point))
1994 (progn
1995 (forward-char -3)
1996 (skip-chars-backward " \t")
1997 (setq end (point))
1998 (goto-char beg)
1999 end))))
2001 (defun hack-local-variables-prop-line (&optional mode-only)
2002 "Set local variables specified in the -*- line.
2003 Ignore any specification for `mode:' and `coding:';
2004 `set-auto-mode' should already have handled `mode:',
2005 `set-auto-coding' should already have handled `coding:'.
2006 If MODE-ONLY is non-nil, all we do is check whether the major mode
2007 is specified, returning t if it is specified."
2008 (save-excursion
2009 (goto-char (point-min))
2010 (let ((result nil)
2011 (end (set-auto-mode-1))
2012 mode-specified
2013 (enable-local-variables
2014 (and local-enable-local-variables enable-local-variables)))
2015 ;; Parse the -*- line into the RESULT alist.
2016 ;; Also set MODE-SPECIFIED if we see a spec or `mode'.
2017 (cond ((not end)
2018 nil)
2019 ((looking-at "[ \t]*\\([^ \t\n\r:;]+\\)\\([ \t]*-\\*-\\)")
2020 ;; Simple form: "-*- MODENAME -*-". Already handled.
2021 (setq mode-specified t)
2022 nil)
2024 ;; Hairy form: '-*-' [ <variable> ':' <value> ';' ]* '-*-'
2025 ;; (last ";" is optional).
2026 (while (< (point) end)
2027 (or (looking-at "[ \t]*\\([^ \t\n:]+\\)[ \t]*:[ \t]*")
2028 (error "Malformed -*- line"))
2029 (goto-char (match-end 0))
2030 ;; There used to be a downcase here,
2031 ;; but the manual didn't say so,
2032 ;; and people want to set var names that aren't all lc.
2033 (let ((key (intern (buffer-substring
2034 (match-beginning 1)
2035 (match-end 1))))
2036 (val (save-restriction
2037 (narrow-to-region (point) end)
2038 (read (current-buffer)))))
2039 ;; It is traditional to ignore
2040 ;; case when checking for `mode' in set-auto-mode,
2041 ;; so we must do that here as well.
2042 ;; That is inconsistent, but we're stuck with it.
2043 ;; The same can be said for `coding' in set-auto-coding.
2044 (or (equal (downcase (symbol-name key)) "mode")
2045 (equal (downcase (symbol-name key)) "coding")
2046 (setq result (cons (cons key val) result)))
2047 (if (equal (downcase (symbol-name key)) "mode")
2048 (setq mode-specified t))
2049 (skip-chars-forward " \t;")))
2050 (setq result (nreverse result))))
2052 (if mode-only mode-specified
2053 (if (and result
2054 (or mode-only
2055 (eq enable-local-variables t)
2056 (and enable-local-variables
2057 (save-window-excursion
2058 (condition-case nil
2059 (switch-to-buffer (current-buffer))
2060 (error
2061 ;; If we fail to switch in the selected window,
2062 ;; it is probably a minibuffer.
2063 ;; So try another window.
2064 (condition-case nil
2065 (switch-to-buffer-other-window (current-buffer))
2066 (error
2067 (switch-to-buffer-other-frame (current-buffer))))))
2068 (y-or-n-p (format "Set local variables as specified in -*- line of %s? "
2069 (file-name-nondirectory buffer-file-name)))))))
2070 (let ((enable-local-eval enable-local-eval))
2071 (while result
2072 (hack-one-local-variable (car (car result)) (cdr (car result)))
2073 (setq result (cdr result)))))
2074 nil))))
2076 (defvar hack-local-variables-hook nil
2077 "Normal hook run after processing a file's local variables specs.
2078 Major modes can use this to examine user-specified local variables
2079 in order to initialize other data structure based on them.")
2081 (defun hack-local-variables (&optional mode-only)
2082 "Parse and put into effect this buffer's local variables spec.
2083 If MODE-ONLY is non-nil, all we do is check whether the major mode
2084 is specified, returning t if it is specified."
2085 (let ((mode-specified
2086 ;; If MODE-ONLY is t, we check here for specifying the mode
2087 ;; in the -*- line. If MODE-ONLY is nil, we process
2088 ;; the -*- line here.
2089 (hack-local-variables-prop-line mode-only))
2090 (enable-local-variables
2091 (and local-enable-local-variables enable-local-variables)))
2092 ;; Look for "Local variables:" line in last page.
2093 (save-excursion
2094 (goto-char (point-max))
2095 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move)
2096 (if (let ((case-fold-search t))
2097 (and (search-forward "Local Variables:" nil t)
2098 (or (eq enable-local-variables t)
2099 mode-only
2100 (and enable-local-variables
2101 (save-window-excursion
2102 (switch-to-buffer (current-buffer))
2103 (save-excursion
2104 (beginning-of-line)
2105 (set-window-start (selected-window) (point)))
2106 (y-or-n-p (format "Set local variables as specified at end of %s? "
2107 (if buffer-file-name
2108 (file-name-nondirectory
2109 buffer-file-name)
2110 (concat "buffer "
2111 (buffer-name))))))))))
2112 (let ((continue t)
2113 prefix prefixlen suffix beg
2114 mode-specified
2115 (enable-local-eval enable-local-eval))
2116 ;; The prefix is what comes before "local variables:" in its line.
2117 ;; The suffix is what comes after "local variables:" in its line.
2118 (skip-chars-forward " \t")
2119 (or (eolp)
2120 (setq suffix (buffer-substring (point)
2121 (progn (end-of-line) (point)))))
2122 (goto-char (match-beginning 0))
2123 (or (bolp)
2124 (setq prefix
2125 (buffer-substring (point)
2126 (progn (beginning-of-line) (point)))))
2128 (if prefix (setq prefixlen (length prefix)
2129 prefix (regexp-quote prefix)))
2130 (if suffix (setq suffix (concat (regexp-quote suffix) "$")))
2131 (while continue
2132 ;; Look at next local variable spec.
2133 (if selective-display (re-search-forward "[\n\C-m]")
2134 (forward-line 1))
2135 ;; Skip the prefix, if any.
2136 (if prefix
2137 (if (looking-at prefix)
2138 (forward-char prefixlen)
2139 (error "Local variables entry is missing the prefix")))
2140 ;; Find the variable name; strip whitespace.
2141 (skip-chars-forward " \t")
2142 (setq beg (point))
2143 (skip-chars-forward "^:\n")
2144 (if (eolp) (error "Missing colon in local variables entry"))
2145 (skip-chars-backward " \t")
2146 (let* ((str (buffer-substring beg (point)))
2147 (var (read str))
2148 val)
2149 ;; Setting variable named "end" means end of list.
2150 (if (string-equal (downcase str) "end")
2151 (setq continue nil)
2152 ;; Otherwise read the variable value.
2153 (skip-chars-forward "^:")
2154 (forward-char 1)
2155 (setq val (read (current-buffer)))
2156 (skip-chars-backward "\n")
2157 (skip-chars-forward " \t")
2158 (or (if suffix (looking-at suffix) (eolp))
2159 (error "Local variables entry is terminated incorrectly"))
2160 (if mode-only
2161 (if (eq var 'mode)
2162 (setq mode-specified t))
2163 ;; Set the variable. "Variables" mode and eval are funny.
2164 (hack-one-local-variable var val))))))))
2165 (unless mode-only
2166 (run-hooks 'hack-local-variables-hook))
2167 mode-specified))
2169 (defvar ignored-local-variables
2170 '(enable-local-eval)
2171 "Variables to be ignored in a file's local variable spec.")
2173 ;; Get confirmation before setting these variables as locals in a file.
2174 (put 'debugger 'risky-local-variable t)
2175 (put 'enable-local-eval 'risky-local-variable t)
2176 (put 'ignored-local-variables 'risky-local-variable t)
2177 (put 'eval 'risky-local-variable t)
2178 (put 'file-name-handler-alist 'risky-local-variable t)
2179 (put 'inhibit-quit 'risky-local-variable t)
2180 (put 'minor-mode-alist 'risky-local-variable t)
2181 (put 'minor-mode-map-alist 'risky-local-variable t)
2182 (put 'minor-mode-overriding-map-alist 'risky-local-variable t)
2183 (put 'overriding-local-map 'risky-local-variable t)
2184 (put 'overriding-terminal-local-map 'risky-local-variable t)
2185 (put 'auto-mode-alist 'risky-local-variable t)
2186 (put 'after-load-alist 'risky-local-variable t)
2187 (put 'buffer-file-name 'risky-local-variable t)
2188 (put 'buffer-undo-list 'risky-local-variable t)
2189 (put 'buffer-auto-save-file-name 'risky-local-variable t)
2190 (put 'buffer-file-truename 'risky-local-variable t)
2191 (put 'default-text-properties 'risky-local-variable t)
2192 (put 'exec-path 'risky-local-variable t)
2193 (put 'load-path 'risky-local-variable t)
2194 (put 'exec-directory 'risky-local-variable t)
2195 (put 'process-environment 'risky-local-variable t)
2196 (put 'dabbrev-case-fold-search 'risky-local-variable t)
2197 (put 'dabbrev-case-replace 'risky-local-variable t)
2198 ;; Don't wait for outline.el to be loaded, for the sake of outline-minor-mode.
2199 (put 'outline-level 'risky-local-variable t)
2200 (put 'rmail-output-file-alist 'risky-local-variable t)
2201 (put 'font-lock-defaults 'risky-local-variable t)
2202 (put 'special-display-buffer-names 'risky-local-variable t)
2203 (put 'frame-title-format 'risky-local-variable t)
2204 (put 'global-mode-string 'risky-local-variable t)
2205 (put 'header-line-format 'risky-local-variable t)
2206 (put 'icon-title-format 'risky-local-variable t)
2207 (put 'input-method-alist 'risky-local-variable t)
2208 (put 'format-alist 'risky-local-variable t)
2209 (put 'vc-mode 'risky-local-variable t)
2210 (put 'imenu-generic-expression 'risky-local-variable t)
2211 (put 'imenu--index-alist 'risky-local-variable t)
2212 (put 'standard-input 'risky-local-variable t)
2213 (put 'standard-output 'risky-local-variable t)
2214 (put 'unread-command-events 'risky-local-variable t)
2215 (put 'max-lisp-eval-depth 'risky-local-variable t)
2216 (put 'max-specpdl-size 'risky-local-variable t)
2217 (put 'mode-line-format 'risky-local-variable t)
2218 (put 'mode-line-modified 'risky-local-variable t)
2219 (put 'mode-line-mule-info 'risky-local-variable t)
2220 (put 'mode-line-buffer-identification 'risky-local-variable t)
2221 (put 'mode-line-modes 'risky-local-variable t)
2222 (put 'mode-line-position 'risky-local-variable t)
2223 (put 'mode-line-process 'risky-local-variable t)
2224 (put 'mode-name 'risky-local-variable t)
2225 (put 'display-time-string 'risky-local-variable t)
2226 (put 'parse-time-rules 'risky-local-variable t)
2228 ;; This case is safe because the user gets to check it before it is used.
2229 (put 'compile-command 'safe-local-variable 'stringp)
2231 (defun risky-local-variable-p (sym &optional val)
2232 "Non-nil if SYM could be dangerous as a file-local variable with value VAL.
2233 If VAL is nil or omitted, the question is whether any value might be
2234 dangerous."
2235 (let ((safep (get sym 'safe-local-variable)))
2236 (or (memq sym ignored-local-variables)
2237 (get sym 'risky-local-variable)
2238 (and (string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|-command$\\|-predicate$\\|font-lock-keywords$\\|font-lock-keywords-[0-9]+$\\|font-lock-syntactic-keywords$\\|-frame-alist$\\|-mode-alist$\\|-map$\\|-map-alist$"
2239 (symbol-name sym))
2240 (not safep))
2241 ;; If the safe-local-variable property isn't t or nil,
2242 ;; then it must return non-nil on the proposed value to be safe.
2243 (and (not (memq safep '(t nil)))
2244 (or (null val)
2245 (not (funcall safep val)))))))
2247 (defcustom safe-local-eval-forms nil
2248 "*Expressions that are considered \"safe\" in an `eval:' local variable.
2249 Add expressions to this list if you want Emacs to evaluate them, when
2250 they appear in an `eval' local variable specification, without first
2251 asking you for confirmation."
2252 :group 'find-file
2253 :version "21.4"
2254 :type '(repeat sexp))
2256 (put 'c-set-style 'safe-local-eval-function t)
2258 (defun hack-one-local-variable-quotep (exp)
2259 (and (consp exp) (eq (car exp) 'quote) (consp (cdr exp))))
2261 (defun hack-one-local-variable-constantp (exp)
2262 (or (and (not (symbolp exp)) (not (consp exp)))
2263 (memq exp '(t nil))
2264 (keywordp exp)
2265 (hack-one-local-variable-quotep exp)))
2267 (defun hack-one-local-variable-eval-safep (exp)
2268 "Return t if it is safe to eval EXP when it is found in a file."
2269 (or (not (consp exp))
2270 ;; Detect certain `put' expressions.
2271 (and (eq (car exp) 'put)
2272 (hack-one-local-variable-quotep (nth 1 exp))
2273 (hack-one-local-variable-quotep (nth 2 exp))
2274 (memq (nth 1 (nth 2 exp))
2275 '(lisp-indent-hook))
2276 ;; Only allow safe values of lisp-indent-hook;
2277 ;; not functions.
2278 (or (numberp (nth 3 exp))
2279 (equal (nth 3 exp) ''defun)))
2280 ;; Allow expressions that the user requested.
2281 (member exp safe-local-eval-forms)
2282 ;; Certain functions can be allowed with safe arguments
2283 ;; or can specify verification functions to try.
2284 (and (symbolp (car exp))
2285 (let ((prop (get (car exp) 'safe-local-eval-function)))
2286 (cond ((eq prop t)
2287 (let ((ok t))
2288 (dolist (arg (cdr exp))
2289 (unless (hack-one-local-variable-constantp arg)
2290 (setq ok nil)))
2291 ok))
2292 ((functionp prop)
2293 (funcall prop exp))
2294 ((listp prop)
2295 (let ((ok nil))
2296 (dolist (function prop)
2297 (if (funcall function exp)
2298 (setq ok t)))
2299 ok)))))))
2301 (defun hack-one-local-variable (var val)
2302 "\"Set\" one variable in a local variables spec.
2303 A few patterns are specified so that any name which matches one
2304 is considered risky."
2305 (cond ((eq var 'mode)
2306 (funcall (intern (concat (downcase (symbol-name val))
2307 "-mode"))))
2308 ((eq var 'coding)
2309 ;; We have already handled coding: tag in set-auto-coding.
2310 nil)
2311 ;; "Setting" eval means either eval it or do nothing.
2312 ;; Likewise for setting hook variables.
2313 ((risky-local-variable-p var val)
2314 ;; Permit evalling a put of a harmless property.
2315 ;; if the args do nothing tricky.
2316 (if (or (and (eq var 'eval)
2317 (hack-one-local-variable-eval-safep val))
2318 ;; Permit eval if not root and user says ok.
2319 (and (not (zerop (user-uid)))
2320 (or (eq enable-local-eval t)
2321 (and enable-local-eval
2322 (save-window-excursion
2323 (switch-to-buffer (current-buffer))
2324 (save-excursion
2325 (beginning-of-line)
2326 (set-window-start (selected-window) (point)))
2327 (setq enable-local-eval
2328 (y-or-n-p (format "Process `eval' or hook local variables in %s? "
2329 (if buffer-file-name
2330 (concat "file " (file-name-nondirectory buffer-file-name))
2331 (concat "buffer " (buffer-name)))))))))))
2332 (if (eq var 'eval)
2333 (save-excursion (eval val))
2334 (make-local-variable var)
2335 (set var val))
2336 (message "Ignoring risky spec in the local variables list")))
2337 ;; Ordinary variable, really set it.
2338 (t (make-local-variable var)
2339 ;; Make sure the string has no text properties.
2340 ;; Some text properties can get evaluated in various ways,
2341 ;; so it is risky to put them on with a local variable list.
2342 (if (stringp val)
2343 (set-text-properties 0 (length val) nil val))
2344 (set var val))))
2347 (defcustom change-major-mode-with-file-name t
2348 "*Non-nil means \\[write-file] should set the major mode from the file name.
2349 However, the mode will not be changed if
2350 \(1) a local variables list or the `-*-' line specifies a major mode, or
2351 \(2) the current major mode is a \"special\" mode,
2352 \ not suitable for ordinary files, or
2353 \(3) the new file name does not particularly specify any mode."
2354 :type 'boolean
2355 :group 'editing-basics)
2357 (defun set-visited-file-name (filename &optional no-query along-with-file)
2358 "Change name of file visited in current buffer to FILENAME.
2359 The next time the buffer is saved it will go in the newly specified file.
2360 FILENAME nil or an empty string means make buffer not be visiting any file.
2361 Remember to delete the initial contents of the minibuffer
2362 if you wish to pass an empty string as the argument.
2364 The optional second argument NO-QUERY, if non-nil, inhibits asking for
2365 confirmation in the case where another buffer is already visiting FILENAME.
2367 The optional third argument ALONG-WITH-FILE, if non-nil, means that
2368 the old visited file has been renamed to the new name FILENAME."
2369 (interactive "FSet visited file name: ")
2370 (if (buffer-base-buffer)
2371 (error "An indirect buffer cannot visit a file"))
2372 (let (truename)
2373 (if filename
2374 (setq filename
2375 (if (string-equal filename "")
2377 (expand-file-name filename))))
2378 (if filename
2379 (progn
2380 (setq truename (file-truename filename))
2381 (if find-file-visit-truename
2382 (setq filename truename))))
2383 (let ((buffer (and filename (find-buffer-visiting filename))))
2384 (and buffer (not (eq buffer (current-buffer)))
2385 (not no-query)
2386 (not (y-or-n-p (message "A buffer is visiting %s; proceed? "
2387 filename)))
2388 (error "Aborted")))
2389 (or (equal filename buffer-file-name)
2390 (progn
2391 (and filename (lock-buffer filename))
2392 (unlock-buffer)))
2393 (setq buffer-file-name filename)
2394 (if filename ; make buffer name reflect filename.
2395 (let ((new-name (file-name-nondirectory buffer-file-name)))
2396 (if (string= new-name "")
2397 (error "Empty file name"))
2398 (if (eq system-type 'vax-vms)
2399 (setq new-name (downcase new-name)))
2400 (setq default-directory (file-name-directory buffer-file-name))
2401 ;; If new-name == old-name, renaming would add a spurious <2>
2402 ;; and it's considered as a feature in rename-buffer.
2403 (or (string= new-name (buffer-name))
2404 (rename-buffer new-name t))))
2405 (setq buffer-backed-up nil)
2406 (or along-with-file
2407 (clear-visited-file-modtime))
2408 ;; Abbreviate the file names of the buffer.
2409 (if truename
2410 (progn
2411 (setq buffer-file-truename (abbreviate-file-name truename))
2412 (if find-file-visit-truename
2413 (setq buffer-file-name truename))))
2414 (setq buffer-file-number
2415 (if filename
2416 (nthcdr 10 (file-attributes buffer-file-name))
2417 nil)))
2418 ;; write-file-functions is normally used for things like ftp-find-file
2419 ;; that visit things that are not local files as if they were files.
2420 ;; Changing to visit an ordinary local file instead should flush the hook.
2421 (kill-local-variable 'write-file-functions)
2422 (kill-local-variable 'local-write-file-hooks)
2423 (kill-local-variable 'revert-buffer-function)
2424 (kill-local-variable 'backup-inhibited)
2425 ;; If buffer was read-only because of version control,
2426 ;; that reason is gone now, so make it writable.
2427 (if vc-mode
2428 (setq buffer-read-only nil))
2429 (kill-local-variable 'vc-mode)
2430 ;; Turn off backup files for certain file names.
2431 ;; Since this is a permanent local, the major mode won't eliminate it.
2432 (and buffer-file-name
2433 (not (funcall backup-enable-predicate buffer-file-name))
2434 (progn
2435 (make-local-variable 'backup-inhibited)
2436 (setq backup-inhibited t)))
2437 (let ((oauto buffer-auto-save-file-name))
2438 ;; If auto-save was not already on, turn it on if appropriate.
2439 (if (not buffer-auto-save-file-name)
2440 (and buffer-file-name auto-save-default
2441 (auto-save-mode t))
2442 ;; If auto save is on, start using a new name.
2443 ;; We deliberately don't rename or delete the old auto save
2444 ;; for the old visited file name. This is because perhaps
2445 ;; the user wants to save the new state and then compare with the
2446 ;; previous state from the auto save file.
2447 (setq buffer-auto-save-file-name
2448 (make-auto-save-file-name)))
2449 ;; Rename the old auto save file if any.
2450 (and oauto buffer-auto-save-file-name
2451 (file-exists-p oauto)
2452 (rename-file oauto buffer-auto-save-file-name t)))
2453 (and buffer-file-name
2454 (not along-with-file)
2455 (set-buffer-modified-p t))
2456 ;; Update the major mode, if the file name determines it.
2457 (condition-case nil
2458 ;; Don't change the mode if it is special.
2459 (or (not change-major-mode-with-file-name)
2460 (get major-mode 'mode-class)
2461 ;; Don't change the mode if the local variable list specifies it.
2462 (hack-local-variables t)
2463 (set-auto-mode t))
2464 (error nil)))
2466 (defun write-file (filename &optional confirm)
2467 "Write current buffer into file FILENAME.
2468 This makes the buffer visit that file, and marks it as not modified.
2470 If you specify just a directory name as FILENAME, that means to use
2471 the default file name but in that directory. You can also yank
2472 the default file name into the minibuffer to edit it, using \\<minibuffer-local-map>\\[next-history-element].
2474 If the buffer is not already visiting a file, the default file name
2475 for the output file is the buffer name.
2477 If optional second arg CONFIRM is non-nil, this function
2478 asks for confirmation before overwriting an existing file.
2479 Interactively, confirmation is required unless you supply a prefix argument."
2480 ;; (interactive "FWrite file: ")
2481 (interactive
2482 (list (if buffer-file-name
2483 (read-file-name "Write file: "
2484 nil nil nil nil)
2485 (read-file-name "Write file: " default-directory
2486 (expand-file-name
2487 (file-name-nondirectory (buffer-name))
2488 default-directory)
2489 nil nil))
2490 (not current-prefix-arg)))
2491 (or (null filename) (string-equal filename "")
2492 (progn
2493 ;; If arg is just a directory,
2494 ;; use the default file name, but in that directory.
2495 (if (file-directory-p filename)
2496 (setq filename (concat (file-name-as-directory filename)
2497 (file-name-nondirectory
2498 (or buffer-file-name (buffer-name))))))
2499 (and confirm
2500 (file-exists-p filename)
2501 (or (y-or-n-p (format "File `%s' exists; overwrite? " filename))
2502 (error "Canceled")))
2503 (set-visited-file-name filename (not confirm))))
2504 (set-buffer-modified-p t)
2505 ;; Make buffer writable if file is writable.
2506 (and buffer-file-name
2507 (file-writable-p buffer-file-name)
2508 (setq buffer-read-only nil))
2509 (save-buffer))
2511 (defun backup-buffer ()
2512 "Make a backup of the disk file visited by the current buffer, if appropriate.
2513 This is normally done before saving the buffer the first time.
2515 A backup may be done by renaming or by copying; see documentation of
2516 variable `make-backup-files'. If it's done by renaming, then the file is
2517 no longer accessible under its old name.
2519 The value is non-nil after a backup was made by renaming.
2520 It has the form (MODES . BACKUPNAME).
2521 MODES is the result of `file-modes' on the original
2522 file; this means that the caller, after saving the buffer, should change
2523 the modes of the new file to agree with the old modes.
2524 BACKUPNAME is the backup file name, which is the old file renamed."
2525 (if (and make-backup-files (not backup-inhibited)
2526 (not buffer-backed-up)
2527 (file-exists-p buffer-file-name)
2528 (memq (aref (elt (file-attributes buffer-file-name) 8) 0)
2529 '(?- ?l)))
2530 (let ((real-file-name buffer-file-name)
2531 backup-info backupname targets setmodes)
2532 ;; If specified name is a symbolic link, chase it to the target.
2533 ;; Thus we make the backups in the directory where the real file is.
2534 (setq real-file-name (file-chase-links real-file-name))
2535 (setq backup-info (find-backup-file-name real-file-name)
2536 backupname (car backup-info)
2537 targets (cdr backup-info))
2538 ;; (if (file-directory-p buffer-file-name)
2539 ;; (error "Cannot save buffer in directory %s" buffer-file-name))
2540 (if backup-info
2541 (condition-case ()
2542 (let ((delete-old-versions
2543 ;; If have old versions to maybe delete,
2544 ;; ask the user to confirm now, before doing anything.
2545 ;; But don't actually delete til later.
2546 (and targets
2547 (or (eq delete-old-versions t) (eq delete-old-versions nil))
2548 (or delete-old-versions
2549 (y-or-n-p (format "Delete excess backup versions of %s? "
2550 real-file-name)))))
2551 (modes (file-modes buffer-file-name)))
2552 ;; Actually write the back up file.
2553 (condition-case ()
2554 (if (or file-precious-flag
2555 ; (file-symlink-p buffer-file-name)
2556 backup-by-copying
2557 ;; Don't rename a suid or sgid file.
2558 (and modes (< 0 (logand modes #o6000)))
2559 (and backup-by-copying-when-linked
2560 (> (file-nlinks real-file-name) 1))
2561 (and (or backup-by-copying-when-mismatch
2562 (integerp backup-by-copying-when-privileged-mismatch))
2563 (let ((attr (file-attributes real-file-name)))
2564 (and (or backup-by-copying-when-mismatch
2565 (and (integerp (nth 2 attr))
2566 (integerp backup-by-copying-when-privileged-mismatch)
2567 (<= (nth 2 attr) backup-by-copying-when-privileged-mismatch)))
2568 (or (nth 9 attr)
2569 (not (file-ownership-preserved-p real-file-name)))))))
2570 (backup-buffer-copy real-file-name backupname modes)
2571 ;; rename-file should delete old backup.
2572 (rename-file real-file-name backupname t)
2573 (setq setmodes (cons modes backupname)))
2574 (file-error
2575 ;; If trouble writing the backup, write it in ~.
2576 (setq backupname (expand-file-name
2577 (convert-standard-filename
2578 "~/%backup%~")))
2579 (message "Cannot write backup file; backing up in %s"
2580 (file-name-nondirectory backupname))
2581 (sleep-for 1)
2582 (backup-buffer-copy real-file-name backupname modes)))
2583 (setq buffer-backed-up t)
2584 ;; Now delete the old versions, if desired.
2585 (if delete-old-versions
2586 (while targets
2587 (condition-case ()
2588 (delete-file (car targets))
2589 (file-error nil))
2590 (setq targets (cdr targets))))
2591 setmodes)
2592 (file-error nil))))))
2594 (defun backup-buffer-copy (from-name to-name modes)
2595 (condition-case ()
2596 (copy-file from-name to-name t t)
2597 (file-error
2598 ;; If copying fails because file TO-NAME
2599 ;; is not writable, delete that file and try again.
2600 (if (and (file-exists-p to-name)
2601 (not (file-writable-p to-name)))
2602 (delete-file to-name))
2603 (copy-file from-name to-name t t)))
2604 (and modes
2605 (set-file-modes to-name (logand modes #o1777))))
2607 (defun file-name-sans-versions (name &optional keep-backup-version)
2608 "Return file NAME sans backup versions or strings.
2609 This is a separate procedure so your site-init or startup file can
2610 redefine it.
2611 If the optional argument KEEP-BACKUP-VERSION is non-nil,
2612 we do not remove backup version numbers, only true file version numbers."
2613 (let ((handler (find-file-name-handler name 'file-name-sans-versions)))
2614 (if handler
2615 (funcall handler 'file-name-sans-versions name keep-backup-version)
2616 (substring name 0
2617 (if (eq system-type 'vax-vms)
2618 ;; VMS version number is (a) semicolon, optional
2619 ;; sign, zero or more digits or (b) period, option
2620 ;; sign, zero or more digits, provided this is the
2621 ;; second period encountered outside of the
2622 ;; device/directory part of the file name.
2623 (or (string-match ";[-+]?[0-9]*\\'" name)
2624 (if (string-match "\\.[^]>:]*\\(\\.[-+]?[0-9]*\\)\\'"
2625 name)
2626 (match-beginning 1))
2627 (length name))
2628 (if keep-backup-version
2629 (length name)
2630 (or (string-match "\\.~[0-9.]+~\\'" name)
2631 (string-match "~\\'" name)
2632 (length name))))))))
2634 (defun file-ownership-preserved-p (file)
2635 "Return t if deleting FILE and rewriting it would preserve the owner."
2636 (let ((handler (find-file-name-handler file 'file-ownership-preserved-p)))
2637 (if handler
2638 (funcall handler 'file-ownership-preserved-p file)
2639 (let ((attributes (file-attributes file)))
2640 ;; Return t if the file doesn't exist, since it's true that no
2641 ;; information would be lost by an (attempted) delete and create.
2642 (or (null attributes)
2643 (= (nth 2 attributes) (user-uid)))))))
2645 (defun file-name-sans-extension (filename)
2646 "Return FILENAME sans final \"extension\".
2647 The extension, in a file name, is the part that follows the last `.',
2648 except that a leading `.', if any, doesn't count."
2649 (save-match-data
2650 (let ((file (file-name-sans-versions (file-name-nondirectory filename)))
2651 directory)
2652 (if (and (string-match "\\.[^.]*\\'" file)
2653 (not (eq 0 (match-beginning 0))))
2654 (if (setq directory (file-name-directory filename))
2655 ;; Don't use expand-file-name here; if DIRECTORY is relative,
2656 ;; we don't want to expand it.
2657 (concat directory (substring file 0 (match-beginning 0)))
2658 (substring file 0 (match-beginning 0)))
2659 filename))))
2661 (defun file-name-extension (filename &optional period)
2662 "Return FILENAME's final \"extension\".
2663 The extension, in a file name, is the part that follows the last `.',
2664 except that a leading `.', if any, doesn't count.
2665 Return nil for extensionless file names such as `foo'.
2666 Return the empty string for file names such as `foo.'.
2668 If PERIOD is non-nil, then the returned value includes the period
2669 that delimits the extension, and if FILENAME has no extension,
2670 the value is \"\"."
2671 (save-match-data
2672 (let ((file (file-name-sans-versions (file-name-nondirectory filename))))
2673 (if (and (string-match "\\.[^.]*\\'" file)
2674 (not (eq 0 (match-beginning 0))))
2675 (substring file (+ (match-beginning 0) (if period 0 1)))
2676 (if period
2677 "")))))
2679 (defcustom make-backup-file-name-function nil
2680 "A function to use instead of the default `make-backup-file-name'.
2681 A value of nil gives the default `make-backup-file-name' behaviour.
2683 This could be buffer-local to do something special for specific
2684 files. If you define it, you may need to change `backup-file-name-p'
2685 and `file-name-sans-versions' too.
2687 See also `backup-directory-alist'."
2688 :group 'backup
2689 :type '(choice (const :tag "Default" nil)
2690 (function :tag "Your function")))
2692 (defcustom backup-directory-alist nil
2693 "Alist of filename patterns and backup directory names.
2694 Each element looks like (REGEXP . DIRECTORY). Backups of files with
2695 names matching REGEXP will be made in DIRECTORY. DIRECTORY may be
2696 relative or absolute. If it is absolute, so that all matching files
2697 are backed up into the same directory, the file names in this
2698 directory will be the full name of the file backed up with all
2699 directory separators changed to `!' to prevent clashes. This will not
2700 work correctly if your filesystem truncates the resulting name.
2702 For the common case of all backups going into one directory, the alist
2703 should contain a single element pairing \".\" with the appropriate
2704 directory name.
2706 If this variable is nil, or it fails to match a filename, the backup
2707 is made in the original file's directory.
2709 On MS-DOS filesystems without long names this variable is always
2710 ignored."
2711 :group 'backup
2712 :type '(repeat (cons (regexp :tag "Regexp matching filename")
2713 (directory :tag "Backup directory name"))))
2715 (defun normal-backup-enable-predicate (name)
2716 "Default `backup-enable-predicate' function.
2717 Checks for files in `temporary-file-directory' or
2718 `small-temporary-file-directory'."
2719 (not (or (let ((comp (compare-strings temporary-file-directory 0 nil
2720 name 0 nil)))
2721 ;; Directory is under temporary-file-directory.
2722 (and (not (eq comp t))
2723 (< comp (- (length temporary-file-directory)))))
2724 (if small-temporary-file-directory
2725 (let ((comp (compare-strings small-temporary-file-directory
2726 0 nil
2727 name 0 nil)))
2728 ;; Directory is under small-temporary-file-directory.
2729 (and (not (eq comp t))
2730 (< comp (- (length small-temporary-file-directory)))))))))
2732 (defun make-backup-file-name (file)
2733 "Create the non-numeric backup file name for FILE.
2734 Normally this will just be the file's name with `~' appended.
2735 Customization hooks are provided as follows.
2737 If the variable `make-backup-file-name-function' is non-nil, its value
2738 should be a function which will be called with FILE as its argument;
2739 the resulting name is used.
2741 Otherwise a match for FILE is sought in `backup-directory-alist'; see
2742 the documentation of that variable. If the directory for the backup
2743 doesn't exist, it is created."
2744 (if make-backup-file-name-function
2745 (funcall make-backup-file-name-function file)
2746 (if (and (eq system-type 'ms-dos)
2747 (not (msdos-long-file-names)))
2748 (let ((fn (file-name-nondirectory file)))
2749 (concat (file-name-directory file)
2750 (or (and (string-match "\\`[^.]+\\'" fn)
2751 (concat (match-string 0 fn) ".~"))
2752 (and (string-match "\\`[^.]+\\.\\(..?\\)?" fn)
2753 (concat (match-string 0 fn) "~")))))
2754 (concat (make-backup-file-name-1 file) "~"))))
2756 (defun make-backup-file-name-1 (file)
2757 "Subroutine of `make-backup-file-name' and `find-backup-file-name'."
2758 (let ((alist backup-directory-alist)
2759 elt backup-directory)
2760 (while alist
2761 (setq elt (pop alist))
2762 (if (string-match (car elt) file)
2763 (setq backup-directory (cdr elt)
2764 alist nil)))
2765 (if (and backup-directory (not (file-exists-p backup-directory)))
2766 (condition-case nil
2767 (make-directory backup-directory 'parents)
2768 (file-error (setq backup-directory nil))))
2769 (if (null backup-directory)
2770 file
2771 (if (file-name-absolute-p backup-directory)
2772 (progn
2773 (when (memq system-type '(windows-nt ms-dos cygwin))
2774 ;; Normalize DOSish file names: downcase the drive
2775 ;; letter, if any, and replace the leading "x:" with
2776 ;; "/drive_x".
2777 (or (file-name-absolute-p file)
2778 (setq file (expand-file-name file))) ; make defaults explicit
2779 ;; Replace any invalid file-name characters (for the
2780 ;; case of backing up remote files).
2781 (setq file (expand-file-name (convert-standard-filename file)))
2782 (if (eq (aref file 1) ?:)
2783 (setq file (concat "/"
2784 "drive_"
2785 (char-to-string (downcase (aref file 0)))
2786 (if (eq (aref file 2) ?/)
2788 "/")
2789 (substring file 2)))))
2790 ;; Make the name unique by substituting directory
2791 ;; separators. It may not really be worth bothering about
2792 ;; doubling `!'s in the original name...
2793 (expand-file-name
2794 (subst-char-in-string
2795 ?/ ?!
2796 (replace-regexp-in-string "!" "!!" file))
2797 backup-directory))
2798 (expand-file-name (file-name-nondirectory file)
2799 (file-name-as-directory
2800 (expand-file-name backup-directory
2801 (file-name-directory file))))))))
2803 (defun backup-file-name-p (file)
2804 "Return non-nil if FILE is a backup file name (numeric or not).
2805 This is a separate function so you can redefine it for customization.
2806 You may need to redefine `file-name-sans-versions' as well."
2807 (string-match "~\\'" file))
2809 (defvar backup-extract-version-start)
2811 ;; This is used in various files.
2812 ;; The usage of backup-extract-version-start is not very clean,
2813 ;; but I can't see a good alternative, so as of now I am leaving it alone.
2814 (defun backup-extract-version (fn)
2815 "Given the name of a numeric backup file, FN, return the backup number.
2816 Uses the free variable `backup-extract-version-start', whose value should be
2817 the index in the name where the version number begins."
2818 (if (and (string-match "[0-9]+~$" fn backup-extract-version-start)
2819 (= (match-beginning 0) backup-extract-version-start))
2820 (string-to-int (substring fn backup-extract-version-start -1))
2823 ;; I believe there is no need to alter this behavior for VMS;
2824 ;; since backup files are not made on VMS, it should not get called.
2825 (defun find-backup-file-name (fn)
2826 "Find a file name for a backup file FN, and suggestions for deletions.
2827 Value is a list whose car is the name for the backup file
2828 and whose cdr is a list of old versions to consider deleting now.
2829 If the value is nil, don't make a backup.
2830 Uses `backup-directory-alist' in the same way as does
2831 `make-backup-file-name'."
2832 (let ((handler (find-file-name-handler fn 'find-backup-file-name)))
2833 ;; Run a handler for this function so that ange-ftp can refuse to do it.
2834 (if handler
2835 (funcall handler 'find-backup-file-name fn)
2836 (if (or (eq version-control 'never)
2837 ;; We don't support numbered backups on plain MS-DOS
2838 ;; when long file names are unavailable.
2839 (and (eq system-type 'ms-dos)
2840 (not (msdos-long-file-names))))
2841 (list (make-backup-file-name fn))
2842 (let* ((basic-name (make-backup-file-name-1 fn))
2843 (base-versions (concat (file-name-nondirectory basic-name)
2844 ".~"))
2845 (backup-extract-version-start (length base-versions))
2846 (high-water-mark 0)
2847 (number-to-delete 0)
2848 possibilities deserve-versions-p versions)
2849 (condition-case ()
2850 (setq possibilities (file-name-all-completions
2851 base-versions
2852 (file-name-directory basic-name))
2853 versions (sort (mapcar #'backup-extract-version
2854 possibilities)
2855 #'<)
2856 high-water-mark (apply 'max 0 versions)
2857 deserve-versions-p (or version-control
2858 (> high-water-mark 0))
2859 number-to-delete (- (length versions)
2860 kept-old-versions
2861 kept-new-versions
2862 -1))
2863 (file-error (setq possibilities nil)))
2864 (if (not deserve-versions-p)
2865 (list (make-backup-file-name fn))
2866 (cons (format "%s.~%d~" basic-name (1+ high-water-mark))
2867 (if (and (> number-to-delete 0)
2868 ;; Delete nothing if there is overflow
2869 ;; in the number of versions to keep.
2870 (>= (+ kept-new-versions kept-old-versions -1) 0))
2871 (mapcar (lambda (n)
2872 (format "%s.~%d~" basic-name n))
2873 (let ((v (nthcdr kept-old-versions versions)))
2874 (rplacd (nthcdr (1- number-to-delete) v) ())
2875 v))))))))))
2877 (defun file-nlinks (filename)
2878 "Return number of names file FILENAME has."
2879 (car (cdr (file-attributes filename))))
2881 ;; (defun file-relative-name (filename &optional directory)
2882 ;; "Convert FILENAME to be relative to DIRECTORY (default: `default-directory').
2883 ;; This function returns a relative file name which is equivalent to FILENAME
2884 ;; when used with that default directory as the default.
2885 ;; If this is impossible (which can happen on MSDOS and Windows
2886 ;; when the file name and directory use different drive names)
2887 ;; then it returns FILENAME."
2888 ;; (save-match-data
2889 ;; (let ((fname (expand-file-name filename)))
2890 ;; (setq directory (file-name-as-directory
2891 ;; (expand-file-name (or directory default-directory))))
2892 ;; ;; On Microsoft OSes, if FILENAME and DIRECTORY have different
2893 ;; ;; drive names, they can't be relative, so return the absolute name.
2894 ;; (if (and (or (eq system-type 'ms-dos)
2895 ;; (eq system-type 'cygwin)
2896 ;; (eq system-type 'windows-nt))
2897 ;; (not (string-equal (substring fname 0 2)
2898 ;; (substring directory 0 2))))
2899 ;; filename
2900 ;; (let ((ancestor ".")
2901 ;; (fname-dir (file-name-as-directory fname)))
2902 ;; (while (and (not (string-match (concat "^" (regexp-quote directory)) fname-dir))
2903 ;; (not (string-match (concat "^" (regexp-quote directory)) fname)))
2904 ;; (setq directory (file-name-directory (substring directory 0 -1))
2905 ;; ancestor (if (equal ancestor ".")
2906 ;; ".."
2907 ;; (concat "../" ancestor))))
2908 ;; ;; Now ancestor is empty, or .., or ../.., etc.
2909 ;; (if (string-match (concat "^" (regexp-quote directory)) fname)
2910 ;; ;; We matched within FNAME's directory part.
2911 ;; ;; Add the rest of FNAME onto ANCESTOR.
2912 ;; (let ((rest (substring fname (match-end 0))))
2913 ;; (if (and (equal ancestor ".")
2914 ;; (not (equal rest "")))
2915 ;; ;; But don't bother with ANCESTOR if it would give us `./'.
2916 ;; rest
2917 ;; (concat (file-name-as-directory ancestor) rest)))
2918 ;; ;; We matched FNAME's directory equivalent.
2919 ;; ancestor))))))
2921 (defun file-relative-name (filename &optional directory)
2922 "Convert FILENAME to be relative to DIRECTORY (default: `default-directory').
2923 This function returns a relative file name which is equivalent to FILENAME
2924 when used with that default directory as the default.
2925 If FILENAME and DIRECTORY lie on different machines or on different drives
2926 on a DOS/Windows machine, it returns FILENAME on expanded form."
2927 (save-match-data
2928 (setq directory
2929 (file-name-as-directory (expand-file-name (or directory
2930 default-directory))))
2931 (setq filename (expand-file-name filename))
2932 (let ((fremote (file-remote-p filename))
2933 (dremote (file-remote-p directory)))
2934 (if ;; Conditions for separate trees
2936 ;; Test for different drives on DOS/Windows
2937 (and
2938 ;; Should `cygwin' really be included here? --stef
2939 (memq system-type '(ms-dos cygwin windows-nt))
2940 (not (eq t (compare-strings filename 0 2 directory 0 2))))
2941 ;; Test for different remote file system identification
2942 (not (equal fremote dremote)))
2943 filename
2944 (let ((ancestor ".")
2945 (filename-dir (file-name-as-directory filename)))
2946 (while (not
2948 (eq t (compare-strings filename-dir nil (length directory)
2949 directory nil nil case-fold-search))
2950 (eq t (compare-strings filename nil (length directory)
2951 directory nil nil case-fold-search))))
2952 (setq directory (file-name-directory (substring directory 0 -1))
2953 ancestor (if (equal ancestor ".")
2954 ".."
2955 (concat "../" ancestor))))
2956 ;; Now ancestor is empty, or .., or ../.., etc.
2957 (if (eq t (compare-strings filename nil (length directory)
2958 directory nil nil case-fold-search))
2959 ;; We matched within FILENAME's directory part.
2960 ;; Add the rest of FILENAME onto ANCESTOR.
2961 (let ((rest (substring filename (length directory))))
2962 (if (and (equal ancestor ".") (not (equal rest "")))
2963 ;; But don't bother with ANCESTOR if it would give us `./'.
2964 rest
2965 (concat (file-name-as-directory ancestor) rest)))
2966 ;; We matched FILENAME's directory equivalent.
2967 ancestor))))))
2969 (defun save-buffer (&optional args)
2970 "Save current buffer in visited file if modified. Versions described below.
2971 By default, makes the previous version into a backup file
2972 if previously requested or if this is the first save.
2973 With 1 \\[universal-argument], marks this version
2974 to become a backup when the next save is done.
2975 With 2 \\[universal-argument]'s,
2976 unconditionally makes the previous version into a backup file.
2977 With 3 \\[universal-argument]'s, marks this version
2978 to become a backup when the next save is done,
2979 and unconditionally makes the previous version into a backup file.
2981 With argument of 0, never make the previous version into a backup file.
2983 If a file's name is FOO, the names of its numbered backup versions are
2984 FOO.~i~ for various integers i. A non-numbered backup file is called FOO~.
2985 Numeric backups (rather than FOO~) will be made if value of
2986 `version-control' is not the atom `never' and either there are already
2987 numeric versions of the file being backed up, or `version-control' is
2988 non-nil.
2989 We don't want excessive versions piling up, so there are variables
2990 `kept-old-versions', which tells Emacs how many oldest versions to keep,
2991 and `kept-new-versions', which tells how many newest versions to keep.
2992 Defaults are 2 old versions and 2 new.
2993 `dired-kept-versions' controls dired's clean-directory (.) command.
2994 If `delete-old-versions' is nil, system will query user
2995 before trimming versions. Otherwise it does it silently.
2997 If `vc-make-backup-files' is nil, which is the default,
2998 no backup files are made for files managed by version control.
2999 (This is because the version control system itself records previous versions.)
3001 See the subroutine `basic-save-buffer' for more information."
3002 (interactive "p")
3003 (let ((modp (buffer-modified-p))
3004 (large (> (buffer-size) 50000))
3005 (make-backup-files (or (and make-backup-files (not (eq args 0)))
3006 (memq args '(16 64)))))
3007 (and modp (memq args '(16 64)) (setq buffer-backed-up nil))
3008 (if (and modp large (buffer-file-name))
3009 (message "Saving file %s..." (buffer-file-name)))
3010 (basic-save-buffer)
3011 (and modp (memq args '(4 64)) (setq buffer-backed-up nil))))
3013 (defun delete-auto-save-file-if-necessary (&optional force)
3014 "Delete auto-save file for current buffer if `delete-auto-save-files' is t.
3015 Normally delete only if the file was written by this Emacs since
3016 the last real save, but optional arg FORCE non-nil means delete anyway."
3017 (and buffer-auto-save-file-name delete-auto-save-files
3018 (not (string= buffer-file-name buffer-auto-save-file-name))
3019 (or force (recent-auto-save-p))
3020 (progn
3021 (condition-case ()
3022 (delete-file buffer-auto-save-file-name)
3023 (file-error nil))
3024 (set-buffer-auto-saved))))
3026 (defvar auto-save-hook nil
3027 "Normal hook run just before auto-saving.")
3029 (defcustom before-save-hook nil
3030 "Normal hook that is run before a buffer is saved to its file."
3031 :options '(copyright-update time-stamp)
3032 :type 'hook
3033 :group 'files)
3035 (defcustom after-save-hook nil
3036 "Normal hook that is run after a buffer is saved to its file."
3037 :options '(executable-make-buffer-file-executable-if-script-p)
3038 :type 'hook
3039 :group 'files)
3041 (defvar save-buffer-coding-system nil
3042 "If non-nil, use this coding system for saving the buffer.
3043 More precisely, use this coding system in place of the
3044 value of `buffer-file-coding-system', when saving the buffer.
3045 Calling `write-region' for any purpose other than saving the buffer
3046 will still use `buffer-file-coding-system'; this variable has no effect
3047 in such cases.")
3049 (make-variable-buffer-local 'save-buffer-coding-system)
3050 (put 'save-buffer-coding-system 'permanent-local t)
3052 (defun basic-save-buffer ()
3053 "Save the current buffer in its visited file, if it has been modified.
3054 The hooks `write-contents-functions' and `write-file-functions' get a chance
3055 to do the job of saving; if they do not, then the buffer is saved in
3056 the visited file file in the usual way.
3057 Before and after saving the buffer, this function runs
3058 `before-save-hook' and `after-save-hook', respectively."
3059 (interactive)
3060 (save-current-buffer
3061 ;; In an indirect buffer, save its base buffer instead.
3062 (if (buffer-base-buffer)
3063 (set-buffer (buffer-base-buffer)))
3064 (if (buffer-modified-p)
3065 (let ((recent-save (recent-auto-save-p))
3066 setmodes)
3067 ;; On VMS, rename file and buffer to get rid of version number.
3068 (if (and (eq system-type 'vax-vms)
3069 (not (string= buffer-file-name
3070 (file-name-sans-versions buffer-file-name))))
3071 (let (buffer-new-name)
3072 ;; Strip VMS version number before save.
3073 (setq buffer-file-name
3074 (file-name-sans-versions buffer-file-name))
3075 ;; Construct a (unique) buffer name to correspond.
3076 (let ((buf (create-file-buffer (downcase buffer-file-name))))
3077 (setq buffer-new-name (buffer-name buf))
3078 (kill-buffer buf))
3079 (rename-buffer buffer-new-name)))
3080 ;; If buffer has no file name, ask user for one.
3081 (or buffer-file-name
3082 (let ((filename
3083 (expand-file-name
3084 (read-file-name "File to save in: ") nil)))
3085 (and (file-exists-p filename)
3086 (or (y-or-n-p (format "File `%s' exists; overwrite? "
3087 filename))
3088 (error "Canceled")))
3089 (set-visited-file-name filename)))
3090 (or (verify-visited-file-modtime (current-buffer))
3091 (not (file-exists-p buffer-file-name))
3092 (yes-or-no-p
3093 (format "%s has changed since visited or saved. Save anyway? "
3094 (file-name-nondirectory buffer-file-name)))
3095 (error "Save not confirmed"))
3096 (save-restriction
3097 (widen)
3098 (save-excursion
3099 (and (> (point-max) (point-min))
3100 (not find-file-literally)
3101 (/= (char-after (1- (point-max))) ?\n)
3102 (not (and (eq selective-display t)
3103 (= (char-after (1- (point-max))) ?\r)))
3104 (or (eq require-final-newline t)
3105 (and require-final-newline
3106 (y-or-n-p
3107 (format "Buffer %s does not end in newline. Add one? "
3108 (buffer-name)))))
3109 (save-excursion
3110 (goto-char (point-max))
3111 (insert ?\n))))
3112 ;; Support VC version backups.
3113 (vc-before-save)
3114 (run-hooks 'before-save-hook)
3115 (or (run-hook-with-args-until-success 'write-contents-functions)
3116 (run-hook-with-args-until-success 'local-write-file-hooks)
3117 (run-hook-with-args-until-success 'write-file-functions)
3118 ;; If a hook returned t, file is already "written".
3119 ;; Otherwise, write it the usual way now.
3120 (setq setmodes (basic-save-buffer-1)))
3121 ;; Now we have saved the current buffer. Let's make sure
3122 ;; that buffer-file-coding-system is fixed to what
3123 ;; actually used for saving by binding it locally.
3124 (if save-buffer-coding-system
3125 (setq save-buffer-coding-system last-coding-system-used)
3126 (setq buffer-file-coding-system last-coding-system-used))
3127 (setq buffer-file-number
3128 (nthcdr 10 (file-attributes buffer-file-name)))
3129 (if setmodes
3130 (condition-case ()
3131 (set-file-modes buffer-file-name (car setmodes))
3132 (error nil))))
3133 ;; If the auto-save file was recent before this command,
3134 ;; delete it now.
3135 (delete-auto-save-file-if-necessary recent-save)
3136 ;; Support VC `implicit' locking.
3137 (vc-after-save)
3138 (run-hooks 'after-save-hook))
3139 (message "(No changes need to be saved)"))))
3141 ;; This does the "real job" of writing a buffer into its visited file
3142 ;; and making a backup file. This is what is normally done
3143 ;; but inhibited if one of write-file-functions returns non-nil.
3144 ;; It returns a value (MODES . BACKUPNAME), like backup-buffer.
3145 (defun basic-save-buffer-1 ()
3146 (if save-buffer-coding-system
3147 (let ((coding-system-for-write save-buffer-coding-system))
3148 (basic-save-buffer-2))
3149 (basic-save-buffer-2)))
3151 ;; This returns a value (MODES . BACKUPNAME), like backup-buffer.
3152 (defun basic-save-buffer-2 ()
3153 (let (tempsetmodes setmodes)
3154 (if (not (file-writable-p buffer-file-name))
3155 (let ((dir (file-name-directory buffer-file-name)))
3156 (if (not (file-directory-p dir))
3157 (if (file-exists-p dir)
3158 (error "%s is not a directory" dir)
3159 (error "%s: no such directory" buffer-file-name))
3160 (if (not (file-exists-p buffer-file-name))
3161 (error "Directory %s write-protected" dir)
3162 (if (yes-or-no-p
3163 (format "File %s is write-protected; try to save anyway? "
3164 (file-name-nondirectory
3165 buffer-file-name)))
3166 (setq tempsetmodes t)
3167 (error "Attempt to save to a file which you aren't allowed to write"))))))
3168 (or buffer-backed-up
3169 (setq setmodes (backup-buffer)))
3170 (let ((dir (file-name-directory buffer-file-name)))
3171 (if (and file-precious-flag
3172 (file-writable-p dir))
3173 ;; If file is precious, write temp name, then rename it.
3174 ;; This requires write access to the containing dir,
3175 ;; which is why we don't try it if we don't have that access.
3176 (let ((realname buffer-file-name)
3177 tempname nogood i succeed
3178 (old-modtime (visited-file-modtime)))
3179 (setq i 0)
3180 (setq nogood t)
3181 ;; Find the temporary name to write under.
3182 (while nogood
3183 (setq tempname (format
3184 (if (and (eq system-type 'ms-dos)
3185 (not (msdos-long-file-names)))
3186 "%s#%d.tm#" ; MSDOS limits files to 8+3
3187 (if (memq system-type '(vax-vms axp-vms))
3188 "%s$tmp$%d"
3189 "%s#tmp#%d"))
3190 dir i))
3191 (setq nogood (file-exists-p tempname))
3192 (setq i (1+ i)))
3193 (unwind-protect
3194 (progn (clear-visited-file-modtime)
3195 (write-region (point-min) (point-max)
3196 tempname nil realname
3197 buffer-file-truename)
3198 (setq succeed t))
3199 ;; If writing the temp file fails,
3200 ;; delete the temp file.
3201 (or succeed
3202 (progn
3203 (condition-case nil
3204 (delete-file tempname)
3205 (file-error nil))
3206 (set-visited-file-modtime old-modtime))))
3207 ;; Since we have created an entirely new file
3208 ;; and renamed it, make sure it gets the
3209 ;; right permission bits set.
3210 (setq setmodes (or setmodes (cons (file-modes buffer-file-name)
3211 buffer-file-name)))
3212 ;; We succeeded in writing the temp file,
3213 ;; so rename it.
3214 (rename-file tempname buffer-file-name t))
3215 ;; If file not writable, see if we can make it writable
3216 ;; temporarily while we write it.
3217 ;; But no need to do so if we have just backed it up
3218 ;; (setmodes is set) because that says we're superseding.
3219 (cond ((and tempsetmodes (not setmodes))
3220 ;; Change the mode back, after writing.
3221 (setq setmodes (cons (file-modes buffer-file-name) buffer-file-name))
3222 (set-file-modes buffer-file-name (logior (car setmodes) 128))))
3223 (let (success)
3224 (unwind-protect
3225 (progn
3226 (write-region (point-min) (point-max)
3227 buffer-file-name nil t buffer-file-truename)
3228 (setq success t))
3229 ;; If we get an error writing the new file, and we made
3230 ;; the backup by renaming, undo the backing-up.
3231 (and setmodes (not success)
3232 (rename-file (cdr setmodes) buffer-file-name))))))
3233 setmodes))
3235 (defun diff-buffer-with-file (&optional buffer)
3236 "View the differences between BUFFER and its associated file.
3237 This requires the external program `diff' to be in your `exec-path'."
3238 (interactive "bBuffer: ")
3239 (with-current-buffer (get-buffer (or buffer (current-buffer)))
3240 (if (and buffer-file-name
3241 (file-exists-p buffer-file-name))
3242 (let ((tempfile (make-temp-file "buffer-content-")))
3243 (unwind-protect
3244 (save-restriction
3245 (widen)
3246 (write-region (point-min) (point-max) tempfile nil 'nomessage)
3247 (diff buffer-file-name tempfile nil t)
3248 (sit-for 0))
3249 (when (file-exists-p tempfile)
3250 (delete-file tempfile))))
3251 (message "Buffer %s has no associated file on disc" (buffer-name))
3252 ;; Display that message for 1 second so that user can read it
3253 ;; in the minibuffer.
3254 (sit-for 1)))
3255 ;; return always nil, so that save-buffers-kill-emacs will not move
3256 ;; over to the next unsaved buffer when calling `d'.
3257 nil)
3259 (defvar save-some-buffers-action-alist
3260 '((?\C-r
3261 (lambda (buf)
3262 (view-buffer buf
3263 (lambda (ignore)
3264 (exit-recursive-edit)))
3265 (recursive-edit)
3266 ;; Return nil to ask about BUF again.
3267 nil)
3268 "display the current buffer")
3269 (?d diff-buffer-with-file
3270 "show difference to last saved version"))
3271 "ACTION-ALIST argument used in call to `map-y-or-n-p'.")
3272 (put 'save-some-buffers-action-alist 'risky-local-variable t)
3274 (defun save-some-buffers (&optional arg pred)
3275 "Save some modified file-visiting buffers. Asks user about each one.
3276 You can answer `y' to save, `n' not to save, `C-r' to look at the
3277 buffer in question with `view-buffer' before deciding or `d' to
3278 view the differences using `diff-buffer-to-file'.
3280 Optional argument (the prefix) non-nil means save all with no questions.
3281 Optional second argument PRED determines which buffers are considered:
3282 If PRED is nil, all the file-visiting buffers are considered.
3283 If PRED is t, then certain non-file buffers will also be considered.
3284 If PRED is a zero-argument function, it indicates for each buffer whether
3285 to consider it or not when called with that buffer current.
3287 See `save-some-buffers-action-alist' if you want to
3288 change the additional actions you can take on files."
3289 (interactive "P")
3290 (save-window-excursion
3291 (let* ((queried nil)
3292 (files-done
3293 (map-y-or-n-p
3294 (function
3295 (lambda (buffer)
3296 (and (buffer-modified-p buffer)
3297 (not (buffer-base-buffer buffer))
3299 (buffer-file-name buffer)
3300 (and pred
3301 (progn
3302 (set-buffer buffer)
3303 (and buffer-offer-save (> (buffer-size) 0)))))
3304 (or (not (functionp pred))
3305 (with-current-buffer buffer (funcall pred)))
3306 (if arg
3308 (setq queried t)
3309 (if (buffer-file-name buffer)
3310 (format "Save file %s? "
3311 (buffer-file-name buffer))
3312 (format "Save buffer %s? "
3313 (buffer-name buffer)))))))
3314 (function
3315 (lambda (buffer)
3316 (set-buffer buffer)
3317 (save-buffer)))
3318 (buffer-list)
3319 '("buffer" "buffers" "save")
3320 save-some-buffers-action-alist))
3321 (abbrevs-done
3322 (and save-abbrevs abbrevs-changed
3323 (progn
3324 (if (or arg
3325 (eq save-abbrevs 'silently)
3326 (y-or-n-p (format "Save abbrevs in %s? "
3327 abbrev-file-name)))
3328 (write-abbrev-file nil))
3329 ;; Don't keep bothering user if he says no.
3330 (setq abbrevs-changed nil)
3331 t))))
3332 (or queried (> files-done 0) abbrevs-done
3333 (message "(No files need saving)")))))
3335 (defun not-modified (&optional arg)
3336 "Mark current buffer as unmodified, not needing to be saved.
3337 With prefix arg, mark buffer as modified, so \\[save-buffer] will save.
3339 It is not a good idea to use this function in Lisp programs, because it
3340 prints a message in the minibuffer. Instead, use `set-buffer-modified-p'."
3341 (interactive "P")
3342 (message (if arg "Modification-flag set"
3343 "Modification-flag cleared"))
3344 (set-buffer-modified-p arg))
3346 (defun toggle-read-only (&optional arg)
3347 "Change whether this buffer is visiting its file read-only.
3348 With arg, set read-only iff arg is positive.
3349 If visiting file read-only and `view-read-only' is non-nil, enter view mode."
3350 (interactive "P")
3351 (if (and arg
3352 (if (> (prefix-numeric-value arg) 0) buffer-read-only
3353 (not buffer-read-only))) ; If buffer-read-only is set correctly,
3354 nil ; do nothing.
3355 ;; Toggle.
3356 (cond
3357 ((and buffer-read-only view-mode)
3358 (View-exit-and-edit)
3359 (make-local-variable 'view-read-only)
3360 (setq view-read-only t)) ; Must leave view mode.
3361 ((and (not buffer-read-only) view-read-only
3362 ;; If view-mode is already active, `view-mode-enter' is a nop.
3363 (not view-mode)
3364 (not (eq (get major-mode 'mode-class) 'special)))
3365 (view-mode-enter))
3366 (t (setq buffer-read-only (not buffer-read-only))
3367 (force-mode-line-update)))
3368 (if (vc-backend buffer-file-name)
3369 (message (substitute-command-keys
3370 (concat "File is under version-control; "
3371 "use \\[vc-next-action] to check in/out"))))))
3373 (defun insert-file (filename)
3374 "Insert contents of file FILENAME into buffer after point.
3375 Set mark after the inserted text.
3377 This function is meant for the user to run interactively.
3378 Don't call it from programs! Use `insert-file-contents' instead.
3379 \(Its calling sequence is different; see its documentation)."
3380 (interactive "*fInsert file: ")
3381 (insert-file-1 filename #'insert-file-contents))
3383 (defun append-to-file (start end filename)
3384 "Append the contents of the region to the end of file FILENAME.
3385 When called from a function, expects three arguments,
3386 START, END and FILENAME. START and END are buffer positions
3387 saying what text to write."
3388 (interactive "r\nFAppend to file: ")
3389 (write-region start end filename t))
3391 (defun file-newest-backup (filename)
3392 "Return most recent backup file for FILENAME or nil if no backups exist."
3393 ;; `make-backup-file-name' will get us the right directory for
3394 ;; ordinary or numeric backups. It might create a directory for
3395 ;; backups as a side-effect, according to `backup-directory-alist'.
3396 (let* ((filename (file-name-sans-versions
3397 (make-backup-file-name (expand-file-name filename))))
3398 (file (file-name-nondirectory filename))
3399 (dir (file-name-directory filename))
3400 (comp (file-name-all-completions file dir))
3401 (newest nil)
3402 tem)
3403 (while comp
3404 (setq tem (pop comp))
3405 (cond ((and (backup-file-name-p tem)
3406 (string= (file-name-sans-versions tem) file))
3407 (setq tem (concat dir tem))
3408 (if (or (null newest)
3409 (file-newer-than-file-p tem newest))
3410 (setq newest tem)))))
3411 newest))
3413 (defun rename-uniquely ()
3414 "Rename current buffer to a similar name not already taken.
3415 This function is useful for creating multiple shell process buffers
3416 or multiple mail buffers, etc."
3417 (interactive)
3418 (save-match-data
3419 (let ((base-name (buffer-name)))
3420 (and (string-match "<[0-9]+>\\'" base-name)
3421 (not (and buffer-file-name
3422 (string= base-name
3423 (file-name-nondirectory buffer-file-name))))
3424 ;; If the existing buffer name has a <NNN>,
3425 ;; which isn't part of the file name (if any),
3426 ;; then get rid of that.
3427 (setq base-name (substring base-name 0 (match-beginning 0))))
3428 (rename-buffer (generate-new-buffer-name base-name))
3429 (force-mode-line-update))))
3431 (defun make-directory (dir &optional parents)
3432 "Create the directory DIR and any nonexistent parent dirs.
3433 Interactively, the default choice of directory to create
3434 is the current default directory for file names.
3435 That is useful when you have visited a file in a nonexistent directory.
3437 Noninteractively, the second (optional) argument PARENTS says whether
3438 to create parent directories if they don't exist. Interactively,
3439 this happens by default."
3440 (interactive
3441 (list (read-file-name "Make directory: " default-directory default-directory
3442 nil nil)
3444 ;; If default-directory is a remote directory,
3445 ;; make sure we find its make-directory handler.
3446 (setq dir (expand-file-name dir))
3447 (let ((handler (find-file-name-handler dir 'make-directory)))
3448 (if handler
3449 (funcall handler 'make-directory dir parents)
3450 (if (not parents)
3451 (make-directory-internal dir)
3452 (let ((dir (directory-file-name (expand-file-name dir)))
3453 create-list)
3454 (while (not (file-exists-p dir))
3455 (setq create-list (cons dir create-list)
3456 dir (directory-file-name (file-name-directory dir))))
3457 (while create-list
3458 (make-directory-internal (car create-list))
3459 (setq create-list (cdr create-list))))))))
3461 (put 'revert-buffer-function 'permanent-local t)
3462 (defvar revert-buffer-function nil
3463 "Function to use to revert this buffer, or nil to do the default.
3464 The function receives two arguments IGNORE-AUTO and NOCONFIRM,
3465 which are the arguments that `revert-buffer' received.")
3467 (put 'revert-buffer-insert-file-contents-function 'permanent-local t)
3468 (defvar revert-buffer-insert-file-contents-function nil
3469 "Function to use to insert contents when reverting this buffer.
3470 Gets two args, first the nominal file name to use,
3471 and second, t if reading the auto-save file.
3473 The function you specify is responsible for updating (or preserving) point.")
3475 (defvar buffer-stale-function nil
3476 "Function to check whether a non-file buffer needs reverting.
3477 This should be a function with one optional argument NOCONFIRM.
3478 Auto Revert Mode sets NOCONFIRM to t. The function should return
3479 non-nil if the buffer should be reverted. A return value of
3480 `fast' means that the need for reverting was not checked, but
3481 that reverting the buffer is fast. The buffer is current when
3482 this function is called.
3484 The idea behind the NOCONFIRM argument is that it should be
3485 non-nil if the buffer is going to be reverted without asking the
3486 user. In such situations, one has to be careful with potentially
3487 time consuming operations.
3489 For more information on how this variable is used by Auto Revert mode,
3490 see Info node `(emacs-xtra)Supporting additional buffers'.")
3492 (defvar before-revert-hook nil
3493 "Normal hook for `revert-buffer' to run before reverting.
3494 If `revert-buffer-function' is used to override the normal revert
3495 mechanism, this hook is not used.")
3497 (defvar after-revert-hook nil
3498 "Normal hook for `revert-buffer' to run after reverting.
3499 Note that the hook value that it runs is the value that was in effect
3500 before reverting; that makes a difference if you have buffer-local
3501 hook functions.
3503 If `revert-buffer-function' is used to override the normal revert
3504 mechanism, this hook is not used.")
3506 (defvar revert-buffer-internal-hook)
3508 (defun revert-buffer (&optional ignore-auto noconfirm preserve-modes)
3509 "Replace current buffer text with the text of the visited file on disk.
3510 This undoes all changes since the file was visited or saved.
3511 With a prefix argument, offer to revert from latest auto-save file, if
3512 that is more recent than the visited file.
3514 This command also works for special buffers that contain text which
3515 doesn't come from a file, but reflects some other data base instead:
3516 for example, Dired buffers and `buffer-list' buffers. In these cases,
3517 it reconstructs the buffer contents from the appropriate data base.
3519 When called from Lisp, the first argument is IGNORE-AUTO; only offer
3520 to revert from the auto-save file when this is nil. Note that the
3521 sense of this argument is the reverse of the prefix argument, for the
3522 sake of backward compatibility. IGNORE-AUTO is optional, defaulting
3523 to nil.
3525 Optional second argument NOCONFIRM means don't ask for confirmation at
3526 all. (The local variable `revert-without-query', if non-nil, prevents
3527 confirmation.)
3529 Optional third argument PRESERVE-MODES non-nil means don't alter
3530 the files modes. Normally we reinitialize them using `normal-mode'.
3532 If the value of `revert-buffer-function' is non-nil, it is called to
3533 do all the work for this command. Otherwise, the hooks
3534 `before-revert-hook' and `after-revert-hook' are run at the beginning
3535 and the end, and if `revert-buffer-insert-file-contents-function' is
3536 non-nil, it is called instead of rereading visited file contents."
3538 ;; I admit it's odd to reverse the sense of the prefix argument, but
3539 ;; there is a lot of code out there which assumes that the first
3540 ;; argument should be t to avoid consulting the auto-save file, and
3541 ;; there's no straightforward way to encourage authors to notice a
3542 ;; reversal of the argument sense. So I'm just changing the user
3543 ;; interface, but leaving the programmatic interface the same.
3544 (interactive (list (not current-prefix-arg)))
3545 (if revert-buffer-function
3546 (funcall revert-buffer-function ignore-auto noconfirm)
3547 (let* ((auto-save-p (and (not ignore-auto)
3548 (recent-auto-save-p)
3549 buffer-auto-save-file-name
3550 (file-readable-p buffer-auto-save-file-name)
3551 (y-or-n-p
3552 "Buffer has been auto-saved recently. Revert from auto-save file? ")))
3553 (file-name (if auto-save-p
3554 buffer-auto-save-file-name
3555 buffer-file-name)))
3556 (cond ((null file-name)
3557 (error "Buffer does not seem to be associated with any file"))
3558 ((or noconfirm
3559 (and (not (buffer-modified-p))
3560 (let ((tail revert-without-query)
3561 (found nil))
3562 (while tail
3563 (if (string-match (car tail) file-name)
3564 (setq found t))
3565 (setq tail (cdr tail)))
3566 found))
3567 (yes-or-no-p (format "Revert buffer from file %s? "
3568 file-name)))
3569 (run-hooks 'before-revert-hook)
3570 ;; If file was backed up but has changed since,
3571 ;; we shd make another backup.
3572 (and (not auto-save-p)
3573 (not (verify-visited-file-modtime (current-buffer)))
3574 (setq buffer-backed-up nil))
3575 ;; Get rid of all undo records for this buffer.
3576 (or (eq buffer-undo-list t)
3577 (setq buffer-undo-list nil))
3578 ;; Effectively copy the after-revert-hook status,
3579 ;; since after-find-file will clobber it.
3580 (let ((global-hook (default-value 'after-revert-hook))
3581 (local-hook-p (local-variable-p 'after-revert-hook))
3582 (local-hook (and (local-variable-p 'after-revert-hook)
3583 after-revert-hook)))
3584 (let (buffer-read-only
3585 ;; Don't make undo records for the reversion.
3586 (buffer-undo-list t))
3587 (if revert-buffer-insert-file-contents-function
3588 (funcall revert-buffer-insert-file-contents-function
3589 file-name auto-save-p)
3590 (if (not (file-exists-p file-name))
3591 (error (if buffer-file-number
3592 "File %s no longer exists!"
3593 "Cannot revert nonexistent file %s")
3594 file-name))
3595 ;; Bind buffer-file-name to nil
3596 ;; so that we don't try to lock the file.
3597 (let ((buffer-file-name nil))
3598 (or auto-save-p
3599 (unlock-buffer)))
3600 (widen)
3601 (let ((coding-system-for-read
3602 ;; Auto-saved file shoule be read without
3603 ;; any code conversion.
3604 (if auto-save-p 'emacs-mule-unix
3605 (or coding-system-for-read
3606 buffer-file-coding-system))))
3607 ;; This force after-insert-file-set-coding
3608 ;; (called from insert-file-contents) to set
3609 ;; buffer-file-coding-system to a proper value.
3610 (kill-local-variable 'buffer-file-coding-system)
3612 ;; Note that this preserves point in an intelligent way.
3613 (if preserve-modes
3614 (let ((buffer-file-format buffer-file-format))
3615 (insert-file-contents file-name (not auto-save-p)
3616 nil nil t))
3617 (insert-file-contents file-name (not auto-save-p)
3618 nil nil t)))))
3619 ;; Recompute the truename in case changes in symlinks
3620 ;; have changed the truename.
3621 (setq buffer-file-truename
3622 (abbreviate-file-name (file-truename buffer-file-name)))
3623 (after-find-file nil nil t t preserve-modes)
3624 ;; Run after-revert-hook as it was before we reverted.
3625 (setq-default revert-buffer-internal-hook global-hook)
3626 (if local-hook-p
3627 (set (make-local-variable 'revert-buffer-internal-hook)
3628 local-hook)
3629 (kill-local-variable 'revert-buffer-internal-hook))
3630 (run-hooks 'revert-buffer-internal-hook))
3631 t)))))
3633 (defun recover-this-file ()
3634 "Recover the visited file--get contents from its last auto-save file."
3635 (interactive)
3636 (recover-file buffer-file-name))
3638 (defun recover-file (file)
3639 "Visit file FILE, but get contents from its last auto-save file."
3640 ;; Actually putting the file name in the minibuffer should be used
3641 ;; only rarely.
3642 ;; Not just because users often use the default.
3643 (interactive "FRecover file: ")
3644 (setq file (expand-file-name file))
3645 (if (auto-save-file-name-p (file-name-nondirectory file))
3646 (error "%s is an auto-save file" (abbreviate-file-name file)))
3647 (let ((file-name (let ((buffer-file-name file))
3648 (make-auto-save-file-name))))
3649 (cond ((if (file-exists-p file)
3650 (not (file-newer-than-file-p file-name file))
3651 (not (file-exists-p file-name)))
3652 (error "Auto-save file %s not current"
3653 (abbreviate-file-name file-name)))
3654 ((save-window-excursion
3655 (with-output-to-temp-buffer "*Directory*"
3656 (buffer-disable-undo standard-output)
3657 (save-excursion
3658 (let ((switches dired-listing-switches))
3659 (if (file-symlink-p file)
3660 (setq switches (concat switches "L")))
3661 (set-buffer standard-output)
3662 ;; Use insert-directory-safely, not insert-directory,
3663 ;; because these files might not exist. In particular,
3664 ;; FILE might not exist if the auto-save file was for
3665 ;; a buffer that didn't visit a file, such as "*mail*".
3666 ;; The code in v20.x called `ls' directly, so we need
3667 ;; to emulate what `ls' did in that case.
3668 (insert-directory-safely file switches)
3669 (insert-directory-safely file-name switches))))
3670 (yes-or-no-p (format "Recover auto save file %s? " file-name)))
3671 (switch-to-buffer (find-file-noselect file t))
3672 (let ((buffer-read-only nil)
3673 ;; Keep the current buffer-file-coding-system.
3674 (coding-system buffer-file-coding-system)
3675 ;; Auto-saved file shoule be read with special coding.
3676 (coding-system-for-read 'auto-save-coding))
3677 (erase-buffer)
3678 (insert-file-contents file-name nil)
3679 (set-buffer-file-coding-system coding-system))
3680 (after-find-file nil nil t))
3681 (t (error "Recover-file cancelled")))))
3683 (defun recover-session ()
3684 "Recover auto save files from a previous Emacs session.
3685 This command first displays a Dired buffer showing you the
3686 previous sessions that you could recover from.
3687 To choose one, move point to the proper line and then type C-c C-c.
3688 Then you'll be asked about a number of files to recover."
3689 (interactive)
3690 (if (null auto-save-list-file-prefix)
3691 (error "You set `auto-save-list-file-prefix' to disable making session files"))
3692 (let ((dir (file-name-directory auto-save-list-file-prefix)))
3693 (unless (file-directory-p dir)
3694 (make-directory dir t))
3695 (unless (directory-files dir nil
3696 (concat "\\`" (regexp-quote
3697 (file-name-nondirectory
3698 auto-save-list-file-prefix)))
3700 (error "No previous sessions to recover")))
3701 (let ((ls-lisp-support-shell-wildcards t))
3702 (dired (concat auto-save-list-file-prefix "*")
3703 (concat dired-listing-switches "t")))
3704 (save-excursion
3705 (goto-char (point-min))
3706 (or (looking-at " Move to the session you want to recover,")
3707 (let ((inhibit-read-only t))
3708 ;; Each line starts with a space
3709 ;; so that Font Lock mode won't highlight the first character.
3710 (insert " Move to the session you want to recover,\n"
3711 " then type C-c C-c to select it.\n\n"
3712 " You can also delete some of these files;\n"
3713 " type d on a line to mark that file for deletion.\n\n"))))
3714 (use-local-map (nconc (make-sparse-keymap) (current-local-map)))
3715 (define-key (current-local-map) "\C-c\C-c" 'recover-session-finish))
3717 (defun recover-session-finish ()
3718 "Choose one saved session to recover auto-save files from.
3719 This command is used in the special Dired buffer created by
3720 \\[recover-session]."
3721 (interactive)
3722 ;; Get the name of the session file to recover from.
3723 (let ((file (dired-get-filename))
3724 files
3725 (buffer (get-buffer-create " *recover*")))
3726 (dired-unmark 1)
3727 (dired-do-flagged-delete t)
3728 (unwind-protect
3729 (save-excursion
3730 ;; Read in the auto-save-list file.
3731 (set-buffer buffer)
3732 (erase-buffer)
3733 (insert-file-contents file)
3734 ;; Loop thru the text of that file
3735 ;; and get out the names of the files to recover.
3736 (while (not (eobp))
3737 (let (thisfile autofile)
3738 (if (eolp)
3739 ;; This is a pair of lines for a non-file-visiting buffer.
3740 ;; Get the auto-save file name and manufacture
3741 ;; a "visited file name" from that.
3742 (progn
3743 (forward-line 1)
3744 ;; If there is no auto-save file name, the
3745 ;; auto-save-list file is probably corrupted.
3746 (unless (eolp)
3747 (setq autofile
3748 (buffer-substring-no-properties
3749 (point)
3750 (save-excursion
3751 (end-of-line)
3752 (point))))
3753 (setq thisfile
3754 (expand-file-name
3755 (substring
3756 (file-name-nondirectory autofile)
3757 1 -1)
3758 (file-name-directory autofile))))
3759 (forward-line 1))
3760 ;; This pair of lines is a file-visiting
3761 ;; buffer. Use the visited file name.
3762 (progn
3763 (setq thisfile
3764 (buffer-substring-no-properties
3765 (point) (progn (end-of-line) (point))))
3766 (forward-line 1)
3767 (setq autofile
3768 (buffer-substring-no-properties
3769 (point) (progn (end-of-line) (point))))
3770 (forward-line 1)))
3771 ;; Ignore a file if its auto-save file does not exist now.
3772 (if (and autofile (file-exists-p autofile))
3773 (setq files (cons thisfile files)))))
3774 (setq files (nreverse files))
3775 ;; The file contains a pair of line for each auto-saved buffer.
3776 ;; The first line of the pair contains the visited file name
3777 ;; or is empty if the buffer was not visiting a file.
3778 ;; The second line is the auto-save file name.
3779 (if files
3780 (map-y-or-n-p "Recover %s? "
3781 (lambda (file)
3782 (condition-case nil
3783 (save-excursion (recover-file file))
3784 (error
3785 "Failed to recover `%s'" file)))
3786 files
3787 '("file" "files" "recover"))
3788 (message "No files can be recovered from this session now")))
3789 (kill-buffer buffer))))
3791 (defun kill-some-buffers (&optional list)
3792 "Kill some buffers. Asks the user whether to kill each one of them.
3793 Non-interactively, if optional argument LIST is non-`nil', it
3794 specifies the list of buffers to kill, asking for approval for each one."
3795 (interactive)
3796 (if (null list)
3797 (setq list (buffer-list)))
3798 (while list
3799 (let* ((buffer (car list))
3800 (name (buffer-name buffer)))
3801 (and (not (string-equal name ""))
3802 (/= (aref name 0) ? )
3803 (yes-or-no-p
3804 (format "Buffer %s %s. Kill? "
3805 name
3806 (if (buffer-modified-p buffer)
3807 "HAS BEEN EDITED" "is unmodified")))
3808 (kill-buffer buffer)))
3809 (setq list (cdr list))))
3811 (defun auto-save-mode (arg)
3812 "Toggle auto-saving of contents of current buffer.
3813 With prefix argument ARG, turn auto-saving on if positive, else off."
3814 (interactive "P")
3815 (setq buffer-auto-save-file-name
3816 (and (if (null arg)
3817 (or (not buffer-auto-save-file-name)
3818 ;; If auto-save is off because buffer has shrunk,
3819 ;; then toggling should turn it on.
3820 (< buffer-saved-size 0))
3821 (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0))))
3822 (if (and buffer-file-name auto-save-visited-file-name
3823 (not buffer-read-only))
3824 buffer-file-name
3825 (make-auto-save-file-name))))
3826 ;; If -1 was stored here, to temporarily turn off saving,
3827 ;; turn it back on.
3828 (and (< buffer-saved-size 0)
3829 (setq buffer-saved-size 0))
3830 (if (interactive-p)
3831 (message "Auto-save %s (in this buffer)"
3832 (if buffer-auto-save-file-name "on" "off")))
3833 buffer-auto-save-file-name)
3835 (defun rename-auto-save-file ()
3836 "Adjust current buffer's auto save file name for current conditions.
3837 Also rename any existing auto save file, if it was made in this session."
3838 (let ((osave buffer-auto-save-file-name))
3839 (setq buffer-auto-save-file-name
3840 (make-auto-save-file-name))
3841 (if (and osave buffer-auto-save-file-name
3842 (not (string= buffer-auto-save-file-name buffer-file-name))
3843 (not (string= buffer-auto-save-file-name osave))
3844 (file-exists-p osave)
3845 (recent-auto-save-p))
3846 (rename-file osave buffer-auto-save-file-name t))))
3848 (defun make-auto-save-file-name ()
3849 "Return file name to use for auto-saves of current buffer.
3850 Does not consider `auto-save-visited-file-name' as that variable is checked
3851 before calling this function. You can redefine this for customization.
3852 See also `auto-save-file-name-p'."
3853 (if buffer-file-name
3854 (let ((list auto-save-file-name-transforms)
3855 (filename buffer-file-name)
3856 result uniq)
3857 ;; Apply user-specified translations
3858 ;; to the file name.
3859 (while (and list (not result))
3860 (if (string-match (car (car list)) filename)
3861 (setq result (replace-match (cadr (car list)) t nil
3862 filename)
3863 uniq (car (cddr (car list)))))
3864 (setq list (cdr list)))
3865 (if result
3866 (if uniq
3867 (setq filename (concat
3868 (file-name-directory result)
3869 (subst-char-in-string
3870 ?/ ?!
3871 (replace-regexp-in-string "!" "!!"
3872 filename))))
3873 (setq filename result)))
3874 (setq result
3875 (if (and (eq system-type 'ms-dos)
3876 (not (msdos-long-file-names)))
3877 ;; We truncate the file name to DOS 8+3 limits
3878 ;; before doing anything else, because the regexp
3879 ;; passed to string-match below cannot handle
3880 ;; extensions longer than 3 characters, multiple
3881 ;; dots, and other atrocities.
3882 (let ((fn (dos-8+3-filename
3883 (file-name-nondirectory buffer-file-name))))
3884 (string-match
3885 "\\`\\([^.]+\\)\\(\\.\\(..?\\)?.?\\|\\)\\'"
3887 (concat (file-name-directory buffer-file-name)
3888 "#" (match-string 1 fn)
3889 "." (match-string 3 fn) "#"))
3890 (concat (file-name-directory filename)
3892 (file-name-nondirectory filename)
3893 "#")))
3894 ;; Make sure auto-save file names don't contain characters
3895 ;; invalid for the underlying filesystem.
3896 (if (and (memq system-type '(ms-dos windows-nt))
3897 ;; Don't modify remote (ange-ftp) filenames
3898 (not (string-match "^/\\w+@[-A-Za-z0-9._]+:" result)))
3899 (convert-standard-filename result)
3900 result))
3902 ;; Deal with buffers that don't have any associated files. (Mail
3903 ;; mode tends to create a good number of these.)
3905 (let ((buffer-name (buffer-name))
3906 (limit 0)
3907 file-name)
3908 ;; Eliminate all slashes and backslashes by
3909 ;; replacing them with sequences that start with %.
3910 ;; Quote % also, to keep distinct names distinct.
3911 (while (string-match "[/\\%]" buffer-name limit)
3912 (let* ((character (aref buffer-name (match-beginning 0)))
3913 (replacement
3914 (cond ((eq character ?%) "%%")
3915 ((eq character ?/) "%+")
3916 ((eq character ?\\) "%-"))))
3917 (setq buffer-name (replace-match replacement t t buffer-name))
3918 (setq limit (1+ (match-end 0)))))
3919 ;; Generate the file name.
3920 (setq file-name
3921 (make-temp-file
3922 (let ((fname
3923 (expand-file-name
3924 (format "#%s#" buffer-name)
3925 ;; Try a few alternative directories, to get one we can
3926 ;; write it.
3927 (cond
3928 ((file-writable-p default-directory) default-directory)
3929 ((file-writable-p "/var/tmp/") "/var/tmp/")
3930 ("~/")))))
3931 (if (and (memq system-type '(ms-dos windows-nt))
3932 ;; Don't modify remote (ange-ftp) filenames
3933 (not (string-match "^/\\w+@[-A-Za-z0-9._]+:" fname)))
3934 ;; The call to convert-standard-filename is in case
3935 ;; buffer-name includes characters not allowed by the
3936 ;; DOS/Windows filesystems. make-temp-file writes to the
3937 ;; file it creates, so we must fix the file name _before_
3938 ;; make-temp-file is called.
3939 (convert-standard-filename fname)
3940 fname))
3941 nil "#"))
3942 ;; make-temp-file creates the file,
3943 ;; but we don't want it to exist until we do an auto-save.
3944 (condition-case ()
3945 (delete-file file-name)
3946 (file-error nil))
3947 file-name)))
3949 (defun auto-save-file-name-p (filename)
3950 "Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'.
3951 FILENAME should lack slashes. You can redefine this for customization."
3952 (string-match "^#.*#$" filename))
3954 (defun wildcard-to-regexp (wildcard)
3955 "Given a shell file name pattern WILDCARD, return an equivalent regexp.
3956 The generated regexp will match a filename iff the filename
3957 matches that wildcard according to shell rules. Only wildcards known
3958 by `sh' are supported."
3959 (let* ((i (string-match "[[.*+\\^$?]" wildcard))
3960 ;; Copy the initial run of non-special characters.
3961 (result (substring wildcard 0 i))
3962 (len (length wildcard)))
3963 ;; If no special characters, we're almost done.
3964 (if i
3965 (while (< i len)
3966 (let ((ch (aref wildcard i))
3968 (setq
3969 result
3970 (concat result
3971 (cond
3972 ((and (eq ch ?\[)
3973 (< (1+ i) len)
3974 (eq (aref wildcard (1+ i)) ?\]))
3975 "\\[")
3976 ((eq ch ?\[) ; [...] maps to regexp char class
3977 (progn
3978 (setq i (1+ i))
3979 (concat
3980 (cond
3981 ((eq (aref wildcard i) ?!) ; [!...] -> [^...]
3982 (progn
3983 (setq i (1+ i))
3984 (if (eq (aref wildcard i) ?\])
3985 (progn
3986 (setq i (1+ i))
3987 "[^]")
3988 "[^")))
3989 ((eq (aref wildcard i) ?^)
3990 ;; Found "[^". Insert a `\0' character
3991 ;; (which cannot happen in a filename)
3992 ;; into the character class, so that `^'
3993 ;; is not the first character after `[',
3994 ;; and thus non-special in a regexp.
3995 (progn
3996 (setq i (1+ i))
3997 "[\000^"))
3998 ((eq (aref wildcard i) ?\])
3999 ;; I don't think `]' can appear in a
4000 ;; character class in a wildcard, but
4001 ;; let's be general here.
4002 (progn
4003 (setq i (1+ i))
4004 "[]"))
4005 (t "["))
4006 (prog1 ; copy everything upto next `]'.
4007 (substring wildcard
4009 (setq j (string-match
4010 "]" wildcard i)))
4011 (setq i (if j (1- j) (1- len)))))))
4012 ((eq ch ?.) "\\.")
4013 ((eq ch ?*) "[^\000]*")
4014 ((eq ch ?+) "\\+")
4015 ((eq ch ?^) "\\^")
4016 ((eq ch ?$) "\\$")
4017 ((eq ch ?\\) "\\\\") ; probably cannot happen...
4018 ((eq ch ??) "[^\000]")
4019 (t (char-to-string ch)))))
4020 (setq i (1+ i)))))
4021 ;; Shell wildcards should match the entire filename,
4022 ;; not its part. Make the regexp say so.
4023 (concat "\\`" result "\\'")))
4025 (defcustom list-directory-brief-switches
4026 (if (eq system-type 'vax-vms) "" "-CF")
4027 "*Switches for `list-directory' to pass to `ls' for brief listing."
4028 :type 'string
4029 :group 'dired)
4031 (defcustom list-directory-verbose-switches
4032 (if (eq system-type 'vax-vms)
4033 "/PROTECTION/SIZE/DATE/OWNER/WIDTH=(OWNER:10)"
4034 "-l")
4035 "*Switches for `list-directory' to pass to `ls' for verbose listing."
4036 :type 'string
4037 :group 'dired)
4039 (defun file-expand-wildcards (pattern &optional full)
4040 "Expand wildcard pattern PATTERN.
4041 This returns a list of file names which match the pattern.
4043 If PATTERN is written as an absolute file name,
4044 the values are absolute also.
4046 If PATTERN is written as a relative file name, it is interpreted
4047 relative to the current default directory, `default-directory'.
4048 The file names returned are normally also relative to the current
4049 default directory. However, if FULL is non-nil, they are absolute."
4050 (save-match-data
4051 (let* ((nondir (file-name-nondirectory pattern))
4052 (dirpart (file-name-directory pattern))
4053 ;; A list of all dirs that DIRPART specifies.
4054 ;; This can be more than one dir
4055 ;; if DIRPART contains wildcards.
4056 (dirs (if (and dirpart (string-match "[[*?]" dirpart))
4057 (mapcar 'file-name-as-directory
4058 (file-expand-wildcards (directory-file-name dirpart)))
4059 (list dirpart)))
4060 contents)
4061 (while dirs
4062 (when (or (null (car dirs)) ; Possible if DIRPART is not wild.
4063 (file-directory-p (directory-file-name (car dirs))))
4064 (let ((this-dir-contents
4065 ;; Filter out "." and ".."
4066 (delq nil
4067 (mapcar #'(lambda (name)
4068 (unless (string-match "\\`\\.\\.?\\'"
4069 (file-name-nondirectory name))
4070 name))
4071 (directory-files (or (car dirs) ".") full
4072 (wildcard-to-regexp nondir))))))
4073 (setq contents
4074 (nconc
4075 (if (and (car dirs) (not full))
4076 (mapcar (function (lambda (name) (concat (car dirs) name)))
4077 this-dir-contents)
4078 this-dir-contents)
4079 contents))))
4080 (setq dirs (cdr dirs)))
4081 contents)))
4083 (defun list-directory (dirname &optional verbose)
4084 "Display a list of files in or matching DIRNAME, a la `ls'.
4085 DIRNAME is globbed by the shell if necessary.
4086 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
4087 Actions controlled by variables `list-directory-brief-switches'
4088 and `list-directory-verbose-switches'."
4089 (interactive (let ((pfx current-prefix-arg))
4090 (list (read-file-name (if pfx "List directory (verbose): "
4091 "List directory (brief): ")
4092 nil default-directory nil)
4093 pfx)))
4094 (let ((switches (if verbose list-directory-verbose-switches
4095 list-directory-brief-switches))
4096 buffer)
4097 (or dirname (setq dirname default-directory))
4098 (setq dirname (expand-file-name dirname))
4099 (with-output-to-temp-buffer "*Directory*"
4100 (setq buffer standard-output)
4101 (buffer-disable-undo standard-output)
4102 (princ "Directory ")
4103 (princ dirname)
4104 (terpri)
4105 (save-excursion
4106 (set-buffer "*Directory*")
4107 (let ((wildcard (not (file-directory-p dirname))))
4108 (insert-directory dirname switches wildcard (not wildcard)))))
4109 ;; Finishing with-output-to-temp-buffer seems to clobber default-directory.
4110 (with-current-buffer buffer
4111 (setq default-directory
4112 (if (file-directory-p dirname)
4113 (file-name-as-directory dirname)
4114 (file-name-directory dirname))))))
4116 (defun shell-quote-wildcard-pattern (pattern)
4117 "Quote characters special to the shell in PATTERN, leave wildcards alone.
4119 PATTERN is assumed to represent a file-name wildcard suitable for the
4120 underlying filesystem. For Unix and GNU/Linux, the characters from the
4121 set [ \\t\\n;<>&|()#$] are quoted with a backslash; for DOS/Windows, all
4122 the parts of the pattern which don't include wildcard characters are
4123 quoted with double quotes.
4124 Existing quote characters in PATTERN are left alone, so you can pass
4125 PATTERN that already quotes some of the special characters."
4126 (save-match-data
4127 (cond
4128 ((memq system-type '(ms-dos windows-nt cygwin))
4129 ;; DOS/Windows don't allow `"' in file names. So if the
4130 ;; argument has quotes, we can safely assume it is already
4131 ;; quoted by the caller.
4132 (if (or (string-match "[\"]" pattern)
4133 ;; We quote [&()#$'] in case their shell is a port of a
4134 ;; Unixy shell. We quote [,=+] because stock DOS and
4135 ;; Windows shells require that in some cases, such as
4136 ;; passing arguments to batch files that use positional
4137 ;; arguments like %1.
4138 (not (string-match "[ \t;&()#$',=+]" pattern)))
4139 pattern
4140 (let ((result "\"")
4141 (beg 0)
4142 end)
4143 (while (string-match "[*?]+" pattern beg)
4144 (setq end (match-beginning 0)
4145 result (concat result (substring pattern beg end)
4146 "\""
4147 (substring pattern end (match-end 0))
4148 "\"")
4149 beg (match-end 0)))
4150 (concat result (substring pattern beg) "\""))))
4152 (let ((beg 0))
4153 (while (string-match "[ \t\n;<>&|()#$]" pattern beg)
4154 (setq pattern
4155 (concat (substring pattern 0 (match-beginning 0))
4156 "\\"
4157 (substring pattern (match-beginning 0)))
4158 beg (1+ (match-end 0)))))
4159 pattern))))
4162 (defvar insert-directory-program "ls"
4163 "Absolute or relative name of the `ls' program used by `insert-directory'.")
4165 (defcustom directory-free-space-program "df"
4166 "*Program to get the amount of free space on a file system.
4167 We assume the output has the format of `df'.
4168 The value of this variable must be just a command name or file name;
4169 if you want to specify options, use `directory-free-space-args'.
4171 A value of nil disables this feature.
4173 If the function `file-system-info' is defined, it is always used in
4174 preference to the program given by this variable."
4175 :type '(choice (string :tag "Program") (const :tag "None" nil))
4176 :group 'dired)
4178 (defcustom directory-free-space-args
4179 (if (eq system-type 'darwin) "-k" "-Pk")
4180 "*Options to use when running `directory-free-space-program'."
4181 :type 'string
4182 :group 'dired)
4184 (defun get-free-disk-space (dir)
4185 "Return the mount of free space on directory DIR's file system.
4186 The result is a string that gives the number of free 1KB blocks,
4187 or nil if the system call or the program which retrieve the infornmation
4188 fail.
4190 This function calls `file-system-info' if it is available, or invokes the
4191 program specified by `directory-free-space-program' if that is non-nil."
4192 ;; Try to find the number of free blocks. Non-Posix systems don't
4193 ;; always have df, but might have an equivalent system call.
4194 (if (fboundp 'file-system-info)
4195 (let ((fsinfo (file-system-info dir)))
4196 (if fsinfo
4197 (format "%.0f" (/ (nth 2 fsinfo) 1024))))
4198 (save-match-data
4199 (with-temp-buffer
4200 (when (and directory-free-space-program
4201 (eq 0 (call-process directory-free-space-program
4202 nil t nil
4203 directory-free-space-args
4204 dir)))
4205 ;; Usual format is a header line followed by a line of
4206 ;; numbers.
4207 (goto-char (point-min))
4208 (forward-line 1)
4209 (if (not (eobp))
4210 (progn
4211 ;; Move to the end of the "available blocks" number.
4212 (skip-chars-forward "^ \t")
4213 (forward-word 3)
4214 ;; Copy it into AVAILABLE.
4215 (let ((end (point)))
4216 (forward-word -1)
4217 (buffer-substring (point) end)))))))))
4220 ;; insert-directory
4221 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and
4222 ;; FULL-DIRECTORY-P is nil.
4223 ;; The single line of output must display FILE's name as it was
4224 ;; given, namely, an absolute path name.
4225 ;; - must insert exactly one line for each file if WILDCARD or
4226 ;; FULL-DIRECTORY-P is t, plus one optional "total" line
4227 ;; before the file lines, plus optional text after the file lines.
4228 ;; Lines are delimited by "\n", so filenames containing "\n" are not
4229 ;; allowed.
4230 ;; File lines should display the basename.
4231 ;; - must be consistent with
4232 ;; - functions dired-move-to-filename, (these two define what a file line is)
4233 ;; dired-move-to-end-of-filename,
4234 ;; dired-between-files, (shortcut for (not (dired-move-to-filename)))
4235 ;; dired-insert-headerline
4236 ;; dired-after-subdir-garbage (defines what a "total" line is)
4237 ;; - variable dired-subdir-regexp
4238 ;; - may be passed "--dired" as the first argument in SWITCHES.
4239 ;; Filename handlers might have to remove this switch if their
4240 ;; "ls" command does not support it.
4241 (defun insert-directory (file switches &optional wildcard full-directory-p)
4242 "Insert directory listing for FILE, formatted according to SWITCHES.
4243 Leaves point after the inserted text.
4244 SWITCHES may be a string of options, or a list of strings
4245 representing individual options.
4246 Optional third arg WILDCARD means treat FILE as shell wildcard.
4247 Optional fourth arg FULL-DIRECTORY-P means file is a directory and
4248 switches do not contain `d', so that a full listing is expected.
4250 This works by running a directory listing program
4251 whose name is in the variable `insert-directory-program'.
4252 If WILDCARD, it also runs the shell specified by `shell-file-name'.
4254 When SWITCHES contains the long `--dired' option, this function
4255 treats it specially, for the sake of dired. However, the
4256 normally equivalent short `-D' option is just passed on to
4257 `insert-directory-program', as any other option."
4258 ;; We need the directory in order to find the right handler.
4259 (let ((handler (find-file-name-handler (expand-file-name file)
4260 'insert-directory)))
4261 (if handler
4262 (funcall handler 'insert-directory file switches
4263 wildcard full-directory-p)
4264 (if (eq system-type 'vax-vms)
4265 (vms-read-directory file switches (current-buffer))
4266 (let (result (beg (point)))
4268 ;; Read the actual directory using `insert-directory-program'.
4269 ;; RESULT gets the status code.
4270 (let* (;; We at first read by no-conversion, then after
4271 ;; putting text property `dired-filename, decode one
4272 ;; bunch by one to preserve that property.
4273 (coding-system-for-read 'no-conversion)
4274 ;; This is to control encoding the arguments in call-process.
4275 (coding-system-for-write
4276 (and enable-multibyte-characters
4277 (or file-name-coding-system
4278 default-file-name-coding-system))))
4279 (setq result
4280 (if wildcard
4281 ;; Run ls in the directory part of the file pattern
4282 ;; using the last component as argument.
4283 (let ((default-directory
4284 (if (file-name-absolute-p file)
4285 (file-name-directory file)
4286 (file-name-directory (expand-file-name file))))
4287 (pattern (file-name-nondirectory file)))
4288 (call-process
4289 shell-file-name nil t nil
4290 "-c"
4291 (concat (if (memq system-type '(ms-dos windows-nt))
4293 "\\") ; Disregard Unix shell aliases!
4294 insert-directory-program
4295 " -d "
4296 (if (stringp switches)
4297 switches
4298 (mapconcat 'identity switches " "))
4299 " -- "
4300 ;; Quote some characters that have
4301 ;; special meanings in shells; but
4302 ;; don't quote the wildcards--we want
4303 ;; them to be special. We also
4304 ;; currently don't quote the quoting
4305 ;; characters in case people want to
4306 ;; use them explicitly to quote
4307 ;; wildcard characters.
4308 (shell-quote-wildcard-pattern pattern))))
4309 ;; SunOS 4.1.3, SVr4 and others need the "." to list the
4310 ;; directory if FILE is a symbolic link.
4311 (apply 'call-process
4312 insert-directory-program nil t nil
4313 (append
4314 (if (listp switches) switches
4315 (unless (equal switches "")
4316 ;; Split the switches at any spaces so we can
4317 ;; pass separate options as separate args.
4318 (split-string switches)))
4319 ;; Avoid lossage if FILE starts with `-'.
4320 '("--")
4321 (progn
4322 (if (string-match "\\`~" file)
4323 (setq file (expand-file-name file)))
4324 (list
4325 (if full-directory-p
4326 (concat (file-name-as-directory file) ".")
4327 file))))))))
4329 ;; If `insert-directory-program' failed, signal an error.
4330 (unless (eq 0 result)
4331 ;; Delete the error message it may have output.
4332 (delete-region beg (point))
4333 ;; On non-Posix systems, we cannot open a directory, so
4334 ;; don't even try, because that will always result in
4335 ;; the ubiquitous "Access denied". Instead, show the
4336 ;; command line so the user can try to guess what went wrong.
4337 (if (and (file-directory-p file)
4338 (memq system-type '(ms-dos windows-nt)))
4339 (error
4340 "Reading directory: \"%s %s -- %s\" exited with status %s"
4341 insert-directory-program
4342 (if (listp switches) (concat switches) switches)
4343 file result)
4344 ;; Unix. Access the file to get a suitable error.
4345 (access-file file "Reading directory")
4346 (error "Listing directory failed but `access-file' worked")))
4348 (when (if (stringp switches)
4349 (string-match "--dired\\>" switches)
4350 (member "--dired" switches))
4351 (forward-line -2)
4352 (when (looking-at "//SUBDIRED//")
4353 (delete-region (point) (progn (forward-line 1) (point)))
4354 (forward-line -1))
4355 (if (looking-at "//DIRED//")
4356 (let ((end (line-end-position)))
4357 (forward-word 1)
4358 (forward-char 3)
4359 (while (< (point) end)
4360 (let ((start (+ beg (read (current-buffer))))
4361 (end (+ beg (read (current-buffer)))))
4362 (if (= (char-after end) ?\n)
4363 (put-text-property start end 'dired-filename t)
4364 ;; It seems that we can't trust ls's output as to
4365 ;; byte positions of filenames.
4366 (put-text-property beg (point) 'dired-filename nil)
4367 (end-of-line))))
4368 (goto-char end)
4369 (beginning-of-line)
4370 (delete-region (point) (progn (forward-line 2) (point))))
4371 (forward-line 1)
4372 (if (looking-at "//DIRED-OPTIONS//")
4373 (delete-region (point) (progn (forward-line 1) (point)))
4374 (forward-line 1))))
4376 ;; Now decode what read if necessary.
4377 (let ((coding (or coding-system-for-read
4378 file-name-coding-system
4379 default-file-name-coding-system
4380 'undecided))
4381 coding-no-eol
4382 val pos)
4383 (when (and enable-multibyte-characters
4384 (not (memq (coding-system-base coding)
4385 '(raw-text no-conversion))))
4386 ;; If no coding system is specified or detection is
4387 ;; requested, detect the coding.
4388 (if (eq (coding-system-base coding) 'undecided)
4389 (setq coding (detect-coding-region beg (point) t)))
4390 (if (not (eq (coding-system-base coding) 'undecided))
4391 (save-restriction
4392 (setq coding-no-eol
4393 (coding-system-change-eol-conversion coding 'unix))
4394 (narrow-to-region beg (point))
4395 (goto-char (point-min))
4396 (while (not (eobp))
4397 (setq pos (point)
4398 val (get-text-property (point) 'dired-filename))
4399 (goto-char (next-single-property-change
4400 (point) 'dired-filename nil (point-max)))
4401 ;; Force no eol conversion on a file name, so
4402 ;; that CR is preserved.
4403 (decode-coding-region pos (point)
4404 (if val coding-no-eol coding))
4405 (if val
4406 (put-text-property pos (point)
4407 'dired-filename t)))))))
4409 (if full-directory-p
4410 ;; Try to insert the amount of free space.
4411 (save-excursion
4412 (goto-char beg)
4413 ;; First find the line to put it on.
4414 (when (re-search-forward "^ *\\(total\\)" nil t)
4415 (let ((available (get-free-disk-space ".")))
4416 (when available
4417 ;; Replace "total" with "used", to avoid confusion.
4418 (replace-match "total used in directory" nil nil nil 1)
4419 (end-of-line)
4420 (insert " available " available)))))))))))
4422 (defun insert-directory-safely (file switches
4423 &optional wildcard full-directory-p)
4424 "Insert directory listing for FILE, formatted according to SWITCHES.
4426 Like `insert-directory', but if FILE does not exist, it inserts a
4427 message to that effect instead of signaling an error."
4428 (if (file-exists-p file)
4429 (insert-directory file switches wildcard full-directory-p)
4430 ;; Simulate the message printed by `ls'.
4431 (insert (format "%s: No such file or directory\n" file))))
4433 (defvar kill-emacs-query-functions nil
4434 "Functions to call with no arguments to query about killing Emacs.
4435 If any of these functions returns nil, killing Emacs is cancelled.
4436 `save-buffers-kill-emacs' (\\[save-buffers-kill-emacs]) calls these functions,
4437 but `kill-emacs', the low level primitive, does not.
4438 See also `kill-emacs-hook'.")
4440 (defcustom confirm-kill-emacs nil
4441 "How to ask for confirmation when leaving Emacs.
4442 If nil, the default, don't ask at all. If the value is non-nil, it should
4443 be a predicate function such as `yes-or-no-p'."
4444 :type '(choice (const :tag "Ask with yes-or-no-p" yes-or-no-p)
4445 (const :tag "Ask with y-or-n-p" y-or-n-p)
4446 (const :tag "Don't confirm" nil))
4447 :group 'convenience
4448 :version "21.1")
4450 (defun save-buffers-kill-emacs (&optional arg)
4451 "Offer to save each buffer, then kill this Emacs process.
4452 With prefix arg, silently save all file-visiting buffers, then kill."
4453 (interactive "P")
4454 (save-some-buffers arg t)
4455 (and (or (not (memq t (mapcar (function
4456 (lambda (buf) (and (buffer-file-name buf)
4457 (buffer-modified-p buf))))
4458 (buffer-list))))
4459 (yes-or-no-p "Modified buffers exist; exit anyway? "))
4460 (or (not (fboundp 'process-list))
4461 ;; process-list is not defined on VMS.
4462 (let ((processes (process-list))
4463 active)
4464 (while processes
4465 (and (memq (process-status (car processes)) '(run stop open listen))
4466 (process-query-on-exit-flag (car processes))
4467 (setq active t))
4468 (setq processes (cdr processes)))
4469 (or (not active)
4470 (list-processes t)
4471 (yes-or-no-p "Active processes exist; kill them and exit anyway? "))))
4472 ;; Query the user for other things, perhaps.
4473 (run-hook-with-args-until-failure 'kill-emacs-query-functions)
4474 (or (null confirm-kill-emacs)
4475 (funcall confirm-kill-emacs "Really exit Emacs? "))
4476 (kill-emacs)))
4478 ;; We use /: as a prefix to "quote" a file name
4479 ;; so that magic file name handlers will not apply to it.
4481 (setq file-name-handler-alist
4482 (cons '("\\`/:" . file-name-non-special)
4483 file-name-handler-alist))
4485 ;; We depend on being the last handler on the list,
4486 ;; so that anything else which does need handling
4487 ;; has been handled already.
4488 ;; So it is safe for us to inhibit *all* magic file name handlers.
4490 (defun file-name-non-special (operation &rest arguments)
4491 (let ((file-name-handler-alist nil)
4492 (default-directory
4493 (if (eq operation 'insert-directory)
4494 (directory-file-name
4495 (expand-file-name
4496 (unhandled-file-name-directory default-directory)))
4497 default-directory))
4498 ;; Get a list of the indices of the args which are file names.
4499 (file-arg-indices
4500 (cdr (or (assq operation
4501 ;; The first six are special because they
4502 ;; return a file name. We want to include the /:
4503 ;; in the return value.
4504 ;; So just avoid stripping it in the first place.
4505 '((expand-file-name . nil)
4506 (file-name-directory . nil)
4507 (file-name-as-directory . nil)
4508 (directory-file-name . nil)
4509 (file-name-sans-versions . nil)
4510 (find-backup-file-name . nil)
4511 ;; `identity' means just return the first arg
4512 ;; not stripped of its quoting.
4513 (substitute-in-file-name identity)
4514 ;; `add' means add "/:" to the result.
4515 (file-truename add 0)
4516 ;; `quote' means add "/:" to buffer-file-name.
4517 (insert-file-contents quote 0)
4518 ;; `unquote-then-quote' means set buffer-file-name
4519 ;; temporarily to unquoted filename.
4520 (verify-visited-file-modtime unquote-then-quote)
4521 ;; List the arguments which are filenames.
4522 (file-name-completion 1)
4523 (file-name-all-completions 1)
4524 (write-region 2 5)
4525 (rename-file 0 1)
4526 (copy-file 0 1)
4527 (make-symbolic-link 0 1)
4528 (add-name-to-file 0 1)))
4529 ;; For all other operations, treat the first argument only
4530 ;; as the file name.
4531 '(nil 0))))
4532 method
4533 ;; Copy ARGUMENTS so we can replace elements in it.
4534 (arguments (copy-sequence arguments)))
4535 (if (symbolp (car file-arg-indices))
4536 (setq method (pop file-arg-indices)))
4537 ;; Strip off the /: from the file names that have it.
4538 (save-match-data
4539 (while (consp file-arg-indices)
4540 (let ((pair (nthcdr (car file-arg-indices) arguments)))
4541 (and (car pair)
4542 (string-match "\\`/:" (car pair))
4543 (setcar pair
4544 (if (= (length (car pair)) 2)
4546 (substring (car pair) 2)))))
4547 (setq file-arg-indices (cdr file-arg-indices))))
4548 (cond ((eq method 'identity)
4549 (car arguments))
4550 ((eq method 'add)
4551 (concat "/:" (apply operation arguments)))
4552 ((eq method 'quote)
4553 (prog1 (apply operation arguments)
4554 (setq buffer-file-name (concat "/:" buffer-file-name))))
4555 ((eq method 'unquote-then-quote)
4556 (let (res)
4557 (setq buffer-file-name (substring buffer-file-name 2))
4558 (setq res (apply operation arguments))
4559 (setq buffer-file-name (concat "/:" buffer-file-name))
4560 res))
4562 (apply operation arguments)))))
4564 (define-key ctl-x-map "\C-f" 'find-file)
4565 (define-key ctl-x-map "\C-r" 'find-file-read-only)
4566 (define-key ctl-x-map "\C-v" 'find-alternate-file)
4567 (define-key ctl-x-map "\C-s" 'save-buffer)
4568 (define-key ctl-x-map "s" 'save-some-buffers)
4569 (define-key ctl-x-map "\C-w" 'write-file)
4570 (define-key ctl-x-map "i" 'insert-file)
4571 (define-key esc-map "~" 'not-modified)
4572 (define-key ctl-x-map "\C-d" 'list-directory)
4573 (define-key ctl-x-map "\C-c" 'save-buffers-kill-emacs)
4574 (define-key ctl-x-map "\C-q" 'toggle-read-only)
4576 (define-key ctl-x-4-map "f" 'find-file-other-window)
4577 (define-key ctl-x-4-map "r" 'find-file-read-only-other-window)
4578 (define-key ctl-x-4-map "\C-f" 'find-file-other-window)
4579 (define-key ctl-x-4-map "b" 'switch-to-buffer-other-window)
4580 (define-key ctl-x-4-map "\C-o" 'display-buffer)
4582 (define-key ctl-x-5-map "b" 'switch-to-buffer-other-frame)
4583 (define-key ctl-x-5-map "f" 'find-file-other-frame)
4584 (define-key ctl-x-5-map "\C-f" 'find-file-other-frame)
4585 (define-key ctl-x-5-map "r" 'find-file-read-only-other-frame)
4587 ;;; arch-tag: bc68d3ea-19ca-468b-aac6-3a4a7766101f
4588 ;;; files.el ends here