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