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