Merge from origin/emacs-24
[emacs.git] / lisp / files.el
blobd55ef1ad53830c461e9462778e40ef70e756bf50
1 ;;; files.el --- file input and output commands for Emacs -*- lexical-binding:t -*-
3 ;; Copyright (C) 1985-1987, 1992-2014 Free Software Foundation, Inc.
5 ;; Maintainer: emacs-devel@gnu.org
6 ;; Package: emacs
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 3 of the License, or
13 ;; (at your option) 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. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Commentary:
25 ;; Defines most of Emacs's file- and directory-handling functions,
26 ;; including basic file visiting, backup generation, link handling,
27 ;; ITS-id version control, load- and write-hook handling, and the like.
29 ;;; Code:
31 (defvar font-lock-keywords)
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.
57 FROM is matched against directory names anchored at the first
58 character, so it should start with a \"\\\\`\", or, if directory
59 names cannot have embedded newlines, with a \"^\".
61 FROM and TO should be equivalent names, which refer to the
62 same directory. Do not use `~' in the TO strings;
63 they should be ordinary absolute directory names.
65 Use this feature when you have directories which you normally refer to
66 via absolute symbolic links. Make TO the name of the link, and FROM
67 the name it is linked to."
68 :type '(repeat (cons :format "%v"
69 :value ("\\`" . "")
70 (regexp :tag "From")
71 (string :tag "To")))
72 :group 'abbrev
73 :group 'find-file)
75 (defcustom make-backup-files t
76 "Non-nil means make a backup of a file the first time it is saved.
77 This can be done by renaming the file or by copying.
79 Renaming means that Emacs renames the existing file so that it is a
80 backup file, then writes the buffer into a new file. Any other names
81 that the old file had will now refer to the backup file. The new file
82 is owned by you and its group is defaulted.
84 Copying means that Emacs copies the existing file into the backup
85 file, then writes the buffer on top of the existing file. Any other
86 names that the old file had will now refer to the new (edited) file.
87 The file's owner and group are unchanged.
89 The choice of renaming or copying is controlled by the variables
90 `backup-by-copying', `backup-by-copying-when-linked',
91 `backup-by-copying-when-mismatch' and
92 `backup-by-copying-when-privileged-mismatch'. See also `backup-inhibited'."
93 :type 'boolean
94 :group 'backup)
96 ;; Do this so that local variables based on the file name
97 ;; are not overridden by the major mode.
98 (defvar backup-inhibited nil
99 "If non-nil, backups will be inhibited.
100 This variable is intended for use by making it local to a buffer,
101 but it is not an automatically buffer-local variable.")
102 (put 'backup-inhibited 'permanent-local t)
104 (defcustom backup-by-copying nil
105 "Non-nil means always use copying to create backup files.
106 See documentation of variable `make-backup-files'."
107 :type 'boolean
108 :group 'backup)
110 (defcustom backup-by-copying-when-linked nil
111 "Non-nil means use copying to create backups for files with multiple names.
112 This causes the alternate names to refer to the latest version as edited.
113 This variable is relevant only if `backup-by-copying' is nil."
114 :type 'boolean
115 :group 'backup)
117 (defcustom backup-by-copying-when-mismatch t
118 "Non-nil means create backups by copying if this preserves owner or group.
119 Renaming may still be used (subject to control of other variables)
120 when it would not result in changing the owner or group of the file;
121 that is, for files which are owned by you and whose group matches
122 the default for a new file created there by you.
123 This variable is relevant only if `backup-by-copying' is nil."
124 :version "24.1"
125 :type 'boolean
126 :group 'backup)
127 (put 'backup-by-copying-when-mismatch 'permanent-local t)
129 (defcustom backup-by-copying-when-privileged-mismatch 200
130 "Non-nil means create backups by copying to preserve a privileged owner.
131 Renaming may still be used (subject to control of other variables)
132 when it would not result in changing the owner of the file or if the owner
133 has a user id greater than the value of this variable. This is useful
134 when low-numbered uid's are used for special system users (such as root)
135 that must maintain ownership of certain files.
136 This variable is relevant only if `backup-by-copying' and
137 `backup-by-copying-when-mismatch' are nil."
138 :type '(choice (const nil) integer)
139 :group 'backup)
141 (defvar backup-enable-predicate 'normal-backup-enable-predicate
142 "Predicate that looks at a file name and decides whether to make backups.
143 Called with an absolute file name as argument, it returns t to enable backup.")
145 (defcustom buffer-offer-save nil
146 "Non-nil in a buffer means always offer to save buffer on exit.
147 Do so even if the buffer is not visiting a file.
148 Automatically local in all buffers."
149 :type 'boolean
150 :group 'backup)
151 (make-variable-buffer-local 'buffer-offer-save)
152 (put 'buffer-offer-save 'permanent-local t)
154 (defcustom find-file-existing-other-name t
155 "Non-nil means find a file under alternative names, in existing buffers.
156 This means if any existing buffer is visiting the file you want
157 under another name, you get the existing buffer instead of a new buffer."
158 :type 'boolean
159 :group 'find-file)
161 (defcustom find-file-visit-truename nil
162 "Non-nil means visiting a file uses its truename as the visited-file name.
163 That is, the buffer visiting the file has the truename as the
164 value of `buffer-file-name'. The truename of a file is found by
165 chasing all links both at the file level and at the levels of the
166 containing directories."
167 :type 'boolean
168 :group 'find-file)
169 (put 'find-file-visit-truename 'safe-local-variable 'booleanp)
171 (defcustom revert-without-query nil
172 "Specify which files should be reverted without query.
173 The value is a list of regular expressions.
174 If the file name matches one of these regular expressions,
175 then `revert-buffer' reverts the file without querying
176 if the file has changed on disk and you have not edited the buffer."
177 :type '(repeat regexp)
178 :group 'find-file)
180 (defvar buffer-file-number nil
181 "The device number and file number of the file visited in the current buffer.
182 The value is a list of the form (FILENUM DEVNUM).
183 This pair of numbers uniquely identifies the file.
184 If the buffer is visiting a new file, the value is nil.")
185 (make-variable-buffer-local 'buffer-file-number)
186 (put 'buffer-file-number 'permanent-local t)
188 (defvar buffer-file-numbers-unique (not (memq system-type '(windows-nt)))
189 "Non-nil means that `buffer-file-number' uniquely identifies files.")
191 (defvar buffer-file-read-only nil
192 "Non-nil if visited file was read-only when visited.")
193 (make-variable-buffer-local 'buffer-file-read-only)
195 (defcustom small-temporary-file-directory
196 (if (eq system-type 'ms-dos) (getenv "TMPDIR"))
197 "The directory for writing small temporary files.
198 If non-nil, this directory is used instead of `temporary-file-directory'
199 by programs that create small temporary files. This is for systems that
200 have fast storage with limited space, such as a RAM disk."
201 :group 'files
202 :initialize 'custom-initialize-delay
203 :type '(choice (const nil) directory))
205 ;; The system null device. (Should reference NULL_DEVICE from C.)
206 (defvar null-device (purecopy "/dev/null") "The system null device.")
208 (declare-function msdos-long-file-names "msdos.c")
209 (declare-function w32-long-file-name "w32proc.c")
210 (declare-function dired-get-filename "dired" (&optional localp no-error-if-not-filep))
211 (declare-function dired-unmark "dired" (arg &optional interactive))
212 (declare-function dired-do-flagged-delete "dired" (&optional nomessage))
213 (declare-function dos-8+3-filename "dos-fns" (filename))
214 (declare-function dosified-file-name "dos-fns" (file-name))
216 (defvar file-name-invalid-regexp
217 (cond ((and (eq system-type 'ms-dos) (not (msdos-long-file-names)))
218 (purecopy
219 (concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" ; colon except after drive
220 "[+, ;=|<>\"?*]\\|\\[\\|\\]\\|" ; invalid characters
221 "[\000-\037]\\|" ; control characters
222 "\\(/\\.\\.?[^/]\\)\\|" ; leading dots
223 "\\(/[^/.]+\\.[^/.]*\\.\\)"))) ; more than a single dot
224 ((memq system-type '(ms-dos windows-nt cygwin))
225 (purecopy
226 (concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" ; colon except after drive
227 "[|<>\"?*\000-\037]"))) ; invalid characters
228 (t (purecopy "[\000]")))
229 "Regexp recognizing file names which aren't allowed by the filesystem.")
231 (defcustom file-precious-flag nil
232 "Non-nil means protect against I/O errors while saving files.
233 Some modes set this non-nil in particular buffers.
235 This feature works by writing the new contents into a temporary file
236 and then renaming the temporary file to replace the original.
237 In this way, any I/O error in writing leaves the original untouched,
238 and there is never any instant where the file is nonexistent.
240 Note that this feature forces backups to be made by copying.
241 Yet, at the same time, saving a precious file
242 breaks any hard links between it and other files.
244 This feature is advisory: for example, if the directory in which the
245 file is being saved is not writable, Emacs may ignore a non-nil value
246 of `file-precious-flag' and write directly into the file.
248 See also: `break-hardlink-on-save'."
249 :type 'boolean
250 :group 'backup)
252 (defcustom break-hardlink-on-save nil
253 "Whether to allow breaking hardlinks when saving files.
254 If non-nil, then when saving a file that exists under several
255 names \(i.e., has multiple hardlinks), break the hardlink
256 associated with `buffer-file-name' and write to a new file, so
257 that the other instances of the file are not affected by the
258 save.
260 If `buffer-file-name' refers to a symlink, do not break the symlink.
262 Unlike `file-precious-flag', `break-hardlink-on-save' is not advisory.
263 For example, if the directory in which a file is being saved is not
264 itself writable, then error instead of saving in some
265 hardlink-nonbreaking way.
267 See also `backup-by-copying' and `backup-by-copying-when-linked'."
268 :type 'boolean
269 :group 'files
270 :version "23.1")
272 (defcustom version-control nil
273 "Control use of version numbers for backup files.
274 When t, make numeric backup versions unconditionally.
275 When nil, make them for files that have some already.
276 The value `never' means do not make them."
277 :type '(choice (const :tag "Never" never)
278 (const :tag "If existing" nil)
279 (other :tag "Always" t))
280 :group 'backup
281 :group 'vc)
282 (put 'version-control 'safe-local-variable
283 (lambda (x) (or (booleanp x) (equal x 'never))))
285 (defcustom dired-kept-versions 2
286 "When cleaning directory, number of versions to keep."
287 :type 'integer
288 :group 'backup
289 :group 'dired)
291 (defcustom delete-old-versions nil
292 "If t, delete excess backup versions silently.
293 If nil, ask confirmation. Any other value prevents any trimming."
294 :type '(choice (const :tag "Delete" t)
295 (const :tag "Ask" nil)
296 (other :tag "Leave" other))
297 :group 'backup)
299 (defcustom kept-old-versions 2
300 "Number of oldest versions to keep when a new numbered backup is made."
301 :type 'integer
302 :group 'backup)
303 (put 'kept-old-versions 'safe-local-variable 'integerp)
305 (defcustom kept-new-versions 2
306 "Number of newest versions to keep when a new numbered backup is made.
307 Includes the new backup. Must be > 0"
308 :type 'integer
309 :group 'backup)
310 (put 'kept-new-versions 'safe-local-variable 'integerp)
312 (defcustom require-final-newline nil
313 "Whether to add a newline automatically at the end of the file.
315 A value of t means do this only when the file is about to be saved.
316 A value of `visit' means do this right after the file is visited.
317 A value of `visit-save' means do it at both of those times.
318 Any other non-nil value means ask user whether to add a newline, when saving.
319 A value of nil means don't add newlines.
321 Certain major modes set this locally to the value obtained
322 from `mode-require-final-newline'."
323 :safe #'symbolp
324 :type '(choice (const :tag "When visiting" visit)
325 (const :tag "When saving" t)
326 (const :tag "When visiting or saving" visit-save)
327 (const :tag "Don't add newlines" nil)
328 (other :tag "Ask each time" ask))
329 :group 'editing-basics)
331 (defcustom mode-require-final-newline t
332 "Whether to add a newline at end of file, in certain major modes.
333 Those modes set `require-final-newline' to this value when you enable them.
334 They do so because they are often used for files that are supposed
335 to end in newlines, and the question is how to arrange that.
337 A value of t means do this only when the file is about to be saved.
338 A value of `visit' means do this right after the file is visited.
339 A value of `visit-save' means do it at both of those times.
340 Any other non-nil value means ask user whether to add a newline, when saving.
342 A value of nil means do not add newlines. That is a risky choice in this
343 variable since this value is used for modes for files that ought to have
344 final newlines. So if you set this to nil, you must explicitly check and
345 add a final newline, whenever you save a file that really needs one."
346 :type '(choice (const :tag "When visiting" visit)
347 (const :tag "When saving" t)
348 (const :tag "When visiting or saving" visit-save)
349 (const :tag "Don't add newlines" nil)
350 (other :tag "Ask each time" ask))
351 :group 'editing-basics
352 :version "22.1")
354 (defcustom auto-save-default t
355 "Non-nil says by default do auto-saving of every file-visiting buffer."
356 :type 'boolean
357 :group 'auto-save)
359 (defcustom auto-save-file-name-transforms
360 `(("\\`/[^/]*:\\([^/]*/\\)*\\([^/]*\\)\\'"
361 ;; Don't put "\\2" inside expand-file-name, since it will be
362 ;; transformed to "/2" on DOS/Windows.
363 ,(concat temporary-file-directory "\\2") t))
364 "Transforms to apply to buffer file name before making auto-save file name.
365 Each transform is a list (REGEXP REPLACEMENT UNIQUIFY):
366 REGEXP is a regular expression to match against the file name.
367 If it matches, `replace-match' is used to replace the
368 matching part with REPLACEMENT.
369 If the optional element UNIQUIFY is non-nil, the auto-save file name is
370 constructed by taking the directory part of the replaced file-name,
371 concatenated with the buffer file name with all directory separators
372 changed to `!' to prevent clashes. This will not work
373 correctly if your filesystem truncates the resulting name.
375 All the transforms in the list are tried, in the order they are listed.
376 When one transform applies, its result is final;
377 no further transforms are tried.
379 The default value is set up to put the auto-save file into the
380 temporary directory (see the variable `temporary-file-directory') for
381 editing a remote file.
383 On MS-DOS filesystems without long names this variable is always
384 ignored."
385 :group 'auto-save
386 :type '(repeat (list (string :tag "Regexp") (string :tag "Replacement")
387 (boolean :tag "Uniquify")))
388 :initialize 'custom-initialize-delay
389 :version "21.1")
391 (defcustom save-abbrevs t
392 "Non-nil means save word abbrevs too when files are saved.
393 If `silently', don't ask the user before saving."
394 :type '(choice (const t) (const nil) (const silently))
395 :group 'abbrev)
397 (defcustom find-file-run-dired t
398 "Non-nil means allow `find-file' to visit directories.
399 To visit the directory, `find-file' runs `find-directory-functions'."
400 :type 'boolean
401 :group 'find-file)
403 (defcustom find-directory-functions '(cvs-dired-noselect dired-noselect)
404 "List of functions to try in sequence to visit a directory.
405 Each function is called with the directory name as the sole argument
406 and should return either a buffer or nil."
407 :type '(hook :options (cvs-dired-noselect dired-noselect))
408 :group 'find-file)
410 ;; FIXME: also add a hook for `(thing-at-point 'filename)'
411 (defcustom file-name-at-point-functions '(ffap-guess-file-name-at-point)
412 "List of functions to try in sequence to get a file name at point.
413 Each function should return either nil or a file name found at the
414 location of point in the current buffer."
415 :type '(hook :options (ffap-guess-file-name-at-point))
416 :group 'find-file)
418 ;;;It is not useful to make this a local variable.
419 ;;;(put 'find-file-not-found-hooks 'permanent-local t)
420 (define-obsolete-variable-alias 'find-file-not-found-hooks
421 'find-file-not-found-functions "22.1")
422 (defvar find-file-not-found-functions nil
423 "List of functions to be called for `find-file' on nonexistent file.
424 These functions are called as soon as the error is detected.
425 Variable `buffer-file-name' is already set up.
426 The functions are called in the order given until one of them returns non-nil.")
428 ;;;It is not useful to make this a local variable.
429 ;;;(put 'find-file-hooks 'permanent-local t)
430 (define-obsolete-variable-alias 'find-file-hooks 'find-file-hook "22.1")
431 (defcustom find-file-hook nil
432 "List of functions to be called after a buffer is loaded from a file.
433 The buffer's local variables (if any) will have been processed before the
434 functions are called."
435 :group 'find-file
436 :type 'hook
437 :options '(auto-insert)
438 :version "22.1")
440 (define-obsolete-variable-alias 'write-file-hooks 'write-file-functions "22.1")
441 (defvar write-file-functions nil
442 "List of functions to be called before writing out a buffer to a file.
443 If one of them returns non-nil, the file is considered already written
444 and the rest are not called.
445 These hooks are considered to pertain to the visited file.
446 So any buffer-local binding of this variable is discarded if you change
447 the visited file name with \\[set-visited-file-name], but not when you
448 change the major mode.
450 This hook is not run if any of the functions in
451 `write-contents-functions' returns non-nil. Both hooks pertain
452 to how to save a buffer to file, for instance, choosing a suitable
453 coding system and setting mode bits. (See Info
454 node `(elisp)Saving Buffers'.) To perform various checks or
455 updates before the buffer is saved, use `before-save-hook'.")
456 (put 'write-file-functions 'permanent-local t)
458 (defvar local-write-file-hooks nil)
459 (make-variable-buffer-local 'local-write-file-hooks)
460 (put 'local-write-file-hooks 'permanent-local t)
461 (make-obsolete-variable 'local-write-file-hooks 'write-file-functions "22.1")
463 (define-obsolete-variable-alias 'write-contents-hooks
464 'write-contents-functions "22.1")
465 (defvar write-contents-functions nil
466 "List of functions to be called before writing out a buffer to a file.
467 If one of them returns non-nil, the file is considered already written
468 and the rest are not called and neither are the functions in
469 `write-file-functions'.
471 This variable is meant to be used for hooks that pertain to the
472 buffer's contents, not to the particular visited file; thus,
473 `set-visited-file-name' does not clear this variable; but changing the
474 major mode does clear it.
476 For hooks that _do_ pertain to the particular visited file, use
477 `write-file-functions'. Both this variable and
478 `write-file-functions' relate to how a buffer is saved to file.
479 To perform various checks or updates before the buffer is saved,
480 use `before-save-hook'.")
481 (make-variable-buffer-local 'write-contents-functions)
483 (defcustom enable-local-variables t
484 "Control use of local variables in files you visit.
485 The value can be t, nil, :safe, :all, or something else.
487 A value of t means file local variables specifications are obeyed
488 if all the specified variable values are safe; if any values are
489 not safe, Emacs queries you, once, whether to set them all.
490 \(When you say yes to certain values, they are remembered as safe.)
492 :safe means set the safe variables, and ignore the rest.
493 :all means set all variables, whether safe or not.
494 (Don't set it permanently to :all.)
495 A value of nil means always ignore the file local variables.
497 Any other value means always query you once whether to set them all.
498 \(When you say yes to certain values, they are remembered as safe, but
499 this has no effect when `enable-local-variables' is \"something else\".)
501 This variable also controls use of major modes specified in
502 a -*- line.
504 The command \\[normal-mode], when used interactively,
505 always obeys file local variable specifications and the -*- line,
506 and ignores this variable."
507 :risky t
508 :type '(choice (const :tag "Query Unsafe" t)
509 (const :tag "Safe Only" :safe)
510 (const :tag "Do all" :all)
511 (const :tag "Ignore" nil)
512 (other :tag "Query" other))
513 :group 'find-file)
515 (defvar enable-dir-local-variables t
516 "Non-nil means enable use of directory-local variables.
517 Some modes may wish to set this to nil to prevent directory-local
518 settings being applied, but still respect file-local ones.")
520 ;; This is an odd variable IMO.
521 ;; You might wonder why it is needed, when we could just do:
522 ;; (set (make-local-variable 'enable-local-variables) nil)
523 ;; These two are not precisely the same.
524 ;; Setting this variable does not cause -*- mode settings to be
525 ;; ignored, whereas setting enable-local-variables does.
526 ;; Only three places in Emacs use this variable: tar and arc modes,
527 ;; and rmail. The first two don't need it. They already use
528 ;; inhibit-local-variables-regexps, which is probably enough, and
529 ;; could also just set enable-local-variables locally to nil.
530 ;; Them setting it has the side-effect that dir-locals cannot apply to
531 ;; eg tar files (?). FIXME Is this appropriate?
532 ;; AFAICS, rmail is the only thing that needs this, and the only
533 ;; reason it uses it is for BABYL files (which are obsolete).
534 ;; These contain "-*- rmail -*-" in the first line, which rmail wants
535 ;; to respect, so that find-file on a BABYL file will switch to
536 ;; rmail-mode automatically (this is nice, but hardly essential,
537 ;; since most people are used to explicitly running a command to
538 ;; access their mail; M-x gnus etc). Rmail files may happen to
539 ;; contain Local Variables sections in messages, which Rmail wants to
540 ;; ignore. So AFAICS the only reason this variable exists is for a
541 ;; minor convenience feature for handling of an obsolete Rmail file format.
542 (defvar local-enable-local-variables t
543 "Like `enable-local-variables' but meant for buffer-local bindings.
544 The meaningful values are nil and non-nil. The default is non-nil.
545 If a major mode sets this to nil, buffer-locally, then any local
546 variables list in a file visited in that mode will be ignored.
548 This variable does not affect the use of major modes specified
549 in a -*- line.")
551 (defcustom enable-local-eval 'maybe
552 "Control processing of the \"variable\" `eval' in a file's local variables.
553 The value can be t, nil or something else.
554 A value of t means obey `eval' variables.
555 A value of nil means ignore them; anything else means query."
556 :risky t
557 :type '(choice (const :tag "Obey" t)
558 (const :tag "Ignore" nil)
559 (other :tag "Query" other))
560 :group 'find-file)
562 (defcustom view-read-only nil
563 "Non-nil means buffers visiting files read-only do so in view mode.
564 In fact, this means that all read-only buffers normally have
565 View mode enabled, including buffers that are read-only because
566 you visit a file you cannot alter, and buffers you make read-only
567 using \\[read-only-mode]."
568 :type 'boolean
569 :group 'view)
571 (defvar file-name-history nil
572 "History list of file names entered in the minibuffer.
574 Maximum length of the history list is determined by the value
575 of `history-length', which see.")
577 (put 'ange-ftp-completion-hook-function 'safe-magic t)
578 (defun ange-ftp-completion-hook-function (op &rest args)
579 "Provides support for ange-ftp host name completion.
580 Runs the usual ange-ftp hook, but only for completion operations."
581 ;; Having this here avoids the need to load ange-ftp when it's not
582 ;; really in use.
583 (if (memq op '(file-name-completion file-name-all-completions))
584 (apply 'ange-ftp-hook-function op args)
585 (let ((inhibit-file-name-handlers
586 (cons 'ange-ftp-completion-hook-function
587 (and (eq inhibit-file-name-operation op)
588 inhibit-file-name-handlers)))
589 (inhibit-file-name-operation op))
590 (apply op args))))
592 (declare-function dos-convert-standard-filename "dos-fns.el" (filename))
593 (declare-function w32-convert-standard-filename "w32-fns.el" (filename))
595 (defun convert-standard-filename (filename)
596 "Convert a standard file's name to something suitable for the OS.
597 This means to guarantee valid names and perhaps to canonicalize
598 certain patterns.
600 FILENAME should be an absolute file name since the conversion rules
601 sometimes vary depending on the position in the file name. E.g. c:/foo
602 is a valid DOS file name, but c:/bar/c:/foo is not.
604 This function's standard definition is trivial; it just returns
605 the argument. However, on Windows and DOS, replace invalid
606 characters. On DOS, make sure to obey the 8.3 limitations.
607 In the native Windows build, turn Cygwin names into native names,
608 and also turn slashes into backslashes if the shell requires it (see
609 `w32-shell-dos-semantics').
611 See Info node `(elisp)Standard File Names' for more details."
612 (cond
613 ((eq system-type 'cygwin)
614 (let ((name (copy-sequence filename))
615 (start 0))
616 ;; Replace invalid filename characters with !
617 (while (string-match "[?*:<>|\"\000-\037]" name start)
618 (aset name (match-beginning 0) ?!)
619 (setq start (match-end 0)))
620 name))
621 ((eq system-type 'windows-nt)
622 (w32-convert-standard-filename filename))
623 ((eq system-type 'ms-dos)
624 (dos-convert-standard-filename filename))
625 (t filename)))
627 (defun read-directory-name (prompt &optional dir default-dirname mustmatch initial)
628 "Read directory name, prompting with PROMPT and completing in directory DIR.
629 Value is not expanded---you must call `expand-file-name' yourself.
630 Default name to DEFAULT-DIRNAME if user exits with the same
631 non-empty string that was inserted by this function.
632 (If DEFAULT-DIRNAME is omitted, DIR combined with INITIAL is used,
633 or just DIR if INITIAL is nil.)
634 If the user exits with an empty minibuffer, this function returns
635 an empty string. (This can only happen if the user erased the
636 pre-inserted contents or if `insert-default-directory' is nil.)
637 Fourth arg MUSTMATCH non-nil means require existing directory's name.
638 Non-nil and non-t means also require confirmation after completion.
639 Fifth arg INITIAL specifies text to start with.
640 DIR should be an absolute directory name. It defaults to
641 the value of `default-directory'."
642 (unless dir
643 (setq dir default-directory))
644 (read-file-name prompt dir (or default-dirname
645 (if initial (expand-file-name initial dir)
646 dir))
647 mustmatch initial
648 'file-directory-p))
651 (defun pwd ()
652 "Show the current default directory."
653 (interactive nil)
654 (message "Directory %s" default-directory))
656 (defvar cd-path nil
657 "Value of the CDPATH environment variable, as a list.
658 Not actually set up until the first time you use it.")
660 (defun parse-colon-path (search-path)
661 "Explode a search path into a list of directory names.
662 Directories are separated by `path-separator' (which is colon in
663 GNU and Unix systems). Substitute environment variables into the
664 resulting list of directory names. For an empty path element (i.e.,
665 a leading or trailing separator, or two adjacent separators), return
666 nil (meaning `default-directory') as the associated list element."
667 (when (stringp search-path)
668 (mapcar (lambda (f)
669 (if (equal "" f) nil
670 (substitute-in-file-name (file-name-as-directory f))))
671 (split-string search-path path-separator))))
673 (defun cd-absolute (dir)
674 "Change current directory to given absolute file name DIR."
675 ;; Put the name into directory syntax now,
676 ;; because otherwise expand-file-name may give some bad results.
677 (setq dir (file-name-as-directory dir))
678 ;; We used to additionally call abbreviate-file-name here, for an
679 ;; unknown reason. Problem is that most buffers are setup
680 ;; without going through cd-absolute and don't call
681 ;; abbreviate-file-name on their default-directory, so the few that
682 ;; do end up using a superficially different directory.
683 (setq dir (expand-file-name dir))
684 (if (not (file-directory-p dir))
685 (if (file-exists-p dir)
686 (error "%s is not a directory" dir)
687 (error "%s: no such directory" dir))
688 (unless (file-accessible-directory-p dir)
689 (error "Cannot cd to %s: Permission denied" dir))
690 (setq default-directory dir)
691 (setq list-buffers-directory dir)))
693 (defun cd (dir)
694 "Make DIR become the current buffer's default directory.
695 If your environment includes a `CDPATH' variable, try each one of
696 that list of directories (separated by occurrences of
697 `path-separator') when resolving a relative directory name.
698 The path separator is colon in GNU and GNU-like systems."
699 (interactive
700 (list
701 ;; FIXME: There's a subtle bug in the completion below. Seems linked
702 ;; to a fundamental difficulty of implementing `predicate' correctly.
703 ;; The manifestation is that TAB may list non-directories in the case where
704 ;; those files also correspond to valid directories (if your cd-path is (A/
705 ;; B/) and you have A/a a file and B/a a directory, then both `a' and `a/'
706 ;; will be listed as valid completions).
707 ;; This is because `a' (listed because of A/a) is indeed a valid choice
708 ;; (which will lead to the use of B/a).
709 (minibuffer-with-setup-hook
710 (lambda ()
711 (setq minibuffer-completion-table
712 (apply-partially #'locate-file-completion-table
713 cd-path nil))
714 (setq minibuffer-completion-predicate
715 (lambda (dir)
716 (locate-file dir cd-path nil
717 (lambda (f) (and (file-directory-p f) 'dir-ok))))))
718 (unless cd-path
719 (setq cd-path (or (parse-colon-path (getenv "CDPATH"))
720 (list "./"))))
721 (read-directory-name "Change default directory: "
722 default-directory default-directory
723 t))))
724 (unless cd-path
725 (setq cd-path (or (parse-colon-path (getenv "CDPATH"))
726 (list "./"))))
727 (cd-absolute
728 (or (locate-file dir cd-path nil
729 (lambda (f) (and (file-directory-p f) 'dir-ok)))
730 (error "No such directory found via CDPATH environment variable"))))
732 (defun file-tree-walk (dir action &rest args)
733 "Walk DIR executing ACTION on each file, with ARGS as additional arguments.
734 For each file, the function calls ACTION as follows:
736 \(ACTION DIRECTORY BASENAME ARGS\)
738 Where DIRECTORY is the leading directory of the file,
739 BASENAME is the basename of the file,
740 and ARGS are as specified in the call to this function, or nil if omitted.
742 The ACTION is applied to each subdirectory before descending into
743 it, and if nil is returned at that point, the descent will be
744 prevented. Directory entries are sorted with string-lessp."
745 (cond ((file-directory-p dir)
746 (setq dir (file-name-as-directory dir))
747 (let ((lst (directory-files dir nil nil t))
748 fullname file)
749 (while lst
750 (setq file (car lst))
751 (setq lst (cdr lst))
752 (cond ((member file '("." "..")))
754 (and (apply action dir file args)
755 (setq fullname (concat dir file))
756 (file-directory-p fullname)
757 (apply 'file-tree-walk fullname action args)))))))
759 (apply action
760 (file-name-directory dir)
761 (file-name-nondirectory dir)
762 args))))
764 (defsubst directory-name-p (name)
765 "Return non-nil if NAME ends with a slash character."
766 (and (> (length name) 0)
767 (char-equal (aref name (1- (length name))) ?/)))
769 (defun directory-files-recursively (dir match &optional include-directories)
770 "Return all files under DIR that have file names matching MATCH (a regexp).
771 This function works recursively. Files are returned in \"depth first\"
772 and alphabetical order.
773 If INCLUDE-DIRECTORIES, also include directories that have matching names."
774 (let ((result nil)
775 (files nil))
776 (dolist (file (sort (file-name-all-completions "" dir)
777 'string<))
778 (unless (member file '("./" "../"))
779 (if (directory-name-p file)
780 (let* ((leaf (substring file 0 (1- (length file))))
781 (path (expand-file-name leaf dir)))
782 ;; Don't follow symlinks to other directories.
783 (unless (file-symlink-p path)
784 (setq result (nconc result (directory-files-recursively
785 path match include-directories))))
786 (when (and include-directories
787 (string-match match leaf))
788 (setq result (nconc result (list path)))))
789 (when (string-match match file)
790 (push (expand-file-name file dir) files)))))
791 (nconc result (nreverse files))))
793 (defun load-file (file)
794 "Load the Lisp file named FILE."
795 ;; This is a case where .elc makes a lot of sense.
796 (interactive (list (let ((completion-ignored-extensions
797 (remove ".elc" completion-ignored-extensions)))
798 (read-file-name "Load file: " nil nil 'lambda))))
799 (load (expand-file-name file) nil nil t))
801 (defun locate-file (filename path &optional suffixes predicate)
802 "Search for FILENAME through PATH.
803 If found, return the absolute file name of FILENAME; otherwise
804 return nil.
805 PATH should be a list of directories to look in, like the lists in
806 `exec-path' or `load-path'.
807 If SUFFIXES is non-nil, it should be a list of suffixes to append to
808 file name when searching. If SUFFIXES is nil, it is equivalent to '(\"\").
809 Use '(\"/\") to disable PATH search, but still try the suffixes in SUFFIXES.
810 If non-nil, PREDICATE is used instead of `file-readable-p'.
812 This function will normally skip directories, so if you want it to find
813 directories, make sure the PREDICATE function returns `dir-ok' for them.
815 PREDICATE can also be an integer to pass to the `access' system call,
816 in which case file-name handlers are ignored. This usage is deprecated.
817 For compatibility, PREDICATE can also be one of the symbols
818 `executable', `readable', `writable', or `exists', or a list of
819 one or more of those symbols."
820 (if (and predicate (symbolp predicate) (not (functionp predicate)))
821 (setq predicate (list predicate)))
822 (when (and (consp predicate) (not (functionp predicate)))
823 (setq predicate
824 (logior (if (memq 'executable predicate) 1 0)
825 (if (memq 'writable predicate) 2 0)
826 (if (memq 'readable predicate) 4 0))))
827 (locate-file-internal filename path suffixes predicate))
829 (defun locate-file-completion-table (dirs suffixes string pred action)
830 "Do completion for file names passed to `locate-file'."
831 (cond
832 ((file-name-absolute-p string)
833 ;; FIXME: maybe we should use completion-file-name-table instead,
834 ;; tho at least for `load', the arg is passed through
835 ;; substitute-in-file-name for historical reasons.
836 (read-file-name-internal string pred action))
837 ((eq (car-safe action) 'boundaries)
838 (let ((suffix (cdr action)))
839 `(boundaries
840 ,(length (file-name-directory string))
841 ,@(let ((x (file-name-directory suffix)))
842 (if x (1- (length x)) (length suffix))))))
844 (let ((names '())
845 ;; If we have files like "foo.el" and "foo.elc", we could load one of
846 ;; them with "foo.el", "foo.elc", or "foo", where just "foo" is the
847 ;; preferred way. So if we list all 3, that gives a lot of redundant
848 ;; entries for the poor soul looking just for "foo". OTOH, sometimes
849 ;; the user does want to pay attention to the extension. We try to
850 ;; diffuse this tension by stripping the suffix, except when the
851 ;; result is a single element (i.e. usually we only list "foo" unless
852 ;; it's the only remaining element in the list, in which case we do
853 ;; list "foo", "foo.elc" and "foo.el").
854 (fullnames '())
855 (suffix (concat (regexp-opt suffixes t) "\\'"))
856 (string-dir (file-name-directory string))
857 (string-file (file-name-nondirectory string)))
858 (dolist (dir dirs)
859 (unless dir
860 (setq dir default-directory))
861 (if string-dir (setq dir (expand-file-name string-dir dir)))
862 (when (file-directory-p dir)
863 (dolist (file (file-name-all-completions
864 string-file dir))
865 (if (not (string-match suffix file))
866 (push file names)
867 (push file fullnames)
868 (push (substring file 0 (match-beginning 0)) names)))))
869 ;; Switching from names to names+fullnames creates a non-monotonicity
870 ;; which can cause problems with things like partial-completion.
871 ;; To minimize the problem, filter out completion-regexp-list, so that
872 ;; M-x load-library RET t/x.e TAB finds some files. Also remove elements
873 ;; from `names' which only matched `string' when they still had
874 ;; their suffix.
875 (setq names (all-completions string names))
876 ;; Remove duplicates of the first element, so that we can easily check
877 ;; if `names' really only contains a single element.
878 (when (cdr names) (setcdr names (delete (car names) (cdr names))))
879 (unless (cdr names)
880 ;; There's no more than one matching non-suffixed element, so expand
881 ;; the list by adding the suffixed elements as well.
882 (setq names (nconc names fullnames)))
883 (completion-table-with-context
884 string-dir names string-file pred action)))))
886 (defun locate-file-completion (string path-and-suffixes action)
887 "Do completion for file names passed to `locate-file'.
888 PATH-AND-SUFFIXES is a pair of lists, (DIRECTORIES . SUFFIXES)."
889 (declare (obsolete locate-file-completion-table "23.1"))
890 (locate-file-completion-table (car path-and-suffixes)
891 (cdr path-and-suffixes)
892 string nil action))
894 (defvar locate-dominating-stop-dir-regexp
895 (purecopy "\\`\\(?:[\\/][\\/][^\\/]+[\\/]\\|/\\(?:net\\|afs\\|\\.\\.\\.\\)/\\)\\'")
896 "Regexp of directory names which stop the search in `locate-dominating-file'.
897 Any directory whose name matches this regexp will be treated like
898 a kind of root directory by `locate-dominating-file' which will stop its search
899 when it bumps into it.
900 The default regexp prevents fruitless and time-consuming attempts to find
901 special files in directories in which filenames are interpreted as hostnames,
902 or mount points potentially requiring authentication as a different user.")
904 ;; (defun locate-dominating-files (file regexp)
905 ;; "Look up the directory hierarchy from FILE for a file matching REGEXP.
906 ;; Stop at the first parent where a matching file is found and return the list
907 ;; of files that that match in this directory."
908 ;; (catch 'found
909 ;; ;; `user' is not initialized yet because `file' may not exist, so we may
910 ;; ;; have to walk up part of the hierarchy before we find the "initial UID".
911 ;; (let ((user nil)
912 ;; ;; Abbreviate, so as to stop when we cross ~/.
913 ;; (dir (abbreviate-file-name (file-name-as-directory file)))
914 ;; files)
915 ;; (while (and dir
916 ;; ;; As a heuristic, we stop looking up the hierarchy of
917 ;; ;; directories as soon as we find a directory belonging to
918 ;; ;; another user. This should save us from looking in
919 ;; ;; things like /net and /afs. This assumes that all the
920 ;; ;; files inside a project belong to the same user.
921 ;; (let ((prev-user user))
922 ;; (setq user (nth 2 (file-attributes dir)))
923 ;; (or (null prev-user) (equal user prev-user))))
924 ;; (if (setq files (condition-case nil
925 ;; (directory-files dir 'full regexp 'nosort)
926 ;; (error nil)))
927 ;; (throw 'found files)
928 ;; (if (equal dir
929 ;; (setq dir (file-name-directory
930 ;; (directory-file-name dir))))
931 ;; (setq dir nil))))
932 ;; nil)))
934 (defun locate-dominating-file (file name)
935 "Look up the directory hierarchy from FILE for a directory containing NAME.
936 Stop at the first parent directory containing a file NAME,
937 and return the directory. Return nil if not found.
938 Instead of a string, NAME can also be a predicate taking one argument
939 \(a directory) and returning a non-nil value if that directory is the one for
940 which we're looking."
941 ;; We used to use the above locate-dominating-files code, but the
942 ;; directory-files call is very costly, so we're much better off doing
943 ;; multiple calls using the code in here.
945 ;; Represent /home/luser/foo as ~/foo so that we don't try to look for
946 ;; `name' in /home or in /.
947 (setq file (abbreviate-file-name (expand-file-name file)))
948 (let ((root nil)
949 ;; `user' is not initialized outside the loop because
950 ;; `file' may not exist, so we may have to walk up part of the
951 ;; hierarchy before we find the "initial UID". Note: currently unused
952 ;; (user nil)
953 try)
954 (while (not (or root
955 (null file)
956 ;; FIXME: Disabled this heuristic because it is sometimes
957 ;; inappropriate.
958 ;; As a heuristic, we stop looking up the hierarchy of
959 ;; directories as soon as we find a directory belonging
960 ;; to another user. This should save us from looking in
961 ;; things like /net and /afs. This assumes that all the
962 ;; files inside a project belong to the same user.
963 ;; (let ((prev-user user))
964 ;; (setq user (nth 2 (file-attributes file)))
965 ;; (and prev-user (not (equal user prev-user))))
966 (string-match locate-dominating-stop-dir-regexp file)))
967 (setq try (if (stringp name)
968 (file-exists-p (expand-file-name name file))
969 (funcall name file)))
970 (cond (try (setq root file))
971 ((equal file (setq file (file-name-directory
972 (directory-file-name file))))
973 (setq file nil))))
974 (if root (file-name-as-directory root))))
976 (defcustom user-emacs-directory-warning t
977 "Non-nil means warn if cannot access `user-emacs-directory'.
978 Set this to nil at your own risk..."
979 :type 'boolean
980 :group 'initialization
981 :version "24.4")
983 (defun locate-user-emacs-file (new-name &optional old-name)
984 "Return an absolute per-user Emacs-specific file name.
985 If NEW-NAME exists in `user-emacs-directory', return it.
986 Else if OLD-NAME is non-nil and ~/OLD-NAME exists, return ~/OLD-NAME.
987 Else return NEW-NAME in `user-emacs-directory', creating the
988 directory if it does not exist."
989 (convert-standard-filename
990 (let* ((home (concat "~" (or init-file-user "")))
991 (at-home (and old-name (expand-file-name old-name home)))
992 (bestname (abbreviate-file-name
993 (expand-file-name new-name user-emacs-directory))))
994 (if (and at-home (not (file-readable-p bestname))
995 (file-readable-p at-home))
996 at-home
997 ;; Make sure `user-emacs-directory' exists,
998 ;; unless we're in batch mode or dumping Emacs.
999 (or noninteractive
1000 purify-flag
1001 (let (errtype)
1002 (if (file-directory-p user-emacs-directory)
1003 (or (file-accessible-directory-p user-emacs-directory)
1004 (setq errtype "access"))
1005 (with-file-modes ?\700
1006 (condition-case nil
1007 (make-directory user-emacs-directory)
1008 (error (setq errtype "create")))))
1009 (when (and errtype
1010 user-emacs-directory-warning
1011 (not (get 'user-emacs-directory-warning 'this-session)))
1012 ;; Only warn once per Emacs session.
1013 (put 'user-emacs-directory-warning 'this-session t)
1014 (display-warning 'initialization
1015 (format "\
1016 Unable to %s `user-emacs-directory' (%s).
1017 Any data that would normally be written there may be lost!
1018 If you never want to see this message again,
1019 customize the variable `user-emacs-directory-warning'."
1020 errtype user-emacs-directory)))))
1021 bestname))))
1024 (defun executable-find (command)
1025 "Search for COMMAND in `exec-path' and return the absolute file name.
1026 Return nil if COMMAND is not found anywhere in `exec-path'."
1027 ;; Use 1 rather than file-executable-p to better match the behavior of
1028 ;; call-process.
1029 (locate-file command exec-path exec-suffixes 1))
1031 (defun load-library (library)
1032 "Load the Emacs Lisp library named LIBRARY.
1033 This is an interface to the function `load'. LIBRARY is searched
1034 for in `load-path', both with and without `load-suffixes' (as
1035 well as `load-file-rep-suffixes').
1037 See Info node `(emacs)Lisp Libraries' for more details.
1038 See `load-file' for a different interface to `load'."
1039 (interactive
1040 (list (completing-read "Load library: "
1041 (apply-partially 'locate-file-completion-table
1042 load-path
1043 (get-load-suffixes)))))
1044 (load library))
1046 (defun file-remote-p (file &optional identification connected)
1047 "Test whether FILE specifies a location on a remote system.
1048 A file is considered remote if accessing it is likely to
1049 be slower or less reliable than accessing local files.
1051 `file-remote-p' never opens a new remote connection. It can
1052 only reuse a connection that is already open.
1054 Return nil or a string identifying the remote connection
1055 \(ideally a prefix of FILE). Return nil if FILE is a relative
1056 file name.
1058 When IDENTIFICATION is nil, the returned string is a complete
1059 remote identifier: with components method, user, and host. The
1060 components are those present in FILE, with defaults filled in for
1061 any that are missing.
1063 IDENTIFICATION can specify which part of the identification to
1064 return. IDENTIFICATION can be the symbol `method', `user',
1065 `host', or `localname'. Any other value is handled like nil and
1066 means to return the complete identification. The string returned
1067 for IDENTIFICATION `localname' can differ depending on whether
1068 there is an existing connection.
1070 If CONNECTED is non-nil, return an identification only if FILE is
1071 located on a remote system and a connection is established to
1072 that remote system.
1074 Tip: You can use this expansion of remote identifier components
1075 to derive a new remote file name from an existing one. For
1076 example, if FILE is \"/sudo::/path/to/file\" then
1078 \(concat \(file-remote-p FILE) \"/bin/sh\")
1080 returns a remote file name for file \"/bin/sh\" that has the
1081 same remote identifier as FILE but expanded; a name such as
1082 \"/sudo:root@myhost:/bin/sh\"."
1083 (let ((handler (find-file-name-handler file 'file-remote-p)))
1084 (if handler
1085 (funcall handler 'file-remote-p file identification connected)
1086 nil)))
1088 ;; Probably this entire variable should be obsolete now, in favor of
1089 ;; something Tramp-related (?). It is not used in many places.
1090 ;; It's not clear what the best file for this to be in is, but given
1091 ;; it uses custom-initialize-delay, it is easier if it is preloaded
1092 ;; rather than autoloaded.
1093 (defcustom remote-shell-program
1094 ;; This used to try various hard-coded places for remsh, rsh, and
1095 ;; rcmd, trying to guess based on location whether "rsh" was
1096 ;; "restricted shell" or "remote shell", but I don't see the point
1097 ;; in this day and age. Almost everyone will use ssh, and have
1098 ;; whatever command they want to use in PATH.
1099 (purecopy
1100 (let ((list '("ssh" "remsh" "rcmd" "rsh")))
1101 (while (and list
1102 (not (executable-find (car list)))
1103 (setq list (cdr list))))
1104 (or (car list) "ssh")))
1105 "Program to use to execute commands on a remote host (e.g. ssh or rsh)."
1106 :version "24.3" ; ssh rather than rsh, etc
1107 :initialize 'custom-initialize-delay
1108 :group 'environment
1109 :type 'file)
1111 (defcustom remote-file-name-inhibit-cache 10
1112 "Whether to use the remote file-name cache for read access.
1113 When `nil', never expire cached values (caution)
1114 When `t', never use the cache (safe, but may be slow)
1115 A number means use cached values for that amount of seconds since caching.
1117 The attributes of remote files are cached for better performance.
1118 If they are changed outside of Emacs's control, the cached values
1119 become invalid, and must be reread. If you are sure that nothing
1120 other than Emacs changes the files, you can set this variable to `nil'.
1122 If a remote file is checked regularly, it might be a good idea to
1123 let-bind this variable to a value less than the interval between
1124 consecutive checks. For example:
1126 (defun display-time-file-nonempty-p (file)
1127 (let ((remote-file-name-inhibit-cache (- display-time-interval 5)))
1128 (and (file-exists-p file)
1129 (< 0 (nth 7 (file-attributes (file-chase-links file)))))))"
1130 :group 'files
1131 :version "24.1"
1132 :type `(choice
1133 (const :tag "Do not inhibit file name cache" nil)
1134 (const :tag "Do not use file name cache" t)
1135 (integer :tag "Do not use file name cache"
1136 :format "Do not use file name cache older then %v seconds"
1137 :value 10)))
1139 (defun file-local-copy (file)
1140 "Copy the file FILE into a temporary file on this machine.
1141 Returns the name of the local copy, or nil, if FILE is directly
1142 accessible."
1143 ;; This formerly had an optional BUFFER argument that wasn't used by
1144 ;; anything.
1145 (let ((handler (find-file-name-handler file 'file-local-copy)))
1146 (if handler
1147 (funcall handler 'file-local-copy file)
1148 nil)))
1150 (defun file-truename (filename &optional counter prev-dirs)
1151 "Return the truename of FILENAME.
1152 If FILENAME is not absolute, first expands it against `default-directory'.
1153 The truename of a file name is found by chasing symbolic links
1154 both at the level of the file and at the level of the directories
1155 containing it, until no links are left at any level.
1157 \(fn FILENAME)" ;; Don't document the optional arguments.
1158 ;; COUNTER and PREV-DIRS are only used in recursive calls.
1159 ;; COUNTER can be a cons cell whose car is the count of how many
1160 ;; more links to chase before getting an error.
1161 ;; PREV-DIRS can be a cons cell whose car is an alist
1162 ;; of truenames we've just recently computed.
1163 (cond ((or (string= filename "") (string= filename "~"))
1164 (setq filename (expand-file-name filename))
1165 (if (string= filename "")
1166 (setq filename "/")))
1167 ((and (string= (substring filename 0 1) "~")
1168 (string-match "~[^/]*/?" filename))
1169 (let ((first-part
1170 (substring filename 0 (match-end 0)))
1171 (rest (substring filename (match-end 0))))
1172 (setq filename (concat (expand-file-name first-part) rest)))))
1174 (or counter (setq counter (list 100)))
1175 (let (done
1176 ;; For speed, remove the ange-ftp completion handler from the list.
1177 ;; We know it's not needed here.
1178 ;; For even more speed, do this only on the outermost call.
1179 (file-name-handler-alist
1180 (if prev-dirs file-name-handler-alist
1181 (let ((tem (copy-sequence file-name-handler-alist)))
1182 (delq (rassq 'ange-ftp-completion-hook-function tem) tem)))))
1183 (or prev-dirs (setq prev-dirs (list nil)))
1185 ;; andrewi@harlequin.co.uk - on Windows, there is an issue with
1186 ;; case differences being ignored by the OS, and short "8.3 DOS"
1187 ;; name aliases existing for all files. (The short names are not
1188 ;; reported by directory-files, but can be used to refer to files.)
1189 ;; It seems appropriate for file-truename to resolve these issues in
1190 ;; the most natural way, which on Windows is to call the function
1191 ;; `w32-long-file-name' - this returns the exact name of a file as
1192 ;; it is stored on disk (expanding short name aliases with the full
1193 ;; name in the process).
1194 (if (eq system-type 'windows-nt)
1195 (unless (string-match "[[*?]" filename)
1196 ;; If filename exists, use its long name. If it doesn't
1197 ;; exist, the recursion below on the directory of filename
1198 ;; will drill down until we find a directory that exists,
1199 ;; and use the long name of that, with the extra
1200 ;; non-existent path components concatenated.
1201 (let ((longname (w32-long-file-name filename)))
1202 (if longname
1203 (setq filename longname)))))
1205 ;; If this file directly leads to a link, process that iteratively
1206 ;; so that we don't use lots of stack.
1207 (while (not done)
1208 (setcar counter (1- (car counter)))
1209 (if (< (car counter) 0)
1210 (error "Apparent cycle of symbolic links for %s" filename))
1211 (let ((handler (find-file-name-handler filename 'file-truename)))
1212 ;; For file name that has a special handler, call handler.
1213 ;; This is so that ange-ftp can save time by doing a no-op.
1214 (if handler
1215 (setq filename (funcall handler 'file-truename filename)
1216 done t)
1217 (let ((dir (or (file-name-directory filename) default-directory))
1218 target dirfile)
1219 ;; Get the truename of the directory.
1220 (setq dirfile (directory-file-name dir))
1221 ;; If these are equal, we have the (or a) root directory.
1222 (or (string= dir dirfile)
1223 (and (memq system-type '(windows-nt ms-dos cygwin))
1224 (eq (compare-strings dir 0 nil dirfile 0 nil t) t))
1225 ;; If this is the same dir we last got the truename for,
1226 ;; save time--don't recalculate.
1227 (if (assoc dir (car prev-dirs))
1228 (setq dir (cdr (assoc dir (car prev-dirs))))
1229 (let ((old dir)
1230 (new (file-name-as-directory (file-truename dirfile counter prev-dirs))))
1231 (setcar prev-dirs (cons (cons old new) (car prev-dirs)))
1232 (setq dir new))))
1233 (if (equal ".." (file-name-nondirectory filename))
1234 (setq filename
1235 (directory-file-name (file-name-directory (directory-file-name dir)))
1236 done t)
1237 (if (equal "." (file-name-nondirectory filename))
1238 (setq filename (directory-file-name dir)
1239 done t)
1240 ;; Put it back on the file name.
1241 (setq filename (concat dir (file-name-nondirectory filename)))
1242 ;; Is the file name the name of a link?
1243 (setq target (file-symlink-p filename))
1244 (if target
1245 ;; Yes => chase that link, then start all over
1246 ;; since the link may point to a directory name that uses links.
1247 ;; We can't safely use expand-file-name here
1248 ;; since target might look like foo/../bar where foo
1249 ;; is itself a link. Instead, we handle . and .. above.
1250 (setq filename
1251 (if (file-name-absolute-p target)
1252 target
1253 (concat dir target))
1254 done nil)
1255 ;; No, we are done!
1256 (setq done t))))))))
1257 filename))
1259 (defun file-chase-links (filename &optional limit)
1260 "Chase links in FILENAME until a name that is not a link.
1261 Unlike `file-truename', this does not check whether a parent
1262 directory name is a symbolic link.
1263 If the optional argument LIMIT is a number,
1264 it means chase no more than that many links and then stop."
1265 (let (tem (newname filename)
1266 (count 0))
1267 (while (and (or (null limit) (< count limit))
1268 (setq tem (file-symlink-p newname)))
1269 (save-match-data
1270 (if (and (null limit) (= count 100))
1271 (error "Apparent cycle of symbolic links for %s" filename))
1272 ;; In the context of a link, `//' doesn't mean what Emacs thinks.
1273 (while (string-match "//+" tem)
1274 (setq tem (replace-match "/" nil nil tem)))
1275 ;; Handle `..' by hand, since it needs to work in the
1276 ;; target of any directory symlink.
1277 ;; This code is not quite complete; it does not handle
1278 ;; embedded .. in some cases such as ./../foo and foo/bar/../../../lose.
1279 (while (string-match "\\`\\.\\./" tem)
1280 (setq tem (substring tem 3))
1281 (setq newname (expand-file-name newname))
1282 ;; Chase links in the default dir of the symlink.
1283 (setq newname
1284 (file-chase-links
1285 (directory-file-name (file-name-directory newname))))
1286 ;; Now find the parent of that dir.
1287 (setq newname (file-name-directory newname)))
1288 (setq newname (expand-file-name tem (file-name-directory newname)))
1289 (setq count (1+ count))))
1290 newname))
1292 ;; A handy function to display file sizes in human-readable form.
1293 ;; See http://en.wikipedia.org/wiki/Kibibyte for the reference.
1294 (defun file-size-human-readable (file-size &optional flavor)
1295 "Produce a string showing FILE-SIZE in human-readable form.
1297 Optional second argument FLAVOR controls the units and the display format:
1299 If FLAVOR is nil or omitted, each kilobyte is 1024 bytes and the produced
1300 suffixes are \"k\", \"M\", \"G\", \"T\", etc.
1301 If FLAVOR is `si', each kilobyte is 1000 bytes and the produced suffixes
1302 are \"k\", \"M\", \"G\", \"T\", etc.
1303 If FLAVOR is `iec', each kilobyte is 1024 bytes and the produced suffixes
1304 are \"KiB\", \"MiB\", \"GiB\", \"TiB\", etc."
1305 (let ((power (if (or (null flavor) (eq flavor 'iec))
1306 1024.0
1307 1000.0))
1308 (post-fixes
1309 ;; none, kilo, mega, giga, tera, peta, exa, zetta, yotta
1310 (list "" "k" "M" "G" "T" "P" "E" "Z" "Y")))
1311 (while (and (>= file-size power) (cdr post-fixes))
1312 (setq file-size (/ file-size power)
1313 post-fixes (cdr post-fixes)))
1314 (format (if (> (mod file-size 1.0) 0.05)
1315 "%.1f%s%s"
1316 "%.0f%s%s")
1317 file-size
1318 (if (and (eq flavor 'iec) (string= (car post-fixes) "k"))
1320 (car post-fixes))
1321 (if (eq flavor 'iec) "iB" ""))))
1323 (defun make-temp-file (prefix &optional dir-flag suffix)
1324 "Create a temporary file.
1325 The returned file name (created by appending some random characters at the end
1326 of PREFIX, and expanding against `temporary-file-directory' if necessary),
1327 is guaranteed to point to a newly created empty file.
1328 You can then use `write-region' to write new data into the file.
1330 If DIR-FLAG is non-nil, create a new empty directory instead of a file.
1332 If SUFFIX is non-nil, add that at the end of the file name."
1333 ;; Create temp files with strict access rights. It's easy to
1334 ;; loosen them later, whereas it's impossible to close the
1335 ;; time-window of loose permissions otherwise.
1336 (with-file-modes ?\700
1337 (let (file)
1338 (while (condition-case ()
1339 (progn
1340 (setq file
1341 (make-temp-name
1342 (if (zerop (length prefix))
1343 (file-name-as-directory
1344 temporary-file-directory)
1345 (expand-file-name prefix
1346 temporary-file-directory))))
1347 (if suffix
1348 (setq file (concat file suffix)))
1349 (if dir-flag
1350 (make-directory file)
1351 (write-region "" nil file nil 'silent nil 'excl))
1352 nil)
1353 (file-already-exists t))
1354 ;; the file was somehow created by someone else between
1355 ;; `make-temp-name' and `write-region', let's try again.
1356 nil)
1357 file)))
1359 (defun recode-file-name (file coding new-coding &optional ok-if-already-exists)
1360 "Change the encoding of FILE's name from CODING to NEW-CODING.
1361 The value is a new name of FILE.
1362 Signals a `file-already-exists' error if a file of the new name
1363 already exists unless optional fourth argument OK-IF-ALREADY-EXISTS
1364 is non-nil. A number as fourth arg means request confirmation if
1365 the new name already exists. This is what happens in interactive
1366 use with M-x."
1367 (interactive
1368 (let ((default-coding (or file-name-coding-system
1369 default-file-name-coding-system))
1370 (filename (read-file-name "Recode filename: " nil nil t))
1371 from-coding to-coding)
1372 (if (and default-coding
1373 ;; We provide the default coding only when it seems that
1374 ;; the filename is correctly decoded by the default
1375 ;; coding.
1376 (let ((charsets (find-charset-string filename)))
1377 (and (not (memq 'eight-bit-control charsets))
1378 (not (memq 'eight-bit-graphic charsets)))))
1379 (setq from-coding (read-coding-system
1380 (format "Recode filename %s from (default %s): "
1381 filename default-coding)
1382 default-coding))
1383 (setq from-coding (read-coding-system
1384 (format "Recode filename %s from: " filename))))
1386 ;; We provide the default coding only when a user is going to
1387 ;; change the encoding not from the default coding.
1388 (if (eq from-coding default-coding)
1389 (setq to-coding (read-coding-system
1390 (format "Recode filename %s from %s to: "
1391 filename from-coding)))
1392 (setq to-coding (read-coding-system
1393 (format "Recode filename %s from %s to (default %s): "
1394 filename from-coding default-coding)
1395 default-coding)))
1396 (list filename from-coding to-coding)))
1398 (let* ((default-coding (or file-name-coding-system
1399 default-file-name-coding-system))
1400 ;; FILE should have been decoded by DEFAULT-CODING.
1401 (encoded (encode-coding-string file default-coding))
1402 (newname (decode-coding-string encoded coding))
1403 (new-encoded (encode-coding-string newname new-coding))
1404 ;; Suppress further encoding.
1405 (file-name-coding-system nil)
1406 (default-file-name-coding-system nil)
1407 (locale-coding-system nil))
1408 (rename-file encoded new-encoded ok-if-already-exists)
1409 newname))
1411 (defcustom confirm-nonexistent-file-or-buffer 'after-completion
1412 "Whether confirmation is requested before visiting a new file or buffer.
1413 If nil, confirmation is not requested.
1414 If the value is `after-completion', confirmation is only
1415 requested if the user called `minibuffer-complete' right before
1416 `minibuffer-complete-and-exit'.
1417 Any other non-nil value means to request confirmation.
1419 This affects commands like `switch-to-buffer' and `find-file'."
1420 :group 'find-file
1421 :version "23.1"
1422 :type '(choice (const :tag "After completion" after-completion)
1423 (const :tag "Never" nil)
1424 (other :tag "Always" t)))
1426 (defun confirm-nonexistent-file-or-buffer ()
1427 "Whether to request confirmation before visiting a new file or buffer.
1428 The variable `confirm-nonexistent-file-or-buffer' determines the
1429 return value, which may be passed as the REQUIRE-MATCH arg to
1430 `read-buffer' or `find-file-read-args'."
1431 (cond ((eq confirm-nonexistent-file-or-buffer 'after-completion)
1432 'confirm-after-completion)
1433 (confirm-nonexistent-file-or-buffer
1434 'confirm)
1435 (t nil)))
1437 (defmacro minibuffer-with-setup-hook (fun &rest body)
1438 "Temporarily add FUN to `minibuffer-setup-hook' while executing BODY.
1439 FUN can also be (:append FUN1), in which case FUN1 is appended to
1440 `minibuffer-setup-hook'.
1442 BODY should use the minibuffer at most once.
1443 Recursive uses of the minibuffer are unaffected (FUN is not
1444 called additional times).
1446 This macro actually adds an auxiliary function that calls FUN,
1447 rather than FUN itself, to `minibuffer-setup-hook'."
1448 (declare (indent 1) (debug t))
1449 (let ((hook (make-symbol "setup-hook"))
1450 (funsym (make-symbol "fun"))
1451 (append nil))
1452 (when (eq (car-safe fun) :append)
1453 (setq append '(t) fun (cadr fun)))
1454 `(let ((,funsym ,fun)
1455 ,hook)
1456 (setq ,hook
1457 (lambda ()
1458 ;; Clear out this hook so it does not interfere
1459 ;; with any recursive minibuffer usage.
1460 (remove-hook 'minibuffer-setup-hook ,hook)
1461 (funcall ,funsym)))
1462 (unwind-protect
1463 (progn
1464 (add-hook 'minibuffer-setup-hook ,hook ,@append)
1465 ,@body)
1466 (remove-hook 'minibuffer-setup-hook ,hook)))))
1468 (defun find-file-read-args (prompt mustmatch)
1469 (list (read-file-name prompt nil default-directory mustmatch)
1472 (defun find-file (filename &optional wildcards)
1473 "Edit file FILENAME.
1474 Switch to a buffer visiting file FILENAME,
1475 creating one if none already exists.
1476 Interactively, the default if you just type RET is the current directory,
1477 but the visited file name is available through the minibuffer history:
1478 type M-n to pull it into the minibuffer.
1480 You can visit files on remote machines by specifying something
1481 like /ssh:SOME_REMOTE_MACHINE:FILE for the file name. You can
1482 also visit local files as a different user by specifying
1483 /sudo::FILE for the file name.
1484 See the Info node `(tramp)File name Syntax' in the Tramp Info
1485 manual, for more about this.
1487 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1488 expand wildcards (if any) and visit multiple files. You can
1489 suppress wildcard expansion by setting `find-file-wildcards' to nil.
1491 To visit a file without any kind of conversion and without
1492 automatically choosing a major mode, use \\[find-file-literally]."
1493 (interactive
1494 (find-file-read-args "Find file: "
1495 (confirm-nonexistent-file-or-buffer)))
1496 (let ((value (find-file-noselect filename nil nil wildcards)))
1497 (if (listp value)
1498 (mapcar 'switch-to-buffer (nreverse value))
1499 (switch-to-buffer value))))
1501 (defun find-file-other-window (filename &optional wildcards)
1502 "Edit file FILENAME, in another window.
1504 Like \\[find-file] (which see), but creates a new window or reuses
1505 an existing one. See the function `display-buffer'.
1507 Interactively, the default if you just type RET is the current directory,
1508 but the visited file name is available through the minibuffer history:
1509 type M-n to pull it into the minibuffer.
1511 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1512 expand wildcards (if any) and visit multiple files."
1513 (interactive
1514 (find-file-read-args "Find file in other window: "
1515 (confirm-nonexistent-file-or-buffer)))
1516 (let ((value (find-file-noselect filename nil nil wildcards)))
1517 (if (listp value)
1518 (progn
1519 (setq value (nreverse value))
1520 (cons (switch-to-buffer-other-window (car value))
1521 (mapcar 'switch-to-buffer (cdr value))))
1522 (switch-to-buffer-other-window value))))
1524 (defun find-file-other-frame (filename &optional wildcards)
1525 "Edit file FILENAME, in another frame.
1527 Like \\[find-file] (which see), but creates a new frame or reuses
1528 an existing one. See the function `display-buffer'.
1530 Interactively, the default if you just type RET is the current directory,
1531 but the visited file name is available through the minibuffer history:
1532 type M-n to pull it into the minibuffer.
1534 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1535 expand wildcards (if any) and visit multiple files."
1536 (interactive
1537 (find-file-read-args "Find file in other frame: "
1538 (confirm-nonexistent-file-or-buffer)))
1539 (let ((value (find-file-noselect filename nil nil wildcards)))
1540 (if (listp value)
1541 (progn
1542 (setq value (nreverse value))
1543 (cons (switch-to-buffer-other-frame (car value))
1544 (mapcar 'switch-to-buffer (cdr value))))
1545 (switch-to-buffer-other-frame value))))
1547 (defun find-file-existing (filename)
1548 "Edit the existing file FILENAME.
1549 Like \\[find-file], but only allow a file that exists, and do not allow
1550 file names with wildcards."
1551 (interactive (nbutlast (find-file-read-args "Find existing file: " t)))
1552 (if (and (not (called-interactively-p 'interactive))
1553 (not (file-exists-p filename)))
1554 (error "%s does not exist" filename)
1555 (find-file filename)
1556 (current-buffer)))
1558 (defun find-file--read-only (fun filename wildcards)
1559 (unless (or (and wildcards find-file-wildcards
1560 (not (string-match "\\`/:" filename))
1561 (string-match "[[*?]" filename))
1562 (file-exists-p filename))
1563 (error "%s does not exist" filename))
1564 (let ((value (funcall fun filename wildcards)))
1565 (mapc (lambda (b) (with-current-buffer b (read-only-mode 1)))
1566 (if (listp value) value (list value)))
1567 value))
1569 (defun find-file-read-only (filename &optional wildcards)
1570 "Edit file FILENAME but don't allow changes.
1571 Like \\[find-file], but marks buffer as read-only.
1572 Use \\[read-only-mode] to permit editing."
1573 (interactive
1574 (find-file-read-args "Find file read-only: "
1575 (confirm-nonexistent-file-or-buffer)))
1576 (find-file--read-only #'find-file filename wildcards))
1578 (defun find-file-read-only-other-window (filename &optional wildcards)
1579 "Edit file FILENAME in another window but don't allow changes.
1580 Like \\[find-file-other-window], but marks buffer as read-only.
1581 Use \\[read-only-mode] to permit editing."
1582 (interactive
1583 (find-file-read-args "Find file read-only other window: "
1584 (confirm-nonexistent-file-or-buffer)))
1585 (find-file--read-only #'find-file-other-window filename wildcards))
1587 (defun find-file-read-only-other-frame (filename &optional wildcards)
1588 "Edit file FILENAME in another frame but don't allow changes.
1589 Like \\[find-file-other-frame], but marks buffer as read-only.
1590 Use \\[read-only-mode] to permit editing."
1591 (interactive
1592 (find-file-read-args "Find file read-only other frame: "
1593 (confirm-nonexistent-file-or-buffer)))
1594 (find-file--read-only #'find-file-other-frame filename wildcards))
1596 (defun find-alternate-file-other-window (filename &optional wildcards)
1597 "Find file FILENAME as a replacement for the file in the next window.
1598 This command does not select that window.
1600 See \\[find-file] for the possible forms of the FILENAME argument.
1602 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1603 expand wildcards (if any) and replace the file with multiple files."
1604 (interactive
1605 (save-selected-window
1606 (other-window 1)
1607 (let ((file buffer-file-name)
1608 (file-name nil)
1609 (file-dir nil))
1610 (and file
1611 (setq file-name (file-name-nondirectory file)
1612 file-dir (file-name-directory file)))
1613 (list (read-file-name
1614 "Find alternate file: " file-dir nil
1615 (confirm-nonexistent-file-or-buffer) file-name)
1616 t))))
1617 (if (one-window-p)
1618 (find-file-other-window filename wildcards)
1619 (save-selected-window
1620 (other-window 1)
1621 (find-alternate-file filename wildcards))))
1623 ;; Defined and used in buffer.c, but not as a DEFVAR_LISP.
1624 (defvar kill-buffer-hook nil
1625 "Hook run when a buffer is killed.
1626 The buffer being killed is current while the hook is running.
1627 See `kill-buffer'.
1629 Note: Be careful with let-binding this hook considering it is
1630 frequently used for cleanup.")
1632 (defun find-alternate-file (filename &optional wildcards)
1633 "Find file FILENAME, select its buffer, kill previous buffer.
1634 If the current buffer now contains an empty file that you just visited
1635 \(presumably by mistake), use this command to visit the file you really want.
1637 See \\[find-file] for the possible forms of the FILENAME argument.
1639 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1640 expand wildcards (if any) and replace the file with multiple files.
1642 If the current buffer is an indirect buffer, or the base buffer
1643 for one or more indirect buffers, the other buffer(s) are not
1644 killed."
1645 (interactive
1646 (let ((file buffer-file-name)
1647 (file-name nil)
1648 (file-dir nil))
1649 (and file
1650 (setq file-name (file-name-nondirectory file)
1651 file-dir (file-name-directory file)))
1652 (list (read-file-name
1653 "Find alternate file: " file-dir nil
1654 (confirm-nonexistent-file-or-buffer) file-name)
1655 t)))
1656 (unless (run-hook-with-args-until-failure 'kill-buffer-query-functions)
1657 (error "Aborted"))
1658 (and (buffer-modified-p) buffer-file-name
1659 (not (yes-or-no-p "Kill and replace the buffer without saving it? "))
1660 (error "Aborted"))
1661 (let ((obuf (current-buffer))
1662 (ofile buffer-file-name)
1663 (onum buffer-file-number)
1664 (odir dired-directory)
1665 (otrue buffer-file-truename)
1666 (oname (buffer-name)))
1667 ;; Run `kill-buffer-hook' here. It needs to happen before
1668 ;; variables like `buffer-file-name' etc are set to nil below,
1669 ;; because some of the hooks that could be invoked
1670 ;; (e.g., `save-place-to-alist') depend on those variables.
1672 ;; Note that `kill-buffer-hook' is not what queries whether to
1673 ;; save a modified buffer visiting a file. Rather, `kill-buffer'
1674 ;; asks that itself. Thus, there's no need to temporarily do
1675 ;; `(set-buffer-modified-p nil)' before running this hook.
1676 (run-hooks 'kill-buffer-hook)
1677 ;; Okay, now we can end-of-life the old buffer.
1678 (if (get-buffer " **lose**")
1679 (kill-buffer " **lose**"))
1680 (rename-buffer " **lose**")
1681 (unwind-protect
1682 (progn
1683 (unlock-buffer)
1684 ;; This prevents us from finding the same buffer
1685 ;; if we specified the same file again.
1686 (setq buffer-file-name nil)
1687 (setq buffer-file-number nil)
1688 (setq buffer-file-truename nil)
1689 ;; Likewise for dired buffers.
1690 (setq dired-directory nil)
1691 (find-file filename wildcards))
1692 (when (eq obuf (current-buffer))
1693 ;; This executes if find-file gets an error
1694 ;; and does not really find anything.
1695 ;; We put things back as they were.
1696 ;; If find-file actually finds something, we kill obuf below.
1697 (setq buffer-file-name ofile)
1698 (setq buffer-file-number onum)
1699 (setq buffer-file-truename otrue)
1700 (setq dired-directory odir)
1701 (lock-buffer)
1702 (rename-buffer oname)))
1703 (unless (eq (current-buffer) obuf)
1704 (with-current-buffer obuf
1705 ;; We already ran these; don't run them again.
1706 (let (kill-buffer-query-functions kill-buffer-hook)
1707 (kill-buffer obuf))))))
1709 ;; FIXME we really need to fold the uniquify stuff in here by default,
1710 ;; not using advice, and add it to the doc string.
1711 (defun create-file-buffer (filename)
1712 "Create a suitably named buffer for visiting FILENAME, and return it.
1713 FILENAME (sans directory) is used unchanged if that name is free;
1714 otherwise a string <2> or <3> or ... is appended to get an unused name.
1716 Emacs treats buffers whose names begin with a space as internal buffers.
1717 To avoid confusion when visiting a file whose name begins with a space,
1718 this function prepends a \"|\" to the final result if necessary."
1719 (let ((lastname (file-name-nondirectory filename)))
1720 (if (string= lastname "")
1721 (setq lastname filename))
1722 (generate-new-buffer (if (string-match-p "\\` " lastname)
1723 (concat "|" lastname)
1724 lastname))))
1726 (defun generate-new-buffer (name)
1727 "Create and return a buffer with a name based on NAME.
1728 Choose the buffer's name using `generate-new-buffer-name'."
1729 (get-buffer-create (generate-new-buffer-name name)))
1731 (defcustom automount-dir-prefix (purecopy "^/tmp_mnt/")
1732 "Regexp to match the automounter prefix in a directory name."
1733 :group 'files
1734 :type 'regexp)
1735 (make-obsolete-variable 'automount-dir-prefix 'directory-abbrev-alist "24.3")
1737 (defvar abbreviated-home-dir nil
1738 "The user's homedir abbreviated according to `directory-abbrev-alist'.")
1740 (defun abbreviate-file-name (filename)
1741 "Return a version of FILENAME shortened using `directory-abbrev-alist'.
1742 This also substitutes \"~\" for the user's home directory (unless the
1743 home directory is a root directory) and removes automounter prefixes
1744 \(see the variable `automount-dir-prefix')."
1745 ;; Get rid of the prefixes added by the automounter.
1746 (save-match-data
1747 (if (and automount-dir-prefix
1748 (string-match automount-dir-prefix filename)
1749 (file-exists-p (file-name-directory
1750 (substring filename (1- (match-end 0))))))
1751 (setq filename (substring filename (1- (match-end 0)))))
1752 ;; Avoid treating /home/foo as /home/Foo during `~' substitution.
1753 ;; To fix this right, we need a `file-name-case-sensitive-p'
1754 ;; function, but we don't have that yet, so just guess.
1755 (let ((case-fold-search
1756 (memq system-type '(ms-dos windows-nt darwin cygwin))))
1757 ;; If any elt of directory-abbrev-alist matches this name,
1758 ;; abbreviate accordingly.
1759 (dolist (dir-abbrev directory-abbrev-alist)
1760 (if (string-match (car dir-abbrev) filename)
1761 (setq filename
1762 (concat (cdr dir-abbrev)
1763 (substring filename (match-end 0))))))
1764 ;; Compute and save the abbreviated homedir name.
1765 ;; We defer computing this until the first time it's needed, to
1766 ;; give time for directory-abbrev-alist to be set properly.
1767 ;; We include a slash at the end, to avoid spurious matches
1768 ;; such as `/usr/foobar' when the home dir is `/usr/foo'.
1769 (or abbreviated-home-dir
1770 (setq abbreviated-home-dir
1771 (let ((abbreviated-home-dir "$foo"))
1772 (concat "\\`" (abbreviate-file-name (expand-file-name "~"))
1773 "\\(/\\|\\'\\)"))))
1775 ;; If FILENAME starts with the abbreviated homedir,
1776 ;; make it start with `~' instead.
1777 (if (and (string-match abbreviated-home-dir filename)
1778 ;; If the home dir is just /, don't change it.
1779 (not (and (= (match-end 0) 1)
1780 (= (aref filename 0) ?/)))
1781 ;; MS-DOS root directories can come with a drive letter;
1782 ;; Novell Netware allows drive letters beyond `Z:'.
1783 (not (and (memq system-type '(ms-dos windows-nt cygwin))
1784 (save-match-data
1785 (string-match "^[a-zA-`]:/$" filename)))))
1786 (setq filename
1787 (concat "~"
1788 (match-string 1 filename)
1789 (substring filename (match-end 0)))))
1790 filename)))
1792 (defun find-buffer-visiting (filename &optional predicate)
1793 "Return the buffer visiting file FILENAME (a string).
1794 This is like `get-file-buffer', except that it checks for any buffer
1795 visiting the same file, possibly under a different name.
1796 If PREDICATE is non-nil, only buffers satisfying it are eligible,
1797 and others are ignored.
1798 If there is no such live buffer, return nil."
1799 (let ((predicate (or predicate #'identity))
1800 (truename (abbreviate-file-name (file-truename filename))))
1801 (or (let ((buf (get-file-buffer filename)))
1802 (when (and buf (funcall predicate buf)) buf))
1803 (let ((list (buffer-list)) found)
1804 (while (and (not found) list)
1805 (with-current-buffer (car list)
1806 (if (and buffer-file-name
1807 (string= buffer-file-truename truename)
1808 (funcall predicate (current-buffer)))
1809 (setq found (car list))))
1810 (setq list (cdr list)))
1811 found)
1812 (let* ((attributes (file-attributes truename))
1813 (number (nthcdr 10 attributes))
1814 (list (buffer-list)) found)
1815 (and buffer-file-numbers-unique
1816 (car-safe number) ;Make sure the inode is not just nil.
1817 (while (and (not found) list)
1818 (with-current-buffer (car list)
1819 (if (and buffer-file-name
1820 (equal buffer-file-number number)
1821 ;; Verify this buffer's file number
1822 ;; still belongs to its file.
1823 (file-exists-p buffer-file-name)
1824 (equal (file-attributes buffer-file-truename)
1825 attributes)
1826 (funcall predicate (current-buffer)))
1827 (setq found (car list))))
1828 (setq list (cdr list))))
1829 found))))
1831 (defcustom find-file-wildcards t
1832 "Non-nil means file-visiting commands should handle wildcards.
1833 For example, if you specify `*.c', that would visit all the files
1834 whose names match the pattern."
1835 :group 'files
1836 :version "20.4"
1837 :type 'boolean)
1839 (defcustom find-file-suppress-same-file-warnings nil
1840 "Non-nil means suppress warning messages for symlinked files.
1841 When nil, Emacs prints a warning when visiting a file that is already
1842 visited, but with a different name. Setting this option to t
1843 suppresses this warning."
1844 :group 'files
1845 :version "21.1"
1846 :type 'boolean)
1848 (defcustom large-file-warning-threshold 10000000
1849 "Maximum size of file above which a confirmation is requested.
1850 When nil, never request confirmation."
1851 :group 'files
1852 :group 'find-file
1853 :version "22.1"
1854 :type '(choice integer (const :tag "Never request confirmation" nil)))
1856 (defcustom out-of-memory-warning-percentage nil
1857 "Warn if file size exceeds this percentage of available free memory.
1858 When nil, never issue warning. Beware: This probably doesn't do what you
1859 think it does, because \"free\" is pretty hard to define in practice."
1860 :group 'files
1861 :group 'find-file
1862 :version "25.1"
1863 :type '(choice integer (const :tag "Never issue warning" nil)))
1865 (defun abort-if-file-too-large (size op-type filename)
1866 "If file SIZE larger than `large-file-warning-threshold', allow user to abort.
1867 OP-TYPE specifies the file operation being performed (for message to user)."
1868 (when (and large-file-warning-threshold size
1869 (> size large-file-warning-threshold)
1870 (not (y-or-n-p (format "File %s is large (%s), really %s? "
1871 (file-name-nondirectory filename)
1872 (file-size-human-readable size) op-type))))
1873 (error "Aborted")))
1875 (defun warn-maybe-out-of-memory (size)
1876 "Warn if an attempt to open file of SIZE bytes may run out of memory."
1877 (when (and (numberp size) (not (zerop size))
1878 (integerp out-of-memory-warning-percentage))
1879 (let ((meminfo (memory-info)))
1880 (when (consp meminfo)
1881 (let ((total-free-memory (float (+ (nth 1 meminfo) (nth 3 meminfo)))))
1882 (when (> (/ size 1024)
1883 (/ (* total-free-memory out-of-memory-warning-percentage)
1884 100.0))
1885 (warn
1886 "You are trying to open a file whose size (%s)
1887 exceeds the %S%% of currently available free memory (%s).
1888 If that fails, try to open it with `find-file-literally'
1889 \(but note that some characters might be displayed incorrectly)."
1890 (file-size-human-readable size)
1891 out-of-memory-warning-percentage
1892 (file-size-human-readable (* total-free-memory 1024)))))))))
1894 (defun find-file-noselect (filename &optional nowarn rawfile wildcards)
1895 "Read file FILENAME into a buffer and return the buffer.
1896 If a buffer exists visiting FILENAME, return that one, but
1897 verify that the file has not changed since visited or saved.
1898 The buffer is not selected, just returned to the caller.
1899 Optional second arg NOWARN non-nil means suppress any warning messages.
1900 Optional third arg RAWFILE non-nil means the file is read literally.
1901 Optional fourth arg WILDCARDS non-nil means do wildcard processing
1902 and visit all the matching files. When wildcards are actually
1903 used and expanded, return a list of buffers that are visiting
1904 the various files."
1905 (setq filename
1906 (abbreviate-file-name
1907 (expand-file-name filename)))
1908 (if (file-directory-p filename)
1909 (or (and find-file-run-dired
1910 (run-hook-with-args-until-success
1911 'find-directory-functions
1912 (if find-file-visit-truename
1913 (abbreviate-file-name (file-truename filename))
1914 filename)))
1915 (error "%s is a directory" filename))
1916 (if (and wildcards
1917 find-file-wildcards
1918 (not (string-match "\\`/:" filename))
1919 (string-match "[[*?]" filename))
1920 (let ((files (condition-case nil
1921 (file-expand-wildcards filename t)
1922 (error (list filename))))
1923 (find-file-wildcards nil))
1924 (if (null files)
1925 (find-file-noselect filename)
1926 (mapcar #'find-file-noselect files)))
1927 (let* ((buf (get-file-buffer filename))
1928 (truename (abbreviate-file-name (file-truename filename)))
1929 (attributes (file-attributes truename))
1930 (number (nthcdr 10 attributes))
1931 ;; Find any buffer for a file which has same truename.
1932 (other (and (not buf) (find-buffer-visiting filename))))
1933 ;; Let user know if there is a buffer with the same truename.
1934 (if other
1935 (progn
1936 (or nowarn
1937 find-file-suppress-same-file-warnings
1938 (string-equal filename (buffer-file-name other))
1939 (message "%s and %s are the same file"
1940 filename (buffer-file-name other)))
1941 ;; Optionally also find that buffer.
1942 (if (or find-file-existing-other-name find-file-visit-truename)
1943 (setq buf other))))
1944 ;; Check to see if the file looks uncommonly large.
1945 (when (not (or buf nowarn))
1946 (abort-if-file-too-large (nth 7 attributes) "open" filename)
1947 (warn-maybe-out-of-memory (nth 7 attributes)))
1948 (if buf
1949 ;; We are using an existing buffer.
1950 (let (nonexistent)
1951 (or nowarn
1952 (verify-visited-file-modtime buf)
1953 (cond ((not (file-exists-p filename))
1954 (setq nonexistent t)
1955 (message "File %s no longer exists!" filename))
1956 ;; Certain files should be reverted automatically
1957 ;; if they have changed on disk and not in the buffer.
1958 ((and (not (buffer-modified-p buf))
1959 (let ((tail revert-without-query)
1960 (found nil))
1961 (while tail
1962 (if (string-match (car tail) filename)
1963 (setq found t))
1964 (setq tail (cdr tail)))
1965 found))
1966 (with-current-buffer buf
1967 (message "Reverting file %s..." filename)
1968 (revert-buffer t t)
1969 (message "Reverting file %s...done" filename)))
1970 ((yes-or-no-p
1971 (if (string= (file-name-nondirectory filename)
1972 (buffer-name buf))
1973 (format
1974 (if (buffer-modified-p buf)
1975 "File %s changed on disk. Discard your edits? "
1976 "File %s changed on disk. Reread from disk? ")
1977 (file-name-nondirectory filename))
1978 (format
1979 (if (buffer-modified-p buf)
1980 "File %s changed on disk. Discard your edits in %s? "
1981 "File %s changed on disk. Reread from disk into %s? ")
1982 (file-name-nondirectory filename)
1983 (buffer-name buf))))
1984 (with-current-buffer buf
1985 (revert-buffer t t)))))
1986 (with-current-buffer buf
1988 ;; Check if a formerly read-only file has become
1989 ;; writable and vice versa, but if the buffer agrees
1990 ;; with the new state of the file, that is ok too.
1991 (let ((read-only (not (file-writable-p buffer-file-name))))
1992 (unless (or nonexistent
1993 (eq read-only buffer-file-read-only)
1994 (eq read-only buffer-read-only))
1995 (when (or nowarn
1996 (let* ((new-status
1997 (if read-only "read-only" "writable"))
1998 (question
1999 (format "File %s is %s on disk. Make buffer %s, too? "
2000 buffer-file-name
2001 new-status new-status)))
2002 (y-or-n-p question)))
2003 (setq buffer-read-only read-only)))
2004 (setq buffer-file-read-only read-only))
2006 (unless (or (eq (null rawfile) (null find-file-literally))
2007 nonexistent
2008 ;; It is confusing to ask whether to visit
2009 ;; non-literally if they have the file in
2010 ;; hexl-mode or image-mode.
2011 (memq major-mode '(hexl-mode image-mode)))
2012 (if (buffer-modified-p)
2013 (if (y-or-n-p
2014 (format
2015 (if rawfile
2016 "The file %s is already visited normally,
2017 and you have edited the buffer. Now you have asked to visit it literally,
2018 meaning no coding system handling, format conversion, or local variables.
2019 Emacs can only visit a file in one way at a time.
2021 Do you want to save the file, and visit it literally instead? "
2022 "The file %s is already visited literally,
2023 meaning no coding system handling, format conversion, or local variables.
2024 You have edited the buffer. Now you have asked to visit the file normally,
2025 but Emacs can only visit a file in one way at a time.
2027 Do you want to save the file, and visit it normally instead? ")
2028 (file-name-nondirectory filename)))
2029 (progn
2030 (save-buffer)
2031 (find-file-noselect-1 buf filename nowarn
2032 rawfile truename number))
2033 (if (y-or-n-p
2034 (format
2035 (if rawfile
2037 Do you want to discard your changes, and visit the file literally now? "
2039 Do you want to discard your changes, and visit the file normally now? ")))
2040 (find-file-noselect-1 buf filename nowarn
2041 rawfile truename number)
2042 (error (if rawfile "File already visited non-literally"
2043 "File already visited literally"))))
2044 (if (y-or-n-p
2045 (format
2046 (if rawfile
2047 "The file %s is already visited normally.
2048 You have asked to visit it literally,
2049 meaning no coding system decoding, format conversion, or local variables.
2050 But Emacs can only visit a file in one way at a time.
2052 Do you want to revisit the file literally now? "
2053 "The file %s is already visited literally,
2054 meaning no coding system decoding, format conversion, or local variables.
2055 You have asked to visit it normally,
2056 but Emacs can only visit a file in one way at a time.
2058 Do you want to revisit the file normally now? ")
2059 (file-name-nondirectory filename)))
2060 (find-file-noselect-1 buf filename nowarn
2061 rawfile truename number)
2062 (error (if rawfile "File already visited non-literally"
2063 "File already visited literally"))))))
2064 ;; Return the buffer we are using.
2065 buf)
2066 ;; Create a new buffer.
2067 (setq buf (create-file-buffer filename))
2068 ;; find-file-noselect-1 may use a different buffer.
2069 (find-file-noselect-1 buf filename nowarn
2070 rawfile truename number))))))
2072 (defun find-file-noselect-1 (buf filename nowarn rawfile truename number)
2073 (let (error)
2074 (with-current-buffer buf
2075 (kill-local-variable 'find-file-literally)
2076 ;; Needed in case we are re-visiting the file with a different
2077 ;; text representation.
2078 (kill-local-variable 'buffer-file-coding-system)
2079 (kill-local-variable 'cursor-type)
2080 (let ((inhibit-read-only t))
2081 (erase-buffer))
2082 (and (default-value 'enable-multibyte-characters)
2083 (not rawfile)
2084 (set-buffer-multibyte t))
2085 (if rawfile
2086 (condition-case ()
2087 (let ((inhibit-read-only t))
2088 (insert-file-contents-literally filename t))
2089 (file-error
2090 (when (and (file-exists-p filename)
2091 (not (file-readable-p filename)))
2092 (kill-buffer buf)
2093 (signal 'file-error (list "File is not readable"
2094 filename)))
2095 ;; Unconditionally set error
2096 (setq error t)))
2097 (condition-case ()
2098 (let ((inhibit-read-only t))
2099 (insert-file-contents filename t))
2100 (file-error
2101 (when (and (file-exists-p filename)
2102 (not (file-readable-p filename)))
2103 (kill-buffer buf)
2104 (signal 'file-error (list "File is not readable"
2105 filename)))
2106 ;; Run find-file-not-found-functions until one returns non-nil.
2107 (or (run-hook-with-args-until-success 'find-file-not-found-functions)
2108 ;; If they fail too, set error.
2109 (setq error t)))))
2110 ;; Record the file's truename, and maybe use that as visited name.
2111 (if (equal filename buffer-file-name)
2112 (setq buffer-file-truename truename)
2113 (setq buffer-file-truename
2114 (abbreviate-file-name (file-truename buffer-file-name))))
2115 (setq buffer-file-number number)
2116 (if find-file-visit-truename
2117 (setq buffer-file-name (expand-file-name buffer-file-truename)))
2118 ;; Set buffer's default directory to that of the file.
2119 (setq default-directory (file-name-directory buffer-file-name))
2120 ;; Turn off backup files for certain file names. Since
2121 ;; this is a permanent local, the major mode won't eliminate it.
2122 (and backup-enable-predicate
2123 (not (funcall backup-enable-predicate buffer-file-name))
2124 (progn
2125 (make-local-variable 'backup-inhibited)
2126 (setq backup-inhibited t)))
2127 (if rawfile
2128 (progn
2129 (set-buffer-multibyte nil)
2130 (setq buffer-file-coding-system 'no-conversion)
2131 (set-buffer-major-mode buf)
2132 (setq-local find-file-literally t))
2133 (after-find-file error (not nowarn)))
2134 (current-buffer))))
2136 (defun insert-file-contents-literally (filename &optional visit beg end replace)
2137 "Like `insert-file-contents', but only reads in the file literally.
2138 A buffer may be modified in several ways after reading into the buffer,
2139 to Emacs features such as format decoding, character code
2140 conversion, `find-file-hook', automatic uncompression, etc.
2142 This function ensures that none of these modifications will take place."
2143 (let ((format-alist nil)
2144 (after-insert-file-functions nil)
2145 (coding-system-for-read 'no-conversion)
2146 (coding-system-for-write 'no-conversion)
2147 (inhibit-file-name-handlers
2148 ;; FIXME: Yuck!! We should turn insert-file-contents-literally
2149 ;; into a file operation instead!
2150 (append '(jka-compr-handler image-file-handler epa-file-handler)
2151 inhibit-file-name-handlers))
2152 (inhibit-file-name-operation 'insert-file-contents))
2153 (insert-file-contents filename visit beg end replace)))
2155 (defun insert-file-1 (filename insert-func)
2156 (if (file-directory-p filename)
2157 (signal 'file-error (list "Opening input file" "file is a directory"
2158 filename)))
2159 ;; Check whether the file is uncommonly large
2160 (abort-if-file-too-large (nth 7 (file-attributes filename)) "insert" filename)
2161 (let* ((buffer (find-buffer-visiting (abbreviate-file-name (file-truename filename))
2162 #'buffer-modified-p))
2163 (tem (funcall insert-func filename)))
2164 (push-mark (+ (point) (car (cdr tem))))
2165 (when buffer
2166 (message "File %s already visited and modified in buffer %s"
2167 filename (buffer-name buffer)))))
2169 (defun insert-file-literally (filename)
2170 "Insert contents of file FILENAME into buffer after point with no conversion.
2172 This function is meant for the user to run interactively.
2173 Don't call it from programs! Use `insert-file-contents-literally' instead.
2174 \(Its calling sequence is different; see its documentation)."
2175 (declare (interactive-only insert-file-contents-literally))
2176 (interactive "*fInsert file literally: ")
2177 (insert-file-1 filename #'insert-file-contents-literally))
2179 (defvar find-file-literally nil
2180 "Non-nil if this buffer was made by `find-file-literally' or equivalent.
2181 This has the `permanent-local' property, which takes effect if you
2182 make the variable buffer-local.")
2183 (put 'find-file-literally 'permanent-local t)
2185 (defun find-file-literally (filename)
2186 "Visit file FILENAME with no conversion of any kind.
2187 Format conversion and character code conversion are both disabled,
2188 and multibyte characters are disabled in the resulting buffer.
2189 The major mode used is Fundamental mode regardless of the file name,
2190 and local variable specifications in the file are ignored.
2191 Automatic uncompression and adding a newline at the end of the
2192 file due to `require-final-newline' is also disabled.
2194 You cannot absolutely rely on this function to result in
2195 visiting the file literally. If Emacs already has a buffer
2196 which is visiting the file, you get the existing buffer,
2197 regardless of whether it was created literally or not.
2199 In a Lisp program, if you want to be sure of accessing a file's
2200 contents literally, you should create a temporary buffer and then read
2201 the file contents into it using `insert-file-contents-literally'."
2202 (interactive
2203 (list (read-file-name
2204 "Find file literally: " nil default-directory
2205 (confirm-nonexistent-file-or-buffer))))
2206 (switch-to-buffer (find-file-noselect filename nil t)))
2208 (defun after-find-file (&optional error warn noauto
2209 _after-find-file-from-revert-buffer
2210 nomodes)
2211 "Called after finding a file and by the default revert function.
2212 Sets buffer mode, parses local variables.
2213 Optional args ERROR, WARN, and NOAUTO: ERROR non-nil means there was an
2214 error in reading the file. WARN non-nil means warn if there
2215 exists an auto-save file more recent than the visited file.
2216 NOAUTO means don't mess with auto-save mode.
2217 Fourth arg AFTER-FIND-FILE-FROM-REVERT-BUFFER is ignored
2218 \(see `revert-buffer-in-progress-p' for similar functionality).
2219 Fifth arg NOMODES non-nil means don't alter the file's modes.
2220 Finishes by calling the functions in `find-file-hook'
2221 unless NOMODES is non-nil."
2222 (setq buffer-read-only (not (file-writable-p buffer-file-name)))
2223 (if noninteractive
2225 (let* (not-serious
2226 (msg
2227 (cond
2228 ((not warn) nil)
2229 ((and error (file-attributes buffer-file-name))
2230 (setq buffer-read-only t)
2231 (if (and (file-symlink-p buffer-file-name)
2232 (not (file-exists-p
2233 (file-chase-links buffer-file-name))))
2234 "Symbolic link that points to nonexistent file"
2235 "File exists, but cannot be read"))
2236 ((not buffer-read-only)
2237 (if (and warn
2238 ;; No need to warn if buffer is auto-saved
2239 ;; under the name of the visited file.
2240 (not (and buffer-file-name
2241 auto-save-visited-file-name))
2242 (file-newer-than-file-p (or buffer-auto-save-file-name
2243 (make-auto-save-file-name))
2244 buffer-file-name))
2245 (format "%s has auto save data; consider M-x recover-this-file"
2246 (file-name-nondirectory buffer-file-name))
2247 (setq not-serious t)
2248 (if error "(New file)" nil)))
2249 ((not error)
2250 (setq not-serious t)
2251 "Note: file is write protected")
2252 ((file-attributes (directory-file-name default-directory))
2253 "File not found and directory write-protected")
2254 ((file-exists-p (file-name-directory buffer-file-name))
2255 (setq buffer-read-only nil))
2257 (setq buffer-read-only nil)
2258 "Use M-x make-directory RET RET to create the directory and its parents"))))
2259 (when msg
2260 (message "%s" msg)
2261 (or not-serious (sit-for 1 t))))
2262 (when (and auto-save-default (not noauto))
2263 (auto-save-mode 1)))
2264 ;; Make people do a little extra work (C-x C-q)
2265 ;; before altering a backup file.
2266 (when (backup-file-name-p buffer-file-name)
2267 (setq buffer-read-only t))
2268 ;; When a file is marked read-only,
2269 ;; make the buffer read-only even if root is looking at it.
2270 (when (and (file-modes (buffer-file-name))
2271 (zerop (logand (file-modes (buffer-file-name)) #o222)))
2272 (setq buffer-read-only t))
2273 (unless nomodes
2274 (when (and view-read-only view-mode)
2275 (view-mode -1))
2276 (normal-mode t)
2277 ;; If requested, add a newline at the end of the file.
2278 (and (memq require-final-newline '(visit visit-save))
2279 (> (point-max) (point-min))
2280 (/= (char-after (1- (point-max))) ?\n)
2281 (not (and (eq selective-display t)
2282 (= (char-after (1- (point-max))) ?\r)))
2283 (not buffer-read-only)
2284 (save-excursion
2285 (goto-char (point-max))
2286 (ignore-errors (insert "\n"))))
2287 (when (and buffer-read-only
2288 view-read-only
2289 (not (eq (get major-mode 'mode-class) 'special)))
2290 (view-mode-enter))
2291 (run-hooks 'find-file-hook)))
2293 (defmacro report-errors (format &rest body)
2294 "Eval BODY and turn any error into a FORMAT message.
2295 FORMAT can have a %s escape which will be replaced with the actual error.
2296 If `debug-on-error' is set, errors are not caught, so that you can
2297 debug them.
2298 Avoid using a large BODY since it is duplicated."
2299 (declare (debug t) (indent 1))
2300 `(if debug-on-error
2301 (progn . ,body)
2302 (condition-case err
2303 (progn . ,body)
2304 (error (message ,format (prin1-to-string err))))))
2306 (defun normal-mode (&optional find-file)
2307 "Choose the major mode for this buffer automatically.
2308 Also sets up any specified local variables of the file.
2309 Uses the visited file name, the -*- line, and the local variables spec.
2311 This function is called automatically from `find-file'. In that case,
2312 we may set up the file-specified mode and local variables,
2313 depending on the value of `enable-local-variables'.
2314 In addition, if `local-enable-local-variables' is nil, we do
2315 not set local variables (though we do notice a mode specified with -*-.)
2317 `enable-local-variables' is ignored if you run `normal-mode' interactively,
2318 or from Lisp without specifying the optional argument FIND-FILE;
2319 in that case, this function acts as if `enable-local-variables' were t."
2320 (interactive)
2321 (fundamental-mode)
2322 (let ((enable-local-variables (or (not find-file) enable-local-variables)))
2323 ;; FIXME this is less efficient than it could be, since both
2324 ;; s-a-m and h-l-v may parse the same regions, looking for "mode:".
2325 (report-errors "File mode specification error: %s"
2326 (set-auto-mode))
2327 (report-errors "File local-variables error: %s"
2328 (hack-local-variables)))
2329 ;; Turn font lock off and on, to make sure it takes account of
2330 ;; whatever file local variables are relevant to it.
2331 (when (and font-lock-mode
2332 ;; Font-lock-mode (now in font-core.el) can be ON when
2333 ;; font-lock.el still hasn't been loaded.
2334 (boundp 'font-lock-keywords)
2335 (eq (car font-lock-keywords) t))
2336 (setq font-lock-keywords (cadr font-lock-keywords))
2337 (font-lock-mode 1)))
2339 (defcustom auto-mode-case-fold t
2340 "Non-nil means to try second pass through `auto-mode-alist'.
2341 This means that if the first case-sensitive search through the alist fails
2342 to find a matching major mode, a second case-insensitive search is made.
2343 On systems with case-insensitive file names, this variable is ignored,
2344 since only a single case-insensitive search through the alist is made."
2345 :group 'files
2346 :version "22.1"
2347 :type 'boolean)
2349 (defvar auto-mode-alist
2350 ;; Note: The entries for the modes defined in cc-mode.el (c-mode,
2351 ;; c++-mode, java-mode and more) are added through autoload
2352 ;; directives in that file. That way is discouraged since it
2353 ;; spreads out the definition of the initial value.
2354 (mapcar
2355 (lambda (elt)
2356 (cons (purecopy (car elt)) (cdr elt)))
2357 `(;; do this first, so that .html.pl is Polish html, not Perl
2358 ("\\.[sx]?html?\\(\\.[a-zA-Z_]+\\)?\\'" . html-mode)
2359 ("\\.svgz?\\'" . image-mode)
2360 ("\\.svgz?\\'" . xml-mode)
2361 ("\\.x[bp]m\\'" . image-mode)
2362 ("\\.x[bp]m\\'" . c-mode)
2363 ("\\.p[bpgn]m\\'" . image-mode)
2364 ("\\.tiff?\\'" . image-mode)
2365 ("\\.gif\\'" . image-mode)
2366 ("\\.png\\'" . image-mode)
2367 ("\\.jpe?g\\'" . image-mode)
2368 ("\\.te?xt\\'" . text-mode)
2369 ("\\.[tT]e[xX]\\'" . tex-mode)
2370 ("\\.ins\\'" . tex-mode) ;Installation files for TeX packages.
2371 ("\\.ltx\\'" . latex-mode)
2372 ("\\.dtx\\'" . doctex-mode)
2373 ("\\.org\\'" . org-mode)
2374 ("\\.el\\'" . emacs-lisp-mode)
2375 ("Project\\.ede\\'" . emacs-lisp-mode)
2376 ("\\.\\(scm\\|stk\\|ss\\|sch\\)\\'" . scheme-mode)
2377 ("\\.l\\'" . lisp-mode)
2378 ("\\.li?sp\\'" . lisp-mode)
2379 ("\\.[fF]\\'" . fortran-mode)
2380 ("\\.for\\'" . fortran-mode)
2381 ("\\.p\\'" . pascal-mode)
2382 ("\\.pas\\'" . pascal-mode)
2383 ("\\.\\(dpr\\|DPR\\)\\'" . delphi-mode)
2384 ("\\.ad[abs]\\'" . ada-mode)
2385 ("\\.ad[bs].dg\\'" . ada-mode)
2386 ("\\.\\([pP]\\([Llm]\\|erl\\|od\\)\\|al\\)\\'" . perl-mode)
2387 ("Imakefile\\'" . makefile-imake-mode)
2388 ("Makeppfile\\(?:\\.mk\\)?\\'" . makefile-makepp-mode) ; Put this before .mk
2389 ("\\.makepp\\'" . makefile-makepp-mode)
2390 ,@(if (memq system-type '(berkeley-unix darwin))
2391 '(("\\.mk\\'" . makefile-bsdmake-mode)
2392 ("\\.make\\'" . makefile-bsdmake-mode)
2393 ("GNUmakefile\\'" . makefile-gmake-mode)
2394 ("[Mm]akefile\\'" . makefile-bsdmake-mode))
2395 '(("\\.mk\\'" . makefile-gmake-mode) ; Might be any make, give Gnu the host advantage
2396 ("\\.make\\'" . makefile-gmake-mode)
2397 ("[Mm]akefile\\'" . makefile-gmake-mode)))
2398 ("\\.am\\'" . makefile-automake-mode)
2399 ;; Less common extensions come here
2400 ;; so more common ones above are found faster.
2401 ("\\.texinfo\\'" . texinfo-mode)
2402 ("\\.te?xi\\'" . texinfo-mode)
2403 ("\\.[sS]\\'" . asm-mode)
2404 ("\\.asm\\'" . asm-mode)
2405 ("\\.css\\'" . css-mode)
2406 ("\\.mixal\\'" . mixal-mode)
2407 ("\\.gcov\\'" . compilation-mode)
2408 ;; Besides .gdbinit, gdb documents other names to be usable for init
2409 ;; files, cross-debuggers can use something like
2410 ;; .PROCESSORNAME-gdbinit so that the host and target gdbinit files
2411 ;; don't interfere with each other.
2412 ("/\\.[a-z0-9-]*gdbinit" . gdb-script-mode)
2413 ;; GDB 7.5 introduced OBJFILE-gdb.gdb script files; e.g. a file
2414 ;; named 'emacs-gdb.gdb', if it exists, will be automatically
2415 ;; loaded when GDB reads an objfile called 'emacs'.
2416 ("-gdb\\.gdb" . gdb-script-mode)
2417 ("[cC]hange\\.?[lL]og?\\'" . change-log-mode)
2418 ("[cC]hange[lL]og[-.][0-9]+\\'" . change-log-mode)
2419 ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode)
2420 ("\\.scm\\.[0-9]*\\'" . scheme-mode)
2421 ("\\.[ckz]?sh\\'\\|\\.shar\\'\\|/\\.z?profile\\'" . sh-mode)
2422 ("\\.bash\\'" . sh-mode)
2423 ("\\(/\\|\\`\\)\\.\\(bash_\\(profile\\|history\\|log\\(in\\|out\\)\\)\\|z?log\\(in\\|out\\)\\)\\'" . sh-mode)
2424 ("\\(/\\|\\`\\)\\.\\(shrc\\|[kz]shrc\\|bashrc\\|t?cshrc\\|esrc\\)\\'" . sh-mode)
2425 ("\\(/\\|\\`\\)\\.\\([kz]shenv\\|xinitrc\\|startxrc\\|xsession\\)\\'" . sh-mode)
2426 ("\\.m?spec\\'" . sh-mode)
2427 ("\\.m[mes]\\'" . nroff-mode)
2428 ("\\.man\\'" . nroff-mode)
2429 ("\\.sty\\'" . latex-mode)
2430 ("\\.cl[so]\\'" . latex-mode) ;LaTeX 2e class option
2431 ("\\.bbl\\'" . latex-mode)
2432 ("\\.bib\\'" . bibtex-mode)
2433 ("\\.bst\\'" . bibtex-style-mode)
2434 ("\\.sql\\'" . sql-mode)
2435 ("\\.m[4c]\\'" . m4-mode)
2436 ("\\.mf\\'" . metafont-mode)
2437 ("\\.mp\\'" . metapost-mode)
2438 ("\\.vhdl?\\'" . vhdl-mode)
2439 ("\\.article\\'" . text-mode)
2440 ("\\.letter\\'" . text-mode)
2441 ("\\.i?tcl\\'" . tcl-mode)
2442 ("\\.exp\\'" . tcl-mode)
2443 ("\\.itk\\'" . tcl-mode)
2444 ("\\.icn\\'" . icon-mode)
2445 ("\\.sim\\'" . simula-mode)
2446 ("\\.mss\\'" . scribe-mode)
2447 ;; The Fortran standard does not say anything about file extensions.
2448 ;; .f90 was widely used for F90, now we seem to be trapped into
2449 ;; using a different extension for each language revision.
2450 ;; Anyway, the following extensions are supported by gfortran.
2451 ("\\.f9[05]\\'" . f90-mode)
2452 ("\\.f0[38]\\'" . f90-mode)
2453 ("\\.indent\\.pro\\'" . fundamental-mode) ; to avoid idlwave-mode
2454 ("\\.\\(pro\\|PRO\\)\\'" . idlwave-mode)
2455 ("\\.srt\\'" . srecode-template-mode)
2456 ("\\.prolog\\'" . prolog-mode)
2457 ("\\.tar\\'" . tar-mode)
2458 ;; The list of archive file extensions should be in sync with
2459 ;; `auto-coding-alist' with `no-conversion' coding system.
2460 ("\\.\\(\
2461 arc\\|zip\\|lzh\\|lha\\|zoo\\|[jew]ar\\|xpi\\|rar\\|7z\\|\
2462 ARC\\|ZIP\\|LZH\\|LHA\\|ZOO\\|[JEW]AR\\|XPI\\|RAR\\|7Z\\)\\'" . archive-mode)
2463 ("\\.oxt\\'" . archive-mode) ;(Open|Libre)Office extensions.
2464 ("\\.\\(deb\\|[oi]pk\\)\\'" . archive-mode) ; Debian/Opkg packages.
2465 ;; Mailer puts message to be edited in
2466 ;; /tmp/Re.... or Message
2467 ("\\`/tmp/Re" . text-mode)
2468 ("/Message[0-9]*\\'" . text-mode)
2469 ;; some news reader is reported to use this
2470 ("\\`/tmp/fol/" . text-mode)
2471 ("\\.oak\\'" . scheme-mode)
2472 ("\\.sgml?\\'" . sgml-mode)
2473 ("\\.x[ms]l\\'" . xml-mode)
2474 ("\\.dbk\\'" . xml-mode)
2475 ("\\.dtd\\'" . sgml-mode)
2476 ("\\.ds\\(ss\\)?l\\'" . dsssl-mode)
2477 ("\\.jsm?\\'" . javascript-mode)
2478 ("\\.json\\'" . javascript-mode)
2479 ("\\.[ds]?vh?\\'" . verilog-mode)
2480 ("\\.by\\'" . bovine-grammar-mode)
2481 ("\\.wy\\'" . wisent-grammar-mode)
2482 ;; .emacs or .gnus or .viper following a directory delimiter in
2483 ;; Unix or MS-DOS syntax.
2484 ("[:/\\]\\..*\\(emacs\\|gnus\\|viper\\)\\'" . emacs-lisp-mode)
2485 ("\\`\\..*emacs\\'" . emacs-lisp-mode)
2486 ;; _emacs following a directory delimiter in MS-DOS syntax
2487 ("[:/]_emacs\\'" . emacs-lisp-mode)
2488 ("/crontab\\.X*[0-9]+\\'" . shell-script-mode)
2489 ("\\.ml\\'" . lisp-mode)
2490 ;; Linux-2.6.9 uses some different suffix for linker scripts:
2491 ;; "ld", "lds", "lds.S", "lds.in", "ld.script", and "ld.script.balo".
2492 ;; eCos uses "ld" and "ldi". Netbsd uses "ldscript.*".
2493 ("\\.ld[si]?\\'" . ld-script-mode)
2494 ("ld\\.?script\\'" . ld-script-mode)
2495 ;; .xs is also used for ld scripts, but seems to be more commonly
2496 ;; associated with Perl .xs files (C with Perl bindings). (Bug#7071)
2497 ("\\.xs\\'" . c-mode)
2498 ;; Explained in binutils ld/genscripts.sh. Eg:
2499 ;; A .x script file is the default script.
2500 ;; A .xr script is for linking without relocation (-r flag). Etc.
2501 ("\\.x[abdsru]?[cnw]?\\'" . ld-script-mode)
2502 ("\\.zone\\'" . dns-mode)
2503 ("\\.soa\\'" . dns-mode)
2504 ;; Common Lisp ASDF package system.
2505 ("\\.asd\\'" . lisp-mode)
2506 ("\\.\\(asn\\|mib\\|smi\\)\\'" . snmp-mode)
2507 ("\\.\\(as\\|mi\\|sm\\)2\\'" . snmpv2-mode)
2508 ("\\.\\(diffs?\\|patch\\|rej\\)\\'" . diff-mode)
2509 ("\\.\\(dif\\|pat\\)\\'" . diff-mode) ; for MS-DOS
2510 ("\\.[eE]?[pP][sS]\\'" . ps-mode)
2511 ("\\.\\(?:PDF\\|DVI\\|OD[FGPST]\\|DOCX?\\|XLSX?\\|PPTX?\\|pdf\\|djvu\\|dvi\\|od[fgpst]\\|docx?\\|xlsx?\\|pptx?\\)\\'" . doc-view-mode-maybe)
2512 ("configure\\.\\(ac\\|in\\)\\'" . autoconf-mode)
2513 ("\\.s\\(v\\|iv\\|ieve\\)\\'" . sieve-mode)
2514 ("BROWSE\\'" . ebrowse-tree-mode)
2515 ("\\.ebrowse\\'" . ebrowse-tree-mode)
2516 ("#\\*mail\\*" . mail-mode)
2517 ("\\.g\\'" . antlr-mode)
2518 ("\\.mod\\'" . m2-mode)
2519 ("\\.ses\\'" . ses-mode)
2520 ("\\.docbook\\'" . sgml-mode)
2521 ("\\.com\\'" . dcl-mode)
2522 ("/config\\.\\(?:bat\\|log\\)\\'" . fundamental-mode)
2523 ;; Windows candidates may be opened case sensitively on Unix
2524 ("\\.\\(?:[iI][nN][iI]\\|[lL][sS][tT]\\|[rR][eE][gG]\\|[sS][yY][sS]\\)\\'" . conf-mode)
2525 ("\\.\\(?:desktop\\|la\\)\\'" . conf-unix-mode)
2526 ("\\.ppd\\'" . conf-ppd-mode)
2527 ("java.+\\.conf\\'" . conf-javaprop-mode)
2528 ("\\.properties\\(?:\\.[a-zA-Z0-9._-]+\\)?\\'" . conf-javaprop-mode)
2529 ("\\`/etc/\\(?:DIR_COLORS\\|ethers\\|.?fstab\\|.*hosts\\|lesskey\\|login\\.?de\\(?:fs\\|vperm\\)\\|magic\\|mtab\\|pam\\.d/.*\\|permissions\\(?:\\.d/.+\\)?\\|protocols\\|rpc\\|services\\)\\'" . conf-space-mode)
2530 ("\\`/etc/\\(?:acpid?/.+\\|aliases\\(?:\\.d/.+\\)?\\|default/.+\\|group-?\\|hosts\\..+\\|inittab\\|ksysguarddrc\\|opera6rc\\|passwd-?\\|shadow-?\\|sysconfig/.+\\)\\'" . conf-mode)
2531 ;; ChangeLog.old etc. Other change-log-mode entries are above;
2532 ;; this has lower priority to avoid matching changelog.sgml etc.
2533 ("[cC]hange[lL]og[-.][-0-9a-z]+\\'" . change-log-mode)
2534 ;; either user's dot-files or under /etc or some such
2535 ("/\\.?\\(?:gnokiirc\\|kde.*rc\\|mime\\.types\\|wgetrc\\)\\'" . conf-mode)
2536 ;; alas not all ~/.*rc files are like this
2537 ("/\\.\\(?:enigma\\|gltron\\|gtk\\|hxplayer\\|net\\|neverball\\|qt/.+\\|realplayer\\|scummvm\\|sversion\\|sylpheed/.+\\|xmp\\)rc\\'" . conf-mode)
2538 ("/\\.\\(?:gdbtkinit\\|grip\\|orbital/.+txt\\|rhosts\\|tuxracer/options\\)\\'" . conf-mode)
2539 ("/\\.?X\\(?:default\\|resource\\|re\\)s\\>" . conf-xdefaults-mode)
2540 ("/X11.+app-defaults/\\|\\.ad\\'" . conf-xdefaults-mode)
2541 ("/X11.+locale/.+/Compose\\'" . conf-colon-mode)
2542 ;; this contains everything twice, with space and with colon :-(
2543 ("/X11.+locale/compose\\.dir\\'" . conf-javaprop-mode)
2544 ;; Get rid of any trailing .n.m and try again.
2545 ;; This is for files saved by cvs-merge that look like .#<file>.<rev>
2546 ;; or .#<file>.<rev>-<rev> or VC's <file>.~<rev>~.
2547 ;; Using mode nil rather than `ignore' would let the search continue
2548 ;; through this list (with the shortened name) rather than start over.
2549 ("\\.~?[0-9]+\\.[0-9][-.0-9]*~?\\'" nil t)
2550 ("\\.\\(?:orig\\|in\\|[bB][aA][kK]\\)\\'" nil t)
2551 ;; This should come after "in" stripping (e.g. config.h.in).
2552 ;; *.cf, *.cfg, *.conf, *.config[.local|.de_DE.UTF8|...], */config
2553 ("[/.]c\\(?:on\\)?f\\(?:i?g\\)?\\(?:\\.[a-zA-Z0-9._-]+\\)?\\'" . conf-mode-maybe)
2554 ;; The following should come after the ChangeLog pattern
2555 ;; for the sake of ChangeLog.1, etc.
2556 ;; and after the .scm.[0-9] and CVS' <file>.<rev> patterns too.
2557 ("\\.[1-9]\\'" . nroff-mode)))
2558 "Alist of filename patterns vs corresponding major mode functions.
2559 Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL).
2560 \(NON-NIL stands for anything that is not nil; the value does not matter.)
2561 Visiting a file whose name matches REGEXP specifies FUNCTION as the
2562 mode function to use. FUNCTION will be called, unless it is nil.
2564 If the element has the form (REGEXP FUNCTION NON-NIL), then after
2565 calling FUNCTION (if it's not nil), we delete the suffix that matched
2566 REGEXP and search the list again for another match.
2568 The extensions whose FUNCTION is `archive-mode' should also
2569 appear in `auto-coding-alist' with `no-conversion' coding system.
2571 See also `interpreter-mode-alist', which detects executable script modes
2572 based on the interpreters they specify to run,
2573 and `magic-mode-alist', which determines modes based on file contents.")
2574 (put 'auto-mode-alist 'risky-local-variable t)
2576 (defun conf-mode-maybe ()
2577 "Select Conf mode or XML mode according to start of file."
2578 (if (save-excursion
2579 (save-restriction
2580 (widen)
2581 (goto-char (point-min))
2582 (looking-at "<\\?xml \\|<!-- \\|<!DOCTYPE ")))
2583 (xml-mode)
2584 (conf-mode)))
2586 (defvar interpreter-mode-alist
2587 ;; Note: The entries for the modes defined in cc-mode.el (awk-mode
2588 ;; and pike-mode) are added through autoload directives in that
2589 ;; file. That way is discouraged since it spreads out the
2590 ;; definition of the initial value.
2591 (mapcar
2592 (lambda (l)
2593 (cons (purecopy (car l)) (cdr l)))
2594 '(("\\(mini\\)?perl5?" . perl-mode)
2595 ("wishx?" . tcl-mode)
2596 ("tcl\\(sh\\)?" . tcl-mode)
2597 ("expect" . tcl-mode)
2598 ("octave" . octave-mode)
2599 ("scm" . scheme-mode)
2600 ("[acjkwz]sh" . sh-mode)
2601 ("r?bash2?" . sh-mode)
2602 ("dash" . sh-mode)
2603 ("mksh" . sh-mode)
2604 ("\\(dt\\|pd\\|w\\)ksh" . sh-mode)
2605 ("es" . sh-mode)
2606 ("i?tcsh" . sh-mode)
2607 ("oash" . sh-mode)
2608 ("rc" . sh-mode)
2609 ("rpm" . sh-mode)
2610 ("sh5?" . sh-mode)
2611 ("tail" . text-mode)
2612 ("more" . text-mode)
2613 ("less" . text-mode)
2614 ("pg" . text-mode)
2615 ("make" . makefile-gmake-mode) ; Debian uses this
2616 ("guile" . scheme-mode)
2617 ("clisp" . lisp-mode)
2618 ("emacs" . emacs-lisp-mode)))
2619 "Alist mapping interpreter names to major modes.
2620 This is used for files whose first lines match `auto-mode-interpreter-regexp'.
2621 Each element looks like (REGEXP . MODE).
2622 If \\\\`REGEXP\\\\' matches the name (minus any directory part) of
2623 the interpreter specified in the first line of a script, enable
2624 major mode MODE.
2626 See also `auto-mode-alist'.")
2628 (define-obsolete-variable-alias 'inhibit-first-line-modes-regexps
2629 'inhibit-file-local-variables-regexps "24.1")
2631 ;; TODO really this should be a list of modes (eg tar-mode), not regexps,
2632 ;; because we are duplicating info from auto-mode-alist.
2633 ;; TODO many elements of this list are also in auto-coding-alist.
2634 (defvar inhibit-local-variables-regexps
2635 (mapcar 'purecopy '("\\.tar\\'" "\\.t[bg]z\\'"
2636 "\\.arc\\'" "\\.zip\\'" "\\.lzh\\'" "\\.lha\\'"
2637 "\\.zoo\\'" "\\.[jew]ar\\'" "\\.xpi\\'" "\\.rar\\'"
2638 "\\.7z\\'"
2639 "\\.sx[dmicw]\\'" "\\.odt\\'"
2640 "\\.diff\\'" "\\.patch\\'"
2641 "\\.tiff?\\'" "\\.gif\\'" "\\.png\\'" "\\.jpe?g\\'"))
2642 "List of regexps matching file names in which to ignore local variables.
2643 This includes `-*-' lines as well as trailing \"Local Variables\" sections.
2644 Files matching this list are typically binary file formats.
2645 They may happen to contain sequences that look like local variable
2646 specifications, but are not really, or they may be containers for
2647 member files with their own local variable sections, which are
2648 not appropriate for the containing file.
2649 The function `inhibit-local-variables-p' uses this.")
2651 (define-obsolete-variable-alias 'inhibit-first-line-modes-suffixes
2652 'inhibit-local-variables-suffixes "24.1")
2654 (defvar inhibit-local-variables-suffixes nil
2655 "List of regexps matching suffixes to remove from file names.
2656 The function `inhibit-local-variables-p' uses this: when checking
2657 a file name, it first discards from the end of the name anything that
2658 matches one of these regexps.")
2660 ;; Can't think of any situation in which you'd want this to be nil...
2661 (defvar inhibit-local-variables-ignore-case t
2662 "Non-nil means `inhibit-local-variables-p' ignores case.")
2664 (defun inhibit-local-variables-p ()
2665 "Return non-nil if file local variables should be ignored.
2666 This checks the file (or buffer) name against `inhibit-local-variables-regexps'
2667 and `inhibit-local-variables-suffixes'. If
2668 `inhibit-local-variables-ignore-case' is non-nil, this ignores case."
2669 (let ((temp inhibit-local-variables-regexps)
2670 (name (if buffer-file-name
2671 (file-name-sans-versions buffer-file-name)
2672 (buffer-name)))
2673 (case-fold-search inhibit-local-variables-ignore-case))
2674 (while (let ((sufs inhibit-local-variables-suffixes))
2675 (while (and sufs (not (string-match (car sufs) name)))
2676 (setq sufs (cdr sufs)))
2677 sufs)
2678 (setq name (substring name 0 (match-beginning 0))))
2679 (while (and temp
2680 (not (string-match (car temp) name)))
2681 (setq temp (cdr temp)))
2682 temp))
2684 (defvar auto-mode-interpreter-regexp
2685 (purecopy "#![ \t]?\\([^ \t\n]*\
2686 /bin/env[ \t]\\)?\\([^ \t\n]+\\)")
2687 "Regexp matching interpreters, for file mode determination.
2688 This regular expression is matched against the first line of a file
2689 to determine the file's mode in `set-auto-mode'. If it matches, the file
2690 is assumed to be interpreted by the interpreter matched by the second group
2691 of the regular expression. The mode is then determined as the mode
2692 associated with that interpreter in `interpreter-mode-alist'.")
2694 (defvar magic-mode-alist nil
2695 "Alist of buffer beginnings vs. corresponding major mode functions.
2696 Each element looks like (REGEXP . FUNCTION) or (MATCH-FUNCTION . FUNCTION).
2697 After visiting a file, if REGEXP matches the text at the beginning of the
2698 buffer, or calling MATCH-FUNCTION returns non-nil, `normal-mode' will
2699 call FUNCTION rather than allowing `auto-mode-alist' to decide the buffer's
2700 major mode.
2702 If FUNCTION is nil, then it is not called. (That is a way of saying
2703 \"allow `auto-mode-alist' to decide for these files.\")")
2704 (put 'magic-mode-alist 'risky-local-variable t)
2706 (defvar magic-fallback-mode-alist
2707 (purecopy
2708 `((image-type-auto-detected-p . image-mode)
2709 ("\\(PK00\\)?[P]K\003\004" . archive-mode) ; zip
2710 ;; The < comes before the groups (but the first) to reduce backtracking.
2711 ;; TODO: UTF-16 <?xml may be preceded by a BOM 0xff 0xfe or 0xfe 0xff.
2712 ;; We use [ \t\r\n] instead of `\\s ' to make regex overflow less likely.
2713 (,(let* ((incomment-re "\\(?:[^-]\\|-[^-]\\)")
2714 (comment-re (concat "\\(?:!--" incomment-re "*-->[ \t\r\n]*<\\)")))
2715 (concat "\\(?:<\\?xml[ \t\r\n]+[^>]*>\\)?[ \t\r\n]*<"
2716 comment-re "*"
2717 "\\(?:!DOCTYPE[ \t\r\n]+[^>]*>[ \t\r\n]*<[ \t\r\n]*" comment-re "*\\)?"
2718 "[Hh][Tt][Mm][Ll]"))
2719 . html-mode)
2720 ("<!DOCTYPE[ \t\r\n]+[Hh][Tt][Mm][Ll]" . html-mode)
2721 ;; These two must come after html, because they are more general:
2722 ("<\\?xml " . xml-mode)
2723 (,(let* ((incomment-re "\\(?:[^-]\\|-[^-]\\)")
2724 (comment-re (concat "\\(?:!--" incomment-re "*-->[ \t\r\n]*<\\)")))
2725 (concat "[ \t\r\n]*<" comment-re "*!DOCTYPE "))
2726 . sgml-mode)
2727 ("%!PS" . ps-mode)
2728 ("# xmcd " . conf-unix-mode)))
2729 "Like `magic-mode-alist' but has lower priority than `auto-mode-alist'.
2730 Each element looks like (REGEXP . FUNCTION) or (MATCH-FUNCTION . FUNCTION).
2731 After visiting a file, if REGEXP matches the text at the beginning of the
2732 buffer, or calling MATCH-FUNCTION returns non-nil, `normal-mode' will
2733 call FUNCTION, provided that `magic-mode-alist' and `auto-mode-alist'
2734 have not specified a mode for this file.
2736 If FUNCTION is nil, then it is not called.")
2737 (put 'magic-fallback-mode-alist 'risky-local-variable t)
2739 (defvar magic-mode-regexp-match-limit 4000
2740 "Upper limit on `magic-mode-alist' regexp matches.
2741 Also applies to `magic-fallback-mode-alist'.")
2743 (defun set-auto-mode (&optional keep-mode-if-same)
2744 "Select major mode appropriate for current buffer.
2746 To find the right major mode, this function checks for a -*- mode tag
2747 checks for a `mode:' entry in the Local Variables section of the file,
2748 checks if it uses an interpreter listed in `interpreter-mode-alist',
2749 matches the buffer beginning against `magic-mode-alist',
2750 compares the filename against the entries in `auto-mode-alist',
2751 then matches the buffer beginning against `magic-fallback-mode-alist'.
2753 If `enable-local-variables' is nil, or if the file name matches
2754 `inhibit-local-variables-regexps', this function does not check
2755 for any mode: tag anywhere in the file. If `local-enable-local-variables'
2756 is nil, then the only mode: tag that can be relevant is a -*- one.
2758 If the optional argument KEEP-MODE-IF-SAME is non-nil, then we
2759 set the major mode only if that would change it. In other words
2760 we don't actually set it to the same mode the buffer already has."
2761 ;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*-
2762 (let ((try-locals (not (inhibit-local-variables-p)))
2763 end done mode modes)
2764 ;; Once we drop the deprecated feature where mode: is also allowed to
2765 ;; specify minor-modes (ie, there can be more than one "mode:"), we can
2766 ;; remove this section and just let (hack-local-variables t) handle it.
2767 ;; Find a -*- mode tag.
2768 (save-excursion
2769 (goto-char (point-min))
2770 (skip-chars-forward " \t\n")
2771 ;; Note by design local-enable-local-variables does not matter here.
2772 (and enable-local-variables
2773 try-locals
2774 (setq end (set-auto-mode-1))
2775 (if (save-excursion (search-forward ":" end t))
2776 ;; Find all specifications for the `mode:' variable
2777 ;; and execute them left to right.
2778 (while (let ((case-fold-search t))
2779 (or (and (looking-at "mode:")
2780 (goto-char (match-end 0)))
2781 (re-search-forward "[ \t;]mode:" end t)))
2782 (skip-chars-forward " \t")
2783 (let ((beg (point)))
2784 (if (search-forward ";" end t)
2785 (forward-char -1)
2786 (goto-char end))
2787 (skip-chars-backward " \t")
2788 (push (intern (concat (downcase (buffer-substring beg (point))) "-mode"))
2789 modes)))
2790 ;; Simple -*-MODE-*- case.
2791 (push (intern (concat (downcase (buffer-substring (point) end))
2792 "-mode"))
2793 modes))))
2794 ;; If we found modes to use, invoke them now, outside the save-excursion.
2795 (if modes
2796 (catch 'nop
2797 (dolist (mode (nreverse modes))
2798 (if (not (functionp mode))
2799 (message "Ignoring unknown mode `%s'" mode)
2800 (setq done t)
2801 (or (set-auto-mode-0 mode keep-mode-if-same)
2802 ;; continuing would call minor modes again, toggling them off
2803 (throw 'nop nil))))))
2804 ;; hack-local-variables checks local-enable-local-variables etc, but
2805 ;; we might as well be explicit here for the sake of clarity.
2806 (and (not done)
2807 enable-local-variables
2808 local-enable-local-variables
2809 try-locals
2810 (setq mode (hack-local-variables t))
2811 (not (memq mode modes)) ; already tried and failed
2812 (if (not (functionp mode))
2813 (message "Ignoring unknown mode `%s'" mode)
2814 (setq done t)
2815 (set-auto-mode-0 mode keep-mode-if-same)))
2816 ;; If we didn't, look for an interpreter specified in the first line.
2817 ;; As a special case, allow for things like "#!/bin/env perl", which
2818 ;; finds the interpreter anywhere in $PATH.
2819 (and (not done)
2820 (setq mode (save-excursion
2821 (goto-char (point-min))
2822 (if (looking-at auto-mode-interpreter-regexp)
2823 (match-string 2))))
2824 ;; Map interpreter name to a mode, signaling we're done at the
2825 ;; same time.
2826 (setq done (assoc-default
2827 (file-name-nondirectory mode)
2828 (mapcar (lambda (e)
2829 (cons
2830 (format "\\`%s\\'" (car e))
2831 (cdr e)))
2832 interpreter-mode-alist)
2833 #'string-match-p))
2834 ;; If we found an interpreter mode to use, invoke it now.
2835 (set-auto-mode-0 done keep-mode-if-same))
2836 ;; Next try matching the buffer beginning against magic-mode-alist.
2837 (unless done
2838 (if (setq done (save-excursion
2839 (goto-char (point-min))
2840 (save-restriction
2841 (narrow-to-region (point-min)
2842 (min (point-max)
2843 (+ (point-min) magic-mode-regexp-match-limit)))
2844 (assoc-default nil magic-mode-alist
2845 (lambda (re _dummy)
2846 (if (functionp re)
2847 (funcall re)
2848 (looking-at re)))))))
2849 (set-auto-mode-0 done keep-mode-if-same)))
2850 ;; Next compare the filename against the entries in auto-mode-alist.
2851 (unless done
2852 (if buffer-file-name
2853 (let ((name buffer-file-name)
2854 (remote-id (file-remote-p buffer-file-name)))
2855 ;; Remove backup-suffixes from file name.
2856 (setq name (file-name-sans-versions name))
2857 ;; Remove remote file name identification.
2858 (when (and (stringp remote-id)
2859 (string-match (regexp-quote remote-id) name))
2860 (setq name (substring name (match-end 0))))
2861 (while name
2862 ;; Find first matching alist entry.
2863 (setq mode
2864 (if (memq system-type '(windows-nt cygwin))
2865 ;; System is case-insensitive.
2866 (let ((case-fold-search t))
2867 (assoc-default name auto-mode-alist
2868 'string-match))
2869 ;; System is case-sensitive.
2871 ;; First match case-sensitively.
2872 (let ((case-fold-search nil))
2873 (assoc-default name auto-mode-alist
2874 'string-match))
2875 ;; Fallback to case-insensitive match.
2876 (and auto-mode-case-fold
2877 (let ((case-fold-search t))
2878 (assoc-default name auto-mode-alist
2879 'string-match))))))
2880 (if (and mode
2881 (consp mode)
2882 (cadr mode))
2883 (setq mode (car mode)
2884 name (substring name 0 (match-beginning 0)))
2885 (setq name nil))
2886 (when mode
2887 (set-auto-mode-0 mode keep-mode-if-same)
2888 (setq done t))))))
2889 ;; Next try matching the buffer beginning against magic-fallback-mode-alist.
2890 (unless done
2891 (if (setq done (save-excursion
2892 (goto-char (point-min))
2893 (save-restriction
2894 (narrow-to-region (point-min)
2895 (min (point-max)
2896 (+ (point-min) magic-mode-regexp-match-limit)))
2897 (assoc-default nil magic-fallback-mode-alist
2898 (lambda (re _dummy)
2899 (if (functionp re)
2900 (funcall re)
2901 (looking-at re)))))))
2902 (set-auto-mode-0 done keep-mode-if-same)))
2903 (unless done
2904 (set-buffer-major-mode (current-buffer)))))
2906 ;; When `keep-mode-if-same' is set, we are working on behalf of
2907 ;; set-visited-file-name. In that case, if the major mode specified is the
2908 ;; same one we already have, don't actually reset it. We don't want to lose
2909 ;; minor modes such as Font Lock.
2910 (defun set-auto-mode-0 (mode &optional keep-mode-if-same)
2911 "Apply MODE and return it.
2912 If optional arg KEEP-MODE-IF-SAME is non-nil, MODE is chased of
2913 any aliases and compared to current major mode. If they are the
2914 same, do nothing and return nil."
2915 (unless (and keep-mode-if-same
2916 (eq (indirect-function mode)
2917 (indirect-function major-mode)))
2918 (when mode
2919 (funcall mode)
2920 mode)))
2922 (defvar file-auto-mode-skip "^\\(#!\\|'\\\\\"\\)"
2923 "Regexp of lines to skip when looking for file-local settings.
2924 If the first line matches this regular expression, then the -*-...-*- file-
2925 local settings will be consulted on the second line instead of the first.")
2927 (defun set-auto-mode-1 ()
2928 "Find the -*- spec in the buffer.
2929 Call with point at the place to start searching from.
2930 If one is found, set point to the beginning and return the position
2931 of the end. Otherwise, return nil; may change point.
2932 The variable `inhibit-local-variables-regexps' can cause a -*- spec to
2933 be ignored; but `enable-local-variables' and `local-enable-local-variables'
2934 have no effect."
2935 (let (beg end)
2936 (and
2937 ;; Don't look for -*- if this file name matches any
2938 ;; of the regexps in inhibit-local-variables-regexps.
2939 (not (inhibit-local-variables-p))
2940 (search-forward "-*-" (line-end-position
2941 ;; If the file begins with "#!" (exec
2942 ;; interpreter magic), look for mode frobs
2943 ;; in the first two lines. You cannot
2944 ;; necessarily put them in the first line
2945 ;; of such a file without screwing up the
2946 ;; interpreter invocation. The same holds
2947 ;; for '\" in man pages (preprocessor
2948 ;; magic for the `man' program).
2949 (and (looking-at file-auto-mode-skip) 2)) t)
2950 (progn
2951 (skip-chars-forward " \t")
2952 (setq beg (point))
2953 (search-forward "-*-" (line-end-position) t))
2954 (progn
2955 (forward-char -3)
2956 (skip-chars-backward " \t")
2957 (setq end (point))
2958 (goto-char beg)
2959 end))))
2961 ;;; Handling file local variables
2963 (defvar ignored-local-variables
2964 '(ignored-local-variables safe-local-variable-values
2965 file-local-variables-alist dir-local-variables-alist)
2966 "Variables to be ignored in a file's local variable spec.")
2967 (put 'ignored-local-variables 'risky-local-variable t)
2969 (defvar hack-local-variables-hook nil
2970 "Normal hook run after processing a file's local variables specs.
2971 Major modes can use this to examine user-specified local variables
2972 in order to initialize other data structure based on them.")
2974 (defcustom safe-local-variable-values nil
2975 "List variable-value pairs that are considered safe.
2976 Each element is a cons cell (VAR . VAL), where VAR is a variable
2977 symbol and VAL is a value that is considered safe."
2978 :risky t
2979 :group 'find-file
2980 :type 'alist)
2982 (defcustom safe-local-eval-forms
2983 ;; This should be here at least as long as Emacs supports write-file-hooks.
2984 '((add-hook 'write-file-hooks 'time-stamp)
2985 (add-hook 'write-file-functions 'time-stamp)
2986 (add-hook 'before-save-hook 'time-stamp nil t)
2987 (add-hook 'before-save-hook 'delete-trailing-whitespace nil t))
2988 "Expressions that are considered safe in an `eval:' local variable.
2989 Add expressions to this list if you want Emacs to evaluate them, when
2990 they appear in an `eval' local variable specification, without first
2991 asking you for confirmation."
2992 :risky t
2993 :group 'find-file
2994 :version "24.1" ; added write-file-hooks
2995 :type '(repeat sexp))
2997 ;; Risky local variables:
2998 (mapc (lambda (var) (put var 'risky-local-variable t))
2999 '(after-load-alist
3000 buffer-auto-save-file-name
3001 buffer-file-name
3002 buffer-file-truename
3003 buffer-undo-list
3004 debugger
3005 default-text-properties
3006 eval
3007 exec-directory
3008 exec-path
3009 file-name-handler-alist
3010 frame-title-format
3011 global-mode-string
3012 header-line-format
3013 icon-title-format
3014 inhibit-quit
3015 load-path
3016 max-lisp-eval-depth
3017 max-specpdl-size
3018 minor-mode-map-alist
3019 minor-mode-overriding-map-alist
3020 mode-line-format
3021 mode-name
3022 overriding-local-map
3023 overriding-terminal-local-map
3024 process-environment
3025 standard-input
3026 standard-output
3027 unread-command-events))
3029 ;; Safe local variables:
3031 ;; For variables defined by major modes, the safety declarations can go into
3032 ;; the major mode's file, since that will be loaded before file variables are
3033 ;; processed.
3035 ;; For variables defined by minor modes, put the safety declarations in the
3036 ;; file defining the minor mode after the defcustom/defvar using an autoload
3037 ;; cookie, e.g.:
3039 ;; ;;;###autoload(put 'variable 'safe-local-variable 'stringp)
3041 ;; Otherwise, when Emacs visits a file specifying that local variable, the
3042 ;; minor mode file may not be loaded yet.
3044 ;; For variables defined in the C source code the declaration should go here:
3046 (dolist (pair
3047 '((buffer-read-only . booleanp) ;; C source code
3048 (default-directory . stringp) ;; C source code
3049 (fill-column . integerp) ;; C source code
3050 (indent-tabs-mode . booleanp) ;; C source code
3051 (left-margin . integerp) ;; C source code
3052 (no-update-autoloads . booleanp)
3053 (lexical-binding . booleanp) ;; C source code
3054 (tab-width . integerp) ;; C source code
3055 (truncate-lines . booleanp) ;; C source code
3056 (word-wrap . booleanp) ;; C source code
3057 (bidi-display-reordering . booleanp))) ;; C source code
3058 (put (car pair) 'safe-local-variable (cdr pair)))
3060 (put 'bidi-paragraph-direction 'safe-local-variable
3061 (lambda (v) (memq v '(nil right-to-left left-to-right))))
3063 (put 'c-set-style 'safe-local-eval-function t)
3065 (defvar file-local-variables-alist nil
3066 "Alist of file-local variable settings in the current buffer.
3067 Each element in this list has the form (VAR . VALUE), where VAR
3068 is a file-local variable (a symbol) and VALUE is the value
3069 specified. The actual value in the buffer may differ from VALUE,
3070 if it is changed by the major or minor modes, or by the user.")
3071 (make-variable-buffer-local 'file-local-variables-alist)
3072 (put 'file-local-variables-alist 'permanent-local t)
3074 (defvar dir-local-variables-alist nil
3075 "Alist of directory-local variable settings in the current buffer.
3076 Each element in this list has the form (VAR . VALUE), where VAR
3077 is a directory-local variable (a symbol) and VALUE is the value
3078 specified in .dir-locals.el. The actual value in the buffer
3079 may differ from VALUE, if it is changed by the major or minor modes,
3080 or by the user.")
3081 (make-variable-buffer-local 'dir-local-variables-alist)
3083 (defvar before-hack-local-variables-hook nil
3084 "Normal hook run before setting file-local variables.
3085 It is called after checking for unsafe/risky variables and
3086 setting `file-local-variables-alist', and before applying the
3087 variables stored in `file-local-variables-alist'. A hook
3088 function is allowed to change the contents of this alist.
3090 This hook is called only if there is at least one file-local
3091 variable to set.")
3093 (defun hack-local-variables-confirm (all-vars unsafe-vars risky-vars dir-name)
3094 "Get confirmation before setting up local variable values.
3095 ALL-VARS is the list of all variables to be set up.
3096 UNSAFE-VARS is the list of those that aren't marked as safe or risky.
3097 RISKY-VARS is the list of those that are marked as risky.
3098 If these settings come from directory-local variables, then
3099 DIR-NAME is the name of the associated directory. Otherwise it is nil."
3100 (unless noninteractive
3101 (let ((name (cond (dir-name)
3102 (buffer-file-name
3103 (file-name-nondirectory buffer-file-name))
3104 ((concat "buffer " (buffer-name)))))
3105 (offer-save (and (eq enable-local-variables t)
3106 unsafe-vars))
3107 (buf (get-buffer-create "*Local Variables*")))
3108 ;; Set up the contents of the *Local Variables* buffer.
3109 (with-current-buffer buf
3110 (erase-buffer)
3111 (cond
3112 (unsafe-vars
3113 (insert "The local variables list in " name
3114 "\ncontains values that may not be safe (*)"
3115 (if risky-vars
3116 ", and variables that are risky (**)."
3117 ".")))
3118 (risky-vars
3119 (insert "The local variables list in " name
3120 "\ncontains variables that are risky (**)."))
3122 (insert "A local variables list is specified in " name ".")))
3123 (insert "\n\nDo you want to apply it? You can type
3124 y -- to apply the local variables list.
3125 n -- to ignore the local variables list.")
3126 (if offer-save
3127 (insert "
3128 ! -- to apply the local variables list, and permanently mark these
3129 values (*) as safe (in the future, they will be set automatically.)\n\n")
3130 (insert "\n\n"))
3131 (dolist (elt all-vars)
3132 (cond ((member elt unsafe-vars)
3133 (insert " * "))
3134 ((member elt risky-vars)
3135 (insert " ** "))
3137 (insert " ")))
3138 (princ (car elt) buf)
3139 (insert " : ")
3140 ;; Make strings with embedded whitespace easier to read.
3141 (let ((print-escape-newlines t))
3142 (prin1 (cdr elt) buf))
3143 (insert "\n"))
3144 (set (make-local-variable 'cursor-type) nil)
3145 (set-buffer-modified-p nil)
3146 (goto-char (point-min)))
3148 ;; Display the buffer and read a choice.
3149 (save-window-excursion
3150 (pop-to-buffer buf)
3151 (let* ((exit-chars '(?y ?n ?\s ?\C-g ?\C-v))
3152 (prompt (format "Please type %s%s: "
3153 (if offer-save "y, n, or !" "y or n")
3154 (if (< (line-number-at-pos (point-max))
3155 (window-body-height))
3157 (push ?\C-v exit-chars)
3158 ", or C-v to scroll")))
3159 char)
3160 (if offer-save (push ?! exit-chars))
3161 (while (null char)
3162 (setq char (read-char-choice prompt exit-chars t))
3163 (when (eq char ?\C-v)
3164 (condition-case nil
3165 (scroll-up)
3166 (error (goto-char (point-min))
3167 (recenter 1)))
3168 (setq char nil)))
3169 (when (and offer-save (= char ?!) unsafe-vars)
3170 (customize-push-and-save 'safe-local-variable-values unsafe-vars))
3171 (prog1 (memq char '(?! ?\s ?y))
3172 (quit-window t)))))))
3174 (defconst hack-local-variable-regexp
3175 "[ \t]*\\([^][;\"'?()\\ \t\n]+\\)[ \t]*:[ \t]*")
3177 (defun hack-local-variables-prop-line (&optional mode-only)
3178 "Return local variables specified in the -*- line.
3179 Returns an alist of elements (VAR . VAL), where VAR is a variable
3180 and VAL is the specified value. Ignores any specification for
3181 `mode:' and `coding:' (which should have already been handled
3182 by `set-auto-mode' and `set-auto-coding', respectively).
3183 Return nil if the -*- line is malformed.
3185 If MODE-ONLY is non-nil, just returns the symbol specifying the
3186 mode, if there is one, otherwise nil."
3187 (catch 'malformed-line
3188 (save-excursion
3189 (goto-char (point-min))
3190 (let ((end (set-auto-mode-1))
3191 result)
3192 (cond ((not end)
3193 nil)
3194 ((looking-at "[ \t]*\\([^ \t\n\r:;]+\\)\\([ \t]*-\\*-\\)")
3195 ;; Simple form: "-*- MODENAME -*-".
3196 (if mode-only
3197 (intern (concat (match-string 1) "-mode"))))
3199 ;; Hairy form: '-*-' [ <variable> ':' <value> ';' ]* '-*-'
3200 ;; (last ";" is optional).
3201 ;; If MODE-ONLY, just check for `mode'.
3202 ;; Otherwise, parse the -*- line into the RESULT alist.
3203 (while (not (or (and mode-only result)
3204 (>= (point) end)))
3205 (unless (looking-at hack-local-variable-regexp)
3206 (message "Malformed mode-line: %S"
3207 (buffer-substring-no-properties (point) end))
3208 (throw 'malformed-line nil))
3209 (goto-char (match-end 0))
3210 ;; There used to be a downcase here,
3211 ;; but the manual didn't say so,
3212 ;; and people want to set var names that aren't all lc.
3213 (let* ((key (intern (match-string 1)))
3214 (val (save-restriction
3215 (narrow-to-region (point) end)
3216 (let ((read-circle nil))
3217 (read (current-buffer)))))
3218 ;; It is traditional to ignore
3219 ;; case when checking for `mode' in set-auto-mode,
3220 ;; so we must do that here as well.
3221 ;; That is inconsistent, but we're stuck with it.
3222 ;; The same can be said for `coding' in set-auto-coding.
3223 (keyname (downcase (symbol-name key))))
3224 (if mode-only
3225 (and (equal keyname "mode")
3226 (setq result
3227 (intern (concat (downcase (symbol-name val))
3228 "-mode"))))
3229 (or (equal keyname "coding")
3230 (condition-case nil
3231 (push (cons (cond ((eq key 'eval) 'eval)
3232 ;; Downcase "Mode:".
3233 ((equal keyname "mode") 'mode)
3234 (t (indirect-variable key)))
3235 val) result)
3236 (error nil))))
3237 (skip-chars-forward " \t;")))
3238 result))))))
3240 (defun hack-local-variables-filter (variables dir-name)
3241 "Filter local variable settings, querying the user if necessary.
3242 VARIABLES is the alist of variable-value settings. This alist is
3243 filtered based on the values of `ignored-local-variables',
3244 `enable-local-eval', `enable-local-variables', and (if necessary)
3245 user interaction. The results are added to
3246 `file-local-variables-alist', without applying them.
3247 If these settings come from directory-local variables, then
3248 DIR-NAME is the name of the associated directory. Otherwise it is nil."
3249 ;; Find those variables that we may want to save to
3250 ;; `safe-local-variable-values'.
3251 (let (all-vars risky-vars unsafe-vars)
3252 (dolist (elt variables)
3253 (let ((var (car elt))
3254 (val (cdr elt)))
3255 (cond ((memq var ignored-local-variables)
3256 ;; Ignore any variable in `ignored-local-variables'.
3257 nil)
3258 ;; Obey `enable-local-eval'.
3259 ((eq var 'eval)
3260 (when enable-local-eval
3261 (let ((safe (or (hack-one-local-variable-eval-safep val)
3262 ;; In case previously marked safe (bug#5636).
3263 (safe-local-variable-p var val))))
3264 ;; If not safe and e-l-v = :safe, ignore totally.
3265 (when (or safe (not (eq enable-local-variables :safe)))
3266 (push elt all-vars)
3267 (or (eq enable-local-eval t)
3268 safe
3269 (push elt unsafe-vars))))))
3270 ;; Ignore duplicates (except `mode') in the present list.
3271 ((and (assq var all-vars) (not (eq var 'mode))) nil)
3272 ;; Accept known-safe variables.
3273 ((or (memq var '(mode unibyte coding))
3274 (safe-local-variable-p var val))
3275 (push elt all-vars))
3276 ;; The variable is either risky or unsafe:
3277 ((not (eq enable-local-variables :safe))
3278 (push elt all-vars)
3279 (if (risky-local-variable-p var val)
3280 (push elt risky-vars)
3281 (push elt unsafe-vars))))))
3282 (and all-vars
3283 ;; Query, unless all vars are safe or user wants no querying.
3284 (or (and (eq enable-local-variables t)
3285 (null unsafe-vars)
3286 (null risky-vars))
3287 (memq enable-local-variables '(:all :safe))
3288 (hack-local-variables-confirm all-vars unsafe-vars
3289 risky-vars dir-name))
3290 (dolist (elt all-vars)
3291 (unless (memq (car elt) '(eval mode))
3292 (unless dir-name
3293 (setq dir-local-variables-alist
3294 (assq-delete-all (car elt) dir-local-variables-alist)))
3295 (setq file-local-variables-alist
3296 (assq-delete-all (car elt) file-local-variables-alist)))
3297 (push elt file-local-variables-alist)))))
3299 ;; TODO? Warn once per file rather than once per session?
3300 (defvar hack-local-variables--warned-lexical nil)
3302 (defun hack-local-variables (&optional mode-only)
3303 "Parse and put into effect this buffer's local variables spec.
3304 Uses `hack-local-variables-apply' to apply the variables.
3306 If MODE-ONLY is non-nil, all we do is check whether a \"mode:\"
3307 is specified, and return the corresponding mode symbol, or nil.
3308 In this case, we try to ignore minor-modes, and only return a
3309 major-mode.
3311 If `enable-local-variables' or `local-enable-local-variables' is nil,
3312 this function does nothing. If `inhibit-local-variables-regexps'
3313 applies to the file in question, the file is not scanned for
3314 local variables, but directory-local variables may still be applied."
3315 ;; We don't let inhibit-local-variables-p influence the value of
3316 ;; enable-local-variables, because then it would affect dir-local
3317 ;; variables. We don't want to search eg tar files for file local
3318 ;; variable sections, but there is no reason dir-locals cannot apply
3319 ;; to them. The real meaning of inhibit-local-variables-p is "do
3320 ;; not scan this file for local variables".
3321 (let ((enable-local-variables
3322 (and local-enable-local-variables enable-local-variables))
3323 result)
3324 (unless mode-only
3325 (setq file-local-variables-alist nil)
3326 (report-errors "Directory-local variables error: %s"
3327 ;; Note this is a no-op if enable-local-variables is nil.
3328 (hack-dir-local-variables)))
3329 ;; This entire function is basically a no-op if enable-local-variables
3330 ;; is nil. All it does is set file-local-variables-alist to nil.
3331 (when enable-local-variables
3332 ;; This part used to ignore enable-local-variables when mode-only
3333 ;; was non-nil. That was inappropriate, eg consider the
3334 ;; (artificial) example of:
3335 ;; (setq local-enable-local-variables nil)
3336 ;; Open a file foo.txt that contains "mode: sh".
3337 ;; It correctly opens in text-mode.
3338 ;; M-x set-visited-file name foo.c, and it incorrectly stays in text-mode.
3339 (unless (or (inhibit-local-variables-p)
3340 ;; If MODE-ONLY is non-nil, and the prop line specifies a
3341 ;; mode, then we're done, and have no need to scan further.
3342 (and (setq result (hack-local-variables-prop-line mode-only))
3343 mode-only))
3344 ;; Look for "Local variables:" line in last page.
3345 (save-excursion
3346 (goto-char (point-max))
3347 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min))
3348 'move)
3349 (when (let ((case-fold-search t))
3350 (search-forward "Local Variables:" nil t))
3351 (skip-chars-forward " \t")
3352 ;; suffix is what comes after "local variables:" in its line.
3353 ;; prefix is what comes before "local variables:" in its line.
3354 (let ((suffix
3355 (concat
3356 (regexp-quote (buffer-substring (point)
3357 (line-end-position)))
3358 "$"))
3359 (prefix
3360 (concat "^" (regexp-quote
3361 (buffer-substring (line-beginning-position)
3362 (match-beginning 0))))))
3364 (forward-line 1)
3365 (let ((startpos (point))
3366 endpos
3367 (thisbuf (current-buffer)))
3368 (save-excursion
3369 (unless (let ((case-fold-search t))
3370 (re-search-forward
3371 (concat prefix "[ \t]*End:[ \t]*" suffix)
3372 nil t))
3373 ;; This used to be an error, but really all it means is
3374 ;; that this may simply not be a local-variables section,
3375 ;; so just ignore it.
3376 (message "Local variables list is not properly terminated"))
3377 (beginning-of-line)
3378 (setq endpos (point)))
3380 (with-temp-buffer
3381 (insert-buffer-substring thisbuf startpos endpos)
3382 (goto-char (point-min))
3383 (subst-char-in-region (point) (point-max) ?\^m ?\n)
3384 (while (not (eobp))
3385 ;; Discard the prefix.
3386 (if (looking-at prefix)
3387 (delete-region (point) (match-end 0))
3388 (error "Local variables entry is missing the prefix"))
3389 (end-of-line)
3390 ;; Discard the suffix.
3391 (if (looking-back suffix)
3392 (delete-region (match-beginning 0) (point))
3393 (error "Local variables entry is missing the suffix"))
3394 (forward-line 1))
3395 (goto-char (point-min))
3397 (while (not (or (eobp)
3398 (and mode-only result)))
3399 ;; Find the variable name;
3400 (unless (looking-at hack-local-variable-regexp)
3401 (error "Malformed local variable line: %S"
3402 (buffer-substring-no-properties
3403 (point) (line-end-position))))
3404 (goto-char (match-end 1))
3405 (let* ((str (match-string 1))
3406 (var (intern str))
3407 val val2)
3408 (and (equal (downcase (symbol-name var)) "mode")
3409 (setq var 'mode))
3410 ;; Read the variable value.
3411 (skip-chars-forward "^:")
3412 (forward-char 1)
3413 (let ((read-circle nil))
3414 (setq val (read (current-buffer))))
3415 (if mode-only
3416 (and (eq var 'mode)
3417 ;; Specifying minor-modes via mode: is
3418 ;; deprecated, but try to reject them anyway.
3419 (not (string-match
3420 "-minor\\'"
3421 (setq val2 (downcase (symbol-name val)))))
3422 (setq result (intern (concat val2 "-mode"))))
3423 (cond ((eq var 'coding))
3424 ((eq var 'lexical-binding)
3425 (unless hack-local-variables--warned-lexical
3426 (setq hack-local-variables--warned-lexical t)
3427 (display-warning
3428 :warning
3429 (format "%s: `lexical-binding' at end of file unreliable"
3430 (file-name-nondirectory
3431 (or buffer-file-name ""))))))
3433 (ignore-errors
3434 (push (cons (if (eq var 'eval)
3435 'eval
3436 (indirect-variable var))
3437 val) result))))))
3438 (forward-line 1))))))))
3439 ;; Now we've read all the local variables.
3440 ;; If MODE-ONLY is non-nil, return whether the mode was specified.
3441 (if mode-only result
3442 ;; Otherwise, set the variables.
3443 (hack-local-variables-filter result nil)
3444 (hack-local-variables-apply)))))
3446 (defun hack-local-variables-apply ()
3447 "Apply the elements of `file-local-variables-alist'.
3448 If there are any elements, runs `before-hack-local-variables-hook',
3449 then calls `hack-one-local-variable' to apply the alist elements one by one.
3450 Finishes by running `hack-local-variables-hook', regardless of whether
3451 the alist is empty or not.
3453 Note that this function ignores a `mode' entry if it specifies the same
3454 major mode as the buffer already has."
3455 (when file-local-variables-alist
3456 ;; Any 'evals must run in the Right sequence.
3457 (setq file-local-variables-alist
3458 (nreverse file-local-variables-alist))
3459 (run-hooks 'before-hack-local-variables-hook)
3460 (dolist (elt file-local-variables-alist)
3461 (hack-one-local-variable (car elt) (cdr elt))))
3462 (run-hooks 'hack-local-variables-hook))
3464 (defun safe-local-variable-p (sym val)
3465 "Non-nil if SYM is safe as a file-local variable with value VAL.
3466 It is safe if any of these conditions are met:
3468 * There is a matching entry (SYM . VAL) in the
3469 `safe-local-variable-values' user option.
3471 * The `safe-local-variable' property of SYM is a function that
3472 evaluates to a non-nil value with VAL as an argument."
3473 (or (member (cons sym val) safe-local-variable-values)
3474 (let ((safep (get sym 'safe-local-variable)))
3475 (and (functionp safep)
3476 ;; If the function signals an error, that means it
3477 ;; can't assure us that the value is safe.
3478 (with-demoted-errors (funcall safep val))))))
3480 (defun risky-local-variable-p (sym &optional _ignored)
3481 "Non-nil if SYM could be dangerous as a file-local variable.
3482 It is dangerous if either of these conditions are met:
3484 * Its `risky-local-variable' property is non-nil.
3486 * Its name ends with \"hook(s)\", \"function(s)\", \"form(s)\", \"map\",
3487 \"program\", \"command(s)\", \"predicate(s)\", \"frame-alist\",
3488 \"mode-alist\", \"font-lock-(syntactic-)keyword*\",
3489 \"map-alist\", or \"bindat-spec\"."
3490 ;; If this is an alias, check the base name.
3491 (condition-case nil
3492 (setq sym (indirect-variable sym))
3493 (error nil))
3494 (or (get sym 'risky-local-variable)
3495 (string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|\
3496 -commands?$\\|-predicates?$\\|font-lock-keywords$\\|font-lock-keywords\
3497 -[0-9]+$\\|font-lock-syntactic-keywords$\\|-frame-alist$\\|-mode-alist$\\|\
3498 -map$\\|-map-alist$\\|-bindat-spec$" (symbol-name sym))))
3500 (defun hack-one-local-variable-quotep (exp)
3501 (and (consp exp) (eq (car exp) 'quote) (consp (cdr exp))))
3503 (defun hack-one-local-variable-constantp (exp)
3504 (or (and (not (symbolp exp)) (not (consp exp)))
3505 (memq exp '(t nil))
3506 (keywordp exp)
3507 (hack-one-local-variable-quotep exp)))
3509 (defun hack-one-local-variable-eval-safep (exp)
3510 "Return t if it is safe to eval EXP when it is found in a file."
3511 (or (not (consp exp))
3512 ;; Detect certain `put' expressions.
3513 (and (eq (car exp) 'put)
3514 (hack-one-local-variable-quotep (nth 1 exp))
3515 (hack-one-local-variable-quotep (nth 2 exp))
3516 (let ((prop (nth 1 (nth 2 exp)))
3517 (val (nth 3 exp)))
3518 (cond ((memq prop '(lisp-indent-hook
3519 lisp-indent-function
3520 scheme-indent-function))
3521 ;; Only allow safe values (not functions).
3522 (or (numberp val)
3523 (and (hack-one-local-variable-quotep val)
3524 (eq (nth 1 val) 'defun))))
3525 ((eq prop 'edebug-form-spec)
3526 ;; Only allow indirect form specs.
3527 ;; During bootstrapping, edebug-basic-spec might not be
3528 ;; defined yet.
3529 (and (fboundp 'edebug-basic-spec)
3530 (hack-one-local-variable-quotep val)
3531 (edebug-basic-spec (nth 1 val)))))))
3532 ;; Allow expressions that the user requested.
3533 (member exp safe-local-eval-forms)
3534 ;; Certain functions can be allowed with safe arguments
3535 ;; or can specify verification functions to try.
3536 (and (symbolp (car exp))
3537 ;; Allow (minor)-modes calls with no arguments.
3538 ;; This obsoletes the use of "mode:" for such things. (Bug#8613)
3539 (or (and (member (cdr exp) '(nil (1) (0) (-1)))
3540 (string-match "-mode\\'" (symbol-name (car exp))))
3541 (let ((prop (get (car exp) 'safe-local-eval-function)))
3542 (cond ((eq prop t)
3543 (let ((ok t))
3544 (dolist (arg (cdr exp))
3545 (unless (hack-one-local-variable-constantp arg)
3546 (setq ok nil)))
3547 ok))
3548 ((functionp prop)
3549 (funcall prop exp))
3550 ((listp prop)
3551 (let ((ok nil))
3552 (dolist (function prop)
3553 (if (funcall function exp)
3554 (setq ok t)))
3555 ok))))))))
3557 (defun hack-one-local-variable--obsolete (var)
3558 (let ((o (get var 'byte-obsolete-variable)))
3559 (when o
3560 (let ((instead (nth 0 o))
3561 (since (nth 2 o)))
3562 (message "%s is obsolete%s; %s"
3563 var (if since (format " (since %s)" since))
3564 (if (stringp instead) instead
3565 (format "use `%s' instead" instead)))))))
3567 (defun hack-one-local-variable (var val)
3568 "Set local variable VAR with value VAL.
3569 If VAR is `mode', call `VAL-mode' as a function unless it's
3570 already the major mode."
3571 (pcase var
3572 (`mode
3573 (let ((mode (intern (concat (downcase (symbol-name val))
3574 "-mode"))))
3575 (unless (eq (indirect-function mode)
3576 (indirect-function major-mode))
3577 (funcall mode))))
3578 (`eval
3579 (pcase val
3580 (`(add-hook ',hook . ,_) (hack-one-local-variable--obsolete hook)))
3581 (save-excursion (eval val)))
3583 (hack-one-local-variable--obsolete var)
3584 ;; Make sure the string has no text properties.
3585 ;; Some text properties can get evaluated in various ways,
3586 ;; so it is risky to put them on with a local variable list.
3587 (if (stringp val)
3588 (set-text-properties 0 (length val) nil val))
3589 (set (make-local-variable var) val))))
3591 ;;; Handling directory-local variables, aka project settings.
3593 (defvar dir-locals-class-alist '()
3594 "Alist mapping directory-local variable classes (symbols) to variable lists.")
3596 (defvar dir-locals-directory-cache '()
3597 "List of cached directory roots for directory-local variable classes.
3598 Each element in this list has the form (DIR CLASS MTIME).
3599 DIR is the name of the directory.
3600 CLASS is the name of a variable class (a symbol).
3601 MTIME is the recorded modification time of the directory-local
3602 variables file associated with this entry. This time is a list
3603 of integers (the same format as `file-attributes'), and is
3604 used to test whether the cache entry is still valid.
3605 Alternatively, MTIME can be nil, which means the entry is always
3606 considered valid.")
3608 (defsubst dir-locals-get-class-variables (class)
3609 "Return the variable list for CLASS."
3610 (cdr (assq class dir-locals-class-alist)))
3612 (defun dir-locals-collect-mode-variables (mode-variables variables)
3613 "Collect directory-local variables from MODE-VARIABLES.
3614 VARIABLES is the initial list of variables.
3615 Returns the new list."
3616 (dolist (pair mode-variables variables)
3617 (let* ((variable (car pair))
3618 (value (cdr pair))
3619 (slot (assq variable variables)))
3620 ;; If variables are specified more than once, only use the last. (Why?)
3621 ;; The pseudo-variables mode and eval are different (bug#3430).
3622 (if (and slot (not (memq variable '(mode eval))))
3623 (setcdr slot value)
3624 ;; Need a new cons in case we setcdr later.
3625 (push (cons variable value) variables)))))
3627 (defun dir-locals-collect-variables (class-variables root variables)
3628 "Collect entries from CLASS-VARIABLES into VARIABLES.
3629 ROOT is the root directory of the project.
3630 Return the new variables list."
3631 (let* ((file-name (buffer-file-name))
3632 (sub-file-name (if file-name
3633 ;; FIXME: Why not use file-relative-name?
3634 (substring file-name (length root)))))
3635 (condition-case err
3636 (dolist (entry class-variables variables)
3637 (let ((key (car entry)))
3638 (cond
3639 ((stringp key)
3640 ;; Don't include this in the previous condition, because we
3641 ;; want to filter all strings before the next condition.
3642 (when (and sub-file-name
3643 (>= (length sub-file-name) (length key))
3644 (string-prefix-p key sub-file-name))
3645 (setq variables (dir-locals-collect-variables
3646 (cdr entry) root variables))))
3647 ((or (not key)
3648 (derived-mode-p key))
3649 (let* ((alist (cdr entry))
3650 (subdirs (assq 'subdirs alist)))
3651 (if (or (not subdirs)
3652 (progn
3653 (setq alist (delq subdirs alist))
3654 (cdr-safe subdirs))
3655 ;; TODO someone might want to extend this to allow
3656 ;; integer values for subdir, where N means
3657 ;; variables apply to this directory and N levels
3658 ;; below it (0 == nil).
3659 (equal root default-directory))
3660 (setq variables (dir-locals-collect-mode-variables
3661 alist variables))))))))
3662 (error
3663 ;; The file's content might be invalid (e.g. have a merge conflict), but
3664 ;; that shouldn't prevent the user from opening the file.
3665 (message ".dir-locals error: %s" (error-message-string err))
3666 nil))))
3668 (defun dir-locals-set-directory-class (directory class &optional mtime)
3669 "Declare that the DIRECTORY root is an instance of CLASS.
3670 DIRECTORY is the name of a directory, a string.
3671 CLASS is the name of a project class, a symbol.
3672 MTIME is either the modification time of the directory-local
3673 variables file that defined this class, or nil.
3675 When a file beneath DIRECTORY is visited, the mode-specific
3676 variables from CLASS are applied to the buffer. The variables
3677 for a class are defined using `dir-locals-set-class-variables'."
3678 (setq directory (file-name-as-directory (expand-file-name directory)))
3679 (unless (assq class dir-locals-class-alist)
3680 (error "No such class `%s'" (symbol-name class)))
3681 (push (list directory class mtime) dir-locals-directory-cache))
3683 (defun dir-locals-set-class-variables (class variables)
3684 "Map the type CLASS to a list of variable settings.
3685 CLASS is the project class, a symbol. VARIABLES is a list
3686 that declares directory-local variables for the class.
3687 An element in VARIABLES is either of the form:
3688 (MAJOR-MODE . ALIST)
3690 (DIRECTORY . LIST)
3692 In the first form, MAJOR-MODE is a symbol, and ALIST is an alist
3693 whose elements are of the form (VARIABLE . VALUE).
3695 In the second form, DIRECTORY is a directory name (a string), and
3696 LIST is a list of the form accepted by the function.
3698 When a file is visited, the file's class is found. A directory
3699 may be assigned a class using `dir-locals-set-directory-class'.
3700 Then variables are set in the file's buffer according to the
3701 VARIABLES list of the class. The list is processed in order.
3703 * If the element is of the form (MAJOR-MODE . ALIST), and the
3704 buffer's major mode is derived from MAJOR-MODE (as determined
3705 by `derived-mode-p'), then all the variables in ALIST are
3706 applied. A MAJOR-MODE of nil may be used to match any buffer.
3707 `make-local-variable' is called for each variable before it is
3708 set.
3710 * If the element is of the form (DIRECTORY . LIST), and DIRECTORY
3711 is an initial substring of the file's directory, then LIST is
3712 applied by recursively following these rules."
3713 (setf (alist-get class dir-locals-class-alist) variables))
3715 (defconst dir-locals-file ".dir-locals.el"
3716 "File that contains directory-local variables.
3717 It has to be constant to enforce uniform values
3718 across different environments and users.")
3720 (defun dir-locals-find-file (file)
3721 "Find the directory-local variables for FILE.
3722 This searches upward in the directory tree from FILE.
3723 It stops at the first directory that has been registered in
3724 `dir-locals-directory-cache' or contains a `dir-locals-file'.
3725 If it finds an entry in the cache, it checks that it is valid.
3726 A cache entry with no modification time element (normally, one that
3727 has been assigned directly using `dir-locals-set-directory-class', not
3728 set from a file) is always valid.
3729 A cache entry based on a `dir-locals-file' is valid if the modification
3730 time stored in the cache matches the current file modification time.
3731 If not, the cache entry is cleared so that the file will be re-read.
3733 This function returns either nil (no directory local variables found),
3734 or the matching entry from `dir-locals-directory-cache' (a list),
3735 or the full path to the `dir-locals-file' (a string) in the case
3736 of no valid cache entry."
3737 (setq file (expand-file-name file))
3738 (let* ((dir-locals-file-name
3739 (if (eq system-type 'ms-dos)
3740 (dosified-file-name dir-locals-file)
3741 dir-locals-file))
3742 (locals-file (locate-dominating-file file dir-locals-file-name))
3743 (dir-elt nil))
3744 ;; `locate-dominating-file' may have abbreviated the name.
3745 (and locals-file
3746 (setq locals-file (expand-file-name dir-locals-file-name locals-file)))
3747 ;; Let dir-locals-read-from-file inform us via demoted-errors
3748 ;; about unreadable files, etc.
3749 ;; Maybe we'd want to keep searching though - that is
3750 ;; a locate-dominating-file issue.
3751 ;;; (or (not (file-readable-p locals-file))
3752 ;;; (not (file-regular-p locals-file)))
3753 ;;; (setq locals-file nil))
3754 ;; Find the best cached value in `dir-locals-directory-cache'.
3755 (dolist (elt dir-locals-directory-cache)
3756 (when (and (string-prefix-p (car elt) file
3757 (memq system-type
3758 '(windows-nt cygwin ms-dos)))
3759 (> (length (car elt)) (length (car dir-elt))))
3760 (setq dir-elt elt)))
3761 (if (and dir-elt
3762 (or (null locals-file)
3763 (<= (length (file-name-directory locals-file))
3764 (length (car dir-elt)))))
3765 ;; Found a potential cache entry. Check validity.
3766 ;; A cache entry with no MTIME is assumed to always be valid
3767 ;; (ie, set directly, not from a dir-locals file).
3768 ;; Note, we don't bother to check that there is a matching class
3769 ;; element in dir-locals-class-alist, since that's done by
3770 ;; dir-locals-set-directory-class.
3771 (if (or (null (nth 2 dir-elt))
3772 (let ((cached-file (expand-file-name dir-locals-file-name
3773 (car dir-elt))))
3774 (and (file-readable-p cached-file)
3775 (equal (nth 2 dir-elt)
3776 (nth 5 (file-attributes cached-file))))))
3777 ;; This cache entry is OK.
3778 dir-elt
3779 ;; This cache entry is invalid; clear it.
3780 (setq dir-locals-directory-cache
3781 (delq dir-elt dir-locals-directory-cache))
3782 ;; Return the first existing dir-locals file. Might be the same
3783 ;; as dir-elt's, might not (eg latter might have been deleted).
3784 locals-file)
3785 ;; No cache entry.
3786 locals-file)))
3788 (defun dir-locals-read-from-file (file)
3789 "Load a variables FILE and register a new class and instance.
3790 FILE is the name of the file holding the variables to apply.
3791 The new class name is the same as the directory in which FILE
3792 is found. Returns the new class name."
3793 (with-temp-buffer
3794 (with-demoted-errors "Error reading dir-locals: %S"
3795 (insert-file-contents file)
3796 (unless (zerop (buffer-size))
3797 (let* ((dir-name (file-name-directory file))
3798 (class-name (intern dir-name))
3799 (variables (let ((read-circle nil))
3800 (read (current-buffer)))))
3801 (dir-locals-set-class-variables class-name variables)
3802 (dir-locals-set-directory-class dir-name class-name
3803 (nth 5 (file-attributes file)))
3804 class-name)))))
3806 (defcustom enable-remote-dir-locals nil
3807 "Non-nil means dir-local variables will be applied to remote files."
3808 :version "24.3"
3809 :type 'boolean
3810 :group 'find-file)
3812 (defvar hack-dir-local-variables--warned-coding nil)
3814 (defun hack-dir-local-variables ()
3815 "Read per-directory local variables for the current buffer.
3816 Store the directory-local variables in `dir-local-variables-alist'
3817 and `file-local-variables-alist', without applying them.
3819 This does nothing if either `enable-local-variables' or
3820 `enable-dir-local-variables' are nil."
3821 (when (and enable-local-variables
3822 enable-dir-local-variables
3823 (or enable-remote-dir-locals
3824 (not (file-remote-p (or (buffer-file-name)
3825 default-directory)))))
3826 ;; Find the variables file.
3827 (let ((variables-file (dir-locals-find-file
3828 (or (buffer-file-name) default-directory)))
3829 (class nil)
3830 (dir-name nil))
3831 (cond
3832 ((stringp variables-file)
3833 (setq dir-name (file-name-directory variables-file)
3834 class (dir-locals-read-from-file variables-file)))
3835 ((consp variables-file)
3836 (setq dir-name (nth 0 variables-file))
3837 (setq class (nth 1 variables-file))))
3838 (when class
3839 (let ((variables
3840 (dir-locals-collect-variables
3841 (dir-locals-get-class-variables class) dir-name nil)))
3842 (when variables
3843 (dolist (elt variables)
3844 (if (eq (car elt) 'coding)
3845 (unless hack-dir-local-variables--warned-coding
3846 (setq hack-dir-local-variables--warned-coding t)
3847 (display-warning :warning
3848 "Coding cannot be specified by dir-locals"))
3849 (unless (memq (car elt) '(eval mode))
3850 (setq dir-local-variables-alist
3851 (assq-delete-all (car elt) dir-local-variables-alist)))
3852 (push elt dir-local-variables-alist)))
3853 (hack-local-variables-filter variables dir-name)))))))
3855 (defun hack-dir-local-variables-non-file-buffer ()
3856 "Apply directory-local variables to a non-file buffer.
3857 For non-file buffers, such as Dired buffers, directory-local
3858 variables are looked for in `default-directory' and its parent
3859 directories."
3860 (hack-dir-local-variables)
3861 (hack-local-variables-apply))
3864 (defcustom change-major-mode-with-file-name t
3865 "Non-nil means \\[write-file] should set the major mode from the file name.
3866 However, the mode will not be changed if
3867 \(1) a local variables list or the `-*-' line specifies a major mode, or
3868 \(2) the current major mode is a \"special\" mode,
3869 \ not suitable for ordinary files, or
3870 \(3) the new file name does not particularly specify any mode."
3871 :type 'boolean
3872 :group 'editing-basics)
3874 (defun set-visited-file-name (filename &optional no-query along-with-file)
3875 "Change name of file visited in current buffer to FILENAME.
3876 This also renames the buffer to correspond to the new file.
3877 The next time the buffer is saved it will go in the newly specified file.
3878 FILENAME nil or an empty string means mark buffer as not visiting any file.
3879 Remember to delete the initial contents of the minibuffer
3880 if you wish to pass an empty string as the argument.
3882 The optional second argument NO-QUERY, if non-nil, inhibits asking for
3883 confirmation in the case where another buffer is already visiting FILENAME.
3885 The optional third argument ALONG-WITH-FILE, if non-nil, means that
3886 the old visited file has been renamed to the new name FILENAME."
3887 (interactive "FSet visited file name: ")
3888 (if (buffer-base-buffer)
3889 (error "An indirect buffer cannot visit a file"))
3890 (let (truename old-try-locals)
3891 (if filename
3892 (setq filename
3893 (if (string-equal filename "")
3895 (expand-file-name filename))))
3896 (if filename
3897 (progn
3898 (setq truename (file-truename filename))
3899 (if find-file-visit-truename
3900 (setq filename truename))))
3901 (if filename
3902 (let ((new-name (file-name-nondirectory filename)))
3903 (if (string= new-name "")
3904 (error "Empty file name"))))
3905 (let ((buffer (and filename (find-buffer-visiting filename))))
3906 (and buffer (not (eq buffer (current-buffer)))
3907 (not no-query)
3908 (not (y-or-n-p (format "A buffer is visiting %s; proceed? "
3909 filename)))
3910 (error "Aborted")))
3911 (or (equal filename buffer-file-name)
3912 (progn
3913 (and filename (lock-buffer filename))
3914 (unlock-buffer)))
3915 (setq old-try-locals (not (inhibit-local-variables-p))
3916 buffer-file-name filename)
3917 (if filename ; make buffer name reflect filename.
3918 (let ((new-name (file-name-nondirectory buffer-file-name)))
3919 (setq default-directory (file-name-directory buffer-file-name))
3920 ;; If new-name == old-name, renaming would add a spurious <2>
3921 ;; and it's considered as a feature in rename-buffer.
3922 (or (string= new-name (buffer-name))
3923 (rename-buffer new-name t))))
3924 (setq buffer-backed-up nil)
3925 (or along-with-file
3926 (clear-visited-file-modtime))
3927 ;; Abbreviate the file names of the buffer.
3928 (if truename
3929 (progn
3930 (setq buffer-file-truename (abbreviate-file-name truename))
3931 (if find-file-visit-truename
3932 (setq buffer-file-name truename))))
3933 (setq buffer-file-number
3934 (if filename
3935 (nthcdr 10 (file-attributes buffer-file-name))
3936 nil))
3937 ;; write-file-functions is normally used for things like ftp-find-file
3938 ;; that visit things that are not local files as if they were files.
3939 ;; Changing to visit an ordinary local file instead should flush the hook.
3940 (kill-local-variable 'write-file-functions)
3941 (kill-local-variable 'local-write-file-hooks)
3942 (kill-local-variable 'revert-buffer-function)
3943 (kill-local-variable 'backup-inhibited)
3944 ;; If buffer was read-only because of version control,
3945 ;; that reason is gone now, so make it writable.
3946 (if vc-mode
3947 (setq buffer-read-only nil))
3948 (kill-local-variable 'vc-mode)
3949 ;; Turn off backup files for certain file names.
3950 ;; Since this is a permanent local, the major mode won't eliminate it.
3951 (and buffer-file-name
3952 backup-enable-predicate
3953 (not (funcall backup-enable-predicate buffer-file-name))
3954 (progn
3955 (make-local-variable 'backup-inhibited)
3956 (setq backup-inhibited t)))
3957 (let ((oauto buffer-auto-save-file-name))
3958 ;; If auto-save was not already on, turn it on if appropriate.
3959 (if (not buffer-auto-save-file-name)
3960 (and buffer-file-name auto-save-default
3961 (auto-save-mode t))
3962 ;; If auto save is on, start using a new name.
3963 ;; We deliberately don't rename or delete the old auto save
3964 ;; for the old visited file name. This is because perhaps
3965 ;; the user wants to save the new state and then compare with the
3966 ;; previous state from the auto save file.
3967 (setq buffer-auto-save-file-name
3968 (make-auto-save-file-name)))
3969 ;; Rename the old auto save file if any.
3970 (and oauto buffer-auto-save-file-name
3971 (file-exists-p oauto)
3972 (rename-file oauto buffer-auto-save-file-name t)))
3973 (and buffer-file-name
3974 (not along-with-file)
3975 (set-buffer-modified-p t))
3976 ;; Update the major mode, if the file name determines it.
3977 (condition-case nil
3978 ;; Don't change the mode if it is special.
3979 (or (not change-major-mode-with-file-name)
3980 (get major-mode 'mode-class)
3981 ;; Don't change the mode if the local variable list specifies it.
3982 ;; The file name can influence whether the local variables apply.
3983 (and old-try-locals
3984 ;; h-l-v also checks it, but might as well be explicit.
3985 (not (inhibit-local-variables-p))
3986 (hack-local-variables t))
3987 ;; TODO consider making normal-mode handle this case.
3988 (let ((old major-mode))
3989 (set-auto-mode t)
3990 (or (eq old major-mode)
3991 (hack-local-variables))))
3992 (error nil))))
3994 (defun write-file (filename &optional confirm)
3995 "Write current buffer into file FILENAME.
3996 This makes the buffer visit that file, and marks it as not modified.
3998 If you specify just a directory name as FILENAME, that means to use
3999 the default file name but in that directory. You can also yank
4000 the default file name into the minibuffer to edit it, using \\<minibuffer-local-map>\\[next-history-element].
4002 If the buffer is not already visiting a file, the default file name
4003 for the output file is the buffer name.
4005 If optional second arg CONFIRM is non-nil, this function
4006 asks for confirmation before overwriting an existing file.
4007 Interactively, confirmation is required unless you supply a prefix argument."
4008 ;; (interactive "FWrite file: ")
4009 (interactive
4010 (list (if buffer-file-name
4011 (read-file-name "Write file: "
4012 nil nil nil nil)
4013 (read-file-name "Write file: " default-directory
4014 (expand-file-name
4015 (file-name-nondirectory (buffer-name))
4016 default-directory)
4017 nil nil))
4018 (not current-prefix-arg)))
4019 (or (null filename) (string-equal filename "")
4020 (progn
4021 ;; If arg is just a directory,
4022 ;; use the default file name, but in that directory.
4023 (if (file-directory-p filename)
4024 (setq filename (concat (file-name-as-directory filename)
4025 (file-name-nondirectory
4026 (or buffer-file-name (buffer-name))))))
4027 (and confirm
4028 (file-exists-p filename)
4029 ;; NS does its own confirm dialog.
4030 (not (and (eq (framep-on-display) 'ns)
4031 (listp last-nonmenu-event)
4032 use-dialog-box))
4033 (or (y-or-n-p (format "File `%s' exists; overwrite? " filename))
4034 (error "Canceled")))
4035 (set-visited-file-name filename (not confirm))))
4036 (set-buffer-modified-p t)
4037 ;; Make buffer writable if file is writable.
4038 (and buffer-file-name
4039 (file-writable-p buffer-file-name)
4040 (setq buffer-read-only nil))
4041 (save-buffer)
4042 ;; It's likely that the VC status at the new location is different from
4043 ;; the one at the old location.
4044 (vc-find-file-hook))
4046 (defun file-extended-attributes (filename)
4047 "Return an alist of extended attributes of file FILENAME.
4049 Extended attributes are platform-specific metadata about the file,
4050 such as SELinux context, list of ACL entries, etc."
4051 `((acl . ,(file-acl filename))
4052 (selinux-context . ,(file-selinux-context filename))))
4054 (defun set-file-extended-attributes (filename attributes)
4055 "Set extended attributes of file FILENAME to ATTRIBUTES.
4057 ATTRIBUTES must be an alist of file attributes as returned by
4058 `file-extended-attributes'."
4059 (dolist (elt attributes)
4060 (let ((attr (car elt))
4061 (val (cdr elt)))
4062 (cond ((eq attr 'acl)
4063 (set-file-acl filename val))
4064 ((eq attr 'selinux-context)
4065 (set-file-selinux-context filename val))))))
4067 (defun backup-buffer ()
4068 "Make a backup of the disk file visited by the current buffer, if appropriate.
4069 This is normally done before saving the buffer the first time.
4071 A backup may be done by renaming or by copying; see documentation of
4072 variable `make-backup-files'. If it's done by renaming, then the file is
4073 no longer accessible under its old name.
4075 The value is non-nil after a backup was made by renaming.
4076 It has the form (MODES EXTENDED-ATTRIBUTES BACKUPNAME).
4077 MODES is the result of `file-modes' on the original
4078 file; this means that the caller, after saving the buffer, should change
4079 the modes of the new file to agree with the old modes.
4080 EXTENDED-ATTRIBUTES is the result of `file-extended-attributes'
4081 on the original file; this means that the caller, after saving
4082 the buffer, should change the extended attributes of the new file
4083 to agree with the old attributes.
4084 BACKUPNAME is the backup file name, which is the old file renamed."
4085 (if (and make-backup-files (not backup-inhibited)
4086 (not buffer-backed-up)
4087 (file-exists-p buffer-file-name)
4088 (memq (aref (elt (file-attributes buffer-file-name) 8) 0)
4089 '(?- ?l)))
4090 (let ((real-file-name buffer-file-name)
4091 backup-info backupname targets setmodes)
4092 ;; If specified name is a symbolic link, chase it to the target.
4093 ;; Thus we make the backups in the directory where the real file is.
4094 (setq real-file-name (file-chase-links real-file-name))
4095 (setq backup-info (find-backup-file-name real-file-name)
4096 backupname (car backup-info)
4097 targets (cdr backup-info))
4098 ;; (if (file-directory-p buffer-file-name)
4099 ;; (error "Cannot save buffer in directory %s" buffer-file-name))
4100 (if backup-info
4101 (condition-case ()
4102 (let ((delete-old-versions
4103 ;; If have old versions to maybe delete,
4104 ;; ask the user to confirm now, before doing anything.
4105 ;; But don't actually delete til later.
4106 (and targets
4107 (or (eq delete-old-versions t) (eq delete-old-versions nil))
4108 (or delete-old-versions
4109 (y-or-n-p (format "Delete excess backup versions of %s? "
4110 real-file-name)))))
4111 (modes (file-modes buffer-file-name))
4112 (extended-attributes
4113 (file-extended-attributes buffer-file-name)))
4114 ;; Actually write the back up file.
4115 (condition-case ()
4116 (if (or file-precious-flag
4117 ; (file-symlink-p buffer-file-name)
4118 backup-by-copying
4119 ;; Don't rename a suid or sgid file.
4120 (and modes (< 0 (logand modes #o6000)))
4121 (not (file-writable-p (file-name-directory real-file-name)))
4122 (and backup-by-copying-when-linked
4123 (> (file-nlinks real-file-name) 1))
4124 (and (or backup-by-copying-when-mismatch
4125 (integerp backup-by-copying-when-privileged-mismatch))
4126 (let ((attr (file-attributes real-file-name)))
4127 (and (or backup-by-copying-when-mismatch
4128 (and (integerp (nth 2 attr))
4129 (integerp backup-by-copying-when-privileged-mismatch)
4130 (<= (nth 2 attr) backup-by-copying-when-privileged-mismatch)))
4131 (not (file-ownership-preserved-p
4132 real-file-name t))))))
4133 (backup-buffer-copy real-file-name
4134 backupname modes
4135 extended-attributes)
4136 ;; rename-file should delete old backup.
4137 (rename-file real-file-name backupname t)
4138 (setq setmodes (list modes extended-attributes
4139 backupname)))
4140 (file-error
4141 ;; If trouble writing the backup, write it in
4142 ;; .emacs.d/%backup%.
4143 (setq backupname (locate-user-emacs-file "%backup%~"))
4144 (message "Cannot write backup file; backing up in %s"
4145 backupname)
4146 (sleep-for 1)
4147 (backup-buffer-copy real-file-name backupname
4148 modes extended-attributes)))
4149 (setq buffer-backed-up t)
4150 ;; Now delete the old versions, if desired.
4151 (if delete-old-versions
4152 (while targets
4153 (condition-case ()
4154 (delete-file (car targets))
4155 (file-error nil))
4156 (setq targets (cdr targets))))
4157 setmodes)
4158 (file-error nil))))))
4160 (defun backup-buffer-copy (from-name to-name modes extended-attributes)
4161 ;; Create temp files with strict access rights. It's easy to
4162 ;; loosen them later, whereas it's impossible to close the
4163 ;; time-window of loose permissions otherwise.
4164 (with-file-modes ?\700
4165 (when (condition-case nil
4166 ;; Try to overwrite old backup first.
4167 (copy-file from-name to-name t t t)
4168 (error t))
4169 (while (condition-case nil
4170 (progn
4171 (when (file-exists-p to-name)
4172 (delete-file to-name))
4173 (copy-file from-name to-name nil t t)
4174 nil)
4175 (file-already-exists t))
4176 ;; The file was somehow created by someone else between
4177 ;; `delete-file' and `copy-file', so let's try again.
4178 ;; rms says "I think there is also a possible race
4179 ;; condition for making backup files" (emacs-devel 20070821).
4180 nil)))
4181 ;; If set-file-extended-attributes fails, fall back on set-file-modes.
4182 (unless (and extended-attributes
4183 (with-demoted-errors
4184 (set-file-extended-attributes to-name extended-attributes)))
4185 (and modes
4186 (set-file-modes to-name (logand modes #o1777)))))
4188 (defvar file-name-version-regexp
4189 "\\(?:~\\|\\.~[-[:alnum:]:#@^._]+\\(?:~[[:digit:]]+\\)?~\\)"
4190 ;; The last ~[[:digit]]+ matches relative versions in git,
4191 ;; e.g. `foo.js.~HEAD~1~'.
4192 "Regular expression matching the backup/version part of a file name.
4193 Used by `file-name-sans-versions'.")
4195 (defun file-name-sans-versions (name &optional keep-backup-version)
4196 "Return file NAME sans backup versions or strings.
4197 This is a separate procedure so your site-init or startup file can
4198 redefine it.
4199 If the optional argument KEEP-BACKUP-VERSION is non-nil,
4200 we do not remove backup version numbers, only true file version numbers.
4201 See also `file-name-version-regexp'."
4202 (let ((handler (find-file-name-handler name 'file-name-sans-versions)))
4203 (if handler
4204 (funcall handler 'file-name-sans-versions name keep-backup-version)
4205 (substring name 0
4206 (unless keep-backup-version
4207 (string-match (concat file-name-version-regexp "\\'")
4208 name))))))
4210 (defun file-ownership-preserved-p (file &optional group)
4211 "Return t if deleting FILE and rewriting it would preserve the owner.
4212 Return nil if FILE does not exist, or if deleting and recreating it
4213 might not preserve the owner. If GROUP is non-nil, check whether
4214 the group would be preserved too."
4215 (let ((handler (find-file-name-handler file 'file-ownership-preserved-p)))
4216 (if handler
4217 (funcall handler 'file-ownership-preserved-p file group)
4218 (let ((attributes (file-attributes file 'integer)))
4219 ;; Return t if the file doesn't exist, since it's true that no
4220 ;; information would be lost by an (attempted) delete and create.
4221 (or (null attributes)
4222 (and (or (= (nth 2 attributes) (user-uid))
4223 ;; Files created on Windows by Administrator (RID=500)
4224 ;; have the Administrators group (RID=544) recorded as
4225 ;; their owner. Rewriting them will still preserve the
4226 ;; owner.
4227 (and (eq system-type 'windows-nt)
4228 (= (user-uid) 500) (= (nth 2 attributes) 544)))
4229 (or (not group)
4230 ;; On BSD-derived systems files always inherit the parent
4231 ;; directory's group, so skip the group-gid test.
4232 (memq system-type '(berkeley-unix darwin gnu/kfreebsd))
4233 (= (nth 3 attributes) (group-gid)))
4234 (let* ((parent (or (file-name-directory file) "."))
4235 (parent-attributes (file-attributes parent 'integer)))
4236 (and parent-attributes
4237 ;; On some systems, a file created in a setuid directory
4238 ;; inherits that directory's owner.
4240 (= (nth 2 parent-attributes) (user-uid))
4241 (string-match "^...[^sS]" (nth 8 parent-attributes)))
4242 ;; On many systems, a file created in a setgid directory
4243 ;; inherits that directory's group. On some systems
4244 ;; this happens even if the setgid bit is not set.
4245 (or (not group)
4246 (= (nth 3 parent-attributes)
4247 (nth 3 attributes)))))))))))
4249 (defun file-name-sans-extension (filename)
4250 "Return FILENAME sans final \"extension\".
4251 The extension, in a file name, is the part that follows the last `.',
4252 except that a leading `.', if any, doesn't count."
4253 (save-match-data
4254 (let ((file (file-name-sans-versions (file-name-nondirectory filename)))
4255 directory)
4256 (if (and (string-match "\\.[^.]*\\'" file)
4257 (not (eq 0 (match-beginning 0))))
4258 (if (setq directory (file-name-directory filename))
4259 ;; Don't use expand-file-name here; if DIRECTORY is relative,
4260 ;; we don't want to expand it.
4261 (concat directory (substring file 0 (match-beginning 0)))
4262 (substring file 0 (match-beginning 0)))
4263 filename))))
4265 (defun file-name-extension (filename &optional period)
4266 "Return FILENAME's final \"extension\".
4267 The extension, in a file name, is the part that follows the last `.',
4268 excluding version numbers and backup suffixes,
4269 except that a leading `.', if any, doesn't count.
4270 Return nil for extensionless file names such as `foo'.
4271 Return the empty string for file names such as `foo.'.
4273 If PERIOD is non-nil, then the returned value includes the period
4274 that delimits the extension, and if FILENAME has no extension,
4275 the value is \"\"."
4276 (save-match-data
4277 (let ((file (file-name-sans-versions (file-name-nondirectory filename))))
4278 (if (and (string-match "\\.[^.]*\\'" file)
4279 (not (eq 0 (match-beginning 0))))
4280 (substring file (+ (match-beginning 0) (if period 0 1)))
4281 (if period
4282 "")))))
4284 (defun file-name-base (&optional filename)
4285 "Return the base name of the FILENAME: no directory, no extension.
4286 FILENAME defaults to `buffer-file-name'."
4287 (file-name-sans-extension
4288 (file-name-nondirectory (or filename (buffer-file-name)))))
4290 (defcustom make-backup-file-name-function
4291 #'make-backup-file-name--default-function
4292 "A function that `make-backup-file-name' uses to create backup file names.
4293 The function receives a single argument, the original file name.
4295 If you change this, you may need to change `backup-file-name-p' and
4296 `file-name-sans-versions' too.
4298 You could make this buffer-local to do something special for specific files.
4300 For historical reasons, a value of nil means to use the default function.
4301 This should not be relied upon.
4303 See also `backup-directory-alist'."
4304 :version "24.4" ; nil -> make-backup-file-name--default-function
4305 :group 'backup
4306 :type '(choice (const :tag "Deprecated way to get the default function" nil)
4307 (function :tag "Function")))
4309 (defcustom backup-directory-alist nil
4310 "Alist of filename patterns and backup directory names.
4311 Each element looks like (REGEXP . DIRECTORY). Backups of files with
4312 names matching REGEXP will be made in DIRECTORY. DIRECTORY may be
4313 relative or absolute. If it is absolute, so that all matching files
4314 are backed up into the same directory, the file names in this
4315 directory will be the full name of the file backed up with all
4316 directory separators changed to `!' to prevent clashes. This will not
4317 work correctly if your filesystem truncates the resulting name.
4319 For the common case of all backups going into one directory, the alist
4320 should contain a single element pairing \".\" with the appropriate
4321 directory name.
4323 If this variable is nil, or it fails to match a filename, the backup
4324 is made in the original file's directory.
4326 On MS-DOS filesystems without long names this variable is always
4327 ignored."
4328 :group 'backup
4329 :type '(repeat (cons (regexp :tag "Regexp matching filename")
4330 (directory :tag "Backup directory name"))))
4332 (defun normal-backup-enable-predicate (name)
4333 "Default `backup-enable-predicate' function.
4334 Checks for files in `temporary-file-directory',
4335 `small-temporary-file-directory', and /tmp."
4336 (let ((temporary-file-directory temporary-file-directory)
4337 caseless)
4338 ;; On MS-Windows, file-truename will convert short 8+3 aliases to
4339 ;; their long file-name equivalents, so compare-strings does TRT.
4340 (if (memq system-type '(ms-dos windows-nt))
4341 (setq temporary-file-directory (file-truename temporary-file-directory)
4342 name (file-truename name)
4343 caseless t))
4344 (not (or (let ((comp (compare-strings temporary-file-directory 0 nil
4345 name 0 nil caseless)))
4346 ;; Directory is under temporary-file-directory.
4347 (and (not (eq comp t))
4348 (< comp (- (length temporary-file-directory)))))
4349 (let ((comp (compare-strings "/tmp" 0 nil
4350 name 0 nil)))
4351 ;; Directory is under /tmp.
4352 (and (not (eq comp t))
4353 (< comp (- (length "/tmp")))))
4354 (if small-temporary-file-directory
4355 (let ((comp (compare-strings small-temporary-file-directory
4356 0 nil
4357 name 0 nil caseless)))
4358 ;; Directory is under small-temporary-file-directory.
4359 (and (not (eq comp t))
4360 (< comp (- (length small-temporary-file-directory))))))))))
4362 (defun make-backup-file-name (file)
4363 "Create the non-numeric backup file name for FILE.
4364 This calls the function that `make-backup-file-name-function' specifies,
4365 with a single argument FILE."
4366 (funcall (or make-backup-file-name-function
4367 #'make-backup-file-name--default-function)
4368 file))
4370 (defun make-backup-file-name--default-function (file)
4371 "Default function for `make-backup-file-name'.
4372 Normally this just returns FILE's name with `~' appended.
4373 It searches for a match for FILE in `backup-directory-alist'.
4374 If the directory for the backup doesn't exist, it is created."
4375 (if (and (eq system-type 'ms-dos)
4376 (not (msdos-long-file-names)))
4377 (let ((fn (file-name-nondirectory file)))
4378 (concat (file-name-directory file)
4379 (or (and (string-match "\\`[^.]+\\'" fn)
4380 (concat (match-string 0 fn) ".~"))
4381 (and (string-match "\\`[^.]+\\.\\(..?\\)?" fn)
4382 (concat (match-string 0 fn) "~")))))
4383 (concat (make-backup-file-name-1 file) "~")))
4385 (defun make-backup-file-name-1 (file)
4386 "Subroutine of `make-backup-file-name--default-function'.
4387 The function `find-backup-file-name' also uses this."
4388 (let ((alist backup-directory-alist)
4389 elt backup-directory abs-backup-directory)
4390 (while alist
4391 (setq elt (pop alist))
4392 (if (string-match (car elt) file)
4393 (setq backup-directory (cdr elt)
4394 alist nil)))
4395 ;; If backup-directory is relative, it should be relative to the
4396 ;; file's directory. By expanding explicitly here, we avoid
4397 ;; depending on default-directory.
4398 (if backup-directory
4399 (setq abs-backup-directory
4400 (expand-file-name backup-directory
4401 (file-name-directory file))))
4402 (if (and abs-backup-directory (not (file-exists-p abs-backup-directory)))
4403 (condition-case nil
4404 (make-directory abs-backup-directory 'parents)
4405 (file-error (setq backup-directory nil
4406 abs-backup-directory nil))))
4407 (if (null backup-directory)
4408 file
4409 (if (file-name-absolute-p backup-directory)
4410 (progn
4411 (when (memq system-type '(windows-nt ms-dos cygwin))
4412 ;; Normalize DOSish file names: downcase the drive
4413 ;; letter, if any, and replace the leading "x:" with
4414 ;; "/drive_x".
4415 (or (file-name-absolute-p file)
4416 (setq file (expand-file-name file))) ; make defaults explicit
4417 ;; Replace any invalid file-name characters (for the
4418 ;; case of backing up remote files).
4419 (setq file (expand-file-name (convert-standard-filename file)))
4420 (if (eq (aref file 1) ?:)
4421 (setq file (concat "/"
4422 "drive_"
4423 (char-to-string (downcase (aref file 0)))
4424 (if (eq (aref file 2) ?/)
4426 "/")
4427 (substring file 2)))))
4428 ;; Make the name unique by substituting directory
4429 ;; separators. It may not really be worth bothering about
4430 ;; doubling `!'s in the original name...
4431 (expand-file-name
4432 (subst-char-in-string
4433 ?/ ?!
4434 (replace-regexp-in-string "!" "!!" file))
4435 backup-directory))
4436 (expand-file-name (file-name-nondirectory file)
4437 (file-name-as-directory abs-backup-directory))))))
4439 (defun backup-file-name-p (file)
4440 "Return non-nil if FILE is a backup file name (numeric or not).
4441 This is a separate function so you can redefine it for customization.
4442 You may need to redefine `file-name-sans-versions' as well."
4443 (string-match "~\\'" file))
4445 (defvar backup-extract-version-start)
4447 ;; This is used in various files.
4448 ;; The usage of backup-extract-version-start is not very clean,
4449 ;; but I can't see a good alternative, so as of now I am leaving it alone.
4450 (defun backup-extract-version (fn)
4451 "Given the name of a numeric backup file, FN, return the backup number.
4452 Uses the free variable `backup-extract-version-start', whose value should be
4453 the index in the name where the version number begins."
4454 (if (and (string-match "[0-9]+~/?$" fn backup-extract-version-start)
4455 (= (match-beginning 0) backup-extract-version-start))
4456 (string-to-number (substring fn backup-extract-version-start -1))
4459 (defun find-backup-file-name (fn)
4460 "Find a file name for a backup file FN, and suggestions for deletions.
4461 Value is a list whose car is the name for the backup file
4462 and whose cdr is a list of old versions to consider deleting now.
4463 If the value is nil, don't make a backup.
4464 Uses `backup-directory-alist' in the same way as
4465 `make-backup-file-name--default-function' does."
4466 (let ((handler (find-file-name-handler fn 'find-backup-file-name)))
4467 ;; Run a handler for this function so that ange-ftp can refuse to do it.
4468 (if handler
4469 (funcall handler 'find-backup-file-name fn)
4470 (if (or (eq version-control 'never)
4471 ;; We don't support numbered backups on plain MS-DOS
4472 ;; when long file names are unavailable.
4473 (and (eq system-type 'ms-dos)
4474 (not (msdos-long-file-names))))
4475 (list (make-backup-file-name fn))
4476 (let* ((basic-name (make-backup-file-name-1 fn))
4477 (base-versions (concat (file-name-nondirectory basic-name)
4478 ".~"))
4479 (backup-extract-version-start (length base-versions))
4480 (high-water-mark 0)
4481 (number-to-delete 0)
4482 possibilities deserve-versions-p versions)
4483 (condition-case ()
4484 (setq possibilities (file-name-all-completions
4485 base-versions
4486 (file-name-directory basic-name))
4487 versions (sort (mapcar #'backup-extract-version
4488 possibilities)
4489 #'<)
4490 high-water-mark (apply 'max 0 versions)
4491 deserve-versions-p (or version-control
4492 (> high-water-mark 0))
4493 number-to-delete (- (length versions)
4494 kept-old-versions
4495 kept-new-versions
4496 -1))
4497 (file-error (setq possibilities nil)))
4498 (if (not deserve-versions-p)
4499 (list (make-backup-file-name fn))
4500 (cons (format "%s.~%d~" basic-name (1+ high-water-mark))
4501 (if (and (> number-to-delete 0)
4502 ;; Delete nothing if there is overflow
4503 ;; in the number of versions to keep.
4504 (>= (+ kept-new-versions kept-old-versions -1) 0))
4505 (mapcar (lambda (n)
4506 (format "%s.~%d~" basic-name n))
4507 (let ((v (nthcdr kept-old-versions versions)))
4508 (rplacd (nthcdr (1- number-to-delete) v) ())
4509 v))))))))))
4511 (defun file-nlinks (filename)
4512 "Return number of names file FILENAME has."
4513 (car (cdr (file-attributes filename))))
4515 ;; (defun file-relative-name (filename &optional directory)
4516 ;; "Convert FILENAME to be relative to DIRECTORY (default: `default-directory').
4517 ;; This function returns a relative file name which is equivalent to FILENAME
4518 ;; when used with that default directory as the default.
4519 ;; If this is impossible (which can happen on MSDOS and Windows
4520 ;; when the file name and directory use different drive names)
4521 ;; then it returns FILENAME."
4522 ;; (save-match-data
4523 ;; (let ((fname (expand-file-name filename)))
4524 ;; (setq directory (file-name-as-directory
4525 ;; (expand-file-name (or directory default-directory))))
4526 ;; ;; On Microsoft OSes, if FILENAME and DIRECTORY have different
4527 ;; ;; drive names, they can't be relative, so return the absolute name.
4528 ;; (if (and (or (eq system-type 'ms-dos)
4529 ;; (eq system-type 'cygwin)
4530 ;; (eq system-type 'windows-nt))
4531 ;; (not (string-equal (substring fname 0 2)
4532 ;; (substring directory 0 2))))
4533 ;; filename
4534 ;; (let ((ancestor ".")
4535 ;; (fname-dir (file-name-as-directory fname)))
4536 ;; (while (and (not (string-match (concat "^" (regexp-quote directory)) fname-dir))
4537 ;; (not (string-match (concat "^" (regexp-quote directory)) fname)))
4538 ;; (setq directory (file-name-directory (substring directory 0 -1))
4539 ;; ancestor (if (equal ancestor ".")
4540 ;; ".."
4541 ;; (concat "../" ancestor))))
4542 ;; ;; Now ancestor is empty, or .., or ../.., etc.
4543 ;; (if (string-match (concat "^" (regexp-quote directory)) fname)
4544 ;; ;; We matched within FNAME's directory part.
4545 ;; ;; Add the rest of FNAME onto ANCESTOR.
4546 ;; (let ((rest (substring fname (match-end 0))))
4547 ;; (if (and (equal ancestor ".")
4548 ;; (not (equal rest "")))
4549 ;; ;; But don't bother with ANCESTOR if it would give us `./'.
4550 ;; rest
4551 ;; (concat (file-name-as-directory ancestor) rest)))
4552 ;; ;; We matched FNAME's directory equivalent.
4553 ;; ancestor))))))
4555 (defun file-relative-name (filename &optional directory)
4556 "Convert FILENAME to be relative to DIRECTORY (default: `default-directory').
4557 This function returns a relative file name which is equivalent to FILENAME
4558 when used with that default directory as the default.
4559 If FILENAME is a relative file name, it will be interpreted as existing in
4560 `default-directory'.
4561 If FILENAME and DIRECTORY lie on different machines or on different drives
4562 on a DOS/Windows machine, it returns FILENAME in expanded form."
4563 (save-match-data
4564 (setq directory
4565 (file-name-as-directory (expand-file-name (or directory
4566 default-directory))))
4567 (setq filename (expand-file-name filename))
4568 (let ((fremote (file-remote-p filename))
4569 (dremote (file-remote-p directory))
4570 (fold-case (or (memq system-type '(ms-dos cygwin windows-nt))
4571 read-file-name-completion-ignore-case)))
4572 (if ;; Conditions for separate trees
4574 ;; Test for different filesystems on DOS/Windows
4575 (and
4576 ;; Should `cygwin' really be included here? --stef
4577 (memq system-type '(ms-dos cygwin windows-nt))
4579 ;; Test for different drive letters
4580 (not (eq t (compare-strings filename 0 2 directory 0 2 fold-case)))
4581 ;; Test for UNCs on different servers
4582 (not (eq t (compare-strings
4583 (progn
4584 (if (string-match "\\`//\\([^:/]+\\)/" filename)
4585 (match-string 1 filename)
4586 ;; Windows file names cannot have ? in
4587 ;; them, so use that to detect when
4588 ;; neither FILENAME nor DIRECTORY is a
4589 ;; UNC.
4590 "?"))
4591 0 nil
4592 (progn
4593 (if (string-match "\\`//\\([^:/]+\\)/" directory)
4594 (match-string 1 directory)
4595 "?"))
4596 0 nil t)))))
4597 ;; Test for different remote file system identification
4598 (not (equal fremote dremote)))
4599 filename
4600 (let ((ancestor ".")
4601 (filename-dir (file-name-as-directory filename)))
4602 (while (not
4603 (or (string-prefix-p directory filename-dir fold-case)
4604 (string-prefix-p directory filename fold-case)))
4605 (setq directory (file-name-directory (substring directory 0 -1))
4606 ancestor (if (equal ancestor ".")
4607 ".."
4608 (concat "../" ancestor))))
4609 ;; Now ancestor is empty, or .., or ../.., etc.
4610 (if (string-prefix-p directory filename fold-case)
4611 ;; We matched within FILENAME's directory part.
4612 ;; Add the rest of FILENAME onto ANCESTOR.
4613 (let ((rest (substring filename (length directory))))
4614 (if (and (equal ancestor ".") (not (equal rest "")))
4615 ;; But don't bother with ANCESTOR if it would give us `./'.
4616 rest
4617 (concat (file-name-as-directory ancestor) rest)))
4618 ;; We matched FILENAME's directory equivalent.
4619 ancestor))))))
4621 (defun save-buffer (&optional arg)
4622 "Save current buffer in visited file if modified.
4623 Variations are described below.
4625 By default, makes the previous version into a backup file
4626 if previously requested or if this is the first save.
4627 Prefixed with one \\[universal-argument], marks this version
4628 to become a backup when the next save is done.
4629 Prefixed with two \\[universal-argument]'s,
4630 unconditionally makes the previous version into a backup file.
4631 Prefixed with three \\[universal-argument]'s, marks this version
4632 to become a backup when the next save is done,
4633 and unconditionally makes the previous version into a backup file.
4635 With a numeric prefix argument of 0, never make the previous version
4636 into a backup file.
4638 If a file's name is FOO, the names of its numbered backup versions are
4639 FOO.~i~ for various integers i. A non-numbered backup file is called FOO~.
4640 Numeric backups (rather than FOO~) will be made if value of
4641 `version-control' is not the atom `never' and either there are already
4642 numeric versions of the file being backed up, or `version-control' is
4643 non-nil.
4644 We don't want excessive versions piling up, so there are variables
4645 `kept-old-versions', which tells Emacs how many oldest versions to keep,
4646 and `kept-new-versions', which tells how many newest versions to keep.
4647 Defaults are 2 old versions and 2 new.
4648 `dired-kept-versions' controls dired's clean-directory (.) command.
4649 If `delete-old-versions' is nil, system will query user
4650 before trimming versions. Otherwise it does it silently.
4652 If `vc-make-backup-files' is nil, which is the default,
4653 no backup files are made for files managed by version control.
4654 (This is because the version control system itself records previous versions.)
4656 See the subroutine `basic-save-buffer' for more information."
4657 (interactive "p")
4658 (let ((modp (buffer-modified-p))
4659 (make-backup-files (or (and make-backup-files (not (eq arg 0)))
4660 (memq arg '(16 64)))))
4661 (and modp (memq arg '(16 64)) (setq buffer-backed-up nil))
4662 ;; We used to display the message below only for files > 50KB, but
4663 ;; then Rmail-mbox never displays it due to buffer swapping. If
4664 ;; the test is ever re-introduced, be sure to handle saving of
4665 ;; Rmail files.
4666 (if (and modp (buffer-file-name))
4667 (message "Saving file %s..." (buffer-file-name)))
4668 (basic-save-buffer)
4669 (and modp (memq arg '(4 64)) (setq buffer-backed-up nil))))
4671 (defun delete-auto-save-file-if-necessary (&optional force)
4672 "Delete auto-save file for current buffer if `delete-auto-save-files' is t.
4673 Normally delete only if the file was written by this Emacs since
4674 the last real save, but optional arg FORCE non-nil means delete anyway."
4675 (and buffer-auto-save-file-name delete-auto-save-files
4676 (not (string= buffer-file-name buffer-auto-save-file-name))
4677 (or force (recent-auto-save-p))
4678 (progn
4679 (condition-case ()
4680 (delete-file buffer-auto-save-file-name)
4681 (file-error nil))
4682 (set-buffer-auto-saved))))
4684 (defvar auto-save-hook nil
4685 "Normal hook run just before auto-saving.")
4687 (defcustom before-save-hook nil
4688 "Normal hook that is run before a buffer is saved to its file."
4689 :options '(copyright-update time-stamp)
4690 :type 'hook
4691 :group 'files)
4693 (defcustom after-save-hook nil
4694 "Normal hook that is run after a buffer is saved to its file."
4695 :options '(executable-make-buffer-file-executable-if-script-p)
4696 :type 'hook
4697 :group 'files)
4699 (defvar save-buffer-coding-system nil
4700 "If non-nil, use this coding system for saving the buffer.
4701 More precisely, use this coding system in place of the
4702 value of `buffer-file-coding-system', when saving the buffer.
4703 Calling `write-region' for any purpose other than saving the buffer
4704 will still use `buffer-file-coding-system'; this variable has no effect
4705 in such cases.")
4707 (make-variable-buffer-local 'save-buffer-coding-system)
4708 (put 'save-buffer-coding-system 'permanent-local t)
4710 (defun basic-save-buffer ()
4711 "Save the current buffer in its visited file, if it has been modified.
4712 The hooks `write-contents-functions' and `write-file-functions' get a chance
4713 to do the job of saving; if they do not, then the buffer is saved in
4714 the visited file in the usual way.
4715 Before and after saving the buffer, this function runs
4716 `before-save-hook' and `after-save-hook', respectively."
4717 (interactive)
4718 (save-current-buffer
4719 ;; In an indirect buffer, save its base buffer instead.
4720 (if (buffer-base-buffer)
4721 (set-buffer (buffer-base-buffer)))
4722 (if (or (buffer-modified-p)
4723 ;; handle the case when no modification has been made but
4724 ;; the file disappeared since visited
4725 (and buffer-file-name
4726 (not (file-exists-p buffer-file-name))))
4727 (let ((recent-save (recent-auto-save-p))
4728 setmodes)
4729 ;; If buffer has no file name, ask user for one.
4730 (or buffer-file-name
4731 (let ((filename
4732 (expand-file-name
4733 (read-file-name "File to save in: "
4734 nil (expand-file-name (buffer-name))))))
4735 (if (file-exists-p filename)
4736 (if (file-directory-p filename)
4737 ;; Signal an error if the user specified the name of an
4738 ;; existing directory.
4739 (error "%s is a directory" filename)
4740 (unless (y-or-n-p (format "File `%s' exists; overwrite? "
4741 filename))
4742 (error "Canceled"))))
4743 (set-visited-file-name filename)))
4744 (or (verify-visited-file-modtime (current-buffer))
4745 (not (file-exists-p buffer-file-name))
4746 (yes-or-no-p
4747 (format
4748 "%s has changed since visited or saved. Save anyway? "
4749 (file-name-nondirectory buffer-file-name)))
4750 (user-error "Save not confirmed"))
4751 (save-restriction
4752 (widen)
4753 (save-excursion
4754 (and (> (point-max) (point-min))
4755 (not find-file-literally)
4756 (/= (char-after (1- (point-max))) ?\n)
4757 (not (and (eq selective-display t)
4758 (= (char-after (1- (point-max))) ?\r)))
4759 (or (eq require-final-newline t)
4760 (eq require-final-newline 'visit-save)
4761 (and require-final-newline
4762 (y-or-n-p
4763 (format "Buffer %s does not end in newline. Add one? "
4764 (buffer-name)))))
4765 (save-excursion
4766 (goto-char (point-max))
4767 (insert ?\n))))
4768 ;; Support VC version backups.
4769 (vc-before-save)
4770 ;; Don't let errors prevent saving the buffer.
4771 (with-demoted-errors (run-hooks 'before-save-hook))
4772 (or (run-hook-with-args-until-success 'write-contents-functions)
4773 (run-hook-with-args-until-success 'local-write-file-hooks)
4774 (run-hook-with-args-until-success 'write-file-functions)
4775 ;; If a hook returned t, file is already "written".
4776 ;; Otherwise, write it the usual way now.
4777 (let ((dir (file-name-directory
4778 (expand-file-name buffer-file-name))))
4779 (unless (file-exists-p dir)
4780 (if (y-or-n-p
4781 (format "Directory `%s' does not exist; create? " dir))
4782 (make-directory dir t)
4783 (error "Canceled")))
4784 (setq setmodes (basic-save-buffer-1))))
4785 ;; Now we have saved the current buffer. Let's make sure
4786 ;; that buffer-file-coding-system is fixed to what
4787 ;; actually used for saving by binding it locally.
4788 (if save-buffer-coding-system
4789 (setq save-buffer-coding-system last-coding-system-used)
4790 (setq buffer-file-coding-system last-coding-system-used))
4791 (setq buffer-file-number
4792 (nthcdr 10 (file-attributes buffer-file-name)))
4793 (if setmodes
4794 (condition-case ()
4795 (progn
4796 (unless
4797 (with-demoted-errors
4798 (set-file-modes buffer-file-name (car setmodes)))
4799 (set-file-extended-attributes buffer-file-name
4800 (nth 1 setmodes))))
4801 (error nil))))
4802 ;; If the auto-save file was recent before this command,
4803 ;; delete it now.
4804 (delete-auto-save-file-if-necessary recent-save)
4805 ;; Support VC `implicit' locking.
4806 (vc-after-save)
4807 (run-hooks 'after-save-hook))
4808 (message "(No changes need to be saved)"))))
4810 ;; This does the "real job" of writing a buffer into its visited file
4811 ;; and making a backup file. This is what is normally done
4812 ;; but inhibited if one of write-file-functions returns non-nil.
4813 ;; It returns a value (MODES EXTENDED-ATTRIBUTES BACKUPNAME), like
4814 ;; backup-buffer.
4815 (defun basic-save-buffer-1 ()
4816 (prog1
4817 (if save-buffer-coding-system
4818 (let ((coding-system-for-write save-buffer-coding-system))
4819 (basic-save-buffer-2))
4820 (basic-save-buffer-2))
4821 (if buffer-file-coding-system-explicit
4822 (setcar buffer-file-coding-system-explicit last-coding-system-used))))
4824 ;; This returns a value (MODES EXTENDED-ATTRIBUTES BACKUPNAME), like
4825 ;; backup-buffer.
4826 (defun basic-save-buffer-2 ()
4827 (let (tempsetmodes setmodes)
4828 (if (not (file-writable-p buffer-file-name))
4829 (let ((dir (file-name-directory buffer-file-name)))
4830 (if (not (file-directory-p dir))
4831 (if (file-exists-p dir)
4832 (error "%s is not a directory" dir)
4833 (error "%s: no such directory" dir))
4834 (if (not (file-exists-p buffer-file-name))
4835 (error "Directory %s write-protected" dir)
4836 (if (yes-or-no-p
4837 (format
4838 "File %s is write-protected; try to save anyway? "
4839 (file-name-nondirectory
4840 buffer-file-name)))
4841 (setq tempsetmodes t)
4842 (error "Attempt to save to a file which you aren't allowed to write"))))))
4843 (or buffer-backed-up
4844 (setq setmodes (backup-buffer)))
4845 (let* ((dir (file-name-directory buffer-file-name))
4846 (dir-writable (file-writable-p dir)))
4847 (if (or (and file-precious-flag dir-writable)
4848 (and break-hardlink-on-save
4849 (file-exists-p buffer-file-name)
4850 (> (file-nlinks buffer-file-name) 1)
4851 (or dir-writable
4852 (error (concat (format
4853 "Directory %s write-protected; " dir)
4854 "cannot break hardlink when saving")))))
4855 ;; Write temp name, then rename it.
4856 ;; This requires write access to the containing dir,
4857 ;; which is why we don't try it if we don't have that access.
4858 (let ((realname buffer-file-name)
4859 tempname succeed
4860 (umask (default-file-modes))
4861 (old-modtime (visited-file-modtime)))
4862 ;; Create temp files with strict access rights. It's easy to
4863 ;; loosen them later, whereas it's impossible to close the
4864 ;; time-window of loose permissions otherwise.
4865 (unwind-protect
4866 (progn
4867 (clear-visited-file-modtime)
4868 (set-default-file-modes ?\700)
4869 ;; Try various temporary names.
4870 ;; This code follows the example of make-temp-file,
4871 ;; but it calls write-region in the appropriate way
4872 ;; for saving the buffer.
4873 (while (condition-case ()
4874 (progn
4875 (setq tempname
4876 (make-temp-name
4877 (expand-file-name "tmp" dir)))
4878 ;; Pass in nil&nil rather than point-min&max
4879 ;; cause we're saving the whole buffer.
4880 ;; write-region-annotate-functions may use it.
4881 (write-region nil nil
4882 tempname nil realname
4883 buffer-file-truename 'excl)
4884 nil)
4885 (file-already-exists t))
4886 ;; The file was somehow created by someone else between
4887 ;; `make-temp-name' and `write-region', let's try again.
4888 nil)
4889 (setq succeed t))
4890 ;; Reset the umask.
4891 (set-default-file-modes umask)
4892 ;; If we failed, restore the buffer's modtime.
4893 (unless succeed
4894 (set-visited-file-modtime old-modtime)))
4895 ;; Since we have created an entirely new file,
4896 ;; make sure it gets the right permission bits set.
4897 (setq setmodes (or setmodes
4898 (list (or (file-modes buffer-file-name)
4899 (logand ?\666 umask))
4900 (file-extended-attributes buffer-file-name)
4901 buffer-file-name)))
4902 ;; We succeeded in writing the temp file,
4903 ;; so rename it.
4904 (rename-file tempname buffer-file-name t))
4905 ;; If file not writable, see if we can make it writable
4906 ;; temporarily while we write it.
4907 ;; But no need to do so if we have just backed it up
4908 ;; (setmodes is set) because that says we're superseding.
4909 (cond ((and tempsetmodes (not setmodes))
4910 ;; Change the mode back, after writing.
4911 (setq setmodes (list (file-modes buffer-file-name)
4912 (file-extended-attributes buffer-file-name)
4913 buffer-file-name))
4914 ;; If set-file-extended-attributes fails, fall back on
4915 ;; set-file-modes.
4916 (unless
4917 (with-demoted-errors
4918 (set-file-extended-attributes buffer-file-name
4919 (nth 1 setmodes)))
4920 (set-file-modes buffer-file-name
4921 (logior (car setmodes) 128))))))
4922 (let (success)
4923 (unwind-protect
4924 (progn
4925 ;; Pass in nil&nil rather than point-min&max to indicate
4926 ;; we're saving the buffer rather than just a region.
4927 ;; write-region-annotate-functions may make us of it.
4928 (write-region nil nil
4929 buffer-file-name nil t buffer-file-truename)
4930 (setq success t))
4931 ;; If we get an error writing the new file, and we made
4932 ;; the backup by renaming, undo the backing-up.
4933 (and setmodes (not success)
4934 (progn
4935 (rename-file (nth 2 setmodes) buffer-file-name t)
4936 (setq buffer-backed-up nil))))))
4937 setmodes))
4939 (declare-function diff-no-select "diff"
4940 (old new &optional switches no-async buf))
4942 (defvar save-some-buffers-action-alist
4943 `((?\C-r
4944 ,(lambda (buf)
4945 (if (not enable-recursive-minibuffers)
4946 (progn (display-buffer buf)
4947 (setq other-window-scroll-buffer buf))
4948 (view-buffer buf (lambda (_) (exit-recursive-edit)))
4949 (recursive-edit))
4950 ;; Return nil to ask about BUF again.
4951 nil)
4952 ,(purecopy "view this buffer"))
4953 (?d ,(lambda (buf)
4954 (if (null (buffer-file-name buf))
4955 (message "Not applicable: no file")
4956 (require 'diff) ;for diff-no-select.
4957 (let ((diffbuf (diff-no-select (buffer-file-name buf) buf
4958 nil 'noasync)))
4959 (if (not enable-recursive-minibuffers)
4960 (progn (display-buffer diffbuf)
4961 (setq other-window-scroll-buffer diffbuf))
4962 (view-buffer diffbuf (lambda (_) (exit-recursive-edit)))
4963 (recursive-edit))))
4964 ;; Return nil to ask about BUF again.
4965 nil)
4966 ,(purecopy "view changes in this buffer")))
4967 "ACTION-ALIST argument used in call to `map-y-or-n-p'.")
4968 (put 'save-some-buffers-action-alist 'risky-local-variable t)
4970 (defvar buffer-save-without-query nil
4971 "Non-nil means `save-some-buffers' should save this buffer without asking.")
4972 (make-variable-buffer-local 'buffer-save-without-query)
4974 (defun save-some-buffers (&optional arg pred)
4975 "Save some modified file-visiting buffers. Asks user about each one.
4976 You can answer `y' to save, `n' not to save, `C-r' to look at the
4977 buffer in question with `view-buffer' before deciding or `d' to
4978 view the differences using `diff-buffer-with-file'.
4980 This command first saves any buffers where `buffer-save-without-query' is
4981 non-nil, without asking.
4983 Optional argument (the prefix) non-nil means save all with no questions.
4984 Optional second argument PRED determines which buffers are considered:
4985 If PRED is nil, all the file-visiting buffers are considered.
4986 If PRED is t, then certain non-file buffers will also be considered.
4987 If PRED is a zero-argument function, it indicates for each buffer whether
4988 to consider it or not when called with that buffer current.
4990 See `save-some-buffers-action-alist' if you want to
4991 change the additional actions you can take on files."
4992 (interactive "P")
4993 (save-window-excursion
4994 (let* (queried autosaved-buffers
4995 files-done abbrevs-done)
4996 (dolist (buffer (buffer-list))
4997 ;; First save any buffers that we're supposed to save unconditionally.
4998 ;; That way the following code won't ask about them.
4999 (with-current-buffer buffer
5000 (when (and buffer-save-without-query (buffer-modified-p))
5001 (push (buffer-name) autosaved-buffers)
5002 (save-buffer))))
5003 ;; Ask about those buffers that merit it,
5004 ;; and record the number thus saved.
5005 (setq files-done
5006 (map-y-or-n-p
5007 (lambda (buffer)
5008 ;; Note that killing some buffers may kill others via
5009 ;; hooks (e.g. Rmail and its viewing buffer).
5010 (and (buffer-live-p buffer)
5011 (buffer-modified-p buffer)
5012 (not (buffer-base-buffer buffer))
5014 (buffer-file-name buffer)
5015 (and pred
5016 (progn
5017 (set-buffer buffer)
5018 (and buffer-offer-save (> (buffer-size) 0)))))
5019 (or (not (functionp pred))
5020 (with-current-buffer buffer (funcall pred)))
5021 (if arg
5023 (setq queried t)
5024 (if (buffer-file-name buffer)
5025 (format "Save file %s? "
5026 (buffer-file-name buffer))
5027 (format "Save buffer %s? "
5028 (buffer-name buffer))))))
5029 (lambda (buffer)
5030 (with-current-buffer buffer
5031 (save-buffer)))
5032 (buffer-list)
5033 '("buffer" "buffers" "save")
5034 save-some-buffers-action-alist))
5035 ;; Maybe to save abbrevs, and record whether
5036 ;; we either saved them or asked to.
5037 (and save-abbrevs abbrevs-changed
5038 (progn
5039 (if (or arg
5040 (eq save-abbrevs 'silently)
5041 (y-or-n-p (format "Save abbrevs in %s? " abbrev-file-name)))
5042 (write-abbrev-file nil))
5043 ;; Don't keep bothering user if he says no.
5044 (setq abbrevs-changed nil)
5045 (setq abbrevs-done t)))
5046 (or queried (> files-done 0) abbrevs-done
5047 (cond
5048 ((null autosaved-buffers)
5049 (message "(No files need saving)"))
5050 ((= (length autosaved-buffers) 1)
5051 (message "(Saved %s)" (car autosaved-buffers)))
5053 (message "(Saved %d files: %s)"
5054 (length autosaved-buffers)
5055 (mapconcat 'identity autosaved-buffers ", "))))))))
5057 (defun clear-visited-file-modtime ()
5058 "Clear out records of last mod time of visited file.
5059 Next attempt to save will certainly not complain of a discrepancy."
5060 (set-visited-file-modtime 0))
5062 (defun not-modified (&optional arg)
5063 "Mark current buffer as unmodified, not needing to be saved.
5064 With prefix ARG, mark buffer as modified, so \\[save-buffer] will save.
5066 It is not a good idea to use this function in Lisp programs, because it
5067 prints a message in the minibuffer. Instead, use `set-buffer-modified-p'."
5068 (declare (interactive-only set-buffer-modified-p))
5069 (interactive "P")
5070 (message (if arg "Modification-flag set"
5071 "Modification-flag cleared"))
5072 (set-buffer-modified-p arg))
5074 (defun toggle-read-only (&optional arg interactive)
5075 "Change whether this buffer is read-only."
5076 (declare (obsolete read-only-mode "24.3"))
5077 (interactive (list current-prefix-arg t))
5078 (if interactive
5079 (call-interactively 'read-only-mode)
5080 (read-only-mode (or arg 'toggle))))
5082 (defun insert-file (filename)
5083 "Insert contents of file FILENAME into buffer after point.
5084 Set mark after the inserted text.
5086 This function is meant for the user to run interactively.
5087 Don't call it from programs! Use `insert-file-contents' instead.
5088 \(Its calling sequence is different; see its documentation)."
5089 (declare (interactive-only insert-file-contents))
5090 (interactive "*fInsert file: ")
5091 (insert-file-1 filename #'insert-file-contents))
5093 (defun append-to-file (start end filename)
5094 "Append the contents of the region to the end of file FILENAME.
5095 When called from a function, expects three arguments,
5096 START, END and FILENAME. START and END are normally buffer positions
5097 specifying the part of the buffer to write.
5098 If START is nil, that means to use the entire buffer contents.
5099 If START is a string, then output that string to the file
5100 instead of any buffer contents; END is ignored.
5102 This does character code conversion and applies annotations
5103 like `write-region' does."
5104 (interactive "r\nFAppend to file: ")
5105 (write-region start end filename t))
5107 (defun file-newest-backup (filename)
5108 "Return most recent backup file for FILENAME or nil if no backups exist."
5109 ;; `make-backup-file-name' will get us the right directory for
5110 ;; ordinary or numeric backups. It might create a directory for
5111 ;; backups as a side-effect, according to `backup-directory-alist'.
5112 (let* ((filename (file-name-sans-versions
5113 (make-backup-file-name (expand-file-name filename))))
5114 (file (file-name-nondirectory filename))
5115 (dir (file-name-directory filename))
5116 (comp (file-name-all-completions file dir))
5117 (newest nil)
5118 tem)
5119 (while comp
5120 (setq tem (pop comp))
5121 (cond ((and (backup-file-name-p tem)
5122 (string= (file-name-sans-versions tem) file))
5123 (setq tem (concat dir tem))
5124 (if (or (null newest)
5125 (file-newer-than-file-p tem newest))
5126 (setq newest tem)))))
5127 newest))
5129 (defun rename-uniquely ()
5130 "Rename current buffer to a similar name not already taken.
5131 This function is useful for creating multiple shell process buffers
5132 or multiple mail buffers, etc.
5134 Note that some commands, in particular those based on `compilation-mode'
5135 \(`compile', `grep', etc.) will reuse the current buffer if it has the
5136 appropriate mode even if it has been renamed. So as well as renaming
5137 the buffer, you also need to switch buffers before running another
5138 instance of such commands."
5139 (interactive)
5140 (save-match-data
5141 (let ((base-name (buffer-name)))
5142 (and (string-match "<[0-9]+>\\'" base-name)
5143 (not (and buffer-file-name
5144 (string= base-name
5145 (file-name-nondirectory buffer-file-name))))
5146 ;; If the existing buffer name has a <NNN>,
5147 ;; which isn't part of the file name (if any),
5148 ;; then get rid of that.
5149 (setq base-name (substring base-name 0 (match-beginning 0))))
5150 (rename-buffer (generate-new-buffer-name base-name))
5151 (force-mode-line-update))))
5153 (defun make-directory (dir &optional parents)
5154 "Create the directory DIR and optionally any nonexistent parent dirs.
5155 If DIR already exists as a directory, signal an error, unless
5156 PARENTS is non-nil.
5158 Interactively, the default choice of directory to create is the
5159 current buffer's default directory. That is useful when you have
5160 visited a file in a nonexistent directory.
5162 Noninteractively, the second (optional) argument PARENTS, if
5163 non-nil, says whether to create parent directories that don't
5164 exist. Interactively, this happens by default.
5166 If creating the directory or directories fail, an error will be
5167 raised."
5168 (interactive
5169 (list (read-file-name "Make directory: " default-directory default-directory
5170 nil nil)
5172 ;; If default-directory is a remote directory,
5173 ;; make sure we find its make-directory handler.
5174 (setq dir (expand-file-name dir))
5175 (let ((handler (find-file-name-handler dir 'make-directory)))
5176 (if handler
5177 (funcall handler 'make-directory dir parents)
5178 (if (not parents)
5179 (make-directory-internal dir)
5180 (let ((dir (directory-file-name (expand-file-name dir)))
5181 create-list)
5182 (while (and (not (file-exists-p dir))
5183 ;; If directory is its own parent, then we can't
5184 ;; keep looping forever
5185 (not (equal dir
5186 (directory-file-name
5187 (file-name-directory dir)))))
5188 (setq create-list (cons dir create-list)
5189 dir (directory-file-name (file-name-directory dir))))
5190 (while create-list
5191 (make-directory-internal (car create-list))
5192 (setq create-list (cdr create-list))))))))
5194 (defconst directory-files-no-dot-files-regexp
5195 "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*"
5196 "Regexp matching any file name except \".\" and \"..\".")
5198 (defun delete-directory (directory &optional recursive trash)
5199 "Delete the directory named DIRECTORY. Does not follow symlinks.
5200 If RECURSIVE is non-nil, all files in DIRECTORY are deleted as well.
5201 TRASH non-nil means to trash the directory instead, provided
5202 `delete-by-moving-to-trash' is non-nil.
5204 When called interactively, TRASH is t if no prefix argument is
5205 given. With a prefix argument, TRASH is nil."
5206 (interactive
5207 (let* ((trashing (and delete-by-moving-to-trash
5208 (null current-prefix-arg)))
5209 (dir (expand-file-name
5210 (read-directory-name
5211 (if trashing
5212 "Move directory to trash: "
5213 "Delete directory: ")
5214 default-directory default-directory nil nil))))
5215 (list dir
5216 (if (directory-files dir nil directory-files-no-dot-files-regexp)
5217 (y-or-n-p
5218 (format "Directory `%s' is not empty, really %s? "
5219 dir (if trashing "trash" "delete")))
5220 nil)
5221 (null current-prefix-arg))))
5222 ;; If default-directory is a remote directory, make sure we find its
5223 ;; delete-directory handler.
5224 (setq directory (directory-file-name (expand-file-name directory)))
5225 (let ((handler (find-file-name-handler directory 'delete-directory)))
5226 (cond
5227 (handler
5228 (funcall handler 'delete-directory directory recursive))
5229 ((and delete-by-moving-to-trash trash)
5230 ;; Only move non-empty dir to trash if recursive deletion was
5231 ;; requested. This mimics the non-`delete-by-moving-to-trash'
5232 ;; case, where the operation fails in delete-directory-internal.
5233 ;; As `move-file-to-trash' trashes directories (empty or
5234 ;; otherwise) as a unit, we do not need to recurse here.
5235 (if (and (not recursive)
5236 ;; Check if directory is empty apart from "." and "..".
5237 (directory-files
5238 directory 'full directory-files-no-dot-files-regexp))
5239 (error "Directory is not empty, not moving to trash")
5240 (move-file-to-trash directory)))
5241 ;; Otherwise, call ourselves recursively if needed.
5243 (if (and recursive (not (file-symlink-p directory)))
5244 (mapc (lambda (file)
5245 ;; This test is equivalent to
5246 ;; (and (file-directory-p fn) (not (file-symlink-p fn)))
5247 ;; but more efficient
5248 (if (eq t (car (file-attributes file)))
5249 (delete-directory file recursive nil)
5250 (delete-file file nil)))
5251 ;; We do not want to delete "." and "..".
5252 (directory-files
5253 directory 'full directory-files-no-dot-files-regexp)))
5254 (delete-directory-internal directory)))))
5256 (defun file-equal-p (file1 file2)
5257 "Return non-nil if files FILE1 and FILE2 name the same file.
5258 If FILE1 or FILE2 does not exist, the return value is unspecified."
5259 (let ((handler (or (find-file-name-handler file1 'file-equal-p)
5260 (find-file-name-handler file2 'file-equal-p))))
5261 (if handler
5262 (funcall handler 'file-equal-p file1 file2)
5263 (let (f1-attr f2-attr)
5264 (and (setq f1-attr (file-attributes (file-truename file1)))
5265 (setq f2-attr (file-attributes (file-truename file2)))
5266 (equal f1-attr f2-attr))))))
5268 (defun file-in-directory-p (file dir)
5269 "Return non-nil if FILE is in DIR or a subdirectory of DIR.
5270 A directory is considered to be \"in\" itself.
5271 Return nil if DIR is not an existing directory."
5272 (let ((handler (or (find-file-name-handler file 'file-in-directory-p)
5273 (find-file-name-handler dir 'file-in-directory-p))))
5274 (if handler
5275 (funcall handler 'file-in-directory-p file dir)
5276 (when (file-directory-p dir) ; DIR must exist.
5277 (setq file (file-truename file)
5278 dir (file-truename dir))
5279 (let ((ls1 (split-string file "/" t))
5280 (ls2 (split-string dir "/" t))
5281 (root (if (string-match "\\`/" file) "/" ""))
5282 (mismatch nil))
5283 (while (and ls1 ls2 (not mismatch))
5284 (if (string-equal (car ls1) (car ls2))
5285 (setq root (concat root (car ls1) "/"))
5286 (setq mismatch t))
5287 (setq ls1 (cdr ls1)
5288 ls2 (cdr ls2)))
5289 (unless mismatch
5290 (file-equal-p root dir)))))))
5292 (defun copy-directory (directory newname &optional keep-time parents copy-contents)
5293 "Copy DIRECTORY to NEWNAME. Both args must be strings.
5294 This function always sets the file modes of the output files to match
5295 the corresponding input file.
5297 The third arg KEEP-TIME non-nil means give the output files the same
5298 last-modified time as the old ones. (This works on only some systems.)
5300 A prefix arg makes KEEP-TIME non-nil.
5302 Noninteractively, the last argument PARENTS says whether to
5303 create parent directories if they don't exist. Interactively,
5304 this happens by default.
5306 If NEWNAME names an existing directory, copy DIRECTORY as a
5307 subdirectory there. However, if called from Lisp with a non-nil
5308 optional argument COPY-CONTENTS, copy the contents of DIRECTORY
5309 directly into NEWNAME instead."
5310 (interactive
5311 (let ((dir (read-directory-name
5312 "Copy directory: " default-directory default-directory t nil)))
5313 (list dir
5314 (read-directory-name
5315 (format "Copy directory %s to: " dir)
5316 default-directory default-directory nil nil)
5317 current-prefix-arg t nil)))
5318 (when (file-in-directory-p newname directory)
5319 (error "Cannot copy `%s' into its subdirectory `%s'"
5320 directory newname))
5321 ;; If default-directory is a remote directory, make sure we find its
5322 ;; copy-directory handler.
5323 (let ((handler (or (find-file-name-handler directory 'copy-directory)
5324 (find-file-name-handler newname 'copy-directory))))
5325 (if handler
5326 (funcall handler 'copy-directory directory
5327 newname keep-time parents copy-contents)
5329 ;; Compute target name.
5330 (setq directory (directory-file-name (expand-file-name directory))
5331 newname (directory-file-name (expand-file-name newname)))
5333 (cond ((not (file-directory-p newname))
5334 ;; If NEWNAME is not an existing directory, create it;
5335 ;; that is where we will copy the files of DIRECTORY.
5336 (make-directory newname parents))
5337 ;; If NEWNAME is an existing directory and COPY-CONTENTS
5338 ;; is nil, copy into NEWNAME/[DIRECTORY-BASENAME].
5339 ((not copy-contents)
5340 (setq newname (expand-file-name
5341 (file-name-nondirectory
5342 (directory-file-name directory))
5343 newname))
5344 (and (file-exists-p newname)
5345 (not (file-directory-p newname))
5346 (error "Cannot overwrite non-directory %s with a directory"
5347 newname))
5348 (make-directory newname t)))
5350 ;; Copy recursively.
5351 (dolist (file
5352 ;; We do not want to copy "." and "..".
5353 (directory-files directory 'full
5354 directory-files-no-dot-files-regexp))
5355 (let ((target (expand-file-name (file-name-nondirectory file) newname))
5356 (filetype (car (file-attributes file))))
5357 (cond
5358 ((eq filetype t) ; Directory but not a symlink.
5359 (copy-directory file newname keep-time parents))
5360 ((stringp filetype) ; Symbolic link
5361 (make-symbolic-link filetype target t))
5362 ((copy-file file target t keep-time)))))
5364 ;; Set directory attributes.
5365 (let ((modes (file-modes directory))
5366 (times (and keep-time (nth 5 (file-attributes directory)))))
5367 (if modes (set-file-modes newname modes))
5368 (if times (set-file-times newname times))))))
5371 ;; At time of writing, only info uses this.
5372 (defun prune-directory-list (dirs &optional keep reject)
5373 "Return a copy of DIRS with all non-existent directories removed.
5374 The optional argument KEEP is a list of directories to retain even if
5375 they don't exist, and REJECT is a list of directories to remove from
5376 DIRS, even if they exist; REJECT takes precedence over KEEP.
5378 Note that membership in REJECT and KEEP is checked using simple string
5379 comparison."
5380 (apply #'nconc
5381 (mapcar (lambda (dir)
5382 (and (not (member dir reject))
5383 (or (member dir keep) (file-directory-p dir))
5384 (list dir)))
5385 dirs)))
5388 (put 'revert-buffer-function 'permanent-local t)
5389 (defvar revert-buffer-function #'revert-buffer--default
5390 "Function to use to revert this buffer.
5391 The function receives two arguments IGNORE-AUTO and NOCONFIRM,
5392 which are the arguments that `revert-buffer' received.
5393 It also has access to the `preserve-modes' argument of `revert-buffer'
5394 via the `revert-buffer-preserve-modes' dynamic variable.
5396 For historical reasons, a value of nil means to use the default function.
5397 This should not be relied upon.")
5399 (put 'revert-buffer-insert-file-contents-function 'permanent-local t)
5400 (defvar revert-buffer-insert-file-contents-function
5401 #'revert-buffer-insert-file-contents--default-function
5402 "Function to use to insert contents when reverting this buffer.
5403 The function receives two arguments: the first the nominal file name to use;
5404 the second is t if reading the auto-save file.
5406 The function is responsible for updating (or preserving) point.
5408 For historical reasons, a value of nil means to use the default function.
5409 This should not be relied upon.")
5411 (defun buffer-stale--default-function (&optional _noconfirm)
5412 "Default function to use for `buffer-stale-function'.
5413 This function ignores its argument.
5414 This returns non-nil if the current buffer is visiting a readable file
5415 whose modification time does not match that of the buffer.
5417 This function only handles buffers that are visiting files.
5418 Non-file buffers need a custom function"
5419 (and buffer-file-name
5420 (file-readable-p buffer-file-name)
5421 (not (verify-visited-file-modtime (current-buffer)))))
5423 (defvar buffer-stale-function #'buffer-stale--default-function
5424 "Function to check whether a buffer needs reverting.
5425 This should be a function with one optional argument NOCONFIRM.
5426 Auto Revert Mode passes t for NOCONFIRM. The function should return
5427 non-nil if the buffer should be reverted. A return value of
5428 `fast' means that the need for reverting was not checked, but
5429 that reverting the buffer is fast. The buffer is current when
5430 this function is called.
5432 The idea behind the NOCONFIRM argument is that it should be
5433 non-nil if the buffer is going to be reverted without asking the
5434 user. In such situations, one has to be careful with potentially
5435 time consuming operations.
5437 For historical reasons, a value of nil means to use the default function.
5438 This should not be relied upon.
5440 For more information on how this variable is used by Auto Revert mode,
5441 see Info node `(emacs)Supporting additional buffers'.")
5443 (defvar before-revert-hook nil
5444 "Normal hook for `revert-buffer' to run before reverting.
5445 The function `revert-buffer--default' runs this.
5446 A customized `revert-buffer-function' need not run this hook.")
5448 (defvar after-revert-hook nil
5449 "Normal hook for `revert-buffer' to run after reverting.
5450 Note that the hook value that it runs is the value that was in effect
5451 before reverting; that makes a difference if you have buffer-local
5452 hook functions.
5454 The function `revert-buffer--default' runs this.
5455 A customized `revert-buffer-function' need not run this hook.")
5457 (defvar revert-buffer-in-progress-p nil
5458 "Non-nil if a `revert-buffer' operation is in progress, nil otherwise.")
5460 (defvar revert-buffer-internal-hook)
5462 ;; `revert-buffer-function' was defined long ago to be a function of only
5463 ;; 2 arguments, so we have to use a dynbind variable to pass the
5464 ;; `preserve-modes' argument of `revert-buffer'.
5465 (defvar revert-buffer-preserve-modes)
5467 (defun revert-buffer (&optional ignore-auto noconfirm preserve-modes)
5468 "Replace current buffer text with the text of the visited file on disk.
5469 This undoes all changes since the file was visited or saved.
5470 With a prefix argument, offer to revert from latest auto-save file, if
5471 that is more recent than the visited file.
5473 This command also implements an interface for special buffers
5474 that contain text which doesn't come from a file, but reflects
5475 some other data instead (e.g. Dired buffers, `buffer-list'
5476 buffers). This is done via the variable `revert-buffer-function'.
5477 In these cases, it should reconstruct the buffer contents from the
5478 appropriate data.
5480 When called from Lisp, the first argument is IGNORE-AUTO; only offer
5481 to revert from the auto-save file when this is nil. Note that the
5482 sense of this argument is the reverse of the prefix argument, for the
5483 sake of backward compatibility. IGNORE-AUTO is optional, defaulting
5484 to nil.
5486 Optional second argument NOCONFIRM means don't ask for confirmation
5487 at all. (The variable `revert-without-query' offers another way to
5488 revert buffers without querying for confirmation.)
5490 Optional third argument PRESERVE-MODES non-nil means don't alter
5491 the files modes. Normally we reinitialize them using `normal-mode'.
5493 This function binds `revert-buffer-in-progress-p' non-nil while it operates.
5495 This function calls the function that `revert-buffer-function' specifies
5496 to do the work, with arguments IGNORE-AUTO and NOCONFIRM.
5497 The default function runs the hooks `before-revert-hook' and
5498 `after-revert-hook'."
5499 ;; I admit it's odd to reverse the sense of the prefix argument, but
5500 ;; there is a lot of code out there which assumes that the first
5501 ;; argument should be t to avoid consulting the auto-save file, and
5502 ;; there's no straightforward way to encourage authors to notice a
5503 ;; reversal of the argument sense. So I'm just changing the user
5504 ;; interface, but leaving the programmatic interface the same.
5505 (interactive (list (not current-prefix-arg)))
5506 (let ((revert-buffer-in-progress-p t)
5507 (revert-buffer-preserve-modes preserve-modes))
5508 (funcall (or revert-buffer-function #'revert-buffer--default)
5509 ignore-auto noconfirm)))
5511 (defun revert-buffer--default (ignore-auto noconfirm)
5512 "Default function for `revert-buffer'.
5513 The arguments IGNORE-AUTO and NOCONFIRM are as described for `revert-buffer'.
5514 Runs the hooks `before-revert-hook' and `after-revert-hook' at the
5515 start and end.
5517 Calls `revert-buffer-insert-file-contents-function' to reread the
5518 contents of the visited file, with two arguments: the first is the file
5519 name, the second is non-nil if reading an auto-save file.
5521 This function only handles buffers that are visiting files.
5522 Non-file buffers need a custom function."
5523 (with-current-buffer (or (buffer-base-buffer (current-buffer))
5524 (current-buffer))
5525 (let* ((auto-save-p (and (not ignore-auto)
5526 (recent-auto-save-p)
5527 buffer-auto-save-file-name
5528 (file-readable-p buffer-auto-save-file-name)
5529 (y-or-n-p
5530 "Buffer has been auto-saved recently. Revert from auto-save file? ")))
5531 (file-name (if auto-save-p
5532 buffer-auto-save-file-name
5533 buffer-file-name)))
5534 (cond ((null file-name)
5535 (error "Buffer does not seem to be associated with any file"))
5536 ((or noconfirm
5537 (and (not (buffer-modified-p))
5538 (catch 'found
5539 (dolist (regexp revert-without-query)
5540 (when (string-match regexp file-name)
5541 (throw 'found t)))))
5542 (yes-or-no-p (format "Revert buffer from file %s? "
5543 file-name)))
5544 (run-hooks 'before-revert-hook)
5545 ;; If file was backed up but has changed since,
5546 ;; we should make another backup.
5547 (and (not auto-save-p)
5548 (not (verify-visited-file-modtime (current-buffer)))
5549 (setq buffer-backed-up nil))
5550 ;; Effectively copy the after-revert-hook status,
5551 ;; since after-find-file will clobber it.
5552 (let ((global-hook (default-value 'after-revert-hook))
5553 (local-hook (when (local-variable-p 'after-revert-hook)
5554 after-revert-hook))
5555 (inhibit-read-only t))
5556 ;; FIXME: Throw away undo-log when preserve-modes is nil?
5557 (funcall
5558 (or revert-buffer-insert-file-contents-function
5559 #'revert-buffer-insert-file-contents--default-function)
5560 file-name auto-save-p)
5561 ;; Recompute the truename in case changes in symlinks
5562 ;; have changed the truename.
5563 (setq buffer-file-truename
5564 (abbreviate-file-name (file-truename buffer-file-name)))
5565 (after-find-file nil nil t nil revert-buffer-preserve-modes)
5566 ;; Run after-revert-hook as it was before we reverted.
5567 (setq-default revert-buffer-internal-hook global-hook)
5568 (if local-hook
5569 (set (make-local-variable 'revert-buffer-internal-hook)
5570 local-hook)
5571 (kill-local-variable 'revert-buffer-internal-hook))
5572 (run-hooks 'revert-buffer-internal-hook))
5573 t)))))
5575 (defun revert-buffer-insert-file-contents--default-function (file-name auto-save-p)
5576 "Default function for `revert-buffer-insert-file-contents-function'.
5577 The function `revert-buffer--default' calls this.
5578 FILE-NAME is the name of the file. AUTO-SAVE-P is non-nil if this is
5579 an auto-save file."
5580 (cond
5581 ((not (file-exists-p file-name))
5582 (error (if buffer-file-number
5583 "File %s no longer exists!"
5584 "Cannot revert nonexistent file %s")
5585 file-name))
5586 ((not (file-readable-p file-name))
5587 (error (if buffer-file-number
5588 "File %s no longer readable!"
5589 "Cannot revert unreadable file %s")
5590 file-name))
5592 ;; Bind buffer-file-name to nil
5593 ;; so that we don't try to lock the file.
5594 (let ((buffer-file-name nil))
5595 (or auto-save-p
5596 (unlock-buffer)))
5597 (widen)
5598 (let ((coding-system-for-read
5599 ;; Auto-saved file should be read by Emacs's
5600 ;; internal coding.
5601 (if auto-save-p 'auto-save-coding
5602 (or coding-system-for-read
5603 (and
5604 buffer-file-coding-system-explicit
5605 (car buffer-file-coding-system-explicit))))))
5606 (if (and (not enable-multibyte-characters)
5607 coding-system-for-read
5608 (not (memq (coding-system-base
5609 coding-system-for-read)
5610 '(no-conversion raw-text))))
5611 ;; As a coding system suitable for multibyte
5612 ;; buffer is specified, make the current
5613 ;; buffer multibyte.
5614 (set-buffer-multibyte t))
5616 ;; This force after-insert-file-set-coding
5617 ;; (called from insert-file-contents) to set
5618 ;; buffer-file-coding-system to a proper value.
5619 (kill-local-variable 'buffer-file-coding-system)
5621 ;; Note that this preserves point in an intelligent way.
5622 (if revert-buffer-preserve-modes
5623 (let ((buffer-file-format buffer-file-format))
5624 (insert-file-contents file-name (not auto-save-p)
5625 nil nil t))
5626 (insert-file-contents file-name (not auto-save-p)
5627 nil nil t))))))
5629 (defun recover-this-file ()
5630 "Recover the visited file--get contents from its last auto-save file."
5631 (interactive)
5632 (recover-file buffer-file-name))
5634 (defun recover-file (file)
5635 "Visit file FILE, but get contents from its last auto-save file."
5636 ;; Actually putting the file name in the minibuffer should be used
5637 ;; only rarely.
5638 ;; Not just because users often use the default.
5639 (interactive "FRecover file: ")
5640 (setq file (expand-file-name file))
5641 (if (auto-save-file-name-p (file-name-nondirectory file))
5642 (error "%s is an auto-save file" (abbreviate-file-name file)))
5643 (let ((file-name (let ((buffer-file-name file))
5644 (make-auto-save-file-name))))
5645 (cond ((if (file-exists-p file)
5646 (not (file-newer-than-file-p file-name file))
5647 (not (file-exists-p file-name)))
5648 (error "Auto-save file %s not current"
5649 (abbreviate-file-name file-name)))
5650 ((with-temp-buffer-window
5651 "*Directory*" nil
5652 #'(lambda (window _value)
5653 (with-selected-window window
5654 (unwind-protect
5655 (yes-or-no-p (format "Recover auto save file %s? " file-name))
5656 (when (window-live-p window)
5657 (quit-restore-window window 'kill)))))
5658 (with-current-buffer standard-output
5659 (let ((switches dired-listing-switches))
5660 (if (file-symlink-p file)
5661 (setq switches (concat switches " -L")))
5662 ;; Use insert-directory-safely, not insert-directory,
5663 ;; because these files might not exist. In particular,
5664 ;; FILE might not exist if the auto-save file was for
5665 ;; a buffer that didn't visit a file, such as "*mail*".
5666 ;; The code in v20.x called `ls' directly, so we need
5667 ;; to emulate what `ls' did in that case.
5668 (insert-directory-safely file switches)
5669 (insert-directory-safely file-name switches))))
5670 (switch-to-buffer (find-file-noselect file t))
5671 (let ((inhibit-read-only t)
5672 ;; Keep the current buffer-file-coding-system.
5673 (coding-system buffer-file-coding-system)
5674 ;; Auto-saved file should be read with special coding.
5675 (coding-system-for-read 'auto-save-coding))
5676 (erase-buffer)
5677 (insert-file-contents file-name nil)
5678 (set-buffer-file-coding-system coding-system))
5679 (after-find-file nil nil t))
5680 (t (user-error "Recover-file canceled")))))
5682 (defun recover-session ()
5683 "Recover auto save files from a previous Emacs session.
5684 This command first displays a Dired buffer showing you the
5685 previous sessions that you could recover from.
5686 To choose one, move point to the proper line and then type C-c C-c.
5687 Then you'll be asked about a number of files to recover."
5688 (interactive)
5689 (if (null auto-save-list-file-prefix)
5690 (error "You set `auto-save-list-file-prefix' to disable making session files"))
5691 (let ((dir (file-name-directory auto-save-list-file-prefix)))
5692 (unless (file-directory-p dir)
5693 (make-directory dir t))
5694 (unless (directory-files dir nil
5695 (concat "\\`" (regexp-quote
5696 (file-name-nondirectory
5697 auto-save-list-file-prefix)))
5699 (error "No previous sessions to recover")))
5700 (let ((ls-lisp-support-shell-wildcards t))
5701 (dired (concat auto-save-list-file-prefix "*")
5702 (concat dired-listing-switches " -t")))
5703 (use-local-map (nconc (make-sparse-keymap) (current-local-map)))
5704 (define-key (current-local-map) "\C-c\C-c" 'recover-session-finish)
5705 (save-excursion
5706 (goto-char (point-min))
5707 (or (looking-at " Move to the session you want to recover,")
5708 (let ((inhibit-read-only t))
5709 ;; Each line starts with a space
5710 ;; so that Font Lock mode won't highlight the first character.
5711 (insert " To recover a session, move to it and type C-c C-c.\n"
5712 (substitute-command-keys
5713 " To delete a session file, type \
5714 \\[dired-flag-file-deletion] on its line to flag
5715 the file for deletion, then \\[dired-do-flagged-delete] to \
5716 delete flagged files.\n\n"))))))
5718 (defun recover-session-finish ()
5719 "Choose one saved session to recover auto-save files from.
5720 This command is used in the special Dired buffer created by
5721 \\[recover-session]."
5722 (interactive)
5723 ;; Get the name of the session file to recover from.
5724 (let ((file (dired-get-filename))
5725 files
5726 (buffer (get-buffer-create " *recover*")))
5727 (dired-unmark 1)
5728 (dired-do-flagged-delete t)
5729 (unwind-protect
5730 (with-current-buffer buffer
5731 ;; Read in the auto-save-list file.
5732 (erase-buffer)
5733 (insert-file-contents file)
5734 ;; Loop thru the text of that file
5735 ;; and get out the names of the files to recover.
5736 (while (not (eobp))
5737 (let (thisfile autofile)
5738 (if (eolp)
5739 ;; This is a pair of lines for a non-file-visiting buffer.
5740 ;; Get the auto-save file name and manufacture
5741 ;; a "visited file name" from that.
5742 (progn
5743 (forward-line 1)
5744 ;; If there is no auto-save file name, the
5745 ;; auto-save-list file is probably corrupted.
5746 (unless (eolp)
5747 (setq autofile
5748 (buffer-substring-no-properties
5749 (point)
5750 (line-end-position)))
5751 (setq thisfile
5752 (expand-file-name
5753 (substring
5754 (file-name-nondirectory autofile)
5755 1 -1)
5756 (file-name-directory autofile))))
5757 (forward-line 1))
5758 ;; This pair of lines is a file-visiting
5759 ;; buffer. Use the visited file name.
5760 (progn
5761 (setq thisfile
5762 (buffer-substring-no-properties
5763 (point) (progn (end-of-line) (point))))
5764 (forward-line 1)
5765 (setq autofile
5766 (buffer-substring-no-properties
5767 (point) (progn (end-of-line) (point))))
5768 (forward-line 1)))
5769 ;; Ignore a file if its auto-save file does not exist now.
5770 (if (and autofile (file-exists-p autofile))
5771 (setq files (cons thisfile files)))))
5772 (setq files (nreverse files))
5773 ;; The file contains a pair of line for each auto-saved buffer.
5774 ;; The first line of the pair contains the visited file name
5775 ;; or is empty if the buffer was not visiting a file.
5776 ;; The second line is the auto-save file name.
5777 (if files
5778 (map-y-or-n-p "Recover %s? "
5779 (lambda (file)
5780 (condition-case nil
5781 (save-excursion (recover-file file))
5782 (error
5783 "Failed to recover `%s'" file)))
5784 files
5785 '("file" "files" "recover"))
5786 (message "No files can be recovered from this session now")))
5787 (kill-buffer buffer))))
5789 (defun kill-buffer-ask (buffer)
5790 "Kill BUFFER if confirmed."
5791 (when (yes-or-no-p (format "Buffer %s %s. Kill? "
5792 (buffer-name buffer)
5793 (if (buffer-modified-p buffer)
5794 "HAS BEEN EDITED" "is unmodified")))
5795 (kill-buffer buffer)))
5797 (defun kill-some-buffers (&optional list)
5798 "Kill some buffers. Asks the user whether to kill each one of them.
5799 Non-interactively, if optional argument LIST is non-nil, it
5800 specifies the list of buffers to kill, asking for approval for each one."
5801 (interactive)
5802 (if (null list)
5803 (setq list (buffer-list)))
5804 (while list
5805 (let* ((buffer (car list))
5806 (name (buffer-name buffer)))
5807 (and name ; Can be nil for an indirect buffer
5808 ; if we killed the base buffer.
5809 (not (string-equal name ""))
5810 (/= (aref name 0) ?\s)
5811 (kill-buffer-ask buffer)))
5812 (setq list (cdr list))))
5814 (defun kill-matching-buffers (regexp &optional internal-too)
5815 "Kill buffers whose name matches the specified REGEXP.
5816 The optional second argument indicates whether to kill internal buffers too."
5817 (interactive "sKill buffers matching this regular expression: \nP")
5818 (dolist (buffer (buffer-list))
5819 (let ((name (buffer-name buffer)))
5820 (when (and name (not (string-equal name ""))
5821 (or internal-too (/= (aref name 0) ?\s))
5822 (string-match regexp name))
5823 (kill-buffer-ask buffer)))))
5826 (defun rename-auto-save-file ()
5827 "Adjust current buffer's auto save file name for current conditions.
5828 Also rename any existing auto save file, if it was made in this session."
5829 (let ((osave buffer-auto-save-file-name))
5830 (setq buffer-auto-save-file-name
5831 (make-auto-save-file-name))
5832 (if (and osave buffer-auto-save-file-name
5833 (not (string= buffer-auto-save-file-name buffer-file-name))
5834 (not (string= buffer-auto-save-file-name osave))
5835 (file-exists-p osave)
5836 (recent-auto-save-p))
5837 (rename-file osave buffer-auto-save-file-name t))))
5839 (defun make-auto-save-file-name ()
5840 "Return file name to use for auto-saves of current buffer.
5841 Does not consider `auto-save-visited-file-name' as that variable is checked
5842 before calling this function. You can redefine this for customization.
5843 See also `auto-save-file-name-p'."
5844 (if buffer-file-name
5845 (let ((handler (find-file-name-handler buffer-file-name
5846 'make-auto-save-file-name)))
5847 (if handler
5848 (funcall handler 'make-auto-save-file-name)
5849 (let ((list auto-save-file-name-transforms)
5850 (filename buffer-file-name)
5851 result uniq)
5852 ;; Apply user-specified translations
5853 ;; to the file name.
5854 (while (and list (not result))
5855 (if (string-match (car (car list)) filename)
5856 (setq result (replace-match (cadr (car list)) t nil
5857 filename)
5858 uniq (car (cddr (car list)))))
5859 (setq list (cdr list)))
5860 (if result
5861 (if uniq
5862 (setq filename (concat
5863 (file-name-directory result)
5864 (subst-char-in-string
5865 ?/ ?!
5866 (replace-regexp-in-string "!" "!!"
5867 filename))))
5868 (setq filename result)))
5869 (setq result
5870 (if (and (eq system-type 'ms-dos)
5871 (not (msdos-long-file-names)))
5872 ;; We truncate the file name to DOS 8+3 limits
5873 ;; before doing anything else, because the regexp
5874 ;; passed to string-match below cannot handle
5875 ;; extensions longer than 3 characters, multiple
5876 ;; dots, and other atrocities.
5877 (let ((fn (dos-8+3-filename
5878 (file-name-nondirectory buffer-file-name))))
5879 (string-match
5880 "\\`\\([^.]+\\)\\(\\.\\(..?\\)?.?\\|\\)\\'"
5882 (concat (file-name-directory buffer-file-name)
5883 "#" (match-string 1 fn)
5884 "." (match-string 3 fn) "#"))
5885 (concat (file-name-directory filename)
5887 (file-name-nondirectory filename)
5888 "#")))
5889 ;; Make sure auto-save file names don't contain characters
5890 ;; invalid for the underlying filesystem.
5891 (if (and (memq system-type '(ms-dos windows-nt cygwin))
5892 ;; Don't modify remote (ange-ftp) filenames
5893 (not (string-match "^/\\w+@[-A-Za-z0-9._]+:" result)))
5894 (convert-standard-filename result)
5895 result))))
5897 ;; Deal with buffers that don't have any associated files. (Mail
5898 ;; mode tends to create a good number of these.)
5900 (let ((buffer-name (buffer-name))
5901 (limit 0)
5902 file-name)
5903 ;; Restrict the characters used in the file name to those which
5904 ;; are known to be safe on all filesystems, url-encoding the
5905 ;; rest.
5906 ;; We do this on all platforms, because even if we are not
5907 ;; running on DOS/Windows, the current directory may be on a
5908 ;; mounted VFAT filesystem, such as a USB memory stick.
5909 (while (string-match "[^A-Za-z0-9-_.~#+]" buffer-name limit)
5910 (let* ((character (aref buffer-name (match-beginning 0)))
5911 (replacement
5912 ;; For multibyte characters, this will produce more than
5913 ;; 2 hex digits, so is not true URL encoding.
5914 (format "%%%02X" character)))
5915 (setq buffer-name (replace-match replacement t t buffer-name))
5916 (setq limit (1+ (match-end 0)))))
5917 ;; Generate the file name.
5918 (setq file-name
5919 (make-temp-file
5920 (let ((fname
5921 (expand-file-name
5922 (format "#%s#" buffer-name)
5923 ;; Try a few alternative directories, to get one we can
5924 ;; write it.
5925 (cond
5926 ((file-writable-p default-directory) default-directory)
5927 ((file-writable-p "/var/tmp/") "/var/tmp/")
5928 ("~/")))))
5929 (if (and (memq system-type '(ms-dos windows-nt cygwin))
5930 ;; Don't modify remote (ange-ftp) filenames
5931 (not (string-match "^/\\w+@[-A-Za-z0-9._]+:" fname)))
5932 ;; The call to convert-standard-filename is in case
5933 ;; buffer-name includes characters not allowed by the
5934 ;; DOS/Windows filesystems. make-temp-file writes to the
5935 ;; file it creates, so we must fix the file name _before_
5936 ;; make-temp-file is called.
5937 (convert-standard-filename fname)
5938 fname))
5939 nil "#"))
5940 ;; make-temp-file creates the file,
5941 ;; but we don't want it to exist until we do an auto-save.
5942 (condition-case ()
5943 (delete-file file-name)
5944 (file-error nil))
5945 file-name)))
5947 (defun auto-save-file-name-p (filename)
5948 "Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'.
5949 FILENAME should lack slashes. You can redefine this for customization."
5950 (string-match "\\`#.*#\\'" filename))
5952 (defun wildcard-to-regexp (wildcard)
5953 "Given a shell file name pattern WILDCARD, return an equivalent regexp.
5954 The generated regexp will match a filename only if the filename
5955 matches that wildcard according to shell rules. Only wildcards known
5956 by `sh' are supported."
5957 (let* ((i (string-match "[[.*+\\^$?]" wildcard))
5958 ;; Copy the initial run of non-special characters.
5959 (result (substring wildcard 0 i))
5960 (len (length wildcard)))
5961 ;; If no special characters, we're almost done.
5962 (if i
5963 (while (< i len)
5964 (let ((ch (aref wildcard i))
5966 (setq
5967 result
5968 (concat result
5969 (cond
5970 ((and (eq ch ?\[)
5971 (< (1+ i) len)
5972 (eq (aref wildcard (1+ i)) ?\]))
5973 "\\[")
5974 ((eq ch ?\[) ; [...] maps to regexp char class
5975 (progn
5976 (setq i (1+ i))
5977 (concat
5978 (cond
5979 ((eq (aref wildcard i) ?!) ; [!...] -> [^...]
5980 (progn
5981 (setq i (1+ i))
5982 (if (eq (aref wildcard i) ?\])
5983 (progn
5984 (setq i (1+ i))
5985 "[^]")
5986 "[^")))
5987 ((eq (aref wildcard i) ?^)
5988 ;; Found "[^". Insert a `\0' character
5989 ;; (which cannot happen in a filename)
5990 ;; into the character class, so that `^'
5991 ;; is not the first character after `[',
5992 ;; and thus non-special in a regexp.
5993 (progn
5994 (setq i (1+ i))
5995 "[\000^"))
5996 ((eq (aref wildcard i) ?\])
5997 ;; I don't think `]' can appear in a
5998 ;; character class in a wildcard, but
5999 ;; let's be general here.
6000 (progn
6001 (setq i (1+ i))
6002 "[]"))
6003 (t "["))
6004 (prog1 ; copy everything upto next `]'.
6005 (substring wildcard
6007 (setq j (string-match
6008 "]" wildcard i)))
6009 (setq i (if j (1- j) (1- len)))))))
6010 ((eq ch ?.) "\\.")
6011 ((eq ch ?*) "[^\000]*")
6012 ((eq ch ?+) "\\+")
6013 ((eq ch ?^) "\\^")
6014 ((eq ch ?$) "\\$")
6015 ((eq ch ?\\) "\\\\") ; probably cannot happen...
6016 ((eq ch ??) "[^\000]")
6017 (t (char-to-string ch)))))
6018 (setq i (1+ i)))))
6019 ;; Shell wildcards should match the entire filename,
6020 ;; not its part. Make the regexp say so.
6021 (concat "\\`" result "\\'")))
6023 (defcustom list-directory-brief-switches
6024 (purecopy "-CF")
6025 "Switches for `list-directory' to pass to `ls' for brief listing."
6026 :type 'string
6027 :group 'dired)
6029 (defcustom list-directory-verbose-switches
6030 (purecopy "-l")
6031 "Switches for `list-directory' to pass to `ls' for verbose listing."
6032 :type 'string
6033 :group 'dired)
6035 (defun file-expand-wildcards (pattern &optional full)
6036 "Expand wildcard pattern PATTERN.
6037 This returns a list of file names which match the pattern.
6039 If PATTERN is written as an absolute file name,
6040 the values are absolute also.
6042 If PATTERN is written as a relative file name, it is interpreted
6043 relative to the current default directory, `default-directory'.
6044 The file names returned are normally also relative to the current
6045 default directory. However, if FULL is non-nil, they are absolute."
6046 (save-match-data
6047 (let* ((nondir (file-name-nondirectory pattern))
6048 (dirpart (file-name-directory pattern))
6049 ;; A list of all dirs that DIRPART specifies.
6050 ;; This can be more than one dir
6051 ;; if DIRPART contains wildcards.
6052 (dirs (if (and dirpart
6053 (string-match "[[*?]"
6054 (or (file-remote-p dirpart 'localname)
6055 dirpart)))
6056 (mapcar 'file-name-as-directory
6057 (file-expand-wildcards (directory-file-name dirpart)))
6058 (list dirpart)))
6059 contents)
6060 (dolist (dir dirs)
6061 (when (or (null dir) ; Possible if DIRPART is not wild.
6062 (file-accessible-directory-p dir))
6063 (let ((this-dir-contents
6064 ;; Filter out "." and ".."
6065 (delq nil
6066 (mapcar #'(lambda (name)
6067 (unless (string-match "\\`\\.\\.?\\'"
6068 (file-name-nondirectory name))
6069 name))
6070 (directory-files (or dir ".") full
6071 (wildcard-to-regexp nondir))))))
6072 (setq contents
6073 (nconc
6074 (if (and dir (not full))
6075 (mapcar #'(lambda (name) (concat dir name))
6076 this-dir-contents)
6077 this-dir-contents)
6078 contents)))))
6079 contents)))
6081 ;; Let Tramp know that `file-expand-wildcards' does not need an advice.
6082 (provide 'files '(remote-wildcards))
6084 (defun list-directory (dirname &optional verbose)
6085 "Display a list of files in or matching DIRNAME, a la `ls'.
6086 DIRNAME is globbed by the shell if necessary.
6087 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
6088 Actions controlled by variables `list-directory-brief-switches'
6089 and `list-directory-verbose-switches'."
6090 (interactive (let ((pfx current-prefix-arg))
6091 (list (read-directory-name (if pfx "List directory (verbose): "
6092 "List directory (brief): ")
6093 nil default-directory nil)
6094 pfx)))
6095 (let ((switches (if verbose list-directory-verbose-switches
6096 list-directory-brief-switches))
6097 buffer)
6098 (or dirname (setq dirname default-directory))
6099 (setq dirname (expand-file-name dirname))
6100 (with-output-to-temp-buffer "*Directory*"
6101 (setq buffer standard-output)
6102 (buffer-disable-undo standard-output)
6103 (princ "Directory ")
6104 (princ dirname)
6105 (terpri)
6106 (with-current-buffer "*Directory*"
6107 (let ((wildcard (not (file-directory-p dirname))))
6108 (insert-directory dirname switches wildcard (not wildcard)))))
6109 ;; Finishing with-output-to-temp-buffer seems to clobber default-directory.
6110 (with-current-buffer buffer
6111 (setq default-directory
6112 (if (file-directory-p dirname)
6113 (file-name-as-directory dirname)
6114 (file-name-directory dirname))))))
6116 (defun shell-quote-wildcard-pattern (pattern)
6117 "Quote characters special to the shell in PATTERN, leave wildcards alone.
6119 PATTERN is assumed to represent a file-name wildcard suitable for the
6120 underlying filesystem. For Unix and GNU/Linux, each character from the
6121 set [ \\t\\n;<>&|()'\"#$] is quoted with a backslash; for DOS/Windows, all
6122 the parts of the pattern which don't include wildcard characters are
6123 quoted with double quotes.
6125 This function leaves alone existing quote characters (\\ on Unix and \"
6126 on Windows), so PATTERN can use them to quote wildcard characters that
6127 need to be passed verbatim to shell commands."
6128 (save-match-data
6129 (cond
6130 ((memq system-type '(ms-dos windows-nt cygwin))
6131 ;; DOS/Windows don't allow `"' in file names. So if the
6132 ;; argument has quotes, we can safely assume it is already
6133 ;; quoted by the caller.
6134 (if (or (string-match "[\"]" pattern)
6135 ;; We quote [&()#$'] in case their shell is a port of a
6136 ;; Unixy shell. We quote [,=+] because stock DOS and
6137 ;; Windows shells require that in some cases, such as
6138 ;; passing arguments to batch files that use positional
6139 ;; arguments like %1.
6140 (not (string-match "[ \t;&()#$',=+]" pattern)))
6141 pattern
6142 (let ((result "\"")
6143 (beg 0)
6144 end)
6145 (while (string-match "[*?]+" pattern beg)
6146 (setq end (match-beginning 0)
6147 result (concat result (substring pattern beg end)
6148 "\""
6149 (substring pattern end (match-end 0))
6150 "\"")
6151 beg (match-end 0)))
6152 (concat result (substring pattern beg) "\""))))
6154 (let ((beg 0))
6155 (while (string-match "[ \t\n;<>&|()'\"#$]" pattern beg)
6156 (setq pattern
6157 (concat (substring pattern 0 (match-beginning 0))
6158 "\\"
6159 (substring pattern (match-beginning 0)))
6160 beg (1+ (match-end 0)))))
6161 pattern))))
6164 (defvar insert-directory-program (purecopy "ls")
6165 "Absolute or relative name of the `ls' program used by `insert-directory'.")
6167 (defcustom directory-free-space-program (purecopy "df")
6168 "Program to get the amount of free space on a file system.
6169 We assume the output has the format of `df'.
6170 The value of this variable must be just a command name or file name;
6171 if you want to specify options, use `directory-free-space-args'.
6173 A value of nil disables this feature.
6175 If the function `file-system-info' is defined, it is always used in
6176 preference to the program given by this variable."
6177 :type '(choice (string :tag "Program") (const :tag "None" nil))
6178 :group 'dired)
6180 (defcustom directory-free-space-args
6181 (purecopy (if (eq system-type 'darwin) "-k" "-Pk"))
6182 "Options to use when running `directory-free-space-program'."
6183 :type 'string
6184 :group 'dired)
6186 (defun get-free-disk-space (dir)
6187 "Return the amount of free space on directory DIR's file system.
6188 The return value is a string describing the amount of free
6189 space (normally, the number of free 1KB blocks).
6191 This function calls `file-system-info' if it is available, or
6192 invokes the program specified by `directory-free-space-program'
6193 and `directory-free-space-args'. If the system call or program
6194 is unsuccessful, or if DIR is a remote directory, this function
6195 returns nil."
6196 (unless (file-remote-p dir)
6197 ;; Try to find the number of free blocks. Non-Posix systems don't
6198 ;; always have df, but might have an equivalent system call.
6199 (if (fboundp 'file-system-info)
6200 (let ((fsinfo (file-system-info dir)))
6201 (if fsinfo
6202 (format "%.0f" (/ (nth 2 fsinfo) 1024))))
6203 (setq dir (expand-file-name dir))
6204 (save-match-data
6205 (with-temp-buffer
6206 (when (and directory-free-space-program
6207 ;; Avoid failure if the default directory does
6208 ;; not exist (Bug#2631, Bug#3911).
6209 (let ((default-directory
6210 (locate-dominating-file dir 'file-directory-p)))
6211 (eq (process-file directory-free-space-program
6212 nil t nil
6213 directory-free-space-args
6214 (file-relative-name dir))
6215 0)))
6216 ;; Assume that the "available" column is before the
6217 ;; "capacity" column. Find the "%" and scan backward.
6218 (goto-char (point-min))
6219 (forward-line 1)
6220 (when (re-search-forward
6221 "[[:space:]]+[^[:space:]]+%[^%]*$"
6222 (line-end-position) t)
6223 (goto-char (match-beginning 0))
6224 (let ((endpt (point)))
6225 (skip-chars-backward "^[:space:]")
6226 (buffer-substring-no-properties (point) endpt)))))))))
6228 ;; The following expression replaces `dired-move-to-filename-regexp'.
6229 (defvar directory-listing-before-filename-regexp
6230 (let* ((l "\\([A-Za-z]\\|[^\0-\177]\\)")
6231 (l-or-quote "\\([A-Za-z']\\|[^\0-\177]\\)")
6232 ;; In some locales, month abbreviations are as short as 2 letters,
6233 ;; and they can be followed by ".".
6234 ;; In Breton, a month name can include a quote character.
6235 (month (concat l-or-quote l-or-quote "+\\.?"))
6236 (s " ")
6237 (yyyy "[0-9][0-9][0-9][0-9]")
6238 (dd "[ 0-3][0-9]")
6239 (HH:MM "[ 0-2][0-9][:.][0-5][0-9]")
6240 (seconds "[0-6][0-9]\\([.,][0-9]+\\)?")
6241 (zone "[-+][0-2][0-9][0-5][0-9]")
6242 (iso-mm-dd "[01][0-9]-[0-3][0-9]")
6243 (iso-time (concat HH:MM "\\(:" seconds "\\( ?" zone "\\)?\\)?"))
6244 (iso (concat "\\(\\(" yyyy "-\\)?" iso-mm-dd "[ T]" iso-time
6245 "\\|" yyyy "-" iso-mm-dd "\\)"))
6246 (western (concat "\\(" month s "+" dd "\\|" dd "\\.?" s month "\\)"
6247 s "+"
6248 "\\(" HH:MM "\\|" yyyy "\\)"))
6249 (western-comma (concat month s "+" dd "," s "+" yyyy))
6250 ;; Japanese MS-Windows ls-lisp has one-digit months, and
6251 ;; omits the Kanji characters after month and day-of-month.
6252 ;; On Mac OS X 10.3, the date format in East Asian locales is
6253 ;; day-of-month digits followed by month digits.
6254 (mm "[ 0-1]?[0-9]")
6255 (east-asian
6256 (concat "\\(" mm l "?" s dd l "?" s "+"
6257 "\\|" dd s mm s "+" "\\)"
6258 "\\(" HH:MM "\\|" yyyy l "?" "\\)")))
6259 ;; The "[0-9]" below requires the previous column to end in a digit.
6260 ;; This avoids recognizing `1 may 1997' as a date in the line:
6261 ;; -r--r--r-- 1 may 1997 1168 Oct 19 16:49 README
6263 ;; The "[BkKMGTPEZY]?" below supports "ls -alh" output.
6265 ;; For non-iso date formats, we add the ".*" in order to find
6266 ;; the last possible match. This avoids recognizing
6267 ;; `jservice 10 1024' as a date in the line:
6268 ;; drwxr-xr-x 3 jservice 10 1024 Jul 2 1997 esg-host
6270 ;; vc dired listings provide the state or blanks between file
6271 ;; permissions and date. The state is always surrounded by
6272 ;; parentheses:
6273 ;; -rw-r--r-- (modified) 2005-10-22 21:25 files.el
6274 ;; This is not supported yet.
6275 (purecopy (concat "\\([0-9][BkKMGTPEZY]? " iso
6276 "\\|.*[0-9][BkKMGTPEZY]? "
6277 "\\(" western "\\|" western-comma "\\|" east-asian "\\)"
6278 "\\) +")))
6279 "Regular expression to match up to the file name in a directory listing.
6280 The default value is designed to recognize dates and times
6281 regardless of the language.")
6283 (defvar insert-directory-ls-version 'unknown)
6285 ;; insert-directory
6286 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and
6287 ;; FULL-DIRECTORY-P is nil.
6288 ;; The single line of output must display FILE's name as it was
6289 ;; given, namely, an absolute path name.
6290 ;; - must insert exactly one line for each file if WILDCARD or
6291 ;; FULL-DIRECTORY-P is t, plus one optional "total" line
6292 ;; before the file lines, plus optional text after the file lines.
6293 ;; Lines are delimited by "\n", so filenames containing "\n" are not
6294 ;; allowed.
6295 ;; File lines should display the basename.
6296 ;; - must be consistent with
6297 ;; - functions dired-move-to-filename, (these two define what a file line is)
6298 ;; dired-move-to-end-of-filename,
6299 ;; dired-between-files, (shortcut for (not (dired-move-to-filename)))
6300 ;; dired-insert-headerline
6301 ;; dired-after-subdir-garbage (defines what a "total" line is)
6302 ;; - variable dired-subdir-regexp
6303 ;; - may be passed "--dired" as the first argument in SWITCHES.
6304 ;; Filename handlers might have to remove this switch if their
6305 ;; "ls" command does not support it.
6306 (defun insert-directory (file switches &optional wildcard full-directory-p)
6307 "Insert directory listing for FILE, formatted according to SWITCHES.
6308 Leaves point after the inserted text.
6309 SWITCHES may be a string of options, or a list of strings
6310 representing individual options.
6311 Optional third arg WILDCARD means treat FILE as shell wildcard.
6312 Optional fourth arg FULL-DIRECTORY-P means file is a directory and
6313 switches do not contain `d', so that a full listing is expected.
6315 This works by running a directory listing program
6316 whose name is in the variable `insert-directory-program'.
6317 If WILDCARD, it also runs the shell specified by `shell-file-name'.
6319 When SWITCHES contains the long `--dired' option, this function
6320 treats it specially, for the sake of dired. However, the
6321 normally equivalent short `-D' option is just passed on to
6322 `insert-directory-program', as any other option."
6323 ;; We need the directory in order to find the right handler.
6324 (let ((handler (find-file-name-handler (expand-file-name file)
6325 'insert-directory)))
6326 (if handler
6327 (funcall handler 'insert-directory file switches
6328 wildcard full-directory-p)
6329 (let (result (beg (point)))
6331 ;; Read the actual directory using `insert-directory-program'.
6332 ;; RESULT gets the status code.
6333 (let* (;; We at first read by no-conversion, then after
6334 ;; putting text property `dired-filename, decode one
6335 ;; bunch by one to preserve that property.
6336 (coding-system-for-read 'no-conversion)
6337 ;; This is to control encoding the arguments in call-process.
6338 (coding-system-for-write
6339 (and enable-multibyte-characters
6340 (or file-name-coding-system
6341 default-file-name-coding-system))))
6342 (setq result
6343 (if wildcard
6344 ;; Run ls in the directory part of the file pattern
6345 ;; using the last component as argument.
6346 (let ((default-directory
6347 (if (file-name-absolute-p file)
6348 (file-name-directory file)
6349 (file-name-directory (expand-file-name file))))
6350 (pattern (file-name-nondirectory file)))
6351 ;; NB since switches is passed to the shell, be
6352 ;; careful of malicious values, eg "-l;reboot".
6353 ;; See eg dired-safe-switches-p.
6354 (call-process
6355 shell-file-name nil t nil
6356 "-c"
6357 (concat (if (memq system-type '(ms-dos windows-nt))
6359 "\\") ; Disregard Unix shell aliases!
6360 insert-directory-program
6361 " -d "
6362 (if (stringp switches)
6363 switches
6364 (mapconcat 'identity switches " "))
6365 " -- "
6366 ;; Quote some characters that have
6367 ;; special meanings in shells; but
6368 ;; don't quote the wildcards--we want
6369 ;; them to be special. We also
6370 ;; currently don't quote the quoting
6371 ;; characters in case people want to
6372 ;; use them explicitly to quote
6373 ;; wildcard characters.
6374 (shell-quote-wildcard-pattern pattern))))
6375 ;; SunOS 4.1.3, SVr4 and others need the "." to list the
6376 ;; directory if FILE is a symbolic link.
6377 (unless full-directory-p
6378 (setq switches
6379 (cond
6380 ((stringp switches) (concat switches " -d"))
6381 ((member "-d" switches) switches)
6382 (t (append switches '("-d"))))))
6383 (apply 'call-process
6384 insert-directory-program nil t nil
6385 (append
6386 (if (listp switches) switches
6387 (unless (equal switches "")
6388 ;; Split the switches at any spaces so we can
6389 ;; pass separate options as separate args.
6390 (split-string switches)))
6391 ;; Avoid lossage if FILE starts with `-'.
6392 '("--")
6393 (progn
6394 (if (string-match "\\`~" file)
6395 (setq file (expand-file-name file)))
6396 (list
6397 (if full-directory-p
6398 (concat (file-name-as-directory file) ".")
6399 file))))))))
6401 ;; If we got "//DIRED//" in the output, it means we got a real
6402 ;; directory listing, even if `ls' returned nonzero.
6403 ;; So ignore any errors.
6404 (when (if (stringp switches)
6405 (string-match "--dired\\>" switches)
6406 (member "--dired" switches))
6407 (save-excursion
6408 (forward-line -2)
6409 (when (looking-at "//SUBDIRED//")
6410 (forward-line -1))
6411 (if (looking-at "//DIRED//")
6412 (setq result 0))))
6414 (when (and (not (eq 0 result))
6415 (eq insert-directory-ls-version 'unknown))
6416 ;; The first time ls returns an error,
6417 ;; find the version numbers of ls,
6418 ;; and set insert-directory-ls-version
6419 ;; to > if it is more than 5.2.1, < if it is less, nil if it
6420 ;; is equal or if the info cannot be obtained.
6421 ;; (That can mean it isn't GNU ls.)
6422 (let ((version-out
6423 (with-temp-buffer
6424 (call-process "ls" nil t nil "--version")
6425 (buffer-string))))
6426 (if (string-match "ls (.*utils) \\([0-9.]*\\)$" version-out)
6427 (let* ((version (match-string 1 version-out))
6428 (split (split-string version "[.]"))
6429 (numbers (mapcar 'string-to-number split))
6430 (min '(5 2 1))
6431 comparison)
6432 (while (and (not comparison) (or numbers min))
6433 (cond ((null min)
6434 (setq comparison '>))
6435 ((null numbers)
6436 (setq comparison '<))
6437 ((> (car numbers) (car min))
6438 (setq comparison '>))
6439 ((< (car numbers) (car min))
6440 (setq comparison '<))
6442 (setq numbers (cdr numbers)
6443 min (cdr min)))))
6444 (setq insert-directory-ls-version (or comparison '=)))
6445 (setq insert-directory-ls-version nil))))
6447 ;; For GNU ls versions 5.2.2 and up, ignore minor errors.
6448 (when (and (eq 1 result) (eq insert-directory-ls-version '>))
6449 (setq result 0))
6451 ;; If `insert-directory-program' failed, signal an error.
6452 (unless (eq 0 result)
6453 ;; Delete the error message it may have output.
6454 (delete-region beg (point))
6455 ;; On non-Posix systems, we cannot open a directory, so
6456 ;; don't even try, because that will always result in
6457 ;; the ubiquitous "Access denied". Instead, show the
6458 ;; command line so the user can try to guess what went wrong.
6459 (if (and (file-directory-p file)
6460 (memq system-type '(ms-dos windows-nt)))
6461 (error
6462 "Reading directory: \"%s %s -- %s\" exited with status %s"
6463 insert-directory-program
6464 (if (listp switches) (concat switches) switches)
6465 file result)
6466 ;; Unix. Access the file to get a suitable error.
6467 (access-file file "Reading directory")
6468 (error "Listing directory failed but `access-file' worked")))
6470 (when (if (stringp switches)
6471 (string-match "--dired\\>" switches)
6472 (member "--dired" switches))
6473 ;; The following overshoots by one line for an empty
6474 ;; directory listed with "--dired", but without "-a"
6475 ;; switch, where the ls output contains a
6476 ;; "//DIRED-OPTIONS//" line, but no "//DIRED//" line.
6477 ;; We take care of that case later.
6478 (forward-line -2)
6479 (when (looking-at "//SUBDIRED//")
6480 (delete-region (point) (progn (forward-line 1) (point)))
6481 (forward-line -1))
6482 (if (looking-at "//DIRED//")
6483 (let ((end (line-end-position))
6484 (linebeg (point))
6485 error-lines)
6486 ;; Find all the lines that are error messages,
6487 ;; and record the bounds of each one.
6488 (goto-char beg)
6489 (while (< (point) linebeg)
6490 (or (eql (following-char) ?\s)
6491 (push (list (point) (line-end-position)) error-lines))
6492 (forward-line 1))
6493 (setq error-lines (nreverse error-lines))
6494 ;; Now read the numeric positions of file names.
6495 (goto-char linebeg)
6496 (forward-word 1)
6497 (forward-char 3)
6498 (while (< (point) end)
6499 (let ((start (insert-directory-adj-pos
6500 (+ beg (read (current-buffer)))
6501 error-lines))
6502 (end (insert-directory-adj-pos
6503 (+ beg (read (current-buffer)))
6504 error-lines)))
6505 (if (memq (char-after end) '(?\n ?\s))
6506 ;; End is followed by \n or by " -> ".
6507 (put-text-property start end 'dired-filename t)
6508 ;; It seems that we can't trust ls's output as to
6509 ;; byte positions of filenames.
6510 (put-text-property beg (point) 'dired-filename nil)
6511 (end-of-line))))
6512 (goto-char end)
6513 (beginning-of-line)
6514 (delete-region (point) (progn (forward-line 1) (point))))
6515 ;; Take care of the case where the ls output contains a
6516 ;; "//DIRED-OPTIONS//"-line, but no "//DIRED//"-line
6517 ;; and we went one line too far back (see above).
6518 (forward-line 1))
6519 (if (looking-at "//DIRED-OPTIONS//")
6520 (delete-region (point) (progn (forward-line 1) (point)))))
6522 ;; Now decode what read if necessary.
6523 (let ((coding (or coding-system-for-read
6524 file-name-coding-system
6525 default-file-name-coding-system
6526 'undecided))
6527 coding-no-eol
6528 val pos)
6529 (when (and enable-multibyte-characters
6530 (not (memq (coding-system-base coding)
6531 '(raw-text no-conversion))))
6532 ;; If no coding system is specified or detection is
6533 ;; requested, detect the coding.
6534 (if (eq (coding-system-base coding) 'undecided)
6535 (setq coding (detect-coding-region beg (point) t)))
6536 (if (not (eq (coding-system-base coding) 'undecided))
6537 (save-restriction
6538 (setq coding-no-eol
6539 (coding-system-change-eol-conversion coding 'unix))
6540 (narrow-to-region beg (point))
6541 (goto-char (point-min))
6542 (while (not (eobp))
6543 (setq pos (point)
6544 val (get-text-property (point) 'dired-filename))
6545 (goto-char (next-single-property-change
6546 (point) 'dired-filename nil (point-max)))
6547 ;; Force no eol conversion on a file name, so
6548 ;; that CR is preserved.
6549 (decode-coding-region pos (point)
6550 (if val coding-no-eol coding))
6551 (if val
6552 (put-text-property pos (point)
6553 'dired-filename t)))))))
6555 (if full-directory-p
6556 ;; Try to insert the amount of free space.
6557 (save-excursion
6558 (goto-char beg)
6559 ;; First find the line to put it on.
6560 (when (re-search-forward "^ *\\(total\\)" nil t)
6561 (let ((available (get-free-disk-space ".")))
6562 (when available
6563 ;; Replace "total" with "used", to avoid confusion.
6564 (replace-match "total used in directory" nil nil nil 1)
6565 (end-of-line)
6566 (insert " available " available))))))))))
6568 (defun insert-directory-adj-pos (pos error-lines)
6569 "Convert `ls --dired' file name position value POS to a buffer position.
6570 File name position values returned in ls --dired output
6571 count only stdout; they don't count the error messages sent to stderr.
6572 So this function converts to them to real buffer positions.
6573 ERROR-LINES is a list of buffer positions of error message lines,
6574 of the form (START END)."
6575 (while (and error-lines (< (caar error-lines) pos))
6576 (setq pos (+ pos (- (nth 1 (car error-lines)) (nth 0 (car error-lines)))))
6577 (pop error-lines))
6578 pos)
6580 (defun insert-directory-safely (file switches
6581 &optional wildcard full-directory-p)
6582 "Insert directory listing for FILE, formatted according to SWITCHES.
6584 Like `insert-directory', but if FILE does not exist, it inserts a
6585 message to that effect instead of signaling an error."
6586 (if (file-exists-p file)
6587 (insert-directory file switches wildcard full-directory-p)
6588 ;; Simulate the message printed by `ls'.
6589 (insert (format "%s: No such file or directory\n" file))))
6591 (defvar kill-emacs-query-functions nil
6592 "Functions to call with no arguments to query about killing Emacs.
6593 If any of these functions returns nil, killing Emacs is canceled.
6594 `save-buffers-kill-emacs' calls these functions, but `kill-emacs',
6595 the low level primitive, does not. See also `kill-emacs-hook'.")
6597 (defcustom confirm-kill-emacs nil
6598 "How to ask for confirmation when leaving Emacs.
6599 If nil, the default, don't ask at all. If the value is non-nil, it should
6600 be a predicate function; for example `yes-or-no-p'."
6601 :type '(choice (const :tag "Ask with yes-or-no-p" yes-or-no-p)
6602 (const :tag "Ask with y-or-n-p" y-or-n-p)
6603 (const :tag "Don't confirm" nil)
6604 (function :tag "Predicate function"))
6605 :group 'convenience
6606 :version "21.1")
6608 (defun save-buffers-kill-emacs (&optional arg)
6609 "Offer to save each buffer, then kill this Emacs process.
6610 With prefix ARG, silently save all file-visiting buffers without asking.
6611 If there are active processes where `process-query-on-exit-flag'
6612 returns non-nil, asks whether processes should be killed.
6613 Runs the members of `kill-emacs-query-functions' in turn and stops
6614 if any returns nil. If `confirm-kill-emacs' is non-nil, calls it."
6615 (interactive "P")
6616 (save-some-buffers arg t)
6617 (and (or (not (memq t (mapcar (function
6618 (lambda (buf) (and (buffer-file-name buf)
6619 (buffer-modified-p buf))))
6620 (buffer-list))))
6621 (yes-or-no-p "Modified buffers exist; exit anyway? "))
6622 (or (not (fboundp 'process-list))
6623 ;; process-list is not defined on MSDOS.
6624 (let ((processes (process-list))
6625 active)
6626 (while processes
6627 (and (memq (process-status (car processes)) '(run stop open listen))
6628 (process-query-on-exit-flag (car processes))
6629 (setq active t))
6630 (setq processes (cdr processes)))
6631 (or (not active)
6632 (with-current-buffer-window
6633 (get-buffer-create "*Process List*") nil
6634 #'(lambda (window _value)
6635 (with-selected-window window
6636 (unwind-protect
6637 (yes-or-no-p "Active processes exist; kill them and exit anyway? ")
6638 (when (window-live-p window)
6639 (quit-restore-window window 'kill)))))
6640 (list-processes t)))))
6641 ;; Query the user for other things, perhaps.
6642 (run-hook-with-args-until-failure 'kill-emacs-query-functions)
6643 (or (null confirm-kill-emacs)
6644 (funcall confirm-kill-emacs "Really exit Emacs? "))
6645 (kill-emacs)))
6647 (defun save-buffers-kill-terminal (&optional arg)
6648 "Offer to save each buffer, then kill the current connection.
6649 If the current frame has no client, kill Emacs itself.
6651 With prefix ARG, silently save all file-visiting buffers, then kill.
6653 If emacsclient was started with a list of filenames to edit, then
6654 only these files will be asked to be saved."
6655 (interactive "P")
6656 (if (frame-parameter nil 'client)
6657 (server-save-buffers-kill-terminal arg)
6658 (save-buffers-kill-emacs arg)))
6660 ;; We use /: as a prefix to "quote" a file name
6661 ;; so that magic file name handlers will not apply to it.
6663 (setq file-name-handler-alist
6664 (cons (cons (purecopy "\\`/:") 'file-name-non-special)
6665 file-name-handler-alist))
6667 ;; We depend on being the last handler on the list,
6668 ;; so that anything else which does need handling
6669 ;; has been handled already.
6670 ;; So it is safe for us to inhibit *all* magic file name handlers.
6672 (defun file-name-non-special (operation &rest arguments)
6673 (let ((file-name-handler-alist nil)
6674 (default-directory
6675 (if (eq operation 'insert-directory)
6676 (directory-file-name
6677 (expand-file-name
6678 (unhandled-file-name-directory default-directory)))
6679 default-directory))
6680 ;; Get a list of the indices of the args which are file names.
6681 (file-arg-indices
6682 (cdr (or (assq operation
6683 ;; The first six are special because they
6684 ;; return a file name. We want to include the /:
6685 ;; in the return value.
6686 ;; So just avoid stripping it in the first place.
6687 '((expand-file-name . nil)
6688 (file-name-directory . nil)
6689 (file-name-as-directory . nil)
6690 (directory-file-name . nil)
6691 (file-name-sans-versions . nil)
6692 (find-backup-file-name . nil)
6693 ;; `identity' means just return the first arg
6694 ;; not stripped of its quoting.
6695 (substitute-in-file-name identity)
6696 ;; `add' means add "/:" to the result.
6697 (file-truename add 0)
6698 (insert-file-contents insert-file-contents 0)
6699 ;; `unquote-then-quote' means set buffer-file-name
6700 ;; temporarily to unquoted filename.
6701 (verify-visited-file-modtime unquote-then-quote)
6702 ;; List the arguments which are filenames.
6703 (file-name-completion 1)
6704 (file-name-all-completions 1)
6705 (write-region 2 5)
6706 (rename-file 0 1)
6707 (copy-file 0 1)
6708 (make-symbolic-link 0 1)
6709 (add-name-to-file 0 1)))
6710 ;; For all other operations, treat the first argument only
6711 ;; as the file name.
6712 '(nil 0))))
6713 method
6714 ;; Copy ARGUMENTS so we can replace elements in it.
6715 (arguments (copy-sequence arguments)))
6716 (if (symbolp (car file-arg-indices))
6717 (setq method (pop file-arg-indices)))
6718 ;; Strip off the /: from the file names that have it.
6719 (save-match-data
6720 (while (consp file-arg-indices)
6721 (let ((pair (nthcdr (car file-arg-indices) arguments)))
6722 (and (car pair)
6723 (string-match "\\`/:" (car pair))
6724 (setcar pair
6725 (if (= (length (car pair)) 2)
6727 (substring (car pair) 2)))))
6728 (setq file-arg-indices (cdr file-arg-indices))))
6729 (pcase method
6730 (`identity (car arguments))
6731 (`add (concat "/:" (apply operation arguments)))
6732 (`insert-file-contents
6733 (let ((visit (nth 1 arguments)))
6734 (unwind-protect
6735 (apply operation arguments)
6736 (when (and visit buffer-file-name)
6737 (setq buffer-file-name (concat "/:" buffer-file-name))))))
6738 (`unquote-then-quote
6739 (let ((buffer-file-name (substring buffer-file-name 2)))
6740 (apply operation arguments)))
6742 (apply operation arguments)))))
6744 ;; Symbolic modes and read-file-modes.
6746 (defun file-modes-char-to-who (char)
6747 "Convert CHAR to a numeric bit-mask for extracting mode bits.
6748 CHAR is in [ugoa] and represents the category of users (Owner, Group,
6749 Others, or All) for whom to produce the mask.
6750 The bit-mask that is returned extracts from mode bits the access rights
6751 for the specified category of users."
6752 (cond ((= char ?u) #o4700)
6753 ((= char ?g) #o2070)
6754 ((= char ?o) #o1007)
6755 ((= char ?a) #o7777)
6756 (t (error "%c: bad `who' character" char))))
6758 (defun file-modes-char-to-right (char &optional from)
6759 "Convert CHAR to a numeric value of mode bits.
6760 CHAR is in [rwxXstugo] and represents symbolic access permissions.
6761 If CHAR is in [Xugo], the value is taken from FROM (or 0 if omitted)."
6762 (or from (setq from 0))
6763 (cond ((= char ?r) #o0444)
6764 ((= char ?w) #o0222)
6765 ((= char ?x) #o0111)
6766 ((= char ?s) #o1000)
6767 ((= char ?t) #o6000)
6768 ;; Rights relative to the previous file modes.
6769 ((= char ?X) (if (= (logand from #o111) 0) 0 #o0111))
6770 ((= char ?u) (let ((uright (logand #o4700 from)))
6771 (+ uright (/ uright #o10) (/ uright #o100))))
6772 ((= char ?g) (let ((gright (logand #o2070 from)))
6773 (+ gright (/ gright #o10) (* gright #o10))))
6774 ((= char ?o) (let ((oright (logand #o1007 from)))
6775 (+ oright (* oright #o10) (* oright #o100))))
6776 (t (error "%c: bad right character" char))))
6778 (defun file-modes-rights-to-number (rights who-mask &optional from)
6779 "Convert a symbolic mode string specification to an equivalent number.
6780 RIGHTS is the symbolic mode spec, it should match \"([+=-][rwxXstugo]*)+\".
6781 WHO-MASK is the bit-mask specifying the category of users to which to
6782 apply the access permissions. See `file-modes-char-to-who'.
6783 FROM (or 0 if nil) gives the mode bits on which to base permissions if
6784 RIGHTS request to add, remove, or set permissions based on existing ones,
6785 as in \"og+rX-w\"."
6786 (let* ((num-rights (or from 0))
6787 (list-rights (string-to-list rights))
6788 (op (pop list-rights)))
6789 (while (memq op '(?+ ?- ?=))
6790 (let ((num-right 0)
6791 char-right)
6792 (while (memq (setq char-right (pop list-rights))
6793 '(?r ?w ?x ?X ?s ?t ?u ?g ?o))
6794 (setq num-right
6795 (logior num-right
6796 (file-modes-char-to-right char-right num-rights))))
6797 (setq num-right (logand who-mask num-right)
6798 num-rights
6799 (cond ((= op ?+) (logior num-rights num-right))
6800 ((= op ?-) (logand num-rights (lognot num-right)))
6801 (t (logior (logand num-rights (lognot who-mask)) num-right)))
6802 op char-right)))
6803 num-rights))
6805 (defun file-modes-symbolic-to-number (modes &optional from)
6806 "Convert symbolic file modes to numeric file modes.
6807 MODES is the string to convert, it should match
6808 \"[ugoa]*([+-=][rwxXstugo]*)+,...\".
6809 See Info node `(coreutils)File permissions' for more information on this
6810 notation.
6811 FROM (or 0 if nil) gives the mode bits on which to base permissions if
6812 MODES request to add, remove, or set permissions based on existing ones,
6813 as in \"og+rX-w\"."
6814 (save-match-data
6815 (let ((case-fold-search nil)
6816 (num-modes (or from 0)))
6817 (while (/= (string-to-char modes) 0)
6818 (if (string-match "^\\([ugoa]*\\)\\([+=-][rwxXstugo]*\\)+\\(,\\|\\)" modes)
6819 (let ((num-who (apply 'logior 0
6820 (mapcar 'file-modes-char-to-who
6821 (match-string 1 modes)))))
6822 (when (= num-who 0)
6823 (setq num-who (default-file-modes)))
6824 (setq num-modes
6825 (file-modes-rights-to-number (substring modes (match-end 1))
6826 num-who num-modes)
6827 modes (substring modes (match-end 3))))
6828 (error "Parse error in modes near `%s'" (substring modes 0))))
6829 num-modes)))
6831 (defun read-file-modes (&optional prompt orig-file)
6832 "Read file modes in octal or symbolic notation and return its numeric value.
6833 PROMPT is used as the prompt, default to `File modes (octal or symbolic): '.
6834 ORIG-FILE is the name of a file on whose mode bits to base returned
6835 permissions if what user types requests to add, remove, or set permissions
6836 based on existing mode bits, as in \"og+rX-w\"."
6837 (let* ((modes (or (if orig-file (file-modes orig-file) 0)
6838 (error "File not found")))
6839 (modestr (and (stringp orig-file)
6840 (nth 8 (file-attributes orig-file))))
6841 (default
6842 (and (stringp modestr)
6843 (string-match "^.\\(...\\)\\(...\\)\\(...\\)$" modestr)
6844 (replace-regexp-in-string
6845 "-" ""
6846 (format "u=%s,g=%s,o=%s"
6847 (match-string 1 modestr)
6848 (match-string 2 modestr)
6849 (match-string 3 modestr)))))
6850 (value (read-string (or prompt "File modes (octal or symbolic): ")
6851 nil nil default)))
6852 (save-match-data
6853 (if (string-match "^[0-7]+" value)
6854 (string-to-number value 8)
6855 (file-modes-symbolic-to-number value modes)))))
6857 (define-obsolete-variable-alias 'cache-long-line-scans
6858 'cache-long-scans "24.4")
6860 ;; Trashcan handling.
6861 (defcustom trash-directory nil
6862 "Directory for `move-file-to-trash' to move files and directories to.
6863 This directory is only used when the function `system-move-file-to-trash'
6864 is not defined.
6865 Relative paths are interpreted relative to `default-directory'.
6866 If the value is nil, Emacs uses a freedesktop.org-style trashcan."
6867 :type '(choice (const nil) directory)
6868 :group 'auto-save
6869 :version "23.2")
6871 (defvar trash--hexify-table)
6873 (declare-function system-move-file-to-trash "w32fns.c" (filename))
6875 (defun move-file-to-trash (filename)
6876 "Move the file (or directory) named FILENAME to the trash.
6877 When `delete-by-moving-to-trash' is non-nil, this function is
6878 called by `delete-file' and `delete-directory' instead of
6879 deleting files outright.
6881 If the function `system-move-file-to-trash' is defined, call it
6882 with FILENAME as an argument.
6883 Otherwise, if `trash-directory' is non-nil, move FILENAME to that
6884 directory.
6885 Otherwise, trash FILENAME using the freedesktop.org conventions,
6886 like the GNOME, KDE and XFCE desktop environments. Emacs only
6887 moves files to \"home trash\", ignoring per-volume trashcans."
6888 (interactive "fMove file to trash: ")
6889 (cond (trash-directory
6890 ;; If `trash-directory' is non-nil, move the file there.
6891 (let* ((trash-dir (expand-file-name trash-directory))
6892 (fn (directory-file-name (expand-file-name filename)))
6893 (new-fn (expand-file-name (file-name-nondirectory fn)
6894 trash-dir)))
6895 ;; We can't trash a parent directory of trash-directory.
6896 (if (string-prefix-p fn trash-dir)
6897 (error "Trash directory `%s' is a subdirectory of `%s'"
6898 trash-dir filename))
6899 (unless (file-directory-p trash-dir)
6900 (make-directory trash-dir t))
6901 ;; Ensure that the trashed file-name is unique.
6902 (if (file-exists-p new-fn)
6903 (let ((version-control t)
6904 (backup-directory-alist nil))
6905 (setq new-fn (car (find-backup-file-name new-fn)))))
6906 (let (delete-by-moving-to-trash)
6907 (rename-file fn new-fn))))
6908 ;; If `system-move-file-to-trash' is defined, use it.
6909 ((fboundp 'system-move-file-to-trash)
6910 (system-move-file-to-trash filename))
6911 ;; Otherwise, use the freedesktop.org method, as specified at
6912 ;; http://freedesktop.org/wiki/Specifications/trash-spec
6914 (let* ((xdg-data-dir
6915 (directory-file-name
6916 (expand-file-name "Trash"
6917 (or (getenv "XDG_DATA_HOME")
6918 "~/.local/share"))))
6919 (trash-files-dir (expand-file-name "files" xdg-data-dir))
6920 (trash-info-dir (expand-file-name "info" xdg-data-dir))
6921 (fn (directory-file-name (expand-file-name filename))))
6923 ;; Check if we have permissions to delete.
6924 (unless (file-writable-p (directory-file-name
6925 (file-name-directory fn)))
6926 (error "Cannot move %s to trash: Permission denied" filename))
6927 ;; The trashed file cannot be the trash dir or its parent.
6928 (if (string-prefix-p fn trash-files-dir)
6929 (error "The trash directory %s is a subdirectory of %s"
6930 trash-files-dir filename))
6931 (if (string-prefix-p fn trash-info-dir)
6932 (error "The trash directory %s is a subdirectory of %s"
6933 trash-info-dir filename))
6935 ;; Ensure that the trash directory exists; otherwise, create it.
6936 (with-file-modes #o700
6937 (unless (file-exists-p trash-files-dir)
6938 (make-directory trash-files-dir t))
6939 (unless (file-exists-p trash-info-dir)
6940 (make-directory trash-info-dir t)))
6942 ;; Try to move to trash with .trashinfo undo information
6943 (save-excursion
6944 (with-temp-buffer
6945 (set-buffer-file-coding-system 'utf-8-unix)
6946 (insert "[Trash Info]\nPath=")
6947 ;; Perform url-encoding on FN. For compatibility with
6948 ;; other programs (e.g. XFCE Thunar), allow literal "/"
6949 ;; for path separators.
6950 (unless (boundp 'trash--hexify-table)
6951 (setq trash--hexify-table (make-vector 256 nil))
6952 (let ((unreserved-chars
6953 (list ?/ ?a ?b ?c ?d ?e ?f ?g ?h ?i ?j ?k ?l ?m
6954 ?n ?o ?p ?q ?r ?s ?t ?u ?v ?w ?x ?y ?z ?A
6955 ?B ?C ?D ?E ?F ?G ?H ?I ?J ?K ?L ?M ?N ?O
6956 ?P ?Q ?R ?S ?T ?U ?V ?W ?X ?Y ?Z ?0 ?1 ?2
6957 ?3 ?4 ?5 ?6 ?7 ?8 ?9 ?- ?_ ?. ?! ?~ ?* ?'
6958 ?\( ?\))))
6959 (dotimes (byte 256)
6960 (aset trash--hexify-table byte
6961 (if (memq byte unreserved-chars)
6962 (char-to-string byte)
6963 (format "%%%02x" byte))))))
6964 (mapc (lambda (byte)
6965 (insert (aref trash--hexify-table byte)))
6966 (if (multibyte-string-p fn)
6967 (encode-coding-string fn 'utf-8)
6968 fn))
6969 (insert "\nDeletionDate="
6970 (format-time-string "%Y-%m-%dT%T")
6971 "\n")
6973 ;; Attempt to make .trashinfo file, trying up to 5
6974 ;; times. The .trashinfo file is opened with O_EXCL,
6975 ;; as per trash-spec 0.7, even if that can be a problem
6976 ;; on old NFS versions...
6977 (let* ((tries 5)
6978 (base-fn (expand-file-name
6979 (file-name-nondirectory fn)
6980 trash-files-dir))
6981 (new-fn base-fn)
6982 success info-fn)
6983 (while (> tries 0)
6984 (setq info-fn (expand-file-name
6985 (concat (file-name-nondirectory new-fn)
6986 ".trashinfo")
6987 trash-info-dir))
6988 (unless (condition-case nil
6989 (progn
6990 (write-region nil nil info-fn nil
6991 'quiet info-fn 'excl)
6992 (setq tries 0 success t))
6993 (file-already-exists nil))
6994 (setq tries (1- tries))
6995 ;; Uniquify new-fn. (Some file managers do not
6996 ;; like Emacs-style backup file names---e.g. bug
6997 ;; 170956 in Konqueror bug tracker.)
6998 (setq new-fn (make-temp-name (concat base-fn "_")))))
6999 (unless success
7000 (error "Cannot move %s to trash: Lock failed" filename))
7002 ;; Finally, try to move the file to the trashcan.
7003 (let ((delete-by-moving-to-trash nil))
7004 (rename-file fn new-fn)))))))))
7007 (define-key ctl-x-map "\C-f" 'find-file)
7008 (define-key ctl-x-map "\C-r" 'find-file-read-only)
7009 (define-key ctl-x-map "\C-v" 'find-alternate-file)
7010 (define-key ctl-x-map "\C-s" 'save-buffer)
7011 (define-key ctl-x-map "s" 'save-some-buffers)
7012 (define-key ctl-x-map "\C-w" 'write-file)
7013 (define-key ctl-x-map "i" 'insert-file)
7014 (define-key esc-map "~" 'not-modified)
7015 (define-key ctl-x-map "\C-d" 'list-directory)
7016 (define-key ctl-x-map "\C-c" 'save-buffers-kill-terminal)
7017 (define-key ctl-x-map "\C-q" 'read-only-mode)
7019 (define-key ctl-x-4-map "f" 'find-file-other-window)
7020 (define-key ctl-x-4-map "r" 'find-file-read-only-other-window)
7021 (define-key ctl-x-4-map "\C-f" 'find-file-other-window)
7022 (define-key ctl-x-4-map "b" 'switch-to-buffer-other-window)
7023 (define-key ctl-x-4-map "\C-o" 'display-buffer)
7025 (define-key ctl-x-5-map "b" 'switch-to-buffer-other-frame)
7026 (define-key ctl-x-5-map "f" 'find-file-other-frame)
7027 (define-key ctl-x-5-map "\C-f" 'find-file-other-frame)
7028 (define-key ctl-x-5-map "r" 'find-file-read-only-other-frame)
7029 (define-key ctl-x-5-map "\C-o" 'display-buffer-other-frame)
7031 ;;; files.el ends here