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