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