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