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