Avoid unnecessary rounding errors in timestamps
[emacs.git] / lisp / files.el
blob9d46d5f85aa8463881ad3169f6c82d0ed233b053
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 M-n to pull it into the minibuffer.
1565 You can visit files on remote machines by specifying something
1566 like /ssh:SOME_REMOTE_MACHINE:FILE for the file name. You can
1567 also visit local files as a different user by specifying
1568 /sudo::FILE for the file name.
1569 See the Info node `(tramp)File name Syntax' in the Tramp Info
1570 manual, for more about this.
1572 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1573 expand wildcards (if any) and visit multiple files. You can
1574 suppress wildcard expansion by setting `find-file-wildcards' to nil.
1576 To visit a file without any kind of conversion and without
1577 automatically choosing a major mode, use \\[find-file-literally]."
1578 (interactive
1579 (find-file-read-args "Find file: "
1580 (confirm-nonexistent-file-or-buffer)))
1581 (let ((value (find-file-noselect filename nil nil wildcards)))
1582 (if (listp value)
1583 (mapcar 'pop-to-buffer-same-window (nreverse value))
1584 (pop-to-buffer-same-window value))))
1586 (defun find-file-other-window (filename &optional wildcards)
1587 "Edit file FILENAME, in another window.
1589 Like \\[find-file] (which see), but creates a new window or reuses
1590 an existing one. See the function `display-buffer'.
1592 Interactively, the default if you just type RET is the current directory,
1593 but the visited file name is available through the minibuffer history:
1594 type M-n to pull it into the minibuffer.
1596 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1597 expand wildcards (if any) and visit multiple files."
1598 (interactive
1599 (find-file-read-args "Find file in other window: "
1600 (confirm-nonexistent-file-or-buffer)))
1601 (let ((value (find-file-noselect filename nil nil wildcards)))
1602 (if (listp value)
1603 (progn
1604 (setq value (nreverse value))
1605 (switch-to-buffer-other-window (car value))
1606 (mapc 'switch-to-buffer (cdr value))
1607 value)
1608 (switch-to-buffer-other-window value))))
1610 (defun find-file-other-frame (filename &optional wildcards)
1611 "Edit file FILENAME, in another frame.
1613 Like \\[find-file] (which see), but creates a new frame or reuses
1614 an existing one. See the function `display-buffer'.
1616 Interactively, the default if you just type RET is the current directory,
1617 but the visited file name is available through the minibuffer history:
1618 type M-n to pull it into the minibuffer.
1620 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1621 expand wildcards (if any) and visit multiple files."
1622 (interactive
1623 (find-file-read-args "Find file in other frame: "
1624 (confirm-nonexistent-file-or-buffer)))
1625 (let ((value (find-file-noselect filename nil nil wildcards)))
1626 (if (listp value)
1627 (progn
1628 (setq value (nreverse value))
1629 (switch-to-buffer-other-frame (car value))
1630 (mapc 'switch-to-buffer (cdr value))
1631 value)
1632 (switch-to-buffer-other-frame value))))
1634 (defun find-file-existing (filename)
1635 "Edit the existing file FILENAME.
1636 Like \\[find-file], but only allow a file that exists, and do not allow
1637 file names with wildcards."
1638 (interactive (nbutlast (find-file-read-args "Find existing file: " t)))
1639 (if (and (not (called-interactively-p 'interactive))
1640 (not (file-exists-p filename)))
1641 (error "%s does not exist" filename)
1642 (find-file filename)
1643 (current-buffer)))
1645 (defun find-file--read-only (fun filename wildcards)
1646 (unless (or (and wildcards find-file-wildcards
1647 (not (file-name-quoted-p filename))
1648 (string-match "[[*?]" filename))
1649 (file-exists-p filename))
1650 (error "%s does not exist" filename))
1651 (let ((value (funcall fun filename wildcards)))
1652 (mapc (lambda (b) (with-current-buffer b (read-only-mode 1)))
1653 (if (listp value) value (list value)))
1654 value))
1656 (defun find-file-read-only (filename &optional wildcards)
1657 "Edit file FILENAME but don't allow changes.
1658 Like \\[find-file], but marks buffer as read-only.
1659 Use \\[read-only-mode] to permit editing."
1660 (interactive
1661 (find-file-read-args "Find file read-only: "
1662 (confirm-nonexistent-file-or-buffer)))
1663 (find-file--read-only #'find-file filename wildcards))
1665 (defun find-file-read-only-other-window (filename &optional wildcards)
1666 "Edit file FILENAME in another window but don't allow changes.
1667 Like \\[find-file-other-window], but marks buffer as read-only.
1668 Use \\[read-only-mode] to permit editing."
1669 (interactive
1670 (find-file-read-args "Find file read-only other window: "
1671 (confirm-nonexistent-file-or-buffer)))
1672 (find-file--read-only #'find-file-other-window filename wildcards))
1674 (defun find-file-read-only-other-frame (filename &optional wildcards)
1675 "Edit file FILENAME in another frame but don't allow changes.
1676 Like \\[find-file-other-frame], but marks buffer as read-only.
1677 Use \\[read-only-mode] to permit editing."
1678 (interactive
1679 (find-file-read-args "Find file read-only other frame: "
1680 (confirm-nonexistent-file-or-buffer)))
1681 (find-file--read-only #'find-file-other-frame filename wildcards))
1683 (defun find-alternate-file-other-window (filename &optional wildcards)
1684 "Find file FILENAME as a replacement for the file in the next window.
1685 This command does not select that window.
1687 See \\[find-file] for the possible forms of the FILENAME argument.
1689 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1690 expand wildcards (if any) and replace the file with multiple files."
1691 (interactive
1692 (save-selected-window
1693 (other-window 1)
1694 (let ((file buffer-file-name)
1695 (file-name nil)
1696 (file-dir nil))
1697 (and file
1698 (setq file-name (file-name-nondirectory file)
1699 file-dir (file-name-directory file)))
1700 (list (read-file-name
1701 "Find alternate file: " file-dir nil
1702 (confirm-nonexistent-file-or-buffer) file-name)
1703 t))))
1704 (if (one-window-p)
1705 (find-file-other-window filename wildcards)
1706 (save-selected-window
1707 (other-window 1)
1708 (find-alternate-file filename wildcards))))
1710 ;; Defined and used in buffer.c, but not as a DEFVAR_LISP.
1711 (defvar kill-buffer-hook nil
1712 "Hook run when a buffer is killed.
1713 The buffer being killed is current while the hook is running.
1714 See `kill-buffer'.
1716 Note: Be careful with let-binding this hook considering it is
1717 frequently used for cleanup.")
1719 (defun find-alternate-file (filename &optional wildcards)
1720 "Find file FILENAME, select its buffer, kill previous buffer.
1721 If the current buffer now contains an empty file that you just visited
1722 \(presumably by mistake), use this command to visit the file you really want.
1724 See \\[find-file] for the possible forms of the FILENAME argument.
1726 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1727 expand wildcards (if any) and replace the file with multiple files.
1729 If the current buffer is an indirect buffer, or the base buffer
1730 for one or more indirect buffers, the other buffer(s) are not
1731 killed."
1732 (interactive
1733 (let ((file buffer-file-name)
1734 (file-name nil)
1735 (file-dir nil))
1736 (and file
1737 (setq file-name (file-name-nondirectory file)
1738 file-dir (file-name-directory file)))
1739 (list (read-file-name
1740 "Find alternate file: " file-dir nil
1741 (confirm-nonexistent-file-or-buffer) file-name)
1742 t)))
1743 (unless (run-hook-with-args-until-failure 'kill-buffer-query-functions)
1744 (user-error "Aborted"))
1745 (and (buffer-modified-p) buffer-file-name
1746 (not (yes-or-no-p
1747 (format-message "Kill and replace buffer `%s' without saving it? "
1748 (buffer-name))))
1749 (user-error "Aborted"))
1750 (let ((obuf (current-buffer))
1751 (ofile buffer-file-name)
1752 (onum buffer-file-number)
1753 (odir dired-directory)
1754 (otrue buffer-file-truename)
1755 (oname (buffer-name)))
1756 ;; Run `kill-buffer-hook' here. It needs to happen before
1757 ;; variables like `buffer-file-name' etc are set to nil below,
1758 ;; because some of the hooks that could be invoked
1759 ;; (e.g., `save-place-to-alist') depend on those variables.
1761 ;; Note that `kill-buffer-hook' is not what queries whether to
1762 ;; save a modified buffer visiting a file. Rather, `kill-buffer'
1763 ;; asks that itself. Thus, there's no need to temporarily do
1764 ;; `(set-buffer-modified-p nil)' before running this hook.
1765 (run-hooks 'kill-buffer-hook)
1766 ;; Okay, now we can end-of-life the old buffer.
1767 (if (get-buffer " **lose**")
1768 (kill-buffer " **lose**"))
1769 (rename-buffer " **lose**")
1770 (unwind-protect
1771 (progn
1772 (unlock-buffer)
1773 ;; This prevents us from finding the same buffer
1774 ;; if we specified the same file again.
1775 (setq buffer-file-name nil)
1776 (setq buffer-file-number nil)
1777 (setq buffer-file-truename nil)
1778 ;; Likewise for dired buffers.
1779 (setq dired-directory nil)
1780 (find-file filename wildcards))
1781 (when (eq obuf (current-buffer))
1782 ;; This executes if find-file gets an error
1783 ;; and does not really find anything.
1784 ;; We put things back as they were.
1785 ;; If find-file actually finds something, we kill obuf below.
1786 (setq buffer-file-name ofile)
1787 (setq buffer-file-number onum)
1788 (setq buffer-file-truename otrue)
1789 (setq dired-directory odir)
1790 (lock-buffer)
1791 (rename-buffer oname)))
1792 (unless (eq (current-buffer) obuf)
1793 (with-current-buffer obuf
1794 ;; We already ran these; don't run them again.
1795 (let (kill-buffer-query-functions kill-buffer-hook)
1796 (kill-buffer obuf))))))
1798 ;; FIXME we really need to fold the uniquify stuff in here by default,
1799 ;; not using advice, and add it to the doc string.
1800 (defun create-file-buffer (filename)
1801 "Create a suitably named buffer for visiting FILENAME, and return it.
1802 FILENAME (sans directory) is used unchanged if that name is free;
1803 otherwise a string <2> or <3> or ... is appended to get an unused name.
1805 Emacs treats buffers whose names begin with a space as internal buffers.
1806 To avoid confusion when visiting a file whose name begins with a space,
1807 this function prepends a \"|\" to the final result if necessary."
1808 (let ((lastname (file-name-nondirectory filename)))
1809 (if (string= lastname "")
1810 (setq lastname filename))
1811 (generate-new-buffer (if (string-match-p "\\` " lastname)
1812 (concat "|" lastname)
1813 lastname))))
1815 (defun generate-new-buffer (name)
1816 "Create and return a buffer with a name based on NAME.
1817 Choose the buffer's name using `generate-new-buffer-name'."
1818 (get-buffer-create (generate-new-buffer-name name)))
1820 (defcustom automount-dir-prefix (purecopy "^/tmp_mnt/")
1821 "Regexp to match the automounter prefix in a directory name."
1822 :group 'files
1823 :type 'regexp)
1824 (make-obsolete-variable 'automount-dir-prefix 'directory-abbrev-alist "24.3")
1826 (defvar abbreviated-home-dir nil
1827 "Regexp matching the user's homedir at the beginning of file name.
1828 The value includes abbreviation according to `directory-abbrev-alist'.")
1830 (defun abbreviate-file-name (filename)
1831 "Return a version of FILENAME shortened using `directory-abbrev-alist'.
1832 This also substitutes \"~\" for the user's home directory (unless the
1833 home directory is a root directory) and removes automounter prefixes
1834 \(see the variable `automount-dir-prefix')."
1835 ;; Get rid of the prefixes added by the automounter.
1836 (save-match-data
1837 (if (and automount-dir-prefix
1838 (string-match automount-dir-prefix filename)
1839 (file-exists-p (file-name-directory
1840 (substring filename (1- (match-end 0))))))
1841 (setq filename (substring filename (1- (match-end 0)))))
1842 ;; Avoid treating /home/foo as /home/Foo during `~' substitution.
1843 (let ((case-fold-search (file-name-case-insensitive-p filename)))
1844 ;; If any elt of directory-abbrev-alist matches this name,
1845 ;; abbreviate accordingly.
1846 (dolist (dir-abbrev directory-abbrev-alist)
1847 (if (string-match (car dir-abbrev) filename)
1848 (setq filename
1849 (concat (cdr dir-abbrev)
1850 (substring filename (match-end 0))))))
1851 ;; Compute and save the abbreviated homedir name.
1852 ;; We defer computing this until the first time it's needed, to
1853 ;; give time for directory-abbrev-alist to be set properly.
1854 ;; We include a slash at the end, to avoid spurious matches
1855 ;; such as `/usr/foobar' when the home dir is `/usr/foo'.
1856 (or abbreviated-home-dir
1857 (setq abbreviated-home-dir
1858 (let ((abbreviated-home-dir "$foo"))
1859 (setq abbreviated-home-dir
1860 (concat "\\`"
1861 (abbreviate-file-name (expand-file-name "~"))
1862 "\\(/\\|\\'\\)"))
1863 ;; Depending on whether default-directory does or
1864 ;; doesn't include non-ASCII characters, the value
1865 ;; of abbreviated-home-dir could be multibyte or
1866 ;; unibyte. In the latter case, we need to decode
1867 ;; it. Note that this function is called for the
1868 ;; first time (from startup.el) when
1869 ;; locale-coding-system is already set up.
1870 (if (multibyte-string-p abbreviated-home-dir)
1871 abbreviated-home-dir
1872 (decode-coding-string abbreviated-home-dir
1873 (if (eq system-type 'windows-nt)
1874 'utf-8
1875 locale-coding-system))))))
1877 ;; If FILENAME starts with the abbreviated homedir,
1878 ;; make it start with `~' instead.
1879 (if (and (string-match abbreviated-home-dir filename)
1880 ;; If the home dir is just /, don't change it.
1881 (not (and (= (match-end 0) 1)
1882 (= (aref filename 0) ?/)))
1883 ;; MS-DOS root directories can come with a drive letter;
1884 ;; Novell Netware allows drive letters beyond `Z:'.
1885 (not (and (memq system-type '(ms-dos windows-nt cygwin))
1886 (save-match-data
1887 (string-match "^[a-zA-`]:/$" filename)))))
1888 (setq filename
1889 (concat "~"
1890 (match-string 1 filename)
1891 (substring filename (match-end 0)))))
1892 filename)))
1894 (defun find-buffer-visiting (filename &optional predicate)
1895 "Return the buffer visiting file FILENAME (a string).
1896 This is like `get-file-buffer', except that it checks for any buffer
1897 visiting the same file, possibly under a different name.
1898 If PREDICATE is non-nil, only buffers satisfying it are eligible,
1899 and others are ignored.
1900 If there is no such live buffer, return nil."
1901 (let ((predicate (or predicate #'identity))
1902 (truename (abbreviate-file-name (file-truename filename))))
1903 (or (let ((buf (get-file-buffer filename)))
1904 (when (and buf (funcall predicate buf)) buf))
1905 (let ((list (buffer-list)) found)
1906 (while (and (not found) list)
1907 (with-current-buffer (car list)
1908 (if (and buffer-file-name
1909 (string= buffer-file-truename truename)
1910 (funcall predicate (current-buffer)))
1911 (setq found (car list))))
1912 (setq list (cdr list)))
1913 found)
1914 (let* ((attributes (file-attributes truename))
1915 (number (nthcdr 10 attributes))
1916 (list (buffer-list)) found)
1917 (and buffer-file-numbers-unique
1918 (car-safe number) ;Make sure the inode is not just nil.
1919 (while (and (not found) list)
1920 (with-current-buffer (car list)
1921 (if (and buffer-file-name
1922 (equal buffer-file-number number)
1923 ;; Verify this buffer's file number
1924 ;; still belongs to its file.
1925 (file-exists-p buffer-file-name)
1926 (equal (file-attributes buffer-file-truename)
1927 attributes)
1928 (funcall predicate (current-buffer)))
1929 (setq found (car list))))
1930 (setq list (cdr list))))
1931 found))))
1933 (defcustom find-file-wildcards t
1934 "Non-nil means file-visiting commands should handle wildcards.
1935 For example, if you specify `*.c', that would visit all the files
1936 whose names match the pattern."
1937 :group 'files
1938 :version "20.4"
1939 :type 'boolean)
1941 (defcustom find-file-suppress-same-file-warnings nil
1942 "Non-nil means suppress warning messages for symlinked files.
1943 When nil, Emacs prints a warning when visiting a file that is already
1944 visited, but with a different name. Setting this option to t
1945 suppresses this warning."
1946 :group 'files
1947 :version "21.1"
1948 :type 'boolean)
1950 (defcustom large-file-warning-threshold 10000000
1951 "Maximum size of file above which a confirmation is requested.
1952 When nil, never request confirmation."
1953 :group 'files
1954 :group 'find-file
1955 :version "22.1"
1956 :type '(choice integer (const :tag "Never request confirmation" nil)))
1958 (defcustom out-of-memory-warning-percentage nil
1959 "Warn if file size exceeds this percentage of available free memory.
1960 When nil, never issue warning. Beware: This probably doesn't do what you
1961 think it does, because \"free\" is pretty hard to define in practice."
1962 :group 'files
1963 :group 'find-file
1964 :version "25.1"
1965 :type '(choice integer (const :tag "Never issue warning" nil)))
1967 (defun abort-if-file-too-large (size op-type filename)
1968 "If file SIZE larger than `large-file-warning-threshold', allow user to abort.
1969 OP-TYPE specifies the file operation being performed (for message to user)."
1970 (when (and large-file-warning-threshold size
1971 (> size large-file-warning-threshold)
1972 (not (y-or-n-p (format "File %s is large (%s), really %s? "
1973 (file-name-nondirectory filename)
1974 (file-size-human-readable size) op-type))))
1975 (user-error "Aborted")))
1977 (defun warn-maybe-out-of-memory (size)
1978 "Warn if an attempt to open file of SIZE bytes may run out of memory."
1979 (when (and (numberp size) (not (zerop size))
1980 (integerp out-of-memory-warning-percentage))
1981 (let ((meminfo (memory-info)))
1982 (when (consp meminfo)
1983 (let ((total-free-memory (float (+ (nth 1 meminfo) (nth 3 meminfo)))))
1984 (when (> (/ size 1024)
1985 (/ (* total-free-memory out-of-memory-warning-percentage)
1986 100.0))
1987 (warn
1988 "You are trying to open a file whose size (%s)
1989 exceeds the %S%% of currently available free memory (%s).
1990 If that fails, try to open it with `find-file-literally'
1991 \(but note that some characters might be displayed incorrectly)."
1992 (file-size-human-readable size)
1993 out-of-memory-warning-percentage
1994 (file-size-human-readable (* total-free-memory 1024)))))))))
1996 (defun files--message (format &rest args)
1997 "Like `message', except sometimes don't print to minibuffer.
1998 If the variable `save-silently' is non-nil, the message is not
1999 displayed on the minibuffer."
2000 (apply #'message format args)
2001 (when save-silently (message nil)))
2003 (defun find-file-noselect (filename &optional nowarn rawfile wildcards)
2004 "Read file FILENAME into a buffer and return the buffer.
2005 If a buffer exists visiting FILENAME, return that one, but
2006 verify that the file has not changed since visited or saved.
2007 The buffer is not selected, just returned to the caller.
2008 Optional second arg NOWARN non-nil means suppress any warning messages.
2009 Optional third arg RAWFILE non-nil means the file is read literally.
2010 Optional fourth arg WILDCARDS non-nil means do wildcard processing
2011 and visit all the matching files. When wildcards are actually
2012 used and expanded, return a list of buffers that are visiting
2013 the various files."
2014 (setq filename
2015 (abbreviate-file-name
2016 (expand-file-name filename)))
2017 (if (file-directory-p filename)
2018 (or (and find-file-run-dired
2019 (run-hook-with-args-until-success
2020 'find-directory-functions
2021 (if find-file-visit-truename
2022 (abbreviate-file-name (file-truename filename))
2023 filename)))
2024 (error "%s is a directory" filename))
2025 (if (and wildcards
2026 find-file-wildcards
2027 (not (file-name-quoted-p filename))
2028 (string-match "[[*?]" filename))
2029 (let ((files (condition-case nil
2030 (file-expand-wildcards filename t)
2031 (error (list filename))))
2032 (find-file-wildcards nil))
2033 (if (null files)
2034 (find-file-noselect filename)
2035 (mapcar #'find-file-noselect files)))
2036 (let* ((buf (get-file-buffer filename))
2037 (truename (abbreviate-file-name (file-truename filename)))
2038 (attributes (file-attributes truename))
2039 (number (nthcdr 10 attributes))
2040 ;; Find any buffer for a file which has same truename.
2041 (other (and (not buf) (find-buffer-visiting filename))))
2042 ;; Let user know if there is a buffer with the same truename.
2043 (if other
2044 (progn
2045 (or nowarn
2046 find-file-suppress-same-file-warnings
2047 (string-equal filename (buffer-file-name other))
2048 (files--message "%s and %s are the same file"
2049 filename (buffer-file-name other)))
2050 ;; Optionally also find that buffer.
2051 (if (or find-file-existing-other-name find-file-visit-truename)
2052 (setq buf other))))
2053 ;; Check to see if the file looks uncommonly large.
2054 (when (not (or buf nowarn))
2055 (abort-if-file-too-large (nth 7 attributes) "open" filename)
2056 (warn-maybe-out-of-memory (nth 7 attributes)))
2057 (if buf
2058 ;; We are using an existing buffer.
2059 (let (nonexistent)
2060 (or nowarn
2061 (verify-visited-file-modtime buf)
2062 (cond ((not (file-exists-p filename))
2063 (setq nonexistent t)
2064 (message "File %s no longer exists!" filename))
2065 ;; Certain files should be reverted automatically
2066 ;; if they have changed on disk and not in the buffer.
2067 ((and (not (buffer-modified-p buf))
2068 (let ((tail revert-without-query)
2069 (found nil))
2070 (while tail
2071 (if (string-match (car tail) filename)
2072 (setq found t))
2073 (setq tail (cdr tail)))
2074 found))
2075 (with-current-buffer buf
2076 (message "Reverting file %s..." filename)
2077 (revert-buffer t t)
2078 (message "Reverting file %s...done" filename)))
2079 ((yes-or-no-p
2080 (if (string= (file-name-nondirectory filename)
2081 (buffer-name buf))
2082 (format
2083 (if (buffer-modified-p buf)
2084 "File %s changed on disk. Discard your edits? "
2085 "File %s changed on disk. Reread from disk? ")
2086 (file-name-nondirectory filename))
2087 (format
2088 (if (buffer-modified-p buf)
2089 "File %s changed on disk. Discard your edits in %s? "
2090 "File %s changed on disk. Reread from disk into %s? ")
2091 (file-name-nondirectory filename)
2092 (buffer-name buf))))
2093 (with-current-buffer buf
2094 (revert-buffer t t)))))
2095 (with-current-buffer buf
2097 ;; Check if a formerly read-only file has become
2098 ;; writable and vice versa, but if the buffer agrees
2099 ;; with the new state of the file, that is ok too.
2100 (let ((read-only (not (file-writable-p buffer-file-name))))
2101 (unless (or nonexistent
2102 (eq read-only buffer-file-read-only)
2103 (eq read-only buffer-read-only))
2104 (when (or nowarn
2105 (let* ((new-status
2106 (if read-only "read-only" "writable"))
2107 (question
2108 (format "File %s is %s on disk. Make buffer %s, too? "
2109 buffer-file-name
2110 new-status new-status)))
2111 (y-or-n-p question)))
2112 (setq buffer-read-only read-only)))
2113 (setq buffer-file-read-only read-only))
2115 (unless (or (eq (null rawfile) (null find-file-literally))
2116 nonexistent
2117 ;; It is confusing to ask whether to visit
2118 ;; non-literally if they have the file in
2119 ;; hexl-mode or image-mode.
2120 (memq major-mode '(hexl-mode image-mode)))
2121 (if (buffer-modified-p)
2122 (if (y-or-n-p
2123 (format
2124 (if rawfile
2125 "The file %s is already visited normally,
2126 and you have edited the buffer. Now you have asked to visit it literally,
2127 meaning no coding system handling, format conversion, or local variables.
2128 Emacs can only visit a file in one way at a time.
2130 Do you want to save the file, and visit it literally instead? "
2131 "The file %s is already visited literally,
2132 meaning no coding system handling, format conversion, or local variables.
2133 You have edited the buffer. Now you have asked to visit the file normally,
2134 but Emacs can only visit a file in one way at a time.
2136 Do you want to save the file, and visit it normally instead? ")
2137 (file-name-nondirectory filename)))
2138 (progn
2139 (save-buffer)
2140 (find-file-noselect-1 buf filename nowarn
2141 rawfile truename number))
2142 (if (y-or-n-p
2143 (format
2144 (if rawfile
2146 Do you want to discard your changes, and visit the file literally now? "
2148 Do you want to discard your changes, and visit the file normally now? ")))
2149 (find-file-noselect-1 buf filename nowarn
2150 rawfile truename number)
2151 (error (if rawfile "File already visited non-literally"
2152 "File already visited literally"))))
2153 (if (y-or-n-p
2154 (format
2155 (if rawfile
2156 "The file %s is already visited normally.
2157 You have asked to visit it literally,
2158 meaning no coding system decoding, format conversion, or local variables.
2159 But Emacs can only visit a file in one way at a time.
2161 Do you want to revisit the file literally now? "
2162 "The file %s is already visited literally,
2163 meaning no coding system decoding, format conversion, or local variables.
2164 You have asked to visit it normally,
2165 but Emacs can only visit a file in one way at a time.
2167 Do you want to revisit the file normally now? ")
2168 (file-name-nondirectory filename)))
2169 (find-file-noselect-1 buf filename nowarn
2170 rawfile truename number)
2171 (error (if rawfile "File already visited non-literally"
2172 "File already visited literally"))))))
2173 ;; Return the buffer we are using.
2174 buf)
2175 ;; Create a new buffer.
2176 (setq buf (create-file-buffer filename))
2177 ;; find-file-noselect-1 may use a different buffer.
2178 (find-file-noselect-1 buf filename nowarn
2179 rawfile truename number))))))
2181 (defun find-file-noselect-1 (buf filename nowarn rawfile truename number)
2182 (let (error)
2183 (with-current-buffer buf
2184 (kill-local-variable 'find-file-literally)
2185 ;; Needed in case we are re-visiting the file with a different
2186 ;; text representation.
2187 (kill-local-variable 'buffer-file-coding-system)
2188 (kill-local-variable 'cursor-type)
2189 (let ((inhibit-read-only t))
2190 (erase-buffer))
2191 (and (default-value 'enable-multibyte-characters)
2192 (not rawfile)
2193 (set-buffer-multibyte t))
2194 (if rawfile
2195 (condition-case ()
2196 (let ((inhibit-read-only t))
2197 (insert-file-contents-literally filename t))
2198 (file-error
2199 (when (and (file-exists-p filename)
2200 (not (file-readable-p filename)))
2201 (kill-buffer buf)
2202 (signal 'file-error (list "File is not readable"
2203 filename)))
2204 ;; Unconditionally set error
2205 (setq error t)))
2206 (condition-case ()
2207 (let ((inhibit-read-only t))
2208 (insert-file-contents filename t))
2209 (file-error
2210 (when (and (file-exists-p filename)
2211 (not (file-readable-p filename)))
2212 (kill-buffer buf)
2213 (signal 'file-error (list "File is not readable"
2214 filename)))
2215 ;; Run find-file-not-found-functions until one returns non-nil.
2216 (or (run-hook-with-args-until-success 'find-file-not-found-functions)
2217 ;; If they fail too, set error.
2218 (setq error t)))))
2219 ;; Record the file's truename, and maybe use that as visited name.
2220 (if (equal filename buffer-file-name)
2221 (setq buffer-file-truename truename)
2222 (setq buffer-file-truename
2223 (abbreviate-file-name (file-truename buffer-file-name))))
2224 (setq buffer-file-number number)
2225 (if find-file-visit-truename
2226 (setq buffer-file-name (expand-file-name buffer-file-truename)))
2227 ;; Set buffer's default directory to that of the file.
2228 (setq default-directory (file-name-directory buffer-file-name))
2229 ;; Turn off backup files for certain file names. Since
2230 ;; this is a permanent local, the major mode won't eliminate it.
2231 (and backup-enable-predicate
2232 (not (funcall backup-enable-predicate buffer-file-name))
2233 (progn
2234 (make-local-variable 'backup-inhibited)
2235 (setq backup-inhibited t)))
2236 (if rawfile
2237 (progn
2238 (set-buffer-multibyte nil)
2239 (setq buffer-file-coding-system 'no-conversion)
2240 (set-buffer-major-mode buf)
2241 (setq-local find-file-literally t))
2242 (after-find-file error (not nowarn)))
2243 (current-buffer))))
2245 (defun insert-file-contents-literally (filename &optional visit beg end replace)
2246 "Like `insert-file-contents', but only reads in the file literally.
2247 See `insert-file-contents' for an explanation of the parameters.
2248 A buffer may be modified in several ways after reading into the buffer,
2249 due to Emacs features such as format decoding, character code
2250 conversion, `find-file-hook', automatic uncompression, etc.
2252 This function ensures that none of these modifications will take place."
2253 (let ((format-alist nil)
2254 (after-insert-file-functions nil)
2255 (coding-system-for-read 'no-conversion)
2256 (coding-system-for-write 'no-conversion)
2257 (inhibit-file-name-handlers
2258 ;; FIXME: Yuck!! We should turn insert-file-contents-literally
2259 ;; into a file operation instead!
2260 (append '(jka-compr-handler image-file-handler epa-file-handler)
2261 inhibit-file-name-handlers))
2262 (inhibit-file-name-operation 'insert-file-contents))
2263 (insert-file-contents filename visit beg end replace)))
2265 (defun insert-file-1 (filename insert-func)
2266 (if (file-directory-p filename)
2267 (signal 'file-error (list "Opening input file" "Is a directory"
2268 filename)))
2269 ;; Check whether the file is uncommonly large
2270 (abort-if-file-too-large (nth 7 (file-attributes filename)) "insert" filename)
2271 (let* ((buffer (find-buffer-visiting (abbreviate-file-name (file-truename filename))
2272 #'buffer-modified-p))
2273 (tem (funcall insert-func filename)))
2274 (push-mark (+ (point) (car (cdr tem))))
2275 (when buffer
2276 (message "File %s already visited and modified in buffer %s"
2277 filename (buffer-name buffer)))))
2279 (defun insert-file-literally (filename)
2280 "Insert contents of file FILENAME into buffer after point with no conversion.
2282 This function is meant for the user to run interactively.
2283 Don't call it from programs! Use `insert-file-contents-literally' instead.
2284 \(Its calling sequence is different; see its documentation)."
2285 (declare (interactive-only insert-file-contents-literally))
2286 (interactive "*fInsert file literally: ")
2287 (insert-file-1 filename #'insert-file-contents-literally))
2289 (defvar find-file-literally nil
2290 "Non-nil if this buffer was made by `find-file-literally' or equivalent.
2291 This has the `permanent-local' property, which takes effect if you
2292 make the variable buffer-local.")
2293 (put 'find-file-literally 'permanent-local t)
2295 (defun find-file-literally (filename)
2296 "Visit file FILENAME with no conversion of any kind.
2297 Format conversion and character code conversion are both disabled,
2298 and multibyte characters are disabled in the resulting buffer.
2299 The major mode used is Fundamental mode regardless of the file name,
2300 and local variable specifications in the file are ignored.
2301 Automatic uncompression and adding a newline at the end of the
2302 file due to `require-final-newline' is also disabled.
2304 You cannot absolutely rely on this function to result in
2305 visiting the file literally. If Emacs already has a buffer
2306 which is visiting the file, you get the existing buffer,
2307 regardless of whether it was created literally or not.
2309 In a Lisp program, if you want to be sure of accessing a file's
2310 contents literally, you should create a temporary buffer and then read
2311 the file contents into it using `insert-file-contents-literally'."
2312 (interactive
2313 (list (read-file-name
2314 "Find file literally: " nil default-directory
2315 (confirm-nonexistent-file-or-buffer))))
2316 (switch-to-buffer (find-file-noselect filename nil t)))
2318 (defun after-find-file (&optional error warn noauto
2319 _after-find-file-from-revert-buffer
2320 nomodes)
2321 "Called after finding a file and by the default revert function.
2322 Sets buffer mode, parses local variables.
2323 Optional args ERROR, WARN, and NOAUTO: ERROR non-nil means there was an
2324 error in reading the file. WARN non-nil means warn if there
2325 exists an auto-save file more recent than the visited file.
2326 NOAUTO means don't mess with auto-save mode.
2327 Fourth arg AFTER-FIND-FILE-FROM-REVERT-BUFFER is ignored
2328 \(see `revert-buffer-in-progress-p' for similar functionality).
2329 Fifth arg NOMODES non-nil means don't alter the file's modes.
2330 Finishes by calling the functions in `find-file-hook'
2331 unless NOMODES is non-nil."
2332 (setq buffer-read-only (not (file-writable-p buffer-file-name)))
2333 (if noninteractive
2335 (let* (not-serious
2336 (msg
2337 (cond
2338 ((not warn) nil)
2339 ((and error (file-attributes buffer-file-name))
2340 (setq buffer-read-only t)
2341 (if (and (file-symlink-p buffer-file-name)
2342 (not (file-exists-p
2343 (file-chase-links buffer-file-name))))
2344 "Symbolic link that points to nonexistent file"
2345 "File exists, but cannot be read"))
2346 ((not buffer-read-only)
2347 (if (and warn
2348 ;; No need to warn if buffer is auto-saved
2349 ;; under the name of the visited file.
2350 (not (and buffer-file-name
2351 auto-save-visited-file-name))
2352 (file-newer-than-file-p (or buffer-auto-save-file-name
2353 (make-auto-save-file-name))
2354 buffer-file-name))
2355 (format "%s has auto save data; consider M-x recover-this-file"
2356 (file-name-nondirectory buffer-file-name))
2357 (setq not-serious t)
2358 (if error "(New file)" nil)))
2359 ((not error)
2360 (setq not-serious t)
2361 "Note: file is write protected")
2362 ((file-attributes (directory-file-name default-directory))
2363 "File not found and directory write-protected")
2364 ((file-exists-p (file-name-directory buffer-file-name))
2365 (setq buffer-read-only nil))
2367 (setq buffer-read-only nil)
2368 "Use M-x make-directory RET RET to create the directory and its parents"))))
2369 (when msg
2370 (message "%s" msg)
2371 (or not-serious (sit-for 1 t))))
2372 (when (and auto-save-default (not noauto))
2373 (auto-save-mode 1)))
2374 ;; Make people do a little extra work (C-x C-q)
2375 ;; before altering a backup file.
2376 (when (backup-file-name-p buffer-file-name)
2377 (setq buffer-read-only t))
2378 ;; When a file is marked read-only,
2379 ;; make the buffer read-only even if root is looking at it.
2380 (when (and (file-modes (buffer-file-name))
2381 (zerop (logand (file-modes (buffer-file-name)) #o222)))
2382 (setq buffer-read-only t))
2383 (unless nomodes
2384 (when (and view-read-only view-mode)
2385 (view-mode -1))
2386 (normal-mode t)
2387 ;; If requested, add a newline at the end of the file.
2388 (and (memq require-final-newline '(visit visit-save))
2389 (> (point-max) (point-min))
2390 (/= (char-after (1- (point-max))) ?\n)
2391 (not (and (eq selective-display t)
2392 (= (char-after (1- (point-max))) ?\r)))
2393 (not buffer-read-only)
2394 (save-excursion
2395 (goto-char (point-max))
2396 (ignore-errors (insert "\n"))))
2397 (when (and buffer-read-only
2398 view-read-only
2399 (not (eq (get major-mode 'mode-class) 'special)))
2400 (view-mode-enter))
2401 (run-hooks 'find-file-hook)))
2403 (define-obsolete-function-alias 'report-errors 'with-demoted-errors "25.1")
2405 (defun normal-mode (&optional find-file)
2406 "Choose the major mode for this buffer automatically.
2407 Also sets up any specified local variables of the file.
2408 Uses the visited file name, the -*- line, and the local variables spec.
2410 This function is called automatically from `find-file'. In that case,
2411 we may set up the file-specified mode and local variables,
2412 depending on the value of `enable-local-variables'.
2413 In addition, if `local-enable-local-variables' is nil, we do
2414 not set local variables (though we do notice a mode specified with -*-.)
2416 `enable-local-variables' is ignored if you run `normal-mode' interactively,
2417 or from Lisp without specifying the optional argument FIND-FILE;
2418 in that case, this function acts as if `enable-local-variables' were t."
2419 (interactive)
2420 (kill-all-local-variables)
2421 (unless delay-mode-hooks
2422 (run-hooks 'change-major-mode-after-body-hook
2423 'after-change-major-mode-hook))
2424 (let ((enable-local-variables (or (not find-file) enable-local-variables)))
2425 ;; FIXME this is less efficient than it could be, since both
2426 ;; s-a-m and h-l-v may parse the same regions, looking for "mode:".
2427 (with-demoted-errors "File mode specification error: %s"
2428 (set-auto-mode))
2429 ;; `delay-mode-hooks' being non-nil will have prevented the major
2430 ;; mode's call to `run-mode-hooks' from calling
2431 ;; `hack-local-variables'. In that case, call it now.
2432 (when delay-mode-hooks
2433 (with-demoted-errors "File local-variables error: %s"
2434 (hack-local-variables 'no-mode))))
2435 ;; Turn font lock off and on, to make sure it takes account of
2436 ;; whatever file local variables are relevant to it.
2437 (when (and font-lock-mode
2438 ;; Font-lock-mode (now in font-core.el) can be ON when
2439 ;; font-lock.el still hasn't been loaded.
2440 (boundp 'font-lock-keywords)
2441 (eq (car font-lock-keywords) t))
2442 (setq font-lock-keywords (cadr font-lock-keywords))
2443 (font-lock-mode 1)))
2445 (defcustom auto-mode-case-fold t
2446 "Non-nil means to try second pass through `auto-mode-alist'.
2447 This means that if the first case-sensitive search through the alist fails
2448 to find a matching major mode, a second case-insensitive search is made.
2449 On systems with case-insensitive file names, this variable is ignored,
2450 since only a single case-insensitive search through the alist is made."
2451 :group 'files
2452 :version "22.1"
2453 :type 'boolean)
2455 (defvar auto-mode-alist
2456 ;; Note: The entries for the modes defined in cc-mode.el (c-mode,
2457 ;; c++-mode, java-mode and more) are added through autoload
2458 ;; directives in that file. That way is discouraged since it
2459 ;; spreads out the definition of the initial value.
2460 (mapcar
2461 (lambda (elt)
2462 (cons (purecopy (car elt)) (cdr elt)))
2463 `(;; do this first, so that .html.pl is Polish html, not Perl
2464 ("\\.[sx]?html?\\(\\.[a-zA-Z_]+\\)?\\'" . mhtml-mode)
2465 ("\\.svgz?\\'" . image-mode)
2466 ("\\.svgz?\\'" . xml-mode)
2467 ("\\.x[bp]m\\'" . image-mode)
2468 ("\\.x[bp]m\\'" . c-mode)
2469 ("\\.p[bpgn]m\\'" . image-mode)
2470 ("\\.tiff?\\'" . image-mode)
2471 ("\\.gif\\'" . image-mode)
2472 ("\\.png\\'" . image-mode)
2473 ("\\.jpe?g\\'" . image-mode)
2474 ("\\.te?xt\\'" . text-mode)
2475 ("\\.[tT]e[xX]\\'" . tex-mode)
2476 ("\\.ins\\'" . tex-mode) ;Installation files for TeX packages.
2477 ("\\.ltx\\'" . latex-mode)
2478 ("\\.dtx\\'" . doctex-mode)
2479 ("\\.org\\'" . org-mode)
2480 ("\\.el\\'" . emacs-lisp-mode)
2481 ("Project\\.ede\\'" . emacs-lisp-mode)
2482 ("\\.\\(scm\\|stk\\|ss\\|sch\\)\\'" . scheme-mode)
2483 ("\\.l\\'" . lisp-mode)
2484 ("\\.li?sp\\'" . lisp-mode)
2485 ("\\.[fF]\\'" . fortran-mode)
2486 ("\\.for\\'" . fortran-mode)
2487 ("\\.p\\'" . pascal-mode)
2488 ("\\.pas\\'" . pascal-mode)
2489 ("\\.\\(dpr\\|DPR\\)\\'" . delphi-mode)
2490 ("\\.ad[abs]\\'" . ada-mode)
2491 ("\\.ad[bs].dg\\'" . ada-mode)
2492 ("\\.\\([pP]\\([Llm]\\|erl\\|od\\)\\|al\\)\\'" . perl-mode)
2493 ("Imakefile\\'" . makefile-imake-mode)
2494 ("Makeppfile\\(?:\\.mk\\)?\\'" . makefile-makepp-mode) ; Put this before .mk
2495 ("\\.makepp\\'" . makefile-makepp-mode)
2496 ,@(if (memq system-type '(berkeley-unix darwin))
2497 '(("\\.mk\\'" . makefile-bsdmake-mode)
2498 ("\\.make\\'" . makefile-bsdmake-mode)
2499 ("GNUmakefile\\'" . makefile-gmake-mode)
2500 ("[Mm]akefile\\'" . makefile-bsdmake-mode))
2501 '(("\\.mk\\'" . makefile-gmake-mode) ; Might be any make, give Gnu the host advantage
2502 ("\\.make\\'" . makefile-gmake-mode)
2503 ("[Mm]akefile\\'" . makefile-gmake-mode)))
2504 ("\\.am\\'" . makefile-automake-mode)
2505 ;; Less common extensions come here
2506 ;; so more common ones above are found faster.
2507 ("\\.texinfo\\'" . texinfo-mode)
2508 ("\\.te?xi\\'" . texinfo-mode)
2509 ("\\.[sS]\\'" . asm-mode)
2510 ("\\.asm\\'" . asm-mode)
2511 ("\\.css\\'" . css-mode)
2512 ("\\.mixal\\'" . mixal-mode)
2513 ("\\.gcov\\'" . compilation-mode)
2514 ;; Besides .gdbinit, gdb documents other names to be usable for init
2515 ;; files, cross-debuggers can use something like
2516 ;; .PROCESSORNAME-gdbinit so that the host and target gdbinit files
2517 ;; don't interfere with each other.
2518 ("/\\.[a-z0-9-]*gdbinit" . gdb-script-mode)
2519 ;; GDB 7.5 introduced OBJFILE-gdb.gdb script files; e.g. a file
2520 ;; named 'emacs-gdb.gdb', if it exists, will be automatically
2521 ;; loaded when GDB reads an objfile called 'emacs'.
2522 ("-gdb\\.gdb" . gdb-script-mode)
2523 ("[cC]hange\\.?[lL]og?\\'" . change-log-mode)
2524 ("[cC]hange[lL]og[-.][0-9]+\\'" . change-log-mode)
2525 ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode)
2526 ("\\.scm\\.[0-9]*\\'" . scheme-mode)
2527 ("\\.[ckz]?sh\\'\\|\\.shar\\'\\|/\\.z?profile\\'" . sh-mode)
2528 ("\\.bash\\'" . sh-mode)
2529 ("\\(/\\|\\`\\)\\.\\(bash_\\(profile\\|history\\|log\\(in\\|out\\)\\)\\|z?log\\(in\\|out\\)\\)\\'" . sh-mode)
2530 ("\\(/\\|\\`\\)\\.\\(shrc\\|zshrc\\|m?kshrc\\|bashrc\\|t?cshrc\\|esrc\\)\\'" . sh-mode)
2531 ("\\(/\\|\\`\\)\\.\\([kz]shenv\\|xinitrc\\|startxrc\\|xsession\\)\\'" . sh-mode)
2532 ("\\.m?spec\\'" . sh-mode)
2533 ("\\.m[mes]\\'" . nroff-mode)
2534 ("\\.man\\'" . nroff-mode)
2535 ("\\.sty\\'" . latex-mode)
2536 ("\\.cl[so]\\'" . latex-mode) ;LaTeX 2e class option
2537 ("\\.bbl\\'" . latex-mode)
2538 ("\\.bib\\'" . bibtex-mode)
2539 ("\\.bst\\'" . bibtex-style-mode)
2540 ("\\.sql\\'" . sql-mode)
2541 ("\\.m[4c]\\'" . m4-mode)
2542 ("\\.mf\\'" . metafont-mode)
2543 ("\\.mp\\'" . metapost-mode)
2544 ("\\.vhdl?\\'" . vhdl-mode)
2545 ("\\.article\\'" . text-mode)
2546 ("\\.letter\\'" . text-mode)
2547 ("\\.i?tcl\\'" . tcl-mode)
2548 ("\\.exp\\'" . tcl-mode)
2549 ("\\.itk\\'" . tcl-mode)
2550 ("\\.icn\\'" . icon-mode)
2551 ("\\.sim\\'" . simula-mode)
2552 ("\\.mss\\'" . scribe-mode)
2553 ;; The Fortran standard does not say anything about file extensions.
2554 ;; .f90 was widely used for F90, now we seem to be trapped into
2555 ;; using a different extension for each language revision.
2556 ;; Anyway, the following extensions are supported by gfortran.
2557 ("\\.f9[05]\\'" . f90-mode)
2558 ("\\.f0[38]\\'" . f90-mode)
2559 ("\\.indent\\.pro\\'" . fundamental-mode) ; to avoid idlwave-mode
2560 ("\\.\\(pro\\|PRO\\)\\'" . idlwave-mode)
2561 ("\\.srt\\'" . srecode-template-mode)
2562 ("\\.prolog\\'" . prolog-mode)
2563 ("\\.tar\\'" . tar-mode)
2564 ;; The list of archive file extensions should be in sync with
2565 ;; `auto-coding-alist' with `no-conversion' coding system.
2566 ("\\.\\(\
2567 arc\\|zip\\|lzh\\|lha\\|zoo\\|[jew]ar\\|xpi\\|rar\\|cbr\\|7z\\|\
2568 ARC\\|ZIP\\|LZH\\|LHA\\|ZOO\\|[JEW]AR\\|XPI\\|RAR\\|CBR\\|7Z\\)\\'" . archive-mode)
2569 ("\\.oxt\\'" . archive-mode) ;(Open|Libre)Office extensions.
2570 ("\\.\\(deb\\|[oi]pk\\)\\'" . archive-mode) ; Debian/Opkg packages.
2571 ;; Mailer puts message to be edited in
2572 ;; /tmp/Re.... or Message
2573 ("\\`/tmp/Re" . text-mode)
2574 ("/Message[0-9]*\\'" . text-mode)
2575 ;; some news reader is reported to use this
2576 ("\\`/tmp/fol/" . text-mode)
2577 ("\\.oak\\'" . scheme-mode)
2578 ("\\.sgml?\\'" . sgml-mode)
2579 ("\\.x[ms]l\\'" . xml-mode)
2580 ("\\.dbk\\'" . xml-mode)
2581 ("\\.dtd\\'" . sgml-mode)
2582 ("\\.ds\\(ss\\)?l\\'" . dsssl-mode)
2583 ("\\.jsm?\\'" . javascript-mode)
2584 ("\\.json\\'" . javascript-mode)
2585 ("\\.jsx\\'" . js-jsx-mode)
2586 ("\\.[ds]?vh?\\'" . verilog-mode)
2587 ("\\.by\\'" . bovine-grammar-mode)
2588 ("\\.wy\\'" . wisent-grammar-mode)
2589 ;; .emacs or .gnus or .viper following a directory delimiter in
2590 ;; Unix or MS-DOS syntax.
2591 ("[:/\\]\\..*\\(emacs\\|gnus\\|viper\\)\\'" . emacs-lisp-mode)
2592 ("\\`\\..*emacs\\'" . emacs-lisp-mode)
2593 ;; _emacs following a directory delimiter in MS-DOS syntax
2594 ("[:/]_emacs\\'" . emacs-lisp-mode)
2595 ("/crontab\\.X*[0-9]+\\'" . shell-script-mode)
2596 ("\\.ml\\'" . lisp-mode)
2597 ;; Linux-2.6.9 uses some different suffix for linker scripts:
2598 ;; "ld", "lds", "lds.S", "lds.in", "ld.script", and "ld.script.balo".
2599 ;; eCos uses "ld" and "ldi". Netbsd uses "ldscript.*".
2600 ("\\.ld[si]?\\'" . ld-script-mode)
2601 ("ld\\.?script\\'" . ld-script-mode)
2602 ;; .xs is also used for ld scripts, but seems to be more commonly
2603 ;; associated with Perl .xs files (C with Perl bindings). (Bug#7071)
2604 ("\\.xs\\'" . c-mode)
2605 ;; Explained in binutils ld/genscripts.sh. Eg:
2606 ;; A .x script file is the default script.
2607 ;; A .xr script is for linking without relocation (-r flag). Etc.
2608 ("\\.x[abdsru]?[cnw]?\\'" . ld-script-mode)
2609 ("\\.zone\\'" . dns-mode)
2610 ("\\.soa\\'" . dns-mode)
2611 ;; Common Lisp ASDF package system.
2612 ("\\.asd\\'" . lisp-mode)
2613 ("\\.\\(asn\\|mib\\|smi\\)\\'" . snmp-mode)
2614 ("\\.\\(as\\|mi\\|sm\\)2\\'" . snmpv2-mode)
2615 ("\\.\\(diffs?\\|patch\\|rej\\)\\'" . diff-mode)
2616 ("\\.\\(dif\\|pat\\)\\'" . diff-mode) ; for MS-DOS
2617 ("\\.[eE]?[pP][sS]\\'" . ps-mode)
2618 ("\\.\\(?:PDF\\|DVI\\|OD[FGPST]\\|DOCX?\\|XLSX?\\|PPTX?\\|pdf\\|djvu\\|dvi\\|od[fgpst]\\|docx?\\|xlsx?\\|pptx?\\)\\'" . doc-view-mode-maybe)
2619 ("configure\\.\\(ac\\|in\\)\\'" . autoconf-mode)
2620 ("\\.s\\(v\\|iv\\|ieve\\)\\'" . sieve-mode)
2621 ("BROWSE\\'" . ebrowse-tree-mode)
2622 ("\\.ebrowse\\'" . ebrowse-tree-mode)
2623 ("#\\*mail\\*" . mail-mode)
2624 ("\\.g\\'" . antlr-mode)
2625 ("\\.mod\\'" . m2-mode)
2626 ("\\.ses\\'" . ses-mode)
2627 ("\\.docbook\\'" . sgml-mode)
2628 ("\\.com\\'" . dcl-mode)
2629 ("/config\\.\\(?:bat\\|log\\)\\'" . fundamental-mode)
2630 ;; Windows candidates may be opened case sensitively on Unix
2631 ("\\.\\(?:[iI][nN][iI]\\|[lL][sS][tT]\\|[rR][eE][gG]\\|[sS][yY][sS]\\)\\'" . conf-mode)
2632 ("\\.la\\'" . conf-unix-mode)
2633 ("\\.ppd\\'" . conf-ppd-mode)
2634 ("java.+\\.conf\\'" . conf-javaprop-mode)
2635 ("\\.properties\\(?:\\.[a-zA-Z0-9._-]+\\)?\\'" . conf-javaprop-mode)
2636 ("\\.toml\\'" . conf-toml-mode)
2637 ("\\.desktop\\'" . conf-desktop-mode)
2638 ("\\`/etc/\\(?:DIR_COLORS\\|ethers\\|.?fstab\\|.*hosts\\|lesskey\\|login\\.?de\\(?:fs\\|vperm\\)\\|magic\\|mtab\\|pam\\.d/.*\\|permissions\\(?:\\.d/.+\\)?\\|protocols\\|rpc\\|services\\)\\'" . conf-space-mode)
2639 ("\\`/etc/\\(?:acpid?/.+\\|aliases\\(?:\\.d/.+\\)?\\|default/.+\\|group-?\\|hosts\\..+\\|inittab\\|ksysguarddrc\\|opera6rc\\|passwd-?\\|shadow-?\\|sysconfig/.+\\)\\'" . conf-mode)
2640 ;; ChangeLog.old etc. Other change-log-mode entries are above;
2641 ;; this has lower priority to avoid matching changelog.sgml etc.
2642 ("[cC]hange[lL]og[-.][-0-9a-z]+\\'" . change-log-mode)
2643 ;; either user's dot-files or under /etc or some such
2644 ("/\\.?\\(?:gitconfig\\|gnokiirc\\|hgrc\\|kde.*rc\\|mime\\.types\\|wgetrc\\)\\'" . conf-mode)
2645 ;; alas not all ~/.*rc files are like this
2646 ("/\\.\\(?:enigma\\|gltron\\|gtk\\|hxplayer\\|net\\|neverball\\|qt/.+\\|realplayer\\|scummvm\\|sversion\\|sylpheed/.+\\|xmp\\)rc\\'" . conf-mode)
2647 ("/\\.\\(?:gdbtkinit\\|grip\\|orbital/.+txt\\|rhosts\\|tuxracer/options\\)\\'" . conf-mode)
2648 ("/\\.?X\\(?:default\\|resource\\|re\\)s\\>" . conf-xdefaults-mode)
2649 ("/X11.+app-defaults/\\|\\.ad\\'" . conf-xdefaults-mode)
2650 ("/X11.+locale/.+/Compose\\'" . conf-colon-mode)
2651 ;; this contains everything twice, with space and with colon :-(
2652 ("/X11.+locale/compose\\.dir\\'" . conf-javaprop-mode)
2653 ;; Get rid of any trailing .n.m and try again.
2654 ;; This is for files saved by cvs-merge that look like .#<file>.<rev>
2655 ;; or .#<file>.<rev>-<rev> or VC's <file>.~<rev>~.
2656 ;; Using mode nil rather than `ignore' would let the search continue
2657 ;; through this list (with the shortened name) rather than start over.
2658 ("\\.~?[0-9]+\\.[0-9][-.0-9]*~?\\'" nil t)
2659 ("\\.\\(?:orig\\|in\\|[bB][aA][kK]\\)\\'" nil t)
2660 ;; This should come after "in" stripping (e.g. config.h.in).
2661 ;; *.cf, *.cfg, *.conf, *.config[.local|.de_DE.UTF8|...], */config
2662 ("[/.]c\\(?:on\\)?f\\(?:i?g\\)?\\(?:\\.[a-zA-Z0-9._-]+\\)?\\'" . conf-mode-maybe)
2663 ;; The following should come after the ChangeLog pattern
2664 ;; for the sake of ChangeLog.1, etc.
2665 ;; and after the .scm.[0-9] and CVS' <file>.<rev> patterns too.
2666 ("\\.[1-9]\\'" . nroff-mode)))
2667 "Alist of filename patterns vs corresponding major mode functions.
2668 Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL).
2669 \(NON-NIL stands for anything that is not nil; the value does not matter.)
2670 Visiting a file whose name matches REGEXP specifies FUNCTION as the
2671 mode function to use. FUNCTION will be called, unless it is nil.
2673 If the element has the form (REGEXP FUNCTION NON-NIL), then after
2674 calling FUNCTION (if it's not nil), we delete the suffix that matched
2675 REGEXP and search the list again for another match.
2677 The extensions whose FUNCTION is `archive-mode' should also
2678 appear in `auto-coding-alist' with `no-conversion' coding system.
2680 See also `interpreter-mode-alist', which detects executable script modes
2681 based on the interpreters they specify to run,
2682 and `magic-mode-alist', which determines modes based on file contents.")
2683 (put 'auto-mode-alist 'risky-local-variable t)
2685 (defun conf-mode-maybe ()
2686 "Select Conf mode or XML mode according to start of file."
2687 (if (save-excursion
2688 (save-restriction
2689 (widen)
2690 (goto-char (point-min))
2691 (looking-at "<\\?xml \\|<!-- \\|<!DOCTYPE ")))
2692 (xml-mode)
2693 (conf-mode)))
2695 (defvar interpreter-mode-alist
2696 ;; Note: The entries for the modes defined in cc-mode.el (awk-mode
2697 ;; and pike-mode) are added through autoload directives in that
2698 ;; file. That way is discouraged since it spreads out the
2699 ;; definition of the initial value.
2700 (mapcar
2701 (lambda (l)
2702 (cons (purecopy (car l)) (cdr l)))
2703 '(("\\(mini\\)?perl5?" . perl-mode)
2704 ("wishx?" . tcl-mode)
2705 ("tcl\\(sh\\)?" . tcl-mode)
2706 ("expect" . tcl-mode)
2707 ("octave" . octave-mode)
2708 ("scm" . scheme-mode)
2709 ("[acjkwz]sh" . sh-mode)
2710 ("r?bash2?" . sh-mode)
2711 ("dash" . sh-mode)
2712 ("mksh" . sh-mode)
2713 ("\\(dt\\|pd\\|w\\)ksh" . sh-mode)
2714 ("es" . sh-mode)
2715 ("i?tcsh" . sh-mode)
2716 ("oash" . sh-mode)
2717 ("rc" . sh-mode)
2718 ("rpm" . sh-mode)
2719 ("sh5?" . sh-mode)
2720 ("tail" . text-mode)
2721 ("more" . text-mode)
2722 ("less" . text-mode)
2723 ("pg" . text-mode)
2724 ("make" . makefile-gmake-mode) ; Debian uses this
2725 ("guile" . scheme-mode)
2726 ("clisp" . lisp-mode)
2727 ("emacs" . emacs-lisp-mode)))
2728 "Alist mapping interpreter names to major modes.
2729 This is used for files whose first lines match `auto-mode-interpreter-regexp'.
2730 Each element looks like (REGEXP . MODE).
2731 If REGEXP matches the entire name (minus any directory part) of
2732 the interpreter specified in the first line of a script, enable
2733 major mode MODE.
2735 See also `auto-mode-alist'.")
2737 (define-obsolete-variable-alias 'inhibit-first-line-modes-regexps
2738 'inhibit-file-local-variables-regexps "24.1")
2740 ;; TODO really this should be a list of modes (eg tar-mode), not regexps,
2741 ;; because we are duplicating info from auto-mode-alist.
2742 ;; TODO many elements of this list are also in auto-coding-alist.
2743 (defvar inhibit-local-variables-regexps
2744 (mapcar 'purecopy '("\\.tar\\'" "\\.t[bg]z\\'"
2745 "\\.arc\\'" "\\.zip\\'" "\\.lzh\\'" "\\.lha\\'"
2746 "\\.zoo\\'" "\\.[jew]ar\\'" "\\.xpi\\'" "\\.rar\\'"
2747 "\\.7z\\'"
2748 "\\.sx[dmicw]\\'" "\\.odt\\'"
2749 "\\.diff\\'" "\\.patch\\'"
2750 "\\.tiff?\\'" "\\.gif\\'" "\\.png\\'" "\\.jpe?g\\'"))
2751 "List of regexps matching file names in which to ignore local variables.
2752 This includes `-*-' lines as well as trailing \"Local Variables\" sections.
2753 Files matching this list are typically binary file formats.
2754 They may happen to contain sequences that look like local variable
2755 specifications, but are not really, or they may be containers for
2756 member files with their own local variable sections, which are
2757 not appropriate for the containing file.
2758 The function `inhibit-local-variables-p' uses this.")
2760 (define-obsolete-variable-alias 'inhibit-first-line-modes-suffixes
2761 'inhibit-local-variables-suffixes "24.1")
2763 (defvar inhibit-local-variables-suffixes nil
2764 "List of regexps matching suffixes to remove from file names.
2765 The function `inhibit-local-variables-p' uses this: when checking
2766 a file name, it first discards from the end of the name anything that
2767 matches one of these regexps.")
2769 ;; Can't think of any situation in which you'd want this to be nil...
2770 (defvar inhibit-local-variables-ignore-case t
2771 "Non-nil means `inhibit-local-variables-p' ignores case.")
2773 (defun inhibit-local-variables-p ()
2774 "Return non-nil if file local variables should be ignored.
2775 This checks the file (or buffer) name against `inhibit-local-variables-regexps'
2776 and `inhibit-local-variables-suffixes'. If
2777 `inhibit-local-variables-ignore-case' is non-nil, this ignores case."
2778 (let ((temp inhibit-local-variables-regexps)
2779 (name (if buffer-file-name
2780 (file-name-sans-versions buffer-file-name)
2781 (buffer-name)))
2782 (case-fold-search inhibit-local-variables-ignore-case))
2783 (while (let ((sufs inhibit-local-variables-suffixes))
2784 (while (and sufs (not (string-match (car sufs) name)))
2785 (setq sufs (cdr sufs)))
2786 sufs)
2787 (setq name (substring name 0 (match-beginning 0))))
2788 (while (and temp
2789 (not (string-match (car temp) name)))
2790 (setq temp (cdr temp)))
2791 temp))
2793 (defvar auto-mode-interpreter-regexp
2794 (purecopy "#![ \t]?\\([^ \t\n]*\
2795 /bin/env[ \t]\\)?\\([^ \t\n]+\\)")
2796 "Regexp matching interpreters, for file mode determination.
2797 This regular expression is matched against the first line of a file
2798 to determine the file's mode in `set-auto-mode'. If it matches, the file
2799 is assumed to be interpreted by the interpreter matched by the second group
2800 of the regular expression. The mode is then determined as the mode
2801 associated with that interpreter in `interpreter-mode-alist'.")
2803 (defvar magic-mode-alist nil
2804 "Alist of buffer beginnings vs. corresponding major mode functions.
2805 Each element looks like (REGEXP . FUNCTION) or (MATCH-FUNCTION . FUNCTION).
2806 After visiting a file, if REGEXP matches the text at the beginning of the
2807 buffer, or calling MATCH-FUNCTION returns non-nil, `normal-mode' will
2808 call FUNCTION rather than allowing `auto-mode-alist' to decide the buffer's
2809 major mode.
2811 If FUNCTION is nil, then it is not called. (That is a way of saying
2812 \"allow `auto-mode-alist' to decide for these files.\")")
2813 (put 'magic-mode-alist 'risky-local-variable t)
2815 (defvar magic-fallback-mode-alist
2816 (purecopy
2817 `((image-type-auto-detected-p . image-mode)
2818 ("\\(PK00\\)?[P]K\003\004" . archive-mode) ; zip
2819 ;; The < comes before the groups (but the first) to reduce backtracking.
2820 ;; TODO: UTF-16 <?xml may be preceded by a BOM 0xff 0xfe or 0xfe 0xff.
2821 ;; We use [ \t\r\n] instead of `\\s ' to make regex overflow less likely.
2822 (,(let* ((incomment-re "\\(?:[^-]\\|-[^-]\\)")
2823 (comment-re (concat "\\(?:!--" incomment-re "*-->[ \t\r\n]*<\\)")))
2824 (concat "\\(?:<\\?xml[ \t\r\n]+[^>]*>\\)?[ \t\r\n]*<"
2825 comment-re "*"
2826 "\\(?:!DOCTYPE[ \t\r\n]+[^>]*>[ \t\r\n]*<[ \t\r\n]*" comment-re "*\\)?"
2827 "[Hh][Tt][Mm][Ll]"))
2828 . mhtml-mode)
2829 ("<!DOCTYPE[ \t\r\n]+[Hh][Tt][Mm][Ll]" . mhtml-mode)
2830 ;; These two must come after html, because they are more general:
2831 ("<\\?xml " . xml-mode)
2832 (,(let* ((incomment-re "\\(?:[^-]\\|-[^-]\\)")
2833 (comment-re (concat "\\(?:!--" incomment-re "*-->[ \t\r\n]*<\\)")))
2834 (concat "[ \t\r\n]*<" comment-re "*!DOCTYPE "))
2835 . sgml-mode)
2836 ("%!PS" . ps-mode)
2837 ("# xmcd " . conf-unix-mode)))
2838 "Like `magic-mode-alist' but has lower priority than `auto-mode-alist'.
2839 Each element looks like (REGEXP . FUNCTION) or (MATCH-FUNCTION . FUNCTION).
2840 After visiting a file, if REGEXP matches the text at the beginning of the
2841 buffer, or calling MATCH-FUNCTION returns non-nil, `normal-mode' will
2842 call FUNCTION, provided that `magic-mode-alist' and `auto-mode-alist'
2843 have not specified a mode for this file.
2845 If FUNCTION is nil, then it is not called.")
2846 (put 'magic-fallback-mode-alist 'risky-local-variable t)
2848 (defvar magic-mode-regexp-match-limit 4000
2849 "Upper limit on `magic-mode-alist' regexp matches.
2850 Also applies to `magic-fallback-mode-alist'.")
2852 (defun set-auto-mode (&optional keep-mode-if-same)
2853 "Select major mode appropriate for current buffer.
2855 To find the right major mode, this function checks for a -*- mode tag
2856 checks for a `mode:' entry in the Local Variables section of the file,
2857 checks if it uses an interpreter listed in `interpreter-mode-alist',
2858 matches the buffer beginning against `magic-mode-alist',
2859 compares the filename against the entries in `auto-mode-alist',
2860 then matches the buffer beginning against `magic-fallback-mode-alist'.
2862 If `enable-local-variables' is nil, or if the file name matches
2863 `inhibit-local-variables-regexps', this function does not check
2864 for any mode: tag anywhere in the file. If `local-enable-local-variables'
2865 is nil, then the only mode: tag that can be relevant is a -*- one.
2867 If the optional argument KEEP-MODE-IF-SAME is non-nil, then we
2868 set the major mode only if that would change it. In other words
2869 we don't actually set it to the same mode the buffer already has."
2870 ;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*-
2871 (let ((try-locals (not (inhibit-local-variables-p)))
2872 end done mode modes)
2873 ;; Once we drop the deprecated feature where mode: is also allowed to
2874 ;; specify minor-modes (ie, there can be more than one "mode:"), we can
2875 ;; remove this section and just let (hack-local-variables t) handle it.
2876 ;; Find a -*- mode tag.
2877 (save-excursion
2878 (goto-char (point-min))
2879 (skip-chars-forward " \t\n")
2880 ;; Note by design local-enable-local-variables does not matter here.
2881 (and enable-local-variables
2882 try-locals
2883 (setq end (set-auto-mode-1))
2884 (if (save-excursion (search-forward ":" end t))
2885 ;; Find all specifications for the `mode:' variable
2886 ;; and execute them left to right.
2887 (while (let ((case-fold-search t))
2888 (or (and (looking-at "mode:")
2889 (goto-char (match-end 0)))
2890 (re-search-forward "[ \t;]mode:" end t)))
2891 (skip-chars-forward " \t")
2892 (let ((beg (point)))
2893 (if (search-forward ";" end t)
2894 (forward-char -1)
2895 (goto-char end))
2896 (skip-chars-backward " \t")
2897 (push (intern (concat (downcase (buffer-substring beg (point))) "-mode"))
2898 modes)))
2899 ;; Simple -*-MODE-*- case.
2900 (push (intern (concat (downcase (buffer-substring (point) end))
2901 "-mode"))
2902 modes))))
2903 ;; If we found modes to use, invoke them now, outside the save-excursion.
2904 (if modes
2905 (catch 'nop
2906 (dolist (mode (nreverse modes))
2907 (if (not (functionp mode))
2908 (message "Ignoring unknown mode `%s'" mode)
2909 (setq done t)
2910 (or (set-auto-mode-0 mode keep-mode-if-same)
2911 ;; continuing would call minor modes again, toggling them off
2912 (throw 'nop nil))))))
2913 ;; hack-local-variables checks local-enable-local-variables etc, but
2914 ;; we might as well be explicit here for the sake of clarity.
2915 (and (not done)
2916 enable-local-variables
2917 local-enable-local-variables
2918 try-locals
2919 (setq mode (hack-local-variables t))
2920 (not (memq mode modes)) ; already tried and failed
2921 (if (not (functionp mode))
2922 (message "Ignoring unknown mode `%s'" mode)
2923 (setq done t)
2924 (set-auto-mode-0 mode keep-mode-if-same)))
2925 ;; If we didn't, look for an interpreter specified in the first line.
2926 ;; As a special case, allow for things like "#!/bin/env perl", which
2927 ;; finds the interpreter anywhere in $PATH.
2928 (and (not done)
2929 (setq mode (save-excursion
2930 (goto-char (point-min))
2931 (if (looking-at auto-mode-interpreter-regexp)
2932 (match-string 2))))
2933 ;; Map interpreter name to a mode, signaling we're done at the
2934 ;; same time.
2935 (setq done (assoc-default
2936 (file-name-nondirectory mode)
2937 (mapcar (lambda (e)
2938 (cons
2939 (format "\\`%s\\'" (car e))
2940 (cdr e)))
2941 interpreter-mode-alist)
2942 #'string-match-p))
2943 ;; If we found an interpreter mode to use, invoke it now.
2944 (set-auto-mode-0 done keep-mode-if-same))
2945 ;; Next try matching the buffer beginning against magic-mode-alist.
2946 (unless done
2947 (if (setq done (save-excursion
2948 (goto-char (point-min))
2949 (save-restriction
2950 (narrow-to-region (point-min)
2951 (min (point-max)
2952 (+ (point-min) magic-mode-regexp-match-limit)))
2953 (assoc-default
2954 nil magic-mode-alist
2955 (lambda (re _dummy)
2956 (cond
2957 ((functionp re)
2958 (funcall re))
2959 ((stringp re)
2960 (looking-at re))
2962 (error
2963 "Problem in magic-mode-alist with element %s"
2964 re))))))))
2965 (set-auto-mode-0 done keep-mode-if-same)))
2966 ;; Next compare the filename against the entries in auto-mode-alist.
2967 (unless done
2968 (if buffer-file-name
2969 (let ((name buffer-file-name)
2970 (remote-id (file-remote-p buffer-file-name))
2971 (case-insensitive-p (file-name-case-insensitive-p
2972 buffer-file-name)))
2973 ;; Remove backup-suffixes from file name.
2974 (setq name (file-name-sans-versions name))
2975 ;; Remove remote file name identification.
2976 (when (and (stringp remote-id)
2977 (string-match (regexp-quote remote-id) name))
2978 (setq name (substring name (match-end 0))))
2979 (while name
2980 ;; Find first matching alist entry.
2981 (setq mode
2982 (if case-insensitive-p
2983 ;; Filesystem is case-insensitive.
2984 (let ((case-fold-search t))
2985 (assoc-default name auto-mode-alist
2986 'string-match))
2987 ;; Filesystem is case-sensitive.
2989 ;; First match case-sensitively.
2990 (let ((case-fold-search nil))
2991 (assoc-default name auto-mode-alist
2992 'string-match))
2993 ;; Fallback to case-insensitive match.
2994 (and auto-mode-case-fold
2995 (let ((case-fold-search t))
2996 (assoc-default name auto-mode-alist
2997 'string-match))))))
2998 (if (and mode
2999 (consp mode)
3000 (cadr mode))
3001 (setq mode (car mode)
3002 name (substring name 0 (match-beginning 0)))
3003 (setq name nil))
3004 (when mode
3005 (set-auto-mode-0 mode keep-mode-if-same)
3006 (setq done t))))))
3007 ;; Next try matching the buffer beginning against magic-fallback-mode-alist.
3008 (unless done
3009 (if (setq done (save-excursion
3010 (goto-char (point-min))
3011 (save-restriction
3012 (narrow-to-region (point-min)
3013 (min (point-max)
3014 (+ (point-min) magic-mode-regexp-match-limit)))
3015 (assoc-default nil magic-fallback-mode-alist
3016 (lambda (re _dummy)
3017 (cond
3018 ((functionp re)
3019 (funcall re))
3020 ((stringp re)
3021 (looking-at re))
3023 (error
3024 "Problem with magic-fallback-mode-alist element: %s"
3025 re))))))))
3026 (set-auto-mode-0 done keep-mode-if-same)))
3027 (unless done
3028 (set-buffer-major-mode (current-buffer)))))
3030 ;; When `keep-mode-if-same' is set, we are working on behalf of
3031 ;; set-visited-file-name. In that case, if the major mode specified is the
3032 ;; same one we already have, don't actually reset it. We don't want to lose
3033 ;; minor modes such as Font Lock.
3034 (defun set-auto-mode-0 (mode &optional keep-mode-if-same)
3035 "Apply MODE and return it.
3036 If optional arg KEEP-MODE-IF-SAME is non-nil, MODE is chased of
3037 any aliases and compared to current major mode. If they are the
3038 same, do nothing and return nil."
3039 (unless (and keep-mode-if-same
3040 (eq (indirect-function mode)
3041 (indirect-function major-mode)))
3042 (when mode
3043 (funcall mode)
3044 mode)))
3046 (defvar file-auto-mode-skip "^\\(#!\\|'\\\\\"\\)"
3047 "Regexp of lines to skip when looking for file-local settings.
3048 If the first line matches this regular expression, then the -*-...-*- file-
3049 local settings will be consulted on the second line instead of the first.")
3051 (defun set-auto-mode-1 ()
3052 "Find the -*- spec in the buffer.
3053 Call with point at the place to start searching from.
3054 If one is found, set point to the beginning and return the position
3055 of the end. Otherwise, return nil; may change point.
3056 The variable `inhibit-local-variables-regexps' can cause a -*- spec to
3057 be ignored; but `enable-local-variables' and `local-enable-local-variables'
3058 have no effect."
3059 (let (beg end)
3060 (and
3061 ;; Don't look for -*- if this file name matches any
3062 ;; of the regexps in inhibit-local-variables-regexps.
3063 (not (inhibit-local-variables-p))
3064 (search-forward "-*-" (line-end-position
3065 ;; If the file begins with "#!" (exec
3066 ;; interpreter magic), look for mode frobs
3067 ;; in the first two lines. You cannot
3068 ;; necessarily put them in the first line
3069 ;; of such a file without screwing up the
3070 ;; interpreter invocation. The same holds
3071 ;; for '\" in man pages (preprocessor
3072 ;; magic for the `man' program).
3073 (and (looking-at file-auto-mode-skip) 2)) t)
3074 (progn
3075 (skip-chars-forward " \t")
3076 (setq beg (point))
3077 (search-forward "-*-" (line-end-position) t))
3078 (progn
3079 (forward-char -3)
3080 (skip-chars-backward " \t")
3081 (setq end (point))
3082 (goto-char beg)
3083 end))))
3085 ;;; Handling file local variables
3087 (defvar ignored-local-variables
3088 '(ignored-local-variables safe-local-variable-values
3089 file-local-variables-alist dir-local-variables-alist)
3090 "Variables to be ignored in a file's local variable spec.")
3091 (put 'ignored-local-variables 'risky-local-variable t)
3093 (defvar hack-local-variables-hook nil
3094 "Normal hook run after processing a file's local variables specs.
3095 Major modes can use this to examine user-specified local variables
3096 in order to initialize other data structure based on them.")
3098 (defcustom safe-local-variable-values nil
3099 "List variable-value pairs that are considered safe.
3100 Each element is a cons cell (VAR . VAL), where VAR is a variable
3101 symbol and VAL is a value that is considered safe."
3102 :risky t
3103 :group 'find-file
3104 :type 'alist)
3106 (defcustom safe-local-eval-forms
3107 ;; This should be here at least as long as Emacs supports write-file-hooks.
3108 '((add-hook 'write-file-hooks 'time-stamp)
3109 (add-hook 'write-file-functions 'time-stamp)
3110 (add-hook 'before-save-hook 'time-stamp nil t)
3111 (add-hook 'before-save-hook 'delete-trailing-whitespace nil t))
3112 "Expressions that are considered safe in an `eval:' local variable.
3113 Add expressions to this list if you want Emacs to evaluate them, when
3114 they appear in an `eval' local variable specification, without first
3115 asking you for confirmation."
3116 :risky t
3117 :group 'find-file
3118 :version "24.1" ; added write-file-hooks
3119 :type '(repeat sexp))
3121 ;; Risky local variables:
3122 (mapc (lambda (var) (put var 'risky-local-variable t))
3123 '(after-load-alist
3124 buffer-auto-save-file-name
3125 buffer-file-name
3126 buffer-file-truename
3127 buffer-undo-list
3128 debugger
3129 default-text-properties
3130 eval
3131 exec-directory
3132 exec-path
3133 file-name-handler-alist
3134 frame-title-format
3135 global-mode-string
3136 header-line-format
3137 icon-title-format
3138 inhibit-quit
3139 load-path
3140 max-lisp-eval-depth
3141 max-specpdl-size
3142 minor-mode-map-alist
3143 minor-mode-overriding-map-alist
3144 mode-line-format
3145 mode-name
3146 overriding-local-map
3147 overriding-terminal-local-map
3148 process-environment
3149 standard-input
3150 standard-output
3151 unread-command-events))
3153 ;; Safe local variables:
3155 ;; For variables defined by major modes, the safety declarations can go into
3156 ;; the major mode's file, since that will be loaded before file variables are
3157 ;; processed.
3159 ;; For variables defined by minor modes, put the safety declarations in the
3160 ;; file defining the minor mode after the defcustom/defvar using an autoload
3161 ;; cookie, e.g.:
3163 ;; ;;;###autoload(put 'variable 'safe-local-variable 'stringp)
3165 ;; Otherwise, when Emacs visits a file specifying that local variable, the
3166 ;; minor mode file may not be loaded yet.
3168 ;; For variables defined in the C source code the declaration should go here:
3170 (dolist (pair
3171 '((buffer-read-only . booleanp) ;; C source code
3172 (default-directory . stringp) ;; C source code
3173 (fill-column . integerp) ;; C source code
3174 (indent-tabs-mode . booleanp) ;; C source code
3175 (left-margin . integerp) ;; C source code
3176 (no-update-autoloads . booleanp)
3177 (lexical-binding . booleanp) ;; C source code
3178 (tab-width . integerp) ;; C source code
3179 (truncate-lines . booleanp) ;; C source code
3180 (word-wrap . booleanp) ;; C source code
3181 (bidi-display-reordering . booleanp))) ;; C source code
3182 (put (car pair) 'safe-local-variable (cdr pair)))
3184 (put 'bidi-paragraph-direction 'safe-local-variable
3185 (lambda (v) (memq v '(nil right-to-left left-to-right))))
3187 (put 'c-set-style 'safe-local-eval-function t)
3189 (defvar file-local-variables-alist nil
3190 "Alist of file-local variable settings in the current buffer.
3191 Each element in this list has the form (VAR . VALUE), where VAR
3192 is a file-local variable (a symbol) and VALUE is the value
3193 specified. The actual value in the buffer may differ from VALUE,
3194 if it is changed by the major or minor modes, or by the user.")
3195 (make-variable-buffer-local 'file-local-variables-alist)
3196 (put 'file-local-variables-alist 'permanent-local t)
3198 (defvar dir-local-variables-alist nil
3199 "Alist of directory-local variable settings in the current buffer.
3200 Each element in this list has the form (VAR . VALUE), where VAR
3201 is a directory-local variable (a symbol) and VALUE is the value
3202 specified in .dir-locals.el. The actual value in the buffer
3203 may differ from VALUE, if it is changed by the major or minor modes,
3204 or by the user.")
3205 (make-variable-buffer-local 'dir-local-variables-alist)
3207 (defvar before-hack-local-variables-hook nil
3208 "Normal hook run before setting file-local variables.
3209 It is called after checking for unsafe/risky variables and
3210 setting `file-local-variables-alist', and before applying the
3211 variables stored in `file-local-variables-alist'. A hook
3212 function is allowed to change the contents of this alist.
3214 This hook is called only if there is at least one file-local
3215 variable to set.")
3217 (defun hack-local-variables-confirm (all-vars unsafe-vars risky-vars dir-name)
3218 "Get confirmation before setting up local variable values.
3219 ALL-VARS is the list of all variables to be set up.
3220 UNSAFE-VARS is the list of those that aren't marked as safe or risky.
3221 RISKY-VARS is the list of those that are marked as risky.
3222 If these settings come from directory-local variables, then
3223 DIR-NAME is the name of the associated directory. Otherwise it is nil."
3224 (unless noninteractive
3225 (let ((name (cond (dir-name)
3226 (buffer-file-name
3227 (file-name-nondirectory buffer-file-name))
3228 ((concat "buffer " (buffer-name)))))
3229 (offer-save (and (eq enable-local-variables t)
3230 unsafe-vars))
3231 (buf (get-buffer-create "*Local Variables*")))
3232 ;; Set up the contents of the *Local Variables* buffer.
3233 (with-current-buffer buf
3234 (erase-buffer)
3235 (cond
3236 (unsafe-vars
3237 (insert "The local variables list in " name
3238 "\ncontains values that may not be safe (*)"
3239 (if risky-vars
3240 ", and variables that are risky (**)."
3241 ".")))
3242 (risky-vars
3243 (insert "The local variables list in " name
3244 "\ncontains variables that are risky (**)."))
3246 (insert "A local variables list is specified in " name ".")))
3247 (insert "\n\nDo you want to apply it? You can type
3248 y -- to apply the local variables list.
3249 n -- to ignore the local variables list.")
3250 (if offer-save
3251 (insert "
3252 ! -- to apply the local variables list, and permanently mark these
3253 values (*) as safe (in the future, they will be set automatically.)\n\n")
3254 (insert "\n\n"))
3255 (dolist (elt all-vars)
3256 (cond ((member elt unsafe-vars)
3257 (insert " * "))
3258 ((member elt risky-vars)
3259 (insert " ** "))
3261 (insert " ")))
3262 (princ (car elt) buf)
3263 (insert " : ")
3264 ;; Make strings with embedded whitespace easier to read.
3265 (let ((print-escape-newlines t))
3266 (prin1 (cdr elt) buf))
3267 (insert "\n"))
3268 (set (make-local-variable 'cursor-type) nil)
3269 (set-buffer-modified-p nil)
3270 (goto-char (point-min)))
3272 ;; Display the buffer and read a choice.
3273 (save-window-excursion
3274 (pop-to-buffer buf)
3275 (let* ((exit-chars '(?y ?n ?\s ?\C-g ?\C-v))
3276 (prompt (format "Please type %s%s: "
3277 (if offer-save "y, n, or !" "y or n")
3278 (if (< (line-number-at-pos (point-max))
3279 (window-body-height))
3281 (push ?\C-v exit-chars)
3282 ", or C-v to scroll")))
3283 char)
3284 (if offer-save (push ?! exit-chars))
3285 (while (null char)
3286 (setq char (read-char-choice prompt exit-chars t))
3287 (when (eq char ?\C-v)
3288 (condition-case nil
3289 (scroll-up)
3290 (error (goto-char (point-min))
3291 (recenter 1)))
3292 (setq char nil)))
3293 (when (and offer-save (= char ?!) unsafe-vars)
3294 (customize-push-and-save 'safe-local-variable-values unsafe-vars))
3295 (prog1 (memq char '(?! ?\s ?y))
3296 (quit-window t)))))))
3298 (defconst hack-local-variable-regexp
3299 "[ \t]*\\([^][;\"'?()\\ \t\n]+\\)[ \t]*:[ \t]*")
3301 (defun hack-local-variables-prop-line (&optional handle-mode)
3302 "Return local variables specified in the -*- line.
3303 Usually returns an alist of elements (VAR . VAL), where VAR is a
3304 variable and VAL is the specified value. Ignores any
3305 specification for `coding:', and sometimes for `mode' (which
3306 should have already been handled by `set-auto-coding' and
3307 `set-auto-mode', respectively). Return nil if the -*- line is
3308 malformed.
3310 If HANDLE-MODE is nil, we return the alist of all the local
3311 variables in the line except `coding' as described above. If it
3312 is neither nil nor t, we do the same, except that any settings of
3313 `mode' and `coding' are ignored. If HANDLE-MODE is t, we ignore
3314 all settings in the line except for `mode', which \(if present) we
3315 return as the symbol specifying the mode."
3316 (catch 'malformed-line
3317 (save-excursion
3318 (goto-char (point-min))
3319 (let ((end (set-auto-mode-1))
3320 result)
3321 (cond ((not end)
3322 nil)
3323 ((looking-at "[ \t]*\\([^ \t\n\r:;]+\\)\\([ \t]*-\\*-\\)")
3324 ;; Simple form: "-*- MODENAME -*-".
3325 (if (eq handle-mode t)
3326 (intern (concat (match-string 1) "-mode"))))
3328 ;; Hairy form: '-*-' [ <variable> ':' <value> ';' ]* '-*-'
3329 ;; (last ";" is optional).
3330 ;; If HANDLE-MODE is t, just check for `mode'.
3331 ;; Otherwise, parse the -*- line into the RESULT alist.
3332 (while (not (or (and (eq handle-mode t) result)
3333 (>= (point) end)))
3334 (unless (looking-at hack-local-variable-regexp)
3335 (message "Malformed mode-line: %S"
3336 (buffer-substring-no-properties (point) end))
3337 (throw 'malformed-line nil))
3338 (goto-char (match-end 0))
3339 ;; There used to be a downcase here,
3340 ;; but the manual didn't say so,
3341 ;; and people want to set var names that aren't all lc.
3342 (let* ((key (intern (match-string 1)))
3343 (val (save-restriction
3344 (narrow-to-region (point) end)
3345 (let ((read-circle nil))
3346 (read (current-buffer)))))
3347 ;; It is traditional to ignore
3348 ;; case when checking for `mode' in set-auto-mode,
3349 ;; so we must do that here as well.
3350 ;; That is inconsistent, but we're stuck with it.
3351 ;; The same can be said for `coding' in set-auto-coding.
3352 (keyname (downcase (symbol-name key))))
3353 (cond
3354 ((eq handle-mode t)
3355 (and (equal keyname "mode")
3356 (setq result
3357 (intern (concat (downcase (symbol-name val))
3358 "-mode")))))
3359 ((equal keyname "coding"))
3361 (when (or (not handle-mode)
3362 (not (equal keyname "mode")))
3363 (condition-case nil
3364 (push (cons (cond ((eq key 'eval) 'eval)
3365 ;; Downcase "Mode:".
3366 ((equal keyname "mode") 'mode)
3367 (t (indirect-variable key)))
3368 val)
3369 result)
3370 (error nil)))))
3371 (skip-chars-forward " \t;")))
3372 result))))))
3374 (defun hack-local-variables-filter (variables dir-name)
3375 "Filter local variable settings, querying the user if necessary.
3376 VARIABLES is the alist of variable-value settings. This alist is
3377 filtered based on the values of `ignored-local-variables',
3378 `enable-local-eval', `enable-local-variables', and (if necessary)
3379 user interaction. The results are added to
3380 `file-local-variables-alist', without applying them.
3381 If these settings come from directory-local variables, then
3382 DIR-NAME is the name of the associated directory. Otherwise it is nil."
3383 ;; Find those variables that we may want to save to
3384 ;; `safe-local-variable-values'.
3385 (let (all-vars risky-vars unsafe-vars)
3386 (dolist (elt variables)
3387 (let ((var (car elt))
3388 (val (cdr elt)))
3389 (cond ((memq var ignored-local-variables)
3390 ;; Ignore any variable in `ignored-local-variables'.
3391 nil)
3392 ;; Obey `enable-local-eval'.
3393 ((eq var 'eval)
3394 (when enable-local-eval
3395 (let ((safe (or (hack-one-local-variable-eval-safep val)
3396 ;; In case previously marked safe (bug#5636).
3397 (safe-local-variable-p var val))))
3398 ;; If not safe and e-l-v = :safe, ignore totally.
3399 (when (or safe (not (eq enable-local-variables :safe)))
3400 (push elt all-vars)
3401 (or (eq enable-local-eval t)
3402 safe
3403 (push elt unsafe-vars))))))
3404 ;; Ignore duplicates (except `mode') in the present list.
3405 ((and (assq var all-vars) (not (eq var 'mode))) nil)
3406 ;; Accept known-safe variables.
3407 ((or (memq var '(mode unibyte coding))
3408 (safe-local-variable-p var val))
3409 (push elt all-vars))
3410 ;; The variable is either risky or unsafe:
3411 ((not (eq enable-local-variables :safe))
3412 (push elt all-vars)
3413 (if (risky-local-variable-p var val)
3414 (push elt risky-vars)
3415 (push elt unsafe-vars))))))
3416 (and all-vars
3417 ;; Query, unless all vars are safe or user wants no querying.
3418 (or (and (eq enable-local-variables t)
3419 (null unsafe-vars)
3420 (null risky-vars))
3421 (memq enable-local-variables '(:all :safe))
3422 (hack-local-variables-confirm all-vars unsafe-vars
3423 risky-vars dir-name))
3424 (dolist (elt all-vars)
3425 (unless (memq (car elt) '(eval mode))
3426 (unless dir-name
3427 (setq dir-local-variables-alist
3428 (assq-delete-all (car elt) dir-local-variables-alist)))
3429 (setq file-local-variables-alist
3430 (assq-delete-all (car elt) file-local-variables-alist)))
3431 (push elt file-local-variables-alist)))))
3433 ;; TODO? Warn once per file rather than once per session?
3434 (defvar hack-local-variables--warned-lexical nil)
3436 (defun hack-local-variables (&optional handle-mode)
3437 "Parse and put into effect this buffer's local variables spec.
3438 Uses `hack-local-variables-apply' to apply the variables.
3440 If HANDLE-MODE is nil, we apply all the specified local
3441 variables. If HANDLE-MODE is neither nil nor t, we do the same,
3442 except that any settings of `mode' are ignored.
3444 If HANDLE-MODE is t, all we do is check whether a \"mode:\"
3445 is specified, and return the corresponding mode symbol, or nil.
3446 In this case, we try to ignore minor-modes, and only return a
3447 major-mode.
3449 If `enable-local-variables' or `local-enable-local-variables' is nil,
3450 this function does nothing. If `inhibit-local-variables-regexps'
3451 applies to the file in question, the file is not scanned for
3452 local variables, but directory-local variables may still be applied."
3453 ;; We don't let inhibit-local-variables-p influence the value of
3454 ;; enable-local-variables, because then it would affect dir-local
3455 ;; variables. We don't want to search eg tar files for file local
3456 ;; variable sections, but there is no reason dir-locals cannot apply
3457 ;; to them. The real meaning of inhibit-local-variables-p is "do
3458 ;; not scan this file for local variables".
3459 (let ((enable-local-variables
3460 (and local-enable-local-variables enable-local-variables))
3461 result)
3462 (unless (eq handle-mode t)
3463 (setq file-local-variables-alist nil)
3464 (with-demoted-errors "Directory-local variables error: %s"
3465 ;; Note this is a no-op if enable-local-variables is nil.
3466 (hack-dir-local-variables)))
3467 ;; This entire function is basically a no-op if enable-local-variables
3468 ;; is nil. All it does is set file-local-variables-alist to nil.
3469 (when enable-local-variables
3470 ;; This part used to ignore enable-local-variables when handle-mode
3471 ;; was t. That was inappropriate, eg consider the
3472 ;; (artificial) example of:
3473 ;; (setq local-enable-local-variables nil)
3474 ;; Open a file foo.txt that contains "mode: sh".
3475 ;; It correctly opens in text-mode.
3476 ;; M-x set-visited-file name foo.c, and it incorrectly stays in text-mode.
3477 (unless (or (inhibit-local-variables-p)
3478 ;; If HANDLE-MODE is t, and the prop line specifies a
3479 ;; mode, then we're done, and have no need to scan further.
3480 (and (setq result (hack-local-variables-prop-line
3481 handle-mode))
3482 (eq handle-mode t)))
3483 ;; Look for "Local variables:" line in last page.
3484 (save-excursion
3485 (goto-char (point-max))
3486 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min))
3487 'move)
3488 (when (let ((case-fold-search t))
3489 (search-forward "Local Variables:" nil t))
3490 (skip-chars-forward " \t")
3491 ;; suffix is what comes after "local variables:" in its line.
3492 ;; prefix is what comes before "local variables:" in its line.
3493 (let ((suffix
3494 (concat
3495 (regexp-quote (buffer-substring (point)
3496 (line-end-position)))
3497 "$"))
3498 (prefix
3499 (concat "^" (regexp-quote
3500 (buffer-substring (line-beginning-position)
3501 (match-beginning 0))))))
3503 (forward-line 1)
3504 (let ((startpos (point))
3505 endpos
3506 (thisbuf (current-buffer)))
3507 (save-excursion
3508 (unless (let ((case-fold-search t))
3509 (re-search-forward
3510 (concat prefix "[ \t]*End:[ \t]*" suffix)
3511 nil t))
3512 ;; This used to be an error, but really all it means is
3513 ;; that this may simply not be a local-variables section,
3514 ;; so just ignore it.
3515 (message "Local variables list is not properly terminated"))
3516 (beginning-of-line)
3517 (setq endpos (point)))
3519 (with-temp-buffer
3520 (insert-buffer-substring thisbuf startpos endpos)
3521 (goto-char (point-min))
3522 (subst-char-in-region (point) (point-max) ?\^m ?\n)
3523 (while (not (eobp))
3524 ;; Discard the prefix.
3525 (if (looking-at prefix)
3526 (delete-region (point) (match-end 0))
3527 (error "Local variables entry is missing the prefix"))
3528 (end-of-line)
3529 ;; Discard the suffix.
3530 (if (looking-back suffix (line-beginning-position))
3531 (delete-region (match-beginning 0) (point))
3532 (error "Local variables entry is missing the suffix"))
3533 (forward-line 1))
3534 (goto-char (point-min))
3536 (while (not (or (eobp)
3537 (and (eq handle-mode t) result)))
3538 ;; Find the variable name;
3539 (unless (looking-at hack-local-variable-regexp)
3540 (error "Malformed local variable line: %S"
3541 (buffer-substring-no-properties
3542 (point) (line-end-position))))
3543 (goto-char (match-end 1))
3544 (let* ((str (match-string 1))
3545 (var (intern str))
3546 val val2)
3547 (and (equal (downcase (symbol-name var)) "mode")
3548 (setq var 'mode))
3549 ;; Read the variable value.
3550 (skip-chars-forward "^:")
3551 (forward-char 1)
3552 (let ((read-circle nil))
3553 (setq val (read (current-buffer))))
3554 (if (eq handle-mode t)
3555 (and (eq var 'mode)
3556 ;; Specifying minor-modes via mode: is
3557 ;; deprecated, but try to reject them anyway.
3558 (not (string-match
3559 "-minor\\'"
3560 (setq val2 (downcase (symbol-name val)))))
3561 (setq result (intern (concat val2 "-mode"))))
3562 (cond ((eq var 'coding))
3563 ((eq var 'lexical-binding)
3564 (unless hack-local-variables--warned-lexical
3565 (setq hack-local-variables--warned-lexical t)
3566 (display-warning
3567 'files
3568 (format-message
3569 "%s: `lexical-binding' at end of file unreliable"
3570 (file-name-nondirectory
3571 ;; We are called from
3572 ;; 'with-temp-buffer', so we need
3573 ;; to use 'thisbuf's name in the
3574 ;; warning message.
3575 (or (buffer-file-name thisbuf) ""))))))
3576 ((and (eq var 'mode) handle-mode))
3578 (ignore-errors
3579 (push (cons (if (eq var 'eval)
3580 'eval
3581 (indirect-variable var))
3582 val) result))))))
3583 (forward-line 1))))))))
3584 ;; Now we've read all the local variables.
3585 ;; If HANDLE-MODE is t, return whether the mode was specified.
3586 (if (eq handle-mode t) result
3587 ;; Otherwise, set the variables.
3588 (hack-local-variables-filter result nil)
3589 (hack-local-variables-apply)))))
3591 (defun hack-local-variables-apply ()
3592 "Apply the elements of `file-local-variables-alist'.
3593 If there are any elements, runs `before-hack-local-variables-hook',
3594 then calls `hack-one-local-variable' to apply the alist elements one by one.
3595 Finishes by running `hack-local-variables-hook', regardless of whether
3596 the alist is empty or not.
3598 Note that this function ignores a `mode' entry if it specifies the same
3599 major mode as the buffer already has."
3600 (when file-local-variables-alist
3601 ;; Any 'evals must run in the Right sequence.
3602 (setq file-local-variables-alist
3603 (nreverse file-local-variables-alist))
3604 (run-hooks 'before-hack-local-variables-hook)
3605 (dolist (elt file-local-variables-alist)
3606 (hack-one-local-variable (car elt) (cdr elt))))
3607 (run-hooks 'hack-local-variables-hook))
3609 (defun safe-local-variable-p (sym val)
3610 "Non-nil if SYM is safe as a file-local variable with value VAL.
3611 It is safe if any of these conditions are met:
3613 * There is a matching entry (SYM . VAL) in the
3614 `safe-local-variable-values' user option.
3616 * The `safe-local-variable' property of SYM is a function that
3617 evaluates to a non-nil value with VAL as an argument."
3618 (or (member (cons sym val) safe-local-variable-values)
3619 (let ((safep (get sym 'safe-local-variable)))
3620 (and (functionp safep)
3621 ;; If the function signals an error, that means it
3622 ;; can't assure us that the value is safe.
3623 (with-demoted-errors (funcall safep val))))))
3625 (defun risky-local-variable-p (sym &optional _ignored)
3626 "Non-nil if SYM could be dangerous as a file-local variable.
3627 It is dangerous if either of these conditions are met:
3629 * Its `risky-local-variable' property is non-nil.
3631 * Its name ends with \"hook(s)\", \"function(s)\", \"form(s)\", \"map\",
3632 \"program\", \"command(s)\", \"predicate(s)\", \"frame-alist\",
3633 \"mode-alist\", \"font-lock-(syntactic-)keyword*\",
3634 \"map-alist\", or \"bindat-spec\"."
3635 ;; If this is an alias, check the base name.
3636 (condition-case nil
3637 (setq sym (indirect-variable sym))
3638 (error nil))
3639 (or (get sym 'risky-local-variable)
3640 (string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|\
3641 -commands?$\\|-predicates?$\\|font-lock-keywords$\\|font-lock-keywords\
3642 -[0-9]+$\\|font-lock-syntactic-keywords$\\|-frame-alist$\\|-mode-alist$\\|\
3643 -map$\\|-map-alist$\\|-bindat-spec$" (symbol-name sym))))
3645 (defun hack-one-local-variable-quotep (exp)
3646 (and (consp exp) (eq (car exp) 'quote) (consp (cdr exp))))
3648 (defun hack-one-local-variable-constantp (exp)
3649 (or (and (not (symbolp exp)) (not (consp exp)))
3650 (memq exp '(t nil))
3651 (keywordp exp)
3652 (hack-one-local-variable-quotep exp)))
3654 (defun hack-one-local-variable-eval-safep (exp)
3655 "Return t if it is safe to eval EXP when it is found in a file."
3656 (or (not (consp exp))
3657 ;; Detect certain `put' expressions.
3658 (and (eq (car exp) 'put)
3659 (hack-one-local-variable-quotep (nth 1 exp))
3660 (hack-one-local-variable-quotep (nth 2 exp))
3661 (let ((prop (nth 1 (nth 2 exp)))
3662 (val (nth 3 exp)))
3663 (cond ((memq prop '(lisp-indent-hook
3664 lisp-indent-function
3665 scheme-indent-function))
3666 ;; Only allow safe values (not functions).
3667 (or (numberp val)
3668 (and (hack-one-local-variable-quotep val)
3669 (eq (nth 1 val) 'defun))))
3670 ((eq prop 'edebug-form-spec)
3671 ;; Only allow indirect form specs.
3672 ;; During bootstrapping, edebug-basic-spec might not be
3673 ;; defined yet.
3674 (and (fboundp 'edebug-basic-spec)
3675 (hack-one-local-variable-quotep val)
3676 (edebug-basic-spec (nth 1 val)))))))
3677 ;; Allow expressions that the user requested.
3678 (member exp safe-local-eval-forms)
3679 ;; Certain functions can be allowed with safe arguments
3680 ;; or can specify verification functions to try.
3681 (and (symbolp (car exp))
3682 ;; Allow (minor)-modes calls with no arguments.
3683 ;; This obsoletes the use of "mode:" for such things. (Bug#8613)
3684 (or (and (member (cdr exp) '(nil (1) (0) (-1)))
3685 (string-match "-mode\\'" (symbol-name (car exp))))
3686 (let ((prop (get (car exp) 'safe-local-eval-function)))
3687 (cond ((eq prop t)
3688 (let ((ok t))
3689 (dolist (arg (cdr exp))
3690 (unless (hack-one-local-variable-constantp arg)
3691 (setq ok nil)))
3692 ok))
3693 ((functionp prop)
3694 (funcall prop exp))
3695 ((listp prop)
3696 (let ((ok nil))
3697 (dolist (function prop)
3698 (if (funcall function exp)
3699 (setq ok t)))
3700 ok))))))))
3702 (defun hack-one-local-variable--obsolete (var)
3703 (let ((o (get var 'byte-obsolete-variable)))
3704 (when o
3705 (let ((instead (nth 0 o))
3706 (since (nth 2 o)))
3707 (message "%s is obsolete%s; %s"
3708 var (if since (format " (since %s)" since))
3709 (if (stringp instead)
3710 (substitute-command-keys instead)
3711 (format-message "use `%s' instead" instead)))))))
3713 (defun hack-one-local-variable (var val)
3714 "Set local variable VAR with value VAL.
3715 If VAR is `mode', call `VAL-mode' as a function unless it's
3716 already the major mode."
3717 (pcase var
3718 (`mode
3719 (let ((mode (intern (concat (downcase (symbol-name val))
3720 "-mode"))))
3721 (unless (eq (indirect-function mode)
3722 (indirect-function major-mode))
3723 (funcall mode))))
3724 (`eval
3725 (pcase val
3726 (`(add-hook ',hook . ,_) (hack-one-local-variable--obsolete hook)))
3727 (save-excursion (eval val)))
3729 (hack-one-local-variable--obsolete var)
3730 ;; Make sure the string has no text properties.
3731 ;; Some text properties can get evaluated in various ways,
3732 ;; so it is risky to put them on with a local variable list.
3733 (if (stringp val)
3734 (set-text-properties 0 (length val) nil val))
3735 (set (make-local-variable var) val))))
3737 ;;; Handling directory-local variables, aka project settings.
3739 (defvar dir-locals-class-alist '()
3740 "Alist mapping directory-local variable classes (symbols) to variable lists.")
3742 (defvar dir-locals-directory-cache '()
3743 "List of cached directory roots for directory-local variable classes.
3744 Each element in this list has the form (DIR CLASS MTIME).
3745 DIR is the name of the directory.
3746 CLASS is the name of a variable class (a symbol).
3747 MTIME is the recorded modification time of the directory-local
3748 variables file associated with this entry. This time is a list
3749 of integers (the same format as `file-attributes'), and is
3750 used to test whether the cache entry is still valid.
3751 Alternatively, MTIME can be nil, which means the entry is always
3752 considered valid.")
3754 (defsubst dir-locals-get-class-variables (class)
3755 "Return the variable list for CLASS."
3756 (cdr (assq class dir-locals-class-alist)))
3758 (defun dir-locals-collect-mode-variables (mode-variables variables)
3759 "Collect directory-local variables from MODE-VARIABLES.
3760 VARIABLES is the initial list of variables.
3761 Returns the new list."
3762 (dolist (pair mode-variables variables)
3763 (let* ((variable (car pair))
3764 (value (cdr pair))
3765 (slot (assq variable variables)))
3766 ;; If variables are specified more than once, only use the last. (Why?)
3767 ;; The pseudo-variables mode and eval are different (bug#3430).
3768 (if (and slot (not (memq variable '(mode eval))))
3769 (setcdr slot value)
3770 ;; Need a new cons in case we setcdr later.
3771 (push (cons variable value) variables)))))
3773 (defun dir-locals-collect-variables (class-variables root variables)
3774 "Collect entries from CLASS-VARIABLES into VARIABLES.
3775 ROOT is the root directory of the project.
3776 Return the new variables list."
3777 (let* ((file-name (or (buffer-file-name)
3778 ;; Handle non-file buffers, too.
3779 (expand-file-name default-directory)))
3780 (sub-file-name (if (and file-name
3781 (file-name-absolute-p file-name))
3782 ;; FIXME: Why not use file-relative-name?
3783 (substring file-name (length root)))))
3784 (condition-case err
3785 (dolist (entry class-variables variables)
3786 (let ((key (car entry)))
3787 (cond
3788 ((stringp key)
3789 ;; Don't include this in the previous condition, because we
3790 ;; want to filter all strings before the next condition.
3791 (when (and sub-file-name
3792 (>= (length sub-file-name) (length key))
3793 (string-prefix-p key sub-file-name))
3794 (setq variables (dir-locals-collect-variables
3795 (cdr entry) root variables))))
3796 ((or (not key)
3797 (derived-mode-p key))
3798 (let* ((alist (cdr entry))
3799 (subdirs (assq 'subdirs alist)))
3800 (if (or (not subdirs)
3801 (progn
3802 (setq alist (delq subdirs alist))
3803 (cdr-safe subdirs))
3804 ;; TODO someone might want to extend this to allow
3805 ;; integer values for subdir, where N means
3806 ;; variables apply to this directory and N levels
3807 ;; below it (0 == nil).
3808 (equal root default-directory))
3809 (setq variables (dir-locals-collect-mode-variables
3810 alist variables))))))))
3811 (error
3812 ;; The file's content might be invalid (e.g. have a merge conflict), but
3813 ;; that shouldn't prevent the user from opening the file.
3814 (message "%s error: %s" dir-locals-file (error-message-string err))
3815 nil))))
3817 (defun dir-locals-set-directory-class (directory class &optional mtime)
3818 "Declare that the DIRECTORY root is an instance of CLASS.
3819 DIRECTORY is the name of a directory, a string.
3820 CLASS is the name of a project class, a symbol.
3821 MTIME is either the modification time of the directory-local
3822 variables file that defined this class, or nil.
3824 When a file beneath DIRECTORY is visited, the mode-specific
3825 variables from CLASS are applied to the buffer. The variables
3826 for a class are defined using `dir-locals-set-class-variables'."
3827 (setq directory (file-name-as-directory (expand-file-name directory)))
3828 (unless (assq class dir-locals-class-alist)
3829 (error "No such class `%s'" (symbol-name class)))
3830 (push (list directory class mtime) dir-locals-directory-cache))
3832 (defun dir-locals-set-class-variables (class variables)
3833 "Map the type CLASS to a list of variable settings.
3834 CLASS is the project class, a symbol. VARIABLES is a list
3835 that declares directory-local variables for the class.
3836 An element in VARIABLES is either of the form:
3837 (MAJOR-MODE . ALIST)
3839 (DIRECTORY . LIST)
3841 In the first form, MAJOR-MODE is a symbol, and ALIST is an alist
3842 whose elements are of the form (VARIABLE . VALUE).
3844 In the second form, DIRECTORY is a directory name (a string), and
3845 LIST is a list of the form accepted by the function.
3847 When a file is visited, the file's class is found. A directory
3848 may be assigned a class using `dir-locals-set-directory-class'.
3849 Then variables are set in the file's buffer according to the
3850 VARIABLES list of the class. The list is processed in order.
3852 * If the element is of the form (MAJOR-MODE . ALIST), and the
3853 buffer's major mode is derived from MAJOR-MODE (as determined
3854 by `derived-mode-p'), then all the variables in ALIST are
3855 applied. A MAJOR-MODE of nil may be used to match any buffer.
3856 `make-local-variable' is called for each variable before it is
3857 set.
3859 * If the element is of the form (DIRECTORY . LIST), and DIRECTORY
3860 is an initial substring of the file's directory, then LIST is
3861 applied by recursively following these rules."
3862 (setf (alist-get class dir-locals-class-alist) variables))
3864 (defconst dir-locals-file ".dir-locals.el"
3865 "File that contains directory-local variables.
3866 It has to be constant to enforce uniform values across different
3867 environments and users.
3868 See also `dir-locals-file-2', whose values override this one's.
3869 See Info node `(elisp)Directory Local Variables' for details.")
3871 (defconst dir-locals-file-2 ".dir-locals-2.el"
3872 "File that contains directory-local variables.
3873 This essentially a second file that can be used like
3874 `dir-locals-file', so that users can have specify their personal
3875 dir-local variables even if the current directory already has a
3876 `dir-locals-file' that is shared with other users (such as in a
3877 git repository).
3878 See Info node `(elisp)Directory Local Variables' for details.")
3880 (defun dir-locals--all-files (directory)
3881 "Return a list of all readable dir-locals files in DIRECTORY.
3882 The returned list is sorted by increasing priority. That is,
3883 values specified in the last file should take precedence over
3884 those in the first."
3885 (when (file-readable-p directory)
3886 (let* ((file-1 (expand-file-name (if (eq system-type 'ms-dos)
3887 (dosified-file-name dir-locals-file)
3888 dir-locals-file)
3889 directory))
3890 (file-2 (when (string-match "\\.el\\'" file-1)
3891 (replace-match "-2.el" t nil file-1)))
3892 (out nil))
3893 ;; The order here is important.
3894 (dolist (f (list file-2 file-1))
3895 (when (and f
3896 (file-readable-p f)
3897 (file-regular-p f)
3898 (not (file-directory-p f)))
3899 (push f out)))
3900 out)))
3902 (defun dir-locals-find-file (file)
3903 "Find the directory-local variables for FILE.
3904 This searches upward in the directory tree from FILE.
3905 It stops at the first directory that has been registered in
3906 `dir-locals-directory-cache' or contains a `dir-locals-file'.
3907 If it finds an entry in the cache, it checks that it is valid.
3908 A cache entry with no modification time element (normally, one that
3909 has been assigned directly using `dir-locals-set-directory-class', not
3910 set from a file) is always valid.
3911 A cache entry based on a `dir-locals-file' is valid if the modification
3912 time stored in the cache matches the current file modification time.
3913 If not, the cache entry is cleared so that the file will be re-read.
3915 This function returns either:
3916 - nil (no directory local variables found),
3917 - the matching entry from `dir-locals-directory-cache' (a list),
3918 - or the full path to the directory (a string) containing at
3919 least one `dir-locals-file' in the case of no valid cache
3920 entry."
3921 (setq file (expand-file-name file))
3922 (let* ((locals-dir (locate-dominating-file (file-name-directory file)
3923 #'dir-locals--all-files))
3924 dir-elt)
3925 ;; `locate-dominating-file' may have abbreviated the name.
3926 (when locals-dir
3927 (setq locals-dir (expand-file-name locals-dir)))
3928 ;; Find the best cached value in `dir-locals-directory-cache'.
3929 (dolist (elt dir-locals-directory-cache)
3930 (when (and (string-prefix-p (car elt) file
3931 (memq system-type
3932 '(windows-nt cygwin ms-dos)))
3933 (> (length (car elt)) (length (car dir-elt))))
3934 (setq dir-elt elt)))
3935 (if (and dir-elt
3936 (or (null locals-dir)
3937 (<= (length locals-dir)
3938 (length (car dir-elt)))))
3939 ;; Found a potential cache entry. Check validity.
3940 ;; A cache entry with no MTIME is assumed to always be valid
3941 ;; (ie, set directly, not from a dir-locals file).
3942 ;; Note, we don't bother to check that there is a matching class
3943 ;; element in dir-locals-class-alist, since that's done by
3944 ;; dir-locals-set-directory-class.
3945 (if (or (null (nth 2 dir-elt))
3946 (let ((cached-files (dir-locals--all-files (car dir-elt))))
3947 ;; The entry MTIME should match the most recent
3948 ;; MTIME among matching files.
3949 (and cached-files
3950 (equal (nth 2 dir-elt)
3951 (let ((latest 0))
3952 (dolist (f cached-files latest)
3953 (let ((f-time (nth 5 (file-attributes f))))
3954 (if (time-less-p latest f-time)
3955 (setq latest f-time)))))))))
3956 ;; This cache entry is OK.
3957 dir-elt
3958 ;; This cache entry is invalid; clear it.
3959 (setq dir-locals-directory-cache
3960 (delq dir-elt dir-locals-directory-cache))
3961 ;; Return the first existing dir-locals file. Might be the same
3962 ;; as dir-elt's, might not (eg latter might have been deleted).
3963 locals-dir)
3964 ;; No cache entry.
3965 locals-dir)))
3967 (defun dir-locals-read-from-dir (dir)
3968 "Load all variables files in DIR and register a new class and instance.
3969 DIR is the absolute name of a directory which must contain at
3970 least one dir-local file (which is a file holding variables to
3971 apply).
3972 Return the new class name, which is a symbol named DIR."
3973 (require 'map)
3974 (let* ((class-name (intern dir))
3975 (files (dir-locals--all-files dir))
3976 (read-circle nil)
3977 ;; If there was a problem, use the values we could get but
3978 ;; don't let the cache prevent future reads.
3979 (latest 0) (success 0)
3980 (variables))
3981 (with-demoted-errors "Error reading dir-locals: %S"
3982 (dolist (file files)
3983 (let ((file-time (nth 5 (file-attributes file))))
3984 (if (time-less-p latest file-time)
3985 (setq latest file-time)))
3986 (with-temp-buffer
3987 (insert-file-contents file)
3988 (condition-case-unless-debug nil
3989 (setq variables
3990 (map-merge-with 'list (lambda (a b) (map-merge 'list a b))
3991 variables
3992 (read (current-buffer))))
3993 (end-of-file nil))))
3994 (setq success latest))
3995 (dir-locals-set-class-variables class-name variables)
3996 (dir-locals-set-directory-class dir class-name success)
3997 class-name))
3999 (define-obsolete-function-alias 'dir-locals-read-from-file
4000 'dir-locals-read-from-dir "25.1")
4002 (defcustom enable-remote-dir-locals nil
4003 "Non-nil means dir-local variables will be applied to remote files."
4004 :version "24.3"
4005 :type 'boolean
4006 :group 'find-file)
4008 (defvar hack-dir-local-variables--warned-coding nil)
4010 (defun hack-dir-local-variables ()
4011 "Read per-directory local variables for the current buffer.
4012 Store the directory-local variables in `dir-local-variables-alist'
4013 and `file-local-variables-alist', without applying them.
4015 This does nothing if either `enable-local-variables' or
4016 `enable-dir-local-variables' are nil."
4017 (when (and enable-local-variables
4018 enable-dir-local-variables
4019 (or enable-remote-dir-locals
4020 (not (file-remote-p (or (buffer-file-name)
4021 default-directory)))))
4022 ;; Find the variables file.
4023 (let ((dir-or-cache (dir-locals-find-file
4024 (or (buffer-file-name) default-directory)))
4025 (class nil)
4026 (dir-name nil))
4027 (cond
4028 ((stringp dir-or-cache)
4029 (setq dir-name dir-or-cache
4030 class (dir-locals-read-from-dir dir-or-cache)))
4031 ((consp dir-or-cache)
4032 (setq dir-name (nth 0 dir-or-cache))
4033 (setq class (nth 1 dir-or-cache))))
4034 (when class
4035 (let ((variables
4036 (dir-locals-collect-variables
4037 (dir-locals-get-class-variables class) dir-name nil)))
4038 (when variables
4039 (dolist (elt variables)
4040 (if (eq (car elt) 'coding)
4041 (unless hack-dir-local-variables--warned-coding
4042 (setq hack-dir-local-variables--warned-coding t)
4043 (display-warning 'files
4044 "Coding cannot be specified by dir-locals"))
4045 (unless (memq (car elt) '(eval mode))
4046 (setq dir-local-variables-alist
4047 (assq-delete-all (car elt) dir-local-variables-alist)))
4048 (push elt dir-local-variables-alist)))
4049 (hack-local-variables-filter variables dir-name)))))))
4051 (defun hack-dir-local-variables-non-file-buffer ()
4052 "Apply directory-local variables to a non-file buffer.
4053 For non-file buffers, such as Dired buffers, directory-local
4054 variables are looked for in `default-directory' and its parent
4055 directories."
4056 (hack-dir-local-variables)
4057 (hack-local-variables-apply))
4060 (defcustom change-major-mode-with-file-name t
4061 "Non-nil means \\[write-file] should set the major mode from the file name.
4062 However, the mode will not be changed if
4063 \(1) a local variables list or the `-*-' line specifies a major mode, or
4064 \(2) the current major mode is a \"special\" mode,
4065 not suitable for ordinary files, or
4066 \(3) the new file name does not particularly specify any mode."
4067 :type 'boolean
4068 :group 'editing-basics)
4070 (defun set-visited-file-name (filename &optional no-query along-with-file)
4071 "Change name of file visited in current buffer to FILENAME.
4072 This also renames the buffer to correspond to the new file.
4073 The next time the buffer is saved it will go in the newly specified file.
4074 FILENAME nil or an empty string means mark buffer as not visiting any file.
4075 Remember to delete the initial contents of the minibuffer
4076 if you wish to pass an empty string as the argument.
4078 The optional second argument NO-QUERY, if non-nil, inhibits asking for
4079 confirmation in the case where another buffer is already visiting FILENAME.
4081 The optional third argument ALONG-WITH-FILE, if non-nil, means that
4082 the old visited file has been renamed to the new name FILENAME."
4083 (interactive "FSet visited file name: ")
4084 (if (buffer-base-buffer)
4085 (error "An indirect buffer cannot visit a file"))
4086 (let (truename old-try-locals)
4087 (if filename
4088 (setq filename
4089 (if (string-equal filename "")
4091 (expand-file-name filename))))
4092 (if filename
4093 (progn
4094 (setq truename (file-truename filename))
4095 (if find-file-visit-truename
4096 (setq filename truename))))
4097 (if filename
4098 (let ((new-name (file-name-nondirectory filename)))
4099 (if (string= new-name "")
4100 (error "Empty file name"))))
4101 (let ((buffer (and filename (find-buffer-visiting filename))))
4102 (and buffer (not (eq buffer (current-buffer)))
4103 (not no-query)
4104 (not (y-or-n-p (format "A buffer is visiting %s; proceed? "
4105 filename)))
4106 (user-error "Aborted")))
4107 (or (equal filename buffer-file-name)
4108 (progn
4109 (and filename (lock-buffer filename))
4110 (unlock-buffer)))
4111 (setq old-try-locals (not (inhibit-local-variables-p))
4112 buffer-file-name filename)
4113 (if filename ; make buffer name reflect filename.
4114 (let ((new-name (file-name-nondirectory buffer-file-name)))
4115 (setq default-directory (file-name-directory buffer-file-name))
4116 ;; If new-name == old-name, renaming would add a spurious <2>
4117 ;; and it's considered as a feature in rename-buffer.
4118 (or (string= new-name (buffer-name))
4119 (rename-buffer new-name t))))
4120 (setq buffer-backed-up nil)
4121 (or along-with-file
4122 (clear-visited-file-modtime))
4123 ;; Abbreviate the file names of the buffer.
4124 (if truename
4125 (progn
4126 (setq buffer-file-truename (abbreviate-file-name truename))
4127 (if find-file-visit-truename
4128 (setq buffer-file-name truename))))
4129 (setq buffer-file-number
4130 (if filename
4131 (nthcdr 10 (file-attributes buffer-file-name))
4132 nil))
4133 ;; write-file-functions is normally used for things like ftp-find-file
4134 ;; that visit things that are not local files as if they were files.
4135 ;; Changing to visit an ordinary local file instead should flush the hook.
4136 (kill-local-variable 'write-file-functions)
4137 (kill-local-variable 'local-write-file-hooks)
4138 (kill-local-variable 'revert-buffer-function)
4139 (kill-local-variable 'backup-inhibited)
4140 ;; If buffer was read-only because of version control,
4141 ;; that reason is gone now, so make it writable.
4142 (if vc-mode
4143 (setq buffer-read-only nil))
4144 (kill-local-variable 'vc-mode)
4145 ;; Turn off backup files for certain file names.
4146 ;; Since this is a permanent local, the major mode won't eliminate it.
4147 (and buffer-file-name
4148 backup-enable-predicate
4149 (not (funcall backup-enable-predicate buffer-file-name))
4150 (progn
4151 (make-local-variable 'backup-inhibited)
4152 (setq backup-inhibited t)))
4153 (let ((oauto buffer-auto-save-file-name))
4154 (cond ((null filename)
4155 (setq buffer-auto-save-file-name nil))
4156 ((not buffer-auto-save-file-name)
4157 ;; If auto-save was not already on, turn it on if appropriate.
4158 (and buffer-file-name auto-save-default (auto-save-mode t)))
4160 ;; If auto save is on, start using a new name. We
4161 ;; deliberately don't rename or delete the old auto save
4162 ;; for the old visited file name. This is because
4163 ;; perhaps the user wants to save the new state and then
4164 ;; compare with the previous state from the auto save
4165 ;; file.
4166 (setq buffer-auto-save-file-name (make-auto-save-file-name))))
4167 ;; Rename the old auto save file if any.
4168 (and oauto buffer-auto-save-file-name
4169 (file-exists-p oauto)
4170 (rename-file oauto buffer-auto-save-file-name t)))
4171 (and buffer-file-name
4172 (not along-with-file)
4173 (set-buffer-modified-p t))
4174 ;; Update the major mode, if the file name determines it.
4175 (condition-case nil
4176 ;; Don't change the mode if it is special.
4177 (or (not change-major-mode-with-file-name)
4178 (get major-mode 'mode-class)
4179 ;; Don't change the mode if the local variable list specifies it.
4180 ;; The file name can influence whether the local variables apply.
4181 (and old-try-locals
4182 ;; h-l-v also checks it, but might as well be explicit.
4183 (not (inhibit-local-variables-p))
4184 (hack-local-variables t))
4185 ;; TODO consider making normal-mode handle this case.
4186 (let ((old major-mode))
4187 (set-auto-mode t)
4188 (or (eq old major-mode)
4189 (hack-local-variables))))
4190 (error nil))))
4192 (defun write-file (filename &optional confirm)
4193 "Write current buffer into file FILENAME.
4194 This makes the buffer visit that file, and marks it as not modified.
4196 If you specify just a directory name as FILENAME, that means to use
4197 the default file name but in that directory. You can also yank
4198 the default file name into the minibuffer to edit it, using \\<minibuffer-local-map>\\[next-history-element].
4200 If the buffer is not already visiting a file, the default file name
4201 for the output file is the buffer name.
4203 If optional second arg CONFIRM is non-nil, this function
4204 asks for confirmation before overwriting an existing file.
4205 Interactively, confirmation is required unless you supply a prefix argument."
4206 ;; (interactive "FWrite file: ")
4207 (interactive
4208 (list (if buffer-file-name
4209 (read-file-name "Write file: "
4210 nil nil nil nil)
4211 (read-file-name "Write file: " default-directory
4212 (expand-file-name
4213 (file-name-nondirectory (buffer-name))
4214 default-directory)
4215 nil nil))
4216 (not current-prefix-arg)))
4217 (or (null filename) (string-equal filename "")
4218 (progn
4219 ;; If arg is a directory name,
4220 ;; use the default file name, but in that directory.
4221 (if (directory-name-p filename)
4222 (setq filename (concat filename
4223 (file-name-nondirectory
4224 (or buffer-file-name (buffer-name))))))
4225 (and confirm
4226 (file-exists-p filename)
4227 ;; NS does its own confirm dialog.
4228 (not (and (eq (framep-on-display) 'ns)
4229 (listp last-nonmenu-event)
4230 use-dialog-box))
4231 (or (y-or-n-p (format-message
4232 "File `%s' exists; overwrite? " filename))
4233 (user-error "Canceled")))
4234 (set-visited-file-name filename (not confirm))))
4235 (set-buffer-modified-p t)
4236 ;; Make buffer writable if file is writable.
4237 (and buffer-file-name
4238 (file-writable-p buffer-file-name)
4239 (setq buffer-read-only nil))
4240 (save-buffer)
4241 ;; It's likely that the VC status at the new location is different from
4242 ;; the one at the old location.
4243 (vc-refresh-state))
4245 (defun file-extended-attributes (filename)
4246 "Return an alist of extended attributes of file FILENAME.
4248 Extended attributes are platform-specific metadata about the file,
4249 such as SELinux context, list of ACL entries, etc."
4250 `((acl . ,(file-acl filename))
4251 (selinux-context . ,(file-selinux-context filename))))
4253 (defun set-file-extended-attributes (filename attributes)
4254 "Set extended attributes of file FILENAME to ATTRIBUTES.
4256 ATTRIBUTES must be an alist of file attributes as returned by
4257 `file-extended-attributes'.
4258 Value is t if the function succeeds in setting the attributes."
4259 (let (result rv)
4260 (dolist (elt attributes)
4261 (let ((attr (car elt))
4262 (val (cdr elt)))
4263 (cond ((eq attr 'acl)
4264 (setq rv (set-file-acl filename val)))
4265 ((eq attr 'selinux-context)
4266 (setq rv (set-file-selinux-context filename val))))
4267 (setq result (or result rv))))
4269 result))
4271 (defun backup-buffer ()
4272 "Make a backup of the disk file visited by the current buffer, if appropriate.
4273 This is normally done before saving the buffer the first time.
4275 A backup may be done by renaming or by copying; see documentation of
4276 variable `make-backup-files'. If it's done by renaming, then the file is
4277 no longer accessible under its old name.
4279 The value is non-nil after a backup was made by renaming.
4280 It has the form (MODES EXTENDED-ATTRIBUTES BACKUPNAME).
4281 MODES is the result of `file-modes' on the original
4282 file; this means that the caller, after saving the buffer, should change
4283 the modes of the new file to agree with the old modes.
4284 EXTENDED-ATTRIBUTES is the result of `file-extended-attributes'
4285 on the original file; this means that the caller, after saving
4286 the buffer, should change the extended attributes of the new file
4287 to agree with the old attributes.
4288 BACKUPNAME is the backup file name, which is the old file renamed."
4289 (when (and make-backup-files (not backup-inhibited) (not buffer-backed-up))
4290 (let ((attributes (file-attributes buffer-file-name)))
4291 (when (and attributes (memq (aref (elt attributes 8) 0) '(?- ?l)))
4292 ;; If specified name is a symbolic link, chase it to the target.
4293 ;; This makes backups in the directory where the real file is.
4294 (let* ((real-file-name (file-chase-links buffer-file-name))
4295 (backup-info (find-backup-file-name real-file-name)))
4296 (when backup-info
4297 (let* ((backupname (car backup-info))
4298 (targets (cdr backup-info))
4299 (old-versions
4300 ;; If have old versions to maybe delete,
4301 ;; ask the user to confirm now, before doing anything.
4302 ;; But don't actually delete til later.
4303 (and targets
4304 (booleanp delete-old-versions)
4305 (or delete-old-versions
4306 (y-or-n-p
4307 (format "Delete excess backup versions of %s? "
4308 real-file-name)))
4309 targets))
4310 (modes (file-modes buffer-file-name))
4311 (extended-attributes
4312 (file-extended-attributes buffer-file-name))
4313 (copy-when-priv-mismatch
4314 backup-by-copying-when-privileged-mismatch)
4315 (make-copy
4316 (or file-precious-flag backup-by-copying
4317 ;; Don't rename a suid or sgid file.
4318 (and modes (< 0 (logand modes #o6000)))
4319 (not (file-writable-p
4320 (file-name-directory real-file-name)))
4321 (and backup-by-copying-when-linked
4322 (< 1 (file-nlinks real-file-name)))
4323 (and (or backup-by-copying-when-mismatch
4324 (and (integerp copy-when-priv-mismatch)
4325 (let ((attr (file-attributes
4326 real-file-name
4327 'integer)))
4328 (<= (nth 2 attr)
4329 copy-when-priv-mismatch))))
4330 (not (file-ownership-preserved-p real-file-name
4331 t)))))
4332 setmodes)
4333 (condition-case ()
4334 (progn
4335 ;; Actually make the backup file.
4336 (if make-copy
4337 (backup-buffer-copy real-file-name backupname
4338 modes extended-attributes)
4339 ;; rename-file should delete old backup.
4340 (rename-file real-file-name backupname t)
4341 (setq setmodes (list modes extended-attributes
4342 backupname)))
4343 (setq buffer-backed-up t)
4344 ;; Now delete the old versions, if desired.
4345 (dolist (old-version old-versions)
4346 (delete-file old-version)))
4347 (file-error nil))
4348 ;; If trouble writing the backup, write it in .emacs.d/%backup%.
4349 (when (not buffer-backed-up)
4350 (setq backupname (locate-user-emacs-file "%backup%~"))
4351 (message "Cannot write backup file; backing up in %s"
4352 backupname)
4353 (sleep-for 1)
4354 (backup-buffer-copy real-file-name backupname
4355 modes extended-attributes)
4356 (setq buffer-backed-up t))
4357 setmodes)))))))
4359 (defun backup-buffer-copy (from-name to-name modes extended-attributes)
4360 ;; Create temp files with strict access rights. It's easy to
4361 ;; loosen them later, whereas it's impossible to close the
4362 ;; time-window of loose permissions otherwise.
4363 (with-file-modes ?\700
4364 (when (condition-case nil
4365 ;; Try to overwrite old backup first.
4366 (copy-file from-name to-name t t t)
4367 (error t))
4368 (while (condition-case nil
4369 (progn
4370 (when (file-exists-p to-name)
4371 (delete-file to-name))
4372 (copy-file from-name to-name nil t t)
4373 nil)
4374 (file-already-exists t))
4375 ;; The file was somehow created by someone else between
4376 ;; `delete-file' and `copy-file', so let's try again.
4377 ;; rms says "I think there is also a possible race
4378 ;; condition for making backup files" (emacs-devel 20070821).
4379 nil)))
4380 ;; If set-file-extended-attributes fails, fall back on set-file-modes.
4381 (unless (and extended-attributes
4382 (with-demoted-errors
4383 (set-file-extended-attributes to-name extended-attributes)))
4384 (and modes
4385 (set-file-modes to-name (logand modes #o1777)))))
4387 (defvar file-name-version-regexp
4388 "\\(?:~\\|\\.~[-[:alnum:]:#@^._]+\\(?:~[[:digit:]]+\\)?~\\)"
4389 ;; The last ~[[:digit]]+ matches relative versions in git,
4390 ;; e.g. `foo.js.~HEAD~1~'.
4391 "Regular expression matching the backup/version part of a file name.
4392 Used by `file-name-sans-versions'.")
4394 (defun file-name-sans-versions (name &optional keep-backup-version)
4395 "Return file NAME sans backup versions or strings.
4396 This is a separate procedure so your site-init or startup file can
4397 redefine it.
4398 If the optional argument KEEP-BACKUP-VERSION is non-nil,
4399 we do not remove backup version numbers, only true file version numbers.
4400 See also `file-name-version-regexp'."
4401 (let ((handler (find-file-name-handler name 'file-name-sans-versions)))
4402 (if handler
4403 (funcall handler 'file-name-sans-versions name keep-backup-version)
4404 (substring name 0
4405 (unless keep-backup-version
4406 (string-match (concat file-name-version-regexp "\\'")
4407 name))))))
4409 (defun file-ownership-preserved-p (file &optional group)
4410 "Return t if deleting FILE and rewriting it would preserve the owner.
4411 Return also t if FILE does not exist. If GROUP is non-nil, check whether
4412 the group would be preserved too."
4413 (let ((handler (find-file-name-handler file 'file-ownership-preserved-p)))
4414 (if handler
4415 (funcall handler 'file-ownership-preserved-p file group)
4416 (let ((attributes (file-attributes file 'integer)))
4417 ;; Return t if the file doesn't exist, since it's true that no
4418 ;; information would be lost by an (attempted) delete and create.
4419 (or (null attributes)
4420 (and (or (= (nth 2 attributes) (user-uid))
4421 ;; Files created on Windows by Administrator (RID=500)
4422 ;; have the Administrators group (RID=544) recorded as
4423 ;; their owner. Rewriting them will still preserve the
4424 ;; owner.
4425 (and (eq system-type 'windows-nt)
4426 (= (user-uid) 500) (= (nth 2 attributes) 544)))
4427 (or (not group)
4428 ;; On BSD-derived systems files always inherit the parent
4429 ;; directory's group, so skip the group-gid test.
4430 (memq system-type '(berkeley-unix darwin gnu/kfreebsd))
4431 (= (nth 3 attributes) (group-gid)))
4432 (let* ((parent (or (file-name-directory file) "."))
4433 (parent-attributes (file-attributes parent 'integer)))
4434 (and parent-attributes
4435 ;; On some systems, a file created in a setuid directory
4436 ;; inherits that directory's owner.
4438 (= (nth 2 parent-attributes) (user-uid))
4439 (string-match "^...[^sS]" (nth 8 parent-attributes)))
4440 ;; On many systems, a file created in a setgid directory
4441 ;; inherits that directory's group. On some systems
4442 ;; this happens even if the setgid bit is not set.
4443 (or (not group)
4444 (= (nth 3 parent-attributes)
4445 (nth 3 attributes)))))))))))
4447 (defun file-name-sans-extension (filename)
4448 "Return FILENAME sans final \"extension\".
4449 The extension, in a file name, is the part that begins with the last `.',
4450 except that a leading `.' of the file name, if there is one, doesn't count."
4451 (save-match-data
4452 (let ((file (file-name-sans-versions (file-name-nondirectory filename)))
4453 directory)
4454 (if (and (string-match "\\.[^.]*\\'" file)
4455 (not (eq 0 (match-beginning 0))))
4456 (if (setq directory (file-name-directory filename))
4457 ;; Don't use expand-file-name here; if DIRECTORY is relative,
4458 ;; we don't want to expand it.
4459 (concat directory (substring file 0 (match-beginning 0)))
4460 (substring file 0 (match-beginning 0)))
4461 filename))))
4463 (defun file-name-extension (filename &optional period)
4464 "Return FILENAME's final \"extension\".
4465 The extension, in a file name, is the part that begins with the last `.',
4466 excluding version numbers and backup suffixes, except that a leading `.'
4467 of the file name, if there is one, doesn't count.
4468 Return nil for extensionless file names such as `foo'.
4469 Return the empty string for file names such as `foo.'.
4471 By default, the returned value excludes the period that starts the
4472 extension, but if the optional argument PERIOD is non-nil, the period
4473 is included in the value, and in that case, if FILENAME has no
4474 extension, the value is \"\"."
4475 (save-match-data
4476 (let ((file (file-name-sans-versions (file-name-nondirectory filename))))
4477 (if (and (string-match "\\.[^.]*\\'" file)
4478 (not (eq 0 (match-beginning 0))))
4479 (substring file (+ (match-beginning 0) (if period 0 1)))
4480 (if period
4481 "")))))
4483 (defun file-name-base (&optional filename)
4484 "Return the base name of the FILENAME: no directory, no extension.
4485 FILENAME defaults to `buffer-file-name'."
4486 (file-name-sans-extension
4487 (file-name-nondirectory (or filename (buffer-file-name)))))
4489 (defcustom make-backup-file-name-function
4490 #'make-backup-file-name--default-function
4491 "A function that `make-backup-file-name' uses to create backup file names.
4492 The function receives a single argument, the original file name.
4494 If you change this, you may need to change `backup-file-name-p' and
4495 `file-name-sans-versions' too.
4497 You could make this buffer-local to do something special for specific files.
4499 For historical reasons, a value of nil means to use the default function.
4500 This should not be relied upon.
4502 See also `backup-directory-alist'."
4503 :version "24.4" ; nil -> make-backup-file-name--default-function
4504 :group 'backup
4505 :type '(choice (const :tag "Deprecated way to get the default function" nil)
4506 (function :tag "Function")))
4508 (defcustom backup-directory-alist nil
4509 "Alist of filename patterns and backup directory names.
4510 Each element looks like (REGEXP . DIRECTORY). Backups of files with
4511 names matching REGEXP will be made in DIRECTORY. DIRECTORY may be
4512 relative or absolute. If it is absolute, so that all matching files
4513 are backed up into the same directory, the file names in this
4514 directory will be the full name of the file backed up with all
4515 directory separators changed to `!' to prevent clashes. This will not
4516 work correctly if your filesystem truncates the resulting name.
4518 For the common case of all backups going into one directory, the alist
4519 should contain a single element pairing \".\" with the appropriate
4520 directory name.
4522 If this variable is nil, or it fails to match a filename, the backup
4523 is made in the original file's directory.
4525 On MS-DOS filesystems without long names this variable is always
4526 ignored."
4527 :group 'backup
4528 :type '(repeat (cons (regexp :tag "Regexp matching filename")
4529 (directory :tag "Backup directory name"))))
4531 (defun normal-backup-enable-predicate (name)
4532 "Default `backup-enable-predicate' function.
4533 Checks for files in `temporary-file-directory',
4534 `small-temporary-file-directory', and \"/tmp\"."
4535 (let ((temporary-file-directory temporary-file-directory)
4536 caseless)
4537 ;; On MS-Windows, file-truename will convert short 8+3 aliases to
4538 ;; their long file-name equivalents, so compare-strings does TRT.
4539 (if (memq system-type '(ms-dos windows-nt))
4540 (setq temporary-file-directory (file-truename temporary-file-directory)
4541 name (file-truename name)
4542 caseless t))
4543 (not (or (let ((comp (compare-strings temporary-file-directory 0 nil
4544 name 0 nil caseless)))
4545 ;; Directory is under temporary-file-directory.
4546 (and (not (eq comp t))
4547 (< comp (- (length temporary-file-directory)))))
4548 (let ((comp (compare-strings "/tmp" 0 nil
4549 name 0 nil)))
4550 ;; Directory is under /tmp.
4551 (and (not (eq comp t))
4552 (< comp (- (length "/tmp")))))
4553 (if small-temporary-file-directory
4554 (let ((comp (compare-strings small-temporary-file-directory
4555 0 nil
4556 name 0 nil caseless)))
4557 ;; Directory is under small-temporary-file-directory.
4558 (and (not (eq comp t))
4559 (< comp (- (length small-temporary-file-directory))))))))))
4561 (defun make-backup-file-name (file)
4562 "Create the non-numeric backup file name for FILE.
4563 This calls the function that `make-backup-file-name-function' specifies,
4564 with a single argument FILE."
4565 (funcall (or make-backup-file-name-function
4566 #'make-backup-file-name--default-function)
4567 file))
4569 (defun make-backup-file-name--default-function (file)
4570 "Default function for `make-backup-file-name'.
4571 Normally this just returns FILE's name with `~' appended.
4572 It searches for a match for FILE in `backup-directory-alist'.
4573 If the directory for the backup doesn't exist, it is created."
4574 (if (and (eq system-type 'ms-dos)
4575 (not (msdos-long-file-names)))
4576 (let ((fn (file-name-nondirectory file)))
4577 (concat (file-name-directory file)
4578 (or (and (string-match "\\`[^.]+\\'" fn)
4579 (concat (match-string 0 fn) ".~"))
4580 (and (string-match "\\`[^.]+\\.\\(..?\\)?" fn)
4581 (concat (match-string 0 fn) "~")))))
4582 (concat (make-backup-file-name-1 file) "~")))
4584 (defun make-backup-file-name-1 (file)
4585 "Subroutine of `make-backup-file-name--default-function'.
4586 The function `find-backup-file-name' also uses this."
4587 (let ((alist backup-directory-alist)
4588 elt backup-directory abs-backup-directory)
4589 (while alist
4590 (setq elt (pop alist))
4591 (if (string-match (car elt) file)
4592 (setq backup-directory (cdr elt)
4593 alist nil)))
4594 ;; If backup-directory is relative, it should be relative to the
4595 ;; file's directory. By expanding explicitly here, we avoid
4596 ;; depending on default-directory.
4597 (if backup-directory
4598 (setq abs-backup-directory
4599 (expand-file-name backup-directory
4600 (file-name-directory file))))
4601 (if (and abs-backup-directory (not (file-exists-p abs-backup-directory)))
4602 (condition-case nil
4603 (make-directory abs-backup-directory 'parents)
4604 (file-error (setq backup-directory nil
4605 abs-backup-directory nil))))
4606 (if (null backup-directory)
4607 file
4608 (if (file-name-absolute-p backup-directory)
4609 (progn
4610 (when (memq system-type '(windows-nt ms-dos cygwin))
4611 ;; Normalize DOSish file names: downcase the drive
4612 ;; letter, if any, and replace the leading "x:" with
4613 ;; "/drive_x".
4614 (or (file-name-absolute-p file)
4615 (setq file (expand-file-name file))) ; make defaults explicit
4616 ;; Replace any invalid file-name characters (for the
4617 ;; case of backing up remote files).
4618 (setq file (expand-file-name (convert-standard-filename file)))
4619 (if (eq (aref file 1) ?:)
4620 (setq file (concat "/"
4621 "drive_"
4622 (char-to-string (downcase (aref file 0)))
4623 (if (eq (aref file 2) ?/)
4625 "/")
4626 (substring file 2)))))
4627 ;; Make the name unique by substituting directory
4628 ;; separators. It may not really be worth bothering about
4629 ;; doubling `!'s in the original name...
4630 (expand-file-name
4631 (subst-char-in-string
4632 ?/ ?!
4633 (replace-regexp-in-string "!" "!!" file))
4634 backup-directory))
4635 (expand-file-name (file-name-nondirectory file)
4636 (file-name-as-directory abs-backup-directory))))))
4638 (defun backup-file-name-p (file)
4639 "Return non-nil if FILE is a backup file name (numeric or not).
4640 This is a separate function so you can redefine it for customization.
4641 You may need to redefine `file-name-sans-versions' as well."
4642 (string-match "~\\'" file))
4644 (defvar backup-extract-version-start)
4646 ;; This is used in various files.
4647 ;; The usage of backup-extract-version-start is not very clean,
4648 ;; but I can't see a good alternative, so as of now I am leaving it alone.
4649 (defun backup-extract-version (fn)
4650 "Given the name of a numeric backup file, FN, return the backup number.
4651 Uses the free variable `backup-extract-version-start', whose value should be
4652 the index in the name where the version number begins."
4653 (if (and (string-match "[0-9]+~/?$" fn backup-extract-version-start)
4654 (= (match-beginning 0) backup-extract-version-start))
4655 (string-to-number (substring fn backup-extract-version-start -1))
4658 (defun find-backup-file-name (fn)
4659 "Find a file name for a backup file FN, and suggestions for deletions.
4660 Value is a list whose car is the name for the backup file
4661 and whose cdr is a list of old versions to consider deleting now.
4662 If the value is nil, don't make a backup.
4663 Uses `backup-directory-alist' in the same way as
4664 `make-backup-file-name--default-function' does."
4665 (let ((handler (find-file-name-handler fn 'find-backup-file-name)))
4666 ;; Run a handler for this function so that ange-ftp can refuse to do it.
4667 (if handler
4668 (funcall handler 'find-backup-file-name fn)
4669 (if (or (eq version-control 'never)
4670 ;; We don't support numbered backups on plain MS-DOS
4671 ;; when long file names are unavailable.
4672 (and (eq system-type 'ms-dos)
4673 (not (msdos-long-file-names))))
4674 (list (make-backup-file-name fn))
4675 (let* ((basic-name (make-backup-file-name-1 fn))
4676 (base-versions (concat (file-name-nondirectory basic-name)
4677 ".~"))
4678 (backup-extract-version-start (length base-versions))
4679 (high-water-mark 0)
4680 (number-to-delete 0)
4681 possibilities deserve-versions-p versions)
4682 (condition-case ()
4683 (setq possibilities (file-name-all-completions
4684 base-versions
4685 (file-name-directory basic-name))
4686 versions (sort (mapcar #'backup-extract-version
4687 possibilities)
4688 #'<)
4689 high-water-mark (apply 'max 0 versions)
4690 deserve-versions-p (or version-control
4691 (> high-water-mark 0))
4692 number-to-delete (- (length versions)
4693 kept-old-versions
4694 kept-new-versions
4695 -1))
4696 (file-error (setq possibilities nil)))
4697 (if (not deserve-versions-p)
4698 (list (make-backup-file-name fn))
4699 (cons (format "%s.~%d~" basic-name (1+ high-water-mark))
4700 (if (and (> number-to-delete 0)
4701 ;; Delete nothing if there is overflow
4702 ;; in the number of versions to keep.
4703 (>= (+ kept-new-versions kept-old-versions -1) 0))
4704 (mapcar (lambda (n)
4705 (format "%s.~%d~" basic-name n))
4706 (let ((v (nthcdr kept-old-versions versions)))
4707 (rplacd (nthcdr (1- number-to-delete) v) ())
4708 v))))))))))
4710 (defun file-nlinks (filename)
4711 "Return number of names file FILENAME has."
4712 (car (cdr (file-attributes filename))))
4714 (defun file-relative-name (filename &optional directory)
4715 "Convert FILENAME to be relative to DIRECTORY (default: `default-directory').
4716 This function returns a relative file name which is equivalent to FILENAME
4717 when used with that default directory as the default.
4718 If FILENAME is a relative file name, it will be interpreted as existing in
4719 `default-directory'.
4720 If FILENAME and DIRECTORY lie on different machines or on different drives
4721 on a DOS/Windows machine, it returns FILENAME in expanded form."
4722 (save-match-data
4723 (setq directory
4724 (file-name-as-directory (expand-file-name (or directory
4725 default-directory))))
4726 (setq filename (expand-file-name filename))
4727 (let ((fremote (file-remote-p filename))
4728 (dremote (file-remote-p directory))
4729 (fold-case (or (file-name-case-insensitive-p filename)
4730 read-file-name-completion-ignore-case)))
4731 (if ;; Conditions for separate trees
4733 ;; Test for different filesystems on DOS/Windows
4734 (and
4735 ;; Should `cygwin' really be included here? --stef
4736 (memq system-type '(ms-dos cygwin windows-nt))
4738 ;; Test for different drive letters
4739 (not (eq t (compare-strings filename 0 2 directory 0 2 fold-case)))
4740 ;; Test for UNCs on different servers
4741 (not (eq t (compare-strings
4742 (progn
4743 (if (string-match "\\`//\\([^:/]+\\)/" filename)
4744 (match-string 1 filename)
4745 ;; Windows file names cannot have ? in
4746 ;; them, so use that to detect when
4747 ;; neither FILENAME nor DIRECTORY is a
4748 ;; UNC.
4749 "?"))
4750 0 nil
4751 (progn
4752 (if (string-match "\\`//\\([^:/]+\\)/" directory)
4753 (match-string 1 directory)
4754 "?"))
4755 0 nil t)))))
4756 ;; Test for different remote file system identification
4757 (not (equal fremote dremote)))
4758 filename
4759 (let ((ancestor ".")
4760 (filename-dir (file-name-as-directory filename)))
4761 (while (not
4762 (or (string-prefix-p directory filename-dir fold-case)
4763 (string-prefix-p directory filename fold-case)))
4764 (setq directory (file-name-directory (substring directory 0 -1))
4765 ancestor (if (equal ancestor ".")
4766 ".."
4767 (concat "../" ancestor))))
4768 ;; Now ancestor is empty, or .., or ../.., etc.
4769 (if (string-prefix-p directory filename fold-case)
4770 ;; We matched within FILENAME's directory part.
4771 ;; Add the rest of FILENAME onto ANCESTOR.
4772 (let ((rest (substring filename (length directory))))
4773 (if (and (equal ancestor ".") (not (equal rest "")))
4774 ;; But don't bother with ANCESTOR if it would give us `./'.
4775 rest
4776 (concat (file-name-as-directory ancestor) rest)))
4777 ;; We matched FILENAME's directory equivalent.
4778 ancestor))))))
4780 (defun save-buffer (&optional arg)
4781 "Save current buffer in visited file if modified.
4782 Variations are described below.
4784 By default, makes the previous version into a backup file
4785 if previously requested or if this is the first save.
4786 Prefixed with one \\[universal-argument], marks this version
4787 to become a backup when the next save is done.
4788 Prefixed with two \\[universal-argument]'s,
4789 makes the previous version into a backup file.
4790 Prefixed with three \\[universal-argument]'s, marks this version
4791 to become a backup when the next save is done,
4792 and makes the previous version into a backup file.
4794 With a numeric prefix argument of 0, never make the previous version
4795 into a backup file.
4797 Note that the various variables that control backups, such
4798 as `version-control', `backup-enable-predicate', `vc-make-backup-files',
4799 and `backup-inhibited', to name just the more popular ones, still
4800 control whether a backup will actually be produced, even when you
4801 invoke this command prefixed with two or three \\[universal-argument]'s.
4803 If a file's name is FOO, the names of its numbered backup versions are
4804 FOO.~i~ for various integers i. A non-numbered backup file is called FOO~.
4805 Numeric backups (rather than FOO~) will be made if value of
4806 `version-control' is not the atom `never' and either there are already
4807 numeric versions of the file being backed up, or `version-control' is
4808 non-nil.
4809 We don't want excessive versions piling up, so there are variables
4810 `kept-old-versions', which tells Emacs how many oldest versions to keep,
4811 and `kept-new-versions', which tells how many newest versions to keep.
4812 Defaults are 2 old versions and 2 new.
4813 `dired-kept-versions' controls dired's clean-directory (.) command.
4814 If `delete-old-versions' is nil, system will query user
4815 before trimming versions. Otherwise it does it silently.
4817 If `vc-make-backup-files' is nil, which is the default,
4818 no backup files are made for files managed by version control.
4819 (This is because the version control system itself records previous versions.)
4821 See the subroutine `basic-save-buffer' for more information."
4822 (interactive "p")
4823 (let ((modp (buffer-modified-p))
4824 (make-backup-files (or (and make-backup-files (not (eq arg 0)))
4825 (memq arg '(16 64)))))
4826 (and modp (memq arg '(16 64)) (setq buffer-backed-up nil))
4827 ;; We used to display the message below only for files > 50KB, but
4828 ;; then Rmail-mbox never displays it due to buffer swapping. If
4829 ;; the test is ever re-introduced, be sure to handle saving of
4830 ;; Rmail files.
4831 (if (and modp
4832 (buffer-file-name)
4833 (not noninteractive)
4834 (not save-silently))
4835 (message "Saving file %s..." (buffer-file-name)))
4836 (basic-save-buffer (called-interactively-p 'any))
4837 (and modp (memq arg '(4 64)) (setq buffer-backed-up nil))))
4839 (defun delete-auto-save-file-if-necessary (&optional force)
4840 "Delete auto-save file for current buffer if `delete-auto-save-files' is t.
4841 Normally delete only if the file was written by this Emacs since
4842 the last real save, but optional arg FORCE non-nil means delete anyway."
4843 (and buffer-auto-save-file-name delete-auto-save-files
4844 (not (string= buffer-file-name buffer-auto-save-file-name))
4845 (or force (recent-auto-save-p))
4846 (progn
4847 (condition-case ()
4848 (delete-file buffer-auto-save-file-name)
4849 (file-error nil))
4850 (set-buffer-auto-saved))))
4852 (defvar auto-save-hook nil
4853 "Normal hook run just before auto-saving.")
4855 (defcustom before-save-hook nil
4856 "Normal hook that is run before a buffer is saved to its file.
4857 Only used by `save-buffer'."
4858 :options '(copyright-update time-stamp)
4859 :type 'hook
4860 :group 'files)
4862 (defcustom after-save-hook nil
4863 "Normal hook that is run after a buffer is saved to its file.
4864 Only used by `save-buffer'."
4865 :options '(executable-make-buffer-file-executable-if-script-p)
4866 :type 'hook
4867 :group 'files)
4869 (defvar save-buffer-coding-system nil
4870 "If non-nil, use this coding system for saving the buffer.
4871 More precisely, use this coding system in place of the
4872 value of `buffer-file-coding-system', when saving the buffer.
4873 Calling `write-region' for any purpose other than saving the buffer
4874 will still use `buffer-file-coding-system'; this variable has no effect
4875 in such cases.")
4877 (make-variable-buffer-local 'save-buffer-coding-system)
4878 (put 'save-buffer-coding-system 'permanent-local t)
4880 (defun basic-save-buffer (&optional called-interactively)
4881 "Save the current buffer in its visited file, if it has been modified.
4883 The hooks `write-contents-functions', `local-write-file-hooks'
4884 and `write-file-functions' get a chance to do the job of saving;
4885 if they do not, then the buffer is saved in the visited file in
4886 the usual way.
4888 Before and after saving the buffer, this function runs
4889 `before-save-hook' and `after-save-hook', respectively."
4890 (interactive '(called-interactively))
4891 (save-current-buffer
4892 ;; In an indirect buffer, save its base buffer instead.
4893 (if (buffer-base-buffer)
4894 (set-buffer (buffer-base-buffer)))
4895 (if (or (buffer-modified-p)
4896 ;; Handle the case when no modification has been made but
4897 ;; the file disappeared since visited.
4898 (and buffer-file-name
4899 (not (file-exists-p buffer-file-name))))
4900 (let ((recent-save (recent-auto-save-p))
4901 setmodes)
4902 (or (null buffer-file-name)
4903 (verify-visited-file-modtime (current-buffer))
4904 (not (file-exists-p buffer-file-name))
4905 (yes-or-no-p
4906 (format
4907 "%s has changed since visited or saved. Save anyway? "
4908 (file-name-nondirectory buffer-file-name)))
4909 (user-error "Save not confirmed"))
4910 (save-restriction
4911 (widen)
4912 (save-excursion
4913 (and (> (point-max) (point-min))
4914 (not find-file-literally)
4915 (null buffer-read-only)
4916 (/= (char-after (1- (point-max))) ?\n)
4917 (not (and (eq selective-display t)
4918 (= (char-after (1- (point-max))) ?\r)))
4919 (or (eq require-final-newline t)
4920 (eq require-final-newline 'visit-save)
4921 (and require-final-newline
4922 (y-or-n-p
4923 (format "Buffer %s does not end in newline. Add one? "
4924 (buffer-name)))))
4925 (save-excursion
4926 (goto-char (point-max))
4927 (insert ?\n))))
4928 ;; Don't let errors prevent saving the buffer.
4929 (with-demoted-errors (run-hooks 'before-save-hook))
4930 ;; Give `write-contents-functions' a chance to
4931 ;; short-circuit the whole process.
4932 (unless (run-hook-with-args-until-success 'write-contents-functions)
4933 ;; If buffer has no file name, ask user for one.
4934 (or buffer-file-name
4935 (let ((filename
4936 (expand-file-name
4937 (read-file-name "File to save in: "
4938 nil (expand-file-name (buffer-name))))))
4939 (if (file-exists-p filename)
4940 (if (file-directory-p filename)
4941 ;; Signal an error if the user specified the name of an
4942 ;; existing directory.
4943 (error "%s is a directory" filename)
4944 (unless (y-or-n-p (format-message
4945 "File `%s' exists; overwrite? "
4946 filename))
4947 (error "Canceled"))))
4948 (set-visited-file-name filename)))
4949 ;; Support VC version backups.
4950 (vc-before-save)
4951 (or (run-hook-with-args-until-success 'local-write-file-hooks)
4952 (run-hook-with-args-until-success 'write-file-functions)
4953 ;; If a hook returned t, file is already "written".
4954 ;; Otherwise, write it the usual way now.
4955 (let ((dir (file-name-directory
4956 (expand-file-name buffer-file-name))))
4957 (unless (file-exists-p dir)
4958 (if (y-or-n-p
4959 (format-message
4960 "Directory `%s' does not exist; create? " dir))
4961 (make-directory dir t)
4962 (error "Canceled")))
4963 (setq setmodes (basic-save-buffer-1)))))
4964 ;; Now we have saved the current buffer. Let's make sure
4965 ;; that buffer-file-coding-system is fixed to what
4966 ;; actually used for saving by binding it locally.
4967 (when buffer-file-name
4968 (if save-buffer-coding-system
4969 (setq save-buffer-coding-system last-coding-system-used)
4970 (setq buffer-file-coding-system last-coding-system-used))
4971 (setq buffer-file-number
4972 (nthcdr 10 (file-attributes buffer-file-name)))
4973 (if setmodes
4974 (condition-case ()
4975 (progn
4976 (unless
4977 (with-demoted-errors
4978 (set-file-modes buffer-file-name (car setmodes)))
4979 (set-file-extended-attributes buffer-file-name
4980 (nth 1 setmodes))))
4981 (error nil)))
4982 ;; Support VC `implicit' locking.
4983 (vc-after-save))
4984 ;; If the auto-save file was recent before this command,
4985 ;; delete it now.
4986 (delete-auto-save-file-if-necessary recent-save))
4987 (run-hooks 'after-save-hook))
4988 (or noninteractive
4989 (not called-interactively)
4990 (files--message "(No changes need to be saved)")))))
4992 ;; This does the "real job" of writing a buffer into its visited file
4993 ;; and making a backup file. This is what is normally done
4994 ;; but inhibited if one of write-file-functions returns non-nil.
4995 ;; It returns a value (MODES EXTENDED-ATTRIBUTES BACKUPNAME), like
4996 ;; backup-buffer.
4997 (defun basic-save-buffer-1 ()
4998 (prog1
4999 (if save-buffer-coding-system
5000 (let ((coding-system-for-write save-buffer-coding-system))
5001 (basic-save-buffer-2))
5002 (basic-save-buffer-2))
5003 (if buffer-file-coding-system-explicit
5004 (setcar buffer-file-coding-system-explicit last-coding-system-used))))
5006 ;; This returns a value (MODES EXTENDED-ATTRIBUTES BACKUPNAME), like
5007 ;; backup-buffer.
5008 (defun basic-save-buffer-2 ()
5009 (let (tempsetmodes setmodes)
5010 (if (not (file-writable-p buffer-file-name))
5011 (let ((dir (file-name-directory buffer-file-name)))
5012 (if (not (file-directory-p dir))
5013 (if (file-exists-p dir)
5014 (error "%s is not a directory" dir)
5015 (error "%s: no such directory" dir))
5016 (if (not (file-exists-p buffer-file-name))
5017 (error "Directory %s write-protected" dir)
5018 (if (yes-or-no-p
5019 (format
5020 "File %s is write-protected; try to save anyway? "
5021 (file-name-nondirectory
5022 buffer-file-name)))
5023 (setq tempsetmodes t)
5024 (error "Attempt to save to a file which you aren't allowed to write"))))))
5025 (or buffer-backed-up
5026 (setq setmodes (backup-buffer)))
5027 (let* ((dir (file-name-directory buffer-file-name))
5028 (dir-writable (file-writable-p dir)))
5029 (if (or (and file-precious-flag dir-writable)
5030 (and break-hardlink-on-save
5031 (file-exists-p buffer-file-name)
5032 (> (file-nlinks buffer-file-name) 1)
5033 (or dir-writable
5034 (error (concat "Directory %s write-protected; "
5035 "cannot break hardlink when saving")
5036 dir))))
5037 ;; Write temp name, then rename it.
5038 ;; This requires write access to the containing dir,
5039 ;; which is why we don't try it if we don't have that access.
5040 (let ((realname buffer-file-name)
5041 tempname
5042 (old-modtime (visited-file-modtime)))
5043 ;; Create temp files with strict access rights. It's easy to
5044 ;; loosen them later, whereas it's impossible to close the
5045 ;; time-window of loose permissions otherwise.
5046 (condition-case err
5047 (progn
5048 (clear-visited-file-modtime)
5049 ;; Call write-region in the appropriate way
5050 ;; for saving the buffer.
5051 (setq tempname
5052 (make-temp-file
5053 (expand-file-name "tmp" dir)))
5054 ;; Pass in nil&nil rather than point-min&max
5055 ;; cause we're saving the whole buffer.
5056 ;; write-region-annotate-functions may use it.
5057 (write-region nil nil tempname nil realname
5058 buffer-file-truename)
5059 (when save-silently (message nil)))
5060 ;; If we failed, restore the buffer's modtime.
5061 (error (set-visited-file-modtime old-modtime)
5062 (signal (car err) (cdr err))))
5063 ;; Since we have created an entirely new file,
5064 ;; make sure it gets the right permission bits set.
5065 (setq setmodes (or setmodes
5066 (list (or (file-modes buffer-file-name)
5067 (logand ?\666 (default-file-modes)))
5068 (file-extended-attributes buffer-file-name)
5069 buffer-file-name)))
5070 ;; We succeeded in writing the temp file,
5071 ;; so rename it.
5072 (rename-file tempname buffer-file-name t))
5073 ;; If file not writable, see if we can make it writable
5074 ;; temporarily while we write it.
5075 ;; But no need to do so if we have just backed it up
5076 ;; (setmodes is set) because that says we're superseding.
5077 (cond ((and tempsetmodes (not setmodes))
5078 ;; Change the mode back, after writing.
5079 (setq setmodes (list (file-modes buffer-file-name)
5080 (file-extended-attributes buffer-file-name)
5081 buffer-file-name))
5082 ;; If set-file-extended-attributes fails, fall back on
5083 ;; set-file-modes.
5084 (unless
5085 (with-demoted-errors
5086 (set-file-extended-attributes buffer-file-name
5087 (nth 1 setmodes)))
5088 (set-file-modes buffer-file-name
5089 (logior (car setmodes) 128))))))
5090 (let (success)
5091 (unwind-protect
5092 (progn
5093 ;; Pass in nil&nil rather than point-min&max to indicate
5094 ;; we're saving the buffer rather than just a region.
5095 ;; write-region-annotate-functions may make use of it.
5096 (write-region nil nil
5097 buffer-file-name nil t buffer-file-truename)
5098 (when save-silently (message nil))
5099 (setq success t))
5100 ;; If we get an error writing the new file, and we made
5101 ;; the backup by renaming, undo the backing-up.
5102 (and setmodes (not success)
5103 (progn
5104 (rename-file (nth 2 setmodes) buffer-file-name t)
5105 (setq buffer-backed-up nil))))))
5106 setmodes))
5108 (declare-function diff-no-select "diff"
5109 (old new &optional switches no-async buf))
5111 (defvar save-some-buffers-action-alist
5112 `((?\C-r
5113 ,(lambda (buf)
5114 (if (not enable-recursive-minibuffers)
5115 (progn (display-buffer buf)
5116 (setq other-window-scroll-buffer buf))
5117 (view-buffer buf (lambda (_) (exit-recursive-edit)))
5118 (recursive-edit))
5119 ;; Return nil to ask about BUF again.
5120 nil)
5121 ,(purecopy "view this buffer"))
5122 (?d ,(lambda (buf)
5123 (if (null (buffer-file-name buf))
5124 (message "Not applicable: no file")
5125 (require 'diff) ;for diff-no-select.
5126 (let ((diffbuf (diff-no-select (buffer-file-name buf) buf
5127 nil 'noasync)))
5128 (if (not enable-recursive-minibuffers)
5129 (progn (display-buffer diffbuf)
5130 (setq other-window-scroll-buffer diffbuf))
5131 (view-buffer diffbuf (lambda (_) (exit-recursive-edit)))
5132 (recursive-edit))))
5133 ;; Return nil to ask about BUF again.
5134 nil)
5135 ,(purecopy "view changes in this buffer")))
5136 "ACTION-ALIST argument used in call to `map-y-or-n-p'.")
5137 (put 'save-some-buffers-action-alist 'risky-local-variable t)
5139 (defvar buffer-save-without-query nil
5140 "Non-nil means `save-some-buffers' should save this buffer without asking.")
5141 (make-variable-buffer-local 'buffer-save-without-query)
5143 (defcustom save-some-buffers-default-predicate nil
5144 "Default predicate for `save-some-buffers'.
5145 This allows you to stop `save-some-buffers' from asking
5146 about certain files that you'd usually rather not save."
5147 :group 'auto-save
5148 :type 'function
5149 :version "26.1")
5151 (defun save-some-buffers (&optional arg pred)
5152 "Save some modified file-visiting buffers. Asks user about each one.
5153 You can answer `y' to save, `n' not to save, `C-r' to look at the
5154 buffer in question with `view-buffer' before deciding or `d' to
5155 view the differences using `diff-buffer-with-file'.
5157 This command first saves any buffers where `buffer-save-without-query' is
5158 non-nil, without asking.
5160 Optional argument (the prefix) non-nil means save all with no questions.
5161 Optional second argument PRED determines which buffers are considered:
5162 If PRED is nil, all the file-visiting buffers are considered.
5163 If PRED is t, then certain non-file buffers will also be considered.
5164 If PRED is a zero-argument function, it indicates for each buffer whether
5165 to consider it or not when called with that buffer current.
5166 PRED defaults to the value of `save-some-buffers-default-predicate'.
5168 See `save-some-buffers-action-alist' if you want to
5169 change the additional actions you can take on files."
5170 (interactive "P")
5171 (unless pred
5172 (setq pred save-some-buffers-default-predicate))
5173 (save-window-excursion
5174 (let* (queried autosaved-buffers
5175 files-done abbrevs-done)
5176 (dolist (buffer (buffer-list))
5177 ;; First save any buffers that we're supposed to save unconditionally.
5178 ;; That way the following code won't ask about them.
5179 (with-current-buffer buffer
5180 (when (and buffer-save-without-query (buffer-modified-p))
5181 (push (buffer-name) autosaved-buffers)
5182 (save-buffer))))
5183 ;; Ask about those buffers that merit it,
5184 ;; and record the number thus saved.
5185 (setq files-done
5186 (map-y-or-n-p
5187 (lambda (buffer)
5188 ;; Note that killing some buffers may kill others via
5189 ;; hooks (e.g. Rmail and its viewing buffer).
5190 (and (buffer-live-p buffer)
5191 (buffer-modified-p buffer)
5192 (not (buffer-base-buffer buffer))
5194 (buffer-file-name buffer)
5195 (with-current-buffer buffer
5196 (or (eq buffer-offer-save 'always)
5197 (and pred buffer-offer-save (> (buffer-size) 0)))))
5198 (or (not (functionp pred))
5199 (with-current-buffer buffer (funcall pred)))
5200 (if arg
5202 (setq queried t)
5203 (if (buffer-file-name buffer)
5204 (format "Save file %s? "
5205 (buffer-file-name buffer))
5206 (format "Save buffer %s? "
5207 (buffer-name buffer))))))
5208 (lambda (buffer)
5209 (with-current-buffer buffer
5210 (save-buffer)))
5211 (buffer-list)
5212 '("buffer" "buffers" "save")
5213 save-some-buffers-action-alist))
5214 ;; Maybe to save abbrevs, and record whether
5215 ;; we either saved them or asked to.
5216 (and save-abbrevs abbrevs-changed
5217 (progn
5218 (if (or arg
5219 (eq save-abbrevs 'silently)
5220 (y-or-n-p (format "Save abbrevs in %s? " abbrev-file-name)))
5221 (write-abbrev-file nil))
5222 ;; Don't keep bothering user if he says no.
5223 (setq abbrevs-changed nil)
5224 (setq abbrevs-done t)))
5225 (or queried (> files-done 0) abbrevs-done
5226 (cond
5227 ((null autosaved-buffers)
5228 (when (called-interactively-p 'any)
5229 (files--message "(No files need saving)")))
5230 ((= (length autosaved-buffers) 1)
5231 (files--message "(Saved %s)" (car autosaved-buffers)))
5233 (files--message "(Saved %d files: %s)"
5234 (length autosaved-buffers)
5235 (mapconcat 'identity autosaved-buffers ", "))))))))
5237 (defun clear-visited-file-modtime ()
5238 "Clear out records of last mod time of visited file.
5239 Next attempt to save will not complain of a discrepancy."
5240 (set-visited-file-modtime 0))
5242 (defun not-modified (&optional arg)
5243 "Mark current buffer as unmodified, not needing to be saved.
5244 With prefix ARG, mark buffer as modified, so \\[save-buffer] will save.
5246 It is not a good idea to use this function in Lisp programs, because it
5247 prints a message in the minibuffer. Instead, use `set-buffer-modified-p'."
5248 (declare (interactive-only set-buffer-modified-p))
5249 (interactive "P")
5250 (files--message (if arg "Modification-flag set"
5251 "Modification-flag cleared"))
5252 (set-buffer-modified-p arg))
5254 (defun toggle-read-only (&optional arg interactive)
5255 "Change whether this buffer is read-only."
5256 (declare (obsolete read-only-mode "24.3"))
5257 (interactive (list current-prefix-arg t))
5258 (if interactive
5259 (call-interactively 'read-only-mode)
5260 (read-only-mode (or arg 'toggle))))
5262 (defun insert-file (filename)
5263 "Insert contents of file FILENAME into buffer after point.
5264 Set mark after the inserted text.
5266 This function is meant for the user to run interactively.
5267 Don't call it from programs! Use `insert-file-contents' instead.
5268 \(Its calling sequence is different; see its documentation)."
5269 (declare (interactive-only insert-file-contents))
5270 (interactive "*fInsert file: ")
5271 (insert-file-1 filename #'insert-file-contents))
5273 (defun append-to-file (start end filename)
5274 "Append the contents of the region to the end of file FILENAME.
5275 When called from a function, expects three arguments,
5276 START, END and FILENAME. START and END are normally buffer positions
5277 specifying the part of the buffer to write.
5278 If START is nil, that means to use the entire buffer contents.
5279 If START is a string, then output that string to the file
5280 instead of any buffer contents; END is ignored.
5282 This does character code conversion and applies annotations
5283 like `write-region' does."
5284 (interactive "r\nFAppend to file: ")
5285 (prog1 (write-region start end filename t)
5286 (when save-silently (message nil))))
5288 (defun file-newest-backup (filename)
5289 "Return most recent backup file for FILENAME or nil if no backups exist."
5290 ;; `make-backup-file-name' will get us the right directory for
5291 ;; ordinary or numeric backups. It might create a directory for
5292 ;; backups as a side-effect, according to `backup-directory-alist'.
5293 (let* ((filename (file-name-sans-versions
5294 (make-backup-file-name (expand-file-name filename))))
5295 (file (file-name-nondirectory filename))
5296 (dir (file-name-directory filename))
5297 (comp (file-name-all-completions file dir))
5298 (newest nil)
5299 tem)
5300 (while comp
5301 (setq tem (pop comp))
5302 (cond ((and (backup-file-name-p tem)
5303 (string= (file-name-sans-versions tem) file))
5304 (setq tem (concat dir tem))
5305 (if (or (null newest)
5306 (file-newer-than-file-p tem newest))
5307 (setq newest tem)))))
5308 newest))
5310 (defun rename-uniquely ()
5311 "Rename current buffer to a similar name not already taken.
5312 This function is useful for creating multiple shell process buffers
5313 or multiple mail buffers, etc.
5315 Note that some commands, in particular those based on `compilation-mode'
5316 \(`compile', `grep', etc.) will reuse the current buffer if it has the
5317 appropriate mode even if it has been renamed. So as well as renaming
5318 the buffer, you also need to switch buffers before running another
5319 instance of such commands."
5320 (interactive)
5321 (save-match-data
5322 (let ((base-name (buffer-name)))
5323 (and (string-match "<[0-9]+>\\'" base-name)
5324 (not (and buffer-file-name
5325 (string= base-name
5326 (file-name-nondirectory buffer-file-name))))
5327 ;; If the existing buffer name has a <NNN>,
5328 ;; which isn't part of the file name (if any),
5329 ;; then get rid of that.
5330 (setq base-name (substring base-name 0 (match-beginning 0))))
5331 (rename-buffer (generate-new-buffer-name base-name))
5332 (force-mode-line-update))))
5334 (defun files--ensure-directory (dir)
5335 "Make directory DIR if it is not already a directory. Return nil."
5336 (condition-case err
5337 (make-directory-internal dir)
5338 (error
5339 (unless (file-directory-p dir)
5340 (signal (car err) (cdr err))))))
5342 (defun make-directory (dir &optional parents)
5343 "Create the directory DIR and optionally any nonexistent parent dirs.
5344 If DIR already exists as a directory, signal an error, unless
5345 PARENTS is non-nil.
5347 Interactively, the default choice of directory to create is the
5348 current buffer's default directory. That is useful when you have
5349 visited a file in a nonexistent directory.
5351 Noninteractively, the second (optional) argument PARENTS, if
5352 non-nil, says whether to create parent directories that don't
5353 exist. Interactively, this happens by default.
5355 If creating the directory or directories fail, an error will be
5356 raised."
5357 (interactive
5358 (list (read-file-name "Make directory: " default-directory default-directory
5359 nil nil)
5361 ;; If default-directory is a remote directory,
5362 ;; make sure we find its make-directory handler.
5363 (setq dir (expand-file-name dir))
5364 (let ((handler (find-file-name-handler dir 'make-directory)))
5365 (if handler
5366 (funcall handler 'make-directory dir parents)
5367 (if (not parents)
5368 (make-directory-internal dir)
5369 (let ((dir (directory-file-name (expand-file-name dir)))
5370 create-list parent)
5371 (while (progn
5372 (setq parent (directory-file-name
5373 (file-name-directory dir)))
5374 (condition-case ()
5375 (files--ensure-directory dir)
5376 (file-missing
5377 ;; Do not loop if root does not exist (Bug#2309).
5378 (not (string= dir parent)))))
5379 (setq create-list (cons dir create-list)
5380 dir parent))
5381 (dolist (dir create-list)
5382 (files--ensure-directory dir)))))))
5384 (defconst directory-files-no-dot-files-regexp
5385 "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*"
5386 "Regexp matching any file name except \".\" and \"..\".")
5388 (defun files--force (no-such fn &rest args)
5389 "Use NO-SUCH to affect behavior of function FN applied to list ARGS.
5390 This acts like (apply FN ARGS) except it returns NO-SUCH if it is
5391 non-nil and if FN fails due to a missing file or directory."
5392 (condition-case err
5393 (apply fn args)
5394 (file-missing (or no-such (signal (car err) (cdr err))))))
5396 (defun delete-directory (directory &optional recursive trash)
5397 "Delete the directory named DIRECTORY. Does not follow symlinks.
5398 If RECURSIVE is non-nil, delete files in DIRECTORY as well, with
5399 no error if something else is simultaneously deleting them.
5400 TRASH non-nil means to trash the directory instead, provided
5401 `delete-by-moving-to-trash' is non-nil.
5403 When called interactively, TRASH is nil if and only if a prefix
5404 argument is given, and a further prompt asks the user for
5405 RECURSIVE if DIRECTORY is nonempty."
5406 (interactive
5407 (let* ((trashing (and delete-by-moving-to-trash
5408 (null current-prefix-arg)))
5409 (dir (expand-file-name
5410 (read-directory-name
5411 (if trashing
5412 "Move directory to trash: "
5413 "Delete directory: ")
5414 default-directory default-directory nil nil))))
5415 (list dir
5416 (if (directory-files dir nil directory-files-no-dot-files-regexp)
5417 (y-or-n-p
5418 (format-message "Directory `%s' is not empty, really %s? "
5419 dir (if trashing "trash" "delete")))
5420 nil)
5421 (null current-prefix-arg))))
5422 ;; If default-directory is a remote directory, make sure we find its
5423 ;; delete-directory handler.
5424 (setq directory (directory-file-name (expand-file-name directory)))
5425 (let ((handler (find-file-name-handler directory 'delete-directory)))
5426 (cond
5427 (handler
5428 (funcall handler 'delete-directory directory recursive trash))
5429 ((and delete-by-moving-to-trash trash)
5430 ;; Only move non-empty dir to trash if recursive deletion was
5431 ;; requested. This mimics the non-`delete-by-moving-to-trash'
5432 ;; case, where the operation fails in delete-directory-internal.
5433 ;; As `move-file-to-trash' trashes directories (empty or
5434 ;; otherwise) as a unit, we do not need to recurse here.
5435 (if (and (not recursive)
5436 ;; Check if directory is empty apart from "." and "..".
5437 (directory-files
5438 directory 'full directory-files-no-dot-files-regexp))
5439 (error "Directory is not empty, not moving to trash")
5440 (move-file-to-trash directory)))
5441 ;; Otherwise, call ourselves recursively if needed.
5443 (when (or (not recursive) (file-symlink-p directory)
5444 (let* ((files
5445 (files--force t #'directory-files directory 'full
5446 directory-files-no-dot-files-regexp))
5447 (directory-exists (listp files)))
5448 (when directory-exists
5449 (mapc (lambda (file)
5450 ;; This test is equivalent to but more efficient
5451 ;; than (and (file-directory-p fn)
5452 ;; (not (file-symlink-p fn))).
5453 (if (eq t (car (file-attributes file)))
5454 (delete-directory file recursive)
5455 (files--force t #'delete-file file)))
5456 files))
5457 directory-exists))
5458 (files--force recursive #'delete-directory-internal directory))))))
5460 (defun file-equal-p (file1 file2)
5461 "Return non-nil if files FILE1 and FILE2 name the same file.
5462 If FILE1 or FILE2 does not exist, the return value is unspecified."
5463 (let ((handler (or (find-file-name-handler file1 'file-equal-p)
5464 (find-file-name-handler file2 'file-equal-p))))
5465 (if handler
5466 (funcall handler 'file-equal-p file1 file2)
5467 (let (f1-attr f2-attr)
5468 (and (setq f1-attr (file-attributes (file-truename file1)))
5469 (setq f2-attr (file-attributes (file-truename file2)))
5470 (equal f1-attr f2-attr))))))
5472 (defun file-in-directory-p (file dir)
5473 "Return non-nil if FILE is in DIR or a subdirectory of DIR.
5474 A directory is considered to be \"in\" itself.
5475 Return nil if DIR is not an existing directory."
5476 (let ((handler (or (find-file-name-handler file 'file-in-directory-p)
5477 (find-file-name-handler dir 'file-in-directory-p))))
5478 (if handler
5479 (funcall handler 'file-in-directory-p file dir)
5480 (when (file-directory-p dir) ; DIR must exist.
5481 (setq file (file-truename file)
5482 dir (file-truename dir))
5483 (let ((ls1 (split-string file "/" t))
5484 (ls2 (split-string dir "/" t))
5485 (root
5486 (cond
5487 ;; A UNC on Windows systems, or a "super-root" on Apollo.
5488 ((string-match "\\`//" file) "//")
5489 ((string-match "\\`/" file) "/")
5490 (t "")))
5491 (mismatch nil))
5492 (while (and ls1 ls2 (not mismatch))
5493 (if (string-equal (car ls1) (car ls2))
5494 (setq root (concat root (car ls1) "/"))
5495 (setq mismatch t))
5496 (setq ls1 (cdr ls1)
5497 ls2 (cdr ls2)))
5498 (unless mismatch
5499 (file-equal-p root dir)))))))
5501 (defun copy-directory (directory newname &optional keep-time parents copy-contents)
5502 "Copy DIRECTORY to NEWNAME. Both args must be strings.
5503 This function always sets the file modes of the output files to match
5504 the corresponding input file.
5506 The third arg KEEP-TIME non-nil means give the output files the same
5507 last-modified time as the old ones. (This works on only some systems.)
5509 A prefix arg makes KEEP-TIME non-nil.
5511 Noninteractively, the last argument PARENTS says whether to
5512 create parent directories if they don't exist. Interactively,
5513 this happens by default.
5515 If NEWNAME is a directory name, copy DIRECTORY as a subdirectory
5516 there. However, if called from Lisp with a non-nil optional
5517 argument COPY-CONTENTS, copy the contents of DIRECTORY directly
5518 into NEWNAME instead."
5519 (interactive
5520 (let ((dir (read-directory-name
5521 "Copy directory: " default-directory default-directory t nil)))
5522 (list dir
5523 (read-directory-name
5524 (format "Copy directory %s to: " dir)
5525 default-directory default-directory nil nil)
5526 current-prefix-arg t nil)))
5527 (when (file-in-directory-p newname directory)
5528 (error "Cannot copy `%s' into its subdirectory `%s'"
5529 directory newname))
5530 ;; If default-directory is a remote directory, make sure we find its
5531 ;; copy-directory handler.
5532 (let ((handler (or (find-file-name-handler directory 'copy-directory)
5533 (find-file-name-handler newname 'copy-directory))))
5534 (if handler
5535 (funcall handler 'copy-directory directory
5536 newname keep-time parents copy-contents)
5538 ;; Compute target name.
5539 (setq directory (directory-file-name (expand-file-name directory))
5540 newname (expand-file-name newname))
5542 (cond ((not (directory-name-p newname))
5543 ;; If NEWNAME is not a directory name, create it;
5544 ;; that is where we will copy the files of DIRECTORY.
5545 (make-directory newname parents))
5546 ;; NEWNAME is a directory name. If COPY-CONTENTS is non-nil,
5547 ;; create NEWNAME if it is not already a directory;
5548 ;; otherwise, create NEWNAME/[DIRECTORY-BASENAME].
5549 ((if copy-contents
5550 (or parents (not (file-directory-p newname)))
5551 (setq newname (concat newname
5552 (file-name-nondirectory directory))))
5553 (make-directory (directory-file-name newname) parents)))
5555 ;; Copy recursively.
5556 (dolist (file
5557 ;; We do not want to copy "." and "..".
5558 (directory-files directory 'full
5559 directory-files-no-dot-files-regexp))
5560 (let ((target (concat (file-name-as-directory newname)
5561 (file-name-nondirectory file)))
5562 (filetype (car (file-attributes file))))
5563 (cond
5564 ((eq filetype t) ; Directory but not a symlink.
5565 (copy-directory file target keep-time parents t))
5566 ((stringp filetype) ; Symbolic link
5567 (make-symbolic-link filetype target t))
5568 ((copy-file file target t keep-time)))))
5570 ;; Set directory attributes.
5571 (let ((modes (file-modes directory))
5572 (times (and keep-time (nth 5 (file-attributes directory)))))
5573 (if modes (set-file-modes newname modes))
5574 (if times (set-file-times newname times))))))
5577 ;; At time of writing, only info uses this.
5578 (defun prune-directory-list (dirs &optional keep reject)
5579 "Return a copy of DIRS with all non-existent directories removed.
5580 The optional argument KEEP is a list of directories to retain even if
5581 they don't exist, and REJECT is a list of directories to remove from
5582 DIRS, even if they exist; REJECT takes precedence over KEEP.
5584 Note that membership in REJECT and KEEP is checked using simple string
5585 comparison."
5586 (apply #'nconc
5587 (mapcar (lambda (dir)
5588 (and (not (member dir reject))
5589 (or (member dir keep) (file-directory-p dir))
5590 (list dir)))
5591 dirs)))
5594 (put 'revert-buffer-function 'permanent-local t)
5595 (defvar revert-buffer-function #'revert-buffer--default
5596 "Function to use to revert this buffer.
5597 The function receives two arguments IGNORE-AUTO and NOCONFIRM,
5598 which are the arguments that `revert-buffer' received.
5599 It also has access to the `preserve-modes' argument of `revert-buffer'
5600 via the `revert-buffer-preserve-modes' dynamic variable.
5602 For historical reasons, a value of nil means to use the default function.
5603 This should not be relied upon.")
5605 (put 'revert-buffer-insert-file-contents-function 'permanent-local t)
5606 (defvar revert-buffer-insert-file-contents-function
5607 #'revert-buffer-insert-file-contents--default-function
5608 "Function to use to insert contents when reverting this buffer.
5609 The function receives two arguments: the first the nominal file name to use;
5610 the second is t if reading the auto-save file.
5612 The function is responsible for updating (or preserving) point.
5614 For historical reasons, a value of nil means to use the default function.
5615 This should not be relied upon.")
5617 (defun buffer-stale--default-function (&optional _noconfirm)
5618 "Default function to use for `buffer-stale-function'.
5619 This function ignores its argument.
5620 This returns non-nil if the current buffer is visiting a readable file
5621 whose modification time does not match that of the buffer.
5623 This function only handles buffers that are visiting files.
5624 Non-file buffers need a custom function"
5625 (and buffer-file-name
5626 (file-readable-p buffer-file-name)
5627 (not (buffer-modified-p (current-buffer)))
5628 (not (verify-visited-file-modtime (current-buffer)))))
5630 (defvar buffer-stale-function #'buffer-stale--default-function
5631 "Function to check whether a buffer needs reverting.
5632 This should be a function with one optional argument NOCONFIRM.
5633 Auto Revert Mode passes t for NOCONFIRM. The function should return
5634 non-nil if the buffer should be reverted. A return value of
5635 `fast' means that the need for reverting was not checked, but
5636 that reverting the buffer is fast. The buffer is current when
5637 this function is called.
5639 The idea behind the NOCONFIRM argument is that it should be
5640 non-nil if the buffer is going to be reverted without asking the
5641 user. In such situations, one has to be careful with potentially
5642 time consuming operations.
5644 For historical reasons, a value of nil means to use the default function.
5645 This should not be relied upon.
5647 For more information on how this variable is used by Auto Revert mode,
5648 see Info node `(emacs)Supporting additional buffers'.")
5650 (defvar before-revert-hook nil
5651 "Normal hook for `revert-buffer' to run before reverting.
5652 The function `revert-buffer--default' runs this.
5653 A customized `revert-buffer-function' need not run this hook.")
5655 (defvar after-revert-hook nil
5656 "Normal hook for `revert-buffer' to run after reverting.
5657 Note that the hook value that it runs is the value that was in effect
5658 before reverting; that makes a difference if you have buffer-local
5659 hook functions.
5661 The function `revert-buffer--default' runs this.
5662 A customized `revert-buffer-function' need not run this hook.")
5664 (defvar revert-buffer-in-progress-p nil
5665 "Non-nil if a `revert-buffer' operation is in progress, nil otherwise.")
5667 (defvar revert-buffer-internal-hook)
5669 ;; `revert-buffer-function' was defined long ago to be a function of only
5670 ;; 2 arguments, so we have to use a dynbind variable to pass the
5671 ;; `preserve-modes' argument of `revert-buffer'.
5672 (defvar revert-buffer-preserve-modes)
5674 (defun revert-buffer (&optional ignore-auto noconfirm preserve-modes)
5675 "Replace current buffer text with the text of the visited file on disk.
5676 This undoes all changes since the file was visited or saved.
5677 With a prefix argument, offer to revert from latest auto-save file, if
5678 that is more recent than the visited file.
5680 This command also implements an interface for special buffers
5681 that contain text which doesn't come from a file, but reflects
5682 some other data instead (e.g. Dired buffers, `buffer-list'
5683 buffers). This is done via the variable `revert-buffer-function'.
5684 In these cases, it should reconstruct the buffer contents from the
5685 appropriate data.
5687 When called from Lisp, the first argument is IGNORE-AUTO; only offer
5688 to revert from the auto-save file when this is nil. Note that the
5689 sense of this argument is the reverse of the prefix argument, for the
5690 sake of backward compatibility. IGNORE-AUTO is optional, defaulting
5691 to nil.
5693 Optional second argument NOCONFIRM means don't ask for confirmation
5694 at all. (The variable `revert-without-query' offers another way to
5695 revert buffers without querying for confirmation.)
5697 Optional third argument PRESERVE-MODES non-nil means don't alter
5698 the files modes. Normally we reinitialize them using `normal-mode'.
5700 This function binds `revert-buffer-in-progress-p' non-nil while it operates.
5702 This function calls the function that `revert-buffer-function' specifies
5703 to do the work, with arguments IGNORE-AUTO and NOCONFIRM.
5704 The default function runs the hooks `before-revert-hook' and
5705 `after-revert-hook'."
5706 ;; I admit it's odd to reverse the sense of the prefix argument, but
5707 ;; there is a lot of code out there which assumes that the first
5708 ;; argument should be t to avoid consulting the auto-save file, and
5709 ;; there's no straightforward way to encourage authors to notice a
5710 ;; reversal of the argument sense. So I'm just changing the user
5711 ;; interface, but leaving the programmatic interface the same.
5712 (interactive (list (not current-prefix-arg)))
5713 (let ((revert-buffer-in-progress-p t)
5714 (revert-buffer-preserve-modes preserve-modes))
5715 (funcall (or revert-buffer-function #'revert-buffer--default)
5716 ignore-auto noconfirm)))
5718 (defun revert-buffer--default (ignore-auto noconfirm)
5719 "Default function for `revert-buffer'.
5720 The arguments IGNORE-AUTO and NOCONFIRM are as described for `revert-buffer'.
5721 Runs the hooks `before-revert-hook' and `after-revert-hook' at the
5722 start and end.
5724 Calls `revert-buffer-insert-file-contents-function' to reread the
5725 contents of the visited file, with two arguments: the first is the file
5726 name, the second is non-nil if reading an auto-save file.
5728 This function only handles buffers that are visiting files.
5729 Non-file buffers need a custom function."
5730 (with-current-buffer (or (buffer-base-buffer (current-buffer))
5731 (current-buffer))
5732 (let* ((auto-save-p (and (not ignore-auto)
5733 (recent-auto-save-p)
5734 buffer-auto-save-file-name
5735 (file-readable-p buffer-auto-save-file-name)
5736 (y-or-n-p
5737 "Buffer has been auto-saved recently. Revert from auto-save file? ")))
5738 (file-name (if auto-save-p
5739 buffer-auto-save-file-name
5740 buffer-file-name)))
5741 (cond ((null file-name)
5742 (error "Buffer does not seem to be associated with any file"))
5743 ((or noconfirm
5744 (and (not (buffer-modified-p))
5745 (catch 'found
5746 (dolist (regexp revert-without-query)
5747 (when (string-match regexp file-name)
5748 (throw 'found t)))))
5749 (yes-or-no-p (format "Revert buffer from file %s? "
5750 file-name)))
5751 (run-hooks 'before-revert-hook)
5752 ;; If file was backed up but has changed since,
5753 ;; we should make another backup.
5754 (and (not auto-save-p)
5755 (not (verify-visited-file-modtime (current-buffer)))
5756 (setq buffer-backed-up nil))
5757 ;; Effectively copy the after-revert-hook status,
5758 ;; since after-find-file will clobber it.
5759 (let ((global-hook (default-value 'after-revert-hook))
5760 (local-hook (when (local-variable-p 'after-revert-hook)
5761 after-revert-hook))
5762 (inhibit-read-only t))
5763 ;; FIXME: Throw away undo-log when preserve-modes is nil?
5764 (funcall
5765 (or revert-buffer-insert-file-contents-function
5766 #'revert-buffer-insert-file-contents--default-function)
5767 file-name auto-save-p)
5768 ;; Recompute the truename in case changes in symlinks
5769 ;; have changed the truename.
5770 (setq buffer-file-truename
5771 (abbreviate-file-name (file-truename buffer-file-name)))
5772 (after-find-file nil nil t nil revert-buffer-preserve-modes)
5773 ;; Run after-revert-hook as it was before we reverted.
5774 (setq-default revert-buffer-internal-hook global-hook)
5775 (if local-hook
5776 (set (make-local-variable 'revert-buffer-internal-hook)
5777 local-hook)
5778 (kill-local-variable 'revert-buffer-internal-hook))
5779 (run-hooks 'revert-buffer-internal-hook))
5780 t)))))
5782 (defun revert-buffer-insert-file-contents--default-function (file-name auto-save-p)
5783 "Default function for `revert-buffer-insert-file-contents-function'.
5784 The function `revert-buffer--default' calls this.
5785 FILE-NAME is the name of the file. AUTO-SAVE-P is non-nil if this is
5786 an auto-save file."
5787 (cond
5788 ((not (file-exists-p file-name))
5789 (error (if buffer-file-number
5790 "File %s no longer exists!"
5791 "Cannot revert nonexistent file %s")
5792 file-name))
5793 ((not (file-readable-p file-name))
5794 (error (if buffer-file-number
5795 "File %s no longer readable!"
5796 "Cannot revert unreadable file %s")
5797 file-name))
5799 ;; Bind buffer-file-name to nil
5800 ;; so that we don't try to lock the file.
5801 (let ((buffer-file-name nil))
5802 (or auto-save-p
5803 (unlock-buffer)))
5804 (widen)
5805 (let ((coding-system-for-read
5806 ;; Auto-saved file should be read by Emacs's
5807 ;; internal coding.
5808 (if auto-save-p 'auto-save-coding
5809 (or coding-system-for-read
5810 (and
5811 buffer-file-coding-system-explicit
5812 (car buffer-file-coding-system-explicit))))))
5813 (if (and (not enable-multibyte-characters)
5814 coding-system-for-read
5815 (not (memq (coding-system-base
5816 coding-system-for-read)
5817 '(no-conversion raw-text))))
5818 ;; As a coding system suitable for multibyte
5819 ;; buffer is specified, make the current
5820 ;; buffer multibyte.
5821 (set-buffer-multibyte t))
5823 ;; This force after-insert-file-set-coding
5824 ;; (called from insert-file-contents) to set
5825 ;; buffer-file-coding-system to a proper value.
5826 (kill-local-variable 'buffer-file-coding-system)
5828 ;; Note that this preserves point in an intelligent way.
5829 (if revert-buffer-preserve-modes
5830 (let ((buffer-file-format buffer-file-format))
5831 (insert-file-contents file-name (not auto-save-p)
5832 nil nil t))
5833 (insert-file-contents file-name (not auto-save-p)
5834 nil nil t))))))
5836 (defun recover-this-file ()
5837 "Recover the visited file--get contents from its last auto-save file."
5838 (interactive)
5839 (or buffer-file-name
5840 (user-error "This buffer is not visiting a file"))
5841 (recover-file buffer-file-name))
5843 (defun recover-file (file)
5844 "Visit file FILE, but get contents from its last auto-save file."
5845 ;; Actually putting the file name in the minibuffer should be used
5846 ;; only rarely.
5847 ;; Not just because users often use the default.
5848 (interactive "FRecover file: ")
5849 (setq file (expand-file-name file))
5850 (if (auto-save-file-name-p (file-name-nondirectory file))
5851 (error "%s is an auto-save file" (abbreviate-file-name file)))
5852 (let ((file-name (let ((buffer-file-name file))
5853 (make-auto-save-file-name))))
5854 (cond ((if (file-exists-p file)
5855 (not (file-newer-than-file-p file-name file))
5856 (not (file-exists-p file-name)))
5857 (error "Auto-save file %s not current"
5858 (abbreviate-file-name file-name)))
5859 ((with-temp-buffer-window
5860 "*Directory*" nil
5861 #'(lambda (window _value)
5862 (with-selected-window window
5863 (unwind-protect
5864 (yes-or-no-p (format "Recover auto save file %s? " file-name))
5865 (when (window-live-p window)
5866 (quit-restore-window window 'kill)))))
5867 (with-current-buffer standard-output
5868 (let ((switches dired-listing-switches))
5869 (if (file-symlink-p file)
5870 (setq switches (concat switches " -L")))
5871 ;; Use insert-directory-safely, not insert-directory,
5872 ;; because these files might not exist. In particular,
5873 ;; FILE might not exist if the auto-save file was for
5874 ;; a buffer that didn't visit a file, such as "*mail*".
5875 ;; The code in v20.x called `ls' directly, so we need
5876 ;; to emulate what `ls' did in that case.
5877 (insert-directory-safely file switches)
5878 (insert-directory-safely file-name switches))))
5879 (switch-to-buffer (find-file-noselect file t))
5880 (let ((inhibit-read-only t)
5881 ;; Keep the current buffer-file-coding-system.
5882 (coding-system buffer-file-coding-system)
5883 ;; Auto-saved file should be read with special coding.
5884 (coding-system-for-read 'auto-save-coding))
5885 (erase-buffer)
5886 (insert-file-contents file-name nil)
5887 (set-buffer-file-coding-system coding-system))
5888 (after-find-file nil nil t))
5889 (t (user-error "Recover-file canceled")))))
5891 (defun recover-session ()
5892 "Recover auto save files from a previous Emacs session.
5893 This command first displays a Dired buffer showing you the
5894 previous sessions that you could recover from.
5895 To choose one, move point to the proper line and then type C-c C-c.
5896 Then you'll be asked about a number of files to recover."
5897 (interactive)
5898 (if (null auto-save-list-file-prefix)
5899 (error "You set `auto-save-list-file-prefix' to disable making session files"))
5900 (let ((dir (file-name-directory auto-save-list-file-prefix))
5901 (nd (file-name-nondirectory auto-save-list-file-prefix)))
5902 (unless (file-directory-p dir)
5903 (make-directory dir t))
5904 (unless (directory-files dir nil
5905 (if (string= "" nd)
5906 directory-files-no-dot-files-regexp
5907 (concat "\\`" (regexp-quote nd)))
5909 (error "No previous sessions to recover")))
5910 (let ((ls-lisp-support-shell-wildcards t))
5911 (dired (concat auto-save-list-file-prefix "*")
5912 (concat dired-listing-switches " -t")))
5913 (use-local-map (nconc (make-sparse-keymap) (current-local-map)))
5914 (define-key (current-local-map) "\C-c\C-c" 'recover-session-finish)
5915 (save-excursion
5916 (goto-char (point-min))
5917 (or (looking-at " Move to the session you want to recover,")
5918 (let ((inhibit-read-only t))
5919 ;; Each line starts with a space
5920 ;; so that Font Lock mode won't highlight the first character.
5921 (insert " To recover a session, move to it and type C-c C-c.\n"
5922 (substitute-command-keys
5923 " To delete a session file, type \
5924 \\[dired-flag-file-deletion] on its line to flag
5925 the file for deletion, then \\[dired-do-flagged-delete] to \
5926 delete flagged files.\n\n"))))))
5928 (defun recover-session-finish ()
5929 "Choose one saved session to recover auto-save files from.
5930 This command is used in the special Dired buffer created by
5931 \\[recover-session]."
5932 (interactive)
5933 ;; Get the name of the session file to recover from.
5934 (let ((file (dired-get-filename))
5935 files
5936 (buffer (get-buffer-create " *recover*")))
5937 (dired-unmark 1)
5938 (dired-do-flagged-delete t)
5939 (unwind-protect
5940 (with-current-buffer buffer
5941 ;; Read in the auto-save-list file.
5942 (erase-buffer)
5943 (insert-file-contents file)
5944 ;; Loop thru the text of that file
5945 ;; and get out the names of the files to recover.
5946 (while (not (eobp))
5947 (let (thisfile autofile)
5948 (if (eolp)
5949 ;; This is a pair of lines for a non-file-visiting buffer.
5950 ;; Get the auto-save file name and manufacture
5951 ;; a "visited file name" from that.
5952 (progn
5953 (forward-line 1)
5954 ;; If there is no auto-save file name, the
5955 ;; auto-save-list file is probably corrupted.
5956 (unless (eolp)
5957 (setq autofile
5958 (buffer-substring-no-properties
5959 (point)
5960 (line-end-position)))
5961 (setq thisfile
5962 (expand-file-name
5963 (substring
5964 (file-name-nondirectory autofile)
5965 1 -1)
5966 (file-name-directory autofile))))
5967 (forward-line 1))
5968 ;; This pair of lines is a file-visiting
5969 ;; buffer. Use the visited file name.
5970 (progn
5971 (setq thisfile
5972 (buffer-substring-no-properties
5973 (point) (progn (end-of-line) (point))))
5974 (forward-line 1)
5975 (setq autofile
5976 (buffer-substring-no-properties
5977 (point) (progn (end-of-line) (point))))
5978 (forward-line 1)))
5979 ;; Ignore a file if its auto-save file does not exist now.
5980 (if (and autofile (file-exists-p autofile))
5981 (setq files (cons thisfile files)))))
5982 (setq files (nreverse files))
5983 ;; The file contains a pair of line for each auto-saved buffer.
5984 ;; The first line of the pair contains the visited file name
5985 ;; or is empty if the buffer was not visiting a file.
5986 ;; The second line is the auto-save file name.
5987 (if files
5988 (map-y-or-n-p "Recover %s? "
5989 (lambda (file)
5990 (condition-case nil
5991 (save-excursion (recover-file file))
5992 (error
5993 "Failed to recover `%s'" file)))
5994 files
5995 '("file" "files" "recover"))
5996 (message "No files can be recovered from this session now")))
5997 (kill-buffer buffer))))
5999 (defun kill-buffer-ask (buffer)
6000 "Kill BUFFER if confirmed."
6001 (when (yes-or-no-p (format "Buffer %s %s. Kill? "
6002 (buffer-name buffer)
6003 (if (buffer-modified-p buffer)
6004 "HAS BEEN EDITED" "is unmodified")))
6005 (kill-buffer buffer)))
6007 (defun kill-some-buffers (&optional list)
6008 "Kill some buffers. Asks the user whether to kill each one of them.
6009 Non-interactively, if optional argument LIST is non-nil, it
6010 specifies the list of buffers to kill, asking for approval for each one."
6011 (interactive)
6012 (if (null list)
6013 (setq list (buffer-list)))
6014 (while list
6015 (let* ((buffer (car list))
6016 (name (buffer-name buffer)))
6017 (and name ; Can be nil for an indirect buffer
6018 ; if we killed the base buffer.
6019 (not (string-equal name ""))
6020 (/= (aref name 0) ?\s)
6021 (kill-buffer-ask buffer)))
6022 (setq list (cdr list))))
6024 (defun kill-matching-buffers (regexp &optional internal-too no-ask)
6025 "Kill buffers whose name matches the specified REGEXP.
6026 Ignores buffers whose name starts with a space, unless optional
6027 prefix argument INTERNAL-TOO is non-nil. Asks before killing
6028 each buffer, unless NO-ASK is non-nil."
6029 (interactive "sKill buffers matching this regular expression: \nP")
6030 (dolist (buffer (buffer-list))
6031 (let ((name (buffer-name buffer)))
6032 (when (and name (not (string-equal name ""))
6033 (or internal-too (/= (aref name 0) ?\s))
6034 (string-match regexp name))
6035 (funcall (if no-ask 'kill-buffer 'kill-buffer-ask) buffer)))))
6038 (defun rename-auto-save-file ()
6039 "Adjust current buffer's auto save file name for current conditions.
6040 Also rename any existing auto save file, if it was made in this session."
6041 (let ((osave buffer-auto-save-file-name))
6042 (setq buffer-auto-save-file-name
6043 (make-auto-save-file-name))
6044 (if (and osave buffer-auto-save-file-name
6045 (not (string= buffer-auto-save-file-name buffer-file-name))
6046 (not (string= buffer-auto-save-file-name osave))
6047 (file-exists-p osave)
6048 (recent-auto-save-p))
6049 (rename-file osave buffer-auto-save-file-name t))))
6051 (defun make-auto-save-file-name ()
6052 "Return file name to use for auto-saves of current buffer.
6053 Does not consider `auto-save-visited-file-name' as that variable is checked
6054 before calling this function. You can redefine this for customization.
6055 See also `auto-save-file-name-p'."
6056 (if buffer-file-name
6057 (let ((handler (find-file-name-handler buffer-file-name
6058 'make-auto-save-file-name)))
6059 (if handler
6060 (funcall handler 'make-auto-save-file-name)
6061 (let ((list auto-save-file-name-transforms)
6062 (filename buffer-file-name)
6063 result uniq)
6064 ;; Apply user-specified translations
6065 ;; to the file name.
6066 (while (and list (not result))
6067 (if (string-match (car (car list)) filename)
6068 (setq result (replace-match (cadr (car list)) t nil
6069 filename)
6070 uniq (car (cddr (car list)))))
6071 (setq list (cdr list)))
6072 (if result
6073 (if uniq
6074 (setq filename (concat
6075 (file-name-directory result)
6076 (subst-char-in-string
6077 ?/ ?!
6078 (replace-regexp-in-string "!" "!!"
6079 filename))))
6080 (setq filename result)))
6081 (setq result
6082 (if (and (eq system-type 'ms-dos)
6083 (not (msdos-long-file-names)))
6084 ;; We truncate the file name to DOS 8+3 limits
6085 ;; before doing anything else, because the regexp
6086 ;; passed to string-match below cannot handle
6087 ;; extensions longer than 3 characters, multiple
6088 ;; dots, and other atrocities.
6089 (let ((fn (dos-8+3-filename
6090 (file-name-nondirectory buffer-file-name))))
6091 (string-match
6092 "\\`\\([^.]+\\)\\(\\.\\(..?\\)?.?\\|\\)\\'"
6094 (concat (file-name-directory buffer-file-name)
6095 "#" (match-string 1 fn)
6096 "." (match-string 3 fn) "#"))
6097 (concat (file-name-directory filename)
6099 (file-name-nondirectory filename)
6100 "#")))
6101 ;; Make sure auto-save file names don't contain characters
6102 ;; invalid for the underlying filesystem.
6103 (if (and (memq system-type '(ms-dos windows-nt cygwin))
6104 ;; Don't modify remote filenames
6105 (not (file-remote-p result)))
6106 (convert-standard-filename result)
6107 result))))
6109 ;; Deal with buffers that don't have any associated files. (Mail
6110 ;; mode tends to create a good number of these.)
6112 (let ((buffer-name (buffer-name))
6113 (limit 0)
6114 file-name)
6115 ;; Restrict the characters used in the file name to those which
6116 ;; are known to be safe on all filesystems, url-encoding the
6117 ;; rest.
6118 ;; We do this on all platforms, because even if we are not
6119 ;; running on DOS/Windows, the current directory may be on a
6120 ;; mounted VFAT filesystem, such as a USB memory stick.
6121 (while (string-match "[^A-Za-z0-9-_.~#+]" buffer-name limit)
6122 (let* ((character (aref buffer-name (match-beginning 0)))
6123 (replacement
6124 ;; For multibyte characters, this will produce more than
6125 ;; 2 hex digits, so is not true URL encoding.
6126 (format "%%%02X" character)))
6127 (setq buffer-name (replace-match replacement t t buffer-name))
6128 (setq limit (1+ (match-end 0)))))
6129 ;; Generate the file name.
6130 (setq file-name
6131 (make-temp-file
6132 (let ((fname
6133 (expand-file-name
6134 (format "#%s#" buffer-name)
6135 ;; Try a few alternative directories, to get one we can
6136 ;; write it.
6137 (cond
6138 ((file-writable-p default-directory) default-directory)
6139 ((file-writable-p "/var/tmp/") "/var/tmp/")
6140 ("~/")))))
6141 (if (and (memq system-type '(ms-dos windows-nt cygwin))
6142 ;; Don't modify remote filenames
6143 (not (file-remote-p fname)))
6144 ;; The call to convert-standard-filename is in case
6145 ;; buffer-name includes characters not allowed by the
6146 ;; DOS/Windows filesystems. make-temp-file writes to the
6147 ;; file it creates, so we must fix the file name _before_
6148 ;; make-temp-file is called.
6149 (convert-standard-filename fname)
6150 fname))
6151 nil "#"))
6152 ;; make-temp-file creates the file,
6153 ;; but we don't want it to exist until we do an auto-save.
6154 (condition-case ()
6155 (delete-file file-name)
6156 (file-error nil))
6157 file-name)))
6159 (defun auto-save-file-name-p (filename)
6160 "Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'.
6161 FILENAME should lack slashes. You can redefine this for customization."
6162 (string-match "\\`#.*#\\'" filename))
6164 (defun wildcard-to-regexp (wildcard)
6165 "Given a shell file name pattern WILDCARD, return an equivalent regexp.
6166 The generated regexp will match a filename only if the filename
6167 matches that wildcard according to shell rules. Only wildcards known
6168 by `sh' are supported."
6169 (let* ((i (string-match "[[.*+\\^$?]" wildcard))
6170 ;; Copy the initial run of non-special characters.
6171 (result (substring wildcard 0 i))
6172 (len (length wildcard)))
6173 ;; If no special characters, we're almost done.
6174 (if i
6175 (while (< i len)
6176 (let ((ch (aref wildcard i))
6178 (setq
6179 result
6180 (concat result
6181 (cond
6182 ((and (eq ch ?\[)
6183 (< (1+ i) len)
6184 (eq (aref wildcard (1+ i)) ?\]))
6185 "\\[")
6186 ((eq ch ?\[) ; [...] maps to regexp char class
6187 (progn
6188 (setq i (1+ i))
6189 (concat
6190 (cond
6191 ((eq (aref wildcard i) ?!) ; [!...] -> [^...]
6192 (progn
6193 (setq i (1+ i))
6194 (if (eq (aref wildcard i) ?\])
6195 (progn
6196 (setq i (1+ i))
6197 "[^]")
6198 "[^")))
6199 ((eq (aref wildcard i) ?^)
6200 ;; Found "[^". Insert a `\0' character
6201 ;; (which cannot happen in a filename)
6202 ;; into the character class, so that `^'
6203 ;; is not the first character after `[',
6204 ;; and thus non-special in a regexp.
6205 (progn
6206 (setq i (1+ i))
6207 "[\000^"))
6208 ((eq (aref wildcard i) ?\])
6209 ;; I don't think `]' can appear in a
6210 ;; character class in a wildcard, but
6211 ;; let's be general here.
6212 (progn
6213 (setq i (1+ i))
6214 "[]"))
6215 (t "["))
6216 (prog1 ; copy everything upto next `]'.
6217 (substring wildcard
6219 (setq j (string-match
6220 "]" wildcard i)))
6221 (setq i (if j (1- j) (1- len)))))))
6222 ((eq ch ?.) "\\.")
6223 ((eq ch ?*) "[^\000]*")
6224 ((eq ch ?+) "\\+")
6225 ((eq ch ?^) "\\^")
6226 ((eq ch ?$) "\\$")
6227 ((eq ch ?\\) "\\\\") ; probably cannot happen...
6228 ((eq ch ??) "[^\000]")
6229 (t (char-to-string ch)))))
6230 (setq i (1+ i)))))
6231 ;; Shell wildcards should match the entire filename,
6232 ;; not its part. Make the regexp say so.
6233 (concat "\\`" result "\\'")))
6235 (defcustom list-directory-brief-switches
6236 (purecopy "-CF")
6237 "Switches for `list-directory' to pass to `ls' for brief listing."
6238 :type 'string
6239 :group 'dired)
6241 (defcustom list-directory-verbose-switches
6242 (purecopy "-l")
6243 "Switches for `list-directory' to pass to `ls' for verbose listing."
6244 :type 'string
6245 :group 'dired)
6247 (defun file-expand-wildcards (pattern &optional full)
6248 "Expand wildcard pattern PATTERN.
6249 This returns a list of file names which match the pattern.
6250 Files are sorted in `string<' order.
6252 If PATTERN is written as an absolute file name,
6253 the values are absolute also.
6255 If PATTERN is written as a relative file name, it is interpreted
6256 relative to the current default directory, `default-directory'.
6257 The file names returned are normally also relative to the current
6258 default directory. However, if FULL is non-nil, they are absolute."
6259 (save-match-data
6260 (let* ((nondir (file-name-nondirectory pattern))
6261 (dirpart (file-name-directory pattern))
6262 ;; A list of all dirs that DIRPART specifies.
6263 ;; This can be more than one dir
6264 ;; if DIRPART contains wildcards.
6265 (dirs (if (and dirpart
6266 (string-match "[[*?]" (file-local-name dirpart)))
6267 (mapcar 'file-name-as-directory
6268 (file-expand-wildcards (directory-file-name dirpart)))
6269 (list dirpart)))
6270 contents)
6271 (dolist (dir dirs)
6272 (when (or (null dir) ; Possible if DIRPART is not wild.
6273 (file-accessible-directory-p dir))
6274 (let ((this-dir-contents
6275 ;; Filter out "." and ".."
6276 (delq nil
6277 (mapcar #'(lambda (name)
6278 (unless (string-match "\\`\\.\\.?\\'"
6279 (file-name-nondirectory name))
6280 name))
6281 (directory-files (or dir ".") full
6282 (wildcard-to-regexp nondir))))))
6283 (setq contents
6284 (nconc
6285 (if (and dir (not full))
6286 (mapcar #'(lambda (name) (concat dir name))
6287 this-dir-contents)
6288 this-dir-contents)
6289 contents)))))
6290 contents)))
6292 ;; Let Tramp know that `file-expand-wildcards' does not need an advice.
6293 (provide 'files '(remote-wildcards))
6295 (defun list-directory (dirname &optional verbose)
6296 "Display a list of files in or matching DIRNAME, a la `ls'.
6297 DIRNAME is globbed by the shell if necessary.
6298 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
6299 Actions controlled by variables `list-directory-brief-switches'
6300 and `list-directory-verbose-switches'."
6301 (interactive (let ((pfx current-prefix-arg))
6302 (list (read-directory-name (if pfx "List directory (verbose): "
6303 "List directory (brief): ")
6304 nil default-directory nil)
6305 pfx)))
6306 (let ((switches (if verbose list-directory-verbose-switches
6307 list-directory-brief-switches))
6308 buffer)
6309 (or dirname (setq dirname default-directory))
6310 (setq dirname (expand-file-name dirname))
6311 (with-output-to-temp-buffer "*Directory*"
6312 (setq buffer standard-output)
6313 (buffer-disable-undo standard-output)
6314 (princ "Directory ")
6315 (princ dirname)
6316 (terpri)
6317 (with-current-buffer "*Directory*"
6318 (let ((wildcard (not (file-directory-p dirname))))
6319 (insert-directory dirname switches wildcard (not wildcard)))))
6320 ;; Finishing with-output-to-temp-buffer seems to clobber default-directory.
6321 (with-current-buffer buffer
6322 (setq default-directory
6323 (if (file-directory-p dirname)
6324 (file-name-as-directory dirname)
6325 (file-name-directory dirname))))))
6327 (defun shell-quote-wildcard-pattern (pattern)
6328 "Quote characters special to the shell in PATTERN, leave wildcards alone.
6330 PATTERN is assumed to represent a file-name wildcard suitable for the
6331 underlying filesystem. For Unix and GNU/Linux, each character from the
6332 set [ \\t\\n;<>&|()\\=`\\='\"#$] is quoted with a backslash; for DOS/Windows, all
6333 the parts of the pattern which don't include wildcard characters are
6334 quoted with double quotes.
6336 This function leaves alone existing quote characters (\\ on Unix and \"
6337 on Windows), so PATTERN can use them to quote wildcard characters that
6338 need to be passed verbatim to shell commands."
6339 (save-match-data
6340 (cond
6341 ((memq system-type '(ms-dos windows-nt cygwin))
6342 ;; DOS/Windows don't allow `"' in file names. So if the
6343 ;; argument has quotes, we can safely assume it is already
6344 ;; quoted by the caller.
6345 (if (or (string-match "[\"]" pattern)
6346 ;; We quote [&()#$`'] in case their shell is a port of a
6347 ;; Unixy shell. We quote [,=+] because stock DOS and
6348 ;; Windows shells require that in some cases, such as
6349 ;; passing arguments to batch files that use positional
6350 ;; arguments like %1.
6351 (not (string-match "[ \t;&()#$`',=+]" pattern)))
6352 pattern
6353 (let ((result "\"")
6354 (beg 0)
6355 end)
6356 (while (string-match "[*?]+" pattern beg)
6357 (setq end (match-beginning 0)
6358 result (concat result (substring pattern beg end)
6359 "\""
6360 (substring pattern end (match-end 0))
6361 "\"")
6362 beg (match-end 0)))
6363 (concat result (substring pattern beg) "\""))))
6365 (let ((beg 0))
6366 (while (string-match "[ \t\n;<>&|()`'\"#$]" pattern beg)
6367 (setq pattern
6368 (concat (substring pattern 0 (match-beginning 0))
6369 "\\"
6370 (substring pattern (match-beginning 0)))
6371 beg (1+ (match-end 0)))))
6372 pattern))))
6375 (defvar insert-directory-program (purecopy "ls")
6376 "Absolute or relative name of the `ls' program used by `insert-directory'.")
6378 (defcustom directory-free-space-program (purecopy "df")
6379 "Program to get the amount of free space on a file system.
6380 We assume the output has the format of `df'.
6381 The value of this variable must be just a command name or file name;
6382 if you want to specify options, use `directory-free-space-args'.
6384 A value of nil disables this feature.
6386 If the function `file-system-info' is defined, it is always used in
6387 preference to the program given by this variable."
6388 :type '(choice (string :tag "Program") (const :tag "None" nil))
6389 :group 'dired)
6391 (defcustom directory-free-space-args
6392 (purecopy (if (eq system-type 'darwin) "-k" "-Pk"))
6393 "Options to use when running `directory-free-space-program'."
6394 :type 'string
6395 :group 'dired)
6397 (defun get-free-disk-space (dir)
6398 "Return the amount of free space on directory DIR's file system.
6399 The return value is a string describing the amount of free
6400 space (normally, the number of free 1KB blocks).
6402 This function calls `file-system-info' if it is available, or
6403 invokes the program specified by `directory-free-space-program'
6404 and `directory-free-space-args'. If the system call or program
6405 is unsuccessful, or if DIR is a remote directory, this function
6406 returns nil."
6407 (unless (file-remote-p (expand-file-name dir))
6408 ;; Try to find the number of free blocks. Non-Posix systems don't
6409 ;; always have df, but might have an equivalent system call.
6410 (if (fboundp 'file-system-info)
6411 (let ((fsinfo (file-system-info dir)))
6412 (if fsinfo
6413 (format "%.0f" (/ (nth 2 fsinfo) 1024))))
6414 (setq dir (expand-file-name dir))
6415 (save-match-data
6416 (with-temp-buffer
6417 (when (and directory-free-space-program
6418 ;; Avoid failure if the default directory does
6419 ;; not exist (Bug#2631, Bug#3911).
6420 (let ((default-directory
6421 (locate-dominating-file dir 'file-directory-p)))
6422 (eq (process-file directory-free-space-program
6423 nil t nil
6424 directory-free-space-args
6425 (file-relative-name dir))
6426 0)))
6427 ;; Assume that the "available" column is before the
6428 ;; "capacity" column. Find the "%" and scan backward.
6429 (goto-char (point-min))
6430 (forward-line 1)
6431 (when (re-search-forward
6432 "[[:space:]]+[^[:space:]]+%[^%]*$"
6433 (line-end-position) t)
6434 (goto-char (match-beginning 0))
6435 (let ((endpt (point)))
6436 (skip-chars-backward "^[:space:]")
6437 (buffer-substring-no-properties (point) endpt)))))))))
6439 ;; The following expression replaces `dired-move-to-filename-regexp'.
6440 (defvar directory-listing-before-filename-regexp
6441 (let* ((l "\\([A-Za-z]\\|[^\0-\177]\\)")
6442 (l-or-quote "\\([A-Za-z']\\|[^\0-\177]\\)")
6443 ;; In some locales, month abbreviations are as short as 2 letters,
6444 ;; and they can be followed by ".".
6445 ;; In Breton, a month name can include a quote character.
6446 (month (concat l-or-quote l-or-quote "+\\.?"))
6447 (s " ")
6448 (yyyy "[0-9][0-9][0-9][0-9]")
6449 (dd "[ 0-3][0-9]")
6450 (HH:MM "[ 0-2][0-9][:.][0-5][0-9]")
6451 (seconds "[0-6][0-9]\\([.,][0-9]+\\)?")
6452 (zone "[-+][0-2][0-9][0-5][0-9]")
6453 (iso-mm-dd "[01][0-9]-[0-3][0-9]")
6454 (iso-time (concat HH:MM "\\(:" seconds "\\( ?" zone "\\)?\\)?"))
6455 (iso (concat "\\(\\(" yyyy "-\\)?" iso-mm-dd "[ T]" iso-time
6456 "\\|" yyyy "-" iso-mm-dd "\\)"))
6457 (western (concat "\\(" month s "+" dd "\\|" dd "\\.?" s month "\\)"
6458 s "+"
6459 "\\(" HH:MM "\\|" yyyy "\\)"))
6460 (western-comma (concat month s "+" dd "," s "+" yyyy))
6461 ;; Japanese MS-Windows ls-lisp has one-digit months, and
6462 ;; omits the Kanji characters after month and day-of-month.
6463 ;; On Mac OS X 10.3, the date format in East Asian locales is
6464 ;; day-of-month digits followed by month digits.
6465 (mm "[ 0-1]?[0-9]")
6466 (east-asian
6467 (concat "\\(" mm l "?" s dd l "?" s "+"
6468 "\\|" dd s mm s "+" "\\)"
6469 "\\(" HH:MM "\\|" yyyy l "?" "\\)")))
6470 ;; The "[0-9]" below requires the previous column to end in a digit.
6471 ;; This avoids recognizing `1 may 1997' as a date in the line:
6472 ;; -r--r--r-- 1 may 1997 1168 Oct 19 16:49 README
6474 ;; The "[BkKMGTPEZY]?" below supports "ls -alh" output.
6476 ;; For non-iso date formats, we add the ".*" in order to find
6477 ;; the last possible match. This avoids recognizing
6478 ;; `jservice 10 1024' as a date in the line:
6479 ;; drwxr-xr-x 3 jservice 10 1024 Jul 2 1997 esg-host
6481 ;; vc dired listings provide the state or blanks between file
6482 ;; permissions and date. The state is always surrounded by
6483 ;; parentheses:
6484 ;; -rw-r--r-- (modified) 2005-10-22 21:25 files.el
6485 ;; This is not supported yet.
6486 (purecopy (concat "\\([0-9][BkKMGTPEZY]? " iso
6487 "\\|.*[0-9][BkKMGTPEZY]? "
6488 "\\(" western "\\|" western-comma "\\|" east-asian "\\)"
6489 "\\) +")))
6490 "Regular expression to match up to the file name in a directory listing.
6491 The default value is designed to recognize dates and times
6492 regardless of the language.")
6494 (defvar insert-directory-ls-version 'unknown)
6496 (defun insert-directory-wildcard-in-dir-p (dir)
6497 "Return non-nil if DIR contents a shell wildcard in the directory part.
6498 The return value is a cons (DIR . WILDCARDS); DIR is the
6499 `default-directory' in the Dired buffer, and WILDCARDS are the wildcards.
6501 Valid wildcards are '*', '?', '[abc]' and '[a-z]'."
6502 (let ((wildcards "[?*"))
6503 (when (and (or (not (featurep 'ls-lisp))
6504 ls-lisp-support-shell-wildcards)
6505 (string-match (concat "[" wildcards "]") (file-name-directory dir))
6506 (not (file-exists-p dir))) ; Prefer an existing file to wildcards.
6507 (let ((regexp (format "\\`\\([^%s]*/\\)\\([^%s]*[%s].*\\)"
6508 wildcards wildcards wildcards)))
6509 (string-match regexp dir)
6510 (cons (match-string 1 dir) (match-string 2 dir))))))
6512 (defun insert-directory-clean (beg switches)
6513 (when (if (stringp switches)
6514 (string-match "--dired\\>" switches)
6515 (member "--dired" switches))
6516 ;; The following overshoots by one line for an empty
6517 ;; directory listed with "--dired", but without "-a"
6518 ;; switch, where the ls output contains a
6519 ;; "//DIRED-OPTIONS//" line, but no "//DIRED//" line.
6520 ;; We take care of that case later.
6521 (forward-line -2)
6522 (when (looking-at "//SUBDIRED//")
6523 (delete-region (point) (progn (forward-line 1) (point)))
6524 (forward-line -1))
6525 (if (looking-at "//DIRED//")
6526 (let ((end (line-end-position))
6527 (linebeg (point))
6528 error-lines)
6529 ;; Find all the lines that are error messages,
6530 ;; and record the bounds of each one.
6531 (goto-char beg)
6532 (while (< (point) linebeg)
6533 (or (eql (following-char) ?\s)
6534 (push (list (point) (line-end-position)) error-lines))
6535 (forward-line 1))
6536 (setq error-lines (nreverse error-lines))
6537 ;; Now read the numeric positions of file names.
6538 (goto-char linebeg)
6539 (forward-word-strictly 1)
6540 (forward-char 3)
6541 (while (< (point) end)
6542 (let ((start (insert-directory-adj-pos
6543 (+ beg (read (current-buffer)))
6544 error-lines))
6545 (end (insert-directory-adj-pos
6546 (+ beg (read (current-buffer)))
6547 error-lines)))
6548 (if (memq (char-after end) '(?\n ?\s))
6549 ;; End is followed by \n or by " -> ".
6550 (put-text-property start end 'dired-filename t)
6551 ;; It seems that we can't trust ls's output as to
6552 ;; byte positions of filenames.
6553 (put-text-property beg (point) 'dired-filename nil)
6554 (end-of-line))))
6555 (goto-char end)
6556 (beginning-of-line)
6557 (delete-region (point) (progn (forward-line 1) (point))))
6558 ;; Take care of the case where the ls output contains a
6559 ;; "//DIRED-OPTIONS//"-line, but no "//DIRED//"-line
6560 ;; and we went one line too far back (see above).
6561 (forward-line 1))
6562 (if (looking-at "//DIRED-OPTIONS//")
6563 (delete-region (point) (progn (forward-line 1) (point))))))
6565 ;; insert-directory
6566 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and
6567 ;; FULL-DIRECTORY-P is nil.
6568 ;; The single line of output must display FILE's name as it was
6569 ;; given, namely, an absolute path name.
6570 ;; - must insert exactly one line for each file if WILDCARD or
6571 ;; FULL-DIRECTORY-P is t, plus one optional "total" line
6572 ;; before the file lines, plus optional text after the file lines.
6573 ;; Lines are delimited by "\n", so filenames containing "\n" are not
6574 ;; allowed.
6575 ;; File lines should display the basename.
6576 ;; - must be consistent with
6577 ;; - functions dired-move-to-filename, (these two define what a file line is)
6578 ;; dired-move-to-end-of-filename,
6579 ;; dired-between-files, (shortcut for (not (dired-move-to-filename)))
6580 ;; dired-insert-headerline
6581 ;; dired-after-subdir-garbage (defines what a "total" line is)
6582 ;; - variable dired-subdir-regexp
6583 ;; - may be passed "--dired" as the first argument in SWITCHES.
6584 ;; Filename handlers might have to remove this switch if their
6585 ;; "ls" command does not support it.
6586 (defun insert-directory (file switches &optional wildcard full-directory-p)
6587 "Insert directory listing for FILE, formatted according to SWITCHES.
6588 Leaves point after the inserted text.
6589 SWITCHES may be a string of options, or a list of strings
6590 representing individual options.
6591 Optional third arg WILDCARD means treat FILE as shell wildcard.
6592 Optional fourth arg FULL-DIRECTORY-P means file is a directory and
6593 switches do not contain `d', so that a full listing is expected.
6595 This works by running a directory listing program
6596 whose name is in the variable `insert-directory-program'.
6597 If WILDCARD, it also runs the shell specified by `shell-file-name'.
6599 When SWITCHES contains the long `--dired' option, this function
6600 treats it specially, for the sake of dired. However, the
6601 normally equivalent short `-D' option is just passed on to
6602 `insert-directory-program', as any other option."
6603 ;; We need the directory in order to find the right handler.
6604 (let ((handler (find-file-name-handler (expand-file-name file)
6605 'insert-directory)))
6606 (if handler
6607 (funcall handler 'insert-directory file switches
6608 wildcard full-directory-p)
6609 (let (result (beg (point)))
6611 ;; Read the actual directory using `insert-directory-program'.
6612 ;; RESULT gets the status code.
6613 (let* (;; We at first read by no-conversion, then after
6614 ;; putting text property `dired-filename, decode one
6615 ;; bunch by one to preserve that property.
6616 (coding-system-for-read 'no-conversion)
6617 ;; This is to control encoding the arguments in call-process.
6618 (coding-system-for-write
6619 (and enable-multibyte-characters
6620 (or file-name-coding-system
6621 default-file-name-coding-system))))
6622 (setq result
6623 (if wildcard
6624 ;; If the wildcard is just in the file part, then run ls in
6625 ;; the directory part of the file pattern using the last
6626 ;; component as argument. Otherwise, run ls in the longest
6627 ;; subdirectory of the directory part free of wildcards; use
6628 ;; the remaining of the file pattern as argument.
6629 (let* ((dir-wildcard (insert-directory-wildcard-in-dir-p file))
6630 (default-directory
6631 (cond (dir-wildcard (car dir-wildcard))
6633 (if (file-name-absolute-p file)
6634 (file-name-directory file)
6635 (file-name-directory (expand-file-name file))))))
6636 (pattern (if dir-wildcard (cdr dir-wildcard) (file-name-nondirectory file))))
6637 ;; NB since switches is passed to the shell, be
6638 ;; careful of malicious values, eg "-l;reboot".
6639 ;; See eg dired-safe-switches-p.
6640 (call-process
6641 shell-file-name nil t nil
6642 shell-command-switch
6643 (concat (if (memq system-type '(ms-dos windows-nt))
6645 "\\") ; Disregard Unix shell aliases!
6646 insert-directory-program
6647 " -d "
6648 (if (stringp switches)
6649 switches
6650 (mapconcat 'identity switches " "))
6651 " -- "
6652 ;; Quote some characters that have
6653 ;; special meanings in shells; but
6654 ;; don't quote the wildcards--we want
6655 ;; them to be special. We also
6656 ;; currently don't quote the quoting
6657 ;; characters in case people want to
6658 ;; use them explicitly to quote
6659 ;; wildcard characters.
6660 (shell-quote-wildcard-pattern pattern))))
6661 ;; SunOS 4.1.3, SVr4 and others need the "." to list the
6662 ;; directory if FILE is a symbolic link.
6663 (unless full-directory-p
6664 (setq switches
6665 (cond
6666 ((stringp switches) (concat switches " -d"))
6667 ((member "-d" switches) switches)
6668 (t (append switches '("-d"))))))
6669 (apply 'call-process
6670 insert-directory-program nil t nil
6671 (append
6672 (if (listp switches) switches
6673 (unless (equal switches "")
6674 ;; Split the switches at any spaces so we can
6675 ;; pass separate options as separate args.
6676 (split-string-and-unquote switches)))
6677 ;; Avoid lossage if FILE starts with `-'.
6678 '("--")
6679 (progn
6680 (if (string-match "\\`~" file)
6681 (setq file (expand-file-name file)))
6682 (list
6683 (if full-directory-p
6684 ;; (concat (file-name-as-directory file) ".")
6685 file
6686 file))))))))
6688 ;; If we got "//DIRED//" in the output, it means we got a real
6689 ;; directory listing, even if `ls' returned nonzero.
6690 ;; So ignore any errors.
6691 (when (if (stringp switches)
6692 (string-match "--dired\\>" switches)
6693 (member "--dired" switches))
6694 (save-excursion
6695 (forward-line -2)
6696 (when (looking-at "//SUBDIRED//")
6697 (forward-line -1))
6698 (if (looking-at "//DIRED//")
6699 (setq result 0))))
6701 (when (and (not (eq 0 result))
6702 (eq insert-directory-ls-version 'unknown))
6703 ;; The first time ls returns an error,
6704 ;; find the version numbers of ls,
6705 ;; and set insert-directory-ls-version
6706 ;; to > if it is more than 5.2.1, < if it is less, nil if it
6707 ;; is equal or if the info cannot be obtained.
6708 ;; (That can mean it isn't GNU ls.)
6709 (let ((version-out
6710 (with-temp-buffer
6711 (call-process "ls" nil t nil "--version")
6712 (buffer-string))))
6713 (if (string-match "ls (.*utils) \\([0-9.]*\\)$" version-out)
6714 (let* ((version (match-string 1 version-out))
6715 (split (split-string version "[.]"))
6716 (numbers (mapcar 'string-to-number split))
6717 (min '(5 2 1))
6718 comparison)
6719 (while (and (not comparison) (or numbers min))
6720 (cond ((null min)
6721 (setq comparison '>))
6722 ((null numbers)
6723 (setq comparison '<))
6724 ((> (car numbers) (car min))
6725 (setq comparison '>))
6726 ((< (car numbers) (car min))
6727 (setq comparison '<))
6729 (setq numbers (cdr numbers)
6730 min (cdr min)))))
6731 (setq insert-directory-ls-version (or comparison '=)))
6732 (setq insert-directory-ls-version nil))))
6734 ;; For GNU ls versions 5.2.2 and up, ignore minor errors.
6735 (when (and (eq 1 result) (eq insert-directory-ls-version '>))
6736 (setq result 0))
6738 ;; If `insert-directory-program' failed, signal an error.
6739 (unless (eq 0 result)
6740 ;; Delete the error message it may have output.
6741 (delete-region beg (point))
6742 ;; On non-Posix systems, we cannot open a directory, so
6743 ;; don't even try, because that will always result in
6744 ;; the ubiquitous "Access denied". Instead, show the
6745 ;; command line so the user can try to guess what went wrong.
6746 (if (and (file-directory-p file)
6747 (memq system-type '(ms-dos windows-nt)))
6748 (error
6749 "Reading directory: \"%s %s -- %s\" exited with status %s"
6750 insert-directory-program
6751 (if (listp switches) (concat switches) switches)
6752 file result)
6753 ;; Unix. Access the file to get a suitable error.
6754 (access-file file "Reading directory")
6755 (error "Listing directory failed but `access-file' worked")))
6756 (insert-directory-clean beg switches)
6757 ;; Now decode what read if necessary.
6758 (let ((coding (or coding-system-for-read
6759 file-name-coding-system
6760 default-file-name-coding-system
6761 'undecided))
6762 coding-no-eol
6763 val pos)
6764 (when (and enable-multibyte-characters
6765 (not (memq (coding-system-base coding)
6766 '(raw-text no-conversion))))
6767 ;; If no coding system is specified or detection is
6768 ;; requested, detect the coding.
6769 (if (eq (coding-system-base coding) 'undecided)
6770 (setq coding (detect-coding-region beg (point) t)))
6771 (if (not (eq (coding-system-base coding) 'undecided))
6772 (save-restriction
6773 (setq coding-no-eol
6774 (coding-system-change-eol-conversion coding 'unix))
6775 (narrow-to-region beg (point))
6776 (goto-char (point-min))
6777 (while (not (eobp))
6778 (setq pos (point)
6779 val (get-text-property (point) 'dired-filename))
6780 (goto-char (next-single-property-change
6781 (point) 'dired-filename nil (point-max)))
6782 ;; Force no eol conversion on a file name, so
6783 ;; that CR is preserved.
6784 (decode-coding-region pos (point)
6785 (if val coding-no-eol coding))
6786 (if val
6787 (put-text-property pos (point)
6788 'dired-filename t)))))))
6790 (if full-directory-p
6791 ;; Try to insert the amount of free space.
6792 (save-excursion
6793 (goto-char beg)
6794 ;; First find the line to put it on.
6795 (when (re-search-forward "^ *\\(total\\)" nil t)
6796 (let ((available (get-free-disk-space ".")))
6797 (when available
6798 ;; Replace "total" with "used", to avoid confusion.
6799 (replace-match "total used in directory" nil nil nil 1)
6800 (end-of-line)
6801 (insert " available " available))))))))))
6803 (defun insert-directory-adj-pos (pos error-lines)
6804 "Convert `ls --dired' file name position value POS to a buffer position.
6805 File name position values returned in ls --dired output
6806 count only stdout; they don't count the error messages sent to stderr.
6807 So this function converts to them to real buffer positions.
6808 ERROR-LINES is a list of buffer positions of error message lines,
6809 of the form (START END)."
6810 (while (and error-lines (< (caar error-lines) pos))
6811 (setq pos (+ pos (- (nth 1 (car error-lines)) (nth 0 (car error-lines)))))
6812 (pop error-lines))
6813 pos)
6815 (defun insert-directory-safely (file switches
6816 &optional wildcard full-directory-p)
6817 "Insert directory listing for FILE, formatted according to SWITCHES.
6819 Like `insert-directory', but if FILE does not exist, it inserts a
6820 message to that effect instead of signaling an error."
6821 (if (file-exists-p file)
6822 (insert-directory file switches wildcard full-directory-p)
6823 ;; Simulate the message printed by `ls'.
6824 (insert (format "%s: No such file or directory\n" file))))
6826 (defcustom kill-emacs-query-functions nil
6827 "Functions to call with no arguments to query about killing Emacs.
6828 If any of these functions returns nil, killing Emacs is canceled.
6829 `save-buffers-kill-emacs' calls these functions, but `kill-emacs',
6830 the low level primitive, does not. See also `kill-emacs-hook'."
6831 :type 'hook
6832 :version "26.1"
6833 :group 'convenience)
6835 (defcustom confirm-kill-emacs nil
6836 "How to ask for confirmation when leaving Emacs.
6837 If nil, the default, don't ask at all. If the value is non-nil, it should
6838 be a predicate function; for example `yes-or-no-p'."
6839 :type '(choice (const :tag "Ask with yes-or-no-p" yes-or-no-p)
6840 (const :tag "Ask with y-or-n-p" y-or-n-p)
6841 (const :tag "Don't confirm" nil)
6842 (function :tag "Predicate function"))
6843 :group 'convenience
6844 :version "21.1")
6846 (defcustom confirm-kill-processes t
6847 "Non-nil if Emacs should confirm killing processes on exit.
6848 If this variable is nil, the value of
6849 `process-query-on-exit-flag' is ignored. Otherwise, if there are
6850 processes with a non-nil `process-query-on-exit-flag', Emacs will
6851 prompt the user before killing them."
6852 :type 'boolean
6853 :group 'convenience
6854 :version "26.1")
6856 (defun save-buffers-kill-emacs (&optional arg)
6857 "Offer to save each buffer, then kill this Emacs process.
6858 With prefix ARG, silently save all file-visiting buffers without asking.
6859 If there are active processes where `process-query-on-exit-flag'
6860 returns non-nil and `confirm-kill-processes' is non-nil,
6861 asks whether processes should be killed.
6862 Runs the members of `kill-emacs-query-functions' in turn and stops
6863 if any returns nil. If `confirm-kill-emacs' is non-nil, calls it."
6864 (interactive "P")
6865 ;; Don't use save-some-buffers-default-predicate, because we want
6866 ;; to ask about all the buffers before killing Emacs.
6867 (save-some-buffers arg t)
6868 (let ((confirm confirm-kill-emacs))
6869 (and
6870 (or (not (memq t (mapcar (function
6871 (lambda (buf) (and (buffer-file-name buf)
6872 (buffer-modified-p buf))))
6873 (buffer-list))))
6874 (progn (setq confirm nil)
6875 (yes-or-no-p "Modified buffers exist; exit anyway? ")))
6876 (or (not (fboundp 'process-list))
6877 ;; process-list is not defined on MSDOS.
6878 (not confirm-kill-processes)
6879 (let ((processes (process-list))
6880 active)
6881 (while processes
6882 (and (memq (process-status (car processes)) '(run stop open listen))
6883 (process-query-on-exit-flag (car processes))
6884 (setq active t))
6885 (setq processes (cdr processes)))
6886 (or (not active)
6887 (with-current-buffer-window
6888 (get-buffer-create "*Process List*") nil
6889 #'(lambda (window _value)
6890 (with-selected-window window
6891 (unwind-protect
6892 (progn
6893 (setq confirm nil)
6894 (yes-or-no-p "Active processes exist; kill them and exit anyway? "))
6895 (when (window-live-p window)
6896 (quit-restore-window window 'kill)))))
6897 (list-processes t)))))
6898 ;; Query the user for other things, perhaps.
6899 (run-hook-with-args-until-failure 'kill-emacs-query-functions)
6900 (or (null confirm)
6901 (funcall confirm "Really exit Emacs? "))
6902 (kill-emacs))))
6904 (defun save-buffers-kill-terminal (&optional arg)
6905 "Offer to save each buffer, then kill the current connection.
6906 If the current frame has no client, kill Emacs itself using
6907 `save-buffers-kill-emacs'.
6909 With prefix ARG, silently save all file-visiting buffers, then kill.
6911 If emacsclient was started with a list of filenames to edit, then
6912 only these files will be asked to be saved."
6913 (interactive "P")
6914 (if (frame-parameter nil 'client)
6915 (server-save-buffers-kill-terminal arg)
6916 (save-buffers-kill-emacs arg)))
6918 ;; We use /: as a prefix to "quote" a file name
6919 ;; so that magic file name handlers will not apply to it.
6921 (setq file-name-handler-alist
6922 (cons (cons (purecopy "\\`/:") 'file-name-non-special)
6923 file-name-handler-alist))
6925 ;; We depend on being the last handler on the list,
6926 ;; so that anything else which does need handling
6927 ;; has been handled already.
6928 ;; So it is safe for us to inhibit *all* magic file name handlers.
6930 (defun file-name-non-special (operation &rest arguments)
6931 (let ((file-name-handler-alist nil)
6932 (default-directory
6933 ;; Some operations respect file name handlers in
6934 ;; `default-directory'. Because core function like
6935 ;; `call-process' don't care about file name handlers in
6936 ;; `default-directory', we here have to resolve the
6937 ;; directory into a local one. For `process-file',
6938 ;; `start-file-process', and `shell-command', this fixes
6939 ;; Bug#25949.
6940 (if (memq operation '(insert-directory process-file start-file-process
6941 shell-command))
6942 (directory-file-name
6943 (expand-file-name
6944 (unhandled-file-name-directory default-directory)))
6945 default-directory))
6946 ;; Get a list of the indices of the args which are file names.
6947 (file-arg-indices
6948 (cdr (or (assq operation
6949 ;; The first six are special because they
6950 ;; return a file name. We want to include the /:
6951 ;; in the return value.
6952 ;; So just avoid stripping it in the first place.
6953 '((expand-file-name . nil)
6954 (file-name-directory . nil)
6955 (file-name-as-directory . nil)
6956 (directory-file-name . nil)
6957 (file-name-sans-versions . nil)
6958 (find-backup-file-name . nil)
6959 ;; `identity' means just return the first arg
6960 ;; not stripped of its quoting.
6961 (substitute-in-file-name identity)
6962 ;; `add' means add "/:" to the result.
6963 (file-truename add 0)
6964 (insert-file-contents insert-file-contents 0)
6965 ;; `unquote-then-quote' means set buffer-file-name
6966 ;; temporarily to unquoted filename.
6967 (verify-visited-file-modtime unquote-then-quote)
6968 ;; List the arguments which are filenames.
6969 (file-name-completion 1)
6970 (file-name-all-completions 1)
6971 (write-region 2 5)
6972 (rename-file 0 1)
6973 (copy-file 0 1)
6974 (make-symbolic-link 0 1)
6975 (add-name-to-file 0 1)))
6976 ;; For all other operations, treat the first argument only
6977 ;; as the file name.
6978 '(nil 0))))
6979 method
6980 ;; Copy ARGUMENTS so we can replace elements in it.
6981 (arguments (copy-sequence arguments)))
6982 (if (symbolp (car file-arg-indices))
6983 (setq method (pop file-arg-indices)))
6984 ;; Strip off the /: from the file names that have it.
6985 (save-match-data
6986 (while (consp file-arg-indices)
6987 (let ((pair (nthcdr (car file-arg-indices) arguments)))
6988 (and (car pair)
6989 (string-match "\\`/:" (car pair))
6990 (setcar pair
6991 (if (= (length (car pair)) 2)
6993 (substring (car pair) 2)))))
6994 (setq file-arg-indices (cdr file-arg-indices))))
6995 (pcase method
6996 (`identity (car arguments))
6997 (`add (file-name-quote (apply operation arguments)))
6998 (`insert-file-contents
6999 (let ((visit (nth 1 arguments)))
7000 (unwind-protect
7001 (apply operation arguments)
7002 (when (and visit buffer-file-name)
7003 (setq buffer-file-name (concat "/:" buffer-file-name))))))
7004 (`unquote-then-quote
7005 ;; We can't use `cl-letf' with `(buffer-local-value)' here
7006 ;; because it wouldn't work during bootstrapping.
7007 (let ((buffer (current-buffer)))
7008 ;; `unquote-then-quote' is only used for the
7009 ;; `verify-visited-file-modtime' action, which takes a buffer
7010 ;; as only optional argument.
7011 (with-current-buffer (or (car arguments) buffer)
7012 (let ((buffer-file-name (substring buffer-file-name 2)))
7013 ;; Make sure to hide the temporary buffer change from the
7014 ;; underlying operation.
7015 (with-current-buffer buffer
7016 (apply operation arguments))))))
7018 (apply operation arguments)))))
7020 (defsubst file-name-quoted-p (name)
7021 "Whether NAME is quoted with prefix \"/:\".
7022 If NAME is a remote file name, check the local part of NAME."
7023 (string-prefix-p "/:" (file-local-name name)))
7025 (defsubst file-name-quote (name)
7026 "Add the quotation prefix \"/:\" to file NAME.
7027 If NAME is a remote file name, the local part of NAME is quoted.
7028 If NAME is already a quoted file name, NAME is returned unchanged."
7029 (if (file-name-quoted-p name)
7030 name
7031 (concat (file-remote-p name) "/:" (file-local-name name))))
7033 (defsubst file-name-unquote (name)
7034 "Remove quotation prefix \"/:\" from file NAME, if any.
7035 If NAME is a remote file name, the local part of NAME is unquoted."
7036 (let ((localname (file-local-name name)))
7037 (when (file-name-quoted-p localname)
7038 (setq
7039 localname (if (= (length localname) 2) "/" (substring localname 2))))
7040 (concat (file-remote-p name) localname)))
7042 ;; Symbolic modes and read-file-modes.
7044 (defun file-modes-char-to-who (char)
7045 "Convert CHAR to a numeric bit-mask for extracting mode bits.
7046 CHAR is in [ugoa] and represents the category of users (Owner, Group,
7047 Others, or All) for whom to produce the mask.
7048 The bit-mask that is returned extracts from mode bits the access rights
7049 for the specified category of users."
7050 (cond ((= char ?u) #o4700)
7051 ((= char ?g) #o2070)
7052 ((= char ?o) #o1007)
7053 ((= char ?a) #o7777)
7054 (t (error "%c: bad `who' character" char))))
7056 (defun file-modes-char-to-right (char &optional from)
7057 "Convert CHAR to a numeric value of mode bits.
7058 CHAR is in [rwxXstugo] and represents symbolic access permissions.
7059 If CHAR is in [Xugo], the value is taken from FROM (or 0 if omitted)."
7060 (or from (setq from 0))
7061 (cond ((= char ?r) #o0444)
7062 ((= char ?w) #o0222)
7063 ((= char ?x) #o0111)
7064 ((= char ?s) #o6000)
7065 ((= char ?t) #o1000)
7066 ;; Rights relative to the previous file modes.
7067 ((= char ?X) (if (= (logand from #o111) 0) 0 #o0111))
7068 ((= char ?u) (let ((uright (logand #o4700 from)))
7069 (+ uright (/ uright #o10) (/ uright #o100))))
7070 ((= char ?g) (let ((gright (logand #o2070 from)))
7071 (+ gright (/ gright #o10) (* gright #o10))))
7072 ((= char ?o) (let ((oright (logand #o1007 from)))
7073 (+ oright (* oright #o10) (* oright #o100))))
7074 (t (error "%c: bad right character" char))))
7076 (defun file-modes-rights-to-number (rights who-mask &optional from)
7077 "Convert a symbolic mode string specification to an equivalent number.
7078 RIGHTS is the symbolic mode spec, it should match \"([+=-][rwxXstugo]*)+\".
7079 WHO-MASK is the bit-mask specifying the category of users to which to
7080 apply the access permissions. See `file-modes-char-to-who'.
7081 FROM (or 0 if nil) gives the mode bits on which to base permissions if
7082 RIGHTS request to add, remove, or set permissions based on existing ones,
7083 as in \"og+rX-w\"."
7084 (let* ((num-rights (or from 0))
7085 (list-rights (string-to-list rights))
7086 (op (pop list-rights)))
7087 (while (memq op '(?+ ?- ?=))
7088 (let ((num-right 0)
7089 char-right)
7090 (while (memq (setq char-right (pop list-rights))
7091 '(?r ?w ?x ?X ?s ?t ?u ?g ?o))
7092 (setq num-right
7093 (logior num-right
7094 (file-modes-char-to-right char-right num-rights))))
7095 (setq num-right (logand who-mask num-right)
7096 num-rights
7097 (cond ((= op ?+) (logior num-rights num-right))
7098 ((= op ?-) (logand num-rights (lognot num-right)))
7099 (t (logior (logand num-rights (lognot who-mask)) num-right)))
7100 op char-right)))
7101 num-rights))
7103 (defun file-modes-symbolic-to-number (modes &optional from)
7104 "Convert symbolic file modes to numeric file modes.
7105 MODES is the string to convert, it should match
7106 \"[ugoa]*([+-=][rwxXstugo]*)+,...\".
7107 See Info node `(coreutils)File permissions' for more information on this
7108 notation.
7109 FROM (or 0 if nil) gives the mode bits on which to base permissions if
7110 MODES request to add, remove, or set permissions based on existing ones,
7111 as in \"og+rX-w\"."
7112 (save-match-data
7113 (let ((case-fold-search nil)
7114 (num-modes (or from 0)))
7115 (while (/= (string-to-char modes) 0)
7116 (if (string-match "^\\([ugoa]*\\)\\([+=-][rwxXstugo]*\\)+\\(,\\|\\)" modes)
7117 (let ((num-who (apply 'logior 0
7118 (mapcar 'file-modes-char-to-who
7119 (match-string 1 modes)))))
7120 (when (= num-who 0)
7121 (setq num-who (logior #o7000 (default-file-modes))))
7122 (setq num-modes
7123 (file-modes-rights-to-number (substring modes (match-end 1))
7124 num-who num-modes)
7125 modes (substring modes (match-end 3))))
7126 (error "Parse error in modes near `%s'" (substring modes 0))))
7127 num-modes)))
7129 (defun read-file-modes (&optional prompt orig-file)
7130 "Read file modes in octal or symbolic notation and return its numeric value.
7131 PROMPT is used as the prompt, default to \"File modes (octal or symbolic): \".
7132 ORIG-FILE is the name of a file on whose mode bits to base returned
7133 permissions if what user types requests to add, remove, or set permissions
7134 based on existing mode bits, as in \"og+rX-w\"."
7135 (let* ((modes (or (if orig-file (file-modes orig-file) 0)
7136 (error "File not found")))
7137 (modestr (and (stringp orig-file)
7138 (nth 8 (file-attributes orig-file))))
7139 (default
7140 (and (stringp modestr)
7141 (string-match "^.\\(...\\)\\(...\\)\\(...\\)$" modestr)
7142 (replace-regexp-in-string
7143 "-" ""
7144 (format "u=%s,g=%s,o=%s"
7145 (match-string 1 modestr)
7146 (match-string 2 modestr)
7147 (match-string 3 modestr)))))
7148 (value (read-string (or prompt "File modes (octal or symbolic): ")
7149 nil nil default)))
7150 (save-match-data
7151 (if (string-match "^[0-7]+" value)
7152 (string-to-number value 8)
7153 (file-modes-symbolic-to-number value modes)))))
7155 (define-obsolete-variable-alias 'cache-long-line-scans
7156 'cache-long-scans "24.4")
7158 ;; Trashcan handling.
7159 (defcustom trash-directory nil
7160 "Directory for `move-file-to-trash' to move files and directories to.
7161 This directory is only used when the function `system-move-file-to-trash'
7162 is not defined.
7163 Relative paths are interpreted relative to `default-directory'.
7164 If the value is nil, Emacs uses a freedesktop.org-style trashcan."
7165 :type '(choice (const nil) directory)
7166 :group 'auto-save
7167 :version "23.2")
7169 (defvar trash--hexify-table)
7171 (declare-function system-move-file-to-trash "w32fns.c" (filename))
7173 (defun move-file-to-trash (filename)
7174 "Move the file (or directory) named FILENAME to the trash.
7175 When `delete-by-moving-to-trash' is non-nil, this function is
7176 called by `delete-file' and `delete-directory' instead of
7177 deleting files outright.
7179 If the function `system-move-file-to-trash' is defined, call it
7180 with FILENAME as an argument.
7181 Otherwise, if `trash-directory' is non-nil, move FILENAME to that
7182 directory.
7183 Otherwise, trash FILENAME using the freedesktop.org conventions,
7184 like the GNOME, KDE and XFCE desktop environments. Emacs only
7185 moves files to \"home trash\", ignoring per-volume trashcans."
7186 (interactive "fMove file to trash: ")
7187 (cond (trash-directory
7188 ;; If `trash-directory' is non-nil, move the file there.
7189 (let* ((trash-dir (expand-file-name trash-directory))
7190 (fn (directory-file-name (expand-file-name filename)))
7191 (new-fn (concat (file-name-as-directory trash-dir)
7192 (file-name-nondirectory fn))))
7193 ;; We can't trash a parent directory of trash-directory.
7194 (if (string-prefix-p fn trash-dir)
7195 (error "Trash directory `%s' is a subdirectory of `%s'"
7196 trash-dir filename))
7197 (unless (file-directory-p trash-dir)
7198 (make-directory trash-dir t))
7199 ;; Ensure that the trashed file-name is unique.
7200 (if (file-exists-p new-fn)
7201 (let ((version-control t)
7202 (backup-directory-alist nil))
7203 (setq new-fn (car (find-backup-file-name new-fn)))))
7204 (let (delete-by-moving-to-trash)
7205 (rename-file fn new-fn))))
7206 ;; If `system-move-file-to-trash' is defined, use it.
7207 ((fboundp 'system-move-file-to-trash)
7208 (system-move-file-to-trash filename))
7209 ;; Otherwise, use the freedesktop.org method, as specified at
7210 ;; http://freedesktop.org/wiki/Specifications/trash-spec
7212 (let* ((xdg-data-dir
7213 (directory-file-name
7214 (expand-file-name "Trash"
7215 (or (getenv "XDG_DATA_HOME")
7216 "~/.local/share"))))
7217 (trash-files-dir (expand-file-name "files" xdg-data-dir))
7218 (trash-info-dir (expand-file-name "info" xdg-data-dir))
7219 (fn (directory-file-name (expand-file-name filename))))
7221 ;; Check if we have permissions to delete.
7222 (unless (file-writable-p (directory-file-name
7223 (file-name-directory fn)))
7224 (error "Cannot move %s to trash: Permission denied" filename))
7225 ;; The trashed file cannot be the trash dir or its parent.
7226 (if (string-prefix-p fn trash-files-dir)
7227 (error "The trash directory %s is a subdirectory of %s"
7228 trash-files-dir filename))
7229 (if (string-prefix-p fn trash-info-dir)
7230 (error "The trash directory %s is a subdirectory of %s"
7231 trash-info-dir filename))
7233 ;; Ensure that the trash directory exists; otherwise, create it.
7234 (with-file-modes #o700
7235 (unless (file-exists-p trash-files-dir)
7236 (make-directory trash-files-dir t))
7237 (unless (file-exists-p trash-info-dir)
7238 (make-directory trash-info-dir t)))
7240 ;; Try to move to trash with .trashinfo undo information
7241 (save-excursion
7242 (with-temp-buffer
7243 (set-buffer-file-coding-system 'utf-8-unix)
7244 (insert "[Trash Info]\nPath=")
7245 ;; Perform url-encoding on FN. For compatibility with
7246 ;; other programs (e.g. XFCE Thunar), allow literal "/"
7247 ;; for path separators.
7248 (unless (boundp 'trash--hexify-table)
7249 (setq trash--hexify-table (make-vector 256 nil))
7250 (let ((unreserved-chars
7251 (list ?/ ?a ?b ?c ?d ?e ?f ?g ?h ?i ?j ?k ?l ?m
7252 ?n ?o ?p ?q ?r ?s ?t ?u ?v ?w ?x ?y ?z ?A
7253 ?B ?C ?D ?E ?F ?G ?H ?I ?J ?K ?L ?M ?N ?O
7254 ?P ?Q ?R ?S ?T ?U ?V ?W ?X ?Y ?Z ?0 ?1 ?2
7255 ?3 ?4 ?5 ?6 ?7 ?8 ?9 ?- ?_ ?. ?! ?~ ?* ?'
7256 ?\( ?\))))
7257 (dotimes (byte 256)
7258 (aset trash--hexify-table byte
7259 (if (memq byte unreserved-chars)
7260 (char-to-string byte)
7261 (format "%%%02x" byte))))))
7262 (mapc (lambda (byte)
7263 (insert (aref trash--hexify-table byte)))
7264 (if (multibyte-string-p fn)
7265 (encode-coding-string fn 'utf-8)
7266 fn))
7267 (insert "\nDeletionDate="
7268 (format-time-string "%Y-%m-%dT%T")
7269 "\n")
7271 ;; Make a .trashinfo file. Use O_EXCL, as per trash-spec 1.0.
7272 (let* ((files-base (file-name-nondirectory fn))
7273 (info-fn (expand-file-name
7274 (concat files-base ".trashinfo")
7275 trash-info-dir)))
7276 (condition-case nil
7277 (write-region nil nil info-fn nil 'quiet info-fn 'excl)
7278 (file-already-exists
7279 ;; Uniquify new-fn. Some file managers do not
7280 ;; like Emacs-style backup file names. E.g.:
7281 ;; https://bugs.kde.org/170956
7282 (setq info-fn (make-temp-file
7283 (expand-file-name files-base trash-info-dir)
7284 nil ".trashinfo"))
7285 (setq files-base (file-name-nondirectory info-fn))
7286 (write-region nil nil info-fn nil 'quiet info-fn)))
7287 ;; Finally, try to move the file to the trashcan.
7288 (let ((delete-by-moving-to-trash nil)
7289 (new-fn (expand-file-name files-base trash-files-dir)))
7290 (rename-file fn new-fn)))))))))
7292 (defsubst file-attribute-type (attributes)
7293 "The type field in ATTRIBUTES returned by `file-attributes'.
7294 The value is either t for directory, string (name linked to) for
7295 symbolic link, or nil."
7296 (nth 0 attributes))
7298 (defsubst file-attribute-link-number (attributes)
7299 "Return the number of links in ATTRIBUTES returned by `file-attributes'."
7300 (nth 1 attributes))
7302 (defsubst file-attribute-user-id (attributes)
7303 "The UID field in ATTRIBUTES returned by `file-attributes'.
7304 This is either a string or a number. If a string value cannot be
7305 looked up, a numeric value, either an integer or a float, is
7306 returned."
7307 (nth 2 attributes))
7309 (defsubst file-attribute-group-id (attributes)
7310 "The GID field in ATTRIBUTES returned by `file-attributes'.
7311 This is either a string or a number. If a string value cannot be
7312 looked up, a numeric value, either an integer or a float, is
7313 returned."
7314 (nth 3 attributes))
7316 (defsubst file-attribute-access-time (attributes)
7317 "The last access time in ATTRIBUTES returned by `file-attributes'.
7318 This a list of integers (HIGH LOW USEC PSEC) in the same style
7319 as (current-time)."
7320 (nth 4 attributes))
7322 (defsubst file-attribute-modification-time (attributes)
7323 "The modification time in ATTRIBUTES returned by `file-attributes'.
7324 This is the time of the last change to the file's contents, and
7325 is a list of integers (HIGH LOW USEC PSEC) in the same style
7326 as (current-time)."
7327 (nth 5 attributes))
7329 (defsubst file-attribute-status-change-time (attributes)
7330 "The status modification time in ATTRIBUTES returned by `file-attributes'.
7331 This is the time of last change to the file's attributes: owner
7332 and group, access mode bits, etc, and is a list of integers (HIGH
7333 LOW USEC PSEC) in the same style as (current-time)."
7334 (nth 6 attributes))
7336 (defsubst file-attribute-size (attributes)
7337 "The size (in bytes) in ATTRIBUTES returned by `file-attributes'.
7338 This is a floating point number if the size is too large for an integer."
7339 (nth 7 attributes))
7341 (defsubst file-attribute-modes (attributes)
7342 "The file modes in ATTRIBUTES returned by `file-attributes'.
7343 This is a string of ten letters or dashes as in ls -l."
7344 (nth 8 attributes))
7346 (defsubst file-attribute-inode-number (attributes)
7347 "The inode number in ATTRIBUTES returned by `file-attributes'.
7348 If it is larger than what an Emacs integer can hold, this is of
7349 the form (HIGH . LOW): first the high bits, then the low 16 bits.
7350 If even HIGH is too large for an Emacs integer, this is instead
7351 of the form (HIGH MIDDLE . LOW): first the high bits, then the
7352 middle 24 bits, and finally the low 16 bits."
7353 (nth 10 attributes))
7355 (defsubst file-attribute-device-number (attributes)
7356 "The file system device number in ATTRIBUTES returned by `file-attributes'.
7357 If it is larger than what an Emacs integer can hold, this is of
7358 the form (HIGH . LOW): first the high bits, then the low 16 bits.
7359 If even HIGH is too large for an Emacs integer, this is instead
7360 of the form (HIGH MIDDLE . LOW): first the high bits, then the
7361 middle 24 bits, and finally the low 16 bits."
7362 (nth 11 attributes))
7364 (defun file-attribute-collect (attributes &rest attr-names)
7365 "Return a sublist of ATTRIBUTES returned by `file-attributes'.
7366 ATTR-NAMES are symbols with the selected attribute names.
7368 Valid attribute names are: type, link-number, user-id, group-id,
7369 access-time, modification-time, status-change-time, size, modes,
7370 inode-number and device-number."
7371 (let ((all '(type link-number user-id group-id access-time
7372 modification-time status-change-time
7373 size modes inode-number device-number))
7374 result)
7375 (while attr-names
7376 (let ((attr (pop attr-names)))
7377 (if (memq attr all)
7378 (push (funcall
7379 (intern (format "file-attribute-%s" (symbol-name attr)))
7380 attributes)
7381 result)
7382 (error "Wrong attribute name '%S'" attr))))
7383 (nreverse result)))
7385 (define-key ctl-x-map "\C-f" 'find-file)
7386 (define-key ctl-x-map "\C-r" 'find-file-read-only)
7387 (define-key ctl-x-map "\C-v" 'find-alternate-file)
7388 (define-key ctl-x-map "\C-s" 'save-buffer)
7389 (define-key ctl-x-map "s" 'save-some-buffers)
7390 (define-key ctl-x-map "\C-w" 'write-file)
7391 (define-key ctl-x-map "i" 'insert-file)
7392 (define-key esc-map "~" 'not-modified)
7393 (define-key ctl-x-map "\C-d" 'list-directory)
7394 (define-key ctl-x-map "\C-c" 'save-buffers-kill-terminal)
7395 (define-key ctl-x-map "\C-q" 'read-only-mode)
7397 (define-key ctl-x-4-map "f" 'find-file-other-window)
7398 (define-key ctl-x-4-map "r" 'find-file-read-only-other-window)
7399 (define-key ctl-x-4-map "\C-f" 'find-file-other-window)
7400 (define-key ctl-x-4-map "b" 'switch-to-buffer-other-window)
7401 (define-key ctl-x-4-map "\C-o" 'display-buffer)
7403 (define-key ctl-x-5-map "b" 'switch-to-buffer-other-frame)
7404 (define-key ctl-x-5-map "f" 'find-file-other-frame)
7405 (define-key ctl-x-5-map "\C-f" 'find-file-other-frame)
7406 (define-key ctl-x-5-map "r" 'find-file-read-only-other-frame)
7407 (define-key ctl-x-5-map "\C-o" 'display-buffer-other-frame)
7409 ;;; files.el ends here