]> code.delx.au - gnu-emacs/blob - lisp/files.el
Merge from origin/emacs-25
[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 "%s error: %s" dir-locals-file (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 across different
3724 environments and users.
3725 See also `dir-locals-file-2', whose values override this one's.
3726 See Info node `(elisp)Directory Local Variables' for details.")
3727
3728 (defconst dir-locals-file-2 ".dir-locals-2.el"
3729 "File that contains directory-local variables.
3730 This essentially a second file that can be used like
3731 `dir-locals-file', so that users can have specify their personal
3732 dir-local variables even if the current directory already has a
3733 `dir-locals-file' that is shared with other users (such as in a
3734 git repository).
3735 See Info node `(elisp)Directory Local Variables' for details.")
3736
3737 (defun dir-locals--all-files (directory)
3738 "Return a list of all readable dir-locals files in DIRECTORY.
3739 The returned list is sorted by increasing priority. That is,
3740 values specified in the last file should take precedence over
3741 those in the first."
3742 (when (file-readable-p directory)
3743 (let* ((file-1 (expand-file-name (if (eq system-type 'ms-dos)
3744 (dosified-file-name dir-locals-file)
3745 dir-locals-file)
3746 directory))
3747 (file-2 (when (string-match "\\.el\\'" file-1)
3748 (replace-match "-2.el" t nil file-1)))
3749 (out nil))
3750 ;; The order here is important.
3751 (dolist (f (list file-2 file-1))
3752 (when (and f
3753 (file-readable-p f)
3754 (file-regular-p f)
3755 (not (file-directory-p f)))
3756 (push f out)))
3757 out)))
3758
3759 (defun dir-locals-find-file (file)
3760 "Find the directory-local variables for FILE.
3761 This searches upward in the directory tree from FILE.
3762 It stops at the first directory that has been registered in
3763 `dir-locals-directory-cache' or contains a `dir-locals-file'.
3764 If it finds an entry in the cache, it checks that it is valid.
3765 A cache entry with no modification time element (normally, one that
3766 has been assigned directly using `dir-locals-set-directory-class', not
3767 set from a file) is always valid.
3768 A cache entry based on a `dir-locals-file' is valid if the modification
3769 time stored in the cache matches the current file modification time.
3770 If not, the cache entry is cleared so that the file will be re-read.
3771
3772 This function returns either:
3773 - nil (no directory local variables found),
3774 - the matching entry from `dir-locals-directory-cache' (a list),
3775 - or the full path to the directory (a string) containing at
3776 least one `dir-locals-file' in the case of no valid cache
3777 entry."
3778 (setq file (expand-file-name file))
3779 (let* ((locals-dir (locate-dominating-file (file-name-directory file)
3780 #'dir-locals--all-files))
3781 dir-elt)
3782 ;; `locate-dominating-file' may have abbreviated the name.
3783 (when locals-dir
3784 (setq locals-dir (expand-file-name locals-dir)))
3785 ;; Find the best cached value in `dir-locals-directory-cache'.
3786 (dolist (elt dir-locals-directory-cache)
3787 (when (and (string-prefix-p (car elt) file
3788 (memq system-type
3789 '(windows-nt cygwin ms-dos)))
3790 (> (length (car elt)) (length (car dir-elt))))
3791 (setq dir-elt elt)))
3792 (if (and dir-elt
3793 (or (null locals-dir)
3794 (<= (length locals-dir)
3795 (length (car dir-elt)))))
3796 ;; Found a potential cache entry. Check validity.
3797 ;; A cache entry with no MTIME is assumed to always be valid
3798 ;; (ie, set directly, not from a dir-locals file).
3799 ;; Note, we don't bother to check that there is a matching class
3800 ;; element in dir-locals-class-alist, since that's done by
3801 ;; dir-locals-set-directory-class.
3802 (if (or (null (nth 2 dir-elt))
3803 (let ((cached-files (dir-locals--all-files (car dir-elt))))
3804 ;; The entry MTIME should match the most recent
3805 ;; MTIME among matching files.
3806 (and cached-files
3807 (= (time-to-seconds (nth 2 dir-elt))
3808 (apply #'max (mapcar (lambda (f) (time-to-seconds (nth 5 (file-attributes f))))
3809 cached-files))))))
3810 ;; This cache entry is OK.
3811 dir-elt
3812 ;; This cache entry is invalid; clear it.
3813 (setq dir-locals-directory-cache
3814 (delq dir-elt dir-locals-directory-cache))
3815 ;; Return the first existing dir-locals file. Might be the same
3816 ;; as dir-elt's, might not (eg latter might have been deleted).
3817 locals-dir)
3818 ;; No cache entry.
3819 locals-dir)))
3820
3821 (defun dir-locals-read-from-dir (dir)
3822 "Load all variables files in DIR and register a new class and instance.
3823 DIR is the absolute name of a directory which must contain at
3824 least one dir-local file (which is a file holding variables to
3825 apply).
3826 Return the new class name, which is a symbol named DIR."
3827 (require 'map)
3828 (let* ((class-name (intern dir))
3829 (files (dir-locals--all-files dir))
3830 (read-circle nil)
3831 (success nil)
3832 (variables))
3833 (with-demoted-errors "Error reading dir-locals: %S"
3834 (dolist (file files)
3835 (with-temp-buffer
3836 (insert-file-contents file)
3837 (condition-case-unless-debug nil
3838 (setq variables
3839 (map-merge-with 'list (lambda (a b) (map-merge 'list a b))
3840 variables
3841 (read (current-buffer))))
3842 (end-of-file nil))))
3843 (setq success t))
3844 (dir-locals-set-class-variables class-name variables)
3845 (dir-locals-set-directory-class
3846 dir class-name
3847 (seconds-to-time
3848 (if success
3849 (apply #'max (mapcar (lambda (file)
3850 (time-to-seconds (nth 5 (file-attributes file))))
3851 files))
3852 ;; If there was a problem, use the values we could get but
3853 ;; don't let the cache prevent future reads.
3854 0)))
3855 class-name))
3856
3857 (define-obsolete-function-alias 'dir-locals-read-from-file
3858 'dir-locals-read-from-dir "25.1")
3859
3860 (defcustom enable-remote-dir-locals nil
3861 "Non-nil means dir-local variables will be applied to remote files."
3862 :version "24.3"
3863 :type 'boolean
3864 :group 'find-file)
3865
3866 (defvar hack-dir-local-variables--warned-coding nil)
3867
3868 (defun hack-dir-local-variables ()
3869 "Read per-directory local variables for the current buffer.
3870 Store the directory-local variables in `dir-local-variables-alist'
3871 and `file-local-variables-alist', without applying them.
3872
3873 This does nothing if either `enable-local-variables' or
3874 `enable-dir-local-variables' are nil."
3875 (when (and enable-local-variables
3876 enable-dir-local-variables
3877 (or enable-remote-dir-locals
3878 (not (file-remote-p (or (buffer-file-name)
3879 default-directory)))))
3880 ;; Find the variables file.
3881 (let ((dir-or-cache (dir-locals-find-file
3882 (or (buffer-file-name) default-directory)))
3883 (class nil)
3884 (dir-name nil))
3885 (cond
3886 ((stringp dir-or-cache)
3887 (setq dir-name dir-or-cache
3888 class (dir-locals-read-from-dir dir-or-cache)))
3889 ((consp dir-or-cache)
3890 (setq dir-name (nth 0 dir-or-cache))
3891 (setq class (nth 1 dir-or-cache))))
3892 (when class
3893 (let ((variables
3894 (dir-locals-collect-variables
3895 (dir-locals-get-class-variables class) dir-name nil)))
3896 (when variables
3897 (dolist (elt variables)
3898 (if (eq (car elt) 'coding)
3899 (unless hack-dir-local-variables--warned-coding
3900 (setq hack-dir-local-variables--warned-coding t)
3901 (display-warning 'files
3902 "Coding cannot be specified by dir-locals"))
3903 (unless (memq (car elt) '(eval mode))
3904 (setq dir-local-variables-alist
3905 (assq-delete-all (car elt) dir-local-variables-alist)))
3906 (push elt dir-local-variables-alist)))
3907 (hack-local-variables-filter variables dir-name)))))))
3908
3909 (defun hack-dir-local-variables-non-file-buffer ()
3910 "Apply directory-local variables to a non-file buffer.
3911 For non-file buffers, such as Dired buffers, directory-local
3912 variables are looked for in `default-directory' and its parent
3913 directories."
3914 (hack-dir-local-variables)
3915 (hack-local-variables-apply))
3916
3917 \f
3918 (defcustom change-major-mode-with-file-name t
3919 "Non-nil means \\[write-file] should set the major mode from the file name.
3920 However, the mode will not be changed if
3921 \(1) a local variables list or the `-*-' line specifies a major mode, or
3922 \(2) the current major mode is a \"special\" mode,
3923 not suitable for ordinary files, or
3924 \(3) the new file name does not particularly specify any mode."
3925 :type 'boolean
3926 :group 'editing-basics)
3927
3928 (defun set-visited-file-name (filename &optional no-query along-with-file)
3929 "Change name of file visited in current buffer to FILENAME.
3930 This also renames the buffer to correspond to the new file.
3931 The next time the buffer is saved it will go in the newly specified file.
3932 FILENAME nil or an empty string means mark buffer as not visiting any file.
3933 Remember to delete the initial contents of the minibuffer
3934 if you wish to pass an empty string as the argument.
3935
3936 The optional second argument NO-QUERY, if non-nil, inhibits asking for
3937 confirmation in the case where another buffer is already visiting FILENAME.
3938
3939 The optional third argument ALONG-WITH-FILE, if non-nil, means that
3940 the old visited file has been renamed to the new name FILENAME."
3941 (interactive "FSet visited file name: ")
3942 (if (buffer-base-buffer)
3943 (error "An indirect buffer cannot visit a file"))
3944 (let (truename old-try-locals)
3945 (if filename
3946 (setq filename
3947 (if (string-equal filename "")
3948 nil
3949 (expand-file-name filename))))
3950 (if filename
3951 (progn
3952 (setq truename (file-truename filename))
3953 (if find-file-visit-truename
3954 (setq filename truename))))
3955 (if filename
3956 (let ((new-name (file-name-nondirectory filename)))
3957 (if (string= new-name "")
3958 (error "Empty file name"))))
3959 (let ((buffer (and filename (find-buffer-visiting filename))))
3960 (and buffer (not (eq buffer (current-buffer)))
3961 (not no-query)
3962 (not (y-or-n-p (format "A buffer is visiting %s; proceed? "
3963 filename)))
3964 (user-error "Aborted")))
3965 (or (equal filename buffer-file-name)
3966 (progn
3967 (and filename (lock-buffer filename))
3968 (unlock-buffer)))
3969 (setq old-try-locals (not (inhibit-local-variables-p))
3970 buffer-file-name filename)
3971 (if filename ; make buffer name reflect filename.
3972 (let ((new-name (file-name-nondirectory buffer-file-name)))
3973 (setq default-directory (file-name-directory buffer-file-name))
3974 ;; If new-name == old-name, renaming would add a spurious <2>
3975 ;; and it's considered as a feature in rename-buffer.
3976 (or (string= new-name (buffer-name))
3977 (rename-buffer new-name t))))
3978 (setq buffer-backed-up nil)
3979 (or along-with-file
3980 (clear-visited-file-modtime))
3981 ;; Abbreviate the file names of the buffer.
3982 (if truename
3983 (progn
3984 (setq buffer-file-truename (abbreviate-file-name truename))
3985 (if find-file-visit-truename
3986 (setq buffer-file-name truename))))
3987 (setq buffer-file-number
3988 (if filename
3989 (nthcdr 10 (file-attributes buffer-file-name))
3990 nil))
3991 ;; write-file-functions is normally used for things like ftp-find-file
3992 ;; that visit things that are not local files as if they were files.
3993 ;; Changing to visit an ordinary local file instead should flush the hook.
3994 (kill-local-variable 'write-file-functions)
3995 (kill-local-variable 'local-write-file-hooks)
3996 (kill-local-variable 'revert-buffer-function)
3997 (kill-local-variable 'backup-inhibited)
3998 ;; If buffer was read-only because of version control,
3999 ;; that reason is gone now, so make it writable.
4000 (if vc-mode
4001 (setq buffer-read-only nil))
4002 (kill-local-variable 'vc-mode)
4003 ;; Turn off backup files for certain file names.
4004 ;; Since this is a permanent local, the major mode won't eliminate it.
4005 (and buffer-file-name
4006 backup-enable-predicate
4007 (not (funcall backup-enable-predicate buffer-file-name))
4008 (progn
4009 (make-local-variable 'backup-inhibited)
4010 (setq backup-inhibited t)))
4011 (let ((oauto buffer-auto-save-file-name))
4012 (cond ((null filename)
4013 (setq buffer-auto-save-file-name nil))
4014 ((not buffer-auto-save-file-name)
4015 ;; If auto-save was not already on, turn it on if appropriate.
4016 (and buffer-file-name auto-save-default (auto-save-mode t)))
4017 (t
4018 ;; If auto save is on, start using a new name. We
4019 ;; deliberately don't rename or delete the old auto save
4020 ;; for the old visited file name. This is because
4021 ;; perhaps the user wants to save the new state and then
4022 ;; compare with the previous state from the auto save
4023 ;; file.
4024 (setq buffer-auto-save-file-name (make-auto-save-file-name))))
4025 ;; Rename the old auto save file if any.
4026 (and oauto buffer-auto-save-file-name
4027 (file-exists-p oauto)
4028 (rename-file oauto buffer-auto-save-file-name t)))
4029 (and buffer-file-name
4030 (not along-with-file)
4031 (set-buffer-modified-p t))
4032 ;; Update the major mode, if the file name determines it.
4033 (condition-case nil
4034 ;; Don't change the mode if it is special.
4035 (or (not change-major-mode-with-file-name)
4036 (get major-mode 'mode-class)
4037 ;; Don't change the mode if the local variable list specifies it.
4038 ;; The file name can influence whether the local variables apply.
4039 (and old-try-locals
4040 ;; h-l-v also checks it, but might as well be explicit.
4041 (not (inhibit-local-variables-p))
4042 (hack-local-variables t))
4043 ;; TODO consider making normal-mode handle this case.
4044 (let ((old major-mode))
4045 (set-auto-mode t)
4046 (or (eq old major-mode)
4047 (hack-local-variables))))
4048 (error nil))))
4049
4050 (defun write-file (filename &optional confirm)
4051 "Write current buffer into file FILENAME.
4052 This makes the buffer visit that file, and marks it as not modified.
4053
4054 If you specify just a directory name as FILENAME, that means to use
4055 the default file name but in that directory. You can also yank
4056 the default file name into the minibuffer to edit it, using \\<minibuffer-local-map>\\[next-history-element].
4057
4058 If the buffer is not already visiting a file, the default file name
4059 for the output file is the buffer name.
4060
4061 If optional second arg CONFIRM is non-nil, this function
4062 asks for confirmation before overwriting an existing file.
4063 Interactively, confirmation is required unless you supply a prefix argument."
4064 ;; (interactive "FWrite file: ")
4065 (interactive
4066 (list (if buffer-file-name
4067 (read-file-name "Write file: "
4068 nil nil nil nil)
4069 (read-file-name "Write file: " default-directory
4070 (expand-file-name
4071 (file-name-nondirectory (buffer-name))
4072 default-directory)
4073 nil nil))
4074 (not current-prefix-arg)))
4075 (or (null filename) (string-equal filename "")
4076 (progn
4077 ;; If arg is just a directory,
4078 ;; use the default file name, but in that directory.
4079 (if (file-directory-p filename)
4080 (setq filename (concat (file-name-as-directory filename)
4081 (file-name-nondirectory
4082 (or buffer-file-name (buffer-name))))))
4083 (and confirm
4084 (file-exists-p filename)
4085 ;; NS does its own confirm dialog.
4086 (not (and (eq (framep-on-display) 'ns)
4087 (listp last-nonmenu-event)
4088 use-dialog-box))
4089 (or (y-or-n-p (format-message
4090 "File `%s' exists; overwrite? " filename))
4091 (user-error "Canceled")))
4092 (set-visited-file-name filename (not confirm))))
4093 (set-buffer-modified-p t)
4094 ;; Make buffer writable if file is writable.
4095 (and buffer-file-name
4096 (file-writable-p buffer-file-name)
4097 (setq buffer-read-only nil))
4098 (save-buffer)
4099 ;; It's likely that the VC status at the new location is different from
4100 ;; the one at the old location.
4101 (vc-refresh-state))
4102 \f
4103 (defun file-extended-attributes (filename)
4104 "Return an alist of extended attributes of file FILENAME.
4105
4106 Extended attributes are platform-specific metadata about the file,
4107 such as SELinux context, list of ACL entries, etc."
4108 `((acl . ,(file-acl filename))
4109 (selinux-context . ,(file-selinux-context filename))))
4110
4111 (defun set-file-extended-attributes (filename attributes)
4112 "Set extended attributes of file FILENAME to ATTRIBUTES.
4113
4114 ATTRIBUTES must be an alist of file attributes as returned by
4115 `file-extended-attributes'.
4116 Value is t if the function succeeds in setting the attributes."
4117 (let (result rv)
4118 (dolist (elt attributes)
4119 (let ((attr (car elt))
4120 (val (cdr elt)))
4121 (cond ((eq attr 'acl)
4122 (setq rv (set-file-acl filename val)))
4123 ((eq attr 'selinux-context)
4124 (setq rv (set-file-selinux-context filename val))))
4125 (setq result (or result rv))))
4126
4127 result))
4128 \f
4129 (defun backup-buffer ()
4130 "Make a backup of the disk file visited by the current buffer, if appropriate.
4131 This is normally done before saving the buffer the first time.
4132
4133 A backup may be done by renaming or by copying; see documentation of
4134 variable `make-backup-files'. If it's done by renaming, then the file is
4135 no longer accessible under its old name.
4136
4137 The value is non-nil after a backup was made by renaming.
4138 It has the form (MODES EXTENDED-ATTRIBUTES BACKUPNAME).
4139 MODES is the result of `file-modes' on the original
4140 file; this means that the caller, after saving the buffer, should change
4141 the modes of the new file to agree with the old modes.
4142 EXTENDED-ATTRIBUTES is the result of `file-extended-attributes'
4143 on the original file; this means that the caller, after saving
4144 the buffer, should change the extended attributes of the new file
4145 to agree with the old attributes.
4146 BACKUPNAME is the backup file name, which is the old file renamed."
4147 (when (and make-backup-files (not backup-inhibited) (not buffer-backed-up))
4148 (let ((attributes (file-attributes buffer-file-name)))
4149 (when (and attributes (memq (aref (elt attributes 8) 0) '(?- ?l)))
4150 ;; If specified name is a symbolic link, chase it to the target.
4151 ;; This makes backups in the directory where the real file is.
4152 (let* ((real-file-name (file-chase-links buffer-file-name))
4153 (backup-info (find-backup-file-name real-file-name)))
4154 (when backup-info
4155 (let* ((backupname (car backup-info))
4156 (targets (cdr backup-info))
4157 (old-versions
4158 ;; If have old versions to maybe delete,
4159 ;; ask the user to confirm now, before doing anything.
4160 ;; But don't actually delete til later.
4161 (and targets
4162 (booleanp delete-old-versions)
4163 (or delete-old-versions
4164 (y-or-n-p
4165 (format "Delete excess backup versions of %s? "
4166 real-file-name)))
4167 targets))
4168 (modes (file-modes buffer-file-name))
4169 (extended-attributes
4170 (file-extended-attributes buffer-file-name))
4171 (copy-when-priv-mismatch
4172 backup-by-copying-when-privileged-mismatch)
4173 (make-copy
4174 (or file-precious-flag backup-by-copying
4175 ;; Don't rename a suid or sgid file.
4176 (and modes (< 0 (logand modes #o6000)))
4177 (not (file-writable-p
4178 (file-name-directory real-file-name)))
4179 (and backup-by-copying-when-linked
4180 (< 1 (file-nlinks real-file-name)))
4181 (and (or backup-by-copying-when-mismatch
4182 (and (integerp copy-when-priv-mismatch)
4183 (let ((attr (file-attributes
4184 real-file-name
4185 'integer)))
4186 (<= (nth 2 attr)
4187 copy-when-priv-mismatch))))
4188 (not (file-ownership-preserved-p real-file-name
4189 t)))))
4190 setmodes)
4191 (condition-case ()
4192 (progn
4193 ;; Actually make the backup file.
4194 (if make-copy
4195 (backup-buffer-copy real-file-name backupname
4196 modes extended-attributes)
4197 ;; rename-file should delete old backup.
4198 (rename-file real-file-name backupname t)
4199 (setq setmodes (list modes extended-attributes
4200 backupname)))
4201 (setq buffer-backed-up t)
4202 ;; Now delete the old versions, if desired.
4203 (dolist (old-version old-versions)
4204 (delete-file old-version)))
4205 (file-error nil))
4206 ;; If trouble writing the backup, write it in .emacs.d/%backup%.
4207 (when (not buffer-backed-up)
4208 (setq backupname (locate-user-emacs-file "%backup%~"))
4209 (message "Cannot write backup file; backing up in %s"
4210 backupname)
4211 (sleep-for 1)
4212 (backup-buffer-copy real-file-name backupname
4213 modes extended-attributes)
4214 (setq buffer-backed-up t))
4215 setmodes)))))))
4216
4217 (defun backup-buffer-copy (from-name to-name modes extended-attributes)
4218 ;; Create temp files with strict access rights. It's easy to
4219 ;; loosen them later, whereas it's impossible to close the
4220 ;; time-window of loose permissions otherwise.
4221 (with-file-modes ?\700
4222 (when (condition-case nil
4223 ;; Try to overwrite old backup first.
4224 (copy-file from-name to-name t t t)
4225 (error t))
4226 (while (condition-case nil
4227 (progn
4228 (when (file-exists-p to-name)
4229 (delete-file to-name))
4230 (copy-file from-name to-name nil t t)
4231 nil)
4232 (file-already-exists t))
4233 ;; The file was somehow created by someone else between
4234 ;; `delete-file' and `copy-file', so let's try again.
4235 ;; rms says "I think there is also a possible race
4236 ;; condition for making backup files" (emacs-devel 20070821).
4237 nil)))
4238 ;; If set-file-extended-attributes fails, fall back on set-file-modes.
4239 (unless (and extended-attributes
4240 (with-demoted-errors
4241 (set-file-extended-attributes to-name extended-attributes)))
4242 (and modes
4243 (set-file-modes to-name (logand modes #o1777)))))
4244
4245 (defvar file-name-version-regexp
4246 "\\(?:~\\|\\.~[-[:alnum:]:#@^._]+\\(?:~[[:digit:]]+\\)?~\\)"
4247 ;; The last ~[[:digit]]+ matches relative versions in git,
4248 ;; e.g. `foo.js.~HEAD~1~'.
4249 "Regular expression matching the backup/version part of a file name.
4250 Used by `file-name-sans-versions'.")
4251
4252 (defun file-name-sans-versions (name &optional keep-backup-version)
4253 "Return file NAME sans backup versions or strings.
4254 This is a separate procedure so your site-init or startup file can
4255 redefine it.
4256 If the optional argument KEEP-BACKUP-VERSION is non-nil,
4257 we do not remove backup version numbers, only true file version numbers.
4258 See also `file-name-version-regexp'."
4259 (let ((handler (find-file-name-handler name 'file-name-sans-versions)))
4260 (if handler
4261 (funcall handler 'file-name-sans-versions name keep-backup-version)
4262 (substring name 0
4263 (unless keep-backup-version
4264 (string-match (concat file-name-version-regexp "\\'")
4265 name))))))
4266
4267 (defun file-ownership-preserved-p (file &optional group)
4268 "Return t if deleting FILE and rewriting it would preserve the owner.
4269 Return nil if FILE does not exist, or if deleting and recreating it
4270 might not preserve the owner. If GROUP is non-nil, check whether
4271 the group would be preserved too."
4272 (let ((handler (find-file-name-handler file 'file-ownership-preserved-p)))
4273 (if handler
4274 (funcall handler 'file-ownership-preserved-p file group)
4275 (let ((attributes (file-attributes file 'integer)))
4276 ;; Return t if the file doesn't exist, since it's true that no
4277 ;; information would be lost by an (attempted) delete and create.
4278 (or (null attributes)
4279 (and (or (= (nth 2 attributes) (user-uid))
4280 ;; Files created on Windows by Administrator (RID=500)
4281 ;; have the Administrators group (RID=544) recorded as
4282 ;; their owner. Rewriting them will still preserve the
4283 ;; owner.
4284 (and (eq system-type 'windows-nt)
4285 (= (user-uid) 500) (= (nth 2 attributes) 544)))
4286 (or (not group)
4287 ;; On BSD-derived systems files always inherit the parent
4288 ;; directory's group, so skip the group-gid test.
4289 (memq system-type '(berkeley-unix darwin gnu/kfreebsd))
4290 (= (nth 3 attributes) (group-gid)))
4291 (let* ((parent (or (file-name-directory file) "."))
4292 (parent-attributes (file-attributes parent 'integer)))
4293 (and parent-attributes
4294 ;; On some systems, a file created in a setuid directory
4295 ;; inherits that directory's owner.
4296 (or
4297 (= (nth 2 parent-attributes) (user-uid))
4298 (string-match "^...[^sS]" (nth 8 parent-attributes)))
4299 ;; On many systems, a file created in a setgid directory
4300 ;; inherits that directory's group. On some systems
4301 ;; this happens even if the setgid bit is not set.
4302 (or (not group)
4303 (= (nth 3 parent-attributes)
4304 (nth 3 attributes)))))))))))
4305
4306 (defun file-name-sans-extension (filename)
4307 "Return FILENAME sans final \"extension\".
4308 The extension, in a file name, is the part that follows the last `.',
4309 except that a leading `.', if any, doesn't count."
4310 (save-match-data
4311 (let ((file (file-name-sans-versions (file-name-nondirectory filename)))
4312 directory)
4313 (if (and (string-match "\\.[^.]*\\'" file)
4314 (not (eq 0 (match-beginning 0))))
4315 (if (setq directory (file-name-directory filename))
4316 ;; Don't use expand-file-name here; if DIRECTORY is relative,
4317 ;; we don't want to expand it.
4318 (concat directory (substring file 0 (match-beginning 0)))
4319 (substring file 0 (match-beginning 0)))
4320 filename))))
4321
4322 (defun file-name-extension (filename &optional period)
4323 "Return FILENAME's final \"extension\".
4324 The extension, in a file name, is the part that follows the last `.',
4325 excluding version numbers and backup suffixes,
4326 except that a leading `.', if any, doesn't count.
4327 Return nil for extensionless file names such as `foo'.
4328 Return the empty string for file names such as `foo.'.
4329
4330 If PERIOD is non-nil, then the returned value includes the period
4331 that delimits the extension, and if FILENAME has no extension,
4332 the value is \"\"."
4333 (save-match-data
4334 (let ((file (file-name-sans-versions (file-name-nondirectory filename))))
4335 (if (and (string-match "\\.[^.]*\\'" file)
4336 (not (eq 0 (match-beginning 0))))
4337 (substring file (+ (match-beginning 0) (if period 0 1)))
4338 (if period
4339 "")))))
4340
4341 (defun file-name-base (&optional filename)
4342 "Return the base name of the FILENAME: no directory, no extension.
4343 FILENAME defaults to `buffer-file-name'."
4344 (file-name-sans-extension
4345 (file-name-nondirectory (or filename (buffer-file-name)))))
4346
4347 (defcustom make-backup-file-name-function
4348 #'make-backup-file-name--default-function
4349 "A function that `make-backup-file-name' uses to create backup file names.
4350 The function receives a single argument, the original file name.
4351
4352 If you change this, you may need to change `backup-file-name-p' and
4353 `file-name-sans-versions' too.
4354
4355 You could make this buffer-local to do something special for specific files.
4356
4357 For historical reasons, a value of nil means to use the default function.
4358 This should not be relied upon.
4359
4360 See also `backup-directory-alist'."
4361 :version "24.4" ; nil -> make-backup-file-name--default-function
4362 :group 'backup
4363 :type '(choice (const :tag "Deprecated way to get the default function" nil)
4364 (function :tag "Function")))
4365
4366 (defcustom backup-directory-alist nil
4367 "Alist of filename patterns and backup directory names.
4368 Each element looks like (REGEXP . DIRECTORY). Backups of files with
4369 names matching REGEXP will be made in DIRECTORY. DIRECTORY may be
4370 relative or absolute. If it is absolute, so that all matching files
4371 are backed up into the same directory, the file names in this
4372 directory will be the full name of the file backed up with all
4373 directory separators changed to `!' to prevent clashes. This will not
4374 work correctly if your filesystem truncates the resulting name.
4375
4376 For the common case of all backups going into one directory, the alist
4377 should contain a single element pairing \".\" with the appropriate
4378 directory name.
4379
4380 If this variable is nil, or it fails to match a filename, the backup
4381 is made in the original file's directory.
4382
4383 On MS-DOS filesystems without long names this variable is always
4384 ignored."
4385 :group 'backup
4386 :type '(repeat (cons (regexp :tag "Regexp matching filename")
4387 (directory :tag "Backup directory name"))))
4388
4389 (defun normal-backup-enable-predicate (name)
4390 "Default `backup-enable-predicate' function.
4391 Checks for files in `temporary-file-directory',
4392 `small-temporary-file-directory', and /tmp."
4393 (let ((temporary-file-directory temporary-file-directory)
4394 caseless)
4395 ;; On MS-Windows, file-truename will convert short 8+3 aliases to
4396 ;; their long file-name equivalents, so compare-strings does TRT.
4397 (if (memq system-type '(ms-dos windows-nt))
4398 (setq temporary-file-directory (file-truename temporary-file-directory)
4399 name (file-truename name)
4400 caseless t))
4401 (not (or (let ((comp (compare-strings temporary-file-directory 0 nil
4402 name 0 nil caseless)))
4403 ;; Directory is under temporary-file-directory.
4404 (and (not (eq comp t))
4405 (< comp (- (length temporary-file-directory)))))
4406 (let ((comp (compare-strings "/tmp" 0 nil
4407 name 0 nil)))
4408 ;; Directory is under /tmp.
4409 (and (not (eq comp t))
4410 (< comp (- (length "/tmp")))))
4411 (if small-temporary-file-directory
4412 (let ((comp (compare-strings small-temporary-file-directory
4413 0 nil
4414 name 0 nil caseless)))
4415 ;; Directory is under small-temporary-file-directory.
4416 (and (not (eq comp t))
4417 (< comp (- (length small-temporary-file-directory))))))))))
4418
4419 (defun make-backup-file-name (file)
4420 "Create the non-numeric backup file name for FILE.
4421 This calls the function that `make-backup-file-name-function' specifies,
4422 with a single argument FILE."
4423 (funcall (or make-backup-file-name-function
4424 #'make-backup-file-name--default-function)
4425 file))
4426
4427 (defun make-backup-file-name--default-function (file)
4428 "Default function for `make-backup-file-name'.
4429 Normally this just returns FILE's name with `~' appended.
4430 It searches for a match for FILE in `backup-directory-alist'.
4431 If the directory for the backup doesn't exist, it is created."
4432 (if (and (eq system-type 'ms-dos)
4433 (not (msdos-long-file-names)))
4434 (let ((fn (file-name-nondirectory file)))
4435 (concat (file-name-directory file)
4436 (or (and (string-match "\\`[^.]+\\'" fn)
4437 (concat (match-string 0 fn) ".~"))
4438 (and (string-match "\\`[^.]+\\.\\(..?\\)?" fn)
4439 (concat (match-string 0 fn) "~")))))
4440 (concat (make-backup-file-name-1 file) "~")))
4441
4442 (defun make-backup-file-name-1 (file)
4443 "Subroutine of `make-backup-file-name--default-function'.
4444 The function `find-backup-file-name' also uses this."
4445 (let ((alist backup-directory-alist)
4446 elt backup-directory abs-backup-directory)
4447 (while alist
4448 (setq elt (pop alist))
4449 (if (string-match (car elt) file)
4450 (setq backup-directory (cdr elt)
4451 alist nil)))
4452 ;; If backup-directory is relative, it should be relative to the
4453 ;; file's directory. By expanding explicitly here, we avoid
4454 ;; depending on default-directory.
4455 (if backup-directory
4456 (setq abs-backup-directory
4457 (expand-file-name backup-directory
4458 (file-name-directory file))))
4459 (if (and abs-backup-directory (not (file-exists-p abs-backup-directory)))
4460 (condition-case nil
4461 (make-directory abs-backup-directory 'parents)
4462 (file-error (setq backup-directory nil
4463 abs-backup-directory nil))))
4464 (if (null backup-directory)
4465 file
4466 (if (file-name-absolute-p backup-directory)
4467 (progn
4468 (when (memq system-type '(windows-nt ms-dos cygwin))
4469 ;; Normalize DOSish file names: downcase the drive
4470 ;; letter, if any, and replace the leading "x:" with
4471 ;; "/drive_x".
4472 (or (file-name-absolute-p file)
4473 (setq file (expand-file-name file))) ; make defaults explicit
4474 ;; Replace any invalid file-name characters (for the
4475 ;; case of backing up remote files).
4476 (setq file (expand-file-name (convert-standard-filename file)))
4477 (if (eq (aref file 1) ?:)
4478 (setq file (concat "/"
4479 "drive_"
4480 (char-to-string (downcase (aref file 0)))
4481 (if (eq (aref file 2) ?/)
4482 ""
4483 "/")
4484 (substring file 2)))))
4485 ;; Make the name unique by substituting directory
4486 ;; separators. It may not really be worth bothering about
4487 ;; doubling `!'s in the original name...
4488 (expand-file-name
4489 (subst-char-in-string
4490 ?/ ?!
4491 (replace-regexp-in-string "!" "!!" file))
4492 backup-directory))
4493 (expand-file-name (file-name-nondirectory file)
4494 (file-name-as-directory abs-backup-directory))))))
4495
4496 (defun backup-file-name-p (file)
4497 "Return non-nil if FILE is a backup file name (numeric or not).
4498 This is a separate function so you can redefine it for customization.
4499 You may need to redefine `file-name-sans-versions' as well."
4500 (string-match "~\\'" file))
4501
4502 (defvar backup-extract-version-start)
4503
4504 ;; This is used in various files.
4505 ;; The usage of backup-extract-version-start is not very clean,
4506 ;; but I can't see a good alternative, so as of now I am leaving it alone.
4507 (defun backup-extract-version (fn)
4508 "Given the name of a numeric backup file, FN, return the backup number.
4509 Uses the free variable `backup-extract-version-start', whose value should be
4510 the index in the name where the version number begins."
4511 (if (and (string-match "[0-9]+~/?$" fn backup-extract-version-start)
4512 (= (match-beginning 0) backup-extract-version-start))
4513 (string-to-number (substring fn backup-extract-version-start -1))
4514 0))
4515
4516 (defun find-backup-file-name (fn)
4517 "Find a file name for a backup file FN, and suggestions for deletions.
4518 Value is a list whose car is the name for the backup file
4519 and whose cdr is a list of old versions to consider deleting now.
4520 If the value is nil, don't make a backup.
4521 Uses `backup-directory-alist' in the same way as
4522 `make-backup-file-name--default-function' does."
4523 (let ((handler (find-file-name-handler fn 'find-backup-file-name)))
4524 ;; Run a handler for this function so that ange-ftp can refuse to do it.
4525 (if handler
4526 (funcall handler 'find-backup-file-name fn)
4527 (if (or (eq version-control 'never)
4528 ;; We don't support numbered backups on plain MS-DOS
4529 ;; when long file names are unavailable.
4530 (and (eq system-type 'ms-dos)
4531 (not (msdos-long-file-names))))
4532 (list (make-backup-file-name fn))
4533 (let* ((basic-name (make-backup-file-name-1 fn))
4534 (base-versions (concat (file-name-nondirectory basic-name)
4535 ".~"))
4536 (backup-extract-version-start (length base-versions))
4537 (high-water-mark 0)
4538 (number-to-delete 0)
4539 possibilities deserve-versions-p versions)
4540 (condition-case ()
4541 (setq possibilities (file-name-all-completions
4542 base-versions
4543 (file-name-directory basic-name))
4544 versions (sort (mapcar #'backup-extract-version
4545 possibilities)
4546 #'<)
4547 high-water-mark (apply 'max 0 versions)
4548 deserve-versions-p (or version-control
4549 (> high-water-mark 0))
4550 number-to-delete (- (length versions)
4551 kept-old-versions
4552 kept-new-versions
4553 -1))
4554 (file-error (setq possibilities nil)))
4555 (if (not deserve-versions-p)
4556 (list (make-backup-file-name fn))
4557 (cons (format "%s.~%d~" basic-name (1+ high-water-mark))
4558 (if (and (> number-to-delete 0)
4559 ;; Delete nothing if there is overflow
4560 ;; in the number of versions to keep.
4561 (>= (+ kept-new-versions kept-old-versions -1) 0))
4562 (mapcar (lambda (n)
4563 (format "%s.~%d~" basic-name n))
4564 (let ((v (nthcdr kept-old-versions versions)))
4565 (rplacd (nthcdr (1- number-to-delete) v) ())
4566 v))))))))))
4567
4568 (defun file-nlinks (filename)
4569 "Return number of names file FILENAME has."
4570 (car (cdr (file-attributes filename))))
4571
4572 ;; (defun file-relative-name (filename &optional directory)
4573 ;; "Convert FILENAME to be relative to DIRECTORY (default: `default-directory').
4574 ;; This function returns a relative file name which is equivalent to FILENAME
4575 ;; when used with that default directory as the default.
4576 ;; If this is impossible (which can happen on MSDOS and Windows
4577 ;; when the file name and directory use different drive names)
4578 ;; then it returns FILENAME."
4579 ;; (save-match-data
4580 ;; (let ((fname (expand-file-name filename)))
4581 ;; (setq directory (file-name-as-directory
4582 ;; (expand-file-name (or directory default-directory))))
4583 ;; ;; On Microsoft OSes, if FILENAME and DIRECTORY have different
4584 ;; ;; drive names, they can't be relative, so return the absolute name.
4585 ;; (if (and (or (eq system-type 'ms-dos)
4586 ;; (eq system-type 'cygwin)
4587 ;; (eq system-type 'windows-nt))
4588 ;; (not (string-equal (substring fname 0 2)
4589 ;; (substring directory 0 2))))
4590 ;; filename
4591 ;; (let ((ancestor ".")
4592 ;; (fname-dir (file-name-as-directory fname)))
4593 ;; (while (and (not (string-match (concat "^" (regexp-quote directory)) fname-dir))
4594 ;; (not (string-match (concat "^" (regexp-quote directory)) fname)))
4595 ;; (setq directory (file-name-directory (substring directory 0 -1))
4596 ;; ancestor (if (equal ancestor ".")
4597 ;; ".."
4598 ;; (concat "../" ancestor))))
4599 ;; ;; Now ancestor is empty, or .., or ../.., etc.
4600 ;; (if (string-match (concat "^" (regexp-quote directory)) fname)
4601 ;; ;; We matched within FNAME's directory part.
4602 ;; ;; Add the rest of FNAME onto ANCESTOR.
4603 ;; (let ((rest (substring fname (match-end 0))))
4604 ;; (if (and (equal ancestor ".")
4605 ;; (not (equal rest "")))
4606 ;; ;; But don't bother with ANCESTOR if it would give us `./'.
4607 ;; rest
4608 ;; (concat (file-name-as-directory ancestor) rest)))
4609 ;; ;; We matched FNAME's directory equivalent.
4610 ;; ancestor))))))
4611
4612 (defun file-relative-name (filename &optional directory)
4613 "Convert FILENAME to be relative to DIRECTORY (default: `default-directory').
4614 This function returns a relative file name which is equivalent to FILENAME
4615 when used with that default directory as the default.
4616 If FILENAME is a relative file name, it will be interpreted as existing in
4617 `default-directory'.
4618 If FILENAME and DIRECTORY lie on different machines or on different drives
4619 on a DOS/Windows machine, it returns FILENAME in expanded form."
4620 (save-match-data
4621 (setq directory
4622 (file-name-as-directory (expand-file-name (or directory
4623 default-directory))))
4624 (setq filename (expand-file-name filename))
4625 (let ((fremote (file-remote-p filename))
4626 (dremote (file-remote-p directory))
4627 (fold-case (or (memq system-type '(ms-dos cygwin windows-nt))
4628 read-file-name-completion-ignore-case)))
4629 (if ;; Conditions for separate trees
4630 (or
4631 ;; Test for different filesystems on DOS/Windows
4632 (and
4633 ;; Should `cygwin' really be included here? --stef
4634 (memq system-type '(ms-dos cygwin windows-nt))
4635 (or
4636 ;; Test for different drive letters
4637 (not (eq t (compare-strings filename 0 2 directory 0 2 fold-case)))
4638 ;; Test for UNCs on different servers
4639 (not (eq t (compare-strings
4640 (progn
4641 (if (string-match "\\`//\\([^:/]+\\)/" filename)
4642 (match-string 1 filename)
4643 ;; Windows file names cannot have ? in
4644 ;; them, so use that to detect when
4645 ;; neither FILENAME nor DIRECTORY is a
4646 ;; UNC.
4647 "?"))
4648 0 nil
4649 (progn
4650 (if (string-match "\\`//\\([^:/]+\\)/" directory)
4651 (match-string 1 directory)
4652 "?"))
4653 0 nil t)))))
4654 ;; Test for different remote file system identification
4655 (not (equal fremote dremote)))
4656 filename
4657 (let ((ancestor ".")
4658 (filename-dir (file-name-as-directory filename)))
4659 (while (not
4660 (or (string-prefix-p directory filename-dir fold-case)
4661 (string-prefix-p directory filename fold-case)))
4662 (setq directory (file-name-directory (substring directory 0 -1))
4663 ancestor (if (equal ancestor ".")
4664 ".."
4665 (concat "../" ancestor))))
4666 ;; Now ancestor is empty, or .., or ../.., etc.
4667 (if (string-prefix-p directory filename fold-case)
4668 ;; We matched within FILENAME's directory part.
4669 ;; Add the rest of FILENAME onto ANCESTOR.
4670 (let ((rest (substring filename (length directory))))
4671 (if (and (equal ancestor ".") (not (equal rest "")))
4672 ;; But don't bother with ANCESTOR if it would give us `./'.
4673 rest
4674 (concat (file-name-as-directory ancestor) rest)))
4675 ;; We matched FILENAME's directory equivalent.
4676 ancestor))))))
4677 \f
4678 (defun save-buffer (&optional arg)
4679 "Save current buffer in visited file if modified.
4680 Variations are described below.
4681
4682 By default, makes the previous version into a backup file
4683 if previously requested or if this is the first save.
4684 Prefixed with one \\[universal-argument], marks this version
4685 to become a backup when the next save is done.
4686 Prefixed with two \\[universal-argument]'s,
4687 unconditionally makes the previous version into a backup file.
4688 Prefixed with three \\[universal-argument]'s, marks this version
4689 to become a backup when the next save is done,
4690 and unconditionally makes the previous version into a backup file.
4691
4692 With a numeric prefix argument of 0, never make the previous version
4693 into a backup file.
4694
4695 If a file's name is FOO, the names of its numbered backup versions are
4696 FOO.~i~ for various integers i. A non-numbered backup file is called FOO~.
4697 Numeric backups (rather than FOO~) will be made if value of
4698 `version-control' is not the atom `never' and either there are already
4699 numeric versions of the file being backed up, or `version-control' is
4700 non-nil.
4701 We don't want excessive versions piling up, so there are variables
4702 `kept-old-versions', which tells Emacs how many oldest versions to keep,
4703 and `kept-new-versions', which tells how many newest versions to keep.
4704 Defaults are 2 old versions and 2 new.
4705 `dired-kept-versions' controls dired's clean-directory (.) command.
4706 If `delete-old-versions' is nil, system will query user
4707 before trimming versions. Otherwise it does it silently.
4708
4709 If `vc-make-backup-files' is nil, which is the default,
4710 no backup files are made for files managed by version control.
4711 (This is because the version control system itself records previous versions.)
4712
4713 See the subroutine `basic-save-buffer' for more information."
4714 (interactive "p")
4715 (let ((modp (buffer-modified-p))
4716 (make-backup-files (or (and make-backup-files (not (eq arg 0)))
4717 (memq arg '(16 64)))))
4718 (and modp (memq arg '(16 64)) (setq buffer-backed-up nil))
4719 ;; We used to display the message below only for files > 50KB, but
4720 ;; then Rmail-mbox never displays it due to buffer swapping. If
4721 ;; the test is ever re-introduced, be sure to handle saving of
4722 ;; Rmail files.
4723 (if (and modp
4724 (buffer-file-name)
4725 (not noninteractive)
4726 (not save-silently))
4727 (message "Saving file %s..." (buffer-file-name)))
4728 (basic-save-buffer (called-interactively-p 'any))
4729 (and modp (memq arg '(4 64)) (setq buffer-backed-up nil))))
4730
4731 (defun delete-auto-save-file-if-necessary (&optional force)
4732 "Delete auto-save file for current buffer if `delete-auto-save-files' is t.
4733 Normally delete only if the file was written by this Emacs since
4734 the last real save, but optional arg FORCE non-nil means delete anyway."
4735 (and buffer-auto-save-file-name delete-auto-save-files
4736 (not (string= buffer-file-name buffer-auto-save-file-name))
4737 (or force (recent-auto-save-p))
4738 (progn
4739 (condition-case ()
4740 (delete-file buffer-auto-save-file-name)
4741 (file-error nil))
4742 (set-buffer-auto-saved))))
4743
4744 (defvar auto-save-hook nil
4745 "Normal hook run just before auto-saving.")
4746
4747 (defcustom before-save-hook nil
4748 "Normal hook that is run before a buffer is saved to its file."
4749 :options '(copyright-update time-stamp)
4750 :type 'hook
4751 :group 'files)
4752
4753 (defcustom after-save-hook nil
4754 "Normal hook that is run after a buffer is saved to its file."
4755 :options '(executable-make-buffer-file-executable-if-script-p)
4756 :type 'hook
4757 :group 'files)
4758
4759 (defvar save-buffer-coding-system nil
4760 "If non-nil, use this coding system for saving the buffer.
4761 More precisely, use this coding system in place of the
4762 value of `buffer-file-coding-system', when saving the buffer.
4763 Calling `write-region' for any purpose other than saving the buffer
4764 will still use `buffer-file-coding-system'; this variable has no effect
4765 in such cases.")
4766
4767 (make-variable-buffer-local 'save-buffer-coding-system)
4768 (put 'save-buffer-coding-system 'permanent-local t)
4769
4770 (defun basic-save-buffer (&optional called-interactively)
4771 "Save the current buffer in its visited file, if it has been modified.
4772 The hooks `write-contents-functions' and `write-file-functions' get a chance
4773 to do the job of saving; if they do not, then the buffer is saved in
4774 the visited file in the usual way.
4775 Before and after saving the buffer, this function runs
4776 `before-save-hook' and `after-save-hook', respectively."
4777 (interactive '(called-interactively))
4778 (save-current-buffer
4779 ;; In an indirect buffer, save its base buffer instead.
4780 (if (buffer-base-buffer)
4781 (set-buffer (buffer-base-buffer)))
4782 (if (or (buffer-modified-p)
4783 ;; handle the case when no modification has been made but
4784 ;; the file disappeared since visited
4785 (and buffer-file-name
4786 (not (file-exists-p buffer-file-name))))
4787 (let ((recent-save (recent-auto-save-p))
4788 setmodes)
4789 ;; If buffer has no file name, ask user for one.
4790 (or buffer-file-name
4791 (let ((filename
4792 (expand-file-name
4793 (read-file-name "File to save in: "
4794 nil (expand-file-name (buffer-name))))))
4795 (if (file-exists-p filename)
4796 (if (file-directory-p filename)
4797 ;; Signal an error if the user specified the name of an
4798 ;; existing directory.
4799 (error "%s is a directory" filename)
4800 (unless (y-or-n-p (format-message
4801 "File `%s' exists; overwrite? "
4802 filename))
4803 (error "Canceled"))))
4804 (set-visited-file-name filename)))
4805 (or (verify-visited-file-modtime (current-buffer))
4806 (not (file-exists-p buffer-file-name))
4807 (yes-or-no-p
4808 (format
4809 "%s has changed since visited or saved. Save anyway? "
4810 (file-name-nondirectory buffer-file-name)))
4811 (user-error "Save not confirmed"))
4812 (save-restriction
4813 (widen)
4814 (save-excursion
4815 (and (> (point-max) (point-min))
4816 (not find-file-literally)
4817 (/= (char-after (1- (point-max))) ?\n)
4818 (not (and (eq selective-display t)
4819 (= (char-after (1- (point-max))) ?\r)))
4820 (or (eq require-final-newline t)
4821 (eq require-final-newline 'visit-save)
4822 (and require-final-newline
4823 (y-or-n-p
4824 (format "Buffer %s does not end in newline. Add one? "
4825 (buffer-name)))))
4826 (save-excursion
4827 (goto-char (point-max))
4828 (insert ?\n))))
4829 ;; Support VC version backups.
4830 (vc-before-save)
4831 ;; Don't let errors prevent saving the buffer.
4832 (with-demoted-errors (run-hooks 'before-save-hook))
4833 (or (run-hook-with-args-until-success 'write-contents-functions)
4834 (run-hook-with-args-until-success 'local-write-file-hooks)
4835 (run-hook-with-args-until-success 'write-file-functions)
4836 ;; If a hook returned t, file is already "written".
4837 ;; Otherwise, write it the usual way now.
4838 (let ((dir (file-name-directory
4839 (expand-file-name buffer-file-name))))
4840 (unless (file-exists-p dir)
4841 (if (y-or-n-p
4842 (format-message
4843 "Directory `%s' does not exist; create? " dir))
4844 (make-directory dir t)
4845 (error "Canceled")))
4846 (setq setmodes (basic-save-buffer-1))))
4847 ;; Now we have saved the current buffer. Let's make sure
4848 ;; that buffer-file-coding-system is fixed to what
4849 ;; actually used for saving by binding it locally.
4850 (if save-buffer-coding-system
4851 (setq save-buffer-coding-system last-coding-system-used)
4852 (setq buffer-file-coding-system last-coding-system-used))
4853 (setq buffer-file-number
4854 (nthcdr 10 (file-attributes buffer-file-name)))
4855 (if setmodes
4856 (condition-case ()
4857 (progn
4858 (unless
4859 (with-demoted-errors
4860 (set-file-modes buffer-file-name (car setmodes)))
4861 (set-file-extended-attributes buffer-file-name
4862 (nth 1 setmodes))))
4863 (error nil))))
4864 ;; If the auto-save file was recent before this command,
4865 ;; delete it now.
4866 (delete-auto-save-file-if-necessary recent-save)
4867 ;; Support VC `implicit' locking.
4868 (vc-after-save)
4869 (run-hooks 'after-save-hook))
4870 (or noninteractive
4871 (not called-interactively)
4872 (files--message "(No changes need to be saved)")))))
4873
4874 ;; This does the "real job" of writing a buffer into its visited file
4875 ;; and making a backup file. This is what is normally done
4876 ;; but inhibited if one of write-file-functions returns non-nil.
4877 ;; It returns a value (MODES EXTENDED-ATTRIBUTES BACKUPNAME), like
4878 ;; backup-buffer.
4879 (defun basic-save-buffer-1 ()
4880 (prog1
4881 (if save-buffer-coding-system
4882 (let ((coding-system-for-write save-buffer-coding-system))
4883 (basic-save-buffer-2))
4884 (basic-save-buffer-2))
4885 (if buffer-file-coding-system-explicit
4886 (setcar buffer-file-coding-system-explicit last-coding-system-used))))
4887
4888 ;; This returns a value (MODES EXTENDED-ATTRIBUTES BACKUPNAME), like
4889 ;; backup-buffer.
4890 (defun basic-save-buffer-2 ()
4891 (let (tempsetmodes setmodes)
4892 (if (not (file-writable-p buffer-file-name))
4893 (let ((dir (file-name-directory buffer-file-name)))
4894 (if (not (file-directory-p dir))
4895 (if (file-exists-p dir)
4896 (error "%s is not a directory" dir)
4897 (error "%s: no such directory" dir))
4898 (if (not (file-exists-p buffer-file-name))
4899 (error "Directory %s write-protected" dir)
4900 (if (yes-or-no-p
4901 (format
4902 "File %s is write-protected; try to save anyway? "
4903 (file-name-nondirectory
4904 buffer-file-name)))
4905 (setq tempsetmodes t)
4906 (error "Attempt to save to a file which you aren't allowed to write"))))))
4907 (or buffer-backed-up
4908 (setq setmodes (backup-buffer)))
4909 (let* ((dir (file-name-directory buffer-file-name))
4910 (dir-writable (file-writable-p dir)))
4911 (if (or (and file-precious-flag dir-writable)
4912 (and break-hardlink-on-save
4913 (file-exists-p buffer-file-name)
4914 (> (file-nlinks buffer-file-name) 1)
4915 (or dir-writable
4916 (error (concat "Directory %s write-protected; "
4917 "cannot break hardlink when saving")
4918 dir))))
4919 ;; Write temp name, then rename it.
4920 ;; This requires write access to the containing dir,
4921 ;; which is why we don't try it if we don't have that access.
4922 (let ((realname buffer-file-name)
4923 tempname succeed
4924 (umask (default-file-modes))
4925 (old-modtime (visited-file-modtime)))
4926 ;; Create temp files with strict access rights. It's easy to
4927 ;; loosen them later, whereas it's impossible to close the
4928 ;; time-window of loose permissions otherwise.
4929 (unwind-protect
4930 (progn
4931 (clear-visited-file-modtime)
4932 (set-default-file-modes ?\700)
4933 ;; Try various temporary names.
4934 ;; This code follows the example of make-temp-file,
4935 ;; but it calls write-region in the appropriate way
4936 ;; for saving the buffer.
4937 (while (condition-case ()
4938 (progn
4939 (setq tempname
4940 (make-temp-name
4941 (expand-file-name "tmp" dir)))
4942 ;; Pass in nil&nil rather than point-min&max
4943 ;; cause we're saving the whole buffer.
4944 ;; write-region-annotate-functions may use it.
4945 (write-region nil nil
4946 tempname nil realname
4947 buffer-file-truename 'excl)
4948 (when save-silently (message nil))
4949 nil)
4950 (file-already-exists t))
4951 ;; The file was somehow created by someone else between
4952 ;; `make-temp-name' and `write-region', let's try again.
4953 nil)
4954 (setq succeed t))
4955 ;; Reset the umask.
4956 (set-default-file-modes umask)
4957 ;; If we failed, restore the buffer's modtime.
4958 (unless succeed
4959 (set-visited-file-modtime old-modtime)))
4960 ;; Since we have created an entirely new file,
4961 ;; make sure it gets the right permission bits set.
4962 (setq setmodes (or setmodes
4963 (list (or (file-modes buffer-file-name)
4964 (logand ?\666 umask))
4965 (file-extended-attributes buffer-file-name)
4966 buffer-file-name)))
4967 ;; We succeeded in writing the temp file,
4968 ;; so rename it.
4969 (rename-file tempname buffer-file-name t))
4970 ;; If file not writable, see if we can make it writable
4971 ;; temporarily while we write it.
4972 ;; But no need to do so if we have just backed it up
4973 ;; (setmodes is set) because that says we're superseding.
4974 (cond ((and tempsetmodes (not setmodes))
4975 ;; Change the mode back, after writing.
4976 (setq setmodes (list (file-modes buffer-file-name)
4977 (file-extended-attributes buffer-file-name)
4978 buffer-file-name))
4979 ;; If set-file-extended-attributes fails, fall back on
4980 ;; set-file-modes.
4981 (unless
4982 (with-demoted-errors
4983 (set-file-extended-attributes buffer-file-name
4984 (nth 1 setmodes)))
4985 (set-file-modes buffer-file-name
4986 (logior (car setmodes) 128))))))
4987 (let (success)
4988 (unwind-protect
4989 (progn
4990 ;; Pass in nil&nil rather than point-min&max to indicate
4991 ;; we're saving the buffer rather than just a region.
4992 ;; write-region-annotate-functions may make us of it.
4993 (write-region nil nil
4994 buffer-file-name nil t buffer-file-truename)
4995 (when save-silently (message nil))
4996 (setq success t))
4997 ;; If we get an error writing the new file, and we made
4998 ;; the backup by renaming, undo the backing-up.
4999 (and setmodes (not success)
5000 (progn
5001 (rename-file (nth 2 setmodes) buffer-file-name t)
5002 (setq buffer-backed-up nil))))))
5003 setmodes))
5004
5005 (declare-function diff-no-select "diff"
5006 (old new &optional switches no-async buf))
5007
5008 (defvar save-some-buffers-action-alist
5009 `((?\C-r
5010 ,(lambda (buf)
5011 (if (not enable-recursive-minibuffers)
5012 (progn (display-buffer buf)
5013 (setq other-window-scroll-buffer buf))
5014 (view-buffer buf (lambda (_) (exit-recursive-edit)))
5015 (recursive-edit))
5016 ;; Return nil to ask about BUF again.
5017 nil)
5018 ,(purecopy "view this buffer"))
5019 (?d ,(lambda (buf)
5020 (if (null (buffer-file-name buf))
5021 (message "Not applicable: no file")
5022 (require 'diff) ;for diff-no-select.
5023 (let ((diffbuf (diff-no-select (buffer-file-name buf) buf
5024 nil 'noasync)))
5025 (if (not enable-recursive-minibuffers)
5026 (progn (display-buffer diffbuf)
5027 (setq other-window-scroll-buffer diffbuf))
5028 (view-buffer diffbuf (lambda (_) (exit-recursive-edit)))
5029 (recursive-edit))))
5030 ;; Return nil to ask about BUF again.
5031 nil)
5032 ,(purecopy "view changes in this buffer")))
5033 "ACTION-ALIST argument used in call to `map-y-or-n-p'.")
5034 (put 'save-some-buffers-action-alist 'risky-local-variable t)
5035
5036 (defvar buffer-save-without-query nil
5037 "Non-nil means `save-some-buffers' should save this buffer without asking.")
5038 (make-variable-buffer-local 'buffer-save-without-query)
5039
5040 (defun save-some-buffers (&optional arg pred)
5041 "Save some modified file-visiting buffers. Asks user about each one.
5042 You can answer `y' to save, `n' not to save, `C-r' to look at the
5043 buffer in question with `view-buffer' before deciding or `d' to
5044 view the differences using `diff-buffer-with-file'.
5045
5046 This command first saves any buffers where `buffer-save-without-query' is
5047 non-nil, without asking.
5048
5049 Optional argument (the prefix) non-nil means save all with no questions.
5050 Optional second argument PRED determines which buffers are considered:
5051 If PRED is nil, all the file-visiting buffers are considered.
5052 If PRED is t, then certain non-file buffers will also be considered.
5053 If PRED is a zero-argument function, it indicates for each buffer whether
5054 to consider it or not when called with that buffer current.
5055
5056 See `save-some-buffers-action-alist' if you want to
5057 change the additional actions you can take on files."
5058 (interactive "P")
5059 (save-window-excursion
5060 (let* (queried autosaved-buffers
5061 files-done abbrevs-done)
5062 (dolist (buffer (buffer-list))
5063 ;; First save any buffers that we're supposed to save unconditionally.
5064 ;; That way the following code won't ask about them.
5065 (with-current-buffer buffer
5066 (when (and buffer-save-without-query (buffer-modified-p))
5067 (push (buffer-name) autosaved-buffers)
5068 (save-buffer))))
5069 ;; Ask about those buffers that merit it,
5070 ;; and record the number thus saved.
5071 (setq files-done
5072 (map-y-or-n-p
5073 (lambda (buffer)
5074 ;; Note that killing some buffers may kill others via
5075 ;; hooks (e.g. Rmail and its viewing buffer).
5076 (and (buffer-live-p buffer)
5077 (buffer-modified-p buffer)
5078 (not (buffer-base-buffer buffer))
5079 (or
5080 (buffer-file-name buffer)
5081 (and pred
5082 (progn
5083 (set-buffer buffer)
5084 (and buffer-offer-save (> (buffer-size) 0)))))
5085 (or (not (functionp pred))
5086 (with-current-buffer buffer (funcall pred)))
5087 (if arg
5088 t
5089 (setq queried t)
5090 (if (buffer-file-name buffer)
5091 (format "Save file %s? "
5092 (buffer-file-name buffer))
5093 (format "Save buffer %s? "
5094 (buffer-name buffer))))))
5095 (lambda (buffer)
5096 (with-current-buffer buffer
5097 (save-buffer)))
5098 (buffer-list)
5099 '("buffer" "buffers" "save")
5100 save-some-buffers-action-alist))
5101 ;; Maybe to save abbrevs, and record whether
5102 ;; we either saved them or asked to.
5103 (and save-abbrevs abbrevs-changed
5104 (progn
5105 (if (or arg
5106 (eq save-abbrevs 'silently)
5107 (y-or-n-p (format "Save abbrevs in %s? " abbrev-file-name)))
5108 (write-abbrev-file nil))
5109 ;; Don't keep bothering user if he says no.
5110 (setq abbrevs-changed nil)
5111 (setq abbrevs-done t)))
5112 (or queried (> files-done 0) abbrevs-done
5113 (cond
5114 ((null autosaved-buffers)
5115 (when (called-interactively-p 'any)
5116 (files--message "(No files need saving)")))
5117 ((= (length autosaved-buffers) 1)
5118 (files--message "(Saved %s)" (car autosaved-buffers)))
5119 (t
5120 (files--message "(Saved %d files: %s)"
5121 (length autosaved-buffers)
5122 (mapconcat 'identity autosaved-buffers ", "))))))))
5123 \f
5124 (defun clear-visited-file-modtime ()
5125 "Clear out records of last mod time of visited file.
5126 Next attempt to save will not complain of a discrepancy."
5127 (set-visited-file-modtime 0))
5128
5129 (defun not-modified (&optional arg)
5130 "Mark current buffer as unmodified, not needing to be saved.
5131 With prefix ARG, mark buffer as modified, so \\[save-buffer] will save.
5132
5133 It is not a good idea to use this function in Lisp programs, because it
5134 prints a message in the minibuffer. Instead, use `set-buffer-modified-p'."
5135 (declare (interactive-only set-buffer-modified-p))
5136 (interactive "P")
5137 (files--message (if arg "Modification-flag set"
5138 "Modification-flag cleared"))
5139 (set-buffer-modified-p arg))
5140
5141 (defun toggle-read-only (&optional arg interactive)
5142 "Change whether this buffer is read-only."
5143 (declare (obsolete read-only-mode "24.3"))
5144 (interactive (list current-prefix-arg t))
5145 (if interactive
5146 (call-interactively 'read-only-mode)
5147 (read-only-mode (or arg 'toggle))))
5148
5149 (defun insert-file (filename)
5150 "Insert contents of file FILENAME into buffer after point.
5151 Set mark after the inserted text.
5152
5153 This function is meant for the user to run interactively.
5154 Don't call it from programs! Use `insert-file-contents' instead.
5155 \(Its calling sequence is different; see its documentation)."
5156 (declare (interactive-only insert-file-contents))
5157 (interactive "*fInsert file: ")
5158 (insert-file-1 filename #'insert-file-contents))
5159
5160 (defun append-to-file (start end filename)
5161 "Append the contents of the region to the end of file FILENAME.
5162 When called from a function, expects three arguments,
5163 START, END and FILENAME. START and END are normally buffer positions
5164 specifying the part of the buffer to write.
5165 If START is nil, that means to use the entire buffer contents.
5166 If START is a string, then output that string to the file
5167 instead of any buffer contents; END is ignored.
5168
5169 This does character code conversion and applies annotations
5170 like `write-region' does."
5171 (interactive "r\nFAppend to file: ")
5172 (prog1 (write-region start end filename t)
5173 (when save-silently (message nil))))
5174
5175 (defun file-newest-backup (filename)
5176 "Return most recent backup file for FILENAME or nil if no backups exist."
5177 ;; `make-backup-file-name' will get us the right directory for
5178 ;; ordinary or numeric backups. It might create a directory for
5179 ;; backups as a side-effect, according to `backup-directory-alist'.
5180 (let* ((filename (file-name-sans-versions
5181 (make-backup-file-name (expand-file-name filename))))
5182 (file (file-name-nondirectory filename))
5183 (dir (file-name-directory filename))
5184 (comp (file-name-all-completions file dir))
5185 (newest nil)
5186 tem)
5187 (while comp
5188 (setq tem (pop comp))
5189 (cond ((and (backup-file-name-p tem)
5190 (string= (file-name-sans-versions tem) file))
5191 (setq tem (concat dir tem))
5192 (if (or (null newest)
5193 (file-newer-than-file-p tem newest))
5194 (setq newest tem)))))
5195 newest))
5196
5197 (defun rename-uniquely ()
5198 "Rename current buffer to a similar name not already taken.
5199 This function is useful for creating multiple shell process buffers
5200 or multiple mail buffers, etc.
5201
5202 Note that some commands, in particular those based on `compilation-mode'
5203 \(`compile', `grep', etc.) will reuse the current buffer if it has the
5204 appropriate mode even if it has been renamed. So as well as renaming
5205 the buffer, you also need to switch buffers before running another
5206 instance of such commands."
5207 (interactive)
5208 (save-match-data
5209 (let ((base-name (buffer-name)))
5210 (and (string-match "<[0-9]+>\\'" base-name)
5211 (not (and buffer-file-name
5212 (string= base-name
5213 (file-name-nondirectory buffer-file-name))))
5214 ;; If the existing buffer name has a <NNN>,
5215 ;; which isn't part of the file name (if any),
5216 ;; then get rid of that.
5217 (setq base-name (substring base-name 0 (match-beginning 0))))
5218 (rename-buffer (generate-new-buffer-name base-name))
5219 (force-mode-line-update))))
5220
5221 (defun make-directory (dir &optional parents)
5222 "Create the directory DIR and optionally any nonexistent parent dirs.
5223 If DIR already exists as a directory, signal an error, unless
5224 PARENTS is non-nil.
5225
5226 Interactively, the default choice of directory to create is the
5227 current buffer's default directory. That is useful when you have
5228 visited a file in a nonexistent directory.
5229
5230 Noninteractively, the second (optional) argument PARENTS, if
5231 non-nil, says whether to create parent directories that don't
5232 exist. Interactively, this happens by default.
5233
5234 If creating the directory or directories fail, an error will be
5235 raised."
5236 (interactive
5237 (list (read-file-name "Make directory: " default-directory default-directory
5238 nil nil)
5239 t))
5240 ;; If default-directory is a remote directory,
5241 ;; make sure we find its make-directory handler.
5242 (setq dir (expand-file-name dir))
5243 (let ((handler (find-file-name-handler dir 'make-directory)))
5244 (if handler
5245 (funcall handler 'make-directory dir parents)
5246 (if (not parents)
5247 (make-directory-internal dir)
5248 (let ((dir (directory-file-name (expand-file-name dir)))
5249 create-list)
5250 (while (and (not (file-exists-p dir))
5251 ;; If directory is its own parent, then we can't
5252 ;; keep looping forever
5253 (not (equal dir
5254 (directory-file-name
5255 (file-name-directory dir)))))
5256 (setq create-list (cons dir create-list)
5257 dir (directory-file-name (file-name-directory dir))))
5258 (while create-list
5259 (make-directory-internal (car create-list))
5260 (setq create-list (cdr create-list))))))))
5261
5262 (defconst directory-files-no-dot-files-regexp
5263 "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*"
5264 "Regexp matching any file name except \".\" and \"..\".")
5265
5266 (defun delete-directory (directory &optional recursive trash)
5267 "Delete the directory named DIRECTORY. Does not follow symlinks.
5268 If RECURSIVE is non-nil, all files in DIRECTORY are deleted as well.
5269 TRASH non-nil means to trash the directory instead, provided
5270 `delete-by-moving-to-trash' is non-nil.
5271
5272 When called interactively, TRASH is t if no prefix argument is
5273 given. With a prefix argument, TRASH is nil."
5274 (interactive
5275 (let* ((trashing (and delete-by-moving-to-trash
5276 (null current-prefix-arg)))
5277 (dir (expand-file-name
5278 (read-directory-name
5279 (if trashing
5280 "Move directory to trash: "
5281 "Delete directory: ")
5282 default-directory default-directory nil nil))))
5283 (list dir
5284 (if (directory-files dir nil directory-files-no-dot-files-regexp)
5285 (y-or-n-p
5286 (format-message "Directory `%s' is not empty, really %s? "
5287 dir (if trashing "trash" "delete")))
5288 nil)
5289 (null current-prefix-arg))))
5290 ;; If default-directory is a remote directory, make sure we find its
5291 ;; delete-directory handler.
5292 (setq directory (directory-file-name (expand-file-name directory)))
5293 (let ((handler (find-file-name-handler directory 'delete-directory)))
5294 (cond
5295 (handler
5296 (funcall handler 'delete-directory directory recursive))
5297 ((and delete-by-moving-to-trash trash)
5298 ;; Only move non-empty dir to trash if recursive deletion was
5299 ;; requested. This mimics the non-`delete-by-moving-to-trash'
5300 ;; case, where the operation fails in delete-directory-internal.
5301 ;; As `move-file-to-trash' trashes directories (empty or
5302 ;; otherwise) as a unit, we do not need to recurse here.
5303 (if (and (not recursive)
5304 ;; Check if directory is empty apart from "." and "..".
5305 (directory-files
5306 directory 'full directory-files-no-dot-files-regexp))
5307 (error "Directory is not empty, not moving to trash")
5308 (move-file-to-trash directory)))
5309 ;; Otherwise, call ourselves recursively if needed.
5310 (t
5311 (if (and recursive (not (file-symlink-p directory)))
5312 (mapc (lambda (file)
5313 ;; This test is equivalent to
5314 ;; (and (file-directory-p fn) (not (file-symlink-p fn)))
5315 ;; but more efficient
5316 (if (eq t (car (file-attributes file)))
5317 (delete-directory file recursive nil)
5318 (delete-file file nil)))
5319 ;; We do not want to delete "." and "..".
5320 (directory-files
5321 directory 'full directory-files-no-dot-files-regexp)))
5322 (delete-directory-internal directory)))))
5323
5324 (defun file-equal-p (file1 file2)
5325 "Return non-nil if files FILE1 and FILE2 name the same file.
5326 If FILE1 or FILE2 does not exist, the return value is unspecified."
5327 (let ((handler (or (find-file-name-handler file1 'file-equal-p)
5328 (find-file-name-handler file2 'file-equal-p))))
5329 (if handler
5330 (funcall handler 'file-equal-p file1 file2)
5331 (let (f1-attr f2-attr)
5332 (and (setq f1-attr (file-attributes (file-truename file1)))
5333 (setq f2-attr (file-attributes (file-truename file2)))
5334 (equal f1-attr f2-attr))))))
5335
5336 (defun file-in-directory-p (file dir)
5337 "Return non-nil if FILE is in DIR or a subdirectory of DIR.
5338 A directory is considered to be \"in\" itself.
5339 Return nil if DIR is not an existing directory."
5340 (let ((handler (or (find-file-name-handler file 'file-in-directory-p)
5341 (find-file-name-handler dir 'file-in-directory-p))))
5342 (if handler
5343 (funcall handler 'file-in-directory-p file dir)
5344 (when (file-directory-p dir) ; DIR must exist.
5345 (setq file (file-truename file)
5346 dir (file-truename dir))
5347 (let ((ls1 (split-string file "/" t))
5348 (ls2 (split-string dir "/" t))
5349 (root
5350 (cond
5351 ;; A UNC on Windows systems, or a "super-root" on Apollo.
5352 ((string-match "\\`//" file) "//")
5353 ((string-match "\\`/" file) "/")
5354 (t "")))
5355 (mismatch nil))
5356 (while (and ls1 ls2 (not mismatch))
5357 (if (string-equal (car ls1) (car ls2))
5358 (setq root (concat root (car ls1) "/"))
5359 (setq mismatch t))
5360 (setq ls1 (cdr ls1)
5361 ls2 (cdr ls2)))
5362 (unless mismatch
5363 (file-equal-p root dir)))))))
5364
5365 (defun copy-directory (directory newname &optional keep-time parents copy-contents)
5366 "Copy DIRECTORY to NEWNAME. Both args must be strings.
5367 This function always sets the file modes of the output files to match
5368 the corresponding input file.
5369
5370 The third arg KEEP-TIME non-nil means give the output files the same
5371 last-modified time as the old ones. (This works on only some systems.)
5372
5373 A prefix arg makes KEEP-TIME non-nil.
5374
5375 Noninteractively, the last argument PARENTS says whether to
5376 create parent directories if they don't exist. Interactively,
5377 this happens by default.
5378
5379 If NEWNAME names an existing directory, copy DIRECTORY as a
5380 subdirectory there. However, if called from Lisp with a non-nil
5381 optional argument COPY-CONTENTS, copy the contents of DIRECTORY
5382 directly into NEWNAME instead."
5383 (interactive
5384 (let ((dir (read-directory-name
5385 "Copy directory: " default-directory default-directory t nil)))
5386 (list dir
5387 (read-directory-name
5388 (format "Copy directory %s to: " dir)
5389 default-directory default-directory nil nil)
5390 current-prefix-arg t nil)))
5391 (when (file-in-directory-p newname directory)
5392 (error "Cannot copy `%s' into its subdirectory `%s'"
5393 directory newname))
5394 ;; If default-directory is a remote directory, make sure we find its
5395 ;; copy-directory handler.
5396 (let ((handler (or (find-file-name-handler directory 'copy-directory)
5397 (find-file-name-handler newname 'copy-directory))))
5398 (if handler
5399 (funcall handler 'copy-directory directory
5400 newname keep-time parents copy-contents)
5401
5402 ;; Compute target name.
5403 (setq directory (directory-file-name (expand-file-name directory))
5404 newname (directory-file-name (expand-file-name newname)))
5405
5406 (cond ((not (file-directory-p newname))
5407 ;; If NEWNAME is not an existing directory, create it;
5408 ;; that is where we will copy the files of DIRECTORY.
5409 (make-directory newname parents))
5410 ;; If NEWNAME is an existing directory and COPY-CONTENTS
5411 ;; is nil, copy into NEWNAME/[DIRECTORY-BASENAME].
5412 ((not copy-contents)
5413 (setq newname (expand-file-name
5414 (file-name-nondirectory
5415 (directory-file-name directory))
5416 newname))
5417 (and (file-exists-p newname)
5418 (not (file-directory-p newname))
5419 (error "Cannot overwrite non-directory %s with a directory"
5420 newname))
5421 (make-directory newname t)))
5422
5423 ;; Copy recursively.
5424 (dolist (file
5425 ;; We do not want to copy "." and "..".
5426 (directory-files directory 'full
5427 directory-files-no-dot-files-regexp))
5428 (let ((target (expand-file-name (file-name-nondirectory file) newname))
5429 (filetype (car (file-attributes file))))
5430 (cond
5431 ((eq filetype t) ; Directory but not a symlink.
5432 (copy-directory file newname keep-time parents))
5433 ((stringp filetype) ; Symbolic link
5434 (make-symbolic-link filetype target t))
5435 ((copy-file file target t keep-time)))))
5436
5437 ;; Set directory attributes.
5438 (let ((modes (file-modes directory))
5439 (times (and keep-time (nth 5 (file-attributes directory)))))
5440 (if modes (set-file-modes newname modes))
5441 (if times (set-file-times newname times))))))
5442
5443 \f
5444 ;; At time of writing, only info uses this.
5445 (defun prune-directory-list (dirs &optional keep reject)
5446 "Return a copy of DIRS with all non-existent directories removed.
5447 The optional argument KEEP is a list of directories to retain even if
5448 they don't exist, and REJECT is a list of directories to remove from
5449 DIRS, even if they exist; REJECT takes precedence over KEEP.
5450
5451 Note that membership in REJECT and KEEP is checked using simple string
5452 comparison."
5453 (apply #'nconc
5454 (mapcar (lambda (dir)
5455 (and (not (member dir reject))
5456 (or (member dir keep) (file-directory-p dir))
5457 (list dir)))
5458 dirs)))
5459
5460 \f
5461 (put 'revert-buffer-function 'permanent-local t)
5462 (defvar revert-buffer-function #'revert-buffer--default
5463 "Function to use to revert this buffer.
5464 The function receives two arguments IGNORE-AUTO and NOCONFIRM,
5465 which are the arguments that `revert-buffer' received.
5466 It also has access to the `preserve-modes' argument of `revert-buffer'
5467 via the `revert-buffer-preserve-modes' dynamic variable.
5468
5469 For historical reasons, a value of nil means to use the default function.
5470 This should not be relied upon.")
5471
5472 (put 'revert-buffer-insert-file-contents-function 'permanent-local t)
5473 (defvar revert-buffer-insert-file-contents-function
5474 #'revert-buffer-insert-file-contents--default-function
5475 "Function to use to insert contents when reverting this buffer.
5476 The function receives two arguments: the first the nominal file name to use;
5477 the second is t if reading the auto-save file.
5478
5479 The function is responsible for updating (or preserving) point.
5480
5481 For historical reasons, a value of nil means to use the default function.
5482 This should not be relied upon.")
5483
5484 (defun buffer-stale--default-function (&optional _noconfirm)
5485 "Default function to use for `buffer-stale-function'.
5486 This function ignores its argument.
5487 This returns non-nil if the current buffer is visiting a readable file
5488 whose modification time does not match that of the buffer.
5489
5490 This function only handles buffers that are visiting files.
5491 Non-file buffers need a custom function"
5492 (and buffer-file-name
5493 (file-readable-p buffer-file-name)
5494 (not (buffer-modified-p (current-buffer)))
5495 (not (verify-visited-file-modtime (current-buffer)))))
5496
5497 (defvar buffer-stale-function #'buffer-stale--default-function
5498 "Function to check whether a buffer needs reverting.
5499 This should be a function with one optional argument NOCONFIRM.
5500 Auto Revert Mode passes t for NOCONFIRM. The function should return
5501 non-nil if the buffer should be reverted. A return value of
5502 `fast' means that the need for reverting was not checked, but
5503 that reverting the buffer is fast. The buffer is current when
5504 this function is called.
5505
5506 The idea behind the NOCONFIRM argument is that it should be
5507 non-nil if the buffer is going to be reverted without asking the
5508 user. In such situations, one has to be careful with potentially
5509 time consuming operations.
5510
5511 For historical reasons, a value of nil means to use the default function.
5512 This should not be relied upon.
5513
5514 For more information on how this variable is used by Auto Revert mode,
5515 see Info node `(emacs)Supporting additional buffers'.")
5516
5517 (defvar before-revert-hook nil
5518 "Normal hook for `revert-buffer' to run before reverting.
5519 The function `revert-buffer--default' runs this.
5520 A customized `revert-buffer-function' need not run this hook.")
5521
5522 (defvar after-revert-hook nil
5523 "Normal hook for `revert-buffer' to run after reverting.
5524 Note that the hook value that it runs is the value that was in effect
5525 before reverting; that makes a difference if you have buffer-local
5526 hook functions.
5527
5528 The function `revert-buffer--default' runs this.
5529 A customized `revert-buffer-function' need not run this hook.")
5530
5531 (defvar revert-buffer-in-progress-p nil
5532 "Non-nil if a `revert-buffer' operation is in progress, nil otherwise.")
5533
5534 (defvar revert-buffer-internal-hook)
5535
5536 ;; `revert-buffer-function' was defined long ago to be a function of only
5537 ;; 2 arguments, so we have to use a dynbind variable to pass the
5538 ;; `preserve-modes' argument of `revert-buffer'.
5539 (defvar revert-buffer-preserve-modes)
5540
5541 (defun revert-buffer (&optional ignore-auto noconfirm preserve-modes)
5542 "Replace current buffer text with the text of the visited file on disk.
5543 This undoes all changes since the file was visited or saved.
5544 With a prefix argument, offer to revert from latest auto-save file, if
5545 that is more recent than the visited file.
5546
5547 This command also implements an interface for special buffers
5548 that contain text which doesn't come from a file, but reflects
5549 some other data instead (e.g. Dired buffers, `buffer-list'
5550 buffers). This is done via the variable `revert-buffer-function'.
5551 In these cases, it should reconstruct the buffer contents from the
5552 appropriate data.
5553
5554 When called from Lisp, the first argument is IGNORE-AUTO; only offer
5555 to revert from the auto-save file when this is nil. Note that the
5556 sense of this argument is the reverse of the prefix argument, for the
5557 sake of backward compatibility. IGNORE-AUTO is optional, defaulting
5558 to nil.
5559
5560 Optional second argument NOCONFIRM means don't ask for confirmation
5561 at all. (The variable `revert-without-query' offers another way to
5562 revert buffers without querying for confirmation.)
5563
5564 Optional third argument PRESERVE-MODES non-nil means don't alter
5565 the files modes. Normally we reinitialize them using `normal-mode'.
5566
5567 This function binds `revert-buffer-in-progress-p' non-nil while it operates.
5568
5569 This function calls the function that `revert-buffer-function' specifies
5570 to do the work, with arguments IGNORE-AUTO and NOCONFIRM.
5571 The default function runs the hooks `before-revert-hook' and
5572 `after-revert-hook'."
5573 ;; I admit it's odd to reverse the sense of the prefix argument, but
5574 ;; there is a lot of code out there which assumes that the first
5575 ;; argument should be t to avoid consulting the auto-save file, and
5576 ;; there's no straightforward way to encourage authors to notice a
5577 ;; reversal of the argument sense. So I'm just changing the user
5578 ;; interface, but leaving the programmatic interface the same.
5579 (interactive (list (not current-prefix-arg)))
5580 (let ((revert-buffer-in-progress-p t)
5581 (revert-buffer-preserve-modes preserve-modes))
5582 (funcall (or revert-buffer-function #'revert-buffer--default)
5583 ignore-auto noconfirm)))
5584
5585 (defun revert-buffer--default (ignore-auto noconfirm)
5586 "Default function for `revert-buffer'.
5587 The arguments IGNORE-AUTO and NOCONFIRM are as described for `revert-buffer'.
5588 Runs the hooks `before-revert-hook' and `after-revert-hook' at the
5589 start and end.
5590
5591 Calls `revert-buffer-insert-file-contents-function' to reread the
5592 contents of the visited file, with two arguments: the first is the file
5593 name, the second is non-nil if reading an auto-save file.
5594
5595 This function only handles buffers that are visiting files.
5596 Non-file buffers need a custom function."
5597 (with-current-buffer (or (buffer-base-buffer (current-buffer))
5598 (current-buffer))
5599 (let* ((auto-save-p (and (not ignore-auto)
5600 (recent-auto-save-p)
5601 buffer-auto-save-file-name
5602 (file-readable-p buffer-auto-save-file-name)
5603 (y-or-n-p
5604 "Buffer has been auto-saved recently. Revert from auto-save file? ")))
5605 (file-name (if auto-save-p
5606 buffer-auto-save-file-name
5607 buffer-file-name)))
5608 (cond ((null file-name)
5609 (error "Buffer does not seem to be associated with any file"))
5610 ((or noconfirm
5611 (and (not (buffer-modified-p))
5612 (catch 'found
5613 (dolist (regexp revert-without-query)
5614 (when (string-match regexp file-name)
5615 (throw 'found t)))))
5616 (yes-or-no-p (format "Revert buffer from file %s? "
5617 file-name)))
5618 (run-hooks 'before-revert-hook)
5619 ;; If file was backed up but has changed since,
5620 ;; we should make another backup.
5621 (and (not auto-save-p)
5622 (not (verify-visited-file-modtime (current-buffer)))
5623 (setq buffer-backed-up nil))
5624 ;; Effectively copy the after-revert-hook status,
5625 ;; since after-find-file will clobber it.
5626 (let ((global-hook (default-value 'after-revert-hook))
5627 (local-hook (when (local-variable-p 'after-revert-hook)
5628 after-revert-hook))
5629 (inhibit-read-only t))
5630 ;; FIXME: Throw away undo-log when preserve-modes is nil?
5631 (funcall
5632 (or revert-buffer-insert-file-contents-function
5633 #'revert-buffer-insert-file-contents--default-function)
5634 file-name auto-save-p)
5635 ;; Recompute the truename in case changes in symlinks
5636 ;; have changed the truename.
5637 (setq buffer-file-truename
5638 (abbreviate-file-name (file-truename buffer-file-name)))
5639 (after-find-file nil nil t nil revert-buffer-preserve-modes)
5640 ;; Run after-revert-hook as it was before we reverted.
5641 (setq-default revert-buffer-internal-hook global-hook)
5642 (if local-hook
5643 (set (make-local-variable 'revert-buffer-internal-hook)
5644 local-hook)
5645 (kill-local-variable 'revert-buffer-internal-hook))
5646 (run-hooks 'revert-buffer-internal-hook))
5647 t)))))
5648
5649 (defun revert-buffer-insert-file-contents--default-function (file-name auto-save-p)
5650 "Default function for `revert-buffer-insert-file-contents-function'.
5651 The function `revert-buffer--default' calls this.
5652 FILE-NAME is the name of the file. AUTO-SAVE-P is non-nil if this is
5653 an auto-save file."
5654 (cond
5655 ((not (file-exists-p file-name))
5656 (error (if buffer-file-number
5657 "File %s no longer exists!"
5658 "Cannot revert nonexistent file %s")
5659 file-name))
5660 ((not (file-readable-p file-name))
5661 (error (if buffer-file-number
5662 "File %s no longer readable!"
5663 "Cannot revert unreadable file %s")
5664 file-name))
5665 (t
5666 ;; Bind buffer-file-name to nil
5667 ;; so that we don't try to lock the file.
5668 (let ((buffer-file-name nil))
5669 (or auto-save-p
5670 (unlock-buffer)))
5671 (widen)
5672 (let ((coding-system-for-read
5673 ;; Auto-saved file should be read by Emacs's
5674 ;; internal coding.
5675 (if auto-save-p 'auto-save-coding
5676 (or coding-system-for-read
5677 (and
5678 buffer-file-coding-system-explicit
5679 (car buffer-file-coding-system-explicit))))))
5680 (if (and (not enable-multibyte-characters)
5681 coding-system-for-read
5682 (not (memq (coding-system-base
5683 coding-system-for-read)
5684 '(no-conversion raw-text))))
5685 ;; As a coding system suitable for multibyte
5686 ;; buffer is specified, make the current
5687 ;; buffer multibyte.
5688 (set-buffer-multibyte t))
5689
5690 ;; This force after-insert-file-set-coding
5691 ;; (called from insert-file-contents) to set
5692 ;; buffer-file-coding-system to a proper value.
5693 (kill-local-variable 'buffer-file-coding-system)
5694
5695 ;; Note that this preserves point in an intelligent way.
5696 (if revert-buffer-preserve-modes
5697 (let ((buffer-file-format buffer-file-format))
5698 (insert-file-contents file-name (not auto-save-p)
5699 nil nil t))
5700 (insert-file-contents file-name (not auto-save-p)
5701 nil nil t))))))
5702
5703 (defun recover-this-file ()
5704 "Recover the visited file--get contents from its last auto-save file."
5705 (interactive)
5706 (recover-file buffer-file-name))
5707
5708 (defun recover-file (file)
5709 "Visit file FILE, but get contents from its last auto-save file."
5710 ;; Actually putting the file name in the minibuffer should be used
5711 ;; only rarely.
5712 ;; Not just because users often use the default.
5713 (interactive "FRecover file: ")
5714 (setq file (expand-file-name file))
5715 (if (auto-save-file-name-p (file-name-nondirectory file))
5716 (error "%s is an auto-save file" (abbreviate-file-name file)))
5717 (let ((file-name (let ((buffer-file-name file))
5718 (make-auto-save-file-name))))
5719 (cond ((if (file-exists-p file)
5720 (not (file-newer-than-file-p file-name file))
5721 (not (file-exists-p file-name)))
5722 (error "Auto-save file %s not current"
5723 (abbreviate-file-name file-name)))
5724 ((with-temp-buffer-window
5725 "*Directory*" nil
5726 #'(lambda (window _value)
5727 (with-selected-window window
5728 (unwind-protect
5729 (yes-or-no-p (format "Recover auto save file %s? " file-name))
5730 (when (window-live-p window)
5731 (quit-restore-window window 'kill)))))
5732 (with-current-buffer standard-output
5733 (let ((switches dired-listing-switches))
5734 (if (file-symlink-p file)
5735 (setq switches (concat switches " -L")))
5736 ;; Use insert-directory-safely, not insert-directory,
5737 ;; because these files might not exist. In particular,
5738 ;; FILE might not exist if the auto-save file was for
5739 ;; a buffer that didn't visit a file, such as "*mail*".
5740 ;; The code in v20.x called `ls' directly, so we need
5741 ;; to emulate what `ls' did in that case.
5742 (insert-directory-safely file switches)
5743 (insert-directory-safely file-name switches))))
5744 (switch-to-buffer (find-file-noselect file t))
5745 (let ((inhibit-read-only t)
5746 ;; Keep the current buffer-file-coding-system.
5747 (coding-system buffer-file-coding-system)
5748 ;; Auto-saved file should be read with special coding.
5749 (coding-system-for-read 'auto-save-coding))
5750 (erase-buffer)
5751 (insert-file-contents file-name nil)
5752 (set-buffer-file-coding-system coding-system))
5753 (after-find-file nil nil t))
5754 (t (user-error "Recover-file canceled")))))
5755
5756 (defun recover-session ()
5757 "Recover auto save files from a previous Emacs session.
5758 This command first displays a Dired buffer showing you the
5759 previous sessions that you could recover from.
5760 To choose one, move point to the proper line and then type C-c C-c.
5761 Then you'll be asked about a number of files to recover."
5762 (interactive)
5763 (if (null auto-save-list-file-prefix)
5764 (error "You set `auto-save-list-file-prefix' to disable making session files"))
5765 (let ((dir (file-name-directory auto-save-list-file-prefix))
5766 (nd (file-name-nondirectory auto-save-list-file-prefix)))
5767 (unless (file-directory-p dir)
5768 (make-directory dir t))
5769 (unless (directory-files dir nil
5770 (if (string= "" nd)
5771 directory-files-no-dot-files-regexp
5772 (concat "\\`" (regexp-quote nd)))
5773 t)
5774 (error "No previous sessions to recover")))
5775 (let ((ls-lisp-support-shell-wildcards t))
5776 (dired (concat auto-save-list-file-prefix "*")
5777 (concat dired-listing-switches " -t")))
5778 (use-local-map (nconc (make-sparse-keymap) (current-local-map)))
5779 (define-key (current-local-map) "\C-c\C-c" 'recover-session-finish)
5780 (save-excursion
5781 (goto-char (point-min))
5782 (or (looking-at " Move to the session you want to recover,")
5783 (let ((inhibit-read-only t))
5784 ;; Each line starts with a space
5785 ;; so that Font Lock mode won't highlight the first character.
5786 (insert " To recover a session, move to it and type C-c C-c.\n"
5787 (substitute-command-keys
5788 " To delete a session file, type \
5789 \\[dired-flag-file-deletion] on its line to flag
5790 the file for deletion, then \\[dired-do-flagged-delete] to \
5791 delete flagged files.\n\n"))))))
5792
5793 (defun recover-session-finish ()
5794 "Choose one saved session to recover auto-save files from.
5795 This command is used in the special Dired buffer created by
5796 \\[recover-session]."
5797 (interactive)
5798 ;; Get the name of the session file to recover from.
5799 (let ((file (dired-get-filename))
5800 files
5801 (buffer (get-buffer-create " *recover*")))
5802 (dired-unmark 1)
5803 (dired-do-flagged-delete t)
5804 (unwind-protect
5805 (with-current-buffer buffer
5806 ;; Read in the auto-save-list file.
5807 (erase-buffer)
5808 (insert-file-contents file)
5809 ;; Loop thru the text of that file
5810 ;; and get out the names of the files to recover.
5811 (while (not (eobp))
5812 (let (thisfile autofile)
5813 (if (eolp)
5814 ;; This is a pair of lines for a non-file-visiting buffer.
5815 ;; Get the auto-save file name and manufacture
5816 ;; a "visited file name" from that.
5817 (progn
5818 (forward-line 1)
5819 ;; If there is no auto-save file name, the
5820 ;; auto-save-list file is probably corrupted.
5821 (unless (eolp)
5822 (setq autofile
5823 (buffer-substring-no-properties
5824 (point)
5825 (line-end-position)))
5826 (setq thisfile
5827 (expand-file-name
5828 (substring
5829 (file-name-nondirectory autofile)
5830 1 -1)
5831 (file-name-directory autofile))))
5832 (forward-line 1))
5833 ;; This pair of lines is a file-visiting
5834 ;; buffer. Use the visited file name.
5835 (progn
5836 (setq thisfile
5837 (buffer-substring-no-properties
5838 (point) (progn (end-of-line) (point))))
5839 (forward-line 1)
5840 (setq autofile
5841 (buffer-substring-no-properties
5842 (point) (progn (end-of-line) (point))))
5843 (forward-line 1)))
5844 ;; Ignore a file if its auto-save file does not exist now.
5845 (if (and autofile (file-exists-p autofile))
5846 (setq files (cons thisfile files)))))
5847 (setq files (nreverse files))
5848 ;; The file contains a pair of line for each auto-saved buffer.
5849 ;; The first line of the pair contains the visited file name
5850 ;; or is empty if the buffer was not visiting a file.
5851 ;; The second line is the auto-save file name.
5852 (if files
5853 (map-y-or-n-p "Recover %s? "
5854 (lambda (file)
5855 (condition-case nil
5856 (save-excursion (recover-file file))
5857 (error
5858 "Failed to recover `%s'" file)))
5859 files
5860 '("file" "files" "recover"))
5861 (message "No files can be recovered from this session now")))
5862 (kill-buffer buffer))))
5863
5864 (defun kill-buffer-ask (buffer)
5865 "Kill BUFFER if confirmed."
5866 (when (yes-or-no-p (format "Buffer %s %s. Kill? "
5867 (buffer-name buffer)
5868 (if (buffer-modified-p buffer)
5869 "HAS BEEN EDITED" "is unmodified")))
5870 (kill-buffer buffer)))
5871
5872 (defun kill-some-buffers (&optional list)
5873 "Kill some buffers. Asks the user whether to kill each one of them.
5874 Non-interactively, if optional argument LIST is non-nil, it
5875 specifies the list of buffers to kill, asking for approval for each one."
5876 (interactive)
5877 (if (null list)
5878 (setq list (buffer-list)))
5879 (while list
5880 (let* ((buffer (car list))
5881 (name (buffer-name buffer)))
5882 (and name ; Can be nil for an indirect buffer
5883 ; if we killed the base buffer.
5884 (not (string-equal name ""))
5885 (/= (aref name 0) ?\s)
5886 (kill-buffer-ask buffer)))
5887 (setq list (cdr list))))
5888
5889 (defun kill-matching-buffers (regexp &optional internal-too)
5890 "Kill buffers whose name matches the specified REGEXP.
5891 The optional second argument indicates whether to kill internal buffers too."
5892 (interactive "sKill buffers matching this regular expression: \nP")
5893 (dolist (buffer (buffer-list))
5894 (let ((name (buffer-name buffer)))
5895 (when (and name (not (string-equal name ""))
5896 (or internal-too (/= (aref name 0) ?\s))
5897 (string-match regexp name))
5898 (kill-buffer-ask buffer)))))
5899
5900 \f
5901 (defun rename-auto-save-file ()
5902 "Adjust current buffer's auto save file name for current conditions.
5903 Also rename any existing auto save file, if it was made in this session."
5904 (let ((osave buffer-auto-save-file-name))
5905 (setq buffer-auto-save-file-name
5906 (make-auto-save-file-name))
5907 (if (and osave buffer-auto-save-file-name
5908 (not (string= buffer-auto-save-file-name buffer-file-name))
5909 (not (string= buffer-auto-save-file-name osave))
5910 (file-exists-p osave)
5911 (recent-auto-save-p))
5912 (rename-file osave buffer-auto-save-file-name t))))
5913
5914 (defun make-auto-save-file-name ()
5915 "Return file name to use for auto-saves of current buffer.
5916 Does not consider `auto-save-visited-file-name' as that variable is checked
5917 before calling this function. You can redefine this for customization.
5918 See also `auto-save-file-name-p'."
5919 (if buffer-file-name
5920 (let ((handler (find-file-name-handler buffer-file-name
5921 'make-auto-save-file-name)))
5922 (if handler
5923 (funcall handler 'make-auto-save-file-name)
5924 (let ((list auto-save-file-name-transforms)
5925 (filename buffer-file-name)
5926 result uniq)
5927 ;; Apply user-specified translations
5928 ;; to the file name.
5929 (while (and list (not result))
5930 (if (string-match (car (car list)) filename)
5931 (setq result (replace-match (cadr (car list)) t nil
5932 filename)
5933 uniq (car (cddr (car list)))))
5934 (setq list (cdr list)))
5935 (if result
5936 (if uniq
5937 (setq filename (concat
5938 (file-name-directory result)
5939 (subst-char-in-string
5940 ?/ ?!
5941 (replace-regexp-in-string "!" "!!"
5942 filename))))
5943 (setq filename result)))
5944 (setq result
5945 (if (and (eq system-type 'ms-dos)
5946 (not (msdos-long-file-names)))
5947 ;; We truncate the file name to DOS 8+3 limits
5948 ;; before doing anything else, because the regexp
5949 ;; passed to string-match below cannot handle
5950 ;; extensions longer than 3 characters, multiple
5951 ;; dots, and other atrocities.
5952 (let ((fn (dos-8+3-filename
5953 (file-name-nondirectory buffer-file-name))))
5954 (string-match
5955 "\\`\\([^.]+\\)\\(\\.\\(..?\\)?.?\\|\\)\\'"
5956 fn)
5957 (concat (file-name-directory buffer-file-name)
5958 "#" (match-string 1 fn)
5959 "." (match-string 3 fn) "#"))
5960 (concat (file-name-directory filename)
5961 "#"
5962 (file-name-nondirectory filename)
5963 "#")))
5964 ;; Make sure auto-save file names don't contain characters
5965 ;; invalid for the underlying filesystem.
5966 (if (and (memq system-type '(ms-dos windows-nt cygwin))
5967 ;; Don't modify remote (ange-ftp) filenames
5968 (not (string-match "^/\\w+@[-A-Za-z0-9._]+:" result)))
5969 (convert-standard-filename result)
5970 result))))
5971
5972 ;; Deal with buffers that don't have any associated files. (Mail
5973 ;; mode tends to create a good number of these.)
5974
5975 (let ((buffer-name (buffer-name))
5976 (limit 0)
5977 file-name)
5978 ;; Restrict the characters used in the file name to those which
5979 ;; are known to be safe on all filesystems, url-encoding the
5980 ;; rest.
5981 ;; We do this on all platforms, because even if we are not
5982 ;; running on DOS/Windows, the current directory may be on a
5983 ;; mounted VFAT filesystem, such as a USB memory stick.
5984 (while (string-match "[^A-Za-z0-9-_.~#+]" buffer-name limit)
5985 (let* ((character (aref buffer-name (match-beginning 0)))
5986 (replacement
5987 ;; For multibyte characters, this will produce more than
5988 ;; 2 hex digits, so is not true URL encoding.
5989 (format "%%%02X" character)))
5990 (setq buffer-name (replace-match replacement t t buffer-name))
5991 (setq limit (1+ (match-end 0)))))
5992 ;; Generate the file name.
5993 (setq file-name
5994 (make-temp-file
5995 (let ((fname
5996 (expand-file-name
5997 (format "#%s#" buffer-name)
5998 ;; Try a few alternative directories, to get one we can
5999 ;; write it.
6000 (cond
6001 ((file-writable-p default-directory) default-directory)
6002 ((file-writable-p "/var/tmp/") "/var/tmp/")
6003 ("~/")))))
6004 (if (and (memq system-type '(ms-dos windows-nt cygwin))
6005 ;; Don't modify remote (ange-ftp) filenames
6006 (not (string-match "^/\\w+@[-A-Za-z0-9._]+:" fname)))
6007 ;; The call to convert-standard-filename is in case
6008 ;; buffer-name includes characters not allowed by the
6009 ;; DOS/Windows filesystems. make-temp-file writes to the
6010 ;; file it creates, so we must fix the file name _before_
6011 ;; make-temp-file is called.
6012 (convert-standard-filename fname)
6013 fname))
6014 nil "#"))
6015 ;; make-temp-file creates the file,
6016 ;; but we don't want it to exist until we do an auto-save.
6017 (condition-case ()
6018 (delete-file file-name)
6019 (file-error nil))
6020 file-name)))
6021
6022 (defun auto-save-file-name-p (filename)
6023 "Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'.
6024 FILENAME should lack slashes. You can redefine this for customization."
6025 (string-match "\\`#.*#\\'" filename))
6026 \f
6027 (defun wildcard-to-regexp (wildcard)
6028 "Given a shell file name pattern WILDCARD, return an equivalent regexp.
6029 The generated regexp will match a filename only if the filename
6030 matches that wildcard according to shell rules. Only wildcards known
6031 by `sh' are supported."
6032 (let* ((i (string-match "[[.*+\\^$?]" wildcard))
6033 ;; Copy the initial run of non-special characters.
6034 (result (substring wildcard 0 i))
6035 (len (length wildcard)))
6036 ;; If no special characters, we're almost done.
6037 (if i
6038 (while (< i len)
6039 (let ((ch (aref wildcard i))
6040 j)
6041 (setq
6042 result
6043 (concat result
6044 (cond
6045 ((and (eq ch ?\[)
6046 (< (1+ i) len)
6047 (eq (aref wildcard (1+ i)) ?\]))
6048 "\\[")
6049 ((eq ch ?\[) ; [...] maps to regexp char class
6050 (progn
6051 (setq i (1+ i))
6052 (concat
6053 (cond
6054 ((eq (aref wildcard i) ?!) ; [!...] -> [^...]
6055 (progn
6056 (setq i (1+ i))
6057 (if (eq (aref wildcard i) ?\])
6058 (progn
6059 (setq i (1+ i))
6060 "[^]")
6061 "[^")))
6062 ((eq (aref wildcard i) ?^)
6063 ;; Found "[^". Insert a `\0' character
6064 ;; (which cannot happen in a filename)
6065 ;; into the character class, so that `^'
6066 ;; is not the first character after `[',
6067 ;; and thus non-special in a regexp.
6068 (progn
6069 (setq i (1+ i))
6070 "[\000^"))
6071 ((eq (aref wildcard i) ?\])
6072 ;; I don't think `]' can appear in a
6073 ;; character class in a wildcard, but
6074 ;; let's be general here.
6075 (progn
6076 (setq i (1+ i))
6077 "[]"))
6078 (t "["))
6079 (prog1 ; copy everything upto next `]'.
6080 (substring wildcard
6081 i
6082 (setq j (string-match
6083 "]" wildcard i)))
6084 (setq i (if j (1- j) (1- len)))))))
6085 ((eq ch ?.) "\\.")
6086 ((eq ch ?*) "[^\000]*")
6087 ((eq ch ?+) "\\+")
6088 ((eq ch ?^) "\\^")
6089 ((eq ch ?$) "\\$")
6090 ((eq ch ?\\) "\\\\") ; probably cannot happen...
6091 ((eq ch ??) "[^\000]")
6092 (t (char-to-string ch)))))
6093 (setq i (1+ i)))))
6094 ;; Shell wildcards should match the entire filename,
6095 ;; not its part. Make the regexp say so.
6096 (concat "\\`" result "\\'")))
6097 \f
6098 (defcustom list-directory-brief-switches
6099 (purecopy "-CF")
6100 "Switches for `list-directory' to pass to `ls' for brief listing."
6101 :type 'string
6102 :group 'dired)
6103
6104 (defcustom list-directory-verbose-switches
6105 (purecopy "-l")
6106 "Switches for `list-directory' to pass to `ls' for verbose listing."
6107 :type 'string
6108 :group 'dired)
6109
6110 (defun file-expand-wildcards (pattern &optional full)
6111 "Expand wildcard pattern PATTERN.
6112 This returns a list of file names which match the pattern.
6113 Files are sorted in `string<' order.
6114
6115 If PATTERN is written as an absolute file name,
6116 the values are absolute also.
6117
6118 If PATTERN is written as a relative file name, it is interpreted
6119 relative to the current default directory, `default-directory'.
6120 The file names returned are normally also relative to the current
6121 default directory. However, if FULL is non-nil, they are absolute."
6122 (save-match-data
6123 (let* ((nondir (file-name-nondirectory pattern))
6124 (dirpart (file-name-directory pattern))
6125 ;; A list of all dirs that DIRPART specifies.
6126 ;; This can be more than one dir
6127 ;; if DIRPART contains wildcards.
6128 (dirs (if (and dirpart
6129 (string-match "[[*?]"
6130 (or (file-remote-p dirpart 'localname)
6131 dirpart)))
6132 (mapcar 'file-name-as-directory
6133 (file-expand-wildcards (directory-file-name dirpart)))
6134 (list dirpart)))
6135 contents)
6136 (dolist (dir dirs)
6137 (when (or (null dir) ; Possible if DIRPART is not wild.
6138 (file-accessible-directory-p dir))
6139 (let ((this-dir-contents
6140 ;; Filter out "." and ".."
6141 (delq nil
6142 (mapcar #'(lambda (name)
6143 (unless (string-match "\\`\\.\\.?\\'"
6144 (file-name-nondirectory name))
6145 name))
6146 (directory-files (or dir ".") full
6147 (wildcard-to-regexp nondir))))))
6148 (setq contents
6149 (nconc
6150 (if (and dir (not full))
6151 (mapcar #'(lambda (name) (concat dir name))
6152 this-dir-contents)
6153 this-dir-contents)
6154 contents)))))
6155 contents)))
6156
6157 ;; Let Tramp know that `file-expand-wildcards' does not need an advice.
6158 (provide 'files '(remote-wildcards))
6159
6160 (defun list-directory (dirname &optional verbose)
6161 "Display a list of files in or matching DIRNAME, a la `ls'.
6162 DIRNAME is globbed by the shell if necessary.
6163 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
6164 Actions controlled by variables `list-directory-brief-switches'
6165 and `list-directory-verbose-switches'."
6166 (interactive (let ((pfx current-prefix-arg))
6167 (list (read-directory-name (if pfx "List directory (verbose): "
6168 "List directory (brief): ")
6169 nil default-directory nil)
6170 pfx)))
6171 (let ((switches (if verbose list-directory-verbose-switches
6172 list-directory-brief-switches))
6173 buffer)
6174 (or dirname (setq dirname default-directory))
6175 (setq dirname (expand-file-name dirname))
6176 (with-output-to-temp-buffer "*Directory*"
6177 (setq buffer standard-output)
6178 (buffer-disable-undo standard-output)
6179 (princ "Directory ")
6180 (princ dirname)
6181 (terpri)
6182 (with-current-buffer "*Directory*"
6183 (let ((wildcard (not (file-directory-p dirname))))
6184 (insert-directory dirname switches wildcard (not wildcard)))))
6185 ;; Finishing with-output-to-temp-buffer seems to clobber default-directory.
6186 (with-current-buffer buffer
6187 (setq default-directory
6188 (if (file-directory-p dirname)
6189 (file-name-as-directory dirname)
6190 (file-name-directory dirname))))))
6191
6192 (defun shell-quote-wildcard-pattern (pattern)
6193 "Quote characters special to the shell in PATTERN, leave wildcards alone.
6194
6195 PATTERN is assumed to represent a file-name wildcard suitable for the
6196 underlying filesystem. For Unix and GNU/Linux, each character from the
6197 set [ \\t\\n;<>&|()`'\"#$] is quoted with a backslash; for DOS/Windows, all
6198 the parts of the pattern which don't include wildcard characters are
6199 quoted with double quotes.
6200
6201 This function leaves alone existing quote characters (\\ on Unix and \"
6202 on Windows), so PATTERN can use them to quote wildcard characters that
6203 need to be passed verbatim to shell commands."
6204 (save-match-data
6205 (cond
6206 ((memq system-type '(ms-dos windows-nt cygwin))
6207 ;; DOS/Windows don't allow `"' in file names. So if the
6208 ;; argument has quotes, we can safely assume it is already
6209 ;; quoted by the caller.
6210 (if (or (string-match "[\"]" pattern)
6211 ;; We quote [&()#$`'] in case their shell is a port of a
6212 ;; Unixy shell. We quote [,=+] because stock DOS and
6213 ;; Windows shells require that in some cases, such as
6214 ;; passing arguments to batch files that use positional
6215 ;; arguments like %1.
6216 (not (string-match "[ \t;&()#$`',=+]" pattern)))
6217 pattern
6218 (let ((result "\"")
6219 (beg 0)
6220 end)
6221 (while (string-match "[*?]+" pattern beg)
6222 (setq end (match-beginning 0)
6223 result (concat result (substring pattern beg end)
6224 "\""
6225 (substring pattern end (match-end 0))
6226 "\"")
6227 beg (match-end 0)))
6228 (concat result (substring pattern beg) "\""))))
6229 (t
6230 (let ((beg 0))
6231 (while (string-match "[ \t\n;<>&|()`'\"#$]" pattern beg)
6232 (setq pattern
6233 (concat (substring pattern 0 (match-beginning 0))
6234 "\\"
6235 (substring pattern (match-beginning 0)))
6236 beg (1+ (match-end 0)))))
6237 pattern))))
6238
6239
6240 (defvar insert-directory-program (purecopy "ls")
6241 "Absolute or relative name of the `ls' program used by `insert-directory'.")
6242
6243 (defcustom directory-free-space-program (purecopy "df")
6244 "Program to get the amount of free space on a file system.
6245 We assume the output has the format of `df'.
6246 The value of this variable must be just a command name or file name;
6247 if you want to specify options, use `directory-free-space-args'.
6248
6249 A value of nil disables this feature.
6250
6251 If the function `file-system-info' is defined, it is always used in
6252 preference to the program given by this variable."
6253 :type '(choice (string :tag "Program") (const :tag "None" nil))
6254 :group 'dired)
6255
6256 (defcustom directory-free-space-args
6257 (purecopy (if (eq system-type 'darwin) "-k" "-Pk"))
6258 "Options to use when running `directory-free-space-program'."
6259 :type 'string
6260 :group 'dired)
6261
6262 (defun get-free-disk-space (dir)
6263 "Return the amount of free space on directory DIR's file system.
6264 The return value is a string describing the amount of free
6265 space (normally, the number of free 1KB blocks).
6266
6267 This function calls `file-system-info' if it is available, or
6268 invokes the program specified by `directory-free-space-program'
6269 and `directory-free-space-args'. If the system call or program
6270 is unsuccessful, or if DIR is a remote directory, this function
6271 returns nil."
6272 (unless (file-remote-p (expand-file-name dir))
6273 ;; Try to find the number of free blocks. Non-Posix systems don't
6274 ;; always have df, but might have an equivalent system call.
6275 (if (fboundp 'file-system-info)
6276 (let ((fsinfo (file-system-info dir)))
6277 (if fsinfo
6278 (format "%.0f" (/ (nth 2 fsinfo) 1024))))
6279 (setq dir (expand-file-name dir))
6280 (save-match-data
6281 (with-temp-buffer
6282 (when (and directory-free-space-program
6283 ;; Avoid failure if the default directory does
6284 ;; not exist (Bug#2631, Bug#3911).
6285 (let ((default-directory
6286 (locate-dominating-file dir 'file-directory-p)))
6287 (eq (process-file directory-free-space-program
6288 nil t nil
6289 directory-free-space-args
6290 (file-relative-name dir))
6291 0)))
6292 ;; Assume that the "available" column is before the
6293 ;; "capacity" column. Find the "%" and scan backward.
6294 (goto-char (point-min))
6295 (forward-line 1)
6296 (when (re-search-forward
6297 "[[:space:]]+[^[:space:]]+%[^%]*$"
6298 (line-end-position) t)
6299 (goto-char (match-beginning 0))
6300 (let ((endpt (point)))
6301 (skip-chars-backward "^[:space:]")
6302 (buffer-substring-no-properties (point) endpt)))))))))
6303
6304 ;; The following expression replaces `dired-move-to-filename-regexp'.
6305 (defvar directory-listing-before-filename-regexp
6306 (let* ((l "\\([A-Za-z]\\|[^\0-\177]\\)")
6307 (l-or-quote "\\([A-Za-z']\\|[^\0-\177]\\)")
6308 ;; In some locales, month abbreviations are as short as 2 letters,
6309 ;; and they can be followed by ".".
6310 ;; In Breton, a month name can include a quote character.
6311 (month (concat l-or-quote l-or-quote "+\\.?"))
6312 (s " ")
6313 (yyyy "[0-9][0-9][0-9][0-9]")
6314 (dd "[ 0-3][0-9]")
6315 (HH:MM "[ 0-2][0-9][:.][0-5][0-9]")
6316 (seconds "[0-6][0-9]\\([.,][0-9]+\\)?")
6317 (zone "[-+][0-2][0-9][0-5][0-9]")
6318 (iso-mm-dd "[01][0-9]-[0-3][0-9]")
6319 (iso-time (concat HH:MM "\\(:" seconds "\\( ?" zone "\\)?\\)?"))
6320 (iso (concat "\\(\\(" yyyy "-\\)?" iso-mm-dd "[ T]" iso-time
6321 "\\|" yyyy "-" iso-mm-dd "\\)"))
6322 (western (concat "\\(" month s "+" dd "\\|" dd "\\.?" s month "\\)"
6323 s "+"
6324 "\\(" HH:MM "\\|" yyyy "\\)"))
6325 (western-comma (concat month s "+" dd "," s "+" yyyy))
6326 ;; Japanese MS-Windows ls-lisp has one-digit months, and
6327 ;; omits the Kanji characters after month and day-of-month.
6328 ;; On Mac OS X 10.3, the date format in East Asian locales is
6329 ;; day-of-month digits followed by month digits.
6330 (mm "[ 0-1]?[0-9]")
6331 (east-asian
6332 (concat "\\(" mm l "?" s dd l "?" s "+"
6333 "\\|" dd s mm s "+" "\\)"
6334 "\\(" HH:MM "\\|" yyyy l "?" "\\)")))
6335 ;; The "[0-9]" below requires the previous column to end in a digit.
6336 ;; This avoids recognizing `1 may 1997' as a date in the line:
6337 ;; -r--r--r-- 1 may 1997 1168 Oct 19 16:49 README
6338
6339 ;; The "[BkKMGTPEZY]?" below supports "ls -alh" output.
6340
6341 ;; For non-iso date formats, we add the ".*" in order to find
6342 ;; the last possible match. This avoids recognizing
6343 ;; `jservice 10 1024' as a date in the line:
6344 ;; drwxr-xr-x 3 jservice 10 1024 Jul 2 1997 esg-host
6345
6346 ;; vc dired listings provide the state or blanks between file
6347 ;; permissions and date. The state is always surrounded by
6348 ;; parentheses:
6349 ;; -rw-r--r-- (modified) 2005-10-22 21:25 files.el
6350 ;; This is not supported yet.
6351 (purecopy (concat "\\([0-9][BkKMGTPEZY]? " iso
6352 "\\|.*[0-9][BkKMGTPEZY]? "
6353 "\\(" western "\\|" western-comma "\\|" east-asian "\\)"
6354 "\\) +")))
6355 "Regular expression to match up to the file name in a directory listing.
6356 The default value is designed to recognize dates and times
6357 regardless of the language.")
6358
6359 (defvar insert-directory-ls-version 'unknown)
6360
6361 ;; insert-directory
6362 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and
6363 ;; FULL-DIRECTORY-P is nil.
6364 ;; The single line of output must display FILE's name as it was
6365 ;; given, namely, an absolute path name.
6366 ;; - must insert exactly one line for each file if WILDCARD or
6367 ;; FULL-DIRECTORY-P is t, plus one optional "total" line
6368 ;; before the file lines, plus optional text after the file lines.
6369 ;; Lines are delimited by "\n", so filenames containing "\n" are not
6370 ;; allowed.
6371 ;; File lines should display the basename.
6372 ;; - must be consistent with
6373 ;; - functions dired-move-to-filename, (these two define what a file line is)
6374 ;; dired-move-to-end-of-filename,
6375 ;; dired-between-files, (shortcut for (not (dired-move-to-filename)))
6376 ;; dired-insert-headerline
6377 ;; dired-after-subdir-garbage (defines what a "total" line is)
6378 ;; - variable dired-subdir-regexp
6379 ;; - may be passed "--dired" as the first argument in SWITCHES.
6380 ;; Filename handlers might have to remove this switch if their
6381 ;; "ls" command does not support it.
6382 (defun insert-directory (file switches &optional wildcard full-directory-p)
6383 "Insert directory listing for FILE, formatted according to SWITCHES.
6384 Leaves point after the inserted text.
6385 SWITCHES may be a string of options, or a list of strings
6386 representing individual options.
6387 Optional third arg WILDCARD means treat FILE as shell wildcard.
6388 Optional fourth arg FULL-DIRECTORY-P means file is a directory and
6389 switches do not contain `d', so that a full listing is expected.
6390
6391 This works by running a directory listing program
6392 whose name is in the variable `insert-directory-program'.
6393 If WILDCARD, it also runs the shell specified by `shell-file-name'.
6394
6395 When SWITCHES contains the long `--dired' option, this function
6396 treats it specially, for the sake of dired. However, the
6397 normally equivalent short `-D' option is just passed on to
6398 `insert-directory-program', as any other option."
6399 ;; We need the directory in order to find the right handler.
6400 (let ((handler (find-file-name-handler (expand-file-name file)
6401 'insert-directory)))
6402 (if handler
6403 (funcall handler 'insert-directory file switches
6404 wildcard full-directory-p)
6405 (let (result (beg (point)))
6406
6407 ;; Read the actual directory using `insert-directory-program'.
6408 ;; RESULT gets the status code.
6409 (let* (;; We at first read by no-conversion, then after
6410 ;; putting text property `dired-filename, decode one
6411 ;; bunch by one to preserve that property.
6412 (coding-system-for-read 'no-conversion)
6413 ;; This is to control encoding the arguments in call-process.
6414 (coding-system-for-write
6415 (and enable-multibyte-characters
6416 (or file-name-coding-system
6417 default-file-name-coding-system))))
6418 (setq result
6419 (if wildcard
6420 ;; Run ls in the directory part of the file pattern
6421 ;; using the last component as argument.
6422 (let ((default-directory
6423 (if (file-name-absolute-p file)
6424 (file-name-directory file)
6425 (file-name-directory (expand-file-name file))))
6426 (pattern (file-name-nondirectory file)))
6427 ;; NB since switches is passed to the shell, be
6428 ;; careful of malicious values, eg "-l;reboot".
6429 ;; See eg dired-safe-switches-p.
6430 (call-process
6431 shell-file-name nil t nil
6432 "-c"
6433 (concat (if (memq system-type '(ms-dos windows-nt))
6434 ""
6435 "\\") ; Disregard Unix shell aliases!
6436 insert-directory-program
6437 " -d "
6438 (if (stringp switches)
6439 switches
6440 (mapconcat 'identity switches " "))
6441 " -- "
6442 ;; Quote some characters that have
6443 ;; special meanings in shells; but
6444 ;; don't quote the wildcards--we want
6445 ;; them to be special. We also
6446 ;; currently don't quote the quoting
6447 ;; characters in case people want to
6448 ;; use them explicitly to quote
6449 ;; wildcard characters.
6450 (shell-quote-wildcard-pattern pattern))))
6451 ;; SunOS 4.1.3, SVr4 and others need the "." to list the
6452 ;; directory if FILE is a symbolic link.
6453 (unless full-directory-p
6454 (setq switches
6455 (cond
6456 ((stringp switches) (concat switches " -d"))
6457 ((member "-d" switches) switches)
6458 (t (append switches '("-d"))))))
6459 (apply 'call-process
6460 insert-directory-program nil t nil
6461 (append
6462 (if (listp switches) switches
6463 (unless (equal switches "")
6464 ;; Split the switches at any spaces so we can
6465 ;; pass separate options as separate args.
6466 (split-string switches)))
6467 ;; Avoid lossage if FILE starts with `-'.
6468 '("--")
6469 (progn
6470 (if (string-match "\\`~" file)
6471 (setq file (expand-file-name file)))
6472 (list
6473 (if full-directory-p
6474 (concat (file-name-as-directory file) ".")
6475 file))))))))
6476
6477 ;; If we got "//DIRED//" in the output, it means we got a real
6478 ;; directory listing, even if `ls' returned nonzero.
6479 ;; So ignore any errors.
6480 (when (if (stringp switches)
6481 (string-match "--dired\\>" switches)
6482 (member "--dired" switches))
6483 (save-excursion
6484 (forward-line -2)
6485 (when (looking-at "//SUBDIRED//")
6486 (forward-line -1))
6487 (if (looking-at "//DIRED//")
6488 (setq result 0))))
6489
6490 (when (and (not (eq 0 result))
6491 (eq insert-directory-ls-version 'unknown))
6492 ;; The first time ls returns an error,
6493 ;; find the version numbers of ls,
6494 ;; and set insert-directory-ls-version
6495 ;; to > if it is more than 5.2.1, < if it is less, nil if it
6496 ;; is equal or if the info cannot be obtained.
6497 ;; (That can mean it isn't GNU ls.)
6498 (let ((version-out
6499 (with-temp-buffer
6500 (call-process "ls" nil t nil "--version")
6501 (buffer-string))))
6502 (if (string-match "ls (.*utils) \\([0-9.]*\\)$" version-out)
6503 (let* ((version (match-string 1 version-out))
6504 (split (split-string version "[.]"))
6505 (numbers (mapcar 'string-to-number split))
6506 (min '(5 2 1))
6507 comparison)
6508 (while (and (not comparison) (or numbers min))
6509 (cond ((null min)
6510 (setq comparison '>))
6511 ((null numbers)
6512 (setq comparison '<))
6513 ((> (car numbers) (car min))
6514 (setq comparison '>))
6515 ((< (car numbers) (car min))
6516 (setq comparison '<))
6517 (t
6518 (setq numbers (cdr numbers)
6519 min (cdr min)))))
6520 (setq insert-directory-ls-version (or comparison '=)))
6521 (setq insert-directory-ls-version nil))))
6522
6523 ;; For GNU ls versions 5.2.2 and up, ignore minor errors.
6524 (when (and (eq 1 result) (eq insert-directory-ls-version '>))
6525 (setq result 0))
6526
6527 ;; If `insert-directory-program' failed, signal an error.
6528 (unless (eq 0 result)
6529 ;; Delete the error message it may have output.
6530 (delete-region beg (point))
6531 ;; On non-Posix systems, we cannot open a directory, so
6532 ;; don't even try, because that will always result in
6533 ;; the ubiquitous "Access denied". Instead, show the
6534 ;; command line so the user can try to guess what went wrong.
6535 (if (and (file-directory-p file)
6536 (memq system-type '(ms-dos windows-nt)))
6537 (error
6538 "Reading directory: \"%s %s -- %s\" exited with status %s"
6539 insert-directory-program
6540 (if (listp switches) (concat switches) switches)
6541 file result)
6542 ;; Unix. Access the file to get a suitable error.
6543 (access-file file "Reading directory")
6544 (error "Listing directory failed but `access-file' worked")))
6545
6546 (when (if (stringp switches)
6547 (string-match "--dired\\>" switches)
6548 (member "--dired" switches))
6549 ;; The following overshoots by one line for an empty
6550 ;; directory listed with "--dired", but without "-a"
6551 ;; switch, where the ls output contains a
6552 ;; "//DIRED-OPTIONS//" line, but no "//DIRED//" line.
6553 ;; We take care of that case later.
6554 (forward-line -2)
6555 (when (looking-at "//SUBDIRED//")
6556 (delete-region (point) (progn (forward-line 1) (point)))
6557 (forward-line -1))
6558 (if (looking-at "//DIRED//")
6559 (let ((end (line-end-position))
6560 (linebeg (point))
6561 error-lines)
6562 ;; Find all the lines that are error messages,
6563 ;; and record the bounds of each one.
6564 (goto-char beg)
6565 (while (< (point) linebeg)
6566 (or (eql (following-char) ?\s)
6567 (push (list (point) (line-end-position)) error-lines))
6568 (forward-line 1))
6569 (setq error-lines (nreverse error-lines))
6570 ;; Now read the numeric positions of file names.
6571 (goto-char linebeg)
6572 (forward-word-strictly 1)
6573 (forward-char 3)
6574 (while (< (point) end)
6575 (let ((start (insert-directory-adj-pos
6576 (+ beg (read (current-buffer)))
6577 error-lines))
6578 (end (insert-directory-adj-pos
6579 (+ beg (read (current-buffer)))
6580 error-lines)))
6581 (if (memq (char-after end) '(?\n ?\s))
6582 ;; End is followed by \n or by " -> ".
6583 (put-text-property start end 'dired-filename t)
6584 ;; It seems that we can't trust ls's output as to
6585 ;; byte positions of filenames.
6586 (put-text-property beg (point) 'dired-filename nil)
6587 (end-of-line))))
6588 (goto-char end)
6589 (beginning-of-line)
6590 (delete-region (point) (progn (forward-line 1) (point))))
6591 ;; Take care of the case where the ls output contains a
6592 ;; "//DIRED-OPTIONS//"-line, but no "//DIRED//"-line
6593 ;; and we went one line too far back (see above).
6594 (forward-line 1))
6595 (if (looking-at "//DIRED-OPTIONS//")
6596 (delete-region (point) (progn (forward-line 1) (point)))))
6597
6598 ;; Now decode what read if necessary.
6599 (let ((coding (or coding-system-for-read
6600 file-name-coding-system
6601 default-file-name-coding-system
6602 'undecided))
6603 coding-no-eol
6604 val pos)
6605 (when (and enable-multibyte-characters
6606 (not (memq (coding-system-base coding)
6607 '(raw-text no-conversion))))
6608 ;; If no coding system is specified or detection is
6609 ;; requested, detect the coding.
6610 (if (eq (coding-system-base coding) 'undecided)
6611 (setq coding (detect-coding-region beg (point) t)))
6612 (if (not (eq (coding-system-base coding) 'undecided))
6613 (save-restriction
6614 (setq coding-no-eol
6615 (coding-system-change-eol-conversion coding 'unix))
6616 (narrow-to-region beg (point))
6617 (goto-char (point-min))
6618 (while (not (eobp))
6619 (setq pos (point)
6620 val (get-text-property (point) 'dired-filename))
6621 (goto-char (next-single-property-change
6622 (point) 'dired-filename nil (point-max)))
6623 ;; Force no eol conversion on a file name, so
6624 ;; that CR is preserved.
6625 (decode-coding-region pos (point)
6626 (if val coding-no-eol coding))
6627 (if val
6628 (put-text-property pos (point)
6629 'dired-filename t)))))))
6630
6631 (if full-directory-p
6632 ;; Try to insert the amount of free space.
6633 (save-excursion
6634 (goto-char beg)
6635 ;; First find the line to put it on.
6636 (when (re-search-forward "^ *\\(total\\)" nil t)
6637 (let ((available (get-free-disk-space ".")))
6638 (when available
6639 ;; Replace "total" with "used", to avoid confusion.
6640 (replace-match "total used in directory" nil nil nil 1)
6641 (end-of-line)
6642 (insert " available " available))))))))))
6643
6644 (defun insert-directory-adj-pos (pos error-lines)
6645 "Convert `ls --dired' file name position value POS to a buffer position.
6646 File name position values returned in ls --dired output
6647 count only stdout; they don't count the error messages sent to stderr.
6648 So this function converts to them to real buffer positions.
6649 ERROR-LINES is a list of buffer positions of error message lines,
6650 of the form (START END)."
6651 (while (and error-lines (< (caar error-lines) pos))
6652 (setq pos (+ pos (- (nth 1 (car error-lines)) (nth 0 (car error-lines)))))
6653 (pop error-lines))
6654 pos)
6655
6656 (defun insert-directory-safely (file switches
6657 &optional wildcard full-directory-p)
6658 "Insert directory listing for FILE, formatted according to SWITCHES.
6659
6660 Like `insert-directory', but if FILE does not exist, it inserts a
6661 message to that effect instead of signaling an error."
6662 (if (file-exists-p file)
6663 (insert-directory file switches wildcard full-directory-p)
6664 ;; Simulate the message printed by `ls'.
6665 (insert (format "%s: No such file or directory\n" file))))
6666
6667 (defcustom kill-emacs-query-functions nil
6668 "Functions to call with no arguments to query about killing Emacs.
6669 If any of these functions returns nil, killing Emacs is canceled.
6670 `save-buffers-kill-emacs' calls these functions, but `kill-emacs',
6671 the low level primitive, does not. See also `kill-emacs-hook'."
6672 :type 'hook
6673 :version "25.2"
6674 :group 'convenience)
6675
6676 (defcustom confirm-kill-emacs nil
6677 "How to ask for confirmation when leaving Emacs.
6678 If nil, the default, don't ask at all. If the value is non-nil, it should
6679 be a predicate function; for example `yes-or-no-p'."
6680 :type '(choice (const :tag "Ask with yes-or-no-p" yes-or-no-p)
6681 (const :tag "Ask with y-or-n-p" y-or-n-p)
6682 (const :tag "Don't confirm" nil)
6683 (function :tag "Predicate function"))
6684 :group 'convenience
6685 :version "21.1")
6686
6687 (defun save-buffers-kill-emacs (&optional arg)
6688 "Offer to save each buffer, then kill this Emacs process.
6689 With prefix ARG, silently save all file-visiting buffers without asking.
6690 If there are active processes where `process-query-on-exit-flag'
6691 returns non-nil, asks whether processes should be killed.
6692 Runs the members of `kill-emacs-query-functions' in turn and stops
6693 if any returns nil. If `confirm-kill-emacs' is non-nil, calls it."
6694 (interactive "P")
6695 (save-some-buffers arg t)
6696 (let ((confirm confirm-kill-emacs))
6697 (and
6698 (or (not (memq t (mapcar (function
6699 (lambda (buf) (and (buffer-file-name buf)
6700 (buffer-modified-p buf))))
6701 (buffer-list))))
6702 (progn (setq confirm nil)
6703 (yes-or-no-p "Modified buffers exist; exit anyway? ")))
6704 (or (not (fboundp 'process-list))
6705 ;; process-list is not defined on MSDOS.
6706 (let ((processes (process-list))
6707 active)
6708 (while processes
6709 (and (memq (process-status (car processes)) '(run stop open listen))
6710 (process-query-on-exit-flag (car processes))
6711 (setq active t))
6712 (setq processes (cdr processes)))
6713 (or (not active)
6714 (with-current-buffer-window
6715 (get-buffer-create "*Process List*") nil
6716 #'(lambda (window _value)
6717 (with-selected-window window
6718 (unwind-protect
6719 (progn
6720 (setq confirm nil)
6721 (yes-or-no-p "Active processes exist; kill them and exit anyway? "))
6722 (when (window-live-p window)
6723 (quit-restore-window window 'kill)))))
6724 (list-processes t)))))
6725 ;; Query the user for other things, perhaps.
6726 (run-hook-with-args-until-failure 'kill-emacs-query-functions)
6727 (or (null confirm)
6728 (funcall confirm "Really exit Emacs? "))
6729 (kill-emacs))))
6730
6731 (defun save-buffers-kill-terminal (&optional arg)
6732 "Offer to save each buffer, then kill the current connection.
6733 If the current frame has no client, kill Emacs itself using
6734 `save-buffers-kill-emacs'.
6735
6736 With prefix ARG, silently save all file-visiting buffers, then kill.
6737
6738 If emacsclient was started with a list of filenames to edit, then
6739 only these files will be asked to be saved."
6740 (interactive "P")
6741 (if (frame-parameter nil 'client)
6742 (server-save-buffers-kill-terminal arg)
6743 (save-buffers-kill-emacs arg)))
6744 \f
6745 ;; We use /: as a prefix to "quote" a file name
6746 ;; so that magic file name handlers will not apply to it.
6747
6748 (setq file-name-handler-alist
6749 (cons (cons (purecopy "\\`/:") 'file-name-non-special)
6750 file-name-handler-alist))
6751
6752 ;; We depend on being the last handler on the list,
6753 ;; so that anything else which does need handling
6754 ;; has been handled already.
6755 ;; So it is safe for us to inhibit *all* magic file name handlers.
6756
6757 (defun file-name-non-special (operation &rest arguments)
6758 (let ((file-name-handler-alist nil)
6759 (default-directory
6760 (if (eq operation 'insert-directory)
6761 (directory-file-name
6762 (expand-file-name
6763 (unhandled-file-name-directory default-directory)))
6764 default-directory))
6765 ;; Get a list of the indices of the args which are file names.
6766 (file-arg-indices
6767 (cdr (or (assq operation
6768 ;; The first six are special because they
6769 ;; return a file name. We want to include the /:
6770 ;; in the return value.
6771 ;; So just avoid stripping it in the first place.
6772 '((expand-file-name . nil)
6773 (file-name-directory . nil)
6774 (file-name-as-directory . nil)
6775 (directory-file-name . nil)
6776 (file-name-sans-versions . nil)
6777 (find-backup-file-name . nil)
6778 ;; `identity' means just return the first arg
6779 ;; not stripped of its quoting.
6780 (substitute-in-file-name identity)
6781 ;; `add' means add "/:" to the result.
6782 (file-truename add 0)
6783 (insert-file-contents insert-file-contents 0)
6784 ;; `unquote-then-quote' means set buffer-file-name
6785 ;; temporarily to unquoted filename.
6786 (verify-visited-file-modtime unquote-then-quote)
6787 ;; List the arguments which are filenames.
6788 (file-name-completion 1)
6789 (file-name-all-completions 1)
6790 (write-region 2 5)
6791 (rename-file 0 1)
6792 (copy-file 0 1)
6793 (make-symbolic-link 0 1)
6794 (add-name-to-file 0 1)))
6795 ;; For all other operations, treat the first argument only
6796 ;; as the file name.
6797 '(nil 0))))
6798 method
6799 ;; Copy ARGUMENTS so we can replace elements in it.
6800 (arguments (copy-sequence arguments)))
6801 (if (symbolp (car file-arg-indices))
6802 (setq method (pop file-arg-indices)))
6803 ;; Strip off the /: from the file names that have it.
6804 (save-match-data
6805 (while (consp file-arg-indices)
6806 (let ((pair (nthcdr (car file-arg-indices) arguments)))
6807 (and (car pair)
6808 (string-match "\\`/:" (car pair))
6809 (setcar pair
6810 (if (= (length (car pair)) 2)
6811 "/"
6812 (substring (car pair) 2)))))
6813 (setq file-arg-indices (cdr file-arg-indices))))
6814 (pcase method
6815 (`identity (car arguments))
6816 (`add (concat "/:" (apply operation arguments)))
6817 (`insert-file-contents
6818 (let ((visit (nth 1 arguments)))
6819 (unwind-protect
6820 (apply operation arguments)
6821 (when (and visit buffer-file-name)
6822 (setq buffer-file-name (concat "/:" buffer-file-name))))))
6823 (`unquote-then-quote
6824 (let ((buffer-file-name (substring buffer-file-name 2)))
6825 (apply operation arguments)))
6826 (_
6827 (apply operation arguments)))))
6828 \f
6829 ;; Symbolic modes and read-file-modes.
6830
6831 (defun file-modes-char-to-who (char)
6832 "Convert CHAR to a numeric bit-mask for extracting mode bits.
6833 CHAR is in [ugoa] and represents the category of users (Owner, Group,
6834 Others, or All) for whom to produce the mask.
6835 The bit-mask that is returned extracts from mode bits the access rights
6836 for the specified category of users."
6837 (cond ((= char ?u) #o4700)
6838 ((= char ?g) #o2070)
6839 ((= char ?o) #o1007)
6840 ((= char ?a) #o7777)
6841 (t (error "%c: bad `who' character" char))))
6842
6843 (defun file-modes-char-to-right (char &optional from)
6844 "Convert CHAR to a numeric value of mode bits.
6845 CHAR is in [rwxXstugo] and represents symbolic access permissions.
6846 If CHAR is in [Xugo], the value is taken from FROM (or 0 if omitted)."
6847 (or from (setq from 0))
6848 (cond ((= char ?r) #o0444)
6849 ((= char ?w) #o0222)
6850 ((= char ?x) #o0111)
6851 ((= char ?s) #o6000)
6852 ((= char ?t) #o1000)
6853 ;; Rights relative to the previous file modes.
6854 ((= char ?X) (if (= (logand from #o111) 0) 0 #o0111))
6855 ((= char ?u) (let ((uright (logand #o4700 from)))
6856 (+ uright (/ uright #o10) (/ uright #o100))))
6857 ((= char ?g) (let ((gright (logand #o2070 from)))
6858 (+ gright (/ gright #o10) (* gright #o10))))
6859 ((= char ?o) (let ((oright (logand #o1007 from)))
6860 (+ oright (* oright #o10) (* oright #o100))))
6861 (t (error "%c: bad right character" char))))
6862
6863 (defun file-modes-rights-to-number (rights who-mask &optional from)
6864 "Convert a symbolic mode string specification to an equivalent number.
6865 RIGHTS is the symbolic mode spec, it should match \"([+=-][rwxXstugo]*)+\".
6866 WHO-MASK is the bit-mask specifying the category of users to which to
6867 apply the access permissions. See `file-modes-char-to-who'.
6868 FROM (or 0 if nil) gives the mode bits on which to base permissions if
6869 RIGHTS request to add, remove, or set permissions based on existing ones,
6870 as in \"og+rX-w\"."
6871 (let* ((num-rights (or from 0))
6872 (list-rights (string-to-list rights))
6873 (op (pop list-rights)))
6874 (while (memq op '(?+ ?- ?=))
6875 (let ((num-right 0)
6876 char-right)
6877 (while (memq (setq char-right (pop list-rights))
6878 '(?r ?w ?x ?X ?s ?t ?u ?g ?o))
6879 (setq num-right
6880 (logior num-right
6881 (file-modes-char-to-right char-right num-rights))))
6882 (setq num-right (logand who-mask num-right)
6883 num-rights
6884 (cond ((= op ?+) (logior num-rights num-right))
6885 ((= op ?-) (logand num-rights (lognot num-right)))
6886 (t (logior (logand num-rights (lognot who-mask)) num-right)))
6887 op char-right)))
6888 num-rights))
6889
6890 (defun file-modes-symbolic-to-number (modes &optional from)
6891 "Convert symbolic file modes to numeric file modes.
6892 MODES is the string to convert, it should match
6893 \"[ugoa]*([+-=][rwxXstugo]*)+,...\".
6894 See Info node `(coreutils)File permissions' for more information on this
6895 notation.
6896 FROM (or 0 if nil) gives the mode bits on which to base permissions if
6897 MODES request to add, remove, or set permissions based on existing ones,
6898 as in \"og+rX-w\"."
6899 (save-match-data
6900 (let ((case-fold-search nil)
6901 (num-modes (or from 0)))
6902 (while (/= (string-to-char modes) 0)
6903 (if (string-match "^\\([ugoa]*\\)\\([+=-][rwxXstugo]*\\)+\\(,\\|\\)" modes)
6904 (let ((num-who (apply 'logior 0
6905 (mapcar 'file-modes-char-to-who
6906 (match-string 1 modes)))))
6907 (when (= num-who 0)
6908 (setq num-who (logior #o7000 (default-file-modes))))
6909 (setq num-modes
6910 (file-modes-rights-to-number (substring modes (match-end 1))
6911 num-who num-modes)
6912 modes (substring modes (match-end 3))))
6913 (error "Parse error in modes near `%s'" (substring modes 0))))
6914 num-modes)))
6915
6916 (defun read-file-modes (&optional prompt orig-file)
6917 "Read file modes in octal or symbolic notation and return its numeric value.
6918 PROMPT is used as the prompt, default to \"File modes (octal or symbolic): \".
6919 ORIG-FILE is the name of a file on whose mode bits to base returned
6920 permissions if what user types requests to add, remove, or set permissions
6921 based on existing mode bits, as in \"og+rX-w\"."
6922 (let* ((modes (or (if orig-file (file-modes orig-file) 0)
6923 (error "File not found")))
6924 (modestr (and (stringp orig-file)
6925 (nth 8 (file-attributes orig-file))))
6926 (default
6927 (and (stringp modestr)
6928 (string-match "^.\\(...\\)\\(...\\)\\(...\\)$" modestr)
6929 (replace-regexp-in-string
6930 "-" ""
6931 (format "u=%s,g=%s,o=%s"
6932 (match-string 1 modestr)
6933 (match-string 2 modestr)
6934 (match-string 3 modestr)))))
6935 (value (read-string (or prompt "File modes (octal or symbolic): ")
6936 nil nil default)))
6937 (save-match-data
6938 (if (string-match "^[0-7]+" value)
6939 (string-to-number value 8)
6940 (file-modes-symbolic-to-number value modes)))))
6941
6942 (define-obsolete-variable-alias 'cache-long-line-scans
6943 'cache-long-scans "24.4")
6944
6945 ;; Trashcan handling.
6946 (defcustom trash-directory nil
6947 "Directory for `move-file-to-trash' to move files and directories to.
6948 This directory is only used when the function `system-move-file-to-trash'
6949 is not defined.
6950 Relative paths are interpreted relative to `default-directory'.
6951 If the value is nil, Emacs uses a freedesktop.org-style trashcan."
6952 :type '(choice (const nil) directory)
6953 :group 'auto-save
6954 :version "23.2")
6955
6956 (defvar trash--hexify-table)
6957
6958 (declare-function system-move-file-to-trash "w32fns.c" (filename))
6959
6960 (defun move-file-to-trash (filename)
6961 "Move the file (or directory) named FILENAME to the trash.
6962 When `delete-by-moving-to-trash' is non-nil, this function is
6963 called by `delete-file' and `delete-directory' instead of
6964 deleting files outright.
6965
6966 If the function `system-move-file-to-trash' is defined, call it
6967 with FILENAME as an argument.
6968 Otherwise, if `trash-directory' is non-nil, move FILENAME to that
6969 directory.
6970 Otherwise, trash FILENAME using the freedesktop.org conventions,
6971 like the GNOME, KDE and XFCE desktop environments. Emacs only
6972 moves files to \"home trash\", ignoring per-volume trashcans."
6973 (interactive "fMove file to trash: ")
6974 (cond (trash-directory
6975 ;; If `trash-directory' is non-nil, move the file there.
6976 (let* ((trash-dir (expand-file-name trash-directory))
6977 (fn (directory-file-name (expand-file-name filename)))
6978 (new-fn (expand-file-name (file-name-nondirectory fn)
6979 trash-dir)))
6980 ;; We can't trash a parent directory of trash-directory.
6981 (if (string-prefix-p fn trash-dir)
6982 (error "Trash directory `%s' is a subdirectory of `%s'"
6983 trash-dir filename))
6984 (unless (file-directory-p trash-dir)
6985 (make-directory trash-dir t))
6986 ;; Ensure that the trashed file-name is unique.
6987 (if (file-exists-p new-fn)
6988 (let ((version-control t)
6989 (backup-directory-alist nil))
6990 (setq new-fn (car (find-backup-file-name new-fn)))))
6991 (let (delete-by-moving-to-trash)
6992 (rename-file fn new-fn))))
6993 ;; If `system-move-file-to-trash' is defined, use it.
6994 ((fboundp 'system-move-file-to-trash)
6995 (system-move-file-to-trash filename))
6996 ;; Otherwise, use the freedesktop.org method, as specified at
6997 ;; http://freedesktop.org/wiki/Specifications/trash-spec
6998 (t
6999 (let* ((xdg-data-dir
7000 (directory-file-name
7001 (expand-file-name "Trash"
7002 (or (getenv "XDG_DATA_HOME")
7003 "~/.local/share"))))
7004 (trash-files-dir (expand-file-name "files" xdg-data-dir))
7005 (trash-info-dir (expand-file-name "info" xdg-data-dir))
7006 (fn (directory-file-name (expand-file-name filename))))
7007
7008 ;; Check if we have permissions to delete.
7009 (unless (file-writable-p (directory-file-name
7010 (file-name-directory fn)))
7011 (error "Cannot move %s to trash: Permission denied" filename))
7012 ;; The trashed file cannot be the trash dir or its parent.
7013 (if (string-prefix-p fn trash-files-dir)
7014 (error "The trash directory %s is a subdirectory of %s"
7015 trash-files-dir filename))
7016 (if (string-prefix-p fn trash-info-dir)
7017 (error "The trash directory %s is a subdirectory of %s"
7018 trash-info-dir filename))
7019
7020 ;; Ensure that the trash directory exists; otherwise, create it.
7021 (with-file-modes #o700
7022 (unless (file-exists-p trash-files-dir)
7023 (make-directory trash-files-dir t))
7024 (unless (file-exists-p trash-info-dir)
7025 (make-directory trash-info-dir t)))
7026
7027 ;; Try to move to trash with .trashinfo undo information
7028 (save-excursion
7029 (with-temp-buffer
7030 (set-buffer-file-coding-system 'utf-8-unix)
7031 (insert "[Trash Info]\nPath=")
7032 ;; Perform url-encoding on FN. For compatibility with
7033 ;; other programs (e.g. XFCE Thunar), allow literal "/"
7034 ;; for path separators.
7035 (unless (boundp 'trash--hexify-table)
7036 (setq trash--hexify-table (make-vector 256 nil))
7037 (let ((unreserved-chars
7038 (list ?/ ?a ?b ?c ?d ?e ?f ?g ?h ?i ?j ?k ?l ?m
7039 ?n ?o ?p ?q ?r ?s ?t ?u ?v ?w ?x ?y ?z ?A
7040 ?B ?C ?D ?E ?F ?G ?H ?I ?J ?K ?L ?M ?N ?O
7041 ?P ?Q ?R ?S ?T ?U ?V ?W ?X ?Y ?Z ?0 ?1 ?2
7042 ?3 ?4 ?5 ?6 ?7 ?8 ?9 ?- ?_ ?. ?! ?~ ?* ?'
7043 ?\( ?\))))
7044 (dotimes (byte 256)
7045 (aset trash--hexify-table byte
7046 (if (memq byte unreserved-chars)
7047 (char-to-string byte)
7048 (format "%%%02x" byte))))))
7049 (mapc (lambda (byte)
7050 (insert (aref trash--hexify-table byte)))
7051 (if (multibyte-string-p fn)
7052 (encode-coding-string fn 'utf-8)
7053 fn))
7054 (insert "\nDeletionDate="
7055 (format-time-string "%Y-%m-%dT%T")
7056 "\n")
7057
7058 ;; Attempt to make .trashinfo file, trying up to 5
7059 ;; times. The .trashinfo file is opened with O_EXCL,
7060 ;; as per trash-spec 0.7, even if that can be a problem
7061 ;; on old NFS versions...
7062 (let* ((tries 5)
7063 (base-fn (expand-file-name
7064 (file-name-nondirectory fn)
7065 trash-files-dir))
7066 (new-fn base-fn)
7067 success info-fn)
7068 (while (> tries 0)
7069 (setq info-fn (expand-file-name
7070 (concat (file-name-nondirectory new-fn)
7071 ".trashinfo")
7072 trash-info-dir))
7073 (unless (condition-case nil
7074 (progn
7075 (write-region nil nil info-fn nil
7076 'quiet info-fn 'excl)
7077 (setq tries 0 success t))
7078 (file-already-exists nil))
7079 (setq tries (1- tries))
7080 ;; Uniquify new-fn. (Some file managers do not
7081 ;; like Emacs-style backup file names---e.g. bug
7082 ;; 170956 in Konqueror bug tracker.)
7083 (setq new-fn (make-temp-name (concat base-fn "_")))))
7084 (unless success
7085 (error "Cannot move %s to trash: Lock failed" filename))
7086
7087 ;; Finally, try to move the file to the trashcan.
7088 (let ((delete-by-moving-to-trash nil))
7089 (rename-file fn new-fn)))))))))
7090
7091 (defsubst file-attribute-type (attributes)
7092 "The type field in ATTRIBUTES returned by `file-attribute'.
7093 The value is either t for directory, string (name linked to) for
7094 symbolic link, or nil."
7095 (nth 0 attributes))
7096
7097 (defsubst file-attribute-link-number (attributes)
7098 "Return the number of links in ATTRIBUTES returned by `file-attribute'."
7099 (nth 1 attributes))
7100
7101 (defsubst file-attribute-user-id (attributes)
7102 "The UID field in ATTRIBUTES returned by `file-attribute'.
7103 This is either a string or a number. If a string value cannot be
7104 looked up, a numeric value, either an integer or a float, is
7105 returned."
7106 (nth 2 attributes))
7107
7108 (defsubst file-attribute-group-id (attributes)
7109 "The GID field in ATTRIBUTES returned by `file-attribute'.
7110 This is either a string or a number. If a string value cannot be
7111 looked up, a numeric value, either an integer or a float, is
7112 returned."
7113 (nth 3 attributes))
7114
7115 (defsubst file-attribute-access-time (attributes)
7116 "The last access time in ATTRIBUTES returned by `file-attribute'.
7117 This a list of integers (HIGH LOW USEC PSEC) in the same style
7118 as (current-time)."
7119 (nth 4 attributes))
7120
7121 (defsubst file-attribute-modification-time (attributes)
7122 "The modification time in ATTRIBUTES returned by `file-attribute'.
7123 This is the time of the last change to the file's contents, and
7124 is a list of integers (HIGH LOW USEC PSEC) in the same style
7125 as (current-time)."
7126 (nth 5 attributes))
7127
7128 (defsubst file-attribute-status-change-time (attributes)
7129 "The status modification time in ATTRIBUTES returned by `file-attribute'.
7130 This is the time of last change to the file's attributes: owner
7131 and group, access mode bits, etc, and is a list of integers (HIGH
7132 LOW USEC PSEC) in the same style as (current-time)."
7133 (nth 6 attributes))
7134
7135 (defsubst file-attribute-size (attributes)
7136 "The size (in bytes) in ATTRIBUTES returned by `file-attribute'.
7137 This is a floating point number if the size is too large for an integer."
7138 (nth 7 attributes))
7139
7140 (defsubst file-attribute-modes (attributes)
7141 "The file modes in ATTRIBUTES returned by `file-attribute'.
7142 This is a string of ten letters or dashes as in ls -l."
7143 (nth 8 attributes))
7144
7145 (defsubst file-attribute-inode-number (attributes)
7146 "The inode number in ATTRIBUTES returned by `file-attribute'.
7147 If it is larger than what an Emacs integer can hold, this is of
7148 the form (HIGH . LOW): first the high bits, then the low 16 bits.
7149 If even HIGH is too large for an Emacs integer, this is instead
7150 of the form (HIGH MIDDLE . LOW): first the high bits, then the
7151 middle 24 bits, and finally the low 16 bits."
7152 (nth 10 attributes))
7153
7154 (defsubst file-attribute-device-number (attributes)
7155 "The file system device number in ATTRIBUTES returned by `file-attribute'.
7156 If it is larger than what an Emacs integer can hold, this is of
7157 the form (HIGH . LOW): first the high bits, then the low 16 bits.
7158 If even HIGH is too large for an Emacs integer, this is instead
7159 of the form (HIGH MIDDLE . LOW): first the high bits, then the
7160 middle 24 bits, and finally the low 16 bits."
7161 (nth 11 attributes))
7162
7163 \f
7164 (define-key ctl-x-map "\C-f" 'find-file)
7165 (define-key ctl-x-map "\C-r" 'find-file-read-only)
7166 (define-key ctl-x-map "\C-v" 'find-alternate-file)
7167 (define-key ctl-x-map "\C-s" 'save-buffer)
7168 (define-key ctl-x-map "s" 'save-some-buffers)
7169 (define-key ctl-x-map "\C-w" 'write-file)
7170 (define-key ctl-x-map "i" 'insert-file)
7171 (define-key esc-map "~" 'not-modified)
7172 (define-key ctl-x-map "\C-d" 'list-directory)
7173 (define-key ctl-x-map "\C-c" 'save-buffers-kill-terminal)
7174 (define-key ctl-x-map "\C-q" 'read-only-mode)
7175
7176 (define-key ctl-x-4-map "f" 'find-file-other-window)
7177 (define-key ctl-x-4-map "r" 'find-file-read-only-other-window)
7178 (define-key ctl-x-4-map "\C-f" 'find-file-other-window)
7179 (define-key ctl-x-4-map "b" 'switch-to-buffer-other-window)
7180 (define-key ctl-x-4-map "\C-o" 'display-buffer)
7181
7182 (define-key ctl-x-5-map "b" 'switch-to-buffer-other-frame)
7183 (define-key ctl-x-5-map "f" 'find-file-other-frame)
7184 (define-key ctl-x-5-map "\C-f" 'find-file-other-frame)
7185 (define-key ctl-x-5-map "r" 'find-file-read-only-other-frame)
7186 (define-key ctl-x-5-map "\C-o" 'display-buffer-other-frame)
7187
7188 ;;; files.el ends here