1 ;;; files.el --- file input and output commands for Emacs -*- lexical-binding:t -*-
3 ;; Copyright (C) 1985-1987, 1992-2017 Free Software Foundation, Inc.
5 ;; Maintainer: emacs-devel@gnu.org
8 ;; This file is part of GNU Emacs.
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.
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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
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.
33 (require 'easy-mmode
)) ; For `define-minor-mode'.
35 (defvar font-lock-keywords
)
38 "Backups of edited data files."
41 (defgroup find-file nil
46 (defcustom delete-auto-save-files t
47 "Non-nil means delete auto-save file when a buffer is saved or killed.
49 Note that the auto-save file will not be deleted if the buffer is killed
50 when it has unsaved changes."
54 (defcustom directory-abbrev-alist
56 "Alist of abbreviations for file directories.
57 A list of elements of the form (FROM . TO), each meaning to replace
58 a match for FROM with TO when a directory name matches FROM. This
59 replacement is done when setting up the default directory of a
60 newly visited file buffer.
62 FROM is a regexp that is matched against directory names anchored at
63 the first character, so it should start with a \"\\\\\\=`\", or, if
64 directory names cannot have embedded newlines, with a \"^\".
66 FROM and TO should be equivalent names, which refer to the
67 same directory. TO should be an absolute directory name.
68 Do not use `~' in the TO strings.
70 Use this feature when you have directories which you normally refer to
71 via absolute symbolic links. Make TO the name of the link, and FROM
72 a regexp matching the name it is linked to."
73 :type
'(repeat (cons :format
"%v"
80 (defcustom make-backup-files t
81 "Non-nil means make a backup of a file the first time it is saved.
82 This can be done by renaming the file or by copying.
84 Renaming means that Emacs renames the existing file so that it is a
85 backup file, then writes the buffer into a new file. Any other names
86 that the old file had will now refer to the backup file. The new file
87 is owned by you and its group is defaulted.
89 Copying means that Emacs copies the existing file into the backup
90 file, then writes the buffer on top of the existing file. Any other
91 names that the old file had will now refer to the new (edited) file.
92 The file's owner and group are unchanged.
94 The choice of renaming or copying is controlled by the variables
95 `backup-by-copying', `backup-by-copying-when-linked',
96 `backup-by-copying-when-mismatch' and
97 `backup-by-copying-when-privileged-mismatch'. See also `backup-inhibited'."
101 ;; Do this so that local variables based on the file name
102 ;; are not overridden by the major mode.
103 (defvar backup-inhibited nil
104 "If non-nil, backups will be inhibited.
105 This variable is intended for use by making it local to a buffer,
106 but it is not an automatically buffer-local variable.")
107 (put 'backup-inhibited
'permanent-local t
)
109 (defcustom backup-by-copying nil
110 "Non-nil means always use copying to create backup files.
111 See documentation of variable `make-backup-files'."
115 (defcustom backup-by-copying-when-linked nil
116 "Non-nil means use copying to create backups for files with multiple names.
117 This causes the alternate names to refer to the latest version as edited.
118 This variable is relevant only if `backup-by-copying' is nil."
122 (defcustom backup-by-copying-when-mismatch t
123 "Non-nil means create backups by copying if this preserves owner or group.
124 Renaming may still be used (subject to control of other variables)
125 when it would not result in changing the owner or group of the file;
126 that is, for files which are owned by you and whose group matches
127 the default for a new file created there by you.
128 This variable is relevant only if `backup-by-copying' is nil."
132 (put 'backup-by-copying-when-mismatch
'permanent-local t
)
134 (defcustom backup-by-copying-when-privileged-mismatch
200
135 "Non-nil means create backups by copying to preserve a privileged owner.
136 Renaming may still be used (subject to control of other variables)
137 when it would not result in changing the owner of the file or if the owner
138 has a user id greater than the value of this variable. This is useful
139 when low-numbered uid's are used for special system users (such as root)
140 that must maintain ownership of certain files.
141 This variable is relevant only if `backup-by-copying' and
142 `backup-by-copying-when-mismatch' are nil."
143 :type
'(choice (const nil
) integer
)
146 (defvar backup-enable-predicate
'normal-backup-enable-predicate
147 "Predicate that looks at a file name and decides whether to make backups.
148 Called with an absolute file name as argument, it returns t to enable backup.")
150 (defcustom buffer-offer-save nil
151 "Non-nil in a buffer means always offer to save buffer on exit.
152 Do so even if the buffer is not visiting a file.
153 Automatically local in all buffers.
155 Set to the symbol `always' to offer to save buffer whenever
156 `save-some-buffers' is called."
157 :type
'(choice (const :tag
"Never" nil
)
158 (const :tag
"On Emacs exit" t
)
159 (const :tag
"Whenever save-some-buffers is called" always
))
161 (make-variable-buffer-local 'buffer-offer-save
)
162 (put 'buffer-offer-save
'permanent-local t
)
164 (defcustom find-file-existing-other-name t
165 "Non-nil means find a file under alternative names, in existing buffers.
166 This means if any existing buffer is visiting the file you want
167 under another name, you get the existing buffer instead of a new buffer."
171 (defcustom find-file-visit-truename nil
172 "Non-nil means visiting a file uses its truename as the visited-file name.
173 That is, the buffer visiting the file has the truename as the
174 value of `buffer-file-name'. The truename of a file is found by
175 chasing all links both at the file level and at the levels of the
176 containing directories."
179 (put 'find-file-visit-truename
'safe-local-variable
'booleanp
)
181 (defcustom revert-without-query nil
182 "Specify which files should be reverted without query.
183 The value is a list of regular expressions.
184 If the file name matches one of these regular expressions,
185 then `revert-buffer' reverts the file without querying
186 if the file has changed on disk and you have not edited the buffer."
187 :type
'(repeat regexp
)
190 (defvar buffer-file-number nil
191 "The device number and file number of the file visited in the current buffer.
192 The value is a list of the form (FILENUM DEVNUM).
193 This pair of numbers uniquely identifies the file.
194 If the buffer is visiting a new file, the value is nil.")
195 (make-variable-buffer-local 'buffer-file-number
)
196 (put 'buffer-file-number
'permanent-local t
)
198 (defvar buffer-file-numbers-unique
(not (memq system-type
'(windows-nt)))
199 "Non-nil means that `buffer-file-number' uniquely identifies files.")
201 (defvar buffer-file-read-only nil
202 "Non-nil if visited file was read-only when visited.")
203 (make-variable-buffer-local 'buffer-file-read-only
)
205 (defcustom small-temporary-file-directory
206 (if (eq system-type
'ms-dos
) (getenv "TMPDIR"))
207 "The directory for writing small temporary files.
208 If non-nil, this directory is used instead of `temporary-file-directory'
209 by programs that create small temporary files. This is for systems that
210 have fast storage with limited space, such as a RAM disk."
212 :initialize
'custom-initialize-delay
213 :type
'(choice (const nil
) directory
))
215 ;; The system null device. (Should reference NULL_DEVICE from C.)
216 (defvar null-device
(purecopy "/dev/null") "The system null device.")
218 (declare-function msdos-long-file-names
"msdos.c")
219 (declare-function w32-long-file-name
"w32proc.c")
220 (declare-function dired-get-filename
"dired" (&optional localp no-error-if-not-filep
))
221 (declare-function dired-unmark
"dired" (arg &optional interactive
))
222 (declare-function dired-do-flagged-delete
"dired" (&optional nomessage
))
223 (declare-function dos-8
+3-filename
"dos-fns" (filename))
224 (declare-function dosified-file-name
"dos-fns" (file-name))
226 (defvar file-name-invalid-regexp
227 (cond ((and (eq system-type
'ms-dos
) (not (msdos-long-file-names)))
229 (concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" ; colon except after drive
230 "[+, ;=|<>\"?*]\\|\\[\\|\\]\\|" ; invalid characters
231 "[\000-\037]\\|" ; control characters
232 "\\(/\\.\\.?[^/]\\)\\|" ; leading dots
233 "\\(/[^/.]+\\.[^/.]*\\.\\)"))) ; more than a single dot
234 ((memq system-type
'(ms-dos windows-nt cygwin
))
236 (concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" ; colon except after drive
237 "[|<>\"?*\000-\037]"))) ; invalid characters
238 (t (purecopy "[\000]")))
239 "Regexp recognizing file names which aren't allowed by the filesystem.")
241 (defcustom file-precious-flag nil
242 "Non-nil means protect against I/O errors while saving files.
243 Some modes set this non-nil in particular buffers.
245 This feature works by writing the new contents into a temporary file
246 and then renaming the temporary file to replace the original.
247 In this way, any I/O error in writing leaves the original untouched,
248 and there is never any instant where the file is nonexistent.
250 Note that this feature forces backups to be made by copying.
251 Yet, at the same time, saving a precious file
252 breaks any hard links between it and other files.
254 This feature is advisory: for example, if the directory in which the
255 file is being saved is not writable, Emacs may ignore a non-nil value
256 of `file-precious-flag' and write directly into the file.
258 See also: `break-hardlink-on-save'."
262 (defcustom break-hardlink-on-save nil
263 "Whether to allow breaking hardlinks when saving files.
264 If non-nil, then when saving a file that exists under several
265 names \(i.e., has multiple hardlinks), break the hardlink
266 associated with `buffer-file-name' and write to a new file, so
267 that the other instances of the file are not affected by the
270 If `buffer-file-name' refers to a symlink, do not break the symlink.
272 Unlike `file-precious-flag', `break-hardlink-on-save' is not advisory.
273 For example, if the directory in which a file is being saved is not
274 itself writable, then error instead of saving in some
275 hardlink-nonbreaking way.
277 See also `backup-by-copying' and `backup-by-copying-when-linked'."
282 (defcustom version-control nil
283 "Control use of version numbers for backup files.
284 When t, make numeric backup versions unconditionally.
285 When nil, make them for files that have some already.
286 The value `never' means do not make them."
287 :type
'(choice (const :tag
"Never" never
)
288 (const :tag
"If existing" nil
)
289 (other :tag
"Always" t
))
292 (defun version-control-safe-local-p (x)
293 "Return whether X is safe as local value for `version-control'."
294 (or (booleanp x
) (equal x
'never
)))
296 (put 'version-control
'safe-local-variable
297 #'version-control-safe-local-p
)
299 (defcustom dired-kept-versions
2
300 "When cleaning directory, number of versions to keep."
305 (defcustom delete-old-versions nil
306 "If t, delete excess backup versions silently.
307 If nil, ask confirmation. Any other value prevents any trimming."
308 :type
'(choice (const :tag
"Delete" t
)
309 (const :tag
"Ask" nil
)
310 (other :tag
"Leave" other
))
313 (defcustom kept-old-versions
2
314 "Number of oldest versions to keep when a new numbered backup is made."
317 (put 'kept-old-versions
'safe-local-variable
'integerp
)
319 (defcustom kept-new-versions
2
320 "Number of newest versions to keep when a new numbered backup is made.
321 Includes the new backup. Must be > 0"
324 (put 'kept-new-versions
'safe-local-variable
'integerp
)
326 (defcustom require-final-newline nil
327 "Whether to add a newline automatically at the end of the file.
329 A value of t means do this only when the file is about to be saved.
330 A value of `visit' means do this right after the file is visited.
331 A value of `visit-save' means do it at both of those times.
332 Any other non-nil value means ask user whether to add a newline, when saving.
333 A value of nil means don't add newlines.
335 Certain major modes set this locally to the value obtained
336 from `mode-require-final-newline'."
338 :type
'(choice (const :tag
"When visiting" visit
)
339 (const :tag
"When saving" t
)
340 (const :tag
"When visiting or saving" visit-save
)
341 (const :tag
"Don't add newlines" nil
)
342 (other :tag
"Ask each time" ask
))
343 :group
'editing-basics
)
345 (defcustom mode-require-final-newline t
346 "Whether to add a newline at end of file, in certain major modes.
347 Those modes set `require-final-newline' to this value when you enable them.
348 They do so because they are often used for files that are supposed
349 to end in newlines, and the question is how to arrange that.
351 A value of t means do this only when the file is about to be saved.
352 A value of `visit' means do this right after the file is visited.
353 A value of `visit-save' means do it at both of those times.
354 Any other non-nil value means ask user whether to add a newline, when saving.
356 A value of nil means do not add newlines. That is a risky choice in this
357 variable since this value is used for modes for files that ought to have
358 final newlines. So if you set this to nil, you must explicitly check and
359 add a final newline, whenever you save a file that really needs one."
360 :type
'(choice (const :tag
"When visiting" visit
)
361 (const :tag
"When saving" t
)
362 (const :tag
"When visiting or saving" visit-save
)
363 (const :tag
"Don't add newlines" nil
)
364 (other :tag
"Ask each time" ask
))
365 :group
'editing-basics
368 (defcustom auto-save-default t
369 "Non-nil says by default do auto-saving of every file-visiting buffer."
373 (defcustom auto-save-file-name-transforms
374 `(("\\`/[^/]*:\\([^/]*/\\)*\\([^/]*\\)\\'"
375 ;; Don't put "\\2" inside expand-file-name, since it will be
376 ;; transformed to "/2" on DOS/Windows.
377 ,(concat temporary-file-directory
"\\2") t
))
378 "Transforms to apply to buffer file name before making auto-save file name.
379 Each transform is a list (REGEXP REPLACEMENT UNIQUIFY):
380 REGEXP is a regular expression to match against the file name.
381 If it matches, `replace-match' is used to replace the
382 matching part with REPLACEMENT.
383 If the optional element UNIQUIFY is non-nil, the auto-save file name is
384 constructed by taking the directory part of the replaced file-name,
385 concatenated with the buffer file name with all directory separators
386 changed to `!' to prevent clashes. This will not work
387 correctly if your filesystem truncates the resulting name.
389 All the transforms in the list are tried, in the order they are listed.
390 When one transform applies, its result is final;
391 no further transforms are tried.
393 The default value is set up to put the auto-save file into the
394 temporary directory (see the variable `temporary-file-directory') for
395 editing a remote file.
397 On MS-DOS filesystems without long names this variable is always
400 :type
'(repeat (list (string :tag
"Regexp") (string :tag
"Replacement")
401 (boolean :tag
"Uniquify")))
402 :initialize
'custom-initialize-delay
405 (defvar auto-save--timer nil
"Timer for `auto-save-visited-mode'.")
407 (defcustom auto-save-visited-interval
5
408 "Interval in seconds for `auto-save-visited-mode'.
409 If `auto-save-visited-mode' is enabled, Emacs will save all
410 buffers visiting a file to the visited file after it has been
411 idle for `auto-save-visited-interval' seconds."
415 :set
(lambda (symbol value
)
416 (set-default symbol value
)
417 (when auto-save--timer
418 (timer-set-idle-time auto-save--timer value
:repeat
))))
420 (define-minor-mode auto-save-visited-mode
421 "Toggle automatic saving to file-visiting buffers on or off.
422 With a prefix argument ARG, enable regular saving of all buffers
423 visiting a file if ARG is positive, and disable it otherwise.
424 Unlike `auto-save-mode', this mode will auto-save buffer contents
425 to the visited files directly and will also run all save-related
426 hooks. See Info node `Saving' for details of the save process.
428 If called from Lisp, enable the mode if ARG is omitted or nil,
429 and toggle it if ARG is `toggle'."
432 (when auto-save--timer
(cancel-timer auto-save--timer
))
433 (setq auto-save--timer
434 (when auto-save-visited-mode
436 auto-save-visited-interval
:repeat
437 #'save-some-buffers
:no-prompt
439 (not (and buffer-auto-save-file-name
440 auto-save-visited-file-name
)))))))
442 ;; The 'set' part is so we don't get a warning for using this variable
443 ;; above, while still catching code that _sets_ the variable to get
444 ;; the same effect as the new auto-save-visited-mode.
445 (make-obsolete-variable 'auto-save-visited-file-name
'auto-save-visited-mode
448 (defcustom save-abbrevs t
449 "Non-nil means save word abbrevs too when files are saved.
450 If `silently', don't ask the user before saving."
451 :type
'(choice (const t
) (const nil
) (const silently
))
454 (defcustom find-file-run-dired t
455 "Non-nil means allow `find-file' to visit directories.
456 To visit the directory, `find-file' runs `find-directory-functions'."
460 (defcustom find-directory-functions
'(cvs-dired-noselect dired-noselect
)
461 "List of functions to try in sequence to visit a directory.
462 Each function is called with the directory name as the sole argument
463 and should return either a buffer or nil."
464 :type
'(hook :options
(cvs-dired-noselect dired-noselect
))
467 ;; FIXME: also add a hook for `(thing-at-point 'filename)'
468 (defcustom file-name-at-point-functions
'(ffap-guess-file-name-at-point)
469 "List of functions to try in sequence to get a file name at point.
470 Each function should return either nil or a file name found at the
471 location of point in the current buffer."
472 :type
'(hook :options
(ffap-guess-file-name-at-point))
475 ;;;It is not useful to make this a local variable.
476 ;;;(put 'find-file-not-found-hooks 'permanent-local t)
477 (define-obsolete-variable-alias 'find-file-not-found-hooks
478 'find-file-not-found-functions
"22.1")
479 (defvar find-file-not-found-functions nil
480 "List of functions to be called for `find-file' on nonexistent file.
481 These functions are called as soon as the error is detected.
482 Variable `buffer-file-name' is already set up.
483 The functions are called in the order given until one of them returns non-nil.")
485 ;;;It is not useful to make this a local variable.
486 ;;;(put 'find-file-hooks 'permanent-local t)
487 (define-obsolete-variable-alias 'find-file-hooks
'find-file-hook
"22.1")
488 (defcustom find-file-hook nil
489 "List of functions to be called after a buffer is loaded from a file.
490 The buffer's local variables (if any) will have been processed before the
491 functions are called."
494 :options
'(auto-insert)
497 (define-obsolete-variable-alias 'write-file-hooks
'write-file-functions
"22.1")
498 (defvar write-file-functions nil
499 "List of functions to be called before saving a buffer to a file.
500 Only used by `save-buffer'.
501 If one of them returns non-nil, the file is considered already written
502 and the rest are not called.
503 These hooks are considered to pertain to the visited file.
504 So any buffer-local binding of this variable is discarded if you change
505 the visited file name with \\[set-visited-file-name], but not when you
506 change the major mode.
508 This hook is not run if any of the functions in
509 `write-contents-functions' returns non-nil. Both hooks pertain
510 to how to save a buffer to file, for instance, choosing a suitable
511 coding system and setting mode bits. (See Info
512 node `(elisp)Saving Buffers'.) To perform various checks or
513 updates before the buffer is saved, use `before-save-hook'.")
514 (put 'write-file-functions
'permanent-local t
)
516 (defvar local-write-file-hooks nil
)
517 (make-variable-buffer-local 'local-write-file-hooks
)
518 (put 'local-write-file-hooks
'permanent-local t
)
519 (make-obsolete-variable 'local-write-file-hooks
'write-file-functions
"22.1")
521 (define-obsolete-variable-alias 'write-contents-hooks
522 'write-contents-functions
"22.1")
523 (defvar write-contents-functions nil
524 "List of functions to be called before writing out a buffer to a file.
526 Only used by `save-buffer'. If one of them returns non-nil, the
527 file is considered already written and the rest are not called
528 and neither are the functions in `write-file-functions'. This
529 hook can thus be used to create save behavior for buffers that
530 are not visiting a file at all.
532 This variable is meant to be used for hooks that pertain to the
533 buffer's contents, not to the particular visited file; thus,
534 `set-visited-file-name' does not clear this variable; but changing the
535 major mode does clear it.
537 For hooks that _do_ pertain to the particular visited file, use
538 `write-file-functions'. Both this variable and
539 `write-file-functions' relate to how a buffer is saved to file.
540 To perform various checks or updates before the buffer is saved,
541 use `before-save-hook'.")
542 (make-variable-buffer-local 'write-contents-functions
)
544 (defcustom enable-local-variables t
545 "Control use of local variables in files you visit.
546 The value can be t, nil, :safe, :all, or something else.
548 A value of t means file local variables specifications are obeyed
549 if all the specified variable values are safe; if any values are
550 not safe, Emacs queries you, once, whether to set them all.
551 \(When you say yes to certain values, they are remembered as safe.)
553 :safe means set the safe variables, and ignore the rest.
554 :all means set all variables, whether safe or not.
555 (Don't set it permanently to :all.)
556 A value of nil means always ignore the file local variables.
558 Any other value means always query you once whether to set them all.
559 \(When you say yes to certain values, they are remembered as safe, but
560 this has no effect when `enable-local-variables' is \"something else\".)
562 This variable also controls use of major modes specified in
565 The command \\[normal-mode], when used interactively,
566 always obeys file local variable specifications and the -*- line,
567 and ignores this variable."
569 :type
'(choice (const :tag
"Query Unsafe" t
)
570 (const :tag
"Safe Only" :safe
)
571 (const :tag
"Do all" :all
)
572 (const :tag
"Ignore" nil
)
573 (other :tag
"Query" other
))
576 (defvar enable-dir-local-variables t
577 "Non-nil means enable use of directory-local variables.
578 Some modes may wish to set this to nil to prevent directory-local
579 settings being applied, but still respect file-local ones.")
581 ;; This is an odd variable IMO.
582 ;; You might wonder why it is needed, when we could just do:
583 ;; (set (make-local-variable 'enable-local-variables) nil)
584 ;; These two are not precisely the same.
585 ;; Setting this variable does not cause -*- mode settings to be
586 ;; ignored, whereas setting enable-local-variables does.
587 ;; Only three places in Emacs use this variable: tar and arc modes,
588 ;; and rmail. The first two don't need it. They already use
589 ;; inhibit-local-variables-regexps, which is probably enough, and
590 ;; could also just set enable-local-variables locally to nil.
591 ;; Them setting it has the side-effect that dir-locals cannot apply to
592 ;; eg tar files (?). FIXME Is this appropriate?
593 ;; AFAICS, rmail is the only thing that needs this, and the only
594 ;; reason it uses it is for BABYL files (which are obsolete).
595 ;; These contain "-*- rmail -*-" in the first line, which rmail wants
596 ;; to respect, so that find-file on a BABYL file will switch to
597 ;; rmail-mode automatically (this is nice, but hardly essential,
598 ;; since most people are used to explicitly running a command to
599 ;; access their mail; M-x gnus etc). Rmail files may happen to
600 ;; contain Local Variables sections in messages, which Rmail wants to
601 ;; ignore. So AFAICS the only reason this variable exists is for a
602 ;; minor convenience feature for handling of an obsolete Rmail file format.
603 (defvar local-enable-local-variables t
604 "Like `enable-local-variables', except for major mode in a -*- line.
605 The meaningful values are nil and non-nil. The default is non-nil.
606 It should be set in a buffer-local fashion.
608 Setting this to nil has the same effect as setting `enable-local-variables'
609 to nil, except that it does not ignore any mode: setting in a -*- line.
610 Unless this difference matters to you, you should set `enable-local-variables'
611 instead of this variable.")
613 (defcustom enable-local-eval
'maybe
614 "Control processing of the \"variable\" `eval' in a file's local variables.
615 The value can be t, nil or something else.
616 A value of t means obey `eval' variables.
617 A value of nil means ignore them; anything else means query."
619 :type
'(choice (const :tag
"Obey" t
)
620 (const :tag
"Ignore" nil
)
621 (other :tag
"Query" other
))
624 (defcustom view-read-only nil
625 "Non-nil means buffers visiting files read-only do so in view mode.
626 In fact, this means that all read-only buffers normally have
627 View mode enabled, including buffers that are read-only because
628 you visit a file you cannot alter, and buffers you make read-only
629 using \\[read-only-mode]."
633 (defvar file-name-history nil
634 "History list of file names entered in the minibuffer.
636 Maximum length of the history list is determined by the value
637 of `history-length', which see.")
639 (defvar save-silently nil
640 "If non-nil, avoid messages when saving files.
641 Error-related messages will still be printed, but all other
645 (put 'ange-ftp-completion-hook-function
'safe-magic t
)
646 (defun ange-ftp-completion-hook-function (op &rest args
)
647 "Provides support for ange-ftp host name completion.
648 Runs the usual ange-ftp hook, but only for completion operations."
649 ;; Having this here avoids the need to load ange-ftp when it's not
651 (if (memq op
'(file-name-completion file-name-all-completions
))
652 (apply 'ange-ftp-hook-function op args
)
653 (let ((inhibit-file-name-handlers
654 (cons 'ange-ftp-completion-hook-function
655 (and (eq inhibit-file-name-operation op
)
656 inhibit-file-name-handlers
)))
657 (inhibit-file-name-operation op
))
660 (declare-function dos-convert-standard-filename
"dos-fns.el" (filename))
661 (declare-function w32-convert-standard-filename
"w32-fns.el" (filename))
663 (defun convert-standard-filename (filename)
664 "Convert a standard file's name to something suitable for the OS.
665 This means to guarantee valid names and perhaps to canonicalize
668 FILENAME should be an absolute file name since the conversion rules
669 sometimes vary depending on the position in the file name. E.g. c:/foo
670 is a valid DOS file name, but c:/bar/c:/foo is not.
672 This function's standard definition is trivial; it just returns
673 the argument. However, on Windows and DOS, replace invalid
674 characters. On DOS, make sure to obey the 8.3 limitations.
675 In the native Windows build, turn Cygwin names into native names.
677 See Info node `(elisp)Standard File Names' for more details."
679 ((eq system-type
'cygwin
)
680 (let ((name (copy-sequence filename
))
682 ;; Replace invalid filename characters with !
683 (while (string-match "[?*:<>|\"\000-\037]" name start
)
684 (aset name
(match-beginning 0) ?
!)
685 (setq start
(match-end 0)))
687 ((eq system-type
'windows-nt
)
688 (w32-convert-standard-filename filename
))
689 ((eq system-type
'ms-dos
)
690 (dos-convert-standard-filename filename
))
693 (defun read-directory-name (prompt &optional dir default-dirname mustmatch initial
)
694 "Read directory name, prompting with PROMPT and completing in directory DIR.
695 Value is not expanded---you must call `expand-file-name' yourself.
696 Default name to DEFAULT-DIRNAME if user exits with the same
697 non-empty string that was inserted by this function.
698 (If DEFAULT-DIRNAME is omitted, DIR combined with INITIAL is used,
699 or just DIR if INITIAL is nil.)
700 If the user exits with an empty minibuffer, this function returns
701 an empty string. (This can only happen if the user erased the
702 pre-inserted contents or if `insert-default-directory' is nil.)
703 Fourth arg MUSTMATCH non-nil means require existing directory's name.
704 Non-nil and non-t means also require confirmation after completion.
705 Fifth arg INITIAL specifies text to start with.
706 DIR should be an absolute directory name. It defaults to
707 the value of `default-directory'."
709 (setq dir default-directory
))
710 (read-file-name prompt dir
(or default-dirname
711 (if initial
(expand-file-name initial dir
)
717 (defun pwd (&optional insert
)
718 "Show the current default directory.
719 With prefix argument INSERT, insert the current default directory
723 (insert default-directory
)
724 (message "Directory %s" default-directory
)))
727 "Value of the CDPATH environment variable, as a list.
728 Not actually set up until the first time you use it.")
730 (defun parse-colon-path (search-path)
731 "Explode a search path into a list of directory names.
732 Directories are separated by `path-separator' (which is colon in
733 GNU and Unix systems). Substitute environment variables into the
734 resulting list of directory names. For an empty path element (i.e.,
735 a leading or trailing separator, or two adjacent separators), return
736 nil (meaning `default-directory') as the associated list element."
737 (when (stringp search-path
)
740 (substitute-in-file-name (file-name-as-directory f
))))
741 (split-string search-path path-separator
))))
743 (defun cd-absolute (dir)
744 "Change current directory to given absolute file name DIR."
745 ;; Put the name into directory syntax now,
746 ;; because otherwise expand-file-name may give some bad results.
747 (setq dir
(file-name-as-directory dir
))
748 ;; We used to additionally call abbreviate-file-name here, for an
749 ;; unknown reason. Problem is that most buffers are setup
750 ;; without going through cd-absolute and don't call
751 ;; abbreviate-file-name on their default-directory, so the few that
752 ;; do end up using a superficially different directory.
753 (setq dir
(expand-file-name dir
))
754 (if (not (file-directory-p dir
))
755 (if (file-exists-p dir
)
756 (error "%s is not a directory" dir
)
757 (error "%s: no such directory" dir
))
758 (unless (file-accessible-directory-p dir
)
759 (error "Cannot cd to %s: Permission denied" dir
))
760 (setq default-directory dir
)
761 (setq list-buffers-directory dir
)))
764 "Make DIR become the current buffer's default directory.
765 If your environment includes a `CDPATH' variable, try each one of
766 that list of directories (separated by occurrences of
767 `path-separator') when resolving a relative directory name.
768 The path separator is colon in GNU and GNU-like systems."
771 ;; FIXME: There's a subtle bug in the completion below. Seems linked
772 ;; to a fundamental difficulty of implementing `predicate' correctly.
773 ;; The manifestation is that TAB may list non-directories in the case where
774 ;; those files also correspond to valid directories (if your cd-path is (A/
775 ;; B/) and you have A/a a file and B/a a directory, then both `a' and `a/'
776 ;; will be listed as valid completions).
777 ;; This is because `a' (listed because of A/a) is indeed a valid choice
778 ;; (which will lead to the use of B/a).
779 (minibuffer-with-setup-hook
781 (setq-local minibuffer-completion-table
782 (apply-partially #'locate-file-completion-table
784 (setq-local minibuffer-completion-predicate
786 (locate-file dir cd-path nil
787 (lambda (f) (and (file-directory-p f
) 'dir-ok
))))))
789 (setq cd-path
(or (parse-colon-path (getenv "CDPATH"))
791 (read-directory-name "Change default directory: "
792 default-directory default-directory
795 (setq cd-path
(or (parse-colon-path (getenv "CDPATH"))
798 (or (locate-file dir cd-path nil
799 (lambda (f) (and (file-directory-p f
) 'dir-ok
)))
800 (error "No such directory found via CDPATH environment variable"))))
802 (defun directory-files-recursively (dir regexp
&optional include-directories
)
803 "Return list of all files under DIR that have file names matching REGEXP.
804 This function works recursively. Files are returned in \"depth first\"
805 order, and files from each directory are sorted in alphabetical order.
806 Each file name appears in the returned list in its absolute form.
807 Optional argument INCLUDE-DIRECTORIES non-nil means also include in the
808 output directories whose names match REGEXP."
811 ;; When DIR is "/", remote file names like "/method:" could
812 ;; also be offered. We shall suppress them.
813 (tramp-mode (and tramp-mode
(file-remote-p (expand-file-name dir
)))))
814 (dolist (file (sort (file-name-all-completions "" dir
)
816 (unless (member file
'("./" "../"))
817 (if (directory-name-p file
)
818 (let* ((leaf (substring file
0 (1- (length file
))))
819 (full-file (expand-file-name leaf dir
)))
820 ;; Don't follow symlinks to other directories.
821 (unless (file-symlink-p full-file
)
823 (nconc result
(directory-files-recursively
824 full-file regexp include-directories
))))
825 (when (and include-directories
826 (string-match regexp leaf
))
827 (setq result
(nconc result
(list full-file
)))))
828 (when (string-match regexp file
)
829 (push (expand-file-name file dir
) files
)))))
830 (nconc result
(nreverse files
))))
832 (defvar module-file-suffix
)
834 (defun load-file (file)
835 "Load the Lisp file named FILE."
836 ;; This is a case where .elc and .so/.dll make a lot of sense.
837 (interactive (list (let ((completion-ignored-extensions
838 (remove module-file-suffix
840 completion-ignored-extensions
))))
841 (read-file-name "Load file: " nil nil
'lambda
))))
842 (load (expand-file-name file
) nil nil t
))
844 (defun locate-file (filename path
&optional suffixes predicate
)
845 "Search for FILENAME through PATH.
846 If found, return the absolute file name of FILENAME; otherwise
848 PATH should be a list of directories to look in, like the lists in
849 `exec-path' or `load-path'.
850 If SUFFIXES is non-nil, it should be a list of suffixes to append to
851 file name when searching. If SUFFIXES is nil, it is equivalent to (\"\").
852 Use (\"/\") to disable PATH search, but still try the suffixes in SUFFIXES.
853 If non-nil, PREDICATE is used instead of `file-readable-p'.
855 This function will normally skip directories, so if you want it to find
856 directories, make sure the PREDICATE function returns `dir-ok' for them.
858 PREDICATE can also be an integer to pass to the `access' system call,
859 in which case file-name handlers are ignored. This usage is deprecated.
860 For compatibility, PREDICATE can also be one of the symbols
861 `executable', `readable', `writable', or `exists', or a list of
862 one or more of those symbols."
863 (if (and predicate
(symbolp predicate
) (not (functionp predicate
)))
864 (setq predicate
(list predicate
)))
865 (when (and (consp predicate
) (not (functionp predicate
)))
867 (logior (if (memq 'executable predicate
) 1 0)
868 (if (memq 'writable predicate
) 2 0)
869 (if (memq 'readable predicate
) 4 0))))
870 (locate-file-internal filename path suffixes predicate
))
872 (defun locate-file-completion-table (dirs suffixes string pred action
)
873 "Do completion for file names passed to `locate-file'."
875 ((file-name-absolute-p string
)
876 ;; FIXME: maybe we should use completion-file-name-table instead,
877 ;; tho at least for `load', the arg is passed through
878 ;; substitute-in-file-name for historical reasons.
879 (read-file-name-internal string pred action
))
880 ((eq (car-safe action
) 'boundaries
)
881 (let ((suffix (cdr action
)))
883 ,(length (file-name-directory string
))
884 ,@(let ((x (file-name-directory suffix
)))
885 (if x
(1- (length x
)) (length suffix
))))))
888 ;; If we have files like "foo.el" and "foo.elc", we could load one of
889 ;; them with "foo.el", "foo.elc", or "foo", where just "foo" is the
890 ;; preferred way. So if we list all 3, that gives a lot of redundant
891 ;; entries for the poor soul looking just for "foo". OTOH, sometimes
892 ;; the user does want to pay attention to the extension. We try to
893 ;; diffuse this tension by stripping the suffix, except when the
894 ;; result is a single element (i.e. usually we only list "foo" unless
895 ;; it's the only remaining element in the list, in which case we do
896 ;; list "foo", "foo.elc" and "foo.el").
898 (suffix (concat (regexp-opt suffixes t
) "\\'"))
899 (string-dir (file-name-directory string
))
900 (string-file (file-name-nondirectory string
)))
903 (setq dir default-directory
))
904 (if string-dir
(setq dir
(expand-file-name string-dir dir
)))
905 (when (file-directory-p dir
)
906 (dolist (file (file-name-all-completions
908 (if (not (string-match suffix file
))
910 (push file fullnames
)
911 (push (substring file
0 (match-beginning 0)) names
)))))
912 ;; Switching from names to names+fullnames creates a non-monotonicity
913 ;; which can cause problems with things like partial-completion.
914 ;; To minimize the problem, filter out completion-regexp-list, so that
915 ;; M-x load-library RET t/x.e TAB finds some files. Also remove elements
916 ;; from `names' which only matched `string' when they still had
918 (setq names
(all-completions string names
))
919 ;; Remove duplicates of the first element, so that we can easily check
920 ;; if `names' really only contains a single element.
921 (when (cdr names
) (setcdr names
(delete (car names
) (cdr names
))))
923 ;; There's no more than one matching non-suffixed element, so expand
924 ;; the list by adding the suffixed elements as well.
925 (setq names
(nconc names fullnames
)))
926 (completion-table-with-context
927 string-dir names string-file pred action
)))))
929 (defun locate-file-completion (string path-and-suffixes action
)
930 "Do completion for file names passed to `locate-file'.
931 PATH-AND-SUFFIXES is a pair of lists, (DIRECTORIES . SUFFIXES)."
932 (declare (obsolete locate-file-completion-table
"23.1"))
933 (locate-file-completion-table (car path-and-suffixes
)
934 (cdr path-and-suffixes
)
937 (defvar locate-dominating-stop-dir-regexp
938 (purecopy "\\`\\(?:[\\/][\\/][^\\/]+[\\/]\\|/\\(?:net\\|afs\\|\\.\\.\\.\\)/\\)\\'")
939 "Regexp of directory names which stop the search in `locate-dominating-file'.
940 Any directory whose name matches this regexp will be treated like
941 a kind of root directory by `locate-dominating-file' which will stop its search
942 when it bumps into it.
943 The default regexp prevents fruitless and time-consuming attempts to find
944 special files in directories in which filenames are interpreted as hostnames,
945 or mount points potentially requiring authentication as a different user.")
947 (defun locate-dominating-file (file name
)
948 "Starting at FILE, look up directory hierarchy for directory containing NAME.
949 FILE can be a file or a directory. If it's a file, its directory will
950 serve as the starting point for searching the hierarchy of directories.
951 Stop at the first parent directory containing a file NAME,
952 and return the directory. Return nil if not found.
953 Instead of a string, NAME can also be a predicate taking one argument
954 \(a directory) and returning a non-nil value if that directory is the one for
955 which we're looking. The predicate will be called with every file/directory
956 the function needs to examine, starting with FILE."
957 ;; Represent /home/luser/foo as ~/foo so that we don't try to look for
958 ;; `name' in /home or in /.
959 (setq file
(abbreviate-file-name (expand-file-name file
)))
964 (string-match locate-dominating-stop-dir-regexp file
)))
965 (setq try
(if (stringp name
)
966 (file-exists-p (expand-file-name name file
))
967 (funcall name file
)))
968 (cond (try (setq root file
))
969 ((equal file
(setq file
(file-name-directory
970 (directory-file-name file
))))
972 (if root
(file-name-as-directory root
))))
974 (defcustom user-emacs-directory-warning t
975 "Non-nil means warn if cannot access `user-emacs-directory'.
976 Set this to nil at your own risk..."
978 :group
'initialization
981 (defun locate-user-emacs-file (new-name &optional old-name
)
982 "Return an absolute per-user Emacs-specific file name.
983 If NEW-NAME exists in `user-emacs-directory', return it.
984 Else if OLD-NAME is non-nil and ~/OLD-NAME exists, return ~/OLD-NAME.
985 Else return NEW-NAME in `user-emacs-directory', creating the
986 directory if it does not exist."
987 (convert-standard-filename
988 (let* ((home (concat "~" (or init-file-user
"")))
989 (at-home (and old-name
(expand-file-name old-name home
)))
990 (bestname (abbreviate-file-name
991 (expand-file-name new-name user-emacs-directory
))))
992 (if (and at-home
(not (file-readable-p bestname
))
993 (file-readable-p at-home
))
995 ;; Make sure `user-emacs-directory' exists,
996 ;; unless we're in batch mode or dumping Emacs.
1000 (if (file-directory-p user-emacs-directory
)
1001 (or (file-accessible-directory-p user-emacs-directory
)
1002 (setq errtype
"access"))
1003 (with-file-modes ?
\700
1005 (make-directory user-emacs-directory
)
1006 (error (setq errtype
"create")))))
1008 user-emacs-directory-warning
1009 (not (get 'user-emacs-directory-warning
'this-session
)))
1010 ;; Only warn once per Emacs session.
1011 (put 'user-emacs-directory-warning
'this-session t
)
1012 (display-warning 'initialization
1014 Unable to %s `user-emacs-directory' (%s).
1015 Any data that would normally be written there may be lost!
1016 If you never want to see this message again,
1017 customize the variable `user-emacs-directory-warning'."
1018 errtype user-emacs-directory
)))))
1022 (defun executable-find (command)
1023 "Search for COMMAND in `exec-path' and return the absolute file name.
1024 Return nil if COMMAND is not found anywhere in `exec-path'."
1025 ;; Use 1 rather than file-executable-p to better match the behavior of
1027 (locate-file command exec-path exec-suffixes
1))
1029 (defun load-library (library)
1030 "Load the Emacs Lisp library named LIBRARY.
1031 LIBRARY should be a string.
1032 This is an interface to the function `load'. LIBRARY is searched
1033 for in `load-path', both with and without `load-suffixes' (as
1034 well as `load-file-rep-suffixes').
1036 See Info node `(emacs)Lisp Libraries' for more details.
1037 See `load-file' for a different interface to `load'."
1039 (let (completion-ignored-extensions)
1040 (list (completing-read "Load library: "
1041 (apply-partially 'locate-file-completion-table
1043 (get-load-suffixes))))))
1046 (defun file-remote-p (file &optional identification connected
)
1047 "Test whether FILE specifies a location on a remote system.
1048 A file is considered remote if accessing it is likely to
1049 be slower or less reliable than accessing local files.
1051 `file-remote-p' never opens a new remote connection. It can
1052 only reuse a connection that is already open.
1054 Return nil or a string identifying the remote connection
1055 \(ideally a prefix of FILE). Return nil if FILE is a relative
1058 When IDENTIFICATION is nil, the returned string is a complete
1059 remote identifier: with components method, user, and host. The
1060 components are those present in FILE, with defaults filled in for
1061 any that are missing.
1063 IDENTIFICATION can specify which part of the identification to
1064 return. IDENTIFICATION can be the symbol `method', `user',
1065 `host', or `localname'. Any other value is handled like nil and
1066 means to return the complete identification. The string returned
1067 for IDENTIFICATION `localname' can differ depending on whether
1068 there is an existing connection.
1070 If CONNECTED is non-nil, return an identification only if FILE is
1071 located on a remote system and a connection is established to
1074 Tip: You can use this expansion of remote identifier components
1075 to derive a new remote file name from an existing one. For
1076 example, if FILE is \"/sudo::/path/to/file\" then
1078 (concat (file-remote-p FILE) \"/bin/sh\")
1080 returns a remote file name for file \"/bin/sh\" that has the
1081 same remote identifier as FILE but expanded; a name such as
1082 \"/sudo:root@myhost:/bin/sh\"."
1083 (let ((handler (find-file-name-handler file
'file-remote-p
)))
1085 (funcall handler
'file-remote-p file identification connected
)
1088 ;; Probably this entire variable should be obsolete now, in favor of
1089 ;; something Tramp-related (?). It is not used in many places.
1090 ;; It's not clear what the best file for this to be in is, but given
1091 ;; it uses custom-initialize-delay, it is easier if it is preloaded
1092 ;; rather than autoloaded.
1093 (defcustom remote-shell-program
1094 ;; This used to try various hard-coded places for remsh, rsh, and
1095 ;; rcmd, trying to guess based on location whether "rsh" was
1096 ;; "restricted shell" or "remote shell", but I don't see the point
1097 ;; in this day and age. Almost everyone will use ssh, and have
1098 ;; whatever command they want to use in PATH.
1100 (let ((list '("ssh" "remsh" "rcmd" "rsh")))
1102 (not (executable-find (car list
)))
1103 (setq list
(cdr list
))))
1104 (or (car list
) "ssh")))
1105 "Program to use to execute commands on a remote host (e.g. ssh or rsh)."
1106 :version
"24.3" ; ssh rather than rsh, etc
1107 :initialize
'custom-initialize-delay
1111 (defcustom remote-file-name-inhibit-cache
10
1112 "Whether to use the remote file-name cache for read access.
1113 When nil, never expire cached values (caution)
1114 When t, never use the cache (safe, but may be slow)
1115 A number means use cached values for that amount of seconds since caching.
1117 The attributes of remote files are cached for better performance.
1118 If they are changed outside of Emacs's control, the cached values
1119 become invalid, and must be reread. If you are sure that nothing
1120 other than Emacs changes the files, you can set this variable to nil.
1122 If a remote file is checked regularly, it might be a good idea to
1123 let-bind this variable to a value less than the interval between
1124 consecutive checks. For example:
1126 (defun display-time-file-nonempty-p (file)
1127 (let ((remote-file-name-inhibit-cache (- display-time-interval 5)))
1128 (and (file-exists-p file)
1129 (< 0 (nth 7 (file-attributes (file-chase-links file)))))))"
1133 (const :tag
"Do not inhibit file name cache" nil
)
1134 (const :tag
"Do not use file name cache" t
)
1135 (integer :tag
"Do not use file name cache"
1136 :format
"Do not use file name cache older then %v seconds"
1139 (defun file-local-name (file)
1140 "Return the local name component of FILE.
1141 It returns a file name which can be used directly as argument of
1142 `process-file', `start-file-process', or `shell-command'."
1143 (or (file-remote-p file
'localname
) file
))
1145 (defun file-local-copy (file)
1146 "Copy the file FILE into a temporary file on this machine.
1147 Returns the name of the local copy, or nil, if FILE is directly
1149 ;; This formerly had an optional BUFFER argument that wasn't used by
1151 (let ((handler (find-file-name-handler file
'file-local-copy
)))
1153 (funcall handler
'file-local-copy file
)
1156 (defun files--name-absolute-system-p (file)
1157 "Return non-nil if FILE is an absolute name to the operating system.
1158 This is like `file-name-absolute-p', except that it returns nil for
1159 names beginning with `~'."
1160 (and (file-name-absolute-p file
)
1161 (not (eq (aref file
0) ?~
))))
1163 (defun files--splice-dirname-file (dirname file
)
1164 "Splice DIRNAME to FILE like the operating system would.
1165 If FILE is relative, return DIRNAME concatenated to FILE.
1166 Otherwise return FILE, quoted as needed if DIRNAME and FILE have
1167 different handlers; although this quoting is dubious if DIRNAME
1168 is magic, it is not clear what would be better. This function
1169 differs from `expand-file-name' in that DIRNAME must be a
1170 directory name and leading `~' and `/:' are not special in FILE."
1171 (let ((unquoted (if (files--name-absolute-system-p file
)
1173 (concat dirname file
))))
1174 (if (eq (find-file-name-handler dirname
'file-symlink-p
)
1175 (find-file-name-handler unquoted
'file-symlink-p
))
1177 (let (file-name-handler-alist) (file-name-quote unquoted
)))))
1179 (defun file-truename (filename &optional counter prev-dirs
)
1180 "Return the truename of FILENAME.
1181 If FILENAME is not absolute, first expands it against `default-directory'.
1182 The truename of a file name is found by chasing symbolic links
1183 both at the level of the file and at the level of the directories
1184 containing it, until no links are left at any level.
1186 \(fn FILENAME)" ;; Don't document the optional arguments.
1187 ;; COUNTER and PREV-DIRS are only used in recursive calls.
1188 ;; COUNTER can be a cons cell whose car is the count of how many
1189 ;; more links to chase before getting an error.
1190 ;; PREV-DIRS can be a cons cell whose car is an alist
1191 ;; of truenames we've just recently computed.
1192 (cond ((or (string= filename
"") (string= filename
"~"))
1193 (setq filename
(expand-file-name filename
))
1194 (if (string= filename
"")
1195 (setq filename
"/")))
1196 ((and (string= (substring filename
0 1) "~")
1197 (string-match "~[^/]*/?" filename
))
1199 (substring filename
0 (match-end 0)))
1200 (rest (substring filename
(match-end 0))))
1201 (setq filename
(concat (expand-file-name first-part
) rest
)))))
1203 (or counter
(setq counter
(list 100)))
1205 ;; For speed, remove the ange-ftp completion handler from the list.
1206 ;; We know it's not needed here.
1207 ;; For even more speed, do this only on the outermost call.
1208 (file-name-handler-alist
1209 (if prev-dirs file-name-handler-alist
1210 (let ((tem (copy-sequence file-name-handler-alist
)))
1211 (delq (rassq 'ange-ftp-completion-hook-function tem
) tem
)))))
1212 (or prev-dirs
(setq prev-dirs
(list nil
)))
1214 ;; andrewi@harlequin.co.uk - on Windows, there is an issue with
1215 ;; case differences being ignored by the OS, and short "8.3 DOS"
1216 ;; name aliases existing for all files. (The short names are not
1217 ;; reported by directory-files, but can be used to refer to files.)
1218 ;; It seems appropriate for file-truename to resolve these issues in
1219 ;; the most natural way, which on Windows is to call the function
1220 ;; `w32-long-file-name' - this returns the exact name of a file as
1221 ;; it is stored on disk (expanding short name aliases with the full
1222 ;; name in the process).
1223 (if (eq system-type
'windows-nt
)
1224 (unless (string-match "[[*?]" filename
)
1225 ;; If filename exists, use its long name. If it doesn't
1226 ;; exist, the recursion below on the directory of filename
1227 ;; will drill down until we find a directory that exists,
1228 ;; and use the long name of that, with the extra
1229 ;; non-existent path components concatenated.
1230 (let ((longname (w32-long-file-name filename
)))
1232 (setq filename longname
)))))
1234 ;; If this file directly leads to a link, process that iteratively
1235 ;; so that we don't use lots of stack.
1237 (setcar counter
(1- (car counter
)))
1238 (if (< (car counter
) 0)
1239 (error "Apparent cycle of symbolic links for %s" filename
))
1240 (let ((handler (find-file-name-handler filename
'file-truename
)))
1241 ;; For file name that has a special handler, call handler.
1242 ;; This is so that ange-ftp can save time by doing a no-op.
1244 (setq filename
(funcall handler
'file-truename filename
)
1246 (let ((dir (or (file-name-directory filename
) default-directory
))
1248 ;; Get the truename of the directory.
1249 (setq dirfile
(directory-file-name dir
))
1250 ;; If these are equal, we have the (or a) root directory.
1251 (or (string= dir dirfile
)
1252 (and (file-name-case-insensitive-p dir
)
1253 (eq (compare-strings dir
0 nil dirfile
0 nil t
) t
))
1254 ;; If this is the same dir we last got the truename for,
1255 ;; save time--don't recalculate.
1256 (if (assoc dir
(car prev-dirs
))
1257 (setq dir
(cdr (assoc dir
(car prev-dirs
))))
1259 (new (file-name-as-directory (file-truename dirfile counter prev-dirs
))))
1260 (setcar prev-dirs
(cons (cons old new
) (car prev-dirs
)))
1262 (if (equal ".." (file-name-nondirectory filename
))
1264 (directory-file-name (file-name-directory (directory-file-name dir
)))
1266 (if (equal "." (file-name-nondirectory filename
))
1267 (setq filename
(directory-file-name dir
)
1269 ;; Put it back on the file name.
1270 (setq filename
(concat dir
(file-name-nondirectory filename
)))
1271 ;; Is the file name the name of a link?
1272 (setq target
(file-symlink-p filename
))
1274 ;; Yes => chase that link, then start all over
1275 ;; since the link may point to a directory name that uses links.
1276 ;; We can't safely use expand-file-name here
1277 ;; since target might look like foo/../bar where foo
1278 ;; is itself a link. Instead, we handle . and .. above.
1279 (setq filename
(files--splice-dirname-file dir target
)
1282 (setq done t
))))))))
1285 (defun file-chase-links (filename &optional limit
)
1286 "Chase links in FILENAME until a name that is not a link.
1287 Unlike `file-truename', this does not check whether a parent
1288 directory name is a symbolic link.
1289 If the optional argument LIMIT is a number,
1290 it means chase no more than that many links and then stop."
1291 (let (tem (newname filename
)
1293 (while (and (or (null limit
) (< count limit
))
1294 (setq tem
(file-symlink-p newname
)))
1296 (if (and (null limit
) (= count
100))
1297 (error "Apparent cycle of symbolic links for %s" filename
))
1298 ;; In the context of a link, `//' doesn't mean what Emacs thinks.
1299 (while (string-match "//+" tem
)
1300 (setq tem
(replace-match "/" nil nil tem
)))
1301 ;; Handle `..' by hand, since it needs to work in the
1302 ;; target of any directory symlink.
1303 ;; This code is not quite complete; it does not handle
1304 ;; embedded .. in some cases such as ./../foo and foo/bar/../../../lose.
1305 (while (string-match "\\`\\.\\./" tem
)
1306 (setq tem
(substring tem
3))
1307 (setq newname
(expand-file-name newname
))
1308 ;; Chase links in the default dir of the symlink.
1311 (directory-file-name (file-name-directory newname
))))
1312 ;; Now find the parent of that dir.
1313 (setq newname
(file-name-directory newname
)))
1314 (setq newname
(files--splice-dirname-file (file-name-directory newname
)
1316 (setq count
(1+ count
))))
1319 ;; A handy function to display file sizes in human-readable form.
1320 ;; See http://en.wikipedia.org/wiki/Kibibyte for the reference.
1321 (defun file-size-human-readable (file-size &optional flavor
)
1322 "Produce a string showing FILE-SIZE in human-readable form.
1324 Optional second argument FLAVOR controls the units and the display format:
1326 If FLAVOR is nil or omitted, each kilobyte is 1024 bytes and the produced
1327 suffixes are \"k\", \"M\", \"G\", \"T\", etc.
1328 If FLAVOR is `si', each kilobyte is 1000 bytes and the produced suffixes
1329 are \"k\", \"M\", \"G\", \"T\", etc.
1330 If FLAVOR is `iec', each kilobyte is 1024 bytes and the produced suffixes
1331 are \"KiB\", \"MiB\", \"GiB\", \"TiB\", etc."
1332 (let ((power (if (or (null flavor
) (eq flavor
'iec
))
1336 ;; none, kilo, mega, giga, tera, peta, exa, zetta, yotta
1337 (list "" "k" "M" "G" "T" "P" "E" "Z" "Y")))
1338 (while (and (>= file-size power
) (cdr post-fixes
))
1339 (setq file-size
(/ file-size power
)
1340 post-fixes
(cdr post-fixes
)))
1341 (format (if (> (mod file-size
1.0) 0.05)
1345 (if (and (eq flavor
'iec
) (string= (car post-fixes
) "k"))
1348 (if (eq flavor
'iec
) "iB" ""))))
1350 (defcustom mounted-file-systems
1351 (if (memq system-type
'(windows-nt cygwin
))
1353 ;; regexp-opt.el is not dumped into emacs binary.
1355 ;; "^" (regexp-opt '("/afs/" "/media/" "/mnt" "/net/" "/tmp_mnt/"))))
1356 "^\\(?:/\\(?:afs/\\|m\\(?:edia/\\|nt\\)\\|\\(?:ne\\|tmp_mn\\)t/\\)\\)")
1357 "File systems which ought to be mounted."
1360 :require
'regexp-opt
1363 (defun temporary-file-directory ()
1364 "The directory for writing temporary files.
1365 In case of a remote `default-directory', this is a directory for
1366 temporary files on that remote host. If such a directory does
1367 not exist, or `default-directory' ought to be located on a
1368 mounted file system (see `mounted-file-systems'), the function
1369 returns `default-directory'.
1370 For a non-remote and non-mounted `default-directory', the value of
1371 the variable `temporary-file-directory' is returned."
1372 (let ((handler (find-file-name-handler
1373 default-directory
'temporary-file-directory
)))
1375 (funcall handler
'temporary-file-directory
)
1376 (if (string-match mounted-file-systems default-directory
)
1378 temporary-file-directory
))))
1380 (defun make-temp-file (prefix &optional dir-flag suffix text
)
1381 "Create a temporary file.
1382 The returned file name (created by appending some random characters at the end
1383 of PREFIX, and expanding against `temporary-file-directory' if necessary),
1384 is guaranteed to point to a newly created file.
1385 You can then use `write-region' to write new data into the file.
1387 If DIR-FLAG is non-nil, create a new empty directory instead of a file.
1389 If SUFFIX is non-nil, add that at the end of the file name.
1391 If TEXT is a string, insert it into the new file; DIR-FLAG should be nil.
1392 Otherwise the file will be empty."
1393 (let ((absolute-prefix
1394 (if (or (zerop (length prefix
)) (member prefix
'("." "..")))
1395 (concat (file-name-as-directory temporary-file-directory
) prefix
)
1396 (expand-file-name prefix temporary-file-directory
))))
1397 (if (find-file-name-handler absolute-prefix
'write-region
)
1398 (files--make-magic-temp-file absolute-prefix dir-flag suffix text
)
1399 (make-temp-file-internal absolute-prefix
1400 (if dir-flag t
) (or suffix
"") text
))))
1402 (defun files--make-magic-temp-file (absolute-prefix
1403 &optional dir-flag suffix text
)
1404 "Implement (make-temp-file ABSOLUTE-PREFIX DIR-FLAG SUFFIX TEXT).
1405 This implementation works on magic file names."
1406 ;; Create temp files with strict access rights. It's easy to
1407 ;; loosen them later, whereas it's impossible to close the
1408 ;; time-window of loose permissions otherwise.
1409 (with-file-modes ?
\700
1410 (let ((contents (if (stringp text
) text
""))
1412 (while (condition-case ()
1414 (setq file
(make-temp-name absolute-prefix
))
1416 (setq file
(concat file suffix
)))
1418 (make-directory file
)
1419 (write-region contents nil file nil
'silent nil
'excl
))
1421 (file-already-exists t
))
1422 ;; the file was somehow created by someone else between
1423 ;; `make-temp-name' and `write-region', let's try again.
1427 (defun make-nearby-temp-file (prefix &optional dir-flag suffix
)
1428 "Create a temporary file as close as possible to `default-directory'.
1429 If PREFIX is a relative file name, and `default-directory' is a
1430 remote file name or located on a mounted file systems, the
1431 temporary file is created in the directory returned by the
1432 function `temporary-file-directory'. Otherwise, the function
1433 `make-temp-file' is used. PREFIX, DIR-FLAG and SUFFIX have the
1434 same meaning as in `make-temp-file'."
1435 (let ((handler (find-file-name-handler
1436 default-directory
'make-nearby-temp-file
)))
1437 (if (and handler
(not (file-name-absolute-p default-directory
)))
1438 (funcall handler
'make-nearby-temp-file prefix dir-flag suffix
)
1439 (let ((temporary-file-directory (temporary-file-directory)))
1440 (make-temp-file prefix dir-flag suffix
)))))
1442 (defun recode-file-name (file coding new-coding
&optional ok-if-already-exists
)
1443 "Change the encoding of FILE's name from CODING to NEW-CODING.
1444 The value is a new name of FILE.
1445 Signals a `file-already-exists' error if a file of the new name
1446 already exists unless optional fourth argument OK-IF-ALREADY-EXISTS
1447 is non-nil. A number as fourth arg means request confirmation if
1448 the new name already exists. This is what happens in interactive
1451 (let ((default-coding (or file-name-coding-system
1452 default-file-name-coding-system
))
1453 (filename (read-file-name "Recode filename: " nil nil t
))
1454 from-coding to-coding
)
1455 (if (and default-coding
1456 ;; We provide the default coding only when it seems that
1457 ;; the filename is correctly decoded by the default
1459 (let ((charsets (find-charset-string filename
)))
1460 (and (not (memq 'eight-bit-control charsets
))
1461 (not (memq 'eight-bit-graphic charsets
)))))
1462 (setq from-coding
(read-coding-system
1463 (format "Recode filename %s from (default %s): "
1464 filename default-coding
)
1466 (setq from-coding
(read-coding-system
1467 (format "Recode filename %s from: " filename
))))
1469 ;; We provide the default coding only when a user is going to
1470 ;; change the encoding not from the default coding.
1471 (if (eq from-coding default-coding
)
1472 (setq to-coding
(read-coding-system
1473 (format "Recode filename %s from %s to: "
1474 filename from-coding
)))
1475 (setq to-coding
(read-coding-system
1476 (format "Recode filename %s from %s to (default %s): "
1477 filename from-coding default-coding
)
1479 (list filename from-coding to-coding
)))
1481 (let* ((default-coding (or file-name-coding-system
1482 default-file-name-coding-system
))
1483 ;; FILE should have been decoded by DEFAULT-CODING.
1484 (encoded (encode-coding-string file default-coding
))
1485 (newname (decode-coding-string encoded coding
))
1486 (new-encoded (encode-coding-string newname new-coding
))
1487 ;; Suppress further encoding.
1488 (file-name-coding-system nil
)
1489 (default-file-name-coding-system nil
)
1490 (locale-coding-system nil
))
1491 (rename-file encoded new-encoded ok-if-already-exists
)
1494 (defcustom confirm-nonexistent-file-or-buffer
'after-completion
1495 "Whether confirmation is requested before visiting a new file or buffer.
1496 If nil, confirmation is not requested.
1497 If the value is `after-completion', confirmation is only
1498 requested if the user called `minibuffer-complete' right before
1499 `minibuffer-complete-and-exit'.
1500 Any other non-nil value means to request confirmation.
1502 This affects commands like `switch-to-buffer' and `find-file'."
1505 :type
'(choice (const :tag
"After completion" after-completion
)
1506 (const :tag
"Never" nil
)
1507 (other :tag
"Always" t
)))
1509 (defun confirm-nonexistent-file-or-buffer ()
1510 "Whether to request confirmation before visiting a new file or buffer.
1511 The variable `confirm-nonexistent-file-or-buffer' determines the
1512 return value, which may be passed as the REQUIRE-MATCH arg to
1513 `read-buffer' or `find-file-read-args'."
1514 (cond ((eq confirm-nonexistent-file-or-buffer
'after-completion
)
1515 'confirm-after-completion
)
1516 (confirm-nonexistent-file-or-buffer
1520 (defmacro minibuffer-with-setup-hook
(fun &rest body
)
1521 "Temporarily add FUN to `minibuffer-setup-hook' while executing BODY.
1523 By default, FUN is prepended to `minibuffer-setup-hook'. But if FUN is of
1524 the form `(:append FUN1)', FUN1 will be appended to `minibuffer-setup-hook'
1525 instead of prepending it.
1527 BODY should use the minibuffer at most once.
1528 Recursive uses of the minibuffer are unaffected (FUN is not
1529 called additional times).
1531 This macro actually adds an auxiliary function that calls FUN,
1532 rather than FUN itself, to `minibuffer-setup-hook'."
1533 (declare (indent 1) (debug t
))
1534 (let ((hook (make-symbol "setup-hook"))
1535 (funsym (make-symbol "fun"))
1537 (when (eq (car-safe fun
) :append
)
1538 (setq append
'(t) fun
(cadr fun
)))
1539 `(let ((,funsym
,fun
)
1543 ;; Clear out this hook so it does not interfere
1544 ;; with any recursive minibuffer usage.
1545 (remove-hook 'minibuffer-setup-hook
,hook
)
1549 (add-hook 'minibuffer-setup-hook
,hook
,@append
)
1551 (remove-hook 'minibuffer-setup-hook
,hook
)))))
1553 (defun find-file-read-args (prompt mustmatch
)
1554 (list (read-file-name prompt nil default-directory mustmatch
)
1557 (defun find-file (filename &optional wildcards
)
1558 "Edit file FILENAME.
1559 Switch to a buffer visiting file FILENAME,
1560 creating one if none already exists.
1561 Interactively, the default if you just type RET is the current directory,
1562 but the visited file name is available through the minibuffer history:
1563 type \\[next-history-element] to pull it into the minibuffer.
1565 The first time \\[next-history-element] is used after Emacs prompts for
1566 the file name, the result is affected by `file-name-at-point-functions',
1567 which by default try to guess the file name by looking at point in the
1568 current buffer. Customize the value of `file-name-at-point-functions'
1569 or set it to nil, if you want only the visited file name and the
1570 current directory to be available on first \\[next-history-element]
1573 You can visit files on remote machines by specifying something
1574 like /ssh:SOME_REMOTE_MACHINE:FILE for the file name. You can
1575 also visit local files as a different user by specifying
1576 /sudo::FILE for the file name.
1577 See the Info node `(tramp)File name Syntax' in the Tramp Info
1578 manual, for more about this.
1580 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1581 expand wildcards (if any) and visit multiple files. You can
1582 suppress wildcard expansion by setting `find-file-wildcards' to nil.
1584 To visit a file without any kind of conversion and without
1585 automatically choosing a major mode, use \\[find-file-literally]."
1587 (find-file-read-args "Find file: "
1588 (confirm-nonexistent-file-or-buffer)))
1589 (let ((value (find-file-noselect filename nil nil wildcards
)))
1591 (mapcar 'pop-to-buffer-same-window
(nreverse value
))
1592 (pop-to-buffer-same-window value
))))
1594 (defun find-file-other-window (filename &optional wildcards
)
1595 "Edit file FILENAME, in another window.
1597 Like \\[find-file] (which see), but creates a new window or reuses
1598 an existing one. See the function `display-buffer'.
1600 Interactively, the default if you just type RET is the current directory,
1601 but the visited file name is available through the minibuffer history:
1602 type \\[next-history-element] to pull it into the minibuffer.
1604 The first time \\[next-history-element] is used after Emacs prompts for
1605 the file name, the result is affected by `file-name-at-point-functions',
1606 which by default try to guess the file name by looking at point in the
1607 current buffer. Customize the value of `file-name-at-point-functions'
1608 or set it to nil, if you want only the visited file name and the
1609 current directory to be available on first \\[next-history-element]
1612 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1613 expand wildcards (if any) and visit multiple files."
1615 (find-file-read-args "Find file in other window: "
1616 (confirm-nonexistent-file-or-buffer)))
1617 (let ((value (find-file-noselect filename nil nil wildcards
)))
1620 (setq value
(nreverse value
))
1621 (switch-to-buffer-other-window (car value
))
1622 (mapc 'switch-to-buffer
(cdr value
))
1624 (switch-to-buffer-other-window value
))))
1626 (defun find-file-other-frame (filename &optional wildcards
)
1627 "Edit file FILENAME, in another frame.
1629 Like \\[find-file] (which see), but creates a new frame or reuses
1630 an existing one. See the function `display-buffer'.
1632 Interactively, the default if you just type RET is the current directory,
1633 but the visited file name is available through the minibuffer history:
1634 type \\[next-history-element] to pull it into the minibuffer.
1636 The first time \\[next-history-element] is used after Emacs prompts for
1637 the file name, the result is affected by `file-name-at-point-functions',
1638 which by default try to guess the file name by looking at point in the
1639 current buffer. Customize the value of `file-name-at-point-functions'
1640 or set it to nil, if you want only the visited file name and the
1641 current directory to be available on first \\[next-history-element]
1644 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1645 expand wildcards (if any) and visit multiple files."
1647 (find-file-read-args "Find file in other frame: "
1648 (confirm-nonexistent-file-or-buffer)))
1649 (let ((value (find-file-noselect filename nil nil wildcards
)))
1652 (setq value
(nreverse value
))
1653 (switch-to-buffer-other-frame (car value
))
1654 (mapc 'switch-to-buffer
(cdr value
))
1656 (switch-to-buffer-other-frame value
))))
1658 (defun find-file-existing (filename)
1659 "Edit the existing file FILENAME.
1660 Like \\[find-file], but only allow a file that exists, and do not allow
1661 file names with wildcards."
1662 (interactive (nbutlast (find-file-read-args "Find existing file: " t
)))
1663 (if (and (not (called-interactively-p 'interactive
))
1664 (not (file-exists-p filename
)))
1665 (error "%s does not exist" filename
)
1666 (find-file filename
)
1669 (defun find-file--read-only (fun filename wildcards
)
1670 (unless (or (and wildcards find-file-wildcards
1671 (not (file-name-quoted-p filename
))
1672 (string-match "[[*?]" filename
))
1673 (file-exists-p filename
))
1674 (error "%s does not exist" filename
))
1675 (let ((value (funcall fun filename wildcards
)))
1676 (mapc (lambda (b) (with-current-buffer b
(read-only-mode 1)))
1677 (if (listp value
) value
(list value
)))
1680 (defun find-file-read-only (filename &optional wildcards
)
1681 "Edit file FILENAME but don't allow changes.
1682 Like \\[find-file], but marks buffer as read-only.
1683 Use \\[read-only-mode] to permit editing."
1685 (find-file-read-args "Find file read-only: "
1686 (confirm-nonexistent-file-or-buffer)))
1687 (find-file--read-only #'find-file filename wildcards
))
1689 (defun find-file-read-only-other-window (filename &optional wildcards
)
1690 "Edit file FILENAME in another window but don't allow changes.
1691 Like \\[find-file-other-window], but marks buffer as read-only.
1692 Use \\[read-only-mode] to permit editing."
1694 (find-file-read-args "Find file read-only other window: "
1695 (confirm-nonexistent-file-or-buffer)))
1696 (find-file--read-only #'find-file-other-window filename wildcards
))
1698 (defun find-file-read-only-other-frame (filename &optional wildcards
)
1699 "Edit file FILENAME in another frame but don't allow changes.
1700 Like \\[find-file-other-frame], but marks buffer as read-only.
1701 Use \\[read-only-mode] to permit editing."
1703 (find-file-read-args "Find file read-only other frame: "
1704 (confirm-nonexistent-file-or-buffer)))
1705 (find-file--read-only #'find-file-other-frame filename wildcards
))
1707 (defun find-alternate-file-other-window (filename &optional wildcards
)
1708 "Find file FILENAME as a replacement for the file in the next window.
1709 This command does not select that window.
1711 See \\[find-file] for the possible forms of the FILENAME argument.
1713 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1714 expand wildcards (if any) and replace the file with multiple files."
1716 (save-selected-window
1718 (let ((file buffer-file-name
)
1722 (setq file-name
(file-name-nondirectory file
)
1723 file-dir
(file-name-directory file
)))
1724 (list (read-file-name
1725 "Find alternate file: " file-dir nil
1726 (confirm-nonexistent-file-or-buffer) file-name
)
1729 (find-file-other-window filename wildcards
)
1730 (save-selected-window
1732 (find-alternate-file filename wildcards
))))
1734 ;; Defined and used in buffer.c, but not as a DEFVAR_LISP.
1735 (defvar kill-buffer-hook nil
1736 "Hook run when a buffer is killed.
1737 The buffer being killed is current while the hook is running.
1740 Note: Be careful with let-binding this hook considering it is
1741 frequently used for cleanup.")
1743 (defun find-alternate-file (filename &optional wildcards
)
1744 "Find file FILENAME, select its buffer, kill previous buffer.
1745 If the current buffer now contains an empty file that you just visited
1746 \(presumably by mistake), use this command to visit the file you really want.
1748 See \\[find-file] for the possible forms of the FILENAME argument.
1750 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
1751 expand wildcards (if any) and replace the file with multiple files.
1753 If the current buffer is an indirect buffer, or the base buffer
1754 for one or more indirect buffers, the other buffer(s) are not
1757 (let ((file buffer-file-name
)
1761 (setq file-name
(file-name-nondirectory file
)
1762 file-dir
(file-name-directory file
)))
1763 (list (read-file-name
1764 "Find alternate file: " file-dir nil
1765 (confirm-nonexistent-file-or-buffer) file-name
)
1767 (unless (run-hook-with-args-until-failure 'kill-buffer-query-functions
)
1768 (user-error "Aborted"))
1769 (and (buffer-modified-p) buffer-file-name
1771 (format-message "Kill and replace buffer `%s' without saving it? "
1773 (user-error "Aborted"))
1774 (let ((obuf (current-buffer))
1775 (ofile buffer-file-name
)
1776 (onum buffer-file-number
)
1777 (odir dired-directory
)
1778 (otrue buffer-file-truename
)
1779 (oname (buffer-name)))
1780 ;; Run `kill-buffer-hook' here. It needs to happen before
1781 ;; variables like `buffer-file-name' etc are set to nil below,
1782 ;; because some of the hooks that could be invoked
1783 ;; (e.g., `save-place-to-alist') depend on those variables.
1785 ;; Note that `kill-buffer-hook' is not what queries whether to
1786 ;; save a modified buffer visiting a file. Rather, `kill-buffer'
1787 ;; asks that itself. Thus, there's no need to temporarily do
1788 ;; `(set-buffer-modified-p nil)' before running this hook.
1789 (run-hooks 'kill-buffer-hook
)
1790 ;; Okay, now we can end-of-life the old buffer.
1791 (if (get-buffer " **lose**")
1792 (kill-buffer " **lose**"))
1793 (rename-buffer " **lose**")
1797 ;; This prevents us from finding the same buffer
1798 ;; if we specified the same file again.
1799 (setq buffer-file-name nil
)
1800 (setq buffer-file-number nil
)
1801 (setq buffer-file-truename nil
)
1802 ;; Likewise for dired buffers.
1803 (setq dired-directory nil
)
1804 (find-file filename wildcards
))
1805 (when (eq obuf
(current-buffer))
1806 ;; This executes if find-file gets an error
1807 ;; and does not really find anything.
1808 ;; We put things back as they were.
1809 ;; If find-file actually finds something, we kill obuf below.
1810 (setq buffer-file-name ofile
)
1811 (setq buffer-file-number onum
)
1812 (setq buffer-file-truename otrue
)
1813 (setq dired-directory odir
)
1815 (rename-buffer oname
)))
1816 (unless (eq (current-buffer) obuf
)
1817 (with-current-buffer obuf
1818 ;; We already ran these; don't run them again.
1819 (let (kill-buffer-query-functions kill-buffer-hook
)
1820 (kill-buffer obuf
))))))
1822 ;; FIXME we really need to fold the uniquify stuff in here by default,
1823 ;; not using advice, and add it to the doc string.
1824 (defun create-file-buffer (filename)
1825 "Create a suitably named buffer for visiting FILENAME, and return it.
1826 FILENAME (sans directory) is used unchanged if that name is free;
1827 otherwise a string <2> or <3> or ... is appended to get an unused name.
1829 Emacs treats buffers whose names begin with a space as internal buffers.
1830 To avoid confusion when visiting a file whose name begins with a space,
1831 this function prepends a \"|\" to the final result if necessary."
1832 (let ((lastname (file-name-nondirectory filename
)))
1833 (if (string= lastname
"")
1834 (setq lastname filename
))
1835 (generate-new-buffer (if (string-match-p "\\` " lastname
)
1836 (concat "|" lastname
)
1839 (defun generate-new-buffer (name)
1840 "Create and return a buffer with a name based on NAME.
1841 Choose the buffer's name using `generate-new-buffer-name'."
1842 (get-buffer-create (generate-new-buffer-name name
)))
1844 (defcustom automount-dir-prefix
(purecopy "^/tmp_mnt/")
1845 "Regexp to match the automounter prefix in a directory name."
1848 (make-obsolete-variable 'automount-dir-prefix
'directory-abbrev-alist
"24.3")
1850 (defvar abbreviated-home-dir nil
1851 "Regexp matching the user's homedir at the beginning of file name.
1852 The value includes abbreviation according to `directory-abbrev-alist'.")
1854 (defun abbreviate-file-name (filename)
1855 "Return a version of FILENAME shortened using `directory-abbrev-alist'.
1856 This also substitutes \"~\" for the user's home directory (unless the
1857 home directory is a root directory) and removes automounter prefixes
1858 \(see the variable `automount-dir-prefix').
1860 When this function is first called, it caches the user's home
1861 directory as a regexp in `abbreviated-home-dir', and reuses it
1862 afterwards (so long as the home directory does not change;
1863 if you want to permanently change your home directory after having
1864 started Emacs, set `abbreviated-home-dir' to nil so it will be recalculated)."
1865 ;; Get rid of the prefixes added by the automounter.
1867 (if (and automount-dir-prefix
1868 (string-match automount-dir-prefix filename
)
1869 (file-exists-p (file-name-directory
1870 (substring filename
(1- (match-end 0))))))
1871 (setq filename
(substring filename
(1- (match-end 0)))))
1872 ;; Avoid treating /home/foo as /home/Foo during `~' substitution.
1873 (let ((case-fold-search (file-name-case-insensitive-p filename
)))
1874 ;; If any elt of directory-abbrev-alist matches this name,
1875 ;; abbreviate accordingly.
1876 (dolist (dir-abbrev directory-abbrev-alist
)
1877 (if (string-match (car dir-abbrev
) filename
)
1879 (concat (cdr dir-abbrev
)
1880 (substring filename
(match-end 0))))))
1881 ;; Compute and save the abbreviated homedir name.
1882 ;; We defer computing this until the first time it's needed, to
1883 ;; give time for directory-abbrev-alist to be set properly.
1884 ;; We include a slash at the end, to avoid spurious matches
1885 ;; such as `/usr/foobar' when the home dir is `/usr/foo'.
1886 (unless abbreviated-home-dir
1887 (put 'abbreviated-home-dir
'home
(expand-file-name "~"))
1888 (setq abbreviated-home-dir
1889 (let ((abbreviated-home-dir "$foo"))
1890 (setq abbreviated-home-dir
1892 (abbreviate-file-name
1893 (get 'abbreviated-home-dir
'home
))
1895 ;; Depending on whether default-directory does or
1896 ;; doesn't include non-ASCII characters, the value
1897 ;; of abbreviated-home-dir could be multibyte or
1898 ;; unibyte. In the latter case, we need to decode
1899 ;; it. Note that this function is called for the
1900 ;; first time (from startup.el) when
1901 ;; locale-coding-system is already set up.
1902 (if (multibyte-string-p abbreviated-home-dir
)
1903 abbreviated-home-dir
1904 (decode-coding-string abbreviated-home-dir
1905 (if (eq system-type
'windows-nt
)
1907 locale-coding-system
))))))
1909 ;; If FILENAME starts with the abbreviated homedir,
1910 ;; and ~ hasn't changed since abbreviated-home-dir was set,
1911 ;; make it start with `~' instead.
1912 ;; If ~ has changed, we ignore abbreviated-home-dir rather than
1913 ;; invalidating it, on the assumption that a change in HOME
1914 ;; is likely temporary (eg for testing).
1915 ;; FIXME Is it even worth caching abbreviated-home-dir?
1916 ;; Ref: https://debbugs.gnu.org/19657#20
1917 (if (and (string-match abbreviated-home-dir filename
)
1918 ;; If the home dir is just /, don't change it.
1919 (not (and (= (match-end 0) 1)
1920 (= (aref filename
0) ?
/)))
1921 ;; MS-DOS root directories can come with a drive letter;
1922 ;; Novell Netware allows drive letters beyond `Z:'.
1923 (not (and (memq system-type
'(ms-dos windows-nt cygwin
))
1925 (string-match "^[a-zA-`]:/$" filename
))))
1926 (equal (get 'abbreviated-home-dir
'home
)
1927 (expand-file-name "~")))
1930 (match-string 1 filename
)
1931 (substring filename
(match-end 0)))))
1934 (defun find-buffer-visiting (filename &optional predicate
)
1935 "Return the buffer visiting file FILENAME (a string).
1936 This is like `get-file-buffer', except that it checks for any buffer
1937 visiting the same file, possibly under a different name.
1938 If PREDICATE is non-nil, only buffers satisfying it are eligible,
1939 and others are ignored.
1940 If there is no such live buffer, return nil."
1941 (let ((predicate (or predicate
#'identity
))
1942 (truename (abbreviate-file-name (file-truename filename
))))
1943 (or (let ((buf (get-file-buffer filename
)))
1944 (when (and buf
(funcall predicate buf
)) buf
))
1945 (let ((list (buffer-list)) found
)
1946 (while (and (not found
) list
)
1947 (with-current-buffer (car list
)
1948 (if (and buffer-file-name
1949 (string= buffer-file-truename truename
)
1950 (funcall predicate
(current-buffer)))
1951 (setq found
(car list
))))
1952 (setq list
(cdr list
)))
1954 (let* ((attributes (file-attributes truename
))
1955 (number (nthcdr 10 attributes
))
1956 (list (buffer-list)) found
)
1957 (and buffer-file-numbers-unique
1958 (car-safe number
) ;Make sure the inode is not just nil.
1959 (while (and (not found
) list
)
1960 (with-current-buffer (car list
)
1961 (if (and buffer-file-name
1962 (equal buffer-file-number number
)
1963 ;; Verify this buffer's file number
1964 ;; still belongs to its file.
1965 (file-exists-p buffer-file-name
)
1966 (equal (file-attributes buffer-file-truename
)
1968 (funcall predicate
(current-buffer)))
1969 (setq found
(car list
))))
1970 (setq list
(cdr list
))))
1973 (defcustom find-file-wildcards t
1974 "Non-nil means file-visiting commands should handle wildcards.
1975 For example, if you specify `*.c', that would visit all the files
1976 whose names match the pattern."
1981 (defcustom find-file-suppress-same-file-warnings nil
1982 "Non-nil means suppress warning messages for symlinked files.
1983 When nil, Emacs prints a warning when visiting a file that is already
1984 visited, but with a different name. Setting this option to t
1985 suppresses this warning."
1990 (defcustom large-file-warning-threshold
10000000
1991 "Maximum size of file above which a confirmation is requested.
1992 When nil, never request confirmation."
1996 :type
'(choice integer
(const :tag
"Never request confirmation" nil
)))
1998 (defcustom out-of-memory-warning-percentage nil
1999 "Warn if file size exceeds this percentage of available free memory.
2000 When nil, never issue warning. Beware: This probably doesn't do what you
2001 think it does, because \"free\" is pretty hard to define in practice."
2005 :type
'(choice integer
(const :tag
"Never issue warning" nil
)))
2007 (defun abort-if-file-too-large (size op-type filename
)
2008 "If file SIZE larger than `large-file-warning-threshold', allow user to abort.
2009 OP-TYPE specifies the file operation being performed (for message to user)."
2010 (when (and large-file-warning-threshold size
2011 (> size large-file-warning-threshold
)
2012 (not (y-or-n-p (format "File %s is large (%s), really %s? "
2013 (file-name-nondirectory filename
)
2014 (file-size-human-readable size
) op-type
))))
2015 (user-error "Aborted")))
2017 (defun warn-maybe-out-of-memory (size)
2018 "Warn if an attempt to open file of SIZE bytes may run out of memory."
2019 (when (and (numberp size
) (not (zerop size
))
2020 (integerp out-of-memory-warning-percentage
))
2021 (let ((meminfo (memory-info)))
2022 (when (consp meminfo
)
2023 (let ((total-free-memory (float (+ (nth 1 meminfo
) (nth 3 meminfo
)))))
2024 (when (> (/ size
1024)
2025 (/ (* total-free-memory out-of-memory-warning-percentage
)
2028 "You are trying to open a file whose size (%s)
2029 exceeds the %S%% of currently available free memory (%s).
2030 If that fails, try to open it with `find-file-literally'
2031 \(but note that some characters might be displayed incorrectly)."
2032 (file-size-human-readable size
)
2033 out-of-memory-warning-percentage
2034 (file-size-human-readable (* total-free-memory
1024)))))))))
2036 (defun files--message (format &rest args
)
2037 "Like `message', except sometimes don't print to minibuffer.
2038 If the variable `save-silently' is non-nil, the message is not
2039 displayed on the minibuffer."
2040 (apply #'message format args
)
2041 (when save-silently
(message nil
)))
2043 (defun find-file-noselect (filename &optional nowarn rawfile wildcards
)
2044 "Read file FILENAME into a buffer and return the buffer.
2045 If a buffer exists visiting FILENAME, return that one, but
2046 verify that the file has not changed since visited or saved.
2047 The buffer is not selected, just returned to the caller.
2048 Optional second arg NOWARN non-nil means suppress any warning messages.
2049 Optional third arg RAWFILE non-nil means the file is read literally.
2050 Optional fourth arg WILDCARDS non-nil means do wildcard processing
2051 and visit all the matching files. When wildcards are actually
2052 used and expanded, return a list of buffers that are visiting
2055 (abbreviate-file-name
2056 (expand-file-name filename
)))
2057 (if (file-directory-p filename
)
2058 (or (and find-file-run-dired
2059 (run-hook-with-args-until-success
2060 'find-directory-functions
2061 (if find-file-visit-truename
2062 (abbreviate-file-name (file-truename filename
))
2064 (error "%s is a directory" filename
))
2067 (not (file-name-quoted-p filename
))
2068 (string-match "[[*?]" filename
))
2069 (let ((files (condition-case nil
2070 (file-expand-wildcards filename t
)
2071 (error (list filename
))))
2072 (find-file-wildcards nil
))
2074 (find-file-noselect filename
)
2075 (mapcar #'find-file-noselect files
)))
2076 (let* ((buf (get-file-buffer filename
))
2077 (truename (abbreviate-file-name (file-truename filename
)))
2078 (attributes (file-attributes truename
))
2079 (number (nthcdr 10 attributes
))
2080 ;; Find any buffer for a file which has same truename.
2081 (other (and (not buf
) (find-buffer-visiting filename
))))
2082 ;; Let user know if there is a buffer with the same truename.
2086 find-file-suppress-same-file-warnings
2087 (string-equal filename
(buffer-file-name other
))
2088 (files--message "%s and %s are the same file"
2089 filename
(buffer-file-name other
)))
2090 ;; Optionally also find that buffer.
2091 (if (or find-file-existing-other-name find-file-visit-truename
)
2093 ;; Check to see if the file looks uncommonly large.
2094 (when (not (or buf nowarn
))
2095 (abort-if-file-too-large (nth 7 attributes
) "open" filename
)
2096 (warn-maybe-out-of-memory (nth 7 attributes
)))
2098 ;; We are using an existing buffer.
2101 (verify-visited-file-modtime buf
)
2102 (cond ((not (file-exists-p filename
))
2103 (setq nonexistent t
)
2104 (message "File %s no longer exists!" filename
))
2105 ;; Certain files should be reverted automatically
2106 ;; if they have changed on disk and not in the buffer.
2107 ((and (not (buffer-modified-p buf
))
2108 (let ((tail revert-without-query
)
2111 (if (string-match (car tail
) filename
)
2113 (setq tail
(cdr tail
)))
2115 (with-current-buffer buf
2116 (message "Reverting file %s..." filename
)
2118 (message "Reverting file %s...done" filename
)))
2120 (if (string= (file-name-nondirectory filename
)
2123 (if (buffer-modified-p buf
)
2124 "File %s changed on disk. Discard your edits? "
2125 "File %s changed on disk. Reread from disk? ")
2126 (file-name-nondirectory filename
))
2128 (if (buffer-modified-p buf
)
2129 "File %s changed on disk. Discard your edits in %s? "
2130 "File %s changed on disk. Reread from disk into %s? ")
2131 (file-name-nondirectory filename
)
2132 (buffer-name buf
))))
2133 (with-current-buffer buf
2134 (revert-buffer t t
)))))
2135 (with-current-buffer buf
2137 ;; Check if a formerly read-only file has become
2138 ;; writable and vice versa, but if the buffer agrees
2139 ;; with the new state of the file, that is ok too.
2140 (let ((read-only (not (file-writable-p buffer-file-name
))))
2141 (unless (or nonexistent
2142 (eq read-only buffer-file-read-only
)
2143 (eq read-only buffer-read-only
))
2146 (if read-only
"read-only" "writable"))
2148 (format "File %s is %s on disk. Make buffer %s, too? "
2150 new-status new-status
)))
2151 (y-or-n-p question
)))
2152 (setq buffer-read-only read-only
)))
2153 (setq buffer-file-read-only read-only
))
2155 (unless (or (eq (null rawfile
) (null find-file-literally
))
2157 ;; It is confusing to ask whether to visit
2158 ;; non-literally if they have the file in
2159 ;; hexl-mode or image-mode.
2160 (memq major-mode
'(hexl-mode image-mode
)))
2161 (if (buffer-modified-p)
2165 "The file %s is already visited normally,
2166 and you have edited the buffer. Now you have asked to visit it literally,
2167 meaning no coding system handling, format conversion, or local variables.
2168 Emacs can only visit a file in one way at a time.
2170 Do you want to save the file, and visit it literally instead? "
2171 "The file %s is already visited literally,
2172 meaning no coding system handling, format conversion, or local variables.
2173 You have edited the buffer. Now you have asked to visit the file normally,
2174 but Emacs can only visit a file in one way at a time.
2176 Do you want to save the file, and visit it normally instead? ")
2177 (file-name-nondirectory filename
)))
2180 (find-file-noselect-1 buf filename nowarn
2181 rawfile truename number
))
2186 Do you want to discard your changes, and visit the file literally now? "
2188 Do you want to discard your changes, and visit the file normally now? ")))
2189 (find-file-noselect-1 buf filename nowarn
2190 rawfile truename number
)
2191 (error (if rawfile
"File already visited non-literally"
2192 "File already visited literally"))))
2196 "The file %s is already visited normally.
2197 You have asked to visit it literally,
2198 meaning no coding system decoding, format conversion, or local variables.
2199 But Emacs can only visit a file in one way at a time.
2201 Do you want to revisit the file literally now? "
2202 "The file %s is already visited literally,
2203 meaning no coding system decoding, format conversion, or local variables.
2204 You have asked to visit it normally,
2205 but Emacs can only visit a file in one way at a time.
2207 Do you want to revisit the file normally now? ")
2208 (file-name-nondirectory filename
)))
2209 (find-file-noselect-1 buf filename nowarn
2210 rawfile truename number
)
2211 (error (if rawfile
"File already visited non-literally"
2212 "File already visited literally"))))))
2213 ;; Return the buffer we are using.
2215 ;; Create a new buffer.
2216 (setq buf
(create-file-buffer filename
))
2217 ;; find-file-noselect-1 may use a different buffer.
2218 (find-file-noselect-1 buf filename nowarn
2219 rawfile truename number
))))))
2221 (defun find-file-noselect-1 (buf filename nowarn rawfile truename number
)
2223 (with-current-buffer buf
2224 (kill-local-variable 'find-file-literally
)
2225 ;; Needed in case we are re-visiting the file with a different
2226 ;; text representation.
2227 (kill-local-variable 'buffer-file-coding-system
)
2228 (kill-local-variable 'cursor-type
)
2229 (let ((inhibit-read-only t
))
2231 (and (default-value 'enable-multibyte-characters
)
2233 (set-buffer-multibyte t
))
2236 (let ((inhibit-read-only t
))
2237 (insert-file-contents-literally filename t
))
2239 (when (and (file-exists-p filename
)
2240 (not (file-readable-p filename
)))
2242 (signal 'file-error
(list "File is not readable"
2244 ;; Unconditionally set error
2247 (let ((inhibit-read-only t
))
2248 (insert-file-contents filename t
))
2250 (when (and (file-exists-p filename
)
2251 (not (file-readable-p filename
)))
2253 (signal 'file-error
(list "File is not readable"
2255 ;; Run find-file-not-found-functions until one returns non-nil.
2256 (or (run-hook-with-args-until-success 'find-file-not-found-functions
)
2257 ;; If they fail too, set error.
2259 ;; Record the file's truename, and maybe use that as visited name.
2260 (if (equal filename buffer-file-name
)
2261 (setq buffer-file-truename truename
)
2262 (setq buffer-file-truename
2263 (abbreviate-file-name (file-truename buffer-file-name
))))
2264 (setq buffer-file-number number
)
2265 (if find-file-visit-truename
2266 (setq buffer-file-name
(expand-file-name buffer-file-truename
)))
2267 ;; Set buffer's default directory to that of the file.
2268 (setq default-directory
(file-name-directory buffer-file-name
))
2269 ;; Turn off backup files for certain file names. Since
2270 ;; this is a permanent local, the major mode won't eliminate it.
2271 (and backup-enable-predicate
2272 (not (funcall backup-enable-predicate buffer-file-name
))
2274 (make-local-variable 'backup-inhibited
)
2275 (setq backup-inhibited t
)))
2278 (set-buffer-multibyte nil
)
2279 (setq buffer-file-coding-system
'no-conversion
)
2280 (set-buffer-major-mode buf
)
2281 (setq-local find-file-literally t
))
2282 (after-find-file error
(not nowarn
)))
2285 (defun insert-file-contents-literally (filename &optional visit beg end replace
)
2286 "Like `insert-file-contents', but only reads in the file literally.
2287 See `insert-file-contents' for an explanation of the parameters.
2288 A buffer may be modified in several ways after reading into the buffer,
2289 due to Emacs features such as format decoding, character code
2290 conversion, `find-file-hook', automatic uncompression, etc.
2292 This function ensures that none of these modifications will take place."
2293 (let ((format-alist nil
)
2294 (after-insert-file-functions nil
)
2295 (coding-system-for-read 'no-conversion
)
2296 (coding-system-for-write 'no-conversion
)
2297 (inhibit-file-name-handlers
2298 ;; FIXME: Yuck!! We should turn insert-file-contents-literally
2299 ;; into a file operation instead!
2300 (append '(jka-compr-handler image-file-handler epa-file-handler
)
2301 inhibit-file-name-handlers
))
2302 (inhibit-file-name-operation 'insert-file-contents
))
2303 (insert-file-contents filename visit beg end replace
)))
2305 (defun insert-file-1 (filename insert-func
)
2306 (if (file-directory-p filename
)
2307 (signal 'file-error
(list "Opening input file" "Is a directory"
2309 ;; Check whether the file is uncommonly large
2310 (abort-if-file-too-large (nth 7 (file-attributes filename
)) "insert" filename
)
2311 (let* ((buffer (find-buffer-visiting (abbreviate-file-name (file-truename filename
))
2312 #'buffer-modified-p
))
2313 (tem (funcall insert-func filename
)))
2314 (push-mark (+ (point) (car (cdr tem
))))
2316 (message "File %s already visited and modified in buffer %s"
2317 filename
(buffer-name buffer
)))))
2319 (defun insert-file-literally (filename)
2320 "Insert contents of file FILENAME into buffer after point with no conversion.
2322 This function is meant for the user to run interactively.
2323 Don't call it from programs! Use `insert-file-contents-literally' instead.
2324 \(Its calling sequence is different; see its documentation)."
2325 (declare (interactive-only insert-file-contents-literally
))
2326 (interactive "*fInsert file literally: ")
2327 (insert-file-1 filename
#'insert-file-contents-literally
))
2329 (defvar find-file-literally nil
2330 "Non-nil if this buffer was made by `find-file-literally' or equivalent.
2331 This has the `permanent-local' property, which takes effect if you
2332 make the variable buffer-local.")
2333 (put 'find-file-literally
'permanent-local t
)
2335 (defun find-file-literally (filename)
2336 "Visit file FILENAME with no conversion of any kind.
2337 Format conversion and character code conversion are both disabled,
2338 and multibyte characters are disabled in the resulting buffer.
2339 The major mode used is Fundamental mode regardless of the file name,
2340 and local variable specifications in the file are ignored.
2341 Automatic uncompression and adding a newline at the end of the
2342 file due to `require-final-newline' is also disabled.
2344 You cannot absolutely rely on this function to result in
2345 visiting the file literally. If Emacs already has a buffer
2346 which is visiting the file, you get the existing buffer,
2347 regardless of whether it was created literally or not.
2349 In a Lisp program, if you want to be sure of accessing a file's
2350 contents literally, you should create a temporary buffer and then read
2351 the file contents into it using `insert-file-contents-literally'."
2353 (list (read-file-name
2354 "Find file literally: " nil default-directory
2355 (confirm-nonexistent-file-or-buffer))))
2356 (switch-to-buffer (find-file-noselect filename nil t
)))
2358 (defun after-find-file (&optional error warn noauto
2359 _after-find-file-from-revert-buffer
2361 "Called after finding a file and by the default revert function.
2362 Sets buffer mode, parses local variables.
2363 Optional args ERROR, WARN, and NOAUTO: ERROR non-nil means there was an
2364 error in reading the file. WARN non-nil means warn if there
2365 exists an auto-save file more recent than the visited file.
2366 NOAUTO means don't mess with auto-save mode.
2367 Fourth arg AFTER-FIND-FILE-FROM-REVERT-BUFFER is ignored
2368 \(see `revert-buffer-in-progress-p' for similar functionality).
2369 Fifth arg NOMODES non-nil means don't alter the file's modes.
2370 Finishes by calling the functions in `find-file-hook'
2371 unless NOMODES is non-nil."
2372 (setq buffer-read-only
(not (file-writable-p buffer-file-name
)))
2379 ((and error
(file-attributes buffer-file-name
))
2380 (setq buffer-read-only t
)
2381 (if (and (file-symlink-p buffer-file-name
)
2383 (file-chase-links buffer-file-name
))))
2384 "Symbolic link that points to nonexistent file"
2385 "File exists, but cannot be read"))
2386 ((not buffer-read-only
)
2388 ;; No need to warn if buffer is auto-saved
2389 ;; under the name of the visited file.
2390 (not (and buffer-file-name
2391 auto-save-visited-file-name
))
2392 (file-newer-than-file-p (or buffer-auto-save-file-name
2393 (make-auto-save-file-name))
2395 (format "%s has auto save data; consider M-x recover-this-file"
2396 (file-name-nondirectory buffer-file-name
))
2397 (setq not-serious t
)
2398 (if error
"(New file)" nil
)))
2400 (setq not-serious t
)
2401 "Note: file is write protected")
2402 ((file-attributes (directory-file-name default-directory
))
2403 "File not found and directory write-protected")
2404 ((file-exists-p (file-name-directory buffer-file-name
))
2405 (setq buffer-read-only nil
))
2407 (setq buffer-read-only nil
)
2408 "Use M-x make-directory RET RET to create the directory and its parents"))))
2411 (or not-serious
(sit-for 1 t
))))
2412 (when (and auto-save-default
(not noauto
))
2413 (auto-save-mode 1)))
2414 ;; Make people do a little extra work (C-x C-q)
2415 ;; before altering a backup file.
2416 (when (backup-file-name-p buffer-file-name
)
2417 (setq buffer-read-only t
))
2418 ;; When a file is marked read-only,
2419 ;; make the buffer read-only even if root is looking at it.
2420 (when (and (file-modes (buffer-file-name))
2421 (zerop (logand (file-modes (buffer-file-name)) #o222
)))
2422 (setq buffer-read-only t
))
2424 (when (and view-read-only view-mode
)
2427 ;; If requested, add a newline at the end of the file.
2428 (and (memq require-final-newline
'(visit visit-save
))
2429 (> (point-max) (point-min))
2430 (/= (char-after (1- (point-max))) ?
\n)
2431 (not (and (eq selective-display t
)
2432 (= (char-after (1- (point-max))) ?
\r)))
2433 (not buffer-read-only
)
2435 (goto-char (point-max))
2436 (ignore-errors (insert "\n"))))
2437 (when (and buffer-read-only
2439 (not (eq (get major-mode
'mode-class
) 'special
)))
2441 (run-hooks 'find-file-hook
)))
2443 (define-obsolete-function-alias 'report-errors
'with-demoted-errors
"25.1")
2445 (defun normal-mode (&optional find-file
)
2446 "Choose the major mode for this buffer automatically.
2447 Also sets up any specified local variables of the file.
2448 Uses the visited file name, the -*- line, and the local variables spec.
2450 This function is called automatically from `find-file'. In that case,
2451 we may set up the file-specified mode and local variables,
2452 depending on the value of `enable-local-variables'.
2453 In addition, if `local-enable-local-variables' is nil, we do
2454 not set local variables (though we do notice a mode specified with -*-.)
2456 `enable-local-variables' is ignored if you run `normal-mode' interactively,
2457 or from Lisp without specifying the optional argument FIND-FILE;
2458 in that case, this function acts as if `enable-local-variables' were t."
2460 (kill-all-local-variables)
2461 (unless delay-mode-hooks
2462 (run-hooks 'change-major-mode-after-body-hook
2463 'after-change-major-mode-hook
))
2464 (let ((enable-local-variables (or (not find-file
) enable-local-variables
)))
2465 ;; FIXME this is less efficient than it could be, since both
2466 ;; s-a-m and h-l-v may parse the same regions, looking for "mode:".
2467 (with-demoted-errors "File mode specification error: %s"
2469 ;; `delay-mode-hooks' being non-nil will have prevented the major
2470 ;; mode's call to `run-mode-hooks' from calling
2471 ;; `hack-local-variables'. In that case, call it now.
2472 (when delay-mode-hooks
2473 (with-demoted-errors "File local-variables error: %s"
2474 (hack-local-variables 'no-mode
))))
2475 ;; Turn font lock off and on, to make sure it takes account of
2476 ;; whatever file local variables are relevant to it.
2477 (when (and font-lock-mode
2478 ;; Font-lock-mode (now in font-core.el) can be ON when
2479 ;; font-lock.el still hasn't been loaded.
2480 (boundp 'font-lock-keywords
)
2481 (eq (car font-lock-keywords
) t
))
2482 (setq font-lock-keywords
(cadr font-lock-keywords
))
2483 (font-lock-mode 1)))
2485 (defcustom auto-mode-case-fold t
2486 "Non-nil means to try second pass through `auto-mode-alist'.
2487 This means that if the first case-sensitive search through the alist fails
2488 to find a matching major mode, a second case-insensitive search is made.
2489 On systems with case-insensitive file names, this variable is ignored,
2490 since only a single case-insensitive search through the alist is made."
2495 (defvar auto-mode-alist
2496 ;; Note: The entries for the modes defined in cc-mode.el (c-mode,
2497 ;; c++-mode, java-mode and more) are added through autoload
2498 ;; directives in that file. That way is discouraged since it
2499 ;; spreads out the definition of the initial value.
2502 (cons (purecopy (car elt
)) (cdr elt
)))
2503 `(;; do this first, so that .html.pl is Polish html, not Perl
2504 ("\\.[sx]?html?\\(\\.[a-zA-Z_]+\\)?\\'" . mhtml-mode
)
2505 ("\\.svgz?\\'" . image-mode
)
2506 ("\\.svgz?\\'" . xml-mode
)
2507 ("\\.x[bp]m\\'" . image-mode
)
2508 ("\\.x[bp]m\\'" . c-mode
)
2509 ("\\.p[bpgn]m\\'" . image-mode
)
2510 ("\\.tiff?\\'" . image-mode
)
2511 ("\\.gif\\'" . image-mode
)
2512 ("\\.png\\'" . image-mode
)
2513 ("\\.jpe?g\\'" . image-mode
)
2514 ("\\.te?xt\\'" . text-mode
)
2515 ("\\.[tT]e[xX]\\'" . tex-mode
)
2516 ("\\.ins\\'" . tex-mode
) ;Installation files for TeX packages.
2517 ("\\.ltx\\'" . latex-mode
)
2518 ("\\.dtx\\'" . doctex-mode
)
2519 ("\\.org\\'" . org-mode
)
2520 ("\\.el\\'" . emacs-lisp-mode
)
2521 ("Project\\.ede\\'" . emacs-lisp-mode
)
2522 ("\\.\\(scm\\|stk\\|ss\\|sch\\)\\'" . scheme-mode
)
2523 ("\\.l\\'" . lisp-mode
)
2524 ("\\.li?sp\\'" . lisp-mode
)
2525 ("\\.[fF]\\'" . fortran-mode
)
2526 ("\\.for\\'" . fortran-mode
)
2527 ("\\.p\\'" . pascal-mode
)
2528 ("\\.pas\\'" . pascal-mode
)
2529 ("\\.\\(dpr\\|DPR\\)\\'" . delphi-mode
)
2530 ("\\.ad[abs]\\'" . ada-mode
)
2531 ("\\.ad[bs].dg\\'" . ada-mode
)
2532 ("\\.\\([pP]\\([Llm]\\|erl\\|od\\)\\|al\\)\\'" . perl-mode
)
2533 ("Imakefile\\'" . makefile-imake-mode
)
2534 ("Makeppfile\\(?:\\.mk\\)?\\'" . makefile-makepp-mode
) ; Put this before .mk
2535 ("\\.makepp\\'" . makefile-makepp-mode
)
2536 ,@(if (memq system-type
'(berkeley-unix darwin
))
2537 '(("\\.mk\\'" . makefile-bsdmake-mode
)
2538 ("\\.make\\'" . makefile-bsdmake-mode
)
2539 ("GNUmakefile\\'" . makefile-gmake-mode
)
2540 ("[Mm]akefile\\'" . makefile-bsdmake-mode
))
2541 '(("\\.mk\\'" . makefile-gmake-mode
) ; Might be any make, give Gnu the host advantage
2542 ("\\.make\\'" . makefile-gmake-mode
)
2543 ("[Mm]akefile\\'" . makefile-gmake-mode
)))
2544 ("\\.am\\'" . makefile-automake-mode
)
2545 ;; Less common extensions come here
2546 ;; so more common ones above are found faster.
2547 ("\\.texinfo\\'" . texinfo-mode
)
2548 ("\\.te?xi\\'" . texinfo-mode
)
2549 ("\\.[sS]\\'" . asm-mode
)
2550 ("\\.asm\\'" . asm-mode
)
2551 ("\\.css\\'" . css-mode
)
2552 ("\\.mixal\\'" . mixal-mode
)
2553 ("\\.gcov\\'" . compilation-mode
)
2554 ;; Besides .gdbinit, gdb documents other names to be usable for init
2555 ;; files, cross-debuggers can use something like
2556 ;; .PROCESSORNAME-gdbinit so that the host and target gdbinit files
2557 ;; don't interfere with each other.
2558 ("/\\.[a-z0-9-]*gdbinit" . gdb-script-mode
)
2559 ;; GDB 7.5 introduced OBJFILE-gdb.gdb script files; e.g. a file
2560 ;; named 'emacs-gdb.gdb', if it exists, will be automatically
2561 ;; loaded when GDB reads an objfile called 'emacs'.
2562 ("-gdb\\.gdb" . gdb-script-mode
)
2563 ("[cC]hange\\.?[lL]og?\\'" . change-log-mode
)
2564 ("[cC]hange[lL]og[-.][0-9]+\\'" . change-log-mode
)
2565 ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode
)
2566 ("\\.scm\\.[0-9]*\\'" . scheme-mode
)
2567 ("\\.[ckz]?sh\\'\\|\\.shar\\'\\|/\\.z?profile\\'" . sh-mode
)
2568 ("\\.bash\\'" . sh-mode
)
2569 ("\\(/\\|\\`\\)\\.\\(bash_\\(profile\\|history\\|log\\(in\\|out\\)\\)\\|z?log\\(in\\|out\\)\\)\\'" . sh-mode
)
2570 ("\\(/\\|\\`\\)\\.\\(shrc\\|zshrc\\|m?kshrc\\|bashrc\\|t?cshrc\\|esrc\\)\\'" . sh-mode
)
2571 ("\\(/\\|\\`\\)\\.\\([kz]shenv\\|xinitrc\\|startxrc\\|xsession\\)\\'" . sh-mode
)
2572 ("\\.m?spec\\'" . sh-mode
)
2573 ("\\.m[mes]\\'" . nroff-mode
)
2574 ("\\.man\\'" . nroff-mode
)
2575 ("\\.sty\\'" . latex-mode
)
2576 ("\\.cl[so]\\'" . latex-mode
) ;LaTeX 2e class option
2577 ("\\.bbl\\'" . latex-mode
)
2578 ("\\.bib\\'" . bibtex-mode
)
2579 ("\\.bst\\'" . bibtex-style-mode
)
2580 ("\\.sql\\'" . sql-mode
)
2581 ("\\.m[4c]\\'" . m4-mode
)
2582 ("\\.mf\\'" . metafont-mode
)
2583 ("\\.mp\\'" . metapost-mode
)
2584 ("\\.vhdl?\\'" . vhdl-mode
)
2585 ("\\.article\\'" . text-mode
)
2586 ("\\.letter\\'" . text-mode
)
2587 ("\\.i?tcl\\'" . tcl-mode
)
2588 ("\\.exp\\'" . tcl-mode
)
2589 ("\\.itk\\'" . tcl-mode
)
2590 ("\\.icn\\'" . icon-mode
)
2591 ("\\.sim\\'" . simula-mode
)
2592 ("\\.mss\\'" . scribe-mode
)
2593 ;; The Fortran standard does not say anything about file extensions.
2594 ;; .f90 was widely used for F90, now we seem to be trapped into
2595 ;; using a different extension for each language revision.
2596 ;; Anyway, the following extensions are supported by gfortran.
2597 ("\\.f9[05]\\'" . f90-mode
)
2598 ("\\.f0[38]\\'" . f90-mode
)
2599 ("\\.indent\\.pro\\'" . fundamental-mode
) ; to avoid idlwave-mode
2600 ("\\.\\(pro\\|PRO\\)\\'" . idlwave-mode
)
2601 ("\\.srt\\'" . srecode-template-mode
)
2602 ("\\.prolog\\'" . prolog-mode
)
2603 ("\\.tar\\'" . tar-mode
)
2604 ;; The list of archive file extensions should be in sync with
2605 ;; `auto-coding-alist' with `no-conversion' coding system.
2607 arc\\|zip\\|lzh\\|lha\\|zoo\\|[jew]ar\\|xpi\\|rar\\|cbr\\|7z\\|\
2608 ARC\\|ZIP\\|LZH\\|LHA\\|ZOO\\|[JEW]AR\\|XPI\\|RAR\\|CBR\\|7Z\\)\\'" . archive-mode
)
2609 ("\\.oxt\\'" . archive-mode
) ;(Open|Libre)Office extensions.
2610 ("\\.\\(deb\\|[oi]pk\\)\\'" . archive-mode
) ; Debian/Opkg packages.
2611 ;; Mailer puts message to be edited in
2612 ;; /tmp/Re.... or Message
2613 ("\\`/tmp/Re" . text-mode
)
2614 ("/Message[0-9]*\\'" . text-mode
)
2615 ;; some news reader is reported to use this
2616 ("\\`/tmp/fol/" . text-mode
)
2617 ("\\.oak\\'" . scheme-mode
)
2618 ("\\.sgml?\\'" . sgml-mode
)
2619 ("\\.x[ms]l\\'" . xml-mode
)
2620 ("\\.dbk\\'" . xml-mode
)
2621 ("\\.dtd\\'" . sgml-mode
)
2622 ("\\.ds\\(ss\\)?l\\'" . dsssl-mode
)
2623 ("\\.jsm?\\'" . javascript-mode
)
2624 ("\\.json\\'" . javascript-mode
)
2625 ("\\.jsx\\'" . js-jsx-mode
)
2626 ("\\.[ds]?vh?\\'" . verilog-mode
)
2627 ("\\.by\\'" . bovine-grammar-mode
)
2628 ("\\.wy\\'" . wisent-grammar-mode
)
2629 ;; .emacs or .gnus or .viper following a directory delimiter in
2630 ;; Unix or MS-DOS syntax.
2631 ("[:/\\]\\..*\\(emacs\\|gnus\\|viper\\)\\'" . emacs-lisp-mode
)
2632 ("\\`\\..*emacs\\'" . emacs-lisp-mode
)
2633 ;; _emacs following a directory delimiter in MS-DOS syntax
2634 ("[:/]_emacs\\'" . emacs-lisp-mode
)
2635 ("/crontab\\.X*[0-9]+\\'" . shell-script-mode
)
2636 ("\\.ml\\'" . lisp-mode
)
2637 ;; Linux-2.6.9 uses some different suffix for linker scripts:
2638 ;; "ld", "lds", "lds.S", "lds.in", "ld.script", and "ld.script.balo".
2639 ;; eCos uses "ld" and "ldi". Netbsd uses "ldscript.*".
2640 ("\\.ld[si]?\\'" . ld-script-mode
)
2641 ("ld\\.?script\\'" . ld-script-mode
)
2642 ;; .xs is also used for ld scripts, but seems to be more commonly
2643 ;; associated with Perl .xs files (C with Perl bindings). (Bug#7071)
2644 ("\\.xs\\'" . c-mode
)
2645 ;; Explained in binutils ld/genscripts.sh. Eg:
2646 ;; A .x script file is the default script.
2647 ;; A .xr script is for linking without relocation (-r flag). Etc.
2648 ("\\.x[abdsru]?[cnw]?\\'" . ld-script-mode
)
2649 ("\\.zone\\'" . dns-mode
)
2650 ("\\.soa\\'" . dns-mode
)
2651 ;; Common Lisp ASDF package system.
2652 ("\\.asd\\'" . lisp-mode
)
2653 ("\\.\\(asn\\|mib\\|smi\\)\\'" . snmp-mode
)
2654 ("\\.\\(as\\|mi\\|sm\\)2\\'" . snmpv2-mode
)
2655 ("\\.\\(diffs?\\|patch\\|rej\\)\\'" . diff-mode
)
2656 ("\\.\\(dif\\|pat\\)\\'" . diff-mode
) ; for MS-DOS
2657 ("\\.[eE]?[pP][sS]\\'" . ps-mode
)
2658 ("\\.\\(?:PDF\\|DVI\\|OD[FGPST]\\|DOCX?\\|XLSX?\\|PPTX?\\|pdf\\|djvu\\|dvi\\|od[fgpst]\\|docx?\\|xlsx?\\|pptx?\\)\\'" . doc-view-mode-maybe
)
2659 ("configure\\.\\(ac\\|in\\)\\'" . autoconf-mode
)
2660 ("\\.s\\(v\\|iv\\|ieve\\)\\'" . sieve-mode
)
2661 ("BROWSE\\'" . ebrowse-tree-mode
)
2662 ("\\.ebrowse\\'" . ebrowse-tree-mode
)
2663 ("#\\*mail\\*" . mail-mode
)
2664 ("\\.g\\'" . antlr-mode
)
2665 ("\\.mod\\'" . m2-mode
)
2666 ("\\.ses\\'" . ses-mode
)
2667 ("\\.docbook\\'" . sgml-mode
)
2668 ("\\.com\\'" . dcl-mode
)
2669 ("/config\\.\\(?:bat\\|log\\)\\'" . fundamental-mode
)
2670 ;; Windows candidates may be opened case sensitively on Unix
2671 ("\\.\\(?:[iI][nN][iI]\\|[lL][sS][tT]\\|[rR][eE][gG]\\|[sS][yY][sS]\\)\\'" . conf-mode
)
2672 ("\\.la\\'" . conf-unix-mode
)
2673 ("\\.ppd\\'" . conf-ppd-mode
)
2674 ("java.+\\.conf\\'" . conf-javaprop-mode
)
2675 ("\\.properties\\(?:\\.[a-zA-Z0-9._-]+\\)?\\'" . conf-javaprop-mode
)
2676 ("\\.toml\\'" . conf-toml-mode
)
2677 ("\\.desktop\\'" . conf-desktop-mode
)
2678 ("\\`/etc/\\(?:DIR_COLORS\\|ethers\\|.?fstab\\|.*hosts\\|lesskey\\|login\\.?de\\(?:fs\\|vperm\\)\\|magic\\|mtab\\|pam\\.d/.*\\|permissions\\(?:\\.d/.+\\)?\\|protocols\\|rpc\\|services\\)\\'" . conf-space-mode
)
2679 ("\\`/etc/\\(?:acpid?/.+\\|aliases\\(?:\\.d/.+\\)?\\|default/.+\\|group-?\\|hosts\\..+\\|inittab\\|ksysguarddrc\\|opera6rc\\|passwd-?\\|shadow-?\\|sysconfig/.+\\)\\'" . conf-mode
)
2680 ;; ChangeLog.old etc. Other change-log-mode entries are above;
2681 ;; this has lower priority to avoid matching changelog.sgml etc.
2682 ("[cC]hange[lL]og[-.][-0-9a-z]+\\'" . change-log-mode
)
2683 ;; either user's dot-files or under /etc or some such
2684 ("/\\.?\\(?:gitconfig\\|gnokiirc\\|hgrc\\|kde.*rc\\|mime\\.types\\|wgetrc\\)\\'" . conf-mode
)
2685 ;; alas not all ~/.*rc files are like this
2686 ("/\\.\\(?:enigma\\|gltron\\|gtk\\|hxplayer\\|net\\|neverball\\|qt/.+\\|realplayer\\|scummvm\\|sversion\\|sylpheed/.+\\|xmp\\)rc\\'" . conf-mode
)
2687 ("/\\.\\(?:gdbtkinit\\|grip\\|orbital/.+txt\\|rhosts\\|tuxracer/options\\)\\'" . conf-mode
)
2688 ("/\\.?X\\(?:default\\|resource\\|re\\)s\\>" . conf-xdefaults-mode
)
2689 ("/X11.+app-defaults/\\|\\.ad\\'" . conf-xdefaults-mode
)
2690 ("/X11.+locale/.+/Compose\\'" . conf-colon-mode
)
2691 ;; this contains everything twice, with space and with colon :-(
2692 ("/X11.+locale/compose\\.dir\\'" . conf-javaprop-mode
)
2693 ;; Get rid of any trailing .n.m and try again.
2694 ;; This is for files saved by cvs-merge that look like .#<file>.<rev>
2695 ;; or .#<file>.<rev>-<rev> or VC's <file>.~<rev>~.
2696 ;; Using mode nil rather than `ignore' would let the search continue
2697 ;; through this list (with the shortened name) rather than start over.
2698 ("\\.~?[0-9]+\\.[0-9][-.0-9]*~?\\'" nil t
)
2699 ("\\.\\(?:orig\\|in\\|[bB][aA][kK]\\)\\'" nil t
)
2700 ;; This should come after "in" stripping (e.g. config.h.in).
2701 ;; *.cf, *.cfg, *.conf, *.config[.local|.de_DE.UTF8|...], */config
2702 ("[/.]c\\(?:on\\)?f\\(?:i?g\\)?\\(?:\\.[a-zA-Z0-9._-]+\\)?\\'" . conf-mode-maybe
)
2703 ;; The following should come after the ChangeLog pattern
2704 ;; for the sake of ChangeLog.1, etc.
2705 ;; and after the .scm.[0-9] and CVS' <file>.<rev> patterns too.
2706 ("\\.[1-9]\\'" . nroff-mode
)))
2707 "Alist of filename patterns vs corresponding major mode functions.
2708 Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL).
2709 \(NON-NIL stands for anything that is not nil; the value does not matter.)
2710 Visiting a file whose name matches REGEXP specifies FUNCTION as the
2711 mode function to use. FUNCTION will be called, unless it is nil.
2713 If the element has the form (REGEXP FUNCTION NON-NIL), then after
2714 calling FUNCTION (if it's not nil), we delete the suffix that matched
2715 REGEXP and search the list again for another match.
2717 The extensions whose FUNCTION is `archive-mode' should also
2718 appear in `auto-coding-alist' with `no-conversion' coding system.
2720 See also `interpreter-mode-alist', which detects executable script modes
2721 based on the interpreters they specify to run,
2722 and `magic-mode-alist', which determines modes based on file contents.")
2723 (put 'auto-mode-alist
'risky-local-variable t
)
2725 (defun conf-mode-maybe ()
2726 "Select Conf mode or XML mode according to start of file."
2730 (goto-char (point-min))
2731 (looking-at "<\\?xml \\|<!-- \\|<!DOCTYPE ")))
2735 (defvar interpreter-mode-alist
2736 ;; Note: The entries for the modes defined in cc-mode.el (awk-mode
2737 ;; and pike-mode) are added through autoload directives in that
2738 ;; file. That way is discouraged since it spreads out the
2739 ;; definition of the initial value.
2742 (cons (purecopy (car l
)) (cdr l
)))
2743 '(("\\(mini\\)?perl5?" . perl-mode
)
2744 ("wishx?" . tcl-mode
)
2745 ("tcl\\(sh\\)?" . tcl-mode
)
2746 ("expect" . tcl-mode
)
2747 ("octave" . octave-mode
)
2748 ("scm" . scheme-mode
)
2749 ("[acjkwz]sh" . sh-mode
)
2750 ("r?bash2?" . sh-mode
)
2753 ("\\(dt\\|pd\\|w\\)ksh" . sh-mode
)
2755 ("i?tcsh" . sh-mode
)
2760 ("tail" . text-mode
)
2761 ("more" . text-mode
)
2762 ("less" . text-mode
)
2764 ("make" . makefile-gmake-mode
) ; Debian uses this
2765 ("guile" . scheme-mode
)
2766 ("clisp" . lisp-mode
)
2767 ("emacs" . emacs-lisp-mode
)))
2768 "Alist mapping interpreter names to major modes.
2769 This is used for files whose first lines match `auto-mode-interpreter-regexp'.
2770 Each element looks like (REGEXP . MODE).
2771 If REGEXP matches the entire name (minus any directory part) of
2772 the interpreter specified in the first line of a script, enable
2775 See also `auto-mode-alist'.")
2777 (define-obsolete-variable-alias 'inhibit-first-line-modes-regexps
2778 'inhibit-file-local-variables-regexps
"24.1")
2780 ;; TODO really this should be a list of modes (eg tar-mode), not regexps,
2781 ;; because we are duplicating info from auto-mode-alist.
2782 ;; TODO many elements of this list are also in auto-coding-alist.
2783 (defvar inhibit-local-variables-regexps
2784 (mapcar 'purecopy
'("\\.tar\\'" "\\.t[bg]z\\'"
2785 "\\.arc\\'" "\\.zip\\'" "\\.lzh\\'" "\\.lha\\'"
2786 "\\.zoo\\'" "\\.[jew]ar\\'" "\\.xpi\\'" "\\.rar\\'"
2788 "\\.sx[dmicw]\\'" "\\.odt\\'"
2789 "\\.diff\\'" "\\.patch\\'"
2790 "\\.tiff?\\'" "\\.gif\\'" "\\.png\\'" "\\.jpe?g\\'"))
2791 "List of regexps matching file names in which to ignore local variables.
2792 This includes `-*-' lines as well as trailing \"Local Variables\" sections.
2793 Files matching this list are typically binary file formats.
2794 They may happen to contain sequences that look like local variable
2795 specifications, but are not really, or they may be containers for
2796 member files with their own local variable sections, which are
2797 not appropriate for the containing file.
2798 The function `inhibit-local-variables-p' uses this.")
2800 (define-obsolete-variable-alias 'inhibit-first-line-modes-suffixes
2801 'inhibit-local-variables-suffixes
"24.1")
2803 (defvar inhibit-local-variables-suffixes nil
2804 "List of regexps matching suffixes to remove from file names.
2805 The function `inhibit-local-variables-p' uses this: when checking
2806 a file name, it first discards from the end of the name anything that
2807 matches one of these regexps.")
2809 ;; Can't think of any situation in which you'd want this to be nil...
2810 (defvar inhibit-local-variables-ignore-case t
2811 "Non-nil means `inhibit-local-variables-p' ignores case.")
2813 (defun inhibit-local-variables-p ()
2814 "Return non-nil if file local variables should be ignored.
2815 This checks the file (or buffer) name against `inhibit-local-variables-regexps'
2816 and `inhibit-local-variables-suffixes'. If
2817 `inhibit-local-variables-ignore-case' is non-nil, this ignores case."
2818 (let ((temp inhibit-local-variables-regexps
)
2819 (name (if buffer-file-name
2820 (file-name-sans-versions buffer-file-name
)
2822 (case-fold-search inhibit-local-variables-ignore-case
))
2823 (while (let ((sufs inhibit-local-variables-suffixes
))
2824 (while (and sufs
(not (string-match (car sufs
) name
)))
2825 (setq sufs
(cdr sufs
)))
2827 (setq name
(substring name
0 (match-beginning 0))))
2829 (not (string-match (car temp
) name
)))
2830 (setq temp
(cdr temp
)))
2833 (defvar auto-mode-interpreter-regexp
2834 (purecopy "#![ \t]?\\([^ \t\n]*\
2835 /bin/env[ \t]\\)?\\([^ \t\n]+\\)")
2836 "Regexp matching interpreters, for file mode determination.
2837 This regular expression is matched against the first line of a file
2838 to determine the file's mode in `set-auto-mode'. If it matches, the file
2839 is assumed to be interpreted by the interpreter matched by the second group
2840 of the regular expression. The mode is then determined as the mode
2841 associated with that interpreter in `interpreter-mode-alist'.")
2843 (defvar magic-mode-alist nil
2844 "Alist of buffer beginnings vs. corresponding major mode functions.
2845 Each element looks like (REGEXP . FUNCTION) or (MATCH-FUNCTION . FUNCTION).
2846 After visiting a file, if REGEXP matches the text at the beginning of the
2847 buffer, or calling MATCH-FUNCTION returns non-nil, `normal-mode' will
2848 call FUNCTION rather than allowing `auto-mode-alist' to decide the buffer's
2851 If FUNCTION is nil, then it is not called. (That is a way of saying
2852 \"allow `auto-mode-alist' to decide for these files.\")")
2853 (put 'magic-mode-alist
'risky-local-variable t
)
2855 (defvar magic-fallback-mode-alist
2857 `((image-type-auto-detected-p . image-mode
)
2858 ("\\(PK00\\)?[P]K\003\004" . archive-mode
) ; zip
2859 ;; The < comes before the groups (but the first) to reduce backtracking.
2860 ;; TODO: UTF-16 <?xml may be preceded by a BOM 0xff 0xfe or 0xfe 0xff.
2861 ;; We use [ \t\r\n] instead of `\\s ' to make regex overflow less likely.
2862 (,(let* ((incomment-re "\\(?:[^-]\\|-[^-]\\)")
2863 (comment-re (concat "\\(?:!--" incomment-re
"*-->[ \t\r\n]*<\\)")))
2864 (concat "\\(?:<\\?xml[ \t\r\n]+[^>]*>\\)?[ \t\r\n]*<"
2866 "\\(?:!DOCTYPE[ \t\r\n]+[^>]*>[ \t\r\n]*<[ \t\r\n]*" comment-re
"*\\)?"
2867 "[Hh][Tt][Mm][Ll]"))
2869 ("<!DOCTYPE[ \t\r\n]+[Hh][Tt][Mm][Ll]" . mhtml-mode
)
2870 ;; These two must come after html, because they are more general:
2871 ("<\\?xml " . xml-mode
)
2872 (,(let* ((incomment-re "\\(?:[^-]\\|-[^-]\\)")
2873 (comment-re (concat "\\(?:!--" incomment-re
"*-->[ \t\r\n]*<\\)")))
2874 (concat "[ \t\r\n]*<" comment-re
"*!DOCTYPE "))
2877 ("# xmcd " . conf-unix-mode
)))
2878 "Like `magic-mode-alist' but has lower priority than `auto-mode-alist'.
2879 Each element looks like (REGEXP . FUNCTION) or (MATCH-FUNCTION . FUNCTION).
2880 After visiting a file, if REGEXP matches the text at the beginning of the
2881 buffer, or calling MATCH-FUNCTION returns non-nil, `normal-mode' will
2882 call FUNCTION, provided that `magic-mode-alist' and `auto-mode-alist'
2883 have not specified a mode for this file.
2885 If FUNCTION is nil, then it is not called.")
2886 (put 'magic-fallback-mode-alist
'risky-local-variable t
)
2888 (defvar magic-mode-regexp-match-limit
4000
2889 "Upper limit on `magic-mode-alist' regexp matches.
2890 Also applies to `magic-fallback-mode-alist'.")
2892 (defun set-auto-mode (&optional keep-mode-if-same
)
2893 "Select major mode appropriate for current buffer.
2895 To find the right major mode, this function checks for a -*- mode tag
2896 checks for a `mode:' entry in the Local Variables section of the file,
2897 checks if it uses an interpreter listed in `interpreter-mode-alist',
2898 matches the buffer beginning against `magic-mode-alist',
2899 compares the filename against the entries in `auto-mode-alist',
2900 then matches the buffer beginning against `magic-fallback-mode-alist'.
2902 If `enable-local-variables' is nil, or if the file name matches
2903 `inhibit-local-variables-regexps', this function does not check
2904 for any mode: tag anywhere in the file. If `local-enable-local-variables'
2905 is nil, then the only mode: tag that can be relevant is a -*- one.
2907 If the optional argument KEEP-MODE-IF-SAME is non-nil, then we
2908 set the major mode only if that would change it. In other words
2909 we don't actually set it to the same mode the buffer already has."
2910 ;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*-
2911 (let ((try-locals (not (inhibit-local-variables-p)))
2912 end done mode modes
)
2913 ;; Once we drop the deprecated feature where mode: is also allowed to
2914 ;; specify minor-modes (ie, there can be more than one "mode:"), we can
2915 ;; remove this section and just let (hack-local-variables t) handle it.
2916 ;; Find a -*- mode tag.
2918 (goto-char (point-min))
2919 (skip-chars-forward " \t\n")
2920 ;; Note by design local-enable-local-variables does not matter here.
2921 (and enable-local-variables
2923 (setq end
(set-auto-mode-1))
2924 (if (save-excursion (search-forward ":" end t
))
2925 ;; Find all specifications for the `mode:' variable
2926 ;; and execute them left to right.
2927 (while (let ((case-fold-search t
))
2928 (or (and (looking-at "mode:")
2929 (goto-char (match-end 0)))
2930 (re-search-forward "[ \t;]mode:" end t
)))
2931 (skip-chars-forward " \t")
2932 (let ((beg (point)))
2933 (if (search-forward ";" end t
)
2936 (skip-chars-backward " \t")
2937 (push (intern (concat (downcase (buffer-substring beg
(point))) "-mode"))
2939 ;; Simple -*-MODE-*- case.
2940 (push (intern (concat (downcase (buffer-substring (point) end
))
2943 ;; If we found modes to use, invoke them now, outside the save-excursion.
2946 (dolist (mode (nreverse modes
))
2947 (if (not (functionp mode
))
2948 (message "Ignoring unknown mode `%s'" mode
)
2950 (or (set-auto-mode-0 mode keep-mode-if-same
)
2951 ;; continuing would call minor modes again, toggling them off
2952 (throw 'nop nil
))))))
2953 ;; hack-local-variables checks local-enable-local-variables etc, but
2954 ;; we might as well be explicit here for the sake of clarity.
2956 enable-local-variables
2957 local-enable-local-variables
2959 (setq mode
(hack-local-variables t
))
2960 (not (memq mode modes
)) ; already tried and failed
2961 (if (not (functionp mode
))
2962 (message "Ignoring unknown mode `%s'" mode
)
2964 (set-auto-mode-0 mode keep-mode-if-same
)))
2965 ;; If we didn't, look for an interpreter specified in the first line.
2966 ;; As a special case, allow for things like "#!/bin/env perl", which
2967 ;; finds the interpreter anywhere in $PATH.
2969 (setq mode
(save-excursion
2970 (goto-char (point-min))
2971 (if (looking-at auto-mode-interpreter-regexp
)
2973 ;; Map interpreter name to a mode, signaling we're done at the
2975 (setq done
(assoc-default
2976 (file-name-nondirectory mode
)
2979 (format "\\`%s\\'" (car e
))
2981 interpreter-mode-alist
)
2983 ;; If we found an interpreter mode to use, invoke it now.
2984 (set-auto-mode-0 done keep-mode-if-same
))
2985 ;; Next try matching the buffer beginning against magic-mode-alist.
2987 (if (setq done
(save-excursion
2988 (goto-char (point-min))
2990 (narrow-to-region (point-min)
2992 (+ (point-min) magic-mode-regexp-match-limit
)))
2994 nil magic-mode-alist
3003 "Problem in magic-mode-alist with element %s"
3005 (set-auto-mode-0 done keep-mode-if-same
)))
3006 ;; Next compare the filename against the entries in auto-mode-alist.
3008 (if buffer-file-name
3009 (let ((name buffer-file-name
)
3010 (remote-id (file-remote-p buffer-file-name
))
3011 (case-insensitive-p (file-name-case-insensitive-p
3013 ;; Remove backup-suffixes from file name.
3014 (setq name
(file-name-sans-versions name
))
3015 ;; Remove remote file name identification.
3016 (when (and (stringp remote-id
)
3017 (string-match (regexp-quote remote-id
) name
))
3018 (setq name
(substring name
(match-end 0))))
3020 ;; Find first matching alist entry.
3022 (if case-insensitive-p
3023 ;; Filesystem is case-insensitive.
3024 (let ((case-fold-search t
))
3025 (assoc-default name auto-mode-alist
3027 ;; Filesystem is case-sensitive.
3029 ;; First match case-sensitively.
3030 (let ((case-fold-search nil
))
3031 (assoc-default name auto-mode-alist
3033 ;; Fallback to case-insensitive match.
3034 (and auto-mode-case-fold
3035 (let ((case-fold-search t
))
3036 (assoc-default name auto-mode-alist
3041 (setq mode
(car mode
)
3042 name
(substring name
0 (match-beginning 0)))
3045 (set-auto-mode-0 mode keep-mode-if-same
)
3047 ;; Next try matching the buffer beginning against magic-fallback-mode-alist.
3049 (if (setq done
(save-excursion
3050 (goto-char (point-min))
3052 (narrow-to-region (point-min)
3054 (+ (point-min) magic-mode-regexp-match-limit
)))
3055 (assoc-default nil magic-fallback-mode-alist
3064 "Problem with magic-fallback-mode-alist element: %s"
3066 (set-auto-mode-0 done keep-mode-if-same
)))
3068 (set-buffer-major-mode (current-buffer)))))
3070 ;; When `keep-mode-if-same' is set, we are working on behalf of
3071 ;; set-visited-file-name. In that case, if the major mode specified is the
3072 ;; same one we already have, don't actually reset it. We don't want to lose
3073 ;; minor modes such as Font Lock.
3074 (defun set-auto-mode-0 (mode &optional keep-mode-if-same
)
3075 "Apply MODE and return it.
3076 If optional arg KEEP-MODE-IF-SAME is non-nil, MODE is chased of
3077 any aliases and compared to current major mode. If they are the
3078 same, do nothing and return nil."
3079 (unless (and keep-mode-if-same
3080 (eq (indirect-function mode
)
3081 (indirect-function major-mode
)))
3086 (defvar file-auto-mode-skip
"^\\(#!\\|'\\\\\"\\)"
3087 "Regexp of lines to skip when looking for file-local settings.
3088 If the first line matches this regular expression, then the -*-...-*- file-
3089 local settings will be consulted on the second line instead of the first.")
3091 (defun set-auto-mode-1 ()
3092 "Find the -*- spec in the buffer.
3093 Call with point at the place to start searching from.
3094 If one is found, set point to the beginning and return the position
3095 of the end. Otherwise, return nil; may change point.
3096 The variable `inhibit-local-variables-regexps' can cause a -*- spec to
3097 be ignored; but `enable-local-variables' and `local-enable-local-variables'
3101 ;; Don't look for -*- if this file name matches any
3102 ;; of the regexps in inhibit-local-variables-regexps.
3103 (not (inhibit-local-variables-p))
3104 (search-forward "-*-" (line-end-position
3105 ;; If the file begins with "#!" (exec
3106 ;; interpreter magic), look for mode frobs
3107 ;; in the first two lines. You cannot
3108 ;; necessarily put them in the first line
3109 ;; of such a file without screwing up the
3110 ;; interpreter invocation. The same holds
3111 ;; for '\" in man pages (preprocessor
3112 ;; magic for the `man' program).
3113 (and (looking-at file-auto-mode-skip
) 2)) t
)
3115 (skip-chars-forward " \t")
3117 (search-forward "-*-" (line-end-position) t
))
3120 (skip-chars-backward " \t")
3125 ;;; Handling file local variables
3127 (defvar ignored-local-variables
3128 '(ignored-local-variables safe-local-variable-values
3129 file-local-variables-alist dir-local-variables-alist
)
3130 "Variables to be ignored in a file's local variable spec.")
3131 (put 'ignored-local-variables
'risky-local-variable t
)
3133 (defvar hack-local-variables-hook nil
3134 "Normal hook run after processing a file's local variables specs.
3135 Major modes can use this to examine user-specified local variables
3136 in order to initialize other data structure based on them.")
3138 (defcustom safe-local-variable-values nil
3139 "List variable-value pairs that are considered safe.
3140 Each element is a cons cell (VAR . VAL), where VAR is a variable
3141 symbol and VAL is a value that is considered safe."
3146 (defcustom safe-local-eval-forms
3147 ;; This should be here at least as long as Emacs supports write-file-hooks.
3148 '((add-hook 'write-file-hooks
'time-stamp
)
3149 (add-hook 'write-file-functions
'time-stamp
)
3150 (add-hook 'before-save-hook
'time-stamp nil t
)
3151 (add-hook 'before-save-hook
'delete-trailing-whitespace nil t
))
3152 "Expressions that are considered safe in an `eval:' local variable.
3153 Add expressions to this list if you want Emacs to evaluate them, when
3154 they appear in an `eval' local variable specification, without first
3155 asking you for confirmation."
3158 :version
"24.1" ; added write-file-hooks
3159 :type
'(repeat sexp
))
3161 ;; Risky local variables:
3162 (mapc (lambda (var) (put var
'risky-local-variable t
))
3164 buffer-auto-save-file-name
3166 buffer-file-truename
3169 default-text-properties
3173 file-name-handler-alist
3182 minor-mode-map-alist
3183 minor-mode-overriding-map-alist
3186 overriding-local-map
3187 overriding-terminal-local-map
3191 unread-command-events
))
3193 ;; Safe local variables:
3195 ;; For variables defined by major modes, the safety declarations can go into
3196 ;; the major mode's file, since that will be loaded before file variables are
3199 ;; For variables defined by minor modes, put the safety declarations in the
3200 ;; file defining the minor mode after the defcustom/defvar using an autoload
3203 ;; ;;;###autoload(put 'variable 'safe-local-variable 'stringp)
3205 ;; Otherwise, when Emacs visits a file specifying that local variable, the
3206 ;; minor mode file may not be loaded yet.
3208 ;; For variables defined in the C source code the declaration should go here:
3211 '((buffer-read-only . booleanp
) ;; C source code
3212 (default-directory . stringp
) ;; C source code
3213 (fill-column . integerp
) ;; C source code
3214 (indent-tabs-mode . booleanp
) ;; C source code
3215 (left-margin . integerp
) ;; C source code
3216 (no-update-autoloads . booleanp
)
3217 (lexical-binding . booleanp
) ;; C source code
3218 (tab-width . integerp
) ;; C source code
3219 (truncate-lines . booleanp
) ;; C source code
3220 (word-wrap . booleanp
) ;; C source code
3221 (bidi-display-reordering . booleanp
))) ;; C source code
3222 (put (car pair
) 'safe-local-variable
(cdr pair
)))
3224 (put 'bidi-paragraph-direction
'safe-local-variable
3225 (lambda (v) (memq v
'(nil right-to-left left-to-right
))))
3227 (put 'c-set-style
'safe-local-eval-function t
)
3229 (defvar file-local-variables-alist nil
3230 "Alist of file-local variable settings in the current buffer.
3231 Each element in this list has the form (VAR . VALUE), where VAR
3232 is a file-local variable (a symbol) and VALUE is the value
3233 specified. The actual value in the buffer may differ from VALUE,
3234 if it is changed by the major or minor modes, or by the user.")
3235 (make-variable-buffer-local 'file-local-variables-alist
)
3236 (put 'file-local-variables-alist
'permanent-local t
)
3238 (defvar dir-local-variables-alist nil
3239 "Alist of directory-local variable settings in the current buffer.
3240 Each element in this list has the form (VAR . VALUE), where VAR
3241 is a directory-local variable (a symbol) and VALUE is the value
3242 specified in .dir-locals.el. The actual value in the buffer
3243 may differ from VALUE, if it is changed by the major or minor modes,
3245 (make-variable-buffer-local 'dir-local-variables-alist
)
3247 (defvar before-hack-local-variables-hook nil
3248 "Normal hook run before setting file-local variables.
3249 It is called after checking for unsafe/risky variables and
3250 setting `file-local-variables-alist', and before applying the
3251 variables stored in `file-local-variables-alist'. A hook
3252 function is allowed to change the contents of this alist.
3254 This hook is called only if there is at least one file-local
3257 (defun hack-local-variables-confirm (all-vars unsafe-vars risky-vars dir-name
)
3258 "Get confirmation before setting up local variable values.
3259 ALL-VARS is the list of all variables to be set up.
3260 UNSAFE-VARS is the list of those that aren't marked as safe or risky.
3261 RISKY-VARS is the list of those that are marked as risky.
3262 If these settings come from directory-local variables, then
3263 DIR-NAME is the name of the associated directory. Otherwise it is nil."
3264 (unless noninteractive
3265 (let ((name (cond (dir-name)
3267 (file-name-nondirectory buffer-file-name
))
3268 ((concat "buffer " (buffer-name)))))
3269 (offer-save (and (eq enable-local-variables t
)
3271 (buf (get-buffer-create "*Local Variables*")))
3272 ;; Set up the contents of the *Local Variables* buffer.
3273 (with-current-buffer buf
3277 (insert "The local variables list in " name
3278 "\ncontains values that may not be safe (*)"
3280 ", and variables that are risky (**)."
3283 (insert "The local variables list in " name
3284 "\ncontains variables that are risky (**)."))
3286 (insert "A local variables list is specified in " name
".")))
3287 (insert "\n\nDo you want to apply it? You can type
3288 y -- to apply the local variables list.
3289 n -- to ignore the local variables list.")
3292 ! -- to apply the local variables list, and permanently mark these
3293 values (*) as safe (in the future, they will be set automatically.)\n\n")
3295 (dolist (elt all-vars
)
3296 (cond ((member elt unsafe-vars
)
3298 ((member elt risky-vars
)
3302 (princ (car elt
) buf
)
3304 ;; Make strings with embedded whitespace easier to read.
3305 (let ((print-escape-newlines t
))
3306 (prin1 (cdr elt
) buf
))
3308 (set (make-local-variable 'cursor-type
) nil
)
3309 (set-buffer-modified-p nil
)
3310 (goto-char (point-min)))
3312 ;; Display the buffer and read a choice.
3313 (save-window-excursion
3315 (let* ((exit-chars '(?y ?n ?\s ?\C-g ?\C-v
))
3316 (prompt (format "Please type %s%s: "
3317 (if offer-save
"y, n, or !" "y or n")
3318 (if (< (line-number-at-pos (point-max))
3319 (window-body-height))
3321 (push ?\C-v exit-chars
)
3322 ", or C-v to scroll")))
3324 (if offer-save
(push ?
! exit-chars
))
3326 (setq char
(read-char-choice prompt exit-chars t
))
3327 (when (eq char ?\C-v
)
3330 (error (goto-char (point-min))
3333 (when (and offer-save
(= char ?
!) unsafe-vars
)
3334 (customize-push-and-save 'safe-local-variable-values unsafe-vars
))
3335 (prog1 (memq char
'(?
! ?\s ?y
))
3336 (quit-window t
)))))))
3338 (defconst hack-local-variable-regexp
3339 "[ \t]*\\([^][;\"'?()\\ \t\n]+\\)[ \t]*:[ \t]*")
3341 (defun hack-local-variables-prop-line (&optional handle-mode
)
3342 "Return local variables specified in the -*- line.
3343 Usually returns an alist of elements (VAR . VAL), where VAR is a
3344 variable and VAL is the specified value. Ignores any
3345 specification for `coding:', and sometimes for `mode' (which
3346 should have already been handled by `set-auto-coding' and
3347 `set-auto-mode', respectively). Return nil if the -*- line is
3350 If HANDLE-MODE is nil, we return the alist of all the local
3351 variables in the line except `coding' as described above. If it
3352 is neither nil nor t, we do the same, except that any settings of
3353 `mode' and `coding' are ignored. If HANDLE-MODE is t, we ignore
3354 all settings in the line except for `mode', which \(if present) we
3355 return as the symbol specifying the mode."
3356 (catch 'malformed-line
3358 (goto-char (point-min))
3359 (let ((end (set-auto-mode-1))
3363 ((looking-at "[ \t]*\\([^ \t\n\r:;]+\\)\\([ \t]*-\\*-\\)")
3364 ;; Simple form: "-*- MODENAME -*-".
3365 (if (eq handle-mode t
)
3366 (intern (concat (match-string 1) "-mode"))))
3368 ;; Hairy form: '-*-' [ <variable> ':' <value> ';' ]* '-*-'
3369 ;; (last ";" is optional).
3370 ;; If HANDLE-MODE is t, just check for `mode'.
3371 ;; Otherwise, parse the -*- line into the RESULT alist.
3372 (while (not (or (and (eq handle-mode t
) result
)
3374 (unless (looking-at hack-local-variable-regexp
)
3375 (message "Malformed mode-line: %S"
3376 (buffer-substring-no-properties (point) end
))
3377 (throw 'malformed-line nil
))
3378 (goto-char (match-end 0))
3379 ;; There used to be a downcase here,
3380 ;; but the manual didn't say so,
3381 ;; and people want to set var names that aren't all lc.
3382 (let* ((key (intern (match-string 1)))
3383 (val (save-restriction
3384 (narrow-to-region (point) end
)
3385 (let ((read-circle nil
))
3386 (read (current-buffer)))))
3387 ;; It is traditional to ignore
3388 ;; case when checking for `mode' in set-auto-mode,
3389 ;; so we must do that here as well.
3390 ;; That is inconsistent, but we're stuck with it.
3391 ;; The same can be said for `coding' in set-auto-coding.
3392 (keyname (downcase (symbol-name key
))))
3395 (and (equal keyname
"mode")
3397 (intern (concat (downcase (symbol-name val
))
3399 ((equal keyname
"coding"))
3401 (when (or (not handle-mode
)
3402 (not (equal keyname
"mode")))
3404 (push (cons (cond ((eq key
'eval
) 'eval
)
3405 ;; Downcase "Mode:".
3406 ((equal keyname
"mode") 'mode
)
3407 (t (indirect-variable key
)))
3411 (skip-chars-forward " \t;")))
3414 (defun hack-local-variables-filter (variables dir-name
)
3415 "Filter local variable settings, querying the user if necessary.
3416 VARIABLES is the alist of variable-value settings. This alist is
3417 filtered based on the values of `ignored-local-variables',
3418 `enable-local-eval', `enable-local-variables', and (if necessary)
3419 user interaction. The results are added to
3420 `file-local-variables-alist', without applying them.
3421 If these settings come from directory-local variables, then
3422 DIR-NAME is the name of the associated directory. Otherwise it is nil."
3423 ;; Find those variables that we may want to save to
3424 ;; `safe-local-variable-values'.
3425 (let (all-vars risky-vars unsafe-vars
)
3426 (dolist (elt variables
)
3427 (let ((var (car elt
))
3429 (cond ((memq var ignored-local-variables
)
3430 ;; Ignore any variable in `ignored-local-variables'.
3432 ;; Obey `enable-local-eval'.
3434 (when enable-local-eval
3435 (let ((safe (or (hack-one-local-variable-eval-safep val
)
3436 ;; In case previously marked safe (bug#5636).
3437 (safe-local-variable-p var val
))))
3438 ;; If not safe and e-l-v = :safe, ignore totally.
3439 (when (or safe
(not (eq enable-local-variables
:safe
)))
3441 (or (eq enable-local-eval t
)
3443 (push elt unsafe-vars
))))))
3444 ;; Ignore duplicates (except `mode') in the present list.
3445 ((and (assq var all-vars
) (not (eq var
'mode
))) nil
)
3446 ;; Accept known-safe variables.
3447 ((or (memq var
'(mode unibyte coding
))
3448 (safe-local-variable-p var val
))
3449 (push elt all-vars
))
3450 ;; The variable is either risky or unsafe:
3451 ((not (eq enable-local-variables
:safe
))
3453 (if (risky-local-variable-p var val
)
3454 (push elt risky-vars
)
3455 (push elt unsafe-vars
))))))
3457 ;; Query, unless all vars are safe or user wants no querying.
3458 (or (and (eq enable-local-variables t
)
3461 (memq enable-local-variables
'(:all
:safe
))
3462 (hack-local-variables-confirm all-vars unsafe-vars
3463 risky-vars dir-name
))
3464 (dolist (elt all-vars
)
3465 (unless (memq (car elt
) '(eval mode
))
3467 (setq dir-local-variables-alist
3468 (assq-delete-all (car elt
) dir-local-variables-alist
)))
3469 (setq file-local-variables-alist
3470 (assq-delete-all (car elt
) file-local-variables-alist
)))
3471 (push elt file-local-variables-alist
)))))
3473 ;; TODO? Warn once per file rather than once per session?
3474 (defvar hack-local-variables--warned-lexical nil
)
3476 (defun hack-local-variables (&optional handle-mode
)
3477 "Parse and put into effect this buffer's local variables spec.
3478 Uses `hack-local-variables-apply' to apply the variables.
3480 If HANDLE-MODE is nil, we apply all the specified local
3481 variables. If HANDLE-MODE is neither nil nor t, we do the same,
3482 except that any settings of `mode' are ignored.
3484 If HANDLE-MODE is t, all we do is check whether a \"mode:\"
3485 is specified, and return the corresponding mode symbol, or nil.
3486 In this case, we try to ignore minor-modes, and only return a
3489 If `enable-local-variables' or `local-enable-local-variables' is nil,
3490 this function does nothing. If `inhibit-local-variables-regexps'
3491 applies to the file in question, the file is not scanned for
3492 local variables, but directory-local variables may still be applied."
3493 ;; We don't let inhibit-local-variables-p influence the value of
3494 ;; enable-local-variables, because then it would affect dir-local
3495 ;; variables. We don't want to search eg tar files for file local
3496 ;; variable sections, but there is no reason dir-locals cannot apply
3497 ;; to them. The real meaning of inhibit-local-variables-p is "do
3498 ;; not scan this file for local variables".
3499 (let ((enable-local-variables
3500 (and local-enable-local-variables enable-local-variables
))
3502 (unless (eq handle-mode t
)
3503 (setq file-local-variables-alist nil
)
3504 (with-demoted-errors "Directory-local variables error: %s"
3505 ;; Note this is a no-op if enable-local-variables is nil.
3506 (hack-dir-local-variables)))
3507 ;; This entire function is basically a no-op if enable-local-variables
3508 ;; is nil. All it does is set file-local-variables-alist to nil.
3509 (when enable-local-variables
3510 ;; This part used to ignore enable-local-variables when handle-mode
3511 ;; was t. That was inappropriate, eg consider the
3512 ;; (artificial) example of:
3513 ;; (setq local-enable-local-variables nil)
3514 ;; Open a file foo.txt that contains "mode: sh".
3515 ;; It correctly opens in text-mode.
3516 ;; M-x set-visited-file name foo.c, and it incorrectly stays in text-mode.
3517 (unless (or (inhibit-local-variables-p)
3518 ;; If HANDLE-MODE is t, and the prop line specifies a
3519 ;; mode, then we're done, and have no need to scan further.
3520 (and (setq result
(hack-local-variables-prop-line
3522 (eq handle-mode t
)))
3523 ;; Look for "Local variables:" line in last page.
3525 (goto-char (point-max))
3526 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min))
3528 (when (let ((case-fold-search t
))
3529 (search-forward "Local Variables:" nil t
))
3530 (skip-chars-forward " \t")
3531 ;; suffix is what comes after "local variables:" in its line.
3532 ;; prefix is what comes before "local variables:" in its line.
3535 (regexp-quote (buffer-substring (point)
3536 (line-end-position)))
3539 (concat "^" (regexp-quote
3540 (buffer-substring (line-beginning-position)
3541 (match-beginning 0))))))
3544 (let ((startpos (point))
3546 (thisbuf (current-buffer)))
3548 (unless (let ((case-fold-search t
))
3550 (concat prefix
"[ \t]*End:[ \t]*" suffix
)
3552 ;; This used to be an error, but really all it means is
3553 ;; that this may simply not be a local-variables section,
3554 ;; so just ignore it.
3555 (message "Local variables list is not properly terminated"))
3557 (setq endpos
(point)))
3560 (insert-buffer-substring thisbuf startpos endpos
)
3561 (goto-char (point-min))
3562 (subst-char-in-region (point) (point-max) ?\^m ?
\n)
3564 ;; Discard the prefix.
3565 (if (looking-at prefix
)
3566 (delete-region (point) (match-end 0))
3567 (error "Local variables entry is missing the prefix"))
3569 ;; Discard the suffix.
3570 (if (looking-back suffix
(line-beginning-position))
3571 (delete-region (match-beginning 0) (point))
3572 (error "Local variables entry is missing the suffix"))
3574 (goto-char (point-min))
3576 (while (not (or (eobp)
3577 (and (eq handle-mode t
) result
)))
3578 ;; Find the variable name;
3579 (unless (looking-at hack-local-variable-regexp
)
3580 (error "Malformed local variable line: %S"
3581 (buffer-substring-no-properties
3582 (point) (line-end-position))))
3583 (goto-char (match-end 1))
3584 (let* ((str (match-string 1))
3587 (and (equal (downcase (symbol-name var
)) "mode")
3589 ;; Read the variable value.
3590 (skip-chars-forward "^:")
3592 (let ((read-circle nil
))
3593 (setq val
(read (current-buffer))))
3594 (if (eq handle-mode t
)
3596 ;; Specifying minor-modes via mode: is
3597 ;; deprecated, but try to reject them anyway.
3600 (setq val2
(downcase (symbol-name val
)))))
3601 (setq result
(intern (concat val2
"-mode"))))
3602 (cond ((eq var
'coding
))
3603 ((eq var
'lexical-binding
)
3604 (unless hack-local-variables--warned-lexical
3605 (setq hack-local-variables--warned-lexical t
)
3609 "%s: `lexical-binding' at end of file unreliable"
3610 (file-name-nondirectory
3611 ;; We are called from
3612 ;; 'with-temp-buffer', so we need
3613 ;; to use 'thisbuf's name in the
3615 (or (buffer-file-name thisbuf
) ""))))))
3616 ((and (eq var
'mode
) handle-mode
))
3619 (push (cons (if (eq var
'eval
)
3621 (indirect-variable var
))
3623 (forward-line 1))))))))
3624 ;; Now we've read all the local variables.
3625 ;; If HANDLE-MODE is t, return whether the mode was specified.
3626 (if (eq handle-mode t
) result
3627 ;; Otherwise, set the variables.
3628 (hack-local-variables-filter result nil
)
3629 (hack-local-variables-apply)))))
3631 (defun hack-local-variables-apply ()
3632 "Apply the elements of `file-local-variables-alist'.
3633 If there are any elements, runs `before-hack-local-variables-hook',
3634 then calls `hack-one-local-variable' to apply the alist elements one by one.
3635 Finishes by running `hack-local-variables-hook', regardless of whether
3636 the alist is empty or not.
3638 Note that this function ignores a `mode' entry if it specifies the same
3639 major mode as the buffer already has."
3640 (when file-local-variables-alist
3641 ;; Any 'evals must run in the Right sequence.
3642 (setq file-local-variables-alist
3643 (nreverse file-local-variables-alist
))
3644 (run-hooks 'before-hack-local-variables-hook
)
3645 (dolist (elt file-local-variables-alist
)
3646 (hack-one-local-variable (car elt
) (cdr elt
))))
3647 (run-hooks 'hack-local-variables-hook
))
3649 (defun safe-local-variable-p (sym val
)
3650 "Non-nil if SYM is safe as a file-local variable with value VAL.
3651 It is safe if any of these conditions are met:
3653 * There is a matching entry (SYM . VAL) in the
3654 `safe-local-variable-values' user option.
3656 * The `safe-local-variable' property of SYM is a function that
3657 evaluates to a non-nil value with VAL as an argument."
3658 (or (member (cons sym val
) safe-local-variable-values
)
3659 (let ((safep (get sym
'safe-local-variable
)))
3660 (and (functionp safep
)
3661 ;; If the function signals an error, that means it
3662 ;; can't assure us that the value is safe.
3663 (with-demoted-errors (funcall safep val
))))))
3665 (defun risky-local-variable-p (sym &optional _ignored
)
3666 "Non-nil if SYM could be dangerous as a file-local variable.
3667 It is dangerous if either of these conditions are met:
3669 * Its `risky-local-variable' property is non-nil.
3671 * Its name ends with \"hook(s)\", \"function(s)\", \"form(s)\", \"map\",
3672 \"program\", \"command(s)\", \"predicate(s)\", \"frame-alist\",
3673 \"mode-alist\", \"font-lock-(syntactic-)keyword*\",
3674 \"map-alist\", or \"bindat-spec\"."
3675 ;; If this is an alias, check the base name.
3677 (setq sym
(indirect-variable sym
))
3679 (or (get sym
'risky-local-variable
)
3680 (string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|\
3681 -commands?$\\|-predicates?$\\|font-lock-keywords$\\|font-lock-keywords\
3682 -[0-9]+$\\|font-lock-syntactic-keywords$\\|-frame-alist$\\|-mode-alist$\\|\
3683 -map$\\|-map-alist$\\|-bindat-spec$" (symbol-name sym
))))
3685 (defun hack-one-local-variable-quotep (exp)
3686 (and (consp exp
) (eq (car exp
) 'quote
) (consp (cdr exp
))))
3688 (defun hack-one-local-variable-constantp (exp)
3689 (or (and (not (symbolp exp
)) (not (consp exp
)))
3692 (hack-one-local-variable-quotep exp
)))
3694 (defun hack-one-local-variable-eval-safep (exp)
3695 "Return t if it is safe to eval EXP when it is found in a file."
3696 (or (not (consp exp
))
3697 ;; Detect certain `put' expressions.
3698 (and (eq (car exp
) 'put
)
3699 (hack-one-local-variable-quotep (nth 1 exp
))
3700 (hack-one-local-variable-quotep (nth 2 exp
))
3701 (let ((prop (nth 1 (nth 2 exp
)))
3703 (cond ((memq prop
'(lisp-indent-hook
3704 lisp-indent-function
3705 scheme-indent-function
))
3706 ;; Only allow safe values (not functions).
3708 (and (hack-one-local-variable-quotep val
)
3709 (eq (nth 1 val
) 'defun
))))
3710 ((eq prop
'edebug-form-spec
)
3711 ;; Only allow indirect form specs.
3712 ;; During bootstrapping, edebug-basic-spec might not be
3714 (and (fboundp 'edebug-basic-spec
)
3715 (hack-one-local-variable-quotep val
)
3716 (edebug-basic-spec (nth 1 val
)))))))
3717 ;; Allow expressions that the user requested.
3718 (member exp safe-local-eval-forms
)
3719 ;; Certain functions can be allowed with safe arguments
3720 ;; or can specify verification functions to try.
3721 (and (symbolp (car exp
))
3722 ;; Allow (minor)-modes calls with no arguments.
3723 ;; This obsoletes the use of "mode:" for such things. (Bug#8613)
3724 (or (and (member (cdr exp
) '(nil (1) (0) (-1)))
3725 (string-match "-mode\\'" (symbol-name (car exp
))))
3726 (let ((prop (get (car exp
) 'safe-local-eval-function
)))
3729 (dolist (arg (cdr exp
))
3730 (unless (hack-one-local-variable-constantp arg
)
3737 (dolist (function prop
)
3738 (if (funcall function exp
)
3742 (defun hack-one-local-variable--obsolete (var)
3743 (let ((o (get var
'byte-obsolete-variable
)))
3745 (let ((instead (nth 0 o
))
3747 (message "%s is obsolete%s; %s"
3748 var
(if since
(format " (since %s)" since
))
3749 (if (stringp instead
)
3750 (substitute-command-keys instead
)
3751 (format-message "use `%s' instead" instead
)))))))
3753 (defun hack-one-local-variable (var val
)
3754 "Set local variable VAR with value VAL.
3755 If VAR is `mode', call `VAL-mode' as a function unless it's
3756 already the major mode."
3759 (let ((mode (intern (concat (downcase (symbol-name val
))
3761 (unless (eq (indirect-function mode
)
3762 (indirect-function major-mode
))
3766 (`(add-hook ',hook .
,_
) (hack-one-local-variable--obsolete hook
)))
3767 (save-excursion (eval val
)))
3769 (hack-one-local-variable--obsolete var
)
3770 ;; Make sure the string has no text properties.
3771 ;; Some text properties can get evaluated in various ways,
3772 ;; so it is risky to put them on with a local variable list.
3774 (set-text-properties 0 (length val
) nil val
))
3775 (set (make-local-variable var
) val
))))
3777 ;;; Handling directory-local variables, aka project settings.
3779 (defvar dir-locals-class-alist
'()
3780 "Alist mapping directory-local variable classes (symbols) to variable lists.")
3782 (defvar dir-locals-directory-cache
'()
3783 "List of cached directory roots for directory-local variable classes.
3784 Each element in this list has the form (DIR CLASS MTIME).
3785 DIR is the name of the directory.
3786 CLASS is the name of a variable class (a symbol).
3787 MTIME is the recorded modification time of the directory-local
3788 variables file associated with this entry. This time is a list
3789 of integers (the same format as `file-attributes'), and is
3790 used to test whether the cache entry is still valid.
3791 Alternatively, MTIME can be nil, which means the entry is always
3794 (defsubst dir-locals-get-class-variables
(class)
3795 "Return the variable list for CLASS."
3796 (cdr (assq class dir-locals-class-alist
)))
3798 (defun dir-locals-collect-mode-variables (mode-variables variables
)
3799 "Collect directory-local variables from MODE-VARIABLES.
3800 VARIABLES is the initial list of variables.
3801 Returns the new list."
3802 (dolist (pair mode-variables variables
)
3803 (let* ((variable (car pair
))
3805 (slot (assq variable variables
)))
3806 ;; If variables are specified more than once, only use the last. (Why?)
3807 ;; The pseudo-variables mode and eval are different (bug#3430).
3808 (if (and slot
(not (memq variable
'(mode eval
))))
3810 ;; Need a new cons in case we setcdr later.
3811 (push (cons variable value
) variables
)))))
3813 (defun dir-locals-collect-variables (class-variables root variables
)
3814 "Collect entries from CLASS-VARIABLES into VARIABLES.
3815 ROOT is the root directory of the project.
3816 Return the new variables list."
3817 (let* ((file-name (or (buffer-file-name)
3818 ;; Handle non-file buffers, too.
3819 (expand-file-name default-directory
)))
3820 (sub-file-name (if (and file-name
3821 (file-name-absolute-p file-name
))
3822 ;; FIXME: Why not use file-relative-name?
3823 (substring file-name
(length root
)))))
3825 (dolist (entry class-variables variables
)
3826 (let ((key (car entry
)))
3829 ;; Don't include this in the previous condition, because we
3830 ;; want to filter all strings before the next condition.
3831 (when (and sub-file-name
3832 (>= (length sub-file-name
) (length key
))
3833 (string-prefix-p key sub-file-name
))
3834 (setq variables
(dir-locals-collect-variables
3835 (cdr entry
) root variables
))))
3837 (derived-mode-p key
))
3838 (let* ((alist (cdr entry
))
3839 (subdirs (assq 'subdirs alist
)))
3840 (if (or (not subdirs
)
3842 (setq alist
(delq subdirs alist
))
3844 ;; TODO someone might want to extend this to allow
3845 ;; integer values for subdir, where N means
3846 ;; variables apply to this directory and N levels
3847 ;; below it (0 == nil).
3848 (equal root default-directory
))
3849 (setq variables
(dir-locals-collect-mode-variables
3850 alist variables
))))))))
3852 ;; The file's content might be invalid (e.g. have a merge conflict), but
3853 ;; that shouldn't prevent the user from opening the file.
3854 (message "%s error: %s" dir-locals-file
(error-message-string err
))
3857 (defun dir-locals-set-directory-class (directory class
&optional mtime
)
3858 "Declare that the DIRECTORY root is an instance of CLASS.
3859 DIRECTORY is the name of a directory, a string.
3860 CLASS is the name of a project class, a symbol.
3861 MTIME is either the modification time of the directory-local
3862 variables file that defined this class, or nil.
3864 When a file beneath DIRECTORY is visited, the mode-specific
3865 variables from CLASS are applied to the buffer. The variables
3866 for a class are defined using `dir-locals-set-class-variables'."
3867 (setq directory
(file-name-as-directory (expand-file-name directory
)))
3868 (unless (assq class dir-locals-class-alist
)
3869 (error "No such class `%s'" (symbol-name class
)))
3870 (push (list directory class mtime
) dir-locals-directory-cache
))
3872 (defun dir-locals-set-class-variables (class variables
)
3873 "Map the type CLASS to a list of variable settings.
3874 CLASS is the project class, a symbol. VARIABLES is a list
3875 that declares directory-local variables for the class.
3876 An element in VARIABLES is either of the form:
3877 (MAJOR-MODE . ALIST)
3881 In the first form, MAJOR-MODE is a symbol, and ALIST is an alist
3882 whose elements are of the form (VARIABLE . VALUE).
3884 In the second form, DIRECTORY is a directory name (a string), and
3885 LIST is a list of the form accepted by the function.
3887 When a file is visited, the file's class is found. A directory
3888 may be assigned a class using `dir-locals-set-directory-class'.
3889 Then variables are set in the file's buffer according to the
3890 VARIABLES list of the class. The list is processed in order.
3892 * If the element is of the form (MAJOR-MODE . ALIST), and the
3893 buffer's major mode is derived from MAJOR-MODE (as determined
3894 by `derived-mode-p'), then all the variables in ALIST are
3895 applied. A MAJOR-MODE of nil may be used to match any buffer.
3896 `make-local-variable' is called for each variable before it is
3899 * If the element is of the form (DIRECTORY . LIST), and DIRECTORY
3900 is an initial substring of the file's directory, then LIST is
3901 applied by recursively following these rules."
3902 (setf (alist-get class dir-locals-class-alist
) variables
))
3904 (defconst dir-locals-file
".dir-locals.el"
3905 "File that contains directory-local variables.
3906 It has to be constant to enforce uniform values across different
3907 environments and users.
3909 A second dir-locals file can be used by a user to specify their
3910 personal dir-local variables even if the current directory
3911 already has a `dir-locals-file' that is shared with other
3912 users (such as in a git repository). The name of this second
3913 file is derived by appending \"-2\" to the base name of
3914 `dir-locals-file'. With the default value of `dir-locals-file',
3915 a \".dir-locals-2.el\" file in the same directory will override
3916 the \".dir-locals.el\".
3918 See Info node `(elisp)Directory Local Variables' for details.")
3920 (defun dir-locals--all-files (directory)
3921 "Return a list of all readable dir-locals files in DIRECTORY.
3922 The returned list is sorted by increasing priority. That is,
3923 values specified in the last file should take precedence over
3924 those in the first."
3925 (when (file-readable-p directory
)
3926 (let* ((file-1 (expand-file-name (if (eq system-type
'ms-dos
)
3927 (dosified-file-name dir-locals-file
)
3930 (file-2 (when (string-match "\\.el\\'" file-1
)
3931 (replace-match "-2.el" t nil file-1
)))
3933 ;; The order here is important.
3934 (dolist (f (list file-2 file-1
))
3938 (not (file-directory-p f
)))
3942 (defun dir-locals-find-file (file)
3943 "Find the directory-local variables for FILE.
3944 This searches upward in the directory tree from FILE.
3945 It stops at the first directory that has been registered in
3946 `dir-locals-directory-cache' or contains a `dir-locals-file'.
3947 If it finds an entry in the cache, it checks that it is valid.
3948 A cache entry with no modification time element (normally, one that
3949 has been assigned directly using `dir-locals-set-directory-class', not
3950 set from a file) is always valid.
3951 A cache entry based on a `dir-locals-file' is valid if the modification
3952 time stored in the cache matches the current file modification time.
3953 If not, the cache entry is cleared so that the file will be re-read.
3955 This function returns either:
3956 - nil (no directory local variables found),
3957 - the matching entry from `dir-locals-directory-cache' (a list),
3958 - or the full path to the directory (a string) containing at
3959 least one `dir-locals-file' in the case of no valid cache
3961 (setq file
(expand-file-name file
))
3962 (let* ((locals-dir (locate-dominating-file (file-name-directory file
)
3963 #'dir-locals--all-files
))
3965 ;; `locate-dominating-file' may have abbreviated the name.
3967 (setq locals-dir
(expand-file-name locals-dir
)))
3968 ;; Find the best cached value in `dir-locals-directory-cache'.
3969 (dolist (elt dir-locals-directory-cache
)
3970 (when (and (string-prefix-p (car elt
) file
3972 '(windows-nt cygwin ms-dos
)))
3973 (> (length (car elt
)) (length (car dir-elt
))))
3974 (setq dir-elt elt
)))
3976 (or (null locals-dir
)
3977 (<= (length locals-dir
)
3978 (length (car dir-elt
)))))
3979 ;; Found a potential cache entry. Check validity.
3980 ;; A cache entry with no MTIME is assumed to always be valid
3981 ;; (ie, set directly, not from a dir-locals file).
3982 ;; Note, we don't bother to check that there is a matching class
3983 ;; element in dir-locals-class-alist, since that's done by
3984 ;; dir-locals-set-directory-class.
3985 (if (or (null (nth 2 dir-elt
))
3986 (let ((cached-files (dir-locals--all-files (car dir-elt
))))
3987 ;; The entry MTIME should match the most recent
3988 ;; MTIME among matching files.
3990 (equal (nth 2 dir-elt
)
3992 (dolist (f cached-files latest
)
3993 (let ((f-time (nth 5 (file-attributes f
))))
3994 (if (time-less-p latest f-time
)
3995 (setq latest f-time
)))))))))
3996 ;; This cache entry is OK.
3998 ;; This cache entry is invalid; clear it.
3999 (setq dir-locals-directory-cache
4000 (delq dir-elt dir-locals-directory-cache
))
4001 ;; Return the first existing dir-locals file. Might be the same
4002 ;; as dir-elt's, might not (eg latter might have been deleted).
4007 (defun dir-locals-read-from-dir (dir)
4008 "Load all variables files in DIR and register a new class and instance.
4009 DIR is the absolute name of a directory which must contain at
4010 least one dir-local file (which is a file holding variables to
4012 Return the new class name, which is a symbol named DIR."
4014 (let* ((class-name (intern dir
))
4015 (files (dir-locals--all-files dir
))
4017 ;; If there was a problem, use the values we could get but
4018 ;; don't let the cache prevent future reads.
4019 (latest 0) (success 0)
4021 (with-demoted-errors "Error reading dir-locals: %S"
4022 (dolist (file files
)
4023 (let ((file-time (nth 5 (file-attributes file
))))
4024 (if (time-less-p latest file-time
)
4025 (setq latest file-time
)))
4027 (insert-file-contents file
)
4028 (condition-case-unless-debug nil
4030 (map-merge-with 'list
(lambda (a b
) (map-merge 'list a b
))
4032 (read (current-buffer))))
4033 (end-of-file nil
))))
4034 (setq success latest
))
4035 (dir-locals-set-class-variables class-name variables
)
4036 (dir-locals-set-directory-class dir class-name success
)
4039 (define-obsolete-function-alias 'dir-locals-read-from-file
4040 'dir-locals-read-from-dir
"25.1")
4042 (defcustom enable-remote-dir-locals nil
4043 "Non-nil means dir-local variables will be applied to remote files."
4048 (defvar hack-dir-local-variables--warned-coding nil
)
4050 (defun hack-dir-local-variables ()
4051 "Read per-directory local variables for the current buffer.
4052 Store the directory-local variables in `dir-local-variables-alist'
4053 and `file-local-variables-alist', without applying them.
4055 This does nothing if either `enable-local-variables' or
4056 `enable-dir-local-variables' are nil."
4057 (when (and enable-local-variables
4058 enable-dir-local-variables
4059 (or enable-remote-dir-locals
4060 (not (file-remote-p (or (buffer-file-name)
4061 default-directory
)))))
4062 ;; Find the variables file.
4063 (let ((dir-or-cache (dir-locals-find-file
4064 (or (buffer-file-name) default-directory
)))
4068 ((stringp dir-or-cache
)
4069 (setq dir-name dir-or-cache
4070 class
(dir-locals-read-from-dir dir-or-cache
)))
4071 ((consp dir-or-cache
)
4072 (setq dir-name
(nth 0 dir-or-cache
))
4073 (setq class
(nth 1 dir-or-cache
))))
4076 (dir-locals-collect-variables
4077 (dir-locals-get-class-variables class
) dir-name nil
)))
4079 (dolist (elt variables
)
4080 (if (eq (car elt
) 'coding
)
4081 (unless hack-dir-local-variables--warned-coding
4082 (setq hack-dir-local-variables--warned-coding t
)
4083 (display-warning 'files
4084 "Coding cannot be specified by dir-locals"))
4085 (unless (memq (car elt
) '(eval mode
))
4086 (setq dir-local-variables-alist
4087 (assq-delete-all (car elt
) dir-local-variables-alist
)))
4088 (push elt dir-local-variables-alist
)))
4089 (hack-local-variables-filter variables dir-name
)))))))
4091 (defun hack-dir-local-variables-non-file-buffer ()
4092 "Apply directory-local variables to a non-file buffer.
4093 For non-file buffers, such as Dired buffers, directory-local
4094 variables are looked for in `default-directory' and its parent
4096 (hack-dir-local-variables)
4097 (hack-local-variables-apply))
4100 (defcustom change-major-mode-with-file-name t
4101 "Non-nil means \\[write-file] should set the major mode from the file name.
4102 However, the mode will not be changed if
4103 \(1) a local variables list or the `-*-' line specifies a major mode, or
4104 \(2) the current major mode is a \"special\" mode,
4105 not suitable for ordinary files, or
4106 \(3) the new file name does not particularly specify any mode."
4108 :group
'editing-basics
)
4110 (defun set-visited-file-name (filename &optional no-query along-with-file
)
4111 "Change name of file visited in current buffer to FILENAME.
4112 This also renames the buffer to correspond to the new file.
4113 The next time the buffer is saved it will go in the newly specified file.
4114 FILENAME nil or an empty string means mark buffer as not visiting any file.
4115 Remember to delete the initial contents of the minibuffer
4116 if you wish to pass an empty string as the argument.
4118 The optional second argument NO-QUERY, if non-nil, inhibits asking for
4119 confirmation in the case where another buffer is already visiting FILENAME.
4121 The optional third argument ALONG-WITH-FILE, if non-nil, means that
4122 the old visited file has been renamed to the new name FILENAME."
4123 (interactive "FSet visited file name: ")
4124 (if (buffer-base-buffer)
4125 (error "An indirect buffer cannot visit a file"))
4126 (let (truename old-try-locals
)
4129 (if (string-equal filename
"")
4131 (expand-file-name filename
))))
4134 (setq truename
(file-truename filename
))
4135 (if find-file-visit-truename
4136 (setq filename truename
))))
4138 (let ((new-name (file-name-nondirectory filename
)))
4139 (if (string= new-name
"")
4140 (error "Empty file name"))))
4141 (let ((buffer (and filename
(find-buffer-visiting filename
))))
4142 (and buffer
(not (eq buffer
(current-buffer)))
4144 (not (y-or-n-p (format "A buffer is visiting %s; proceed? "
4146 (user-error "Aborted")))
4147 (or (equal filename buffer-file-name
)
4149 (and filename
(lock-buffer filename
))
4151 (setq old-try-locals
(not (inhibit-local-variables-p))
4152 buffer-file-name filename
)
4153 (if filename
; make buffer name reflect filename.
4154 (let ((new-name (file-name-nondirectory buffer-file-name
)))
4155 (setq default-directory
(file-name-directory buffer-file-name
))
4156 ;; If new-name == old-name, renaming would add a spurious <2>
4157 ;; and it's considered as a feature in rename-buffer.
4158 (or (string= new-name
(buffer-name))
4159 (rename-buffer new-name t
))))
4160 (setq buffer-backed-up nil
)
4162 (clear-visited-file-modtime))
4163 ;; Abbreviate the file names of the buffer.
4166 (setq buffer-file-truename
(abbreviate-file-name truename
))
4167 (if find-file-visit-truename
4168 (setq buffer-file-name truename
))))
4169 (setq buffer-file-number
4171 (nthcdr 10 (file-attributes buffer-file-name
))
4173 ;; write-file-functions is normally used for things like ftp-find-file
4174 ;; that visit things that are not local files as if they were files.
4175 ;; Changing to visit an ordinary local file instead should flush the hook.
4176 (kill-local-variable 'write-file-functions
)
4177 (kill-local-variable 'local-write-file-hooks
)
4178 (kill-local-variable 'revert-buffer-function
)
4179 (kill-local-variable 'backup-inhibited
)
4180 ;; If buffer was read-only because of version control,
4181 ;; that reason is gone now, so make it writable.
4183 (setq buffer-read-only nil
))
4184 (kill-local-variable 'vc-mode
)
4185 ;; Turn off backup files for certain file names.
4186 ;; Since this is a permanent local, the major mode won't eliminate it.
4187 (and buffer-file-name
4188 backup-enable-predicate
4189 (not (funcall backup-enable-predicate buffer-file-name
))
4191 (make-local-variable 'backup-inhibited
)
4192 (setq backup-inhibited t
)))
4193 (let ((oauto buffer-auto-save-file-name
))
4194 (cond ((null filename
)
4195 (setq buffer-auto-save-file-name nil
))
4196 ((not buffer-auto-save-file-name
)
4197 ;; If auto-save was not already on, turn it on if appropriate.
4198 (and buffer-file-name auto-save-default
(auto-save-mode t
)))
4200 ;; If auto save is on, start using a new name. We
4201 ;; deliberately don't rename or delete the old auto save
4202 ;; for the old visited file name. This is because
4203 ;; perhaps the user wants to save the new state and then
4204 ;; compare with the previous state from the auto save
4206 (setq buffer-auto-save-file-name
(make-auto-save-file-name))))
4207 ;; Rename the old auto save file if any.
4208 (and oauto buffer-auto-save-file-name
4209 (file-exists-p oauto
)
4210 (rename-file oauto buffer-auto-save-file-name t
)))
4211 (and buffer-file-name
4212 (not along-with-file
)
4213 (set-buffer-modified-p t
))
4214 ;; Update the major mode, if the file name determines it.
4216 ;; Don't change the mode if it is special.
4217 (or (not change-major-mode-with-file-name
)
4218 (get major-mode
'mode-class
)
4219 ;; Don't change the mode if the local variable list specifies it.
4220 ;; The file name can influence whether the local variables apply.
4222 ;; h-l-v also checks it, but might as well be explicit.
4223 (not (inhibit-local-variables-p))
4224 (hack-local-variables t
))
4225 ;; TODO consider making normal-mode handle this case.
4226 (let ((old major-mode
))
4228 (or (eq old major-mode
)
4229 (hack-local-variables))))
4232 (defun write-file (filename &optional confirm
)
4233 "Write current buffer into file FILENAME.
4234 This makes the buffer visit that file, and marks it as not modified.
4236 If you specify just a directory name as FILENAME, that means to use
4237 the default file name but in that directory. You can also yank
4238 the default file name into the minibuffer to edit it, using \\<minibuffer-local-map>\\[next-history-element].
4240 If the buffer is not already visiting a file, the default file name
4241 for the output file is the buffer name.
4243 If optional second arg CONFIRM is non-nil, this function
4244 asks for confirmation before overwriting an existing file.
4245 Interactively, confirmation is required unless you supply a prefix argument."
4246 ;; (interactive "FWrite file: ")
4248 (list (if buffer-file-name
4249 (read-file-name "Write file: "
4251 (read-file-name "Write file: " default-directory
4253 (file-name-nondirectory (buffer-name))
4256 (not current-prefix-arg
)))
4257 (or (null filename
) (string-equal filename
"")
4259 ;; If arg is a directory name,
4260 ;; use the default file name, but in that directory.
4261 (if (directory-name-p filename
)
4262 (setq filename
(concat filename
4263 (file-name-nondirectory
4264 (or buffer-file-name
(buffer-name))))))
4266 (file-exists-p filename
)
4267 ;; NS does its own confirm dialog.
4268 (not (and (eq (framep-on-display) 'ns
)
4269 (listp last-nonmenu-event
)
4271 (or (y-or-n-p (format-message
4272 "File `%s' exists; overwrite? " filename
))
4273 (user-error "Canceled")))
4274 (set-visited-file-name filename
(not confirm
))))
4275 (set-buffer-modified-p t
)
4276 ;; Make buffer writable if file is writable.
4277 (and buffer-file-name
4278 (file-writable-p buffer-file-name
)
4279 (setq buffer-read-only nil
))
4281 ;; It's likely that the VC status at the new location is different from
4282 ;; the one at the old location.
4285 (defun file-extended-attributes (filename)
4286 "Return an alist of extended attributes of file FILENAME.
4288 Extended attributes are platform-specific metadata about the file,
4289 such as SELinux context, list of ACL entries, etc."
4290 `((acl .
,(file-acl filename
))
4291 (selinux-context .
,(file-selinux-context filename
))))
4293 (defun set-file-extended-attributes (filename attributes
)
4294 "Set extended attributes of file FILENAME to ATTRIBUTES.
4296 ATTRIBUTES must be an alist of file attributes as returned by
4297 `file-extended-attributes'.
4298 Value is t if the function succeeds in setting the attributes."
4300 (dolist (elt attributes
)
4301 (let ((attr (car elt
))
4303 (cond ((eq attr
'acl
)
4304 (setq rv
(set-file-acl filename val
)))
4305 ((eq attr
'selinux-context
)
4306 (setq rv
(set-file-selinux-context filename val
))))
4307 (setq result
(or result rv
))))
4311 (defun backup-buffer ()
4312 "Make a backup of the disk file visited by the current buffer, if appropriate.
4313 This is normally done before saving the buffer the first time.
4315 A backup may be done by renaming or by copying; see documentation of
4316 variable `make-backup-files'. If it's done by renaming, then the file is
4317 no longer accessible under its old name.
4319 The value is non-nil after a backup was made by renaming.
4320 It has the form (MODES EXTENDED-ATTRIBUTES BACKUPNAME).
4321 MODES is the result of `file-modes' on the original
4322 file; this means that the caller, after saving the buffer, should change
4323 the modes of the new file to agree with the old modes.
4324 EXTENDED-ATTRIBUTES is the result of `file-extended-attributes'
4325 on the original file; this means that the caller, after saving
4326 the buffer, should change the extended attributes of the new file
4327 to agree with the old attributes.
4328 BACKUPNAME is the backup file name, which is the old file renamed."
4329 (when (and make-backup-files
(not backup-inhibited
) (not buffer-backed-up
))
4330 (let ((attributes (file-attributes buffer-file-name
)))
4331 (when (and attributes
(memq (aref (elt attributes
8) 0) '(?- ?l
)))
4332 ;; If specified name is a symbolic link, chase it to the target.
4333 ;; This makes backups in the directory where the real file is.
4334 (let* ((real-file-name (file-chase-links buffer-file-name
))
4335 (backup-info (find-backup-file-name real-file-name
)))
4337 (let* ((backupname (car backup-info
))
4338 (targets (cdr backup-info
))
4340 ;; If have old versions to maybe delete,
4341 ;; ask the user to confirm now, before doing anything.
4342 ;; But don't actually delete til later.
4344 (booleanp delete-old-versions
)
4345 (or delete-old-versions
4347 (format "Delete excess backup versions of %s? "
4350 (modes (file-modes buffer-file-name
))
4351 (extended-attributes
4352 (file-extended-attributes buffer-file-name
))
4353 (copy-when-priv-mismatch
4354 backup-by-copying-when-privileged-mismatch
)
4356 (or file-precious-flag backup-by-copying
4357 ;; Don't rename a suid or sgid file.
4358 (and modes
(< 0 (logand modes
#o6000
)))
4359 (not (file-writable-p
4360 (file-name-directory real-file-name
)))
4361 (and backup-by-copying-when-linked
4362 (< 1 (file-nlinks real-file-name
)))
4363 (and (or backup-by-copying-when-mismatch
4364 (and (integerp copy-when-priv-mismatch
)
4365 (let ((attr (file-attributes
4369 copy-when-priv-mismatch
))))
4370 (not (file-ownership-preserved-p real-file-name
4375 ;; Actually make the backup file.
4377 (backup-buffer-copy real-file-name backupname
4378 modes extended-attributes
)
4379 ;; rename-file should delete old backup.
4380 (rename-file real-file-name backupname t
)
4381 (setq setmodes
(list modes extended-attributes
4383 (setq buffer-backed-up t
)
4384 ;; Now delete the old versions, if desired.
4385 (dolist (old-version old-versions
)
4386 (delete-file old-version
)))
4388 ;; If trouble writing the backup, write it in .emacs.d/%backup%.
4389 (when (not buffer-backed-up
)
4390 (setq backupname
(locate-user-emacs-file "%backup%~"))
4391 (message "Cannot write backup file; backing up in %s"
4394 (backup-buffer-copy real-file-name backupname
4395 modes extended-attributes
)
4396 (setq buffer-backed-up t
))
4399 (defun backup-buffer-copy (from-name to-name modes extended-attributes
)
4400 ;; Create temp files with strict access rights. It's easy to
4401 ;; loosen them later, whereas it's impossible to close the
4402 ;; time-window of loose permissions otherwise.
4403 (with-file-modes ?
\700
4404 (when (condition-case nil
4405 ;; Try to overwrite old backup first.
4406 (copy-file from-name to-name t t t
)
4408 (while (condition-case nil
4410 (when (file-exists-p to-name
)
4411 (delete-file to-name
))
4412 (copy-file from-name to-name nil t t
)
4414 (file-already-exists t
))
4415 ;; The file was somehow created by someone else between
4416 ;; `delete-file' and `copy-file', so let's try again.
4417 ;; rms says "I think there is also a possible race
4418 ;; condition for making backup files" (emacs-devel 20070821).
4420 ;; If set-file-extended-attributes fails, fall back on set-file-modes.
4421 (unless (and extended-attributes
4422 (with-demoted-errors
4423 (set-file-extended-attributes to-name extended-attributes
)))
4425 (set-file-modes to-name
(logand modes
#o1777
)))))
4427 (defvar file-name-version-regexp
4428 "\\(?:~\\|\\.~[-[:alnum:]:#@^._]+\\(?:~[[:digit:]]+\\)?~\\)"
4429 ;; The last ~[[:digit]]+ matches relative versions in git,
4430 ;; e.g. `foo.js.~HEAD~1~'.
4431 "Regular expression matching the backup/version part of a file name.
4432 Used by `file-name-sans-versions'.")
4434 (defun file-name-sans-versions (name &optional keep-backup-version
)
4435 "Return file NAME sans backup versions or strings.
4436 This is a separate procedure so your site-init or startup file can
4438 If the optional argument KEEP-BACKUP-VERSION is non-nil,
4439 we do not remove backup version numbers, only true file version numbers.
4440 See also `file-name-version-regexp'."
4441 (let ((handler (find-file-name-handler name
'file-name-sans-versions
)))
4443 (funcall handler
'file-name-sans-versions name keep-backup-version
)
4445 (unless keep-backup-version
4446 (string-match (concat file-name-version-regexp
"\\'")
4449 (defun file-ownership-preserved-p (file &optional group
)
4450 "Return t if deleting FILE and rewriting it would preserve the owner.
4451 Return also t if FILE does not exist. If GROUP is non-nil, check whether
4452 the group would be preserved too."
4453 (let ((handler (find-file-name-handler file
'file-ownership-preserved-p
)))
4455 (funcall handler
'file-ownership-preserved-p file group
)
4456 (let ((attributes (file-attributes file
'integer
)))
4457 ;; Return t if the file doesn't exist, since it's true that no
4458 ;; information would be lost by an (attempted) delete and create.
4459 (or (null attributes
)
4460 (and (or (= (nth 2 attributes
) (user-uid))
4461 ;; Files created on Windows by Administrator (RID=500)
4462 ;; have the Administrators group (RID=544) recorded as
4463 ;; their owner. Rewriting them will still preserve the
4465 (and (eq system-type
'windows-nt
)
4466 (= (user-uid) 500) (= (nth 2 attributes
) 544)))
4468 ;; On BSD-derived systems files always inherit the parent
4469 ;; directory's group, so skip the group-gid test.
4470 (memq system-type
'(berkeley-unix darwin gnu
/kfreebsd
))
4471 (= (nth 3 attributes
) (group-gid)))
4472 (let* ((parent (or (file-name-directory file
) "."))
4473 (parent-attributes (file-attributes parent
'integer
)))
4474 (and parent-attributes
4475 ;; On some systems, a file created in a setuid directory
4476 ;; inherits that directory's owner.
4478 (= (nth 2 parent-attributes
) (user-uid))
4479 (string-match "^...[^sS]" (nth 8 parent-attributes
)))
4480 ;; On many systems, a file created in a setgid directory
4481 ;; inherits that directory's group. On some systems
4482 ;; this happens even if the setgid bit is not set.
4484 (= (nth 3 parent-attributes
)
4485 (nth 3 attributes
)))))))))))
4487 (defun file-name-sans-extension (filename)
4488 "Return FILENAME sans final \"extension\".
4489 The extension, in a file name, is the part that begins with the last `.',
4490 except that a leading `.' of the file name, if there is one, doesn't count."
4492 (let ((file (file-name-sans-versions (file-name-nondirectory filename
)))
4494 (if (and (string-match "\\.[^.]*\\'" file
)
4495 (not (eq 0 (match-beginning 0))))
4496 (if (setq directory
(file-name-directory filename
))
4497 ;; Don't use expand-file-name here; if DIRECTORY is relative,
4498 ;; we don't want to expand it.
4499 (concat directory
(substring file
0 (match-beginning 0)))
4500 (substring file
0 (match-beginning 0)))
4503 (defun file-name-extension (filename &optional period
)
4504 "Return FILENAME's final \"extension\".
4505 The extension, in a file name, is the part that begins with the last `.',
4506 excluding version numbers and backup suffixes, except that a leading `.'
4507 of the file name, if there is one, doesn't count.
4508 Return nil for extensionless file names such as `foo'.
4509 Return the empty string for file names such as `foo.'.
4511 By default, the returned value excludes the period that starts the
4512 extension, but if the optional argument PERIOD is non-nil, the period
4513 is included in the value, and in that case, if FILENAME has no
4514 extension, the value is \"\"."
4516 (let ((file (file-name-sans-versions (file-name-nondirectory filename
))))
4517 (if (and (string-match "\\.[^.]*\\'" file
)
4518 (not (eq 0 (match-beginning 0))))
4519 (substring file
(+ (match-beginning 0) (if period
0 1)))
4523 (defun file-name-base (&optional filename
)
4524 "Return the base name of the FILENAME: no directory, no extension."
4525 (declare (advertised-calling-convention (filename) "27.1"))
4526 (file-name-sans-extension
4527 (file-name-nondirectory (or filename
(buffer-file-name)))))
4529 (defcustom make-backup-file-name-function
4530 #'make-backup-file-name--default-function
4531 "A function that `make-backup-file-name' uses to create backup file names.
4532 The function receives a single argument, the original file name.
4534 If you change this, you may need to change `backup-file-name-p' and
4535 `file-name-sans-versions' too.
4537 You could make this buffer-local to do something special for specific files.
4539 For historical reasons, a value of nil means to use the default function.
4540 This should not be relied upon.
4542 See also `backup-directory-alist'."
4543 :version
"24.4" ; nil -> make-backup-file-name--default-function
4545 :type
'(choice (const :tag
"Deprecated way to get the default function" nil
)
4546 (function :tag
"Function")))
4548 (defcustom backup-directory-alist nil
4549 "Alist of filename patterns and backup directory names.
4550 Each element looks like (REGEXP . DIRECTORY). Backups of files with
4551 names matching REGEXP will be made in DIRECTORY. DIRECTORY may be
4552 relative or absolute. If it is absolute, so that all matching files
4553 are backed up into the same directory, the file names in this
4554 directory will be the full name of the file backed up with all
4555 directory separators changed to `!' to prevent clashes. This will not
4556 work correctly if your filesystem truncates the resulting name.
4558 For the common case of all backups going into one directory, the alist
4559 should contain a single element pairing \".\" with the appropriate
4562 If this variable is nil, or it fails to match a filename, the backup
4563 is made in the original file's directory.
4565 On MS-DOS filesystems without long names this variable is always
4568 :type
'(repeat (cons (regexp :tag
"Regexp matching filename")
4569 (directory :tag
"Backup directory name"))))
4571 (defun normal-backup-enable-predicate (name)
4572 "Default `backup-enable-predicate' function.
4573 Checks for files in `temporary-file-directory',
4574 `small-temporary-file-directory', and \"/tmp\"."
4575 (let ((temporary-file-directory temporary-file-directory
)
4577 ;; On MS-Windows, file-truename will convert short 8+3 aliases to
4578 ;; their long file-name equivalents, so compare-strings does TRT.
4579 (if (memq system-type
'(ms-dos windows-nt
))
4580 (setq temporary-file-directory
(file-truename temporary-file-directory
)
4581 name
(file-truename name
)
4583 (not (or (let ((comp (compare-strings temporary-file-directory
0 nil
4584 name
0 nil caseless
)))
4585 ;; Directory is under temporary-file-directory.
4586 (and (not (eq comp t
))
4587 (< comp
(- (length temporary-file-directory
)))))
4588 (let ((comp (compare-strings "/tmp" 0 nil
4590 ;; Directory is under /tmp.
4591 (and (not (eq comp t
))
4592 (< comp
(- (length "/tmp")))))
4593 (if small-temporary-file-directory
4594 (let ((comp (compare-strings small-temporary-file-directory
4596 name
0 nil caseless
)))
4597 ;; Directory is under small-temporary-file-directory.
4598 (and (not (eq comp t
))
4599 (< comp
(- (length small-temporary-file-directory
))))))))))
4601 (defun make-backup-file-name (file)
4602 "Create the non-numeric backup file name for FILE.
4603 This calls the function that `make-backup-file-name-function' specifies,
4604 with a single argument FILE."
4605 (funcall (or make-backup-file-name-function
4606 #'make-backup-file-name--default-function
)
4609 (defun make-backup-file-name--default-function (file)
4610 "Default function for `make-backup-file-name'.
4611 Normally this just returns FILE's name with `~' appended.
4612 It searches for a match for FILE in `backup-directory-alist'.
4613 If the directory for the backup doesn't exist, it is created."
4614 (if (and (eq system-type
'ms-dos
)
4615 (not (msdos-long-file-names)))
4616 (let ((fn (file-name-nondirectory file
)))
4617 (concat (file-name-directory file
)
4618 (or (and (string-match "\\`[^.]+\\'" fn
)
4619 (concat (match-string 0 fn
) ".~"))
4620 (and (string-match "\\`[^.]+\\.\\(..?\\)?" fn
)
4621 (concat (match-string 0 fn
) "~")))))
4622 (concat (make-backup-file-name-1 file
) "~")))
4624 (defun make-backup-file-name-1 (file)
4625 "Subroutine of `make-backup-file-name--default-function'.
4626 The function `find-backup-file-name' also uses this."
4627 (let ((alist backup-directory-alist
)
4628 elt backup-directory abs-backup-directory
)
4630 (setq elt
(pop alist
))
4631 (if (string-match (car elt
) file
)
4632 (setq backup-directory
(cdr elt
)
4634 ;; If backup-directory is relative, it should be relative to the
4635 ;; file's directory. By expanding explicitly here, we avoid
4636 ;; depending on default-directory.
4637 (if backup-directory
4638 (setq abs-backup-directory
4639 (expand-file-name backup-directory
4640 (file-name-directory file
))))
4641 (if (and abs-backup-directory
(not (file-exists-p abs-backup-directory
)))
4643 (make-directory abs-backup-directory
'parents
)
4644 (file-error (setq backup-directory nil
4645 abs-backup-directory nil
))))
4646 (if (null backup-directory
)
4648 (if (file-name-absolute-p backup-directory
)
4650 (when (memq system-type
'(windows-nt ms-dos cygwin
))
4651 ;; Normalize DOSish file names: downcase the drive
4652 ;; letter, if any, and replace the leading "x:" with
4654 (or (file-name-absolute-p file
)
4655 (setq file
(expand-file-name file
))) ; make defaults explicit
4657 ((file-remote-p file
)
4658 ;; Remove the leading slash, if any, to prevent
4659 ;; convert-standard-filename from converting that to a
4661 (and (memq (aref file
0) '(?
/ ?
\\))
4662 (setq file
(substring file
1)))
4663 ;; Replace any invalid file-name characters, then
4664 ;; prepend the leading slash back.
4665 (setq file
(concat "/" (convert-standard-filename file
))))
4667 ;; Replace any invalid file-name characters.
4668 (setq file
(expand-file-name (convert-standard-filename file
)))
4669 (if (eq (aref file
1) ?
:)
4670 (setq file
(concat "/"
4672 (char-to-string (downcase (aref file
0)))
4673 (if (eq (aref file
2) ?
/)
4676 (substring file
2)))))))
4677 ;; Make the name unique by substituting directory
4678 ;; separators. It may not really be worth bothering about
4679 ;; doubling `!'s in the original name...
4681 (subst-char-in-string
4683 (replace-regexp-in-string "!" "!!" file
))
4685 (expand-file-name (file-name-nondirectory file
)
4686 (file-name-as-directory abs-backup-directory
))))))
4688 (defun backup-file-name-p (file)
4689 "Return non-nil if FILE is a backup file name (numeric or not).
4690 This is a separate function so you can redefine it for customization.
4691 You may need to redefine `file-name-sans-versions' as well."
4692 (string-match "~\\'" file
))
4694 (defvar backup-extract-version-start
)
4696 ;; This is used in various files.
4697 ;; The usage of backup-extract-version-start is not very clean,
4698 ;; but I can't see a good alternative, so as of now I am leaving it alone.
4699 (defun backup-extract-version (fn)
4700 "Given the name of a numeric backup file, FN, return the backup number.
4701 Uses the free variable `backup-extract-version-start', whose value should be
4702 the index in the name where the version number begins."
4703 (if (and (string-match "[0-9]+~/?$" fn backup-extract-version-start
)
4704 (= (match-beginning 0) backup-extract-version-start
))
4705 (string-to-number (substring fn backup-extract-version-start -
1))
4708 (defun find-backup-file-name (fn)
4709 "Find a file name for a backup file FN, and suggestions for deletions.
4710 Value is a list whose car is the name for the backup file
4711 and whose cdr is a list of old versions to consider deleting now.
4712 If the value is nil, don't make a backup.
4713 Uses `backup-directory-alist' in the same way as
4714 `make-backup-file-name--default-function' does."
4715 (let ((handler (find-file-name-handler fn
'find-backup-file-name
)))
4716 ;; Run a handler for this function so that ange-ftp can refuse to do it.
4718 (funcall handler
'find-backup-file-name fn
)
4719 (if (or (eq version-control
'never
)
4720 ;; We don't support numbered backups on plain MS-DOS
4721 ;; when long file names are unavailable.
4722 (and (eq system-type
'ms-dos
)
4723 (not (msdos-long-file-names))))
4724 (list (make-backup-file-name fn
))
4725 (let* ((basic-name (make-backup-file-name-1 fn
))
4726 (base-versions (concat (file-name-nondirectory basic-name
)
4728 (backup-extract-version-start (length base-versions
))
4730 (number-to-delete 0)
4731 possibilities deserve-versions-p versions
)
4733 (setq possibilities
(file-name-all-completions
4735 (file-name-directory basic-name
))
4736 versions
(sort (mapcar #'backup-extract-version
4739 high-water-mark
(apply 'max
0 versions
)
4740 deserve-versions-p
(or version-control
4741 (> high-water-mark
0))
4742 number-to-delete
(- (length versions
)
4746 (file-error (setq possibilities nil
)))
4747 (if (not deserve-versions-p
)
4748 (list (make-backup-file-name fn
))
4749 (cons (format "%s.~%d~" basic-name
(1+ high-water-mark
))
4750 (if (and (> number-to-delete
0)
4751 ;; Delete nothing if there is overflow
4752 ;; in the number of versions to keep.
4753 (>= (+ kept-new-versions kept-old-versions -
1) 0))
4755 (format "%s.~%d~" basic-name n
))
4756 (let ((v (nthcdr kept-old-versions versions
)))
4757 (rplacd (nthcdr (1- number-to-delete
) v
) ())
4760 (defun file-nlinks (filename)
4761 "Return number of names file FILENAME has."
4762 (car (cdr (file-attributes filename
))))
4764 (defun file-relative-name (filename &optional directory
)
4765 "Convert FILENAME to be relative to DIRECTORY (default: `default-directory').
4766 This function returns a relative file name which is equivalent to FILENAME
4767 when used with that default directory as the default.
4768 If FILENAME is a relative file name, it will be interpreted as existing in
4769 `default-directory'.
4770 If FILENAME and DIRECTORY lie on different machines or on different drives
4771 on a DOS/Windows machine, it returns FILENAME in expanded form."
4774 (file-name-as-directory (expand-file-name (or directory
4775 default-directory
))))
4776 (setq filename
(expand-file-name filename
))
4777 (let ((fremote (file-remote-p filename
))
4778 (dremote (file-remote-p directory
))
4779 (fold-case (or (file-name-case-insensitive-p filename
)
4780 read-file-name-completion-ignore-case
)))
4781 (if ;; Conditions for separate trees
4783 ;; Test for different filesystems on DOS/Windows
4785 ;; Should `cygwin' really be included here? --stef
4786 (memq system-type
'(ms-dos cygwin windows-nt
))
4788 ;; Test for different drive letters
4789 (not (eq t
(compare-strings filename
0 2 directory
0 2 fold-case
)))
4790 ;; Test for UNCs on different servers
4791 (not (eq t
(compare-strings
4793 (if (string-match "\\`//\\([^:/]+\\)/" filename
)
4794 (match-string 1 filename
)
4795 ;; Windows file names cannot have ? in
4796 ;; them, so use that to detect when
4797 ;; neither FILENAME nor DIRECTORY is a
4802 (if (string-match "\\`//\\([^:/]+\\)/" directory
)
4803 (match-string 1 directory
)
4806 ;; Test for different remote file system identification
4807 (not (equal fremote dremote
)))
4809 (let ((ancestor ".")
4810 (filename-dir (file-name-as-directory filename
)))
4812 (or (string-prefix-p directory filename-dir fold-case
)
4813 (string-prefix-p directory filename fold-case
)))
4814 (setq directory
(file-name-directory (substring directory
0 -
1))
4815 ancestor
(if (equal ancestor
".")
4817 (concat "../" ancestor
))))
4818 ;; Now ancestor is empty, or .., or ../.., etc.
4819 (if (string-prefix-p directory filename fold-case
)
4820 ;; We matched within FILENAME's directory part.
4821 ;; Add the rest of FILENAME onto ANCESTOR.
4822 (let ((rest (substring filename
(length directory
))))
4823 (if (and (equal ancestor
".") (not (equal rest
"")))
4824 ;; But don't bother with ANCESTOR if it would give us `./'.
4826 (concat (file-name-as-directory ancestor
) rest
)))
4827 ;; We matched FILENAME's directory equivalent.
4830 (defun save-buffer (&optional arg
)
4831 "Save current buffer in visited file if modified.
4832 Variations are described below.
4834 By default, makes the previous version into a backup file
4835 if previously requested or if this is the first save.
4836 Prefixed with one \\[universal-argument], marks this version
4837 to become a backup when the next save is done.
4838 Prefixed with two \\[universal-argument]'s,
4839 makes the previous version into a backup file.
4840 Prefixed with three \\[universal-argument]'s, marks this version
4841 to become a backup when the next save is done,
4842 and makes the previous version into a backup file.
4844 With a numeric prefix argument of 0, never make the previous version
4847 Note that the various variables that control backups, such
4848 as `version-control', `backup-enable-predicate', `vc-make-backup-files',
4849 and `backup-inhibited', to name just the more popular ones, still
4850 control whether a backup will actually be produced, even when you
4851 invoke this command prefixed with two or three \\[universal-argument]'s.
4853 If a file's name is FOO, the names of its numbered backup versions are
4854 FOO.~i~ for various integers i. A non-numbered backup file is called FOO~.
4855 Numeric backups (rather than FOO~) will be made if value of
4856 `version-control' is not the atom `never' and either there are already
4857 numeric versions of the file being backed up, or `version-control' is
4859 We don't want excessive versions piling up, so there are variables
4860 `kept-old-versions', which tells Emacs how many oldest versions to keep,
4861 and `kept-new-versions', which tells how many newest versions to keep.
4862 Defaults are 2 old versions and 2 new.
4863 `dired-kept-versions' controls dired's clean-directory (.) command.
4864 If `delete-old-versions' is nil, system will query user
4865 before trimming versions. Otherwise it does it silently.
4867 If `vc-make-backup-files' is nil, which is the default,
4868 no backup files are made for files managed by version control.
4869 (This is because the version control system itself records previous versions.)
4871 See the subroutine `basic-save-buffer' for more information."
4873 (let ((modp (buffer-modified-p))
4874 (make-backup-files (or (and make-backup-files
(not (eq arg
0)))
4875 (memq arg
'(16 64)))))
4876 (and modp
(memq arg
'(16 64)) (setq buffer-backed-up nil
))
4877 ;; We used to display the message below only for files > 50KB, but
4878 ;; then Rmail-mbox never displays it due to buffer swapping. If
4879 ;; the test is ever re-introduced, be sure to handle saving of
4883 (not noninteractive
)
4884 (not save-silently
))
4885 (message "Saving file %s..." (buffer-file-name)))
4886 (basic-save-buffer (called-interactively-p 'any
))
4887 (and modp
(memq arg
'(4 64)) (setq buffer-backed-up nil
))))
4889 (defun delete-auto-save-file-if-necessary (&optional force
)
4890 "Delete auto-save file for current buffer if `delete-auto-save-files' is t.
4891 Normally delete only if the file was written by this Emacs since
4892 the last real save, but optional arg FORCE non-nil means delete anyway."
4893 (and buffer-auto-save-file-name delete-auto-save-files
4894 (not (string= buffer-file-name buffer-auto-save-file-name
))
4895 (or force
(recent-auto-save-p))
4898 (delete-file buffer-auto-save-file-name
)
4900 (set-buffer-auto-saved))))
4902 (defvar auto-save-hook nil
4903 "Normal hook run just before auto-saving.")
4905 (defcustom before-save-hook nil
4906 "Normal hook that is run before a buffer is saved to its file.
4907 Only used by `save-buffer'."
4908 :options
'(copyright-update time-stamp
)
4912 (defcustom after-save-hook nil
4913 "Normal hook that is run after a buffer is saved to its file.
4914 Only used by `save-buffer'."
4915 :options
'(executable-make-buffer-file-executable-if-script-p)
4919 (defvar save-buffer-coding-system nil
4920 "If non-nil, use this coding system for saving the buffer.
4921 More precisely, use this coding system in place of the
4922 value of `buffer-file-coding-system', when saving the buffer.
4923 Calling `write-region' for any purpose other than saving the buffer
4924 will still use `buffer-file-coding-system'; this variable has no effect
4927 (make-variable-buffer-local 'save-buffer-coding-system
)
4928 (put 'save-buffer-coding-system
'permanent-local t
)
4930 (defun basic-save-buffer (&optional called-interactively
)
4931 "Save the current buffer in its visited file, if it has been modified.
4933 The hooks `write-contents-functions', `local-write-file-hooks'
4934 and `write-file-functions' get a chance to do the job of saving;
4935 if they do not, then the buffer is saved in the visited file in
4938 Before and after saving the buffer, this function runs
4939 `before-save-hook' and `after-save-hook', respectively."
4940 (interactive '(called-interactively))
4941 (save-current-buffer
4942 ;; In an indirect buffer, save its base buffer instead.
4943 (if (buffer-base-buffer)
4944 (set-buffer (buffer-base-buffer)))
4945 (if (or (buffer-modified-p)
4946 ;; Handle the case when no modification has been made but
4947 ;; the file disappeared since visited.
4948 (and buffer-file-name
4949 (not (file-exists-p buffer-file-name
))))
4950 (let ((recent-save (recent-auto-save-p))
4952 (or (null buffer-file-name
)
4953 (verify-visited-file-modtime (current-buffer))
4954 (not (file-exists-p buffer-file-name
))
4957 "%s has changed since visited or saved. Save anyway? "
4958 (file-name-nondirectory buffer-file-name
)))
4959 (user-error "Save not confirmed"))
4963 (and (> (point-max) (point-min))
4964 (not find-file-literally
)
4965 (null buffer-read-only
)
4966 (/= (char-after (1- (point-max))) ?
\n)
4967 (not (and (eq selective-display t
)
4968 (= (char-after (1- (point-max))) ?
\r)))
4969 (or (eq require-final-newline t
)
4970 (eq require-final-newline
'visit-save
)
4971 (and require-final-newline
4973 (format "Buffer %s does not end in newline. Add one? "
4976 (goto-char (point-max))
4978 ;; Don't let errors prevent saving the buffer.
4979 (with-demoted-errors (run-hooks 'before-save-hook
))
4980 ;; Give `write-contents-functions' a chance to
4981 ;; short-circuit the whole process.
4982 (unless (run-hook-with-args-until-success 'write-contents-functions
)
4983 ;; If buffer has no file name, ask user for one.
4984 (or buffer-file-name
4987 (read-file-name "File to save in: "
4988 nil
(expand-file-name (buffer-name))))))
4989 (if (file-exists-p filename
)
4990 (if (file-directory-p filename
)
4991 ;; Signal an error if the user specified the name of an
4992 ;; existing directory.
4993 (error "%s is a directory" filename
)
4994 (unless (y-or-n-p (format-message
4995 "File `%s' exists; overwrite? "
4997 (error "Canceled"))))
4998 (set-visited-file-name filename
)))
4999 ;; Support VC version backups.
5001 (or (run-hook-with-args-until-success 'local-write-file-hooks
)
5002 (run-hook-with-args-until-success 'write-file-functions
)
5003 ;; If a hook returned t, file is already "written".
5004 ;; Otherwise, write it the usual way now.
5005 (let ((dir (file-name-directory
5006 (expand-file-name buffer-file-name
))))
5007 (unless (file-exists-p dir
)
5010 "Directory `%s' does not exist; create? " dir
))
5011 (make-directory dir t
)
5012 (error "Canceled")))
5013 (setq setmodes
(basic-save-buffer-1)))))
5014 ;; Now we have saved the current buffer. Let's make sure
5015 ;; that buffer-file-coding-system is fixed to what
5016 ;; actually used for saving by binding it locally.
5017 (when buffer-file-name
5018 (if save-buffer-coding-system
5019 (setq save-buffer-coding-system last-coding-system-used
)
5020 (setq buffer-file-coding-system last-coding-system-used
))
5021 (setq buffer-file-number
5022 (nthcdr 10 (file-attributes buffer-file-name
)))
5027 (with-demoted-errors
5028 (set-file-modes buffer-file-name
(car setmodes
)))
5029 (set-file-extended-attributes buffer-file-name
5032 ;; Support VC `implicit' locking.
5034 ;; If the auto-save file was recent before this command,
5036 (delete-auto-save-file-if-necessary recent-save
))
5037 (run-hooks 'after-save-hook
))
5039 (not called-interactively
)
5040 (files--message "(No changes need to be saved)")))))
5042 ;; This does the "real job" of writing a buffer into its visited file
5043 ;; and making a backup file. This is what is normally done
5044 ;; but inhibited if one of write-file-functions returns non-nil.
5045 ;; It returns a value (MODES EXTENDED-ATTRIBUTES BACKUPNAME), like
5047 (defun basic-save-buffer-1 ()
5049 (if save-buffer-coding-system
5050 (let ((coding-system-for-write save-buffer-coding-system
))
5051 (basic-save-buffer-2))
5052 (basic-save-buffer-2))
5053 (if buffer-file-coding-system-explicit
5054 (setcar buffer-file-coding-system-explicit last-coding-system-used
))))
5056 ;; This returns a value (MODES EXTENDED-ATTRIBUTES BACKUPNAME), like
5058 (defun basic-save-buffer-2 ()
5059 (let (tempsetmodes setmodes
)
5060 (if (not (file-writable-p buffer-file-name
))
5061 (let ((dir (file-name-directory buffer-file-name
)))
5062 (if (not (file-directory-p dir
))
5063 (if (file-exists-p dir
)
5064 (error "%s is not a directory" dir
)
5065 (error "%s: no such directory" dir
))
5066 (if (not (file-exists-p buffer-file-name
))
5067 (error "Directory %s write-protected" dir
)
5070 "File %s is write-protected; try to save anyway? "
5071 (file-name-nondirectory
5073 (setq tempsetmodes t
)
5074 (error "Attempt to save to a file which you aren't allowed to write"))))))
5075 (or buffer-backed-up
5076 (setq setmodes
(backup-buffer)))
5077 (let* ((dir (file-name-directory buffer-file-name
))
5078 (dir-writable (file-writable-p dir
)))
5079 (if (or (and file-precious-flag dir-writable
)
5080 (and break-hardlink-on-save
5081 (file-exists-p buffer-file-name
)
5082 (> (file-nlinks buffer-file-name
) 1)
5084 (error (concat "Directory %s write-protected; "
5085 "cannot break hardlink when saving")
5087 ;; Write temp name, then rename it.
5088 ;; This requires write access to the containing dir,
5089 ;; which is why we don't try it if we don't have that access.
5090 (let ((realname buffer-file-name
)
5092 (old-modtime (visited-file-modtime)))
5093 ;; Create temp files with strict access rights. It's easy to
5094 ;; loosen them later, whereas it's impossible to close the
5095 ;; time-window of loose permissions otherwise.
5098 (clear-visited-file-modtime)
5099 ;; Call write-region in the appropriate way
5100 ;; for saving the buffer.
5103 (expand-file-name "tmp" dir
)))
5104 ;; Pass in nil&nil rather than point-min&max
5105 ;; cause we're saving the whole buffer.
5106 ;; write-region-annotate-functions may use it.
5107 (write-region nil nil tempname nil realname
5108 buffer-file-truename
)
5109 (when save-silently
(message nil
)))
5110 ;; If we failed, restore the buffer's modtime.
5111 (error (set-visited-file-modtime old-modtime
)
5112 (signal (car err
) (cdr err
))))
5113 ;; Since we have created an entirely new file,
5114 ;; make sure it gets the right permission bits set.
5115 (setq setmodes
(or setmodes
5116 (list (or (file-modes buffer-file-name
)
5117 (logand ?
\666 (default-file-modes)))
5118 (file-extended-attributes buffer-file-name
)
5120 ;; We succeeded in writing the temp file,
5122 (rename-file tempname buffer-file-name t
))
5123 ;; If file not writable, see if we can make it writable
5124 ;; temporarily while we write it.
5125 ;; But no need to do so if we have just backed it up
5126 ;; (setmodes is set) because that says we're superseding.
5127 (cond ((and tempsetmodes
(not setmodes
))
5128 ;; Change the mode back, after writing.
5129 (setq setmodes
(list (file-modes buffer-file-name
)
5130 (file-extended-attributes buffer-file-name
)
5132 ;; If set-file-extended-attributes fails, fall back on
5135 (with-demoted-errors
5136 (set-file-extended-attributes buffer-file-name
5138 (set-file-modes buffer-file-name
5139 (logior (car setmodes
) 128))))))
5143 ;; Pass in nil&nil rather than point-min&max to indicate
5144 ;; we're saving the buffer rather than just a region.
5145 ;; write-region-annotate-functions may make use of it.
5146 (write-region nil nil
5147 buffer-file-name nil t buffer-file-truename
)
5148 (when save-silently
(message nil
))
5150 ;; If we get an error writing the new file, and we made
5151 ;; the backup by renaming, undo the backing-up.
5152 (and setmodes
(not success
)
5154 (rename-file (nth 2 setmodes
) buffer-file-name t
)
5155 (setq buffer-backed-up nil
))))))
5158 (declare-function diff-no-select
"diff"
5159 (old new
&optional switches no-async buf
))
5161 (defvar save-some-buffers-action-alist
5164 (if (not enable-recursive-minibuffers
)
5165 (progn (display-buffer buf
)
5166 (setq other-window-scroll-buffer buf
))
5167 (view-buffer buf
(lambda (_) (exit-recursive-edit)))
5169 ;; Return nil to ask about BUF again.
5171 ,(purecopy "view this buffer"))
5173 (if (null (buffer-file-name buf
))
5174 (message "Not applicable: no file")
5175 (require 'diff
) ;for diff-no-select.
5176 (let ((diffbuf (diff-no-select (buffer-file-name buf
) buf
5178 (if (not enable-recursive-minibuffers
)
5179 (progn (display-buffer diffbuf
)
5180 (setq other-window-scroll-buffer diffbuf
))
5181 (view-buffer diffbuf
(lambda (_) (exit-recursive-edit)))
5183 ;; Return nil to ask about BUF again.
5185 ,(purecopy "view changes in this buffer")))
5186 "ACTION-ALIST argument used in call to `map-y-or-n-p'.")
5187 (put 'save-some-buffers-action-alist
'risky-local-variable t
)
5189 (defvar buffer-save-without-query nil
5190 "Non-nil means `save-some-buffers' should save this buffer without asking.")
5191 (make-variable-buffer-local 'buffer-save-without-query
)
5193 (defcustom save-some-buffers-default-predicate nil
5194 "Default predicate for `save-some-buffers'.
5195 This allows you to stop `save-some-buffers' from asking
5196 about certain files that you'd usually rather not save."
5201 (defun save-some-buffers (&optional arg pred
)
5202 "Save some modified file-visiting buffers. Asks user about each one.
5203 You can answer `y' to save, `n' not to save, `C-r' to look at the
5204 buffer in question with `view-buffer' before deciding or `d' to
5205 view the differences using `diff-buffer-with-file'.
5207 This command first saves any buffers where `buffer-save-without-query' is
5208 non-nil, without asking.
5210 Optional argument (the prefix) non-nil means save all with no questions.
5211 Optional second argument PRED determines which buffers are considered:
5212 If PRED is nil, all the file-visiting buffers are considered.
5213 If PRED is t, then certain non-file buffers will also be considered.
5214 If PRED is a zero-argument function, it indicates for each buffer whether
5215 to consider it or not when called with that buffer current.
5216 PRED defaults to the value of `save-some-buffers-default-predicate'.
5218 See `save-some-buffers-action-alist' if you want to
5219 change the additional actions you can take on files."
5222 (setq pred save-some-buffers-default-predicate
))
5223 (save-window-excursion
5224 (let* (queried autosaved-buffers
5225 files-done abbrevs-done
)
5226 (dolist (buffer (buffer-list))
5227 ;; First save any buffers that we're supposed to save unconditionally.
5228 ;; That way the following code won't ask about them.
5229 (with-current-buffer buffer
5230 (when (and buffer-save-without-query
(buffer-modified-p))
5231 (push (buffer-name) autosaved-buffers
)
5233 ;; Ask about those buffers that merit it,
5234 ;; and record the number thus saved.
5238 ;; Note that killing some buffers may kill others via
5239 ;; hooks (e.g. Rmail and its viewing buffer).
5240 (and (buffer-live-p buffer
)
5241 (buffer-modified-p buffer
)
5242 (not (buffer-base-buffer buffer
))
5244 (buffer-file-name buffer
)
5245 (with-current-buffer buffer
5246 (or (eq buffer-offer-save
'always
)
5247 (and pred buffer-offer-save
(> (buffer-size) 0)))))
5248 (or (not (functionp pred
))
5249 (with-current-buffer buffer
(funcall pred
)))
5253 (if (buffer-file-name buffer
)
5254 (format "Save file %s? "
5255 (buffer-file-name buffer
))
5256 (format "Save buffer %s? "
5257 (buffer-name buffer
))))))
5259 (with-current-buffer buffer
5262 '("buffer" "buffers" "save")
5263 save-some-buffers-action-alist
))
5264 ;; Maybe to save abbrevs, and record whether
5265 ;; we either saved them or asked to.
5266 (and save-abbrevs abbrevs-changed
5269 (eq save-abbrevs
'silently
)
5270 (y-or-n-p (format "Save abbrevs in %s? " abbrev-file-name
)))
5271 (write-abbrev-file nil
))
5272 ;; Don't keep bothering user if he says no.
5273 (setq abbrevs-changed nil
)
5274 (setq abbrevs-done t
)))
5275 (or queried
(> files-done
0) abbrevs-done
5277 ((null autosaved-buffers
)
5278 (when (called-interactively-p 'any
)
5279 (files--message "(No files need saving)")))
5280 ((= (length autosaved-buffers
) 1)
5281 (files--message "(Saved %s)" (car autosaved-buffers
)))
5283 (files--message "(Saved %d files: %s)"
5284 (length autosaved-buffers
)
5285 (mapconcat 'identity autosaved-buffers
", "))))))))
5287 (defun clear-visited-file-modtime ()
5288 "Clear out records of last mod time of visited file.
5289 Next attempt to save will not complain of a discrepancy."
5290 (set-visited-file-modtime 0))
5292 (defun not-modified (&optional arg
)
5293 "Mark current buffer as unmodified, not needing to be saved.
5294 With prefix ARG, mark buffer as modified, so \\[save-buffer] will save.
5296 It is not a good idea to use this function in Lisp programs, because it
5297 prints a message in the minibuffer. Instead, use `set-buffer-modified-p'."
5298 (declare (interactive-only set-buffer-modified-p
))
5300 (files--message (if arg
"Modification-flag set"
5301 "Modification-flag cleared"))
5302 (set-buffer-modified-p arg
))
5304 (defun toggle-read-only (&optional arg interactive
)
5305 "Change whether this buffer is read-only."
5306 (declare (obsolete read-only-mode
"24.3"))
5307 (interactive (list current-prefix-arg t
))
5309 (call-interactively 'read-only-mode
)
5310 (read-only-mode (or arg
'toggle
))))
5312 (defun insert-file (filename)
5313 "Insert contents of file FILENAME into buffer after point.
5314 Set mark after the inserted text.
5316 This function is meant for the user to run interactively.
5317 Don't call it from programs! Use `insert-file-contents' instead.
5318 \(Its calling sequence is different; see its documentation)."
5319 (declare (interactive-only insert-file-contents
))
5320 (interactive "*fInsert file: ")
5321 (insert-file-1 filename
#'insert-file-contents
))
5323 (defun append-to-file (start end filename
)
5324 "Append the contents of the region to the end of file FILENAME.
5325 When called from a function, expects three arguments,
5326 START, END and FILENAME. START and END are normally buffer positions
5327 specifying the part of the buffer to write.
5328 If START is nil, that means to use the entire buffer contents.
5329 If START is a string, then output that string to the file
5330 instead of any buffer contents; END is ignored.
5332 This does character code conversion and applies annotations
5333 like `write-region' does."
5334 (interactive "r\nFAppend to file: ")
5335 (prog1 (write-region start end filename t
)
5336 (when save-silently
(message nil
))))
5338 (defun file-newest-backup (filename)
5339 "Return most recent backup file for FILENAME or nil if no backups exist."
5340 ;; `make-backup-file-name' will get us the right directory for
5341 ;; ordinary or numeric backups. It might create a directory for
5342 ;; backups as a side-effect, according to `backup-directory-alist'.
5343 (let* ((filename (file-name-sans-versions
5344 (make-backup-file-name (expand-file-name filename
))))
5345 (file (file-name-nondirectory filename
))
5346 (dir (file-name-directory filename
))
5347 (comp (file-name-all-completions file dir
))
5351 (setq tem
(pop comp
))
5352 (cond ((and (backup-file-name-p tem
)
5353 (string= (file-name-sans-versions tem
) file
))
5354 (setq tem
(concat dir tem
))
5355 (if (or (null newest
)
5356 (file-newer-than-file-p tem newest
))
5357 (setq newest tem
)))))
5360 (defun rename-uniquely ()
5361 "Rename current buffer to a similar name not already taken.
5362 This function is useful for creating multiple shell process buffers
5363 or multiple mail buffers, etc.
5365 Note that some commands, in particular those based on `compilation-mode'
5366 \(`compile', `grep', etc.) will reuse the current buffer if it has the
5367 appropriate mode even if it has been renamed. So as well as renaming
5368 the buffer, you also need to switch buffers before running another
5369 instance of such commands."
5372 (let ((base-name (buffer-name)))
5373 (and (string-match "<[0-9]+>\\'" base-name
)
5374 (not (and buffer-file-name
5376 (file-name-nondirectory buffer-file-name
))))
5377 ;; If the existing buffer name has a <NNN>,
5378 ;; which isn't part of the file name (if any),
5379 ;; then get rid of that.
5380 (setq base-name
(substring base-name
0 (match-beginning 0))))
5381 (rename-buffer (generate-new-buffer-name base-name
))
5382 (force-mode-line-update))))
5384 (defun files--ensure-directory (dir)
5385 "Make directory DIR if it is not already a directory. Return nil."
5387 (make-directory-internal dir
)
5389 (unless (file-directory-p dir
)
5390 (signal (car err
) (cdr err
))))))
5392 (defun make-directory (dir &optional parents
)
5393 "Create the directory DIR and optionally any nonexistent parent dirs.
5394 If DIR already exists as a directory, signal an error, unless
5397 Interactively, the default choice of directory to create is the
5398 current buffer's default directory. That is useful when you have
5399 visited a file in a nonexistent directory.
5401 Noninteractively, the second (optional) argument PARENTS, if
5402 non-nil, says whether to create parent directories that don't
5403 exist. Interactively, this happens by default.
5405 If creating the directory or directories fail, an error will be
5408 (list (read-file-name "Make directory: " default-directory default-directory
5411 ;; If default-directory is a remote directory,
5412 ;; make sure we find its make-directory handler.
5413 (setq dir
(expand-file-name dir
))
5414 (let ((handler (find-file-name-handler dir
'make-directory
)))
5416 (funcall handler
'make-directory dir parents
)
5418 (make-directory-internal dir
)
5419 (let ((dir (directory-file-name (expand-file-name dir
)))
5422 (setq parent
(directory-file-name
5423 (file-name-directory dir
)))
5425 (files--ensure-directory dir
)
5427 ;; Do not loop if root does not exist (Bug#2309).
5428 (not (string= dir parent
)))))
5429 (setq create-list
(cons dir create-list
)
5431 (dolist (dir create-list
)
5432 (files--ensure-directory dir
)))))))
5434 (defconst directory-files-no-dot-files-regexp
5435 "^\\([^.]\\|\\.\\([^.]\\|\\..\\)\\).*"
5436 "Regexp matching any file name except \".\" and \"..\".")
5438 (defun files--force (no-such fn
&rest args
)
5439 "Use NO-SUCH to affect behavior of function FN applied to list ARGS.
5440 This acts like (apply FN ARGS) except it returns NO-SUCH if it is
5441 non-nil and if FN fails due to a missing file or directory."
5444 (file-missing (or no-such
(signal (car err
) (cdr err
))))))
5446 (defun delete-directory (directory &optional recursive trash
)
5447 "Delete the directory named DIRECTORY. Does not follow symlinks.
5448 If RECURSIVE is non-nil, delete files in DIRECTORY as well, with
5449 no error if something else is simultaneously deleting them.
5450 TRASH non-nil means to trash the directory instead, provided
5451 `delete-by-moving-to-trash' is non-nil.
5453 When called interactively, TRASH is nil if and only if a prefix
5454 argument is given, and a further prompt asks the user for
5455 RECURSIVE if DIRECTORY is nonempty."
5457 (let* ((trashing (and delete-by-moving-to-trash
5458 (null current-prefix-arg
)))
5459 (dir (expand-file-name
5460 (read-directory-name
5462 "Move directory to trash: "
5463 "Delete directory: ")
5464 default-directory default-directory nil nil
))))
5466 (if (directory-files dir nil directory-files-no-dot-files-regexp
)
5468 (format-message "Directory `%s' is not empty, really %s? "
5469 dir
(if trashing
"trash" "delete")))
5471 (null current-prefix-arg
))))
5472 ;; If default-directory is a remote directory, make sure we find its
5473 ;; delete-directory handler.
5474 (setq directory
(directory-file-name (expand-file-name directory
)))
5475 (let ((handler (find-file-name-handler directory
'delete-directory
)))
5478 (funcall handler
'delete-directory directory recursive trash
))
5479 ((and delete-by-moving-to-trash trash
)
5480 ;; Only move non-empty dir to trash if recursive deletion was
5481 ;; requested. This mimics the non-`delete-by-moving-to-trash'
5482 ;; case, where the operation fails in delete-directory-internal.
5483 ;; As `move-file-to-trash' trashes directories (empty or
5484 ;; otherwise) as a unit, we do not need to recurse here.
5485 (if (and (not recursive
)
5486 ;; Check if directory is empty apart from "." and "..".
5488 directory
'full directory-files-no-dot-files-regexp
))
5489 (error "Directory is not empty, not moving to trash")
5490 (move-file-to-trash directory
)))
5491 ;; Otherwise, call ourselves recursively if needed.
5493 (when (or (not recursive
) (file-symlink-p directory
)
5495 (files--force t
#'directory-files directory
'full
5496 directory-files-no-dot-files-regexp
))
5497 (directory-exists (listp files
)))
5498 (when directory-exists
5499 (mapc (lambda (file)
5500 ;; This test is equivalent to but more efficient
5501 ;; than (and (file-directory-p fn)
5502 ;; (not (file-symlink-p fn))).
5503 (if (eq t
(car (file-attributes file
)))
5504 (delete-directory file recursive
)
5505 (files--force t
#'delete-file file
)))
5508 (files--force recursive
#'delete-directory-internal directory
))))))
5510 (defun file-equal-p (file1 file2
)
5511 "Return non-nil if files FILE1 and FILE2 name the same file.
5512 If FILE1 or FILE2 does not exist, the return value is unspecified."
5513 (let ((handler (or (find-file-name-handler file1
'file-equal-p
)
5514 (find-file-name-handler file2
'file-equal-p
))))
5516 (funcall handler
'file-equal-p file1 file2
)
5517 (let (f1-attr f2-attr
)
5518 (and (setq f1-attr
(file-attributes (file-truename file1
)))
5519 (setq f2-attr
(file-attributes (file-truename file2
)))
5520 (equal f1-attr f2-attr
))))))
5522 (defun file-in-directory-p (file dir
)
5523 "Return non-nil if FILE is in DIR or a subdirectory of DIR.
5524 A directory is considered to be \"in\" itself.
5525 Return nil if DIR is not an existing directory."
5526 (let ((handler (or (find-file-name-handler file
'file-in-directory-p
)
5527 (find-file-name-handler dir
'file-in-directory-p
))))
5529 (funcall handler
'file-in-directory-p file dir
)
5530 (when (file-directory-p dir
) ; DIR must exist.
5531 (setq file
(file-truename file
)
5532 dir
(file-truename dir
))
5533 (let ((ls1 (split-string file
"/" t
))
5534 (ls2 (split-string dir
"/" t
))
5537 ;; A UNC on Windows systems, or a "super-root" on Apollo.
5538 ((string-match "\\`//" file
) "//")
5539 ((string-match "\\`/" file
) "/")
5542 (while (and ls1 ls2
(not mismatch
))
5543 (if (string-equal (car ls1
) (car ls2
))
5544 (setq root
(concat root
(car ls1
) "/"))
5549 (file-equal-p root dir
)))))))
5551 (defun copy-directory (directory newname
&optional keep-time parents copy-contents
)
5552 "Copy DIRECTORY to NEWNAME. Both args must be strings.
5553 This function always sets the file modes of the output files to match
5554 the corresponding input file.
5556 The third arg KEEP-TIME non-nil means give the output files the same
5557 last-modified time as the old ones. (This works on only some systems.)
5559 A prefix arg makes KEEP-TIME non-nil.
5561 Noninteractively, the last argument PARENTS says whether to
5562 create parent directories if they don't exist. Interactively,
5563 this happens by default.
5565 If NEWNAME is a directory name, copy DIRECTORY as a subdirectory
5566 there. However, if called from Lisp with a non-nil optional
5567 argument COPY-CONTENTS, copy the contents of DIRECTORY directly
5568 into NEWNAME instead."
5570 (let ((dir (read-directory-name
5571 "Copy directory: " default-directory default-directory t nil
)))
5573 (read-directory-name
5574 (format "Copy directory %s to: " dir
)
5575 default-directory default-directory nil nil
)
5576 current-prefix-arg t nil
)))
5577 (when (file-in-directory-p newname directory
)
5578 (error "Cannot copy `%s' into its subdirectory `%s'"
5580 ;; If default-directory is a remote directory, make sure we find its
5581 ;; copy-directory handler.
5582 (let ((handler (or (find-file-name-handler directory
'copy-directory
)
5583 (find-file-name-handler newname
'copy-directory
))))
5585 (funcall handler
'copy-directory directory
5586 newname keep-time parents copy-contents
)
5588 ;; Compute target name.
5589 (setq directory
(directory-file-name (expand-file-name directory
))
5590 newname
(expand-file-name newname
))
5592 (cond ((not (directory-name-p newname
))
5593 ;; If NEWNAME is not a directory name, create it;
5594 ;; that is where we will copy the files of DIRECTORY.
5595 (make-directory newname parents
))
5596 ;; NEWNAME is a directory name. If COPY-CONTENTS is non-nil,
5597 ;; create NEWNAME if it is not already a directory;
5598 ;; otherwise, create NEWNAME/[DIRECTORY-BASENAME].
5600 (or parents
(not (file-directory-p newname
)))
5601 (setq newname
(concat newname
5602 (file-name-nondirectory directory
))))
5603 (make-directory (directory-file-name newname
) parents
)))
5605 ;; Copy recursively.
5607 ;; We do not want to copy "." and "..".
5608 (directory-files directory
'full
5609 directory-files-no-dot-files-regexp
))
5610 (let ((target (concat (file-name-as-directory newname
)
5611 (file-name-nondirectory file
)))
5612 (filetype (car (file-attributes file
))))
5614 ((eq filetype t
) ; Directory but not a symlink.
5615 (copy-directory file target keep-time parents t
))
5616 ((stringp filetype
) ; Symbolic link
5617 (make-symbolic-link filetype target t
))
5618 ((copy-file file target t keep-time
)))))
5620 ;; Set directory attributes.
5621 (let ((modes (file-modes directory
))
5622 (times (and keep-time
(nth 5 (file-attributes directory
)))))
5623 (if modes
(set-file-modes newname modes
))
5624 (if times
(set-file-times newname times
))))))
5627 ;; At time of writing, only info uses this.
5628 (defun prune-directory-list (dirs &optional keep reject
)
5629 "Return a copy of DIRS with all non-existent directories removed.
5630 The optional argument KEEP is a list of directories to retain even if
5631 they don't exist, and REJECT is a list of directories to remove from
5632 DIRS, even if they exist; REJECT takes precedence over KEEP.
5634 Note that membership in REJECT and KEEP is checked using simple string
5637 (mapcar (lambda (dir)
5638 (and (not (member dir reject
))
5639 (or (member dir keep
) (file-directory-p dir
))
5644 (put 'revert-buffer-function
'permanent-local t
)
5645 (defvar revert-buffer-function
#'revert-buffer--default
5646 "Function to use to revert this buffer.
5647 The function receives two arguments IGNORE-AUTO and NOCONFIRM,
5648 which are the arguments that `revert-buffer' received.
5649 It also has access to the `preserve-modes' argument of `revert-buffer'
5650 via the `revert-buffer-preserve-modes' dynamic variable.
5652 For historical reasons, a value of nil means to use the default function.
5653 This should not be relied upon.")
5655 (put 'revert-buffer-insert-file-contents-function
'permanent-local t
)
5656 (defvar revert-buffer-insert-file-contents-function
5657 #'revert-buffer-insert-file-contents--default-function
5658 "Function to use to insert contents when reverting this buffer.
5659 The function receives two arguments: the first the nominal file name to use;
5660 the second is t if reading the auto-save file.
5662 The function is responsible for updating (or preserving) point.
5664 For historical reasons, a value of nil means to use the default function.
5665 This should not be relied upon.")
5667 (defun buffer-stale--default-function (&optional _noconfirm
)
5668 "Default function to use for `buffer-stale-function'.
5669 This function ignores its argument.
5670 This returns non-nil if the current buffer is visiting a readable file
5671 whose modification time does not match that of the buffer.
5673 This function only handles buffers that are visiting files.
5674 Non-file buffers need a custom function"
5675 (and buffer-file-name
5676 (file-readable-p buffer-file-name
)
5677 (not (buffer-modified-p (current-buffer)))
5678 (not (verify-visited-file-modtime (current-buffer)))))
5680 (defvar buffer-stale-function
#'buffer-stale--default-function
5681 "Function to check whether a buffer needs reverting.
5682 This should be a function with one optional argument NOCONFIRM.
5683 Auto Revert Mode passes t for NOCONFIRM. The function should return
5684 non-nil if the buffer should be reverted. A return value of
5685 `fast' means that the need for reverting was not checked, but
5686 that reverting the buffer is fast. The buffer is current when
5687 this function is called.
5689 The idea behind the NOCONFIRM argument is that it should be
5690 non-nil if the buffer is going to be reverted without asking the
5691 user. In such situations, one has to be careful with potentially
5692 time consuming operations.
5694 For historical reasons, a value of nil means to use the default function.
5695 This should not be relied upon.
5697 For more information on how this variable is used by Auto Revert mode,
5698 see Info node `(emacs)Supporting additional buffers'.")
5700 (defvar before-revert-hook nil
5701 "Normal hook for `revert-buffer' to run before reverting.
5702 The function `revert-buffer--default' runs this.
5703 A customized `revert-buffer-function' need not run this hook.")
5705 (defvar after-revert-hook nil
5706 "Normal hook for `revert-buffer' to run after reverting.
5707 Note that the hook value that it runs is the value that was in effect
5708 before reverting; that makes a difference if you have buffer-local
5711 The function `revert-buffer--default' runs this.
5712 A customized `revert-buffer-function' need not run this hook.")
5714 (defvar revert-buffer-in-progress-p nil
5715 "Non-nil if a `revert-buffer' operation is in progress, nil otherwise.")
5717 (defvar revert-buffer-internal-hook
)
5719 ;; `revert-buffer-function' was defined long ago to be a function of only
5720 ;; 2 arguments, so we have to use a dynbind variable to pass the
5721 ;; `preserve-modes' argument of `revert-buffer'.
5722 (defvar revert-buffer-preserve-modes
)
5724 (defun revert-buffer (&optional ignore-auto noconfirm preserve-modes
)
5725 "Replace current buffer text with the text of the visited file on disk.
5726 This undoes all changes since the file was visited or saved.
5727 With a prefix argument, offer to revert from latest auto-save file, if
5728 that is more recent than the visited file.
5730 This command also implements an interface for special buffers
5731 that contain text which doesn't come from a file, but reflects
5732 some other data instead (e.g. Dired buffers, `buffer-list'
5733 buffers). This is done via the variable `revert-buffer-function'.
5734 In these cases, it should reconstruct the buffer contents from the
5737 When called from Lisp, the first argument is IGNORE-AUTO; only offer
5738 to revert from the auto-save file when this is nil. Note that the
5739 sense of this argument is the reverse of the prefix argument, for the
5740 sake of backward compatibility. IGNORE-AUTO is optional, defaulting
5743 Optional second argument NOCONFIRM means don't ask for confirmation
5744 at all. (The variable `revert-without-query' offers another way to
5745 revert buffers without querying for confirmation.)
5747 Optional third argument PRESERVE-MODES non-nil means don't alter
5748 the files modes. Normally we reinitialize them using `normal-mode'.
5750 This function binds `revert-buffer-in-progress-p' non-nil while it operates.
5752 This function calls the function that `revert-buffer-function' specifies
5753 to do the work, with arguments IGNORE-AUTO and NOCONFIRM.
5754 The default function runs the hooks `before-revert-hook' and
5755 `after-revert-hook'."
5756 ;; I admit it's odd to reverse the sense of the prefix argument, but
5757 ;; there is a lot of code out there which assumes that the first
5758 ;; argument should be t to avoid consulting the auto-save file, and
5759 ;; there's no straightforward way to encourage authors to notice a
5760 ;; reversal of the argument sense. So I'm just changing the user
5761 ;; interface, but leaving the programmatic interface the same.
5762 (interactive (list (not current-prefix-arg
)))
5763 (let ((revert-buffer-in-progress-p t
)
5764 (revert-buffer-preserve-modes preserve-modes
))
5765 (funcall (or revert-buffer-function
#'revert-buffer--default
)
5766 ignore-auto noconfirm
)))
5768 (defun revert-buffer--default (ignore-auto noconfirm
)
5769 "Default function for `revert-buffer'.
5770 The arguments IGNORE-AUTO and NOCONFIRM are as described for `revert-buffer'.
5771 Runs the hooks `before-revert-hook' and `after-revert-hook' at the
5774 Calls `revert-buffer-insert-file-contents-function' to reread the
5775 contents of the visited file, with two arguments: the first is the file
5776 name, the second is non-nil if reading an auto-save file.
5778 This function only handles buffers that are visiting files.
5779 Non-file buffers need a custom function."
5780 (with-current-buffer (or (buffer-base-buffer (current-buffer))
5782 (let* ((auto-save-p (and (not ignore-auto
)
5783 (recent-auto-save-p)
5784 buffer-auto-save-file-name
5785 (file-readable-p buffer-auto-save-file-name
)
5787 "Buffer has been auto-saved recently. Revert from auto-save file? ")))
5788 (file-name (if auto-save-p
5789 buffer-auto-save-file-name
5791 (cond ((null file-name
)
5792 (error "Buffer does not seem to be associated with any file"))
5794 (and (not (buffer-modified-p))
5796 (dolist (regexp revert-without-query
)
5797 (when (string-match regexp file-name
)
5798 (throw 'found t
)))))
5799 (yes-or-no-p (format "Revert buffer from file %s? "
5801 (run-hooks 'before-revert-hook
)
5802 ;; If file was backed up but has changed since,
5803 ;; we should make another backup.
5804 (and (not auto-save-p
)
5805 (not (verify-visited-file-modtime (current-buffer)))
5806 (setq buffer-backed-up nil
))
5807 ;; Effectively copy the after-revert-hook status,
5808 ;; since after-find-file will clobber it.
5809 (let ((global-hook (default-value 'after-revert-hook
))
5810 (local-hook (when (local-variable-p 'after-revert-hook
)
5812 (inhibit-read-only t
))
5813 ;; FIXME: Throw away undo-log when preserve-modes is nil?
5815 (or revert-buffer-insert-file-contents-function
5816 #'revert-buffer-insert-file-contents--default-function
)
5817 file-name auto-save-p
)
5818 ;; Recompute the truename in case changes in symlinks
5819 ;; have changed the truename.
5820 (setq buffer-file-truename
5821 (abbreviate-file-name (file-truename buffer-file-name
)))
5822 (after-find-file nil nil t nil revert-buffer-preserve-modes
)
5823 ;; Run after-revert-hook as it was before we reverted.
5824 (setq-default revert-buffer-internal-hook global-hook
)
5826 (set (make-local-variable 'revert-buffer-internal-hook
)
5828 (kill-local-variable 'revert-buffer-internal-hook
))
5829 (run-hooks 'revert-buffer-internal-hook
))
5832 (defun revert-buffer-insert-file-contents--default-function (file-name auto-save-p
)
5833 "Default function for `revert-buffer-insert-file-contents-function'.
5834 The function `revert-buffer--default' calls this.
5835 FILE-NAME is the name of the file. AUTO-SAVE-P is non-nil if this is
5838 ((not (file-exists-p file-name
))
5839 (error (if buffer-file-number
5840 "File %s no longer exists!"
5841 "Cannot revert nonexistent file %s")
5843 ((not (file-readable-p file-name
))
5844 (error (if buffer-file-number
5845 "File %s no longer readable!"
5846 "Cannot revert unreadable file %s")
5849 ;; Bind buffer-file-name to nil
5850 ;; so that we don't try to lock the file.
5851 (let ((buffer-file-name nil
))
5855 (let ((coding-system-for-read
5856 ;; Auto-saved file should be read by Emacs's
5858 (if auto-save-p
'auto-save-coding
5859 (or coding-system-for-read
5861 buffer-file-coding-system-explicit
5862 (car buffer-file-coding-system-explicit
))))))
5863 (if (and (not enable-multibyte-characters
)
5864 coding-system-for-read
5865 (not (memq (coding-system-base
5866 coding-system-for-read
)
5867 '(no-conversion raw-text
))))
5868 ;; As a coding system suitable for multibyte
5869 ;; buffer is specified, make the current
5870 ;; buffer multibyte.
5871 (set-buffer-multibyte t
))
5873 ;; This force after-insert-file-set-coding
5874 ;; (called from insert-file-contents) to set
5875 ;; buffer-file-coding-system to a proper value.
5876 (kill-local-variable 'buffer-file-coding-system
)
5878 ;; Note that this preserves point in an intelligent way.
5879 (if revert-buffer-preserve-modes
5880 (let ((buffer-file-format buffer-file-format
))
5881 (insert-file-contents file-name
(not auto-save-p
)
5883 (insert-file-contents file-name
(not auto-save-p
)
5886 (defun recover-this-file ()
5887 "Recover the visited file--get contents from its last auto-save file."
5889 (or buffer-file-name
5890 (user-error "This buffer is not visiting a file"))
5891 (recover-file buffer-file-name
))
5893 (defun recover-file (file)
5894 "Visit file FILE, but get contents from its last auto-save file."
5895 ;; Actually putting the file name in the minibuffer should be used
5897 ;; Not just because users often use the default.
5898 (interactive "FRecover file: ")
5899 (setq file
(expand-file-name file
))
5900 (if (auto-save-file-name-p (file-name-nondirectory file
))
5901 (error "%s is an auto-save file" (abbreviate-file-name file
)))
5902 (let ((file-name (let ((buffer-file-name file
))
5903 (make-auto-save-file-name))))
5904 (cond ((and (file-exists-p file
)
5905 (not (file-exists-p file-name
)))
5906 (error "Auto save file %s does not exist"
5907 (abbreviate-file-name file-name
)))
5908 ((if (file-exists-p file
)
5909 (not (file-newer-than-file-p file-name file
))
5910 (not (file-exists-p file-name
)))
5911 (error "Auto-save file %s not current"
5912 (abbreviate-file-name file-name
)))
5913 ((with-temp-buffer-window
5915 #'(lambda (window _value
)
5916 (with-selected-window window
5918 (yes-or-no-p (format "Recover auto save file %s? " file-name
))
5919 (when (window-live-p window
)
5920 (quit-restore-window window
'kill
)))))
5921 (with-current-buffer standard-output
5922 (let ((switches dired-listing-switches
))
5923 (if (file-symlink-p file
)
5924 (setq switches
(concat switches
" -L")))
5925 ;; Use insert-directory-safely, not insert-directory,
5926 ;; because these files might not exist. In particular,
5927 ;; FILE might not exist if the auto-save file was for
5928 ;; a buffer that didn't visit a file, such as "*mail*".
5929 ;; The code in v20.x called `ls' directly, so we need
5930 ;; to emulate what `ls' did in that case.
5931 (insert-directory-safely file switches
)
5932 (insert-directory-safely file-name switches
))))
5933 (switch-to-buffer (find-file-noselect file t
))
5934 (let ((inhibit-read-only t
)
5935 ;; Keep the current buffer-file-coding-system.
5936 (coding-system buffer-file-coding-system
)
5937 ;; Auto-saved file should be read with special coding.
5938 (coding-system-for-read 'auto-save-coding
))
5940 (insert-file-contents file-name nil
)
5941 (set-buffer-file-coding-system coding-system
))
5942 (after-find-file nil nil t
))
5943 (t (user-error "Recover-file canceled")))))
5945 (defun recover-session ()
5946 "Recover auto save files from a previous Emacs session.
5947 This command first displays a Dired buffer showing you the
5948 previous sessions that you could recover from.
5949 To choose one, move point to the proper line and then type C-c C-c.
5950 Then you'll be asked about a number of files to recover."
5952 (if (null auto-save-list-file-prefix
)
5953 (error "You set `auto-save-list-file-prefix' to disable making session files"))
5954 (let ((dir (file-name-directory auto-save-list-file-prefix
))
5955 (nd (file-name-nondirectory auto-save-list-file-prefix
)))
5956 (unless (file-directory-p dir
)
5957 (make-directory dir t
))
5958 (unless (directory-files dir nil
5960 directory-files-no-dot-files-regexp
5961 (concat "\\`" (regexp-quote nd
)))
5963 (error "No previous sessions to recover")))
5964 (let ((ls-lisp-support-shell-wildcards t
))
5965 (dired (concat auto-save-list-file-prefix
"*")
5966 (concat dired-listing-switches
" -t")))
5967 (use-local-map (nconc (make-sparse-keymap) (current-local-map)))
5968 (define-key (current-local-map) "\C-c\C-c" 'recover-session-finish
)
5970 (goto-char (point-min))
5971 (or (looking-at " Move to the session you want to recover,")
5972 (let ((inhibit-read-only t
))
5973 ;; Each line starts with a space
5974 ;; so that Font Lock mode won't highlight the first character.
5975 (insert " To recover a session, move to it and type C-c C-c.\n"
5976 (substitute-command-keys
5977 " To delete a session file, type \
5978 \\[dired-flag-file-deletion] on its line to flag
5979 the file for deletion, then \\[dired-do-flagged-delete] to \
5980 delete flagged files.\n\n"))))))
5982 (defun recover-session-finish ()
5983 "Choose one saved session to recover auto-save files from.
5984 This command is used in the special Dired buffer created by
5985 \\[recover-session]."
5987 ;; Get the name of the session file to recover from.
5988 (let ((file (dired-get-filename))
5990 (buffer (get-buffer-create " *recover*")))
5992 (dired-do-flagged-delete t
)
5994 (with-current-buffer buffer
5995 ;; Read in the auto-save-list file.
5997 (insert-file-contents file
)
5998 ;; Loop thru the text of that file
5999 ;; and get out the names of the files to recover.
6001 (let (thisfile autofile
)
6003 ;; This is a pair of lines for a non-file-visiting buffer.
6004 ;; Get the auto-save file name and manufacture
6005 ;; a "visited file name" from that.
6008 ;; If there is no auto-save file name, the
6009 ;; auto-save-list file is probably corrupted.
6012 (buffer-substring-no-properties
6014 (line-end-position)))
6018 (file-name-nondirectory autofile
)
6020 (file-name-directory autofile
))))
6022 ;; This pair of lines is a file-visiting
6023 ;; buffer. Use the visited file name.
6026 (buffer-substring-no-properties
6027 (point) (progn (end-of-line) (point))))
6030 (buffer-substring-no-properties
6031 (point) (progn (end-of-line) (point))))
6033 ;; Ignore a file if its auto-save file does not exist now.
6034 (if (and autofile
(file-exists-p autofile
))
6035 (setq files
(cons thisfile files
)))))
6036 (setq files
(nreverse files
))
6037 ;; The file contains a pair of line for each auto-saved buffer.
6038 ;; The first line of the pair contains the visited file name
6039 ;; or is empty if the buffer was not visiting a file.
6040 ;; The second line is the auto-save file name.
6042 (map-y-or-n-p "Recover %s? "
6045 (save-excursion (recover-file file
))
6047 "Failed to recover `%s'" file
)))
6049 '("file" "files" "recover"))
6050 (message "No files can be recovered from this session now")))
6051 (kill-buffer buffer
))))
6053 (defun kill-buffer-ask (buffer)
6054 "Kill BUFFER if confirmed."
6055 (when (yes-or-no-p (format "Buffer %s %s. Kill? "
6056 (buffer-name buffer
)
6057 (if (buffer-modified-p buffer
)
6058 "HAS BEEN EDITED" "is unmodified")))
6059 (kill-buffer buffer
)))
6061 (defun kill-some-buffers (&optional list
)
6062 "Kill some buffers. Asks the user whether to kill each one of them.
6063 Non-interactively, if optional argument LIST is non-nil, it
6064 specifies the list of buffers to kill, asking for approval for each one."
6067 (setq list
(buffer-list)))
6069 (let* ((buffer (car list
))
6070 (name (buffer-name buffer
)))
6071 (and name
; Can be nil for an indirect buffer
6072 ; if we killed the base buffer.
6073 (not (string-equal name
""))
6074 (/= (aref name
0) ?\s
)
6075 (kill-buffer-ask buffer
)))
6076 (setq list
(cdr list
))))
6078 (defun kill-matching-buffers (regexp &optional internal-too no-ask
)
6079 "Kill buffers whose name matches the specified REGEXP.
6080 Ignores buffers whose name starts with a space, unless optional
6081 prefix argument INTERNAL-TOO is non-nil. Asks before killing
6082 each buffer, unless NO-ASK is non-nil."
6083 (interactive "sKill buffers matching this regular expression: \nP")
6084 (dolist (buffer (buffer-list))
6085 (let ((name (buffer-name buffer
)))
6086 (when (and name
(not (string-equal name
""))
6087 (or internal-too
(/= (aref name
0) ?\s
))
6088 (string-match regexp name
))
6089 (funcall (if no-ask
'kill-buffer
'kill-buffer-ask
) buffer
)))))
6092 (defun rename-auto-save-file ()
6093 "Adjust current buffer's auto save file name for current conditions.
6094 Also rename any existing auto save file, if it was made in this session."
6095 (let ((osave buffer-auto-save-file-name
))
6096 (setq buffer-auto-save-file-name
6097 (make-auto-save-file-name))
6098 (if (and osave buffer-auto-save-file-name
6099 (not (string= buffer-auto-save-file-name buffer-file-name
))
6100 (not (string= buffer-auto-save-file-name osave
))
6101 (file-exists-p osave
)
6102 (recent-auto-save-p))
6103 (rename-file osave buffer-auto-save-file-name t
))))
6105 (defun make-auto-save-file-name ()
6106 "Return file name to use for auto-saves of current buffer.
6107 Does not consider `auto-save-visited-file-name' as that variable is checked
6108 before calling this function. You can redefine this for customization.
6109 See also `auto-save-file-name-p'."
6110 (if buffer-file-name
6111 (let ((handler (find-file-name-handler buffer-file-name
6112 'make-auto-save-file-name
)))
6114 (funcall handler
'make-auto-save-file-name
)
6115 (let ((list auto-save-file-name-transforms
)
6116 (filename buffer-file-name
)
6118 ;; Apply user-specified translations
6119 ;; to the file name.
6120 (while (and list
(not result
))
6121 (if (string-match (car (car list
)) filename
)
6122 (setq result
(replace-match (cadr (car list
)) t nil
6124 uniq
(car (cddr (car list
)))))
6125 (setq list
(cdr list
)))
6128 (setq filename
(concat
6129 (file-name-directory result
)
6130 (subst-char-in-string
6132 (replace-regexp-in-string "!" "!!"
6134 (setq filename result
)))
6136 (if (and (eq system-type
'ms-dos
)
6137 (not (msdos-long-file-names)))
6138 ;; We truncate the file name to DOS 8+3 limits
6139 ;; before doing anything else, because the regexp
6140 ;; passed to string-match below cannot handle
6141 ;; extensions longer than 3 characters, multiple
6142 ;; dots, and other atrocities.
6143 (let ((fn (dos-8+3-filename
6144 (file-name-nondirectory buffer-file-name
))))
6146 "\\`\\([^.]+\\)\\(\\.\\(..?\\)?.?\\|\\)\\'"
6148 (concat (file-name-directory buffer-file-name
)
6149 "#" (match-string 1 fn
)
6150 "." (match-string 3 fn
) "#"))
6151 (concat (file-name-directory filename
)
6153 (file-name-nondirectory filename
)
6155 ;; Make sure auto-save file names don't contain characters
6156 ;; invalid for the underlying filesystem.
6157 (if (and (memq system-type
'(ms-dos windows-nt cygwin
))
6158 ;; Don't modify remote filenames
6159 (not (file-remote-p result
)))
6160 (convert-standard-filename result
)
6163 ;; Deal with buffers that don't have any associated files. (Mail
6164 ;; mode tends to create a good number of these.)
6166 (let ((buffer-name (buffer-name))
6169 ;; Restrict the characters used in the file name to those which
6170 ;; are known to be safe on all filesystems, url-encoding the
6172 ;; We do this on all platforms, because even if we are not
6173 ;; running on DOS/Windows, the current directory may be on a
6174 ;; mounted VFAT filesystem, such as a USB memory stick.
6175 (while (string-match "[^A-Za-z0-9-_.~#+]" buffer-name limit
)
6176 (let* ((character (aref buffer-name
(match-beginning 0)))
6178 ;; For multibyte characters, this will produce more than
6179 ;; 2 hex digits, so is not true URL encoding.
6180 (format "%%%02X" character
)))
6181 (setq buffer-name
(replace-match replacement t t buffer-name
))
6182 (setq limit
(1+ (match-end 0)))))
6183 ;; Generate the file name.
6188 (format "#%s#" buffer-name
)
6189 ;; Try a few alternative directories, to get one we can
6192 ((file-writable-p default-directory
) default-directory
)
6193 ((file-writable-p "/var/tmp/") "/var/tmp/")
6195 (if (and (memq system-type
'(ms-dos windows-nt cygwin
))
6196 ;; Don't modify remote filenames
6197 (not (file-remote-p fname
)))
6198 ;; The call to convert-standard-filename is in case
6199 ;; buffer-name includes characters not allowed by the
6200 ;; DOS/Windows filesystems. make-temp-file writes to the
6201 ;; file it creates, so we must fix the file name _before_
6202 ;; make-temp-file is called.
6203 (convert-standard-filename fname
)
6206 ;; make-temp-file creates the file,
6207 ;; but we don't want it to exist until we do an auto-save.
6209 (delete-file file-name
)
6213 (defun auto-save-file-name-p (filename)
6214 "Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'.
6215 FILENAME should lack slashes. You can redefine this for customization."
6216 (string-match "\\`#.*#\\'" filename
))
6218 (defun wildcard-to-regexp (wildcard)
6219 "Given a shell file name pattern WILDCARD, return an equivalent regexp.
6220 The generated regexp will match a filename only if the filename
6221 matches that wildcard according to shell rules. Only wildcards known
6222 by `sh' are supported."
6223 (let* ((i (string-match "[[.*+\\^$?]" wildcard
))
6224 ;; Copy the initial run of non-special characters.
6225 (result (substring wildcard
0 i
))
6226 (len (length wildcard
)))
6227 ;; If no special characters, we're almost done.
6230 (let ((ch (aref wildcard i
))
6238 (eq (aref wildcard
(1+ i
)) ?\
]))
6240 ((eq ch ?\
[) ; [...] maps to regexp char class
6245 ((eq (aref wildcard i
) ?
!) ; [!...] -> [^...]
6248 (if (eq (aref wildcard i
) ?\
])
6253 ((eq (aref wildcard i
) ?^
)
6254 ;; Found "[^". Insert a `\0' character
6255 ;; (which cannot happen in a filename)
6256 ;; into the character class, so that `^'
6257 ;; is not the first character after `[',
6258 ;; and thus non-special in a regexp.
6262 ((eq (aref wildcard i
) ?\
])
6263 ;; I don't think `]' can appear in a
6264 ;; character class in a wildcard, but
6265 ;; let's be general here.
6270 (prog1 ; copy everything upto next `]'.
6273 (setq j
(string-match
6275 (setq i
(if j
(1- j
) (1- len
)))))))
6277 ((eq ch ?
*) "[^\000]*")
6281 ((eq ch ?
\\) "\\\\") ; probably cannot happen...
6282 ((eq ch ??
) "[^\000]")
6283 (t (char-to-string ch
)))))
6285 ;; Shell wildcards should match the entire filename,
6286 ;; not its part. Make the regexp say so.
6287 (concat "\\`" result
"\\'")))
6289 (defcustom list-directory-brief-switches
6291 "Switches for `list-directory' to pass to `ls' for brief listing."
6295 (defcustom list-directory-verbose-switches
6297 "Switches for `list-directory' to pass to `ls' for verbose listing."
6301 (defun file-expand-wildcards (pattern &optional full
)
6302 "Expand wildcard pattern PATTERN.
6303 This returns a list of file names which match the pattern.
6304 Files are sorted in `string<' order.
6306 If PATTERN is written as an absolute file name,
6307 the values are absolute also.
6309 If PATTERN is written as a relative file name, it is interpreted
6310 relative to the current default directory, `default-directory'.
6311 The file names returned are normally also relative to the current
6312 default directory. However, if FULL is non-nil, they are absolute."
6314 (let* ((nondir (file-name-nondirectory pattern
))
6315 (dirpart (file-name-directory pattern
))
6316 ;; A list of all dirs that DIRPART specifies.
6317 ;; This can be more than one dir
6318 ;; if DIRPART contains wildcards.
6319 (dirs (if (and dirpart
6320 (string-match "[[*?]" (file-local-name dirpart
)))
6321 (mapcar 'file-name-as-directory
6322 (file-expand-wildcards (directory-file-name dirpart
)))
6326 (when (or (null dir
) ; Possible if DIRPART is not wild.
6327 (file-accessible-directory-p dir
))
6328 (let ((this-dir-contents
6329 ;; Filter out "." and ".."
6331 (mapcar #'(lambda (name)
6332 (unless (string-match "\\`\\.\\.?\\'"
6333 (file-name-nondirectory name
))
6335 (directory-files (or dir
".") full
6336 (wildcard-to-regexp nondir
))))))
6339 (if (and dir
(not full
))
6340 (mapcar #'(lambda (name) (concat dir name
))
6346 ;; Let Tramp know that `file-expand-wildcards' does not need an advice.
6347 (provide 'files
'(remote-wildcards))
6349 (defun list-directory (dirname &optional verbose
)
6350 "Display a list of files in or matching DIRNAME, a la `ls'.
6351 DIRNAME is globbed by the shell if necessary.
6352 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
6353 Actions controlled by variables `list-directory-brief-switches'
6354 and `list-directory-verbose-switches'."
6355 (interactive (let ((pfx current-prefix-arg
))
6356 (list (read-directory-name (if pfx
"List directory (verbose): "
6357 "List directory (brief): ")
6358 nil default-directory nil
)
6360 (let ((switches (if verbose list-directory-verbose-switches
6361 list-directory-brief-switches
))
6363 (or dirname
(setq dirname default-directory
))
6364 (setq dirname
(expand-file-name dirname
))
6365 (with-output-to-temp-buffer "*Directory*"
6366 (setq buffer standard-output
)
6367 (buffer-disable-undo standard-output
)
6368 (princ "Directory ")
6371 (with-current-buffer "*Directory*"
6372 (let ((wildcard (not (file-directory-p dirname
))))
6373 (insert-directory dirname switches wildcard
(not wildcard
)))))
6374 ;; Finishing with-output-to-temp-buffer seems to clobber default-directory.
6375 (with-current-buffer buffer
6376 (setq default-directory
6377 (if (file-directory-p dirname
)
6378 (file-name-as-directory dirname
)
6379 (file-name-directory dirname
))))))
6381 (defun shell-quote-wildcard-pattern (pattern)
6382 "Quote characters special to the shell in PATTERN, leave wildcards alone.
6384 PATTERN is assumed to represent a file-name wildcard suitable for the
6385 underlying filesystem. For Unix and GNU/Linux, each character from the
6386 set [ \\t\\n;<>&|()\\=`\\='\"#$] is quoted with a backslash; for DOS/Windows, all
6387 the parts of the pattern which don't include wildcard characters are
6388 quoted with double quotes.
6390 This function leaves alone existing quote characters (\\ on Unix and \"
6391 on Windows), so PATTERN can use them to quote wildcard characters that
6392 need to be passed verbatim to shell commands."
6395 ((memq system-type
'(ms-dos windows-nt cygwin
))
6396 ;; DOS/Windows don't allow `"' in file names. So if the
6397 ;; argument has quotes, we can safely assume it is already
6398 ;; quoted by the caller.
6399 (if (or (string-match "[\"]" pattern
)
6400 ;; We quote [&()#$`'] in case their shell is a port of a
6401 ;; Unixy shell. We quote [,=+] because stock DOS and
6402 ;; Windows shells require that in some cases, such as
6403 ;; passing arguments to batch files that use positional
6404 ;; arguments like %1.
6405 (not (string-match "[ \t;&()#$`',=+]" pattern
)))
6410 (while (string-match "[*?]+" pattern beg
)
6411 (setq end
(match-beginning 0)
6412 result
(concat result
(substring pattern beg end
)
6414 (substring pattern end
(match-end 0))
6417 (concat result
(substring pattern beg
) "\""))))
6420 (while (string-match "[ \t\n;<>&|()`'\"#$]" pattern beg
)
6422 (concat (substring pattern
0 (match-beginning 0))
6424 (substring pattern
(match-beginning 0)))
6425 beg
(1+ (match-end 0)))))
6429 (defvar insert-directory-program
(purecopy "ls")
6430 "Absolute or relative name of the `ls' program used by `insert-directory'.")
6432 (defcustom directory-free-space-program
(purecopy "df")
6433 "Program to get the amount of free space on a file system.
6434 We assume the output has the format of `df'.
6435 The value of this variable must be just a command name or file name;
6436 if you want to specify options, use `directory-free-space-args'.
6438 A value of nil disables this feature.
6440 This variable is obsolete; Emacs no longer uses it."
6441 :type
'(choice (string :tag
"Program") (const :tag
"None" nil
))
6443 (make-obsolete-variable 'directory-free-space-program
6444 "ignored, as Emacs uses `file-system-info' instead"
6447 (defcustom directory-free-space-args
6448 (purecopy (if (eq system-type
'darwin
) "-k" "-Pk"))
6449 "Options to use when running `directory-free-space-program'."
6452 (make-obsolete-variable 'directory-free-space-args
6453 "ignored, as Emacs uses `file-system-info' instead"
6456 (defun get-free-disk-space (dir)
6457 "Return the amount of free space on directory DIR's file system.
6458 The return value is a string describing the amount of free
6459 space (normally, the number of free 1KB blocks).
6461 If DIR's free space cannot be obtained, this function returns nil."
6462 (let ((avail (nth 2 (file-system-info dir
))))
6464 (format "%.0f" (/ avail
1024)))))
6466 ;; The following expression replaces `dired-move-to-filename-regexp'.
6467 (defvar directory-listing-before-filename-regexp
6468 (let* ((l "\\([A-Za-z]\\|[^\0-\177]\\)")
6469 (l-or-quote "\\([A-Za-z']\\|[^\0-\177]\\)")
6470 ;; In some locales, month abbreviations are as short as 2 letters,
6471 ;; and they can be followed by ".".
6472 ;; In Breton, a month name can include a quote character.
6473 (month (concat l-or-quote l-or-quote
"+\\.?"))
6475 (yyyy "[0-9][0-9][0-9][0-9]")
6477 (HH:MM
"[ 0-2][0-9][:.][0-5][0-9]")
6478 (seconds "[0-6][0-9]\\([.,][0-9]+\\)?")
6479 (zone "[-+][0-2][0-9][0-5][0-9]")
6480 (iso-mm-dd "[01][0-9]-[0-3][0-9]")
6481 (iso-time (concat HH
:MM
"\\(:" seconds
"\\( ?" zone
"\\)?\\)?"))
6482 (iso (concat "\\(\\(" yyyy
"-\\)?" iso-mm-dd
"[ T]" iso-time
6483 "\\|" yyyy
"-" iso-mm-dd
"\\)"))
6484 (western (concat "\\(" month s
"+" dd
"\\|" dd
"\\.?" s month
"\\)"
6486 "\\(" HH
:MM
"\\|" yyyy
"\\)"))
6487 (western-comma (concat month s
"+" dd
"," s
"+" yyyy
))
6488 ;; Japanese MS-Windows ls-lisp has one-digit months, and
6489 ;; omits the Kanji characters after month and day-of-month.
6490 ;; On Mac OS X 10.3, the date format in East Asian locales is
6491 ;; day-of-month digits followed by month digits.
6494 (concat "\\(" mm l
"?" s dd l
"?" s
"+"
6495 "\\|" dd s mm s
"+" "\\)"
6496 "\\(" HH
:MM
"\\|" yyyy l
"?" "\\)")))
6497 ;; The "[0-9]" below requires the previous column to end in a digit.
6498 ;; This avoids recognizing `1 may 1997' as a date in the line:
6499 ;; -r--r--r-- 1 may 1997 1168 Oct 19 16:49 README
6501 ;; The "[BkKMGTPEZY]?" below supports "ls -alh" output.
6503 ;; For non-iso date formats, we add the ".*" in order to find
6504 ;; the last possible match. This avoids recognizing
6505 ;; `jservice 10 1024' as a date in the line:
6506 ;; drwxr-xr-x 3 jservice 10 1024 Jul 2 1997 esg-host
6508 ;; vc dired listings provide the state or blanks between file
6509 ;; permissions and date. The state is always surrounded by
6511 ;; -rw-r--r-- (modified) 2005-10-22 21:25 files.el
6512 ;; This is not supported yet.
6513 (purecopy (concat "\\([0-9][BkKMGTPEZY]? " iso
6514 "\\|.*[0-9][BkKMGTPEZY]? "
6515 "\\(" western
"\\|" western-comma
"\\|" east-asian
"\\)"
6517 "Regular expression to match up to the file name in a directory listing.
6518 The default value is designed to recognize dates and times
6519 regardless of the language.")
6521 (defvar insert-directory-ls-version
'unknown
)
6523 (defun insert-directory-wildcard-in-dir-p (dir)
6524 "Return non-nil if DIR contents a shell wildcard in the directory part.
6525 The return value is a cons (DIR . WILDCARDS); DIR is the
6526 `default-directory' in the Dired buffer, and WILDCARDS are the wildcards.
6528 Valid wildcards are '*', '?', '[abc]' and '[a-z]'."
6529 (let ((wildcards "[?*"))
6530 (when (and (or (not (featurep 'ls-lisp
))
6531 ls-lisp-support-shell-wildcards
)
6532 (string-match (concat "[" wildcards
"]") (file-name-directory dir
))
6533 (not (file-exists-p dir
))) ; Prefer an existing file to wildcards.
6534 (let ((regexp (format "\\`\\([^%s]*/\\)\\([^%s]*[%s].*\\)"
6535 wildcards wildcards wildcards
)))
6536 (string-match regexp dir
)
6537 (cons (match-string 1 dir
) (match-string 2 dir
))))))
6539 (defun insert-directory-clean (beg switches
)
6540 (when (if (stringp switches
)
6541 (string-match "--dired\\>" switches
)
6542 (member "--dired" switches
))
6543 ;; The following overshoots by one line for an empty
6544 ;; directory listed with "--dired", but without "-a"
6545 ;; switch, where the ls output contains a
6546 ;; "//DIRED-OPTIONS//" line, but no "//DIRED//" line.
6547 ;; We take care of that case later.
6549 (when (looking-at "//SUBDIRED//")
6550 (delete-region (point) (progn (forward-line 1) (point)))
6552 (if (looking-at "//DIRED//")
6553 (let ((end (line-end-position))
6556 ;; Find all the lines that are error messages,
6557 ;; and record the bounds of each one.
6559 (while (< (point) linebeg
)
6560 (or (eql (following-char) ?\s
)
6561 (push (list (point) (line-end-position)) error-lines
))
6563 (setq error-lines
(nreverse error-lines
))
6564 ;; Now read the numeric positions of file names.
6566 (forward-word-strictly 1)
6568 (while (< (point) end
)
6569 (let ((start (insert-directory-adj-pos
6570 (+ beg
(read (current-buffer)))
6572 (end (insert-directory-adj-pos
6573 (+ beg
(read (current-buffer)))
6575 (if (memq (char-after end
) '(?
\n ?\s
))
6576 ;; End is followed by \n or by " -> ".
6577 (put-text-property start end
'dired-filename t
)
6578 ;; It seems that we can't trust ls's output as to
6579 ;; byte positions of filenames.
6580 (put-text-property beg
(point) 'dired-filename nil
)
6584 (delete-region (point) (progn (forward-line 1) (point))))
6585 ;; Take care of the case where the ls output contains a
6586 ;; "//DIRED-OPTIONS//"-line, but no "//DIRED//"-line
6587 ;; and we went one line too far back (see above).
6589 (if (looking-at "//DIRED-OPTIONS//")
6590 (delete-region (point) (progn (forward-line 1) (point))))))
6593 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and
6594 ;; FULL-DIRECTORY-P is nil.
6595 ;; The single line of output must display FILE's name as it was
6596 ;; given, namely, an absolute path name.
6597 ;; - must insert exactly one line for each file if WILDCARD or
6598 ;; FULL-DIRECTORY-P is t, plus one optional "total" line
6599 ;; before the file lines, plus optional text after the file lines.
6600 ;; Lines are delimited by "\n", so filenames containing "\n" are not
6602 ;; File lines should display the basename.
6603 ;; - must be consistent with
6604 ;; - functions dired-move-to-filename, (these two define what a file line is)
6605 ;; dired-move-to-end-of-filename,
6606 ;; dired-between-files, (shortcut for (not (dired-move-to-filename)))
6607 ;; dired-insert-headerline
6608 ;; dired-after-subdir-garbage (defines what a "total" line is)
6609 ;; - variable dired-subdir-regexp
6610 ;; - may be passed "--dired" as the first argument in SWITCHES.
6611 ;; Filename handlers might have to remove this switch if their
6612 ;; "ls" command does not support it.
6613 (defun insert-directory (file switches
&optional wildcard full-directory-p
)
6614 "Insert directory listing for FILE, formatted according to SWITCHES.
6615 Leaves point after the inserted text.
6616 SWITCHES may be a string of options, or a list of strings
6617 representing individual options.
6618 Optional third arg WILDCARD means treat FILE as shell wildcard.
6619 Optional fourth arg FULL-DIRECTORY-P means file is a directory and
6620 switches do not contain `d', so that a full listing is expected.
6622 This works by running a directory listing program
6623 whose name is in the variable `insert-directory-program'.
6624 If WILDCARD, it also runs the shell specified by `shell-file-name'.
6626 When SWITCHES contains the long `--dired' option, this function
6627 treats it specially, for the sake of dired. However, the
6628 normally equivalent short `-D' option is just passed on to
6629 `insert-directory-program', as any other option."
6630 ;; We need the directory in order to find the right handler.
6631 (let ((handler (find-file-name-handler (expand-file-name file
)
6632 'insert-directory
)))
6634 (funcall handler
'insert-directory file switches
6635 wildcard full-directory-p
)
6636 (let (result (beg (point)))
6638 ;; Read the actual directory using `insert-directory-program'.
6639 ;; RESULT gets the status code.
6640 (let* (;; We at first read by no-conversion, then after
6641 ;; putting text property `dired-filename, decode one
6642 ;; bunch by one to preserve that property.
6643 (coding-system-for-read 'no-conversion
)
6644 ;; This is to control encoding the arguments in call-process.
6645 (coding-system-for-write
6646 (and enable-multibyte-characters
6647 (or file-name-coding-system
6648 default-file-name-coding-system
))))
6651 ;; If the wildcard is just in the file part, then run ls in
6652 ;; the directory part of the file pattern using the last
6653 ;; component as argument. Otherwise, run ls in the longest
6654 ;; subdirectory of the directory part free of wildcards; use
6655 ;; the remaining of the file pattern as argument.
6656 (let* ((dir-wildcard (insert-directory-wildcard-in-dir-p file
))
6658 (cond (dir-wildcard (car dir-wildcard
))
6660 (if (file-name-absolute-p file
)
6661 (file-name-directory file
)
6662 (file-name-directory (expand-file-name file
))))))
6663 (pattern (if dir-wildcard
(cdr dir-wildcard
) (file-name-nondirectory file
))))
6664 ;; NB since switches is passed to the shell, be
6665 ;; careful of malicious values, eg "-l;reboot".
6666 ;; See eg dired-safe-switches-p.
6668 shell-file-name nil t nil
6669 shell-command-switch
6670 (concat (if (memq system-type
'(ms-dos windows-nt
))
6672 "\\") ; Disregard Unix shell aliases!
6673 insert-directory-program
6675 (if (stringp switches
)
6677 (mapconcat 'identity switches
" "))
6679 ;; Quote some characters that have
6680 ;; special meanings in shells; but
6681 ;; don't quote the wildcards--we want
6682 ;; them to be special. We also
6683 ;; currently don't quote the quoting
6684 ;; characters in case people want to
6685 ;; use them explicitly to quote
6686 ;; wildcard characters.
6687 (shell-quote-wildcard-pattern pattern
))))
6688 ;; SunOS 4.1.3, SVr4 and others need the "." to list the
6689 ;; directory if FILE is a symbolic link.
6690 (unless full-directory-p
6693 ((stringp switches
) (concat switches
" -d"))
6694 ((member "-d" switches
) switches
)
6695 (t (append switches
'("-d"))))))
6696 (apply 'call-process
6697 insert-directory-program nil t nil
6699 (if (listp switches
) switches
6700 (unless (equal switches
"")
6701 ;; Split the switches at any spaces so we can
6702 ;; pass separate options as separate args.
6703 (split-string-and-unquote switches
)))
6704 ;; Avoid lossage if FILE starts with `-'.
6707 (if (string-match "\\`~" file
)
6708 (setq file
(expand-file-name file
)))
6710 (if full-directory-p
6711 ;; (concat (file-name-as-directory file) ".")
6715 ;; If we got "//DIRED//" in the output, it means we got a real
6716 ;; directory listing, even if `ls' returned nonzero.
6717 ;; So ignore any errors.
6718 (when (if (stringp switches
)
6719 (string-match "--dired\\>" switches
)
6720 (member "--dired" switches
))
6723 (when (looking-at "//SUBDIRED//")
6725 (if (looking-at "//DIRED//")
6728 (when (and (not (eq 0 result
))
6729 (eq insert-directory-ls-version
'unknown
))
6730 ;; The first time ls returns an error,
6731 ;; find the version numbers of ls,
6732 ;; and set insert-directory-ls-version
6733 ;; to > if it is more than 5.2.1, < if it is less, nil if it
6734 ;; is equal or if the info cannot be obtained.
6735 ;; (That can mean it isn't GNU ls.)
6738 (call-process "ls" nil t nil
"--version")
6740 (if (string-match "ls (.*utils) \\([0-9.]*\\)$" version-out
)
6741 (let* ((version (match-string 1 version-out
))
6742 (split (split-string version
"[.]"))
6743 (numbers (mapcar 'string-to-number split
))
6746 (while (and (not comparison
) (or numbers min
))
6748 (setq comparison
'>))
6750 (setq comparison
'<))
6751 ((> (car numbers
) (car min
))
6752 (setq comparison
'>))
6753 ((< (car numbers
) (car min
))
6754 (setq comparison
'<))
6756 (setq numbers
(cdr numbers
)
6758 (setq insert-directory-ls-version
(or comparison
'=)))
6759 (setq insert-directory-ls-version nil
))))
6761 ;; For GNU ls versions 5.2.2 and up, ignore minor errors.
6762 (when (and (eq 1 result
) (eq insert-directory-ls-version
'>))
6765 ;; If `insert-directory-program' failed, signal an error.
6766 (unless (eq 0 result
)
6767 ;; Delete the error message it may have output.
6768 (delete-region beg
(point))
6769 ;; On non-Posix systems, we cannot open a directory, so
6770 ;; don't even try, because that will always result in
6771 ;; the ubiquitous "Access denied". Instead, show the
6772 ;; command line so the user can try to guess what went wrong.
6773 (if (and (file-directory-p file
)
6774 (memq system-type
'(ms-dos windows-nt
)))
6776 "Reading directory: \"%s %s -- %s\" exited with status %s"
6777 insert-directory-program
6778 (if (listp switches
) (concat switches
) switches
)
6780 ;; Unix. Access the file to get a suitable error.
6781 (access-file file
"Reading directory")
6782 (error "Listing directory failed but `access-file' worked")))
6783 (insert-directory-clean beg switches
)
6784 ;; Now decode what read if necessary.
6785 (let ((coding (or coding-system-for-read
6786 file-name-coding-system
6787 default-file-name-coding-system
6791 (when (and enable-multibyte-characters
6792 (not (memq (coding-system-base coding
)
6793 '(raw-text no-conversion
))))
6794 ;; If no coding system is specified or detection is
6795 ;; requested, detect the coding.
6796 (if (eq (coding-system-base coding
) 'undecided
)
6797 (setq coding
(detect-coding-region beg
(point) t
)))
6798 (if (not (eq (coding-system-base coding
) 'undecided
))
6801 (coding-system-change-eol-conversion coding
'unix
))
6802 (narrow-to-region beg
(point))
6803 (goto-char (point-min))
6806 val
(get-text-property (point) 'dired-filename
))
6807 (goto-char (next-single-property-change
6808 (point) 'dired-filename nil
(point-max)))
6809 ;; Force no eol conversion on a file name, so
6810 ;; that CR is preserved.
6811 (decode-coding-region pos
(point)
6812 (if val coding-no-eol coding
))
6814 (put-text-property pos
(point)
6815 'dired-filename t
)))))))
6817 (if full-directory-p
6818 ;; Try to insert the amount of free space.
6821 ;; First find the line to put it on.
6822 (when (re-search-forward "^ *\\(total\\)" nil t
)
6823 (let ((available (get-free-disk-space ".")))
6825 ;; Replace "total" with "used", to avoid confusion.
6826 (replace-match "total used in directory" nil nil nil
1)
6828 (insert " available " available
))))))))))
6830 (defun insert-directory-adj-pos (pos error-lines
)
6831 "Convert `ls --dired' file name position value POS to a buffer position.
6832 File name position values returned in ls --dired output
6833 count only stdout; they don't count the error messages sent to stderr.
6834 So this function converts to them to real buffer positions.
6835 ERROR-LINES is a list of buffer positions of error message lines,
6836 of the form (START END)."
6837 (while (and error-lines
(< (caar error-lines
) pos
))
6838 (setq pos
(+ pos
(- (nth 1 (car error-lines
)) (nth 0 (car error-lines
)))))
6842 (defun insert-directory-safely (file switches
6843 &optional wildcard full-directory-p
)
6844 "Insert directory listing for FILE, formatted according to SWITCHES.
6846 Like `insert-directory', but if FILE does not exist, it inserts a
6847 message to that effect instead of signaling an error."
6848 (if (file-exists-p file
)
6849 (insert-directory file switches wildcard full-directory-p
)
6850 ;; Simulate the message printed by `ls'.
6851 (insert (format "%s: No such file or directory\n" file
))))
6853 (defcustom kill-emacs-query-functions nil
6854 "Functions to call with no arguments to query about killing Emacs.
6855 If any of these functions returns nil, killing Emacs is canceled.
6856 `save-buffers-kill-emacs' calls these functions, but `kill-emacs',
6857 the low level primitive, does not. See also `kill-emacs-hook'."
6860 :group
'convenience
)
6862 (defcustom confirm-kill-emacs nil
6863 "How to ask for confirmation when leaving Emacs.
6864 If nil, the default, don't ask at all. If the value is non-nil, it should
6865 be a predicate function; for example `yes-or-no-p'."
6866 :type
'(choice (const :tag
"Ask with yes-or-no-p" yes-or-no-p
)
6867 (const :tag
"Ask with y-or-n-p" y-or-n-p
)
6868 (const :tag
"Don't confirm" nil
)
6869 (function :tag
"Predicate function"))
6873 (defcustom confirm-kill-processes t
6874 "Non-nil if Emacs should confirm killing processes on exit.
6875 If this variable is nil, the value of
6876 `process-query-on-exit-flag' is ignored. Otherwise, if there are
6877 processes with a non-nil `process-query-on-exit-flag', Emacs will
6878 prompt the user before killing them."
6883 (defun save-buffers-kill-emacs (&optional arg
)
6884 "Offer to save each buffer, then kill this Emacs process.
6885 With prefix ARG, silently save all file-visiting buffers without asking.
6886 If there are active processes where `process-query-on-exit-flag'
6887 returns non-nil and `confirm-kill-processes' is non-nil,
6888 asks whether processes should be killed.
6889 Runs the members of `kill-emacs-query-functions' in turn and stops
6890 if any returns nil. If `confirm-kill-emacs' is non-nil, calls it."
6892 ;; Don't use save-some-buffers-default-predicate, because we want
6893 ;; to ask about all the buffers before killing Emacs.
6894 (save-some-buffers arg t
)
6895 (let ((confirm confirm-kill-emacs
))
6897 (or (not (memq t
(mapcar (function
6898 (lambda (buf) (and (buffer-file-name buf
)
6899 (buffer-modified-p buf
))))
6901 (progn (setq confirm nil
)
6902 (yes-or-no-p "Modified buffers exist; exit anyway? ")))
6903 (or (not (fboundp 'process-list
))
6904 ;; process-list is not defined on MSDOS.
6905 (not confirm-kill-processes
)
6906 (let ((processes (process-list))
6909 (and (memq (process-status (car processes
)) '(run stop open listen
))
6910 (process-query-on-exit-flag (car processes
))
6912 (setq processes
(cdr processes
)))
6914 (with-current-buffer-window
6915 (get-buffer-create "*Process List*") nil
6916 #'(lambda (window _value
)
6917 (with-selected-window window
6921 (yes-or-no-p "Active processes exist; kill them and exit anyway? "))
6922 (when (window-live-p window
)
6923 (quit-restore-window window
'kill
)))))
6924 (list-processes t
)))))
6925 ;; Query the user for other things, perhaps.
6926 (run-hook-with-args-until-failure 'kill-emacs-query-functions
)
6928 (funcall confirm
"Really exit Emacs? "))
6931 (defun save-buffers-kill-terminal (&optional arg
)
6932 "Offer to save each buffer, then kill the current connection.
6933 If the current frame has no client, kill Emacs itself using
6934 `save-buffers-kill-emacs'.
6936 With prefix ARG, silently save all file-visiting buffers, then kill.
6938 If emacsclient was started with a list of filenames to edit, then
6939 only these files will be asked to be saved."
6941 (if (frame-parameter nil
'client
)
6942 (server-save-buffers-kill-terminal arg
)
6943 (save-buffers-kill-emacs arg
)))
6945 ;; We use /: as a prefix to "quote" a file name
6946 ;; so that magic file name handlers will not apply to it.
6948 (setq file-name-handler-alist
6949 (cons (cons (purecopy "\\`/:") 'file-name-non-special
)
6950 file-name-handler-alist
))
6952 ;; We depend on being the last handler on the list,
6953 ;; so that anything else which does need handling
6954 ;; has been handled already.
6955 ;; So it is safe for us to inhibit *all* magic file name handlers.
6957 (defun file-name-non-special (operation &rest arguments
)
6958 (let ((file-name-handler-alist nil
)
6960 ;; Some operations respect file name handlers in
6961 ;; `default-directory'. Because core function like
6962 ;; `call-process' don't care about file name handlers in
6963 ;; `default-directory', we here have to resolve the
6964 ;; directory into a local one. For `process-file',
6965 ;; `start-file-process', and `shell-command', this fixes
6967 (if (memq operation
'(insert-directory process-file start-file-process
6969 (directory-file-name
6971 (unhandled-file-name-directory default-directory
)))
6973 ;; Get a list of the indices of the args which are file names.
6975 (cdr (or (assq operation
6976 ;; The first six are special because they
6977 ;; return a file name. We want to include the /:
6978 ;; in the return value.
6979 ;; So just avoid stripping it in the first place.
6980 '((expand-file-name . nil
)
6981 (file-name-directory . nil
)
6982 (file-name-as-directory . nil
)
6983 (directory-file-name . nil
)
6984 (file-name-sans-versions . nil
)
6985 (find-backup-file-name . nil
)
6986 ;; `identity' means just return the first arg
6987 ;; not stripped of its quoting.
6988 (substitute-in-file-name identity
)
6989 ;; `add' means add "/:" to the result.
6990 (file-truename add
0)
6991 (insert-file-contents insert-file-contents
0)
6992 ;; `unquote-then-quote' means set buffer-file-name
6993 ;; temporarily to unquoted filename.
6994 (verify-visited-file-modtime unquote-then-quote
)
6995 ;; List the arguments which are filenames.
6996 (file-name-completion 1)
6997 (file-name-all-completions 1)
7001 (make-symbolic-link 0 1)
7002 (add-name-to-file 0 1)))
7003 ;; For all other operations, treat the first argument only
7004 ;; as the file name.
7007 ;; Copy ARGUMENTS so we can replace elements in it.
7008 (arguments (copy-sequence arguments
)))
7009 (if (symbolp (car file-arg-indices
))
7010 (setq method
(pop file-arg-indices
)))
7011 ;; Strip off the /: from the file names that have it.
7013 (while (consp file-arg-indices
)
7014 (let ((pair (nthcdr (car file-arg-indices
) arguments
)))
7016 (string-match "\\`/:" (car pair
))
7018 (if (= (length (car pair
)) 2)
7020 (substring (car pair
) 2)))))
7021 (setq file-arg-indices
(cdr file-arg-indices
))))
7023 (`identity
(car arguments
))
7024 (`add
(file-name-quote (apply operation arguments
)))
7025 (`insert-file-contents
7026 (let ((visit (nth 1 arguments
)))
7028 (apply operation arguments
)
7029 (when (and visit buffer-file-name
)
7030 (setq buffer-file-name
(concat "/:" buffer-file-name
))))))
7031 (`unquote-then-quote
7032 ;; We can't use `cl-letf' with `(buffer-local-value)' here
7033 ;; because it wouldn't work during bootstrapping.
7034 (let ((buffer (current-buffer)))
7035 ;; `unquote-then-quote' is only used for the
7036 ;; `verify-visited-file-modtime' action, which takes a buffer
7037 ;; as only optional argument.
7038 (with-current-buffer (or (car arguments
) buffer
)
7039 (let ((buffer-file-name (substring buffer-file-name
2)))
7040 ;; Make sure to hide the temporary buffer change from the
7041 ;; underlying operation.
7042 (with-current-buffer buffer
7043 (apply operation arguments
))))))
7045 (apply operation arguments
)))))
7047 (defsubst file-name-quoted-p
(name)
7048 "Whether NAME is quoted with prefix \"/:\".
7049 If NAME is a remote file name, check the local part of NAME."
7050 (string-prefix-p "/:" (file-local-name name
)))
7052 (defsubst file-name-quote
(name)
7053 "Add the quotation prefix \"/:\" to file NAME.
7054 If NAME is a remote file name, the local part of NAME is quoted.
7055 If NAME is already a quoted file name, NAME is returned unchanged."
7056 (if (file-name-quoted-p name
)
7058 (concat (file-remote-p name
) "/:" (file-local-name name
))))
7060 (defsubst file-name-unquote
(name)
7061 "Remove quotation prefix \"/:\" from file NAME, if any.
7062 If NAME is a remote file name, the local part of NAME is unquoted."
7063 (let ((localname (file-local-name name
)))
7064 (when (file-name-quoted-p localname
)
7066 localname
(if (= (length localname
) 2) "/" (substring localname
2))))
7067 (concat (file-remote-p name
) localname
)))
7069 ;; Symbolic modes and read-file-modes.
7071 (defun file-modes-char-to-who (char)
7072 "Convert CHAR to a numeric bit-mask for extracting mode bits.
7073 CHAR is in [ugoa] and represents the category of users (Owner, Group,
7074 Others, or All) for whom to produce the mask.
7075 The bit-mask that is returned extracts from mode bits the access rights
7076 for the specified category of users."
7077 (cond ((= char ?u
) #o4700
)
7078 ((= char ?g
) #o2070
)
7079 ((= char ?o
) #o1007
)
7080 ((= char ?a
) #o7777
)
7081 (t (error "%c: bad `who' character" char
))))
7083 (defun file-modes-char-to-right (char &optional from
)
7084 "Convert CHAR to a numeric value of mode bits.
7085 CHAR is in [rwxXstugo] and represents symbolic access permissions.
7086 If CHAR is in [Xugo], the value is taken from FROM (or 0 if omitted)."
7087 (or from
(setq from
0))
7088 (cond ((= char ?r
) #o0444
)
7089 ((= char ?w
) #o0222
)
7090 ((= char ?x
) #o0111
)
7091 ((= char ?s
) #o6000
)
7092 ((= char ?t
) #o1000
)
7093 ;; Rights relative to the previous file modes.
7094 ((= char ?X
) (if (= (logand from
#o111
) 0) 0 #o0111
))
7095 ((= char ?u
) (let ((uright (logand #o4700 from
)))
7096 (+ uright
(/ uright
#o10
) (/ uright
#o100
))))
7097 ((= char ?g
) (let ((gright (logand #o2070 from
)))
7098 (+ gright
(/ gright
#o10
) (* gright
#o10
))))
7099 ((= char ?o
) (let ((oright (logand #o1007 from
)))
7100 (+ oright
(* oright
#o10
) (* oright
#o100
))))
7101 (t (error "%c: bad right character" char
))))
7103 (defun file-modes-rights-to-number (rights who-mask
&optional from
)
7104 "Convert a symbolic mode string specification to an equivalent number.
7105 RIGHTS is the symbolic mode spec, it should match \"([+=-][rwxXstugo]*)+\".
7106 WHO-MASK is the bit-mask specifying the category of users to which to
7107 apply the access permissions. See `file-modes-char-to-who'.
7108 FROM (or 0 if nil) gives the mode bits on which to base permissions if
7109 RIGHTS request to add, remove, or set permissions based on existing ones,
7111 (let* ((num-rights (or from
0))
7112 (list-rights (string-to-list rights
))
7113 (op (pop list-rights
)))
7114 (while (memq op
'(?
+ ?- ?
=))
7117 (while (memq (setq char-right
(pop list-rights
))
7118 '(?r ?w ?x ?X ?s ?t ?u ?g ?o
))
7121 (file-modes-char-to-right char-right num-rights
))))
7122 (setq num-right
(logand who-mask num-right
)
7124 (cond ((= op ?
+) (logior num-rights num-right
))
7125 ((= op ?-
) (logand num-rights
(lognot num-right
)))
7126 (t (logior (logand num-rights
(lognot who-mask
)) num-right
)))
7130 (defun file-modes-symbolic-to-number (modes &optional from
)
7131 "Convert symbolic file modes to numeric file modes.
7132 MODES is the string to convert, it should match
7133 \"[ugoa]*([+-=][rwxXstugo]*)+,...\".
7134 See Info node `(coreutils)File permissions' for more information on this
7136 FROM (or 0 if nil) gives the mode bits on which to base permissions if
7137 MODES request to add, remove, or set permissions based on existing ones,
7140 (let ((case-fold-search nil
)
7141 (num-modes (or from
0)))
7142 (while (/= (string-to-char modes
) 0)
7143 (if (string-match "^\\([ugoa]*\\)\\([+=-][rwxXstugo]*\\)+\\(,\\|\\)" modes
)
7144 (let ((num-who (apply 'logior
0
7145 (mapcar 'file-modes-char-to-who
7146 (match-string 1 modes
)))))
7148 (setq num-who
(logior #o7000
(default-file-modes))))
7150 (file-modes-rights-to-number (substring modes
(match-end 1))
7152 modes
(substring modes
(match-end 3))))
7153 (error "Parse error in modes near `%s'" (substring modes
0))))
7156 (defun read-file-modes (&optional prompt orig-file
)
7157 "Read file modes in octal or symbolic notation and return its numeric value.
7158 PROMPT is used as the prompt, default to \"File modes (octal or symbolic): \".
7159 ORIG-FILE is the name of a file on whose mode bits to base returned
7160 permissions if what user types requests to add, remove, or set permissions
7161 based on existing mode bits, as in \"og+rX-w\"."
7162 (let* ((modes (or (if orig-file
(file-modes orig-file
) 0)
7163 (error "File not found")))
7164 (modestr (and (stringp orig-file
)
7165 (nth 8 (file-attributes orig-file
))))
7167 (and (stringp modestr
)
7168 (string-match "^.\\(...\\)\\(...\\)\\(...\\)$" modestr
)
7169 (replace-regexp-in-string
7171 (format "u=%s,g=%s,o=%s"
7172 (match-string 1 modestr
)
7173 (match-string 2 modestr
)
7174 (match-string 3 modestr
)))))
7175 (value (read-string (or prompt
"File modes (octal or symbolic): ")
7178 (if (string-match "^[0-7]+" value
)
7179 (string-to-number value
8)
7180 (file-modes-symbolic-to-number value modes
)))))
7182 (define-obsolete-variable-alias 'cache-long-line-scans
7183 'cache-long-scans
"24.4")
7185 ;; Trashcan handling.
7186 (defcustom trash-directory nil
7187 "Directory for `move-file-to-trash' to move files and directories to.
7188 This directory is only used when the function `system-move-file-to-trash'
7190 Relative paths are interpreted relative to `default-directory'.
7191 If the value is nil, Emacs uses a freedesktop.org-style trashcan."
7192 :type
'(choice (const nil
) directory
)
7196 (defvar trash--hexify-table
)
7198 (declare-function system-move-file-to-trash
"w32fns.c" (filename))
7200 (defun move-file-to-trash (filename)
7201 "Move the file (or directory) named FILENAME to the trash.
7202 When `delete-by-moving-to-trash' is non-nil, this function is
7203 called by `delete-file' and `delete-directory' instead of
7204 deleting files outright.
7206 If the function `system-move-file-to-trash' is defined, call it
7207 with FILENAME as an argument.
7208 Otherwise, if `trash-directory' is non-nil, move FILENAME to that
7210 Otherwise, trash FILENAME using the freedesktop.org conventions,
7211 like the GNOME, KDE and XFCE desktop environments. Emacs only
7212 moves files to \"home trash\", ignoring per-volume trashcans."
7213 (interactive "fMove file to trash: ")
7214 (cond (trash-directory
7215 ;; If `trash-directory' is non-nil, move the file there.
7216 (let* ((trash-dir (expand-file-name trash-directory
))
7217 (fn (directory-file-name (expand-file-name filename
)))
7218 (new-fn (concat (file-name-as-directory trash-dir
)
7219 (file-name-nondirectory fn
))))
7220 ;; We can't trash a parent directory of trash-directory.
7221 (if (string-prefix-p fn trash-dir
)
7222 (error "Trash directory `%s' is a subdirectory of `%s'"
7223 trash-dir filename
))
7224 (unless (file-directory-p trash-dir
)
7225 (make-directory trash-dir t
))
7226 ;; Ensure that the trashed file-name is unique.
7227 (if (file-exists-p new-fn
)
7228 (let ((version-control t
)
7229 (backup-directory-alist nil
))
7230 (setq new-fn
(car (find-backup-file-name new-fn
)))))
7231 (let (delete-by-moving-to-trash)
7232 (rename-file fn new-fn
))))
7233 ;; If `system-move-file-to-trash' is defined, use it.
7234 ((fboundp 'system-move-file-to-trash
)
7235 (system-move-file-to-trash filename
))
7236 ;; Otherwise, use the freedesktop.org method, as specified at
7237 ;; http://freedesktop.org/wiki/Specifications/trash-spec
7239 (let* ((xdg-data-dir
7240 (directory-file-name
7241 (expand-file-name "Trash"
7242 (or (getenv "XDG_DATA_HOME")
7243 "~/.local/share"))))
7244 (trash-files-dir (expand-file-name "files" xdg-data-dir
))
7245 (trash-info-dir (expand-file-name "info" xdg-data-dir
))
7246 (fn (directory-file-name (expand-file-name filename
))))
7248 ;; Check if we have permissions to delete.
7249 (unless (file-writable-p (directory-file-name
7250 (file-name-directory fn
)))
7251 (error "Cannot move %s to trash: Permission denied" filename
))
7252 ;; The trashed file cannot be the trash dir or its parent.
7253 (if (string-prefix-p fn trash-files-dir
)
7254 (error "The trash directory %s is a subdirectory of %s"
7255 trash-files-dir filename
))
7256 (if (string-prefix-p fn trash-info-dir
)
7257 (error "The trash directory %s is a subdirectory of %s"
7258 trash-info-dir filename
))
7260 ;; Ensure that the trash directory exists; otherwise, create it.
7261 (with-file-modes #o700
7262 (unless (file-exists-p trash-files-dir
)
7263 (make-directory trash-files-dir t
))
7264 (unless (file-exists-p trash-info-dir
)
7265 (make-directory trash-info-dir t
)))
7267 ;; Try to move to trash with .trashinfo undo information
7270 (set-buffer-file-coding-system 'utf-8-unix
)
7271 (insert "[Trash Info]\nPath=")
7272 ;; Perform url-encoding on FN. For compatibility with
7273 ;; other programs (e.g. XFCE Thunar), allow literal "/"
7274 ;; for path separators.
7275 (unless (boundp 'trash--hexify-table
)
7276 (setq trash--hexify-table
(make-vector 256 nil
))
7277 (let ((unreserved-chars
7278 (list ?
/ ?a ?b ?c ?d ?e ?f ?g ?h ?i ?j ?k ?l ?m
7279 ?n ?o ?p ?q ?r ?s ?t ?u ?v ?w ?x ?y ?z ?A
7280 ?B ?C ?D ?E ?F ?G ?H ?I ?J ?K ?L ?M ?N ?O
7281 ?P ?Q ?R ?S ?T ?U ?V ?W ?X ?Y ?Z ?
0 ?
1 ?
2
7282 ?
3 ?
4 ?
5 ?
6 ?
7 ?
8 ?
9 ?- ?_ ?. ?
! ?~ ?
* ?
'
7285 (aset trash--hexify-table byte
7286 (if (memq byte unreserved-chars
)
7287 (char-to-string byte
)
7288 (format "%%%02x" byte
))))))
7289 (mapc (lambda (byte)
7290 (insert (aref trash--hexify-table byte
)))
7291 (if (multibyte-string-p fn
)
7292 (encode-coding-string fn
'utf-8
)
7294 (insert "\nDeletionDate="
7295 (format-time-string "%Y-%m-%dT%T")
7298 ;; Make a .trashinfo file. Use O_EXCL, as per trash-spec 1.0.
7299 (let* ((files-base (file-name-nondirectory fn
))
7300 (info-fn (expand-file-name
7301 (concat files-base
".trashinfo")
7304 (write-region nil nil info-fn nil
'quiet info-fn
'excl
)
7305 (file-already-exists
7306 ;; Uniquify new-fn. Some file managers do not
7307 ;; like Emacs-style backup file names. E.g.:
7308 ;; https://bugs.kde.org/170956
7309 (setq info-fn
(make-temp-file
7310 (expand-file-name files-base trash-info-dir
)
7312 (setq files-base
(file-name-nondirectory info-fn
))
7313 (write-region nil nil info-fn nil
'quiet info-fn
)))
7314 ;; Finally, try to move the file to the trashcan.
7315 (let ((delete-by-moving-to-trash nil
)
7316 (new-fn (expand-file-name files-base trash-files-dir
)))
7317 (rename-file fn new-fn
)))))))))
7319 (defsubst file-attribute-type
(attributes)
7320 "The type field in ATTRIBUTES returned by `file-attributes'.
7321 The value is either t for directory, string (name linked to) for
7322 symbolic link, or nil."
7325 (defsubst file-attribute-link-number
(attributes)
7326 "Return the number of links in ATTRIBUTES returned by `file-attributes'."
7329 (defsubst file-attribute-user-id
(attributes)
7330 "The UID field in ATTRIBUTES returned by `file-attributes'.
7331 This is either a string or a number. If a string value cannot be
7332 looked up, a numeric value, either an integer or a float, is
7336 (defsubst file-attribute-group-id
(attributes)
7337 "The GID field in ATTRIBUTES returned by `file-attributes'.
7338 This is either a string or a number. If a string value cannot be
7339 looked up, a numeric value, either an integer or a float, is
7343 (defsubst file-attribute-access-time
(attributes)
7344 "The last access time in ATTRIBUTES returned by `file-attributes'.
7345 This a list of integers (HIGH LOW USEC PSEC) in the same style
7349 (defsubst file-attribute-modification-time
(attributes)
7350 "The modification time in ATTRIBUTES returned by `file-attributes'.
7351 This is the time of the last change to the file's contents, and
7352 is a list of integers (HIGH LOW USEC PSEC) in the same style
7356 (defsubst file-attribute-status-change-time
(attributes)
7357 "The status modification time in ATTRIBUTES returned by `file-attributes'.
7358 This is the time of last change to the file's attributes: owner
7359 and group, access mode bits, etc, and is a list of integers (HIGH
7360 LOW USEC PSEC) in the same style as (current-time)."
7363 (defsubst file-attribute-size
(attributes)
7364 "The size (in bytes) in ATTRIBUTES returned by `file-attributes'.
7365 This is a floating point number if the size is too large for an integer."
7368 (defsubst file-attribute-modes
(attributes)
7369 "The file modes in ATTRIBUTES returned by `file-attributes'.
7370 This is a string of ten letters or dashes as in ls -l."
7373 (defsubst file-attribute-inode-number
(attributes)
7374 "The inode number in ATTRIBUTES returned by `file-attributes'.
7375 If it is larger than what an Emacs integer can hold, this is of
7376 the form (HIGH . LOW): first the high bits, then the low 16 bits.
7377 If even HIGH is too large for an Emacs integer, this is instead
7378 of the form (HIGH MIDDLE . LOW): first the high bits, then the
7379 middle 24 bits, and finally the low 16 bits."
7380 (nth 10 attributes
))
7382 (defsubst file-attribute-device-number
(attributes)
7383 "The file system device number in ATTRIBUTES returned by `file-attributes'.
7384 If it is larger than what an Emacs integer can hold, this is of
7385 the form (HIGH . LOW): first the high bits, then the low 16 bits.
7386 If even HIGH is too large for an Emacs integer, this is instead
7387 of the form (HIGH MIDDLE . LOW): first the high bits, then the
7388 middle 24 bits, and finally the low 16 bits."
7389 (nth 11 attributes
))
7391 (defun file-attribute-collect (attributes &rest attr-names
)
7392 "Return a sublist of ATTRIBUTES returned by `file-attributes'.
7393 ATTR-NAMES are symbols with the selected attribute names.
7395 Valid attribute names are: type, link-number, user-id, group-id,
7396 access-time, modification-time, status-change-time, size, modes,
7397 inode-number and device-number."
7398 (let ((all '(type link-number user-id group-id access-time
7399 modification-time status-change-time
7400 size modes inode-number device-number
))
7403 (let ((attr (pop attr-names
)))
7406 (intern (format "file-attribute-%s" (symbol-name attr
)))
7409 (error "Wrong attribute name '%S'" attr
))))
7412 (define-key ctl-x-map
"\C-f" 'find-file
)
7413 (define-key ctl-x-map
"\C-r" 'find-file-read-only
)
7414 (define-key ctl-x-map
"\C-v" 'find-alternate-file
)
7415 (define-key ctl-x-map
"\C-s" 'save-buffer
)
7416 (define-key ctl-x-map
"s" 'save-some-buffers
)
7417 (define-key ctl-x-map
"\C-w" 'write-file
)
7418 (define-key ctl-x-map
"i" 'insert-file
)
7419 (define-key esc-map
"~" 'not-modified
)
7420 (define-key ctl-x-map
"\C-d" 'list-directory
)
7421 (define-key ctl-x-map
"\C-c" 'save-buffers-kill-terminal
)
7422 (define-key ctl-x-map
"\C-q" 'read-only-mode
)
7424 (define-key ctl-x-4-map
"f" 'find-file-other-window
)
7425 (define-key ctl-x-4-map
"r" 'find-file-read-only-other-window
)
7426 (define-key ctl-x-4-map
"\C-f" 'find-file-other-window
)
7427 (define-key ctl-x-4-map
"b" 'switch-to-buffer-other-window
)
7428 (define-key ctl-x-4-map
"\C-o" 'display-buffer
)
7430 (define-key ctl-x-5-map
"b" 'switch-to-buffer-other-frame
)
7431 (define-key ctl-x-5-map
"f" 'find-file-other-frame
)
7432 (define-key ctl-x-5-map
"\C-f" 'find-file-other-frame
)
7433 (define-key ctl-x-5-map
"r" 'find-file-read-only-other-frame
)
7434 (define-key ctl-x-5-map
"\C-o" 'display-buffer-other-frame
)
7436 ;;; files.el ends here