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