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