428
|
1 ;;; files.el --- file input and output commands for XEmacs.
|
|
2
|
|
3 ;; Copyright (C) 1985-1987, 1992-1995, 1997 Free Software Foundation, Inc.
|
|
4 ;; Copyright (C) 1995 Sun Microsystems.
|
1333
|
5 ;; Copyright (C) 2001, 2002, 2003 Ben Wing.
|
428
|
6
|
|
7 ;; Maintainer: XEmacs Development Team
|
|
8 ;; Keywords: extensions, dumped
|
|
9
|
|
10 ;; This file is part of XEmacs.
|
|
11
|
|
12 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
13 ;; under the terms of the GNU General Public License as published by
|
|
14 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
15 ;; any later version.
|
|
16
|
|
17 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
20 ;; General Public License for more details.
|
|
21
|
|
22 ;; You should have received a copy of the GNU General Public License
|
|
23 ;; along with XEmacs; see the file COPYING. If not, write to the Free
|
|
24 ;; Software Foundation, Inc. 59 Temple Place - Suite 330, Boston, MA
|
|
25 ;; 02111-1307, USA.
|
|
26
|
1333
|
27 ;;; [[ Synched up with: FSF 20.3 (but diverging)
|
|
28 ;;; Warning: Merging this file is tough. Beware.]]
|
|
29
|
|
30 ;;; Beware of sync messages with 20.x or 21.x! (Unless I did them, of
|
|
31 ;;; course ... :-) Those who did these synchronizations did not do proper
|
|
32 ;;; jobs and often left out lots of changes. In practice you need to do a
|
|
33 ;;; line-by-line comparison, and whenever encountering differences, see
|
|
34 ;;; what FSF 19.34 looks like to see if the changes are intentional or just
|
|
35 ;;; regressions. In at least one case below, our code was unchanged from
|
|
36 ;;; FSF 19.30! --ben
|
|
37
|
|
38 ;;; Mostly synched to FSF 21.2 by Ben Wing using a line-by-line comparison,
|
|
39 ;;; except some really hard parts that have changed almost completely.
|
428
|
40
|
|
41 ;;; Commentary:
|
|
42
|
|
43 ;; This file is dumped with XEmacs.
|
|
44
|
1333
|
45 ;; BEGIN SYNC WITH FSF 21.2.
|
|
46
|
428
|
47 ;; Defines most of XEmacs's file- and directory-handling functions,
|
|
48 ;; including basic file visiting, backup generation, link handling,
|
|
49 ;; ITS-id version control, load- and write-hook handling, and the like.
|
|
50
|
|
51 ;;; Code:
|
|
52
|
|
53 ;; XEmacs: Avoid compilation warnings.
|
|
54 (defvar coding-system-for-read)
|
|
55 (defvar buffer-file-coding-system)
|
|
56
|
|
57 (defgroup files nil
|
|
58 "Support editing files."
|
|
59 :group 'emacs)
|
|
60
|
|
61 (defgroup backup nil
|
|
62 "Backups of edited data files."
|
|
63 :group 'files)
|
|
64
|
|
65 (defgroup find-file nil
|
|
66 "Finding and editing files."
|
|
67 :group 'files)
|
|
68
|
1333
|
69 ;; XEmacs: In buffer.c (also)
|
|
70 (defcustom delete-auto-save-files t
|
|
71 "*Non-nil means delete auto-save file when a buffer is saved or killed.
|
|
72
|
|
73 Note that auto-save file will not be deleted if the buffer is killed
|
|
74 when it has unsaved changes."
|
|
75 :type 'boolean
|
|
76 :group 'auto-save)
|
428
|
77
|
|
78 ;; FSF has automount-dir-prefix. Our directory-abbrev-alist is more general.
|
|
79 ;; note: tmp_mnt bogosity conversion is established in paths.el.
|
|
80 (defcustom directory-abbrev-alist nil
|
|
81 "*Alist of abbreviations for file directories.
|
|
82 A list of elements of the form (FROM . TO), each meaning to replace
|
|
83 FROM with TO when it appears in a directory name.
|
|
84 This replacement is done when setting up the default directory of a
|
|
85 newly visited file. *Every* FROM string should start with \\\\` or ^.
|
|
86
|
1333
|
87 Do not use `~' in the TO strings.
|
|
88 They should be ordinary absolute directory names.
|
|
89
|
428
|
90 Use this feature when you have directories which you normally refer to
|
|
91 via absolute symbolic links or to eliminate automounter mount points
|
|
92 from the beginning of your filenames. Make TO the name of the link,
|
|
93 and FROM the name it is linked to."
|
|
94 :type '(repeat (cons :format "%v"
|
|
95 :value ("\\`" . "")
|
|
96 (regexp :tag "From")
|
|
97 (regexp :tag "To")))
|
|
98 :group 'find-file)
|
|
99
|
|
100 (defcustom make-backup-files t
|
|
101 "*Non-nil means make a backup of a file the first time it is saved.
|
|
102 This can be done by renaming the file or by copying.
|
|
103
|
|
104 Renaming means that XEmacs renames the existing file so that it is a
|
|
105 backup file, then writes the buffer into a new file. Any other names
|
|
106 that the old file had will now refer to the backup file. The new file
|
|
107 is owned by you and its group is defaulted.
|
|
108
|
|
109 Copying means that XEmacs copies the existing file into the backup
|
|
110 file, then writes the buffer on top of the existing file. Any other
|
|
111 names that the old file had will now refer to the new (edited) file.
|
|
112 The file's owner and group are unchanged.
|
|
113
|
|
114 The choice of renaming or copying is controlled by the variables
|
|
115 `backup-by-copying', `backup-by-copying-when-linked' and
|
1333
|
116 `backup-by-copying-when-mismatch' and
|
|
117 `backup-by-copying-when-privileged-mismatch'. See also `backup-inhibited'."
|
428
|
118 :type 'boolean
|
|
119 :group 'backup)
|
|
120
|
|
121 ;; Do this so that local variables based on the file name
|
|
122 ;; are not overridden by the major mode.
|
|
123 (defvar backup-inhibited nil
|
|
124 "Non-nil means don't make a backup, regardless of the other parameters.
|
|
125 This variable is intended for use by making it local to a buffer.
|
|
126 But it is local only if you make it local.")
|
|
127 (put 'backup-inhibited 'permanent-local t)
|
|
128
|
|
129 (defcustom backup-by-copying nil
|
|
130 "*Non-nil means always use copying to create backup files.
|
|
131 See documentation of variable `make-backup-files'."
|
|
132 :type 'boolean
|
|
133 :group 'backup)
|
|
134
|
|
135 (defcustom backup-by-copying-when-linked nil
|
|
136 "*Non-nil means use copying to create backups for files with multiple names.
|
|
137 This causes the alternate names to refer to the latest version as edited.
|
|
138 This variable is relevant only if `backup-by-copying' is nil."
|
|
139 :type 'boolean
|
|
140 :group 'backup)
|
|
141
|
|
142 (defcustom backup-by-copying-when-mismatch nil
|
|
143 "*Non-nil means create backups by copying if this preserves owner or group.
|
|
144 Renaming may still be used (subject to control of other variables)
|
|
145 when it would not result in changing the owner or group of the file;
|
|
146 that is, for files which are owned by you and whose group matches
|
|
147 the default for a new file created there by you.
|
|
148 This variable is relevant only if `backup-by-copying' is nil."
|
|
149 :type 'boolean
|
|
150 :group 'backup)
|
|
151
|
1333
|
152 (defcustom backup-by-copying-when-privileged-mismatch 200
|
|
153 "*Non-nil means create backups by copying to preserve a privileged owner.
|
|
154 Renaming may still be used (subject to control of other variables)
|
|
155 when it would not result in changing the owner of the file or if the owner
|
|
156 has a user id greater than the value of this variable. This is useful
|
|
157 when low-numbered uid's are used for special system users (such as root)
|
|
158 that must maintain ownership of certain files.
|
|
159 This variable is relevant only if `backup-by-copying' and
|
|
160 `backup-by-copying-when-mismatch' are nil."
|
|
161 :type '(choice (const nil) integer)
|
|
162 :group 'backup)
|
|
163
|
|
164 (defun normal-backup-enable-predicate (name)
|
|
165 "Default `backup-enable-predicate' function.
|
|
166 Checks for files in `temporary-file-directory' or
|
|
167 `small-temporary-file-directory'."
|
|
168 (let ((temporary-file-directory (temp-directory)))
|
|
169 (not (or (let ((comp (compare-strings temporary-file-directory 0 nil
|
|
170 name 0 nil)))
|
|
171 ;; Directory is under temporary-file-directory.
|
|
172 (and (not (eq comp t))
|
|
173 (< comp (- (length temporary-file-directory)))))
|
|
174 (if small-temporary-file-directory
|
|
175 (let ((comp (compare-strings small-temporary-file-directory
|
|
176 0 nil
|
|
177 name 0 nil)))
|
|
178 ;; Directory is under small-temporary-file-directory.
|
|
179 (and (not (eq comp t))
|
|
180 (< comp (- (length small-temporary-file-directory))))))))))
|
|
181
|
|
182 (defvar backup-enable-predicate 'normal-backup-enable-predicate
|
428
|
183 "Predicate that looks at a file name and decides whether to make backups.
|
|
184 Called with an absolute file name as argument, it returns t to enable backup.")
|
|
185
|
|
186 (defcustom buffer-offer-save nil
|
1333
|
187 "*Non-nil in a buffer means always offer to save buffer on exit.
|
|
188 Do so even if the buffer is not visiting a file.
|
428
|
189 Automatically local in all buffers."
|
|
190 :type 'boolean
|
|
191 :group 'find-file)
|
|
192 (make-variable-buffer-local 'buffer-offer-save)
|
|
193
|
|
194 ;; FSF uses normal defconst
|
|
195 (defvaralias 'find-file-visit-truename 'find-file-use-truenames)
|
|
196 (defvaralias 'find-file-existing-other-name 'find-file-compare-truenames)
|
|
197
|
|
198 (defcustom revert-without-query nil
|
|
199 "*Specify which files should be reverted without query.
|
|
200 The value is a list of regular expressions.
|
|
201 If the file name matches one of these regular expressions,
|
|
202 then `revert-buffer' reverts the file without querying
|
|
203 if the file has changed on disk and you have not edited the buffer."
|
|
204 :type '(repeat (regexp ""))
|
|
205 :group 'find-file)
|
|
206
|
|
207 (defvar buffer-file-number nil
|
|
208 "The device number and file number of the file visited in the current buffer.
|
|
209 The value is a list of the form (FILENUM DEVNUM).
|
|
210 This pair of numbers uniquely identifies the file.
|
|
211 If the buffer is visiting a new file, the value is nil.")
|
|
212 (make-variable-buffer-local 'buffer-file-number)
|
|
213 (put 'buffer-file-number 'permanent-local t)
|
|
214
|
|
215 (defvar buffer-file-numbers-unique (not (memq system-type '(windows-nt)))
|
|
216 "Non-nil means that buffer-file-number uniquely identifies files.")
|
|
217
|
1333
|
218 ;; FSF 21.2. We use (temp-directory).
|
|
219 ; (defvar temporary-file-directory
|
|
220 ; (file-name-as-directory
|
|
221 ; (cond ((memq system-type '(ms-dos windows-nt))
|
|
222 ; (or (getenv "TEMP") (getenv "TMPDIR") (getenv "TMP") "c:/temp"))
|
|
223 ; ((memq system-type '(vax-vms axp-vms))
|
|
224 ; (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "SYS$SCRATCH:"))
|
|
225 ; (t
|
|
226 ; (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "/tmp"))))
|
|
227 ; "The directory for writing temporary files.")
|
|
228
|
|
229 (defvar small-temporary-file-directory
|
|
230 (if (eq system-type 'ms-dos) (getenv "TMPDIR"))
|
|
231 "The directory for writing small temporary files.
|
|
232 If non-nil, this directory is used instead of `temporary-file-directory'
|
|
233 by programs that create small temporary files. This is for systems that
|
|
234 have fast storage with limited space, such as a RAM disk.")
|
|
235
|
|
236 ; (defvar file-name-invalid-regexp
|
|
237 ; (cond ((and (eq system-type 'ms-dos) (not (msdos-long-file-names)))
|
|
238 ; (concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" ; colon except after drive
|
|
239 ; "[+, ;=|<>\"?*]\\|\\[\\|\\]\\|" ; invalid characters
|
|
240 ; "[\000-\031]\\|" ; control characters
|
|
241 ; "\\(/\\.\\.?[^/]\\)\\|" ; leading dots
|
|
242 ; "\\(/[^/.]+\\.[^/.]*\\.\\)")) ; more than a single dot
|
|
243 ; ((memq system-type '(ms-dos windows-nt))
|
|
244 ; (concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" ; colon except after drive
|
|
245 ; "[|<>\"?*\000-\031]")) ; invalid characters
|
|
246 ; (t "[\000]"))
|
|
247 ; "Regexp recognizing file names which aren't allowed by the filesystem.")
|
|
248
|
428
|
249 (defcustom file-precious-flag nil
|
|
250 "*Non-nil means protect against I/O errors while saving files.
|
|
251 Some modes set this non-nil in particular buffers.
|
|
252
|
|
253 This feature works by writing the new contents into a temporary file
|
|
254 and then renaming the temporary file to replace the original.
|
|
255 In this way, any I/O error in writing leaves the original untouched,
|
|
256 and there is never any instant where the file is nonexistent.
|
|
257
|
|
258 Note that this feature forces backups to be made by copying.
|
|
259 Yet, at the same time, saving a precious file
|
|
260 breaks any hard links between it and other files."
|
|
261 :type 'boolean
|
|
262 :group 'backup)
|
|
263
|
|
264 (defcustom version-control nil
|
|
265 "*Control use of version numbers for backup files.
|
|
266 t means make numeric backup versions unconditionally.
|
|
267 nil means make them for files that have some already.
|
|
268 `never' means do not make them."
|
1333
|
269 :type '(choice (const :tag "Never" never)
|
|
270 (const :tag "If existing" nil)
|
|
271 (other :tag "Always" t))
|
428
|
272 :group 'backup
|
|
273 :group 'vc)
|
|
274
|
|
275 ;; This is now defined in efs.
|
1333
|
276 ; (defcustom dired-kept-versions 2
|
|
277 ; "*When cleaning directory, number of versions to keep."
|
|
278 ; :type 'integer
|
|
279 ; :group 'backup
|
|
280 ; :group 'dired)
|
428
|
281
|
2103
|
282 (defcustom delete-old-versions (when noninteractive 'leave)
|
428
|
283 "*If t, delete excess backup versions silently.
|
|
284 If nil, ask confirmation. Any other value prevents any trimming."
|
|
285 :type '(choice (const :tag "Delete" t)
|
|
286 (const :tag "Ask" nil)
|
|
287 (sexp :tag "Leave" :format "%t\n" other))
|
|
288 :group 'backup)
|
|
289
|
|
290 (defcustom kept-old-versions 2
|
|
291 "*Number of oldest versions to keep when a new numbered backup is made."
|
|
292 :type 'integer
|
|
293 :group 'backup)
|
|
294
|
|
295 (defcustom kept-new-versions 2
|
|
296 "*Number of newest versions to keep when a new numbered backup is made.
|
|
297 Includes the new backup. Must be > 0"
|
|
298 :type 'integer
|
|
299 :group 'backup)
|
|
300
|
|
301 (defcustom require-final-newline nil
|
|
302 "*Value of t says silently ensure a file ends in a newline when it is saved.
|
|
303 Non-nil but not t says ask user whether to add a newline when there isn't one.
|
|
304 nil means don't add newlines."
|
|
305 :type '(choice (const :tag "Off" nil)
|
|
306 (const :tag "Add" t)
|
|
307 (sexp :tag "Ask" :format "%t\n" ask))
|
|
308 :group 'editing-basics)
|
|
309
|
|
310 (defcustom auto-save-default t
|
|
311 "*Non-nil says by default do auto-saving of every file-visiting buffer."
|
|
312 :type 'boolean
|
|
313 :group 'auto-save)
|
|
314
|
|
315 (defcustom auto-save-visited-file-name nil
|
|
316 "*Non-nil says auto-save a buffer in the file it is visiting, when practical.
|
|
317 Normally auto-save files are written under other names."
|
|
318 :type 'boolean
|
|
319 :group 'auto-save)
|
|
320
|
1333
|
321 (defcustom auto-save-file-name-transforms
|
|
322 `(("\\`/[^/]*:\\(.+/\\)*\\(.*\\)"
|
|
323 ,(expand-file-name "\\2" (temp-directory))))
|
|
324 "*Transforms to apply to buffer file name before making auto-save file name.
|
|
325 Each transform is a list (REGEXP REPLACEMENT):
|
|
326 REGEXP is a regular expression to match against the file name.
|
|
327 If it matches, `replace-match' is used to replace the
|
|
328 matching part with REPLACEMENT.
|
|
329 All the transforms in the list are tried, in the order they are listed.
|
|
330 When one transform applies, its result is final;
|
|
331 no further transforms are tried.
|
|
332
|
|
333 The default value is set up to put the auto-save file into the
|
|
334 temporary directory (see the variable `temporary-file-directory') for
|
|
335 editing a remote file."
|
|
336 :group 'auto-save
|
|
337 :type '(repeat (list (string :tag "Regexp") (string :tag "Replacement")))
|
|
338 ;:version "21.1"
|
|
339 )
|
|
340
|
428
|
341 (defcustom save-abbrevs nil
|
1333
|
342 "*Non-nil means save word abbrevs too when files are saved.
|
|
343 If `silently', don't ask the user before saving.
|
1337
|
344 Loading an abbrev file sets this to t."
|
1333
|
345 :type '(choice (const t) (const nil) (const silently))
|
1337
|
346 :group 'abbrev)
|
|
347
|
428
|
348 (defcustom find-file-run-dired t
|
1333
|
349 "*Non-nil means allow `find-file' to visit directories.
|
|
350 To visit the directory, `find-file' runs `find-directory-functions'."
|
|
351 :type 'boolean
|
|
352 :group 'find-file)
|
|
353
|
|
354 (defcustom find-directory-functions '(cvs-dired-noselect dired-noselect)
|
|
355 "*List of functions to try in sequence to visit a directory.
|
|
356 Each function is called with the directory name as the sole argument
|
|
357 and should return either a buffer or nil."
|
|
358 :type '(hook :options (cvs-dired-noselect dired-noselect))
|
428
|
359 :group 'find-file)
|
|
360
|
|
361 ;;;It is not useful to make this a local variable.
|
|
362 ;;;(put 'find-file-not-found-hooks 'permanent-local t)
|
|
363 (defvar find-file-not-found-hooks nil
|
|
364 "List of functions to be called for `find-file' on nonexistent file.
|
|
365 These functions are called as soon as the error is detected.
|
1333
|
366 Variable `buffer-file-name' is already set up.
|
428
|
367 The functions are called in the order given until one of them returns non-nil.")
|
|
368
|
|
369 ;;;It is not useful to make this a local variable.
|
|
370 ;;;(put 'find-file-hooks 'permanent-local t)
|
|
371 (defvar find-file-hooks nil
|
|
372 "List of functions to be called after a buffer is loaded from a file.
|
|
373 The buffer's local variables (if any) will have been processed before the
|
|
374 functions are called.")
|
|
375
|
|
376 (defvar write-file-hooks nil
|
|
377 "List of functions to be called before writing out a buffer to a file.
|
|
378 If one of them returns non-nil, the file is considered already written
|
|
379 and the rest are not called.
|
|
380 These hooks are considered to pertain to the visited file.
|
1333
|
381 So any buffer-local binding of `write-file-hooks' is
|
|
382 discarded if you change the visited file name with \\[set-visited-file-name].
|
|
383
|
|
384 Don't make this variable buffer-local; instead, use `local-write-file-hooks'.
|
428
|
385 See also `write-contents-hooks' and `continue-save-buffer'.")
|
|
386 ;;; However, in case someone does make it local...
|
|
387 (put 'write-file-hooks 'permanent-local t)
|
|
388
|
|
389 (defvar local-write-file-hooks nil
|
|
390 "Just like `write-file-hooks', except intended for per-buffer use.
|
|
391 The functions in this list are called before the ones in
|
|
392 `write-file-hooks'.
|
|
393
|
|
394 This variable is meant to be used for hooks that have to do with a
|
|
395 particular visited file. Therefore, it is a permanent local, so that
|
|
396 changing the major mode does not clear it. However, calling
|
|
397 `set-visited-file-name' does clear it.")
|
|
398 (make-variable-buffer-local 'local-write-file-hooks)
|
|
399 (put 'local-write-file-hooks 'permanent-local t)
|
|
400
|
|
401
|
|
402 ;; #### think about this (added by Sun).
|
|
403 (put 'after-set-visited-file-name-hooks 'permanent-local t)
|
|
404 (defvar after-set-visited-file-name-hooks nil
|
|
405 "List of functions to be called after \\[set-visited-file-name]
|
|
406 or during \\[write-file].
|
444
|
407 You can use this hook to restore local values of `write-file-hooks',
|
|
408 `after-save-hook', and `revert-buffer-function', which pertain
|
428
|
409 to a specific file and therefore are normally killed by a rename.
|
444
|
410 Put hooks pertaining to the buffer contents on `write-contents-hooks'
|
|
411 and `revert-buffer-insert-file-contents-function'.")
|
428
|
412
|
|
413 (defvar write-contents-hooks nil
|
|
414 "List of functions to be called before writing out a buffer to a file.
|
|
415 If one of them returns non-nil, the file is considered already written
|
|
416 and the rest are not called.
|
1333
|
417
|
|
418 This variable is meant to be used for hooks that pertain to the
|
|
419 buffer's contents, not to the particular visited file; thus,
|
|
420 `set-visited-file-name' does not clear this variable; but changing the
|
|
421 major mode does clear it.
|
|
422
|
|
423 This variable automatically becomes buffer-local whenever it is set.
|
|
424 If you use `add-hook' to add elements to the list, use nil for the
|
|
425 LOCAL argument.
|
|
426
|
428
|
427 See also `write-file-hooks' and `continue-save-buffer'.")
|
1333
|
428 (make-variable-buffer-local 'write-contents-hooks)
|
428
|
429
|
|
430 ;; XEmacs addition
|
|
431 ;; Energize needed this to hook into save-buffer at a lower level; we need
|
|
432 ;; to provide a new output method, but don't want to have to duplicate all
|
|
433 ;; of the backup file and file modes logic.that does not occur if one uses
|
|
434 ;; a write-file-hook which returns non-nil.
|
|
435 (put 'write-file-data-hooks 'permanent-local t)
|
|
436 (defvar write-file-data-hooks nil
|
|
437 "List of functions to be called to put the bytes on disk.
|
|
438 These functions receive the name of the file to write to as argument.
|
|
439 The default behavior is to call
|
|
440 (write-region (point-min) (point-max) filename nil t)
|
|
441 If one of them returns non-nil, the file is considered already written
|
|
442 and the rest are not called.
|
|
443 These hooks are considered to pertain to the visited file.
|
1333
|
444 So any buffer-local binding of `write-file-data-hooks' is
|
|
445 discarded if you change the visited file name with \\[set-visited-file-name].
|
428
|
446 See also `write-file-hooks'.")
|
|
447
|
|
448 (defcustom enable-local-variables t
|
1333
|
449 "*Control use of local variables in files you visit.
|
428
|
450 The value can be t, nil or something else.
|
1333
|
451 A value of t means file local variables specifications are obeyed;
|
428
|
452 nil means they are ignored; anything else means query.
|
1333
|
453 This variable also controls use of major modes specified in
|
|
454 a -*- line.
|
|
455
|
|
456 The command \\[normal-mode], when used interactively,
|
|
457 always obeys file local variable specifications and the -*- line,
|
428
|
458 and ignores this variable."
|
|
459 :type '(choice (const :tag "Obey" t)
|
|
460 (const :tag "Ignore" nil)
|
|
461 (sexp :tag "Query" :format "%t\n" other))
|
|
462 :group 'find-file)
|
|
463
|
1333
|
464 ; (defvar local-enable-local-variables t
|
|
465 ; "Like `enable-local-variables' but meant for buffer-local bindings.
|
|
466 ; The meaningful values are nil and non-nil. The default is non-nil.
|
|
467 ; If a major mode sets this to nil, buffer-locally, then any local
|
|
468 ; variables list in the file will be ignored.
|
|
469
|
|
470 ; This variable does not affect the use of major modes
|
|
471 ; specified in a -*- line.")
|
|
472
|
428
|
473 (defcustom enable-local-eval 'maybe
|
|
474 "*Control processing of the \"variable\" `eval' in a file's local variables.
|
|
475 The value can be t, nil or something else.
|
|
476 A value of t means obey `eval' variables;
|
|
477 nil means ignore them; anything else means query.
|
|
478
|
|
479 The command \\[normal-mode] always obeys local-variables lists
|
|
480 and ignores this variable."
|
|
481 :type '(choice (const :tag "Obey" t)
|
|
482 (const :tag "Ignore" nil)
|
|
483 (sexp :tag "Query" :format "%t\n" other))
|
|
484 :group 'find-file)
|
|
485
|
|
486 ;; Avoid losing in versions where CLASH_DETECTION is disabled.
|
|
487 (or (fboundp 'lock-buffer)
|
|
488 (defalias 'lock-buffer 'ignore))
|
|
489 (or (fboundp 'unlock-buffer)
|
|
490 (defalias 'unlock-buffer 'ignore))
|
1333
|
491 (or (fboundp 'file-locked-p)
|
|
492 (defalias 'file-locked-p 'ignore))
|
|
493
|
|
494 (defvar view-read-only nil
|
|
495 "*Non-nil means buffers visiting files read-only, do it in view mode.")
|
428
|
496
|
|
497 ;;FSFmacs bastardized ange-ftp cruft
|
|
498 ;(defun ange-ftp-completion-hook-function (op &rest args)
|
1333
|
499 ; "Provides support for ange-ftp host name completion.
|
|
500 ;Runs the usual ange-ftp hook, but only for completion operations."
|
|
501 ; ;; Having this here avoids the need to load ange-ftp when it's not
|
|
502 ; ;; really in use.
|
428
|
503 ; (if (memq op '(file-name-completion file-name-all-completions))
|
|
504 ; (apply 'ange-ftp-hook-function op args)
|
|
505 ; (let ((inhibit-file-name-handlers
|
|
506 ; (cons 'ange-ftp-completion-hook-function
|
|
507 ; (and (eq inhibit-file-name-operation op)
|
|
508 ; inhibit-file-name-handlers)))
|
|
509 ; (inhibit-file-name-operation op))
|
|
510 ; (apply op args))
|
|
511
|
1333
|
512 ;; FSF 21.2:
|
|
513 ;This function's standard definition is trivial; it just returns the argument.
|
|
514 ;However, on some systems, the function is redefined with a definition
|
|
515 ;that really does change some file names to canonicalize certain
|
|
516 ;patterns and to guarantee valid names."
|
428
|
517 (defun convert-standard-filename (filename)
|
464
|
518 "Convert a standard file's name to something suitable for the current OS."
|
|
519 (if (eq system-type 'windows-nt)
|
|
520 (let ((name (copy-sequence filename))
|
|
521 (start 0))
|
|
522 ;; leave ':' if part of drive specifier
|
819
|
523 (if (and (> (length name) 1)
|
|
524 (eq (aref name 1) ?:))
|
464
|
525 (setq start 2))
|
|
526 ;; destructively replace invalid filename characters with !
|
|
527 (while (string-match "[?*:<>|\"\000-\037]" name start)
|
|
528 (aset name (match-beginning 0) ?!)
|
|
529 (setq start (match-end 0)))
|
|
530 ;; FSF: [convert directory separators to Windows format ...]
|
|
531 ;; unneeded in XEmacs.
|
|
532 name)
|
|
533 filename))
|
|
534
|
428
|
535
|
|
536 (defun pwd ()
|
|
537 "Show the current default directory."
|
|
538 (interactive nil)
|
|
539 (message "Directory %s" default-directory))
|
|
540
|
|
541 (defvar cd-path nil
|
|
542 "Value of the CDPATH environment variable, as a list.
|
|
543 Not actually set up until the first time you use it.")
|
|
544
|
|
545 (defvar cdpath-previous nil
|
|
546 "Prior value of the CDPATH environment variable.")
|
|
547
|
|
548 (defun parse-colon-path (cd-path)
|
|
549 "Explode a colon-separated search path into a list of directory names.
|
|
550
|
|
551 If you think you want to use this, you probably don't. This function
|
|
552 is provided for backward compatibility. A more robust implementation
|
|
553 of the same functionality is available as `split-path', which see."
|
|
554 (and cd-path
|
|
555 (let (cd-list (cd-start 0) cd-colon)
|
|
556 (setq cd-path (concat cd-path path-separator))
|
|
557 (while (setq cd-colon (string-match path-separator cd-path cd-start))
|
|
558 (setq cd-list
|
|
559 (nconc cd-list
|
|
560 (list (if (= cd-start cd-colon)
|
|
561 nil
|
|
562 (substitute-in-file-name
|
|
563 (file-name-as-directory
|
|
564 (substring cd-path cd-start cd-colon)))))))
|
|
565 (setq cd-start (+ cd-colon 1)))
|
|
566 cd-list)))
|
|
567
|
|
568 (defun cd-absolute (dir)
|
|
569 "Change current directory to given absolute file name DIR."
|
|
570 ;; Put the name into directory syntax now,
|
|
571 ;; because otherwise expand-file-name may give some bad results.
|
|
572 (setq dir (file-name-as-directory dir))
|
|
573 ;; XEmacs change: stig@hackvan.com
|
|
574 (if find-file-use-truenames
|
|
575 (setq dir (file-truename dir)))
|
|
576 (setq dir (abbreviate-file-name (expand-file-name dir)))
|
|
577 (cond ((not (file-directory-p dir))
|
1333
|
578 (if (file-exists-p dir)
|
|
579 (error "%s is not a directory" dir)
|
|
580 (error "%s: no such directory" dir)))
|
428
|
581 ;; this breaks ange-ftp, which doesn't (can't?) overload `file-executable-p'.
|
|
582 ;;((not (file-executable-p dir))
|
|
583 ;; (error "Cannot cd to %s: Permission denied" dir))
|
|
584 (t
|
|
585 (setq default-directory dir))))
|
|
586
|
|
587 (defun cd (dir)
|
|
588 "Make DIR become the current buffer's default directory.
|
|
589 If your environment includes a `CDPATH' variable, try each one of that
|
|
590 colon-separated list of directories when resolving a relative directory name."
|
|
591 (interactive
|
|
592 ;; XEmacs change? (read-file-name => read-directory-name)
|
|
593 (list (read-directory-name "Change default directory: "
|
|
594 default-directory default-directory
|
|
595 (and (member cd-path '(nil ("./")))
|
|
596 (null (getenv "CDPATH"))))))
|
|
597 (if (file-name-absolute-p dir)
|
|
598 (cd-absolute (expand-file-name dir))
|
|
599 ;; XEmacs
|
|
600 (unless (and cd-path (equal (getenv "CDPATH") cdpath-previous))
|
|
601 ;;#### Unix-specific
|
|
602 (let ((trypath (parse-colon-path
|
|
603 (setq cdpath-previous (getenv "CDPATH")))))
|
|
604 (setq cd-path (or trypath (list "./")))))
|
|
605 (or (catch 'found
|
|
606 (mapcar #'(lambda (x)
|
|
607 (let ((f (expand-file-name (concat x dir))))
|
|
608 (if (file-directory-p f)
|
|
609 (progn
|
|
610 (cd-absolute f)
|
|
611 (throw 'found t)))))
|
|
612 cd-path)
|
|
613 nil)
|
|
614 ;; jwz: give a better error message to those of us with the
|
|
615 ;; good taste not to use a kludge like $CDPATH.
|
|
616 (if (equal cd-path '("./"))
|
|
617 (error "No such directory: %s" (expand-file-name dir))
|
|
618 (error "Directory not found in $CDPATH: %s" dir)))))
|
|
619
|
|
620 (defun load-file (file)
|
|
621 "Load the Lisp file named FILE."
|
1333
|
622 ;; This is a case where .elc makes a lot of sense.
|
|
623 (interactive (list (let ((completion-ignored-extensions
|
|
624 (remove ".elc" completion-ignored-extensions)))
|
|
625 (read-file-name "Load file: "))))
|
428
|
626 (load (expand-file-name file) nil nil t))
|
|
627
|
|
628 ; We now dump utils/lib-complete.el which has improved versions of this.
|
|
629 ;(defun load-library (library)
|
|
630 ; "Load the library named LIBRARY.
|
|
631 ;This is an interface to the function `load'."
|
|
632 ; (interactive "sLoad library: ")
|
|
633 ; (load library))
|
|
634 ;
|
|
635 ;(defun find-library (library)
|
|
636 ; "Find the library of Lisp code named LIBRARY.
|
|
637 ;This searches `load-path' for a file named either \"LIBRARY\" or \"LIBRARY.el\"."
|
|
638 ; (interactive "sFind library file: ")
|
|
639 ; (let ((f (locate-file library load-path ":.el:")))
|
|
640 ; (if f
|
|
641 ; (find-file f)
|
|
642 ; (error "Couldn't locate library %s" library))))
|
|
643
|
1333
|
644 (defun file-local-copy (file)
|
428
|
645 "Copy the file FILE into a temporary file on this machine.
|
|
646 Returns the name of the local copy, or nil, if FILE is directly
|
|
647 accessible."
|
1333
|
648 ;; This formerly had an optional BUFFER argument that wasn't used by
|
|
649 ;; anything.
|
428
|
650 (let ((handler (find-file-name-handler file 'file-local-copy)))
|
|
651 (if handler
|
|
652 (funcall handler 'file-local-copy file)
|
|
653 nil)))
|
|
654
|
|
655 ;; XEmacs change block
|
|
656 ; We have this in C and use the realpath() system call.
|
|
657
|
|
658 ;(defun file-truename (filename &optional counter prev-dirs)
|
|
659 ; [... lots of code snipped ...]
|
|
660 ; filename))
|
|
661
|
|
662 ;; XEmacs addition. Called from `insert-file-contents-internal'
|
|
663 ;; at the appropriate time.
|
|
664 (defun compute-buffer-file-truename (&optional buffer)
|
|
665 "Recompute BUFFER's value of `buffer-file-truename'
|
|
666 based on the current value of `buffer-file-name'.
|
|
667 BUFFER defaults to the current buffer if unspecified."
|
|
668 (save-excursion
|
|
669 (set-buffer (or buffer (current-buffer)))
|
|
670 (cond ((null buffer-file-name)
|
|
671 (setq buffer-file-truename nil))
|
|
672 ((setq buffer-file-truename (file-truename buffer-file-name))
|
|
673 ;; it exists, we're done.
|
|
674 nil)
|
|
675 (t
|
|
676 ;; the file doesn't exist, but maybe the directory does.
|
|
677 (let* ((dir (file-name-directory buffer-file-name))
|
|
678 (truedir (file-truename dir)))
|
|
679 (if truedir (setq dir truedir))
|
|
680 (setq buffer-file-truename
|
|
681 (expand-file-name (file-name-nondirectory buffer-file-name)
|
|
682 dir)))))
|
|
683 (if (and find-file-use-truenames buffer-file-truename)
|
|
684 (setq buffer-file-name (abbreviate-file-name buffer-file-truename)
|
|
685 default-directory (file-name-directory buffer-file-name)))
|
|
686 buffer-file-truename))
|
|
687 ;; End XEmacs change block
|
|
688
|
|
689 (defun file-chase-links (filename)
|
|
690 "Chase links in FILENAME until a name that is not a link.
|
|
691 Does not examine containing directories for links,
|
|
692 unlike `file-truename'."
|
|
693 (let (tem (count 100) (newname filename))
|
|
694 (while (setq tem (file-symlink-p newname))
|
|
695 (save-match-data
|
|
696 (if (= count 0)
|
|
697 (error "Apparent cycle of symbolic links for %s" filename))
|
|
698 ;; In the context of a link, `//' doesn't mean what XEmacs thinks.
|
|
699 (while (string-match "//+" tem)
|
1333
|
700 (setq tem (replace-match "/" nil nil tem)))
|
428
|
701 ;; Handle `..' by hand, since it needs to work in the
|
|
702 ;; target of any directory symlink.
|
|
703 ;; This code is not quite complete; it does not handle
|
|
704 ;; embedded .. in some cases such as ./../foo and foo/bar/../../../lose.
|
|
705 (while (string-match "\\`\\.\\./" tem) ;#### Unix specific
|
|
706 (setq tem (substring tem 3))
|
|
707 (setq newname (file-name-as-directory
|
|
708 ;; Do the .. by hand.
|
|
709 (directory-file-name
|
|
710 (file-name-directory
|
|
711 ;; Chase links in the default dir of the symlink.
|
|
712 (file-chase-links
|
|
713 (directory-file-name
|
|
714 (file-name-directory newname))))))))
|
|
715 (setq newname (expand-file-name tem (file-name-directory newname)))
|
|
716 (setq count (1- count))))
|
|
717 newname))
|
|
718
|
|
719 (defun switch-to-other-buffer (arg)
|
|
720 "Switch to the previous buffer. With a numeric arg, n, switch to the nth
|
|
721 most recent buffer. With an arg of 0, buries the current buffer at the
|
|
722 bottom of the buffer stack."
|
|
723 (interactive "p")
|
|
724 (if (eq arg 0)
|
|
725 (bury-buffer (current-buffer)))
|
|
726 (switch-to-buffer
|
|
727 (if (<= arg 1) (other-buffer (current-buffer))
|
|
728 (nth (1+ arg) (buffer-list)))))
|
|
729
|
1333
|
730 ;;FSF 21.2
|
|
731 ;Optional second arg NORECORD non-nil means
|
|
732 ;do not put this buffer at the front of the list of recently selected ones.
|
|
733 (defun switch-to-buffer-other-window (buffer) ;;FSF 21.2: &optional norecord
|
|
734 "Select buffer BUFFER in another window.
|
|
735
|
|
736 This uses the function `display-buffer' as a subroutine; see its
|
|
737 documentation for additional customization information."
|
|
738 (interactive "BSwitch to buffer in other window: ")
|
428
|
739 (let ((pop-up-windows t))
|
|
740 ;; XEmacs: this used to have (selected-frame) as the third argument,
|
|
741 ;; but this is obnoxious. If the user wants the buffer in a
|
|
742 ;; different frame, then it should be this way.
|
|
743
|
|
744 ;; Change documented above undone --mrb
|
|
745 (pop-to-buffer buffer t (selected-frame))))
|
1333
|
746 ;(pop-to-buffer buffer t norecord)))
|
|
747
|
|
748 ;; FSF 21.2:
|
|
749 ; (defun switch-to-buffer-other-frame (buffer &optional norecord)
|
|
750 ; "Switch to buffer BUFFER in another frame.
|
|
751 ; Optional second arg NORECORD non-nil means
|
|
752 ; do not put this buffer at the front of the list of recently selected ones.
|
|
753
|
|
754 ; This uses the function `display-buffer' as a subroutine; see its
|
|
755 ; documentation for additional customization information."
|
|
756 ; (interactive "BSwitch to buffer in other frame: ")
|
|
757 ; (let ((pop-up-frames t))
|
|
758 ; (pop-to-buffer buffer t norecord)
|
|
759 ; (raise-frame (window-frame (selected-window)))))
|
428
|
760
|
|
761 (defun switch-to-buffer-other-frame (buffer)
|
1333
|
762 "Switch to buffer BUFFER in a newly-created frame.
|
|
763
|
|
764 This uses the function `display-buffer' as a subroutine; see its
|
|
765 documentation for additional customization information."
|
428
|
766 (interactive "BSwitch to buffer in other frame: ")
|
|
767 (let* ((name (get-frame-name-for-buffer buffer))
|
|
768 (frame (make-frame (if name
|
|
769 (list (cons 'name (symbol-name name)))))))
|
|
770 (pop-to-buffer buffer t frame)
|
|
771 (make-frame-visible frame)
|
|
772 buffer))
|
|
773
|
771
|
774 (defun switch-to-next-buffer (&optional n)
|
|
775 "Switch to the next-most-recent buffer.
|
|
776 This essentially rotates the buffer list forward.
|
|
777 N (interactively, the prefix arg) specifies how many times to rotate
|
|
778 forward, and defaults to 1. Buffers whose name begins with a space
|
|
779 \(i.e. \"invisible\" buffers) are ignored."
|
|
780 ;; Here is a different interactive spec. Look up the function
|
|
781 ;; `interactive' (i.e. `C-h f interactive') to understand how this
|
|
782 ;; all works.
|
|
783 (interactive "p")
|
|
784 (dotimes (n (or n 1))
|
|
785 (loop
|
|
786 do (bury-buffer (car (buffer-list)))
|
|
787 while (funcall buffers-tab-omit-function (car (buffer-list))))
|
|
788 (switch-to-buffer (car (buffer-list)))))
|
|
789
|
|
790 (defun switch-to-previous-buffer (&optional n)
|
|
791 "Switch to the previously most-recent buffer.
|
|
792 This essentially rotates the buffer list backward.
|
|
793 N (interactively, the prefix arg) specifies how many times to rotate
|
|
794 backward, and defaults to 1. Buffers whose name begins with a space
|
|
795 \(i.e. \"invisible\" buffers) are ignored."
|
|
796 (interactive "p")
|
|
797 (dotimes (n (or n 1))
|
|
798 (loop
|
|
799 do (switch-to-buffer (car (last (buffer-list))))
|
|
800 while (funcall buffers-tab-omit-function (car (buffer-list))))))
|
|
801
|
|
802 (defun switch-to-next-buffer-in-group (&optional n)
|
|
803 "Switch to the next-most-recent buffer in the current group.
|
|
804 This essentially rotates the buffer list forward.
|
|
805 N (interactively, the prefix arg) specifies how many times to rotate
|
|
806 forward, and defaults to 1. Buffers whose name begins with a space
|
|
807 \(i.e. \"invisible\" buffers) are ignored."
|
|
808 (interactive "p")
|
|
809 (dotimes (n (or n 1))
|
|
810 (let ((curbuf (car (buffer-list))))
|
|
811 (loop
|
|
812 do (bury-buffer (car (buffer-list)))
|
|
813 while (or (funcall buffers-tab-omit-function (car (buffer-list)))
|
|
814 (not (funcall buffers-tab-selection-function
|
|
815 curbuf (car (buffer-list)))))))
|
|
816 (switch-to-buffer (car (buffer-list)))))
|
|
817
|
|
818 (defun switch-to-previous-buffer-in-group (&optional n)
|
|
819 "Switch to the previously most-recent buffer in the current group.
|
|
820 This essentially rotates the buffer list backward.
|
|
821 N (interactively, the prefix arg) specifies how many times to rotate
|
|
822 backward, and defaults to 1. Buffers whose name begins with a space
|
|
823 \(i.e. \"invisible\" buffers) are ignored."
|
|
824 (interactive "p")
|
|
825 (dotimes (n (or n 1))
|
|
826 (let ((curbuf (car (buffer-list))))
|
|
827 (loop
|
|
828 do (switch-to-buffer (car (last (buffer-list))))
|
|
829 while (or (funcall buffers-tab-omit-function (car (buffer-list)))
|
|
830 (not (funcall buffers-tab-selection-function
|
|
831 curbuf (car (buffer-list)))))))))
|
|
832
|
1333
|
833 (defun find-file (filename &optional codesys wildcards)
|
428
|
834 "Edit file FILENAME.
|
771
|
835 Switch to a buffer visiting file FILENAME, creating one if none already
|
|
836 exists. Optional second argument specifies the coding system to use when
|
|
837 decoding the file. Interactively, with a prefix argument, you will be
|
|
838 prompted for the coding system.
|
|
839
|
|
840 If you do not explicitly specify a coding system, the coding system
|
|
841 is determined as follows:
|
|
842
|
|
843 1. `coding-system-for-read', if non-nil. (This is used by Lisp programs to
|
|
844 temporarily set an overriding coding system and should almost never
|
|
845 apply here in `find-file'.)
|
|
846 2. The result of `insert-file-contents-pre-hook', if non-nil. (This is a
|
|
847 complex interface for handling special cases.)
|
|
848 3. The matching value for this filename from `file-coding-system-alist',
|
|
849 if any. (This lets you specify the coding system to be used for
|
|
850 files with particular extensions, names, etc.)
|
|
851 4. `buffer-file-coding-system-for-read', if non-nil. (This is the global
|
|
852 default -- normally `undecided', so the built-in auto-detection
|
|
853 mechanism can do its thing.)
|
|
854 5. The coding system 'raw-text.
|
|
855
|
|
856 See `insert-file-contents' for more details about how the process of
|
1333
|
857 determining the coding system works.
|
|
858
|
|
859 Interactively, or if WILDCARDS is non-nil in a call from Lisp,
|
|
860 expand wildcards (if any) and visit multiple files. Wildcard expansion
|
1745
|
861 can be suppressed by setting `find-file-wildcards' to `nil'."
|
1333
|
862 (interactive (list (read-file-name "Find file: ")
|
|
863 (and current-prefix-arg
|
|
864 (read-coding-system "Coding system: "))
|
|
865 t))
|
428
|
866 (if codesys
|
|
867 (let ((coding-system-for-read
|
|
868 (get-coding-system codesys)))
|
1333
|
869 (let ((value (find-file-noselect filename nil nil wildcards)))
|
|
870 (if (listp value)
|
|
871 (mapcar 'switch-to-buffer (nreverse value))
|
|
872 (switch-to-buffer value))))
|
|
873 (let ((value (find-file-noselect filename nil nil wildcards)))
|
|
874 (if (listp value)
|
|
875 (mapcar 'switch-to-buffer (nreverse value))
|
|
876 (switch-to-buffer value)))))
|
|
877
|
|
878 (defun find-file-other-window (filename &optional codesys wildcards)
|
428
|
879 "Edit file FILENAME, in another window.
|
771
|
880 May create a new window, or reuse an existing one. See the function
|
|
881 `display-buffer'. Optional second argument specifies the coding system to
|
|
882 use when decoding the file. Interactively, with a prefix argument, you
|
|
883 will be prompted for the coding system."
|
1333
|
884 (interactive (list (read-file-name "Find file in other window: ")
|
|
885 (and current-prefix-arg
|
|
886 (read-coding-system "Coding system: "))
|
|
887 t))
|
428
|
888 (if codesys
|
|
889 (let ((coding-system-for-read
|
|
890 (get-coding-system codesys)))
|
1333
|
891 (let ((value (find-file-noselect filename nil nil wildcards)))
|
|
892 (if (listp value)
|
|
893 (progn
|
|
894 (setq value (nreverse value))
|
|
895 (switch-to-buffer-other-window (car value))
|
|
896 (mapcar 'switch-to-buffer (cdr value)))
|
|
897 (switch-to-buffer-other-window value))))
|
|
898 (let ((value (find-file-noselect filename nil nil wildcards)))
|
|
899 (if (listp value)
|
|
900 (progn
|
|
901 (setq value (nreverse value))
|
|
902 (switch-to-buffer-other-window (car value))
|
|
903 (mapcar 'switch-to-buffer (cdr value)))
|
|
904 (switch-to-buffer-other-window value)))))
|
|
905
|
|
906 (defun find-file-other-frame (filename &optional codesys wildcards)
|
428
|
907 "Edit file FILENAME, in a newly-created frame.
|
771
|
908 Optional second argument specifies the coding system to use when decoding
|
|
909 the file. Interactively, with a prefix argument, you will be prompted for
|
|
910 the coding system."
|
1333
|
911 (interactive (list (read-file-name "Find file in other frame: ")
|
|
912 (and current-prefix-arg
|
|
913 (read-coding-system "Coding system: "))
|
|
914 t))
|
428
|
915 (if codesys
|
|
916 (let ((coding-system-for-read
|
|
917 (get-coding-system codesys)))
|
1333
|
918 (let ((value (find-file-noselect filename nil nil wildcards)))
|
|
919 (if (listp value)
|
|
920 (progn
|
|
921 (setq value (nreverse value))
|
|
922 (switch-to-buffer-other-frame (car value))
|
|
923 (mapcar 'switch-to-buffer (cdr value)))
|
|
924 (switch-to-buffer-other-frame value))))
|
|
925 (let ((value (find-file-noselect filename nil nil wildcards)))
|
|
926 (if (listp value)
|
|
927 (progn
|
|
928 (setq value (nreverse value))
|
|
929 (switch-to-buffer-other-frame (car value))
|
|
930 (mapcar 'switch-to-buffer (cdr value)))
|
|
931 (switch-to-buffer-other-frame value)))))
|
|
932
|
|
933 (defun find-file-read-only (filename &optional codesys wildcards)
|
428
|
934 "Edit file FILENAME but don't allow changes.
|
|
935 Like \\[find-file] but marks buffer as read-only.
|
|
936 Use \\[toggle-read-only] to permit editing.
|
771
|
937 Optional second argument specifies the coding system to use when decoding
|
|
938 the file. Interactively, with a prefix argument, you will be prompted for
|
|
939 the coding system."
|
1333
|
940 (interactive (list (read-file-name "Find file read-only: ")
|
|
941 (and current-prefix-arg
|
|
942 (read-coding-system "Coding system: "))
|
|
943 t))
|
428
|
944 (if codesys
|
|
945 (let ((coding-system-for-read
|
|
946 (get-coding-system codesys)))
|
1333
|
947 (find-file filename nil wildcards))
|
|
948 (find-file filename nil wildcards))
|
428
|
949 (setq buffer-read-only t)
|
|
950 (current-buffer))
|
|
951
|
1333
|
952 (defun find-file-read-only-other-window (filename &optional codesys wildcards)
|
428
|
953 "Edit file FILENAME in another window but don't allow changes.
|
|
954 Like \\[find-file-other-window] but marks buffer as read-only.
|
|
955 Use \\[toggle-read-only] to permit editing.
|
771
|
956 Optional second argument specifies the coding system to use when decoding
|
|
957 the file. Interactively, with a prefix argument, you will be prompted for
|
|
958 the coding system."
|
1333
|
959 (interactive (list (read-file-name "Find file read-only other window: ")
|
|
960 (and current-prefix-arg
|
|
961 (read-coding-system "Coding system: "))
|
|
962 t))
|
428
|
963 (if codesys
|
|
964 (let ((coding-system-for-read
|
|
965 (get-coding-system codesys)))
|
|
966 (find-file-other-window filename))
|
|
967 (find-file-other-window filename))
|
|
968 (setq buffer-read-only t)
|
|
969 (current-buffer))
|
|
970
|
1333
|
971 (defun find-file-read-only-other-frame (filename &optional codesys wildcards)
|
428
|
972 "Edit file FILENAME in another frame but don't allow changes.
|
|
973 Like \\[find-file-other-frame] but marks buffer as read-only.
|
|
974 Use \\[toggle-read-only] to permit editing.
|
771
|
975 Optional second argument specifies the coding system to use when decoding
|
|
976 the file. Interactively, with a prefix argument, you will be prompted for
|
|
977 the coding system."
|
1333
|
978 (interactive (list (read-file-name "Find file read-only other frame: ")
|
|
979 (and current-prefix-arg
|
|
980 (read-coding-system "Coding system: "))
|
|
981 t))
|
428
|
982 (if codesys
|
|
983 (let ((coding-system-for-read
|
|
984 (get-coding-system codesys)))
|
|
985 (find-file-other-frame filename))
|
|
986 (find-file-other-frame filename))
|
|
987 (setq buffer-read-only t)
|
|
988 (current-buffer))
|
|
989
|
|
990 (defun find-alternate-file-other-window (filename &optional codesys)
|
|
991 "Find file FILENAME as a replacement for the file in the next window.
|
771
|
992 This command does not select that window. Optional second argument
|
|
993 specifies the coding system to use when decoding the file. Interactively,
|
428
|
994 with a prefix argument, you will be prompted for the coding system."
|
|
995 (interactive
|
|
996 (save-selected-window
|
|
997 (other-window 1)
|
|
998 (let ((file buffer-file-name)
|
|
999 (file-name nil)
|
|
1000 (file-dir nil))
|
|
1001 (and file
|
|
1002 (setq file-name (file-name-nondirectory file)
|
|
1003 file-dir (file-name-directory file)))
|
|
1004 (list (read-file-name
|
|
1005 "Find alternate file: " file-dir nil nil file-name)
|
771
|
1006 (if current-prefix-arg (read-coding-system "Coding-system: "))))))
|
428
|
1007 (if (one-window-p)
|
|
1008 (find-file-other-window filename)
|
|
1009 (save-selected-window
|
|
1010 (other-window 1)
|
|
1011 (find-alternate-file filename codesys))))
|
|
1012
|
|
1013 (defun find-alternate-file (filename &optional codesys)
|
|
1014 "Find file FILENAME, select its buffer, kill previous buffer.
|
|
1015 If the current buffer now contains an empty file that you just visited
|
771
|
1016 \(presumably by mistake), use this command to visit the file you really
|
|
1017 want. Optional second argument specifies the coding system to use when
|
|
1018 decoding the file. Interactively, with a prefix argument, you will be
|
|
1019 prompted for the coding system."
|
428
|
1020 (interactive
|
|
1021 (let ((file buffer-file-name)
|
|
1022 (file-name nil)
|
|
1023 (file-dir nil))
|
|
1024 (and file
|
|
1025 (setq file-name (file-name-nondirectory file)
|
|
1026 file-dir (file-name-directory file)))
|
|
1027 (list (read-file-name
|
|
1028 "Find alternate file: " file-dir nil nil file-name)
|
771
|
1029 (if current-prefix-arg (read-coding-system "Coding-system: ")))))
|
428
|
1030 (and (buffer-modified-p) (buffer-file-name)
|
|
1031 ;; (not buffer-read-only)
|
|
1032 (not (yes-or-no-p (format
|
|
1033 "Buffer %s is modified; kill anyway? "
|
|
1034 (buffer-name))))
|
|
1035 (error "Aborted"))
|
|
1036 (let ((obuf (current-buffer))
|
|
1037 (ofile buffer-file-name)
|
|
1038 (onum buffer-file-number)
|
|
1039 (otrue buffer-file-truename)
|
|
1040 (oname (buffer-name)))
|
|
1041 (if (get-buffer " **lose**")
|
|
1042 (kill-buffer " **lose**"))
|
|
1043 (rename-buffer " **lose**")
|
|
1044 (setq buffer-file-name nil)
|
|
1045 (setq buffer-file-number nil)
|
|
1046 (setq buffer-file-truename nil)
|
|
1047 (unwind-protect
|
|
1048 (progn
|
|
1049 (unlock-buffer)
|
|
1050 (if codesys
|
|
1051 (let ((coding-system-for-read
|
|
1052 (get-coding-system codesys)))
|
|
1053 (find-file filename))
|
|
1054 (find-file filename)))
|
|
1055 (cond ((eq obuf (current-buffer))
|
|
1056 (setq buffer-file-name ofile)
|
|
1057 (setq buffer-file-number onum)
|
|
1058 (setq buffer-file-truename otrue)
|
|
1059 (lock-buffer)
|
|
1060 (rename-buffer oname))))
|
|
1061 (or (eq (current-buffer) obuf)
|
|
1062 (kill-buffer obuf))))
|
1333
|
1063
|
428
|
1064 (defun create-file-buffer (filename)
|
|
1065 "Create a suitably named buffer for visiting FILENAME, and return it.
|
|
1066 FILENAME (sans directory) is used unchanged if that name is free;
|
|
1067 otherwise a string <2> or <3> or ... is appended to get an unused name."
|
|
1068 (let ((handler (find-file-name-handler filename 'create-file-buffer)))
|
|
1069 (if handler
|
|
1070 (funcall handler 'create-file-buffer filename)
|
|
1071 (let ((lastname (file-name-nondirectory filename)))
|
|
1072 (if (string= lastname "")
|
|
1073 (setq lastname filename))
|
|
1074 (generate-new-buffer lastname)))))
|
|
1075
|
|
1076 (defun generate-new-buffer (name)
|
|
1077 "Create and return a buffer with a name based on NAME.
|
|
1078 Choose the buffer's name using `generate-new-buffer-name'."
|
|
1079 (get-buffer-create (generate-new-buffer-name name)))
|
|
1080
|
|
1081 (defvar abbreviated-home-dir nil
|
|
1082 "The user's homedir abbreviated according to `directory-abbrev-alist'.")
|
|
1083
|
|
1084 (defun abbreviate-file-name (filename &optional hack-homedir)
|
|
1085 "Return a version of FILENAME shortened using `directory-abbrev-alist'.
|
1333
|
1086 Type \\[describe-variable] directory-abbrev-alist RET for more information.
|
428
|
1087 If optional argument HACK-HOMEDIR is non-nil, then this also substitutes
|
|
1088 \"~\" for the user's home directory."
|
|
1089 (let ((handler (find-file-name-handler filename 'abbreviate-file-name)))
|
|
1090 (if handler
|
|
1091 (funcall handler 'abbreviate-file-name filename hack-homedir)
|
|
1092 ;; Get rid of the prefixes added by the automounter.
|
|
1093 ;;(if (and (string-match automount-dir-prefix filename)
|
|
1094 ;; (file-exists-p (file-name-directory
|
|
1095 ;; (substring filename (1- (match-end 0))))))
|
|
1096 ;; (setq filename (substring filename (1- (match-end 0)))))
|
|
1097 (let ((tail directory-abbrev-alist))
|
|
1098 ;; If any elt of directory-abbrev-alist matches this name,
|
|
1099 ;; abbreviate accordingly.
|
|
1100 (while tail
|
|
1101 (when (string-match (car (car tail)) filename)
|
|
1102 (setq filename
|
|
1103 (concat (cdr (car tail)) (substring filename (match-end 0)))))
|
|
1104 (setq tail (cdr tail))))
|
|
1105 (when hack-homedir
|
|
1106 ;; Compute and save the abbreviated homedir name.
|
440
|
1107 ;; We defer computing this until the first time it's needed,
|
|
1108 ;; to give time for directory-abbrev-alist to be set properly.
|
|
1109 ;; We include the separator at the end, to avoid spurious
|
|
1110 ;; matches such as `/usr/foobar' when the home dir is
|
|
1111 ;; `/usr/foo'.
|
428
|
1112 (or abbreviated-home-dir
|
|
1113 (setq abbreviated-home-dir
|
|
1114 (let ((abbreviated-home-dir "$foo"))
|
440
|
1115 (concat "\\`"
|
|
1116 (regexp-quote
|
|
1117 (abbreviate-file-name (expand-file-name "~")))
|
|
1118 "\\("
|
|
1119 (regexp-quote (string directory-sep-char))
|
|
1120 "\\|\\'\\)"))))
|
428
|
1121 ;; If FILENAME starts with the abbreviated homedir,
|
|
1122 ;; make it start with `~' instead.
|
|
1123 (if (and (string-match abbreviated-home-dir filename)
|
|
1124 ;; If the home dir is just /, don't change it.
|
440
|
1125 (not (and (= (match-end 0) 1)
|
|
1126 (= (aref filename 0) directory-sep-char)))
|
|
1127 (not (and (eq system-type 'windows-nt)
|
428
|
1128 (save-match-data
|
440
|
1129 (string-match (concat "\\`[a-zA-Z]:"
|
|
1130 (regexp-quote
|
|
1131 (string directory-sep-char))
|
|
1132 "\\'")
|
|
1133 filename)))))
|
428
|
1134 (setq filename
|
|
1135 (concat "~"
|
440
|
1136 (match-string 1 filename)
|
428
|
1137 (substring filename (match-end 0))))))
|
|
1138 filename)))
|
|
1139
|
|
1140 (defcustom find-file-not-true-dirname-list nil
|
|
1141 "*List of logical names for which visiting shouldn't save the true dirname."
|
|
1142 :type '(repeat (string :tag "Name"))
|
|
1143 :group 'find-file)
|
|
1144
|
|
1145 ;; This function is needed by FSF vc.el. I hope somebody can make it
|
|
1146 ;; work for XEmacs. -sb.
|
|
1147 ;; #### In what way does it not work? --hniksic
|
|
1148 (defun find-buffer-visiting (filename)
|
|
1149 "Return the buffer visiting file FILENAME (a string).
|
|
1150 This is like `get-file-buffer', except that it checks for any buffer
|
|
1151 visiting the same file, possibly under a different name.
|
|
1152 If there is no such live buffer, return nil."
|
|
1153 (let ((buf (get-file-buffer filename))
|
|
1154 (truename (abbreviate-file-name (file-truename filename))))
|
|
1155 (or buf
|
|
1156 (let ((list (buffer-list)) found)
|
|
1157 (while (and (not found) list)
|
|
1158 (save-excursion
|
|
1159 (set-buffer (car list))
|
|
1160 (if (and buffer-file-name
|
|
1161 (string= buffer-file-truename truename))
|
|
1162 (setq found (car list))))
|
|
1163 (setq list (cdr list)))
|
|
1164 found)
|
1333
|
1165 (let* ((attributes (file-attributes truename))
|
|
1166 (number (nthcdr 10 attributes))
|
|
1167 (list (buffer-list)) found)
|
428
|
1168 (and buffer-file-numbers-unique
|
|
1169 number
|
|
1170 (while (and (not found) list)
|
1333
|
1171 (with-current-buffer (car list)
|
|
1172 (if (and buffer-file-name
|
|
1173 (equal buffer-file-number number)
|
428
|
1174 ;; Verify this buffer's file number
|
|
1175 ;; still belongs to its file.
|
|
1176 (file-exists-p buffer-file-name)
|
1333
|
1177 (equal (file-attributes buffer-file-name)
|
|
1178 attributes))
|
428
|
1179 (setq found (car list))))
|
|
1180 (setq list (cdr list))))
|
|
1181 found))))
|
1333
|
1182
|
|
1183 (defcustom find-file-wildcards t
|
|
1184 "*Non-nil means file-visiting commands should handle wildcards.
|
|
1185 For example, if you specify `*.c', that would visit all the files
|
|
1186 whose names match the pattern."
|
|
1187 :group 'files
|
|
1188 ; :version "20.4"
|
|
1189 :type 'boolean)
|
|
1190
|
|
1191 (defcustom find-file-suppress-same-file-warnings nil
|
|
1192 "*Non-nil means suppress warning messages for symlinked files.
|
|
1193 When nil, Emacs prints a warning when visiting a file that is already
|
|
1194 visited, but with a different name. Setting this option to t
|
|
1195 suppresses this warning."
|
|
1196 :group 'files
|
|
1197 ; :version "21.1"
|
|
1198 :type 'boolean)
|
|
1199
|
|
1200 (defun find-file-noselect (filename &optional nowarn rawfile wildcards)
|
|
1201 "Read file FILENAME into a buffer and return the buffer.
|
|
1202 If a buffer exists visiting FILENAME, return that one, but
|
|
1203 verify that the file has not changed since visited or saved.
|
|
1204 The buffer is not selected, just returned to the caller.
|
|
1205 If NOWARN is non-nil, warning messages will be suppressed.
|
|
1206 If RAWFILE is non-nil, the file is read literally."
|
|
1207 (setq filename
|
|
1208 (abbreviate-file-name
|
|
1209 (expand-file-name filename)))
|
|
1210 (if (file-directory-p filename)
|
|
1211 (or (and find-file-run-dired
|
|
1212 (loop for fn in find-directory-functions
|
|
1213 for x = (and (fboundp fn)
|
|
1214 (funcall fn
|
|
1215 (if find-file-use-truenames
|
|
1216 (abbreviate-file-name
|
|
1217 (file-truename filename))
|
|
1218 filename)))
|
|
1219 if x
|
|
1220 return x))
|
|
1221 (error "%s is a directory" filename))
|
|
1222 (if (and wildcards
|
|
1223 find-file-wildcards
|
|
1224 (not (string-match "\\`/:" filename))
|
|
1225 (string-match "[[*?]" filename))
|
|
1226 (let ((files (condition-case nil
|
|
1227 (file-expand-wildcards filename t)
|
|
1228 (error (list filename))))
|
|
1229 (find-file-wildcards nil))
|
|
1230 (if (null files)
|
|
1231 (find-file-noselect filename)
|
|
1232 (mapcar #'find-file-noselect files)))
|
|
1233 (let* ((buf (get-file-buffer filename))
|
|
1234 (truename (abbreviate-file-name (file-truename filename)))
|
|
1235 (number (nthcdr 10 (file-attributes truename)))
|
|
1236 ; ;; Find any buffer for a file which has same truename.
|
|
1237 ; (other (and (not buf) (find-buffer-visiting filename)))
|
1346
|
1238 )
|
1333
|
1239
|
|
1240 ; ;; Let user know if there is a buffer with the same truename.
|
|
1241 ; (if other
|
|
1242 ; (progn
|
|
1243 ; (or nowarn
|
|
1244 ; find-file-suppress-same-file-warnings
|
|
1245 ; (string-equal filename (buffer-file-name other))
|
|
1246 ; (message "%s and %s are the same file"
|
|
1247 ; filename (buffer-file-name other)))
|
|
1248 ; ;; Optionally also find that buffer.
|
|
1249 ; (if (or find-file-existing-other-name find-file-visit-truename)
|
|
1250 ; (setq buf other))))
|
|
1251
|
|
1252 (when (and buf
|
|
1253 (or find-file-compare-truenames find-file-use-truenames)
|
|
1254 (not find-file-suppress-same-file-warnings)
|
|
1255 (not nowarn))
|
|
1256 (save-excursion
|
|
1257 (set-buffer buf)
|
|
1258 (if (not (string-equal buffer-file-name filename))
|
|
1259 (message "%s and %s are the same file (%s)"
|
|
1260 filename buffer-file-name
|
|
1261 buffer-file-truename))))
|
|
1262
|
|
1263 (if buf
|
|
1264 (progn
|
|
1265 (or nowarn
|
|
1266 (verify-visited-file-modtime buf)
|
|
1267 (cond ((not (file-exists-p filename))
|
|
1268 (error "File %s no longer exists!" filename))
|
|
1269 ;; Certain files should be reverted automatically
|
|
1270 ;; if they have changed on disk and not in the buffer.
|
|
1271 ((and (not (buffer-modified-p buf))
|
|
1272 (dolist (rx revert-without-query nil)
|
|
1273 (when (string-match rx filename)
|
|
1274 (return t))))
|
|
1275 (with-current-buffer buf
|
|
1276 (message "Reverting file %s..." filename)
|
|
1277 (revert-buffer t t)
|
|
1278 (message "Reverting file %s... done" filename)))
|
|
1279 ((yes-or-no-p
|
|
1280 (if (string= (file-name-nondirectory filename)
|
|
1281 (buffer-name buf))
|
|
1282 (format
|
|
1283 (if (buffer-modified-p buf)
|
|
1284 (gettext "File %s changed on disk. Discard your edits? ")
|
|
1285 (gettext "File %s changed on disk. Reread from disk? "))
|
|
1286 (file-name-nondirectory filename))
|
|
1287 (format
|
|
1288 (if (buffer-modified-p buf)
|
|
1289 (gettext "File %s changed on disk. Discard your edits in %s? ")
|
|
1290 (gettext "File %s changed on disk. Reread from disk into %s? "))
|
|
1291 (file-name-nondirectory filename)
|
|
1292 (buffer-name buf))))
|
|
1293 (with-current-buffer buf
|
|
1294 (revert-buffer t t)))))
|
|
1295 (when (not (eq rawfile (not (null find-file-literally))))
|
|
1296 (with-current-buffer buf
|
|
1297 (if (buffer-modified-p)
|
|
1298 (if (y-or-n-p (if rawfile
|
|
1299 "Save file and revisit literally? "
|
|
1300 "Save file and revisit non-literally? "))
|
|
1301 (progn
|
|
1302 (save-buffer)
|
|
1303 (find-file-noselect-1 buf filename nowarn
|
|
1304 rawfile truename number))
|
|
1305 (if (y-or-n-p (if rawfile
|
|
1306 "Discard your edits and revisit file literally? "
|
|
1307 "Discard your edits and revisit file non-literally? "))
|
|
1308 (find-file-noselect-1 buf filename nowarn
|
|
1309 rawfile truename number)
|
|
1310 (error (if rawfile "File already visited non-literally"
|
|
1311 "File already visited literally"))))
|
|
1312 (if (y-or-n-p (if rawfile
|
|
1313 "Revisit file literally? "
|
|
1314 "Revisit file non-literally? "))
|
|
1315 (find-file-noselect-1 buf filename nowarn
|
|
1316 rawfile truename number)
|
|
1317 (error (if rawfile "File already visited non-literally"
|
|
1318 "File already visited literally"))))))
|
|
1319 ;; Return the buffer we are using.
|
|
1320 buf)
|
|
1321 ;; Create a new buffer.
|
|
1322 (setq buf (create-file-buffer filename))
|
|
1323 ;; Catch various signals, such as QUIT, and kill the buffer
|
|
1324 ;; in that case.
|
|
1325 (condition-case data
|
|
1326 (progn
|
|
1327 (set-buffer-major-mode buf)
|
|
1328 ;; find-file-noselect-1 may use a different buffer.
|
|
1329 (find-file-noselect-1 buf filename nowarn
|
|
1330 rawfile truename number))
|
|
1331 (t
|
|
1332 (kill-buffer buf)
|
|
1333 (signal (car data) (cdr data)))))))))
|
|
1334
|
|
1335 (defun find-file-noselect-1 (buf filename nowarn rawfile truename number)
|
|
1336 (let ((inhibit-read-only t)
|
|
1337 error)
|
|
1338 (with-current-buffer buf
|
|
1339 (kill-local-variable 'find-file-literally)
|
|
1340 ;; Needed in case we are re-visiting the file with a different
|
|
1341 ;; text representation.
|
|
1342 (kill-local-variable 'buffer-file-coding-system)
|
|
1343 (erase-buffer)
|
|
1344 ; (and (default-value 'enable-multibyte-characters)
|
|
1345 ; (not rawfile)
|
|
1346 ; (set-buffer-multibyte t))
|
|
1347 (condition-case ()
|
|
1348 (if rawfile
|
|
1349 (insert-file-contents-literally filename t)
|
|
1350 (insert-file-contents filename t))
|
|
1351 (file-error
|
|
1352 (when (and (file-exists-p filename)
|
|
1353 (not (file-readable-p filename)))
|
|
1354 (signal 'file-error (list "File is not readable" filename)))
|
|
1355 (if rawfile
|
|
1356 ;; Unconditionally set error
|
|
1357 (setq error t)
|
|
1358 (or
|
|
1359 ;; Run find-file-not-found-hooks until one returns non-nil.
|
|
1360 (run-hook-with-args-until-success 'find-file-not-found-hooks)
|
|
1361 ;; If they fail too, set error.
|
|
1362 (setq error t)))))
|
|
1363 ;; Find the file's truename, and maybe use that as visited name.
|
|
1364 ;; automatically computed in XEmacs, unless jka-compr was used!
|
|
1365 (unless buffer-file-truename
|
|
1366 (setq buffer-file-truename truename))
|
|
1367 (setq buffer-file-number number)
|
|
1368 (and find-file-use-truenames
|
|
1369 ;; This should be in C. Put pathname
|
|
1370 ;; abbreviations that have been explicitly
|
|
1371 ;; requested back into the pathname. Most
|
|
1372 ;; importantly, strip out automounter /tmp_mnt
|
|
1373 ;; directories so that auto-save will work
|
|
1374 (setq buffer-file-name (abbreviate-file-name buffer-file-name)))
|
|
1375 ;; Set buffer's default directory to that of the file.
|
|
1376 (setq default-directory (file-name-directory buffer-file-name))
|
|
1377 ;; Turn off backup files for certain file names. Since
|
|
1378 ;; this is a permanent local, the major mode won't eliminate it.
|
|
1379 (and (not (funcall backup-enable-predicate buffer-file-name))
|
|
1380 (progn
|
|
1381 (make-local-variable 'backup-inhibited)
|
|
1382 (setq backup-inhibited t)))
|
|
1383 (if rawfile
|
|
1384 (progn
|
|
1385 (setq buffer-file-coding-system 'no-conversion)
|
|
1386 (make-local-variable 'find-file-literally)
|
|
1387 (setq find-file-literally t))
|
|
1388 (after-find-file error (not nowarn))
|
|
1389 (setq buf (current-buffer)))
|
|
1390 (current-buffer))))
|
|
1391
|
444
|
1392 (defun insert-file-contents-literally (filename &optional visit start end replace)
|
1333
|
1393 "Like `insert-file-contents', but only reads in the file literally.
|
|
1394 A buffer may be modified in several ways after reading into the buffer,
|
|
1395 due to Emacs features such as format decoding, character code
|
|
1396 conversion, `find-file-hooks', automatic uncompression, etc.
|
|
1397
|
|
1398 This function ensures that none of these modifications will take place."
|
442
|
1399 (let ((wrap-func (find-file-name-handler filename
|
|
1400 'insert-file-contents-literally)))
|
444
|
1401 (if wrap-func
|
442
|
1402 (funcall wrap-func 'insert-file-contents-literally filename
|
444
|
1403 visit start end replace)
|
442
|
1404 (let ((file-name-handler-alist nil)
|
|
1405 (format-alist nil)
|
|
1406 (after-insert-file-functions nil)
|
|
1407 (coding-system-for-read 'binary)
|
|
1408 (coding-system-for-write 'binary)
|
|
1409 (find-buffer-file-type-function
|
|
1410 (if (fboundp 'find-buffer-file-type)
|
|
1411 (symbol-function 'find-buffer-file-type)
|
1333
|
1412 nil))
|
|
1413 (inhibit-file-name-handlers '(jka-compr-handler image-file-handler))
|
|
1414 (inhibit-file-name-operation 'insert-file-contents))
|
442
|
1415 (unwind-protect
|
|
1416 (progn
|
|
1417 (fset 'find-buffer-file-type (lambda (filename) t))
|
444
|
1418 (insert-file-contents filename visit start end replace))
|
442
|
1419 (if find-buffer-file-type-function
|
|
1420 (fset 'find-buffer-file-type find-buffer-file-type-function)
|
|
1421 (fmakunbound 'find-buffer-file-type)))))))
|
428
|
1422
|
1333
|
1423 (defun insert-file-literally (filename)
|
|
1424 "Insert contents of file FILENAME into buffer after point with no conversion.
|
|
1425
|
|
1426 This function is meant for the user to run interactively.
|
|
1427 Don't call it from programs! Use `insert-file-contents-literally' instead.
|
|
1428 \(Its calling sequence is different; see its documentation)."
|
|
1429 (interactive "*fInsert file literally: ")
|
428
|
1430 (if (file-directory-p filename)
|
1333
|
1431 (signal 'file-error (list "Opening input file" "file is a directory"
|
|
1432 filename)))
|
|
1433 (let ((tem (insert-file-contents-literally filename)))
|
|
1434 (push-mark (+ (point) (car (cdr tem))))))
|
|
1435
|
|
1436 (defvar find-file-literally nil
|
|
1437 "Non-nil if this buffer was made by `find-file-literally' or equivalent.
|
|
1438 This is a permanent local.")
|
|
1439 (put 'find-file-literally 'permanent-local t)
|
|
1440
|
|
1441 (defun find-file-literally (filename)
|
|
1442 "Visit file FILENAME with no conversion of any kind.
|
|
1443 Format conversion and character code conversion are both disabled,
|
|
1444 and multibyte characters are disabled in the resulting buffer.
|
|
1445 The major mode used is Fundamental mode regardless of the file name,
|
|
1446 and local variable specifications in the file are ignored.
|
|
1447 Automatic uncompression and adding a newline at the end of the
|
|
1448 file due to `require-final-newline' is also disabled.
|
|
1449
|
|
1450 You cannot absolutely rely on this function to result in
|
|
1451 visiting the file literally. If Emacs already has a buffer
|
|
1452 which is visiting the file, you get the existing buffer,
|
|
1453 regardless of whether it was created literally or not.
|
|
1454
|
|
1455 In a Lisp program, if you want to be sure of accessing a file's
|
|
1456 contents literally, you should create a temporary buffer and then read
|
|
1457 the file contents into it using `insert-file-contents-literally'."
|
|
1458 (interactive "FFind file literally: ")
|
|
1459 (switch-to-buffer (find-file-noselect filename nil t)))
|
428
|
1460
|
|
1461 (defvar after-find-file-from-revert-buffer nil)
|
|
1462
|
|
1463 (defun after-find-file (&optional error warn noauto
|
|
1464 after-find-file-from-revert-buffer
|
|
1465 nomodes)
|
|
1466 "Called after finding a file and by the default revert function.
|
|
1467 Sets buffer mode, parses local variables.
|
|
1468 Optional args ERROR, WARN, and NOAUTO: ERROR non-nil means there was an
|
|
1469 error in reading the file. WARN non-nil means warn if there
|
|
1470 exists an auto-save file more recent than the visited file.
|
|
1471 NOAUTO means don't mess with auto-save mode.
|
|
1472 Fourth arg AFTER-FIND-FILE-FROM-REVERT-BUFFER non-nil
|
|
1473 means this call was from `revert-buffer'.
|
|
1474 Fifth arg NOMODES non-nil means don't alter the file's modes.
|
1333
|
1475 Finishes by calling the functions in `find-file-hooks'
|
|
1476 unless NOMODES is non-nil."
|
428
|
1477 (setq buffer-read-only (not (file-writable-p buffer-file-name)))
|
|
1478 (if noninteractive
|
|
1479 nil
|
|
1480 (let* (not-serious
|
|
1481 (msg
|
1333
|
1482 (cond
|
|
1483 ((not warn) nil)
|
|
1484 ((and error (file-attributes buffer-file-name))
|
|
1485 (setq buffer-read-only t)
|
|
1486 (gettext "File exists, but cannot be read."))
|
|
1487 ((not buffer-read-only)
|
|
1488 (if (and warn
|
|
1489 (file-newer-than-file-p (make-auto-save-file-name)
|
|
1490 buffer-file-name))
|
|
1491 (format "%s has auto save data; consider M-x recover-file"
|
|
1492 (file-name-nondirectory buffer-file-name))
|
|
1493 (setq not-serious t)
|
|
1494 (if error (gettext "(New file)") nil)))
|
|
1495 ((not error)
|
|
1496 (setq not-serious t)
|
|
1497 (gettext "Note: file is write protected"))
|
|
1498 ((file-attributes (directory-file-name default-directory))
|
|
1499 (gettext "File not found and directory write-protected"))
|
|
1500 ((file-exists-p (file-name-directory buffer-file-name))
|
|
1501 (setq buffer-read-only nil))
|
|
1502 (t
|
|
1503 ;; If the directory the buffer is in doesn't exist,
|
|
1504 ;; offer to create it. It's better to do this now
|
|
1505 ;; than when we save the buffer, because we want
|
|
1506 ;; autosaving to work.
|
|
1507 (setq buffer-read-only nil)
|
|
1508 ;; XEmacs
|
|
1509 (or (file-exists-p (file-name-directory buffer-file-name))
|
|
1510 (condition-case nil
|
|
1511 (if (yes-or-no-p
|
|
1512 (format
|
|
1513 "\
|
428
|
1514 The directory containing %s does not exist. Create? "
|
1333
|
1515 (abbreviate-file-name buffer-file-name)))
|
|
1516 (make-directory (file-name-directory
|
|
1517 buffer-file-name)
|
|
1518 t))
|
|
1519 (quit
|
|
1520 (kill-buffer (current-buffer))
|
|
1521 (signal 'quit nil))))
|
|
1522 nil))))
|
428
|
1523 (if msg
|
|
1524 (progn
|
|
1525 (message "%s" msg)
|
|
1526 (or not-serious (sit-for 1 t)))))
|
1333
|
1527 (when (and auto-save-default (not noauto))
|
428
|
1528 (auto-save-mode t)))
|
1333
|
1529 ;; Make people do a little extra work (C-x C-q)
|
|
1530 ;; before altering a backup file.
|
|
1531 (when (backup-file-name-p buffer-file-name)
|
|
1532 (setq buffer-read-only t))
|
428
|
1533 (unless nomodes
|
1333
|
1534 ;; #### No view-mode-disable.
|
|
1535 ; (when view-read-only
|
|
1536 ; (and-boundp 'view-mode (view-mode-disable)))
|
428
|
1537 (normal-mode t)
|
1333
|
1538 (when (and buffer-read-only
|
|
1539 view-read-only
|
|
1540 (not (eq (get major-mode 'mode-class) 'special)))
|
|
1541 (view-mode))
|
428
|
1542 (run-hooks 'find-file-hooks)))
|
|
1543
|
|
1544 (defun normal-mode (&optional find-file)
|
|
1545 "Choose the major mode for this buffer automatically.
|
|
1546 Also sets up any specified local variables of the file.
|
|
1547 Uses the visited file name, the -*- line, and the local variables spec.
|
|
1548
|
|
1549 This function is called automatically from `find-file'. In that case,
|
1333
|
1550 we may set up the file-specified mode and local variables,
|
|
1551 depending on the value of `enable-local-variables': if it is t, we do;
|
|
1552 if it is nil, we don't; otherwise, we query.
|
|
1553 In addition, if `local-enable-local-variables' is nil, we do
|
|
1554 not set local variables (though we do notice a mode specified with -*-.)
|
|
1555
|
|
1556 `enable-local-variables' is ignored if you run `normal-mode' interactively,
|
|
1557 or from Lisp without specifying the optional argument FIND-FILE;
|
|
1558 in that case, this function acts as if `enable-local-variables' were t."
|
428
|
1559 (interactive)
|
|
1560 (or find-file (funcall (or default-major-mode 'fundamental-mode)))
|
793
|
1561 (and (with-trapping-errors
|
|
1562 :operation "File mode specification"
|
|
1563 :class 'file-mode-spec
|
|
1564 :error-form nil
|
|
1565 (set-auto-mode)
|
|
1566 t)
|
|
1567 (with-trapping-errors
|
|
1568 :operation "File local-variables"
|
|
1569 :class 'local-variables
|
|
1570 :error-form nil
|
1333
|
1571 ;; FSF 21.2:
|
|
1572 ; (let ((enable-local-variables (or (not find-file)
|
|
1573 ; enable-local-variables)))
|
|
1574 ; (hack-local-variables))
|
793
|
1575 (hack-local-variables (not find-file)))))
|
428
|
1576
|
1333
|
1577 ;; END SYNC WITH FSF 21.2.
|
|
1578
|
1024
|
1579 ;; `auto-mode-alist' used to contain entries for modes in core and in packages.
|
|
1580 ;; The applicable entries are now located in the corresponding modes in
|
|
1581 ;; packages, the ones here are for core modes. Ditto for
|
|
1582 ;; `interpreter-mode-alist' below.
|
|
1583 ;; Per Abrahamsen suggested splitting auto-mode-alist to
|
428
|
1584 ;; several distinct variables such as, in order of precedence,
|
|
1585 ;; `user-auto-mode-alist' for users, `package-auto-mode-alist' for
|
|
1586 ;; packages and `auto-mode-alist' (which might also be called
|
|
1587 ;; `default-auto-mode-alist') for default stuff, such as some of the
|
|
1588 ;; entries below.
|
|
1589
|
|
1590 (defvar auto-mode-alist
|
|
1591 '(("\\.te?xt\\'" . text-mode)
|
|
1592 ("\\.el\\'" . emacs-lisp-mode)
|
|
1593 ("\\.c?l\\(?:i?sp\\)?\\'" . lisp-mode)
|
|
1594 ("\\.article\\'" . text-mode)
|
|
1595 ("\\.letter\\'" . text-mode)
|
|
1596 ;; Mailer puts message to be edited in /tmp/Re.... or Message
|
|
1597 ;; #### Unix-specific!
|
|
1598 ("\\`/tmp/Re" . text-mode)
|
|
1599 ("/Message[0-9]*\\'" . text-mode)
|
|
1600 ;; some news reader is reported to use this
|
|
1601 ("^/tmp/fol/" . text-mode)
|
|
1602 ;; .emacs following a directory delimiter in either Unix or
|
|
1603 ;; Windows syntax.
|
|
1604 ("[/\\][._].*emacs\\'" . emacs-lisp-mode)
|
|
1605 ("\\.ml\\'" . lisp-mode)
|
|
1606 )
|
|
1607 "Alist of filename patterns vs. corresponding major mode functions.
|
|
1608 Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL).
|
|
1609 \(NON-NIL stands for anything that is not nil; the value does not matter.)
|
|
1610 Visiting a file whose name matches REGEXP specifies FUNCTION as the
|
|
1611 mode function to use. FUNCTION will be called, unless it is nil.
|
|
1612
|
|
1613 If the element has the form (REGEXP FUNCTION NON-NIL), then after
|
|
1614 calling FUNCTION (if it's not nil), we delete the suffix that matched
|
|
1615 REGEXP and search the list again for another match.")
|
|
1616
|
|
1617 (defvar interpreter-mode-alist
|
1024
|
1618 '(("emacs" . emacs-lisp-mode))
|
428
|
1619 "Alist mapping interpreter names to major modes.
|
|
1620 This alist is used to guess the major mode of a file based on the
|
|
1621 contents of the first line. This line often contains something like:
|
|
1622 #!/bin/sh
|
|
1623 but may contain something more imaginative like
|
|
1624 #! /bin/env python
|
|
1625 or
|
|
1626 eval 'exec perl -w -S $0 ${1+\"$@\"}'.
|
|
1627
|
|
1628 Each alist element looks like (INTERPRETER . MODE).
|
|
1629 The car of each element is a regular expression which is compared
|
|
1630 with the name of the interpreter specified in the first line.
|
|
1631 If it matches, mode MODE is selected.")
|
|
1632
|
|
1633 (defvar binary-file-regexps
|
444
|
1634 '("\\.\\(?:bz2\\|elc\\|g\\(if\\|z\\)\\|jp\\(eg\\|g\\)\\|png\\|t\\(ar\\|gz\\|iff\\)\\|[Zo]\\)\\'")
|
428
|
1635 "List of regexps of filenames containing binary (non-text) data.")
|
|
1636
|
|
1637 ; (eval-when-compile
|
|
1638 ; (require 'regexp-opt)
|
|
1639 ; (list
|
|
1640 ; (format "\\.\\(?:%s\\)\\'"
|
|
1641 ; (regexp-opt
|
|
1642 ; '("tar"
|
|
1643 ; "tgz"
|
|
1644 ; "gz"
|
|
1645 ; "bz2"
|
|
1646 ; "Z"
|
|
1647 ; "o"
|
|
1648 ; "elc"
|
|
1649 ; "png"
|
|
1650 ; "gif"
|
|
1651 ; "tiff"
|
|
1652 ; "jpg"
|
|
1653 ; "jpeg"))))))
|
444
|
1654
|
428
|
1655 (defvar inhibit-first-line-modes-regexps
|
444
|
1656 binary-file-regexps
|
428
|
1657 "List of regexps; if one matches a file name, don't look for `-*-'.")
|
|
1658
|
|
1659 (defvar inhibit-first-line-modes-suffixes nil
|
|
1660 "List of regexps for what to ignore, for `inhibit-first-line-modes-regexps'.
|
|
1661 When checking `inhibit-first-line-modes-regexps', we first discard
|
|
1662 from the end of the file name anything that matches one of these regexps.")
|
|
1663
|
1333
|
1664 ;; Junk from FSF 21.2. Unnecessary in XEmacs, since `interpreter-mode-alist'
|
|
1665 ;; can have regexps.
|
|
1666 ; (defvar auto-mode-interpreter-regexp
|
|
1667 ; "#![ \t]?\\([^ \t\n]*\
|
|
1668 ; /bin/env[ \t]\\)?\\([^ \t\n]+\\)"
|
|
1669 ; "Regular expression matching interpreters, for file mode determination.
|
|
1670 ; This regular expression is matched against the first line of a file
|
|
1671 ; to determine the file's mode in `set-auto-mode' when Emacs can't deduce
|
|
1672 ; a mode from the file's name. If it matches, the file is assumed to
|
|
1673 ; be interpreted by the interpreter matched by the second group of the
|
|
1674 ; regular expression. The mode is then determined as the mode associated
|
|
1675 ; with that interpreter in `interpreter-mode-alist'.")
|
|
1676
|
428
|
1677 (defvar user-init-file
|
|
1678 nil ; set by command-line
|
|
1679 "File name including directory of user's initialization file.")
|
|
1680
|
|
1681 (defun set-auto-mode (&optional just-from-file-name)
|
|
1682 "Select major mode appropriate for current buffer.
|
|
1683 This checks for a -*- mode tag in the buffer's text,
|
|
1684 compares the filename against the entries in `auto-mode-alist',
|
|
1685 or checks the interpreter that runs this file against
|
|
1686 `interpreter-mode-alist'.
|
|
1687
|
|
1688 It does not check for the `mode:' local variable in the
|
|
1689 Local Variables section of the file; for that, use `hack-local-variables'.
|
|
1690
|
|
1691 If `enable-local-variables' is nil, this function does not check for a
|
|
1692 -*- mode tag.
|
|
1693
|
|
1694 If the optional argument JUST-FROM-FILE-NAME is non-nil,
|
|
1695 then we do not set anything but the major mode,
|
|
1696 and we don't even do that unless it would come from the file name."
|
|
1697 (save-excursion
|
|
1698 ;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*-
|
|
1699 ;; Do this by calling the hack-local-variables helper to avoid redundancy.
|
|
1700 ;; We bind enable-local-variables to nil this time because we're going to
|
|
1701 ;; call hack-local-variables-prop-line again later, "for real." Note that
|
|
1702 ;; this temporary binding does not prevent hack-local-variables-prop-line
|
|
1703 ;; from setting the major mode.
|
|
1704 (or (and enable-local-variables
|
|
1705 (let ((enable-local-variables nil))
|
|
1706 (hack-local-variables-prop-line nil))
|
|
1707 )
|
|
1708 ;; It's not in the -*- line, so check the auto-mode-alist, unless
|
|
1709 ;; this buffer isn't associated with a file.
|
|
1710 (null buffer-file-name)
|
|
1711 (let ((name (file-name-sans-versions buffer-file-name))
|
|
1712 (keep-going t))
|
|
1713 (while keep-going
|
|
1714 (setq keep-going nil)
|
|
1715 (let ((alist auto-mode-alist)
|
|
1716 (mode nil))
|
440
|
1717
|
428
|
1718 ;; Find first matching alist entry.
|
440
|
1719
|
|
1720 ;; #### This is incorrect. In NT, case sensitivity is a volume
|
|
1721 ;; property. For instance, NFS mounts *are* case sensitive.
|
|
1722 ;; Need internal function (file-name-case-sensitive f), F
|
|
1723 ;; being file or directory name. - kkm
|
428
|
1724 (let ((case-fold-search
|
440
|
1725 (eq system-type 'windows-nt)))
|
428
|
1726 (while (and (not mode) alist)
|
|
1727 (if (string-match (car (car alist)) name)
|
|
1728 (if (and (consp (cdr (car alist)))
|
|
1729 (nth 2 (car alist)))
|
|
1730 (progn
|
|
1731 (setq mode (car (cdr (car alist)))
|
|
1732 name (substring name 0 (match-beginning 0))
|
|
1733 keep-going t))
|
|
1734 (setq mode (cdr (car alist))
|
|
1735 keep-going nil)))
|
|
1736 (setq alist (cdr alist))))
|
|
1737 (unless just-from-file-name
|
|
1738 ;; If we can't deduce a mode from the file name,
|
|
1739 ;; look for an interpreter specified in the first line.
|
|
1740 (if (and (null mode)
|
|
1741 (save-excursion ; XEmacs
|
|
1742 (goto-char (point-min))
|
|
1743 (looking-at "#!")))
|
|
1744 (let ((firstline
|
|
1745 (buffer-substring
|
|
1746 (point-min)
|
|
1747 (save-excursion
|
|
1748 (goto-char (point-min)) (end-of-line) (point)))))
|
|
1749 (setq alist interpreter-mode-alist)
|
|
1750 (while alist
|
|
1751 (if (string-match (car (car alist)) firstline)
|
|
1752 (progn
|
|
1753 (setq mode (cdr (car alist)))
|
|
1754 (setq alist nil))
|
|
1755 (setq alist (cdr alist)))))))
|
|
1756 (if mode
|
|
1757 (if (not (fboundp mode))
|
|
1758 (let ((name (package-get-package-provider mode)))
|
|
1759 (if name
|
|
1760 (message "Mode %s is not installed. Download package %s" mode name)
|
|
1761 (message "Mode %s either doesn't exist or is not a known package" mode))
|
|
1762 (sit-for 2)
|
|
1763 (error "%s" mode))
|
|
1764 (unless (and just-from-file-name
|
|
1765 (or
|
|
1766 ;; Don't reinvoke major mode.
|
|
1767 (eq mode major-mode)
|
|
1768 ;; Don't lose on minor modes.
|
|
1769 (assq mode minor-mode-alist)))
|
|
1770 (funcall mode))))))))))
|
|
1771
|
|
1772 (defvar hack-local-variables-hook nil
|
|
1773 "Normal hook run after processing a file's local variables specs.
|
|
1774 Major modes can use this to examine user-specified local variables
|
|
1775 in order to initialize other data structure based on them.
|
|
1776
|
|
1777 This hook runs even if there were no local variables or if their
|
|
1778 evaluation was suppressed. See also `enable-local-variables' and
|
|
1779 `enable-local-eval'.")
|
|
1780
|
|
1781 (defun hack-local-variables (&optional force)
|
|
1782 "Parse, and bind or evaluate as appropriate, any local variables
|
|
1783 for current buffer."
|
|
1784 ;; Don't look for -*- if this file name matches any
|
|
1785 ;; of the regexps in inhibit-first-line-modes-regexps.
|
|
1786 (if (or (null buffer-file-name) ; don't lose if buffer has no file!
|
|
1787 (not (let ((temp inhibit-first-line-modes-regexps)
|
|
1788 (name (if buffer-file-name
|
|
1789 (file-name-sans-versions buffer-file-name)
|
|
1790 (buffer-name))))
|
|
1791 (while (let ((sufs inhibit-first-line-modes-suffixes))
|
|
1792 (while (and sufs (not
|
|
1793 (string-match (car sufs) name)))
|
|
1794 (setq sufs (cdr sufs)))
|
|
1795 sufs)
|
|
1796 (setq name (substring name 0 (match-beginning 0))))
|
|
1797 (while (and temp
|
|
1798 (not (string-match (car temp) name)))
|
|
1799 (setq temp (cdr temp))
|
|
1800 temp))))
|
|
1801 (progn
|
|
1802 ;; Look for variables in the -*- line.
|
|
1803 (hack-local-variables-prop-line force)
|
|
1804 ;; Look for "Local variables:" block in last page.
|
|
1805 (hack-local-variables-last-page force)))
|
|
1806 (run-hooks 'hack-local-variables-hook))
|
|
1807
|
|
1808 ;;; Local variables may be specified in the last page of the file (within 3k
|
|
1809 ;;; from the end of the file and after the last ^L) in the form
|
|
1810 ;;;
|
|
1811 ;;; Local variables:
|
|
1812 ;;; variable-name: variable-value
|
|
1813 ;;; end:
|
|
1814 ;;;
|
|
1815 ;;; The lines may begin with a common prefix, like ";;; " in the above
|
|
1816 ;;; example. They may also have a common suffix (" */" for example). In
|
|
1817 ;;; this form, the local variable "mode" can be used to change the major
|
|
1818 ;;; mode, and the local variable "eval" can be used to evaluate an arbitrary
|
|
1819 ;;; form.
|
|
1820 ;;;
|
|
1821 ;;; Local variables may also be specified in the first line of the file.
|
|
1822 ;;; Embedded in this line are a pair of "-*-" sequences. What lies between
|
|
1823 ;;; them are variable-name/variable-value pairs, like:
|
|
1824 ;;;
|
|
1825 ;;; -*- mode: emacs-lisp -*-
|
|
1826 ;;; or -*- mode: postscript; version-control: never -*-
|
|
1827 ;;; or -*- tags-file-name: "/foo/bar/TAGS" -*-
|
|
1828 ;;;
|
|
1829 ;;; The local variable "eval" is not used with this form. For hysterical
|
|
1830 ;;; reasons, the syntax "-*- modename -*-" is allowed as well.
|
|
1831 ;;;
|
|
1832
|
|
1833 (defun hack-local-variables-p (modeline)
|
|
1834 (or (eq enable-local-variables t)
|
|
1835 (and enable-local-variables
|
|
1836 (save-window-excursion
|
|
1837 (condition-case nil
|
|
1838 (switch-to-buffer (current-buffer))
|
|
1839 (error
|
|
1840 ;; If we fail to switch in the selected window,
|
|
1841 ;; it is probably a minibuffer.
|
|
1842 ;; So try another window.
|
|
1843 (condition-case nil
|
|
1844 (switch-to-buffer-other-window (current-buffer))
|
|
1845 (error
|
|
1846 (switch-to-buffer-other-frame (current-buffer))))))
|
|
1847 (or modeline (save-excursion
|
|
1848 (beginning-of-line)
|
|
1849 (set-window-start (selected-window) (point))))
|
|
1850 (y-or-n-p (format
|
|
1851 "Set local variables as specified %s of %s? "
|
|
1852 (if modeline "in -*- line" "at end")
|
|
1853 (if buffer-file-name
|
|
1854 (file-name-nondirectory buffer-file-name)
|
|
1855 (concat "buffer " (buffer-name)))))))))
|
|
1856
|
|
1857 (defun hack-local-variables-last-page (&optional force)
|
|
1858 ;; Set local variables set in the "Local Variables:" block of the last page.
|
|
1859 (save-excursion
|
|
1860 (goto-char (point-max))
|
|
1861 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move)
|
|
1862 (if (let ((case-fold-search t))
|
|
1863 (and (search-forward "Local Variables:" nil t)
|
|
1864 (or force
|
|
1865 (hack-local-variables-p nil))))
|
|
1866 (let ((continue t)
|
444
|
1867 prefix prefixlen suffix start
|
428
|
1868 (enable-local-eval enable-local-eval))
|
|
1869 ;; The prefix is what comes before "local variables:" in its line.
|
|
1870 ;; The suffix is what comes after "local variables:" in its line.
|
|
1871 (skip-chars-forward " \t")
|
|
1872 (or (eolp)
|
|
1873 (setq suffix (buffer-substring (point)
|
|
1874 (progn (end-of-line) (point)))))
|
|
1875 (goto-char (match-beginning 0))
|
|
1876 (or (bolp)
|
|
1877 (setq prefix
|
|
1878 (buffer-substring (point)
|
|
1879 (progn (beginning-of-line) (point)))))
|
|
1880 (if prefix (setq prefixlen (length prefix)
|
|
1881 prefix (regexp-quote prefix)))
|
|
1882 (if suffix (setq suffix (concat (regexp-quote suffix) "$")))
|
|
1883 (while continue
|
|
1884 ;; Look at next local variable spec.
|
|
1885 (if selective-display (re-search-forward "[\n\C-m]")
|
|
1886 (forward-line 1))
|
|
1887 ;; Skip the prefix, if any.
|
|
1888 (if prefix
|
|
1889 (if (looking-at prefix)
|
|
1890 (forward-char prefixlen)
|
|
1891 (error "Local variables entry is missing the prefix")))
|
|
1892 ;; Find the variable name; strip whitespace.
|
|
1893 (skip-chars-forward " \t")
|
444
|
1894 (setq start (point))
|
428
|
1895 (skip-chars-forward "^:\n")
|
|
1896 (if (eolp) (error "Missing colon in local variables entry"))
|
|
1897 (skip-chars-backward " \t")
|
444
|
1898 (let* ((str (buffer-substring start (point)))
|
428
|
1899 (var (read str))
|
|
1900 val)
|
|
1901 ;; Setting variable named "end" means end of list.
|
801
|
1902 (if (equalp str "end")
|
428
|
1903 (setq continue nil)
|
|
1904 ;; Otherwise read the variable value.
|
|
1905 (skip-chars-forward "^:")
|
|
1906 (forward-char 1)
|
|
1907 (setq val (read (current-buffer)))
|
|
1908 (skip-chars-backward "\n")
|
|
1909 (skip-chars-forward " \t")
|
|
1910 (or (if suffix (looking-at suffix) (eolp))
|
|
1911 (error "Local variables entry is terminated incorrectly"))
|
|
1912 ;; Set the variable. "Variables" mode and eval are funny.
|
|
1913 (hack-one-local-variable var val))))))))
|
|
1914
|
|
1915 ;; jwz - New Version 20.1/19.15
|
|
1916 (defun hack-local-variables-prop-line (&optional force)
|
|
1917 ;; Set local variables specified in the -*- line.
|
|
1918 ;; Returns t if mode was set.
|
|
1919 (let ((result nil))
|
|
1920 (save-excursion
|
|
1921 (goto-char (point-min))
|
|
1922 (skip-chars-forward " \t\n\r")
|
|
1923 (let ((end (save-excursion
|
|
1924 ;; If the file begins with "#!"
|
|
1925 ;; (un*x exec interpreter magic), look
|
|
1926 ;; for mode frobs in the first two
|
|
1927 ;; lines. You cannot necessarily
|
|
1928 ;; put them in the first line of
|
|
1929 ;; such a file without screwing up
|
|
1930 ;; the interpreter invocation.
|
|
1931 (end-of-line (and (looking-at "^#!") 2))
|
|
1932 (point))))
|
|
1933 ;; Parse the -*- line into the `result' alist.
|
|
1934 (cond ((not (search-forward "-*-" end t))
|
|
1935 ;; doesn't have one.
|
|
1936 (setq force t))
|
442
|
1937 ((looking-at "[ \t]*\\([^ \t\n\r:;]+?\\)\\([ \t]*-\\*-\\)")
|
428
|
1938 ;; Antiquated form: "-*- ModeName -*-".
|
|
1939 (setq result
|
|
1940 (list (cons 'mode
|
|
1941 (intern (buffer-substring
|
|
1942 (match-beginning 1)
|
|
1943 (match-end 1)))))
|
|
1944 ))
|
|
1945 (t
|
|
1946 ;; Usual form: '-*-' [ <variable> ':' <value> ';' ]* '-*-'
|
|
1947 ;; (last ";" is optional).
|
|
1948 (save-excursion
|
|
1949 (if (search-forward "-*-" end t)
|
|
1950 (setq end (- (point) 3))
|
|
1951 (error "-*- not terminated before end of line")))
|
|
1952 (while (< (point) end)
|
|
1953 (or (looking-at "[ \t]*\\([^ \t\n:]+\\)[ \t]*:[ \t]*")
|
|
1954 (error "malformed -*- line"))
|
|
1955 (goto-char (match-end 0))
|
|
1956 ;; There used to be a downcase here,
|
|
1957 ;; but the manual didn't say so,
|
|
1958 ;; and people want to set var names that aren't all lc.
|
|
1959 (let ((key (intern (buffer-substring
|
|
1960 (match-beginning 1)
|
|
1961 (match-end 1))))
|
|
1962 (val (save-restriction
|
|
1963 (narrow-to-region (point) end)
|
|
1964 (read (current-buffer)))))
|
|
1965 ;; Case sensitivity! Icepicks in my forehead!
|
801
|
1966 (if (equalp (symbol-name key) "mode")
|
428
|
1967 (setq key 'mode))
|
|
1968 (setq result (cons (cons key val) result))
|
|
1969 (skip-chars-forward " \t;")))
|
|
1970 (setq result (nreverse result))))))
|
|
1971
|
|
1972 (let ((set-any-p (or force
|
|
1973 ;; It's OK to force null specifications.
|
|
1974 (null result)
|
|
1975 ;; It's OK to force mode-only specifications.
|
|
1976 (let ((remaining result)
|
|
1977 (mode-specs-only t))
|
|
1978 (while remaining
|
|
1979 (if (eq (car (car remaining)) 'mode)
|
|
1980 (setq remaining (cdr remaining))
|
|
1981 ;; Otherwise, we have a real local.
|
|
1982 (setq mode-specs-only nil
|
|
1983 remaining nil))
|
|
1984 )
|
|
1985 mode-specs-only)
|
|
1986 ;; Otherwise, check.
|
|
1987 (hack-local-variables-p t)))
|
|
1988 (mode-p nil))
|
|
1989 (while result
|
|
1990 (let ((key (car (car result)))
|
|
1991 (val (cdr (car result))))
|
|
1992 (cond ((eq key 'mode)
|
|
1993 (setq mode-p t)
|
|
1994 (let ((mode (intern (concat (downcase (symbol-name val))
|
|
1995 "-mode"))))
|
|
1996 ;; Without this guard, `normal-mode' would potentially run
|
|
1997 ;; the major mode function twice: once via `set-auto-mode'
|
|
1998 ;; and once via `hack-local-variables'.
|
|
1999 (if (not (eq mode major-mode))
|
|
2000 (funcall mode))
|
|
2001 ))
|
|
2002 (set-any-p
|
|
2003 (hack-one-local-variable key val))
|
|
2004 (t
|
|
2005 nil)))
|
|
2006 (setq result (cdr result)))
|
|
2007 mode-p)))
|
|
2008
|
1333
|
2009 ;; BEGIN SYNC WITH FSF 21.2.
|
|
2010
|
428
|
2011 (defconst ignored-local-variables
|
|
2012 (list 'enable-local-eval)
|
|
2013 "Variables to be ignored in a file's local variable spec.")
|
|
2014
|
|
2015 ;; Get confirmation before setting these variables as locals in a file.
|
|
2016 (put 'debugger 'risky-local-variable t)
|
|
2017 (put 'enable-local-eval 'risky-local-variable t)
|
|
2018 (put 'ignored-local-variables 'risky-local-variable t)
|
|
2019 (put 'eval 'risky-local-variable t)
|
|
2020 (put 'file-name-handler-alist 'risky-local-variable t)
|
|
2021 (put 'minor-mode-map-alist 'risky-local-variable t)
|
|
2022 (put 'after-load-alist 'risky-local-variable t)
|
|
2023 (put 'buffer-file-name 'risky-local-variable t)
|
|
2024 (put 'buffer-auto-save-file-name 'risky-local-variable t)
|
|
2025 (put 'buffer-file-truename 'risky-local-variable t)
|
|
2026 (put 'exec-path 'risky-local-variable t)
|
|
2027 (put 'load-path 'risky-local-variable t)
|
|
2028 (put 'exec-directory 'risky-local-variable t)
|
|
2029 (put 'process-environment 'risky-local-variable t)
|
1333
|
2030 (put 'dabbrev-case-fold-search 'risky-local-variable t)
|
|
2031 (put 'dabbrev-case-replace 'risky-local-variable t)
|
428
|
2032 ;; Don't wait for outline.el to be loaded, for the sake of outline-minor-mode.
|
|
2033 (put 'outline-level 'risky-local-variable t)
|
|
2034 (put 'rmail-output-file-alist 'risky-local-variable t)
|
|
2035
|
|
2036 ;; This one is safe because the user gets to check it before it is used.
|
|
2037 (put 'compile-command 'safe-local-variable t)
|
|
2038
|
1333
|
2039 (defun hack-one-local-variable-quotep (exp)
|
|
2040 (and (consp exp) (eq (car exp) 'quote) (consp (cdr exp))))
|
|
2041
|
428
|
2042 (defun hack-one-local-variable (var val)
|
1333
|
2043 "\"Set\" one variable in a local variables spec.
|
|
2044 A few variable names are treated specially."
|
428
|
2045 (cond ((eq var 'mode)
|
|
2046 (funcall (intern (concat (downcase (symbol-name val))
|
|
2047 "-mode"))))
|
1333
|
2048 ((eq var 'coding)
|
|
2049 ;; We have already handled coding: tag in set-auto-coding.
|
|
2050 nil)
|
428
|
2051 ((memq var ignored-local-variables)
|
|
2052 nil)
|
|
2053 ;; "Setting" eval means either eval it or do nothing.
|
|
2054 ;; Likewise for setting hook variables.
|
|
2055 ((or (get var 'risky-local-variable)
|
|
2056 (and
|
1333
|
2057 (string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|-command$\\|-predicate$"
|
428
|
2058 (symbol-name var))
|
|
2059 (not (get var 'safe-local-variable))))
|
1333
|
2060 ;; Permit evalling a put of a harmless property.
|
|
2061 ;; if the args do nothing tricky.
|
|
2062 (if (or (and (eq var 'eval)
|
|
2063 (consp val)
|
|
2064 (eq (car val) 'put)
|
|
2065 (hack-one-local-variable-quotep (nth 1 val))
|
|
2066 (hack-one-local-variable-quotep (nth 2 val))
|
|
2067 ;; Only allow safe values of lisp-indent-hook;
|
|
2068 ;; not functions.
|
|
2069 (or (numberp (nth 3 val))
|
|
2070 (equal (nth 3 val) ''defun))
|
|
2071 (memq (nth 1 (nth 2 val))
|
|
2072 '(lisp-indent-hook)))
|
|
2073 ;; Permit eval if not root and user says ok.
|
|
2074 (and (not (zerop (user-uid)))
|
|
2075 (or (eq enable-local-eval t)
|
|
2076 (and enable-local-eval
|
|
2077 (save-window-excursion
|
|
2078 (switch-to-buffer (current-buffer))
|
|
2079 (save-excursion
|
|
2080 (beginning-of-line)
|
|
2081 (set-window-start (selected-window) (point)))
|
|
2082 (setq enable-local-eval
|
|
2083 (y-or-n-p (format "Process `eval' or hook local variables in %s? "
|
|
2084 (if buffer-file-name
|
|
2085 (concat "file " (file-name-nondirectory buffer-file-name))
|
|
2086 (concat "buffer " (buffer-name)))))))))))
|
428
|
2087 (if (eq var 'eval)
|
|
2088 (save-excursion (eval val))
|
|
2089 (make-local-variable var)
|
|
2090 (set var val))
|
1333
|
2091 (message "Ignoring `eval:' in the local variables list")))
|
428
|
2092 ;; Ordinary variable, really set it.
|
|
2093 (t (make-local-variable var)
|
|
2094 (set var val))))
|
502
|
2095
|
|
2096 (defun find-coding-system-magic-cookie-in-file (file)
|
|
2097 "Look for the coding-system magic cookie in FILE.
|
|
2098 The coding-system magic cookie is either the local variable specification
|
|
2099 -*- ... coding: ... -*- on the first line, or the exact string
|
|
2100 \";;;###coding system: \" somewhere within the first 3000 characters
|
|
2101 of the file. If found, the coding system name (as a string) is returned;
|
|
2102 otherwise nil is returned. Note that it is extremely unlikely that
|
|
2103 either such string would occur coincidentally as the result of encoding
|
|
2104 some characters in a non-ASCII charset, and that the spaces make it
|
|
2105 even less likely since the space character is not a valid octet in any
|
|
2106 ISO 2022 encoding of most non-ASCII charsets."
|
|
2107 (save-excursion
|
|
2108 (with-temp-buffer
|
|
2109 (let ((coding-system-for-read 'raw-text))
|
2434
|
2110 (insert-file-contents file nil 0 3000))
|
502
|
2111 (goto-char (point-min))
|
|
2112 (or (and (looking-at
|
|
2113 "^[^\n]*-\\*-[^\n]*coding: \\([^ \t\n;]+\\)[^\n]*-\\*-")
|
|
2114 (buffer-substring (match-beginning 1) (match-end 1)))
|
|
2115 ;; (save-excursion
|
|
2116 ;; (let (start end)
|
|
2117 ;; (and (re-search-forward "^;+[ \t]*Local Variables:" nil t)
|
|
2118 ;; (setq start (match-end 0))
|
|
2119 ;; (re-search-forward "\n;+[ \t]*End:")
|
|
2120 ;; (setq end (match-beginning 0))
|
|
2121 ;; (save-restriction
|
|
2122 ;; (narrow-to-region start end)
|
|
2123 ;; (goto-char start)
|
|
2124 ;; (re-search-forward "^;;; coding: \\([^\n]+\\)$" nil t)
|
|
2125 ;; )
|
|
2126 ;; (let ((codesys
|
|
2127 ;; (intern (buffer-substring
|
|
2128 ;; (match-beginning 1)(match-end 1)))))
|
|
2129 ;; (if (find-coding-system codesys) codesys))
|
|
2130 ;; )))
|
|
2131 (let ((case-fold-search nil))
|
|
2132 (if (search-forward
|
|
2133 ";;;###coding system: " (+ (point-min) 3000) t)
|
|
2134 (let ((start (point))
|
|
2135 (end (progn
|
|
2136 (skip-chars-forward "^ \t\n\r")
|
|
2137 (point))))
|
|
2138 (if (> end start) (buffer-substring start end))
|
|
2139 )))
|
|
2140 ))))
|
428
|
2141
|
1333
|
2142
|
428
|
2143 (defcustom change-major-mode-with-file-name t
|
|
2144 "*Non-nil means \\[write-file] should set the major mode from the file name.
|
|
2145 However, the mode will not be changed if
|
|
2146 \(1) a local variables list or the `-*-' line specifies a major mode, or
|
|
2147 \(2) the current major mode is a \"special\" mode,
|
|
2148 \ not suitable for ordinary files, or
|
|
2149 \(3) the new file name does not particularly specify any mode."
|
|
2150 :type 'boolean
|
|
2151 :group 'editing-basics)
|
|
2152
|
|
2153 (defun set-visited-file-name (filename &optional no-query along-with-file)
|
|
2154 "Change name of file visited in current buffer to FILENAME.
|
|
2155 The next time the buffer is saved it will go in the newly specified file.
|
|
2156 nil or empty string as argument means make buffer not be visiting any file.
|
|
2157 Remember to delete the initial contents of the minibuffer
|
|
2158 if you wish to pass an empty string as the argument.
|
|
2159
|
|
2160 The optional second argument NO-QUERY, if non-nil, inhibits asking for
|
|
2161 confirmation in the case where another buffer is already visiting FILENAME.
|
|
2162
|
|
2163 The optional third argument ALONG-WITH-FILE, if non-nil, means that
|
|
2164 the old visited file has been renamed to the new name FILENAME."
|
|
2165 (interactive "FSet visited file name: ")
|
|
2166 (if (buffer-base-buffer)
|
|
2167 (error "An indirect buffer cannot visit a file"))
|
|
2168 (let (truename)
|
|
2169 (if filename
|
|
2170 (setq filename
|
|
2171 (if (string-equal filename "")
|
|
2172 nil
|
|
2173 (expand-file-name filename))))
|
|
2174 (if filename
|
|
2175 (progn
|
|
2176 (setq truename (file-truename filename))
|
|
2177 ;; #### Do we need to check if truename is non-nil?
|
|
2178 (if find-file-use-truenames
|
|
2179 (setq filename truename))))
|
|
2180 (let ((buffer (and filename (find-buffer-visiting filename))))
|
|
2181 (and buffer (not (eq buffer (current-buffer)))
|
|
2182 (not no-query)
|
|
2183 (not (y-or-n-p (message "A buffer is visiting %s; proceed? "
|
|
2184 filename)))
|
|
2185 (error "Aborted")))
|
|
2186 (or (equal filename buffer-file-name)
|
|
2187 (progn
|
|
2188 (and filename (lock-buffer filename))
|
|
2189 (unlock-buffer)))
|
|
2190 (setq buffer-file-name filename)
|
|
2191 (if filename ; make buffer name reflect filename.
|
|
2192 (let ((new-name (file-name-nondirectory buffer-file-name)))
|
|
2193 (if (string= new-name "")
|
|
2194 (error "Empty file name"))
|
|
2195 (setq default-directory (file-name-directory buffer-file-name))
|
|
2196 (or (string= new-name (buffer-name))
|
|
2197 (rename-buffer new-name t))))
|
|
2198 (setq buffer-backed-up nil)
|
|
2199 (or along-with-file
|
|
2200 (clear-visited-file-modtime))
|
|
2201 (compute-buffer-file-truename) ; insert-file-contents does this too.
|
|
2202 ; ;; Abbreviate the file names of the buffer.
|
|
2203 ; (if truename
|
|
2204 ; (progn
|
|
2205 ; (setq buffer-file-truename (abbreviate-file-name truename))
|
|
2206 ; (if find-file-visit-truename
|
|
2207 ; (setq buffer-file-name buffer-file-truename))))
|
|
2208 (setq buffer-file-number
|
|
2209 (if filename
|
|
2210 (nthcdr 10 (file-attributes buffer-file-name))
|
|
2211 nil)))
|
|
2212 ;; write-file-hooks is normally used for things like ftp-find-file
|
|
2213 ;; that visit things that are not local files as if they were files.
|
|
2214 ;; Changing to visit an ordinary local file instead should flush the hook.
|
|
2215 (kill-local-variable 'write-file-hooks)
|
|
2216 (kill-local-variable 'after-save-hook)
|
|
2217 (kill-local-variable 'local-write-file-hooks)
|
|
2218 (kill-local-variable 'write-file-data-hooks)
|
|
2219 (kill-local-variable 'revert-buffer-function)
|
|
2220 (kill-local-variable 'backup-inhibited)
|
|
2221 ;; If buffer was read-only because of version control,
|
|
2222 ;; that reason is gone now, so make it writable.
|
502
|
2223 (if-boundp 'vc-mode
|
|
2224 (progn
|
|
2225 (if vc-mode
|
|
2226 (setq buffer-read-only nil))
|
|
2227 (kill-local-variable 'vc-mode)))
|
428
|
2228 ;; Turn off backup files for certain file names.
|
|
2229 ;; Since this is a permanent local, the major mode won't eliminate it.
|
|
2230 (and buffer-file-name
|
|
2231 (not (funcall backup-enable-predicate buffer-file-name))
|
|
2232 (progn
|
|
2233 (make-local-variable 'backup-inhibited)
|
|
2234 (setq backup-inhibited t)))
|
|
2235 (let ((oauto buffer-auto-save-file-name))
|
|
2236 ;; If auto-save was not already on, turn it on if appropriate.
|
|
2237 (if (not buffer-auto-save-file-name)
|
|
2238 (and buffer-file-name auto-save-default
|
|
2239 (auto-save-mode t))
|
|
2240 ;; If auto save is on, start using a new name.
|
|
2241 ;; We deliberately don't rename or delete the old auto save
|
|
2242 ;; for the old visited file name. This is because perhaps
|
|
2243 ;; the user wants to save the new state and then compare with the
|
|
2244 ;; previous state from the auto save file.
|
|
2245 (setq buffer-auto-save-file-name
|
|
2246 (make-auto-save-file-name)))
|
|
2247 ;; Rename the old auto save file if any.
|
|
2248 (and oauto buffer-auto-save-file-name
|
|
2249 (file-exists-p oauto)
|
|
2250 (rename-file oauto buffer-auto-save-file-name t)))
|
|
2251 (if buffer-file-name
|
|
2252 (not along-with-file)
|
|
2253 (set-buffer-modified-p t))
|
|
2254 ;; Update the major mode, if the file name determines it.
|
|
2255 (condition-case nil
|
|
2256 ;; Don't change the mode if it is special.
|
|
2257 (or (not change-major-mode-with-file-name)
|
|
2258 (get major-mode 'mode-class)
|
|
2259 ;; Don't change the mode if the local variable list specifies it.
|
|
2260 (hack-local-variables t)
|
|
2261 (set-auto-mode t))
|
|
2262 (error nil))
|
1333
|
2263 ;; #### ?? not in FSF.
|
428
|
2264 (run-hooks 'after-set-visited-file-name-hooks))
|
|
2265
|
|
2266 (defun write-file (filename &optional confirm codesys)
|
|
2267 "Write current buffer into file FILENAME.
|
1333
|
2268 This makes the buffer visit that file, and marks it as not modified.
|
|
2269
|
|
2270 If you specify just a directory name as FILENAME, that means to use
|
|
2271 the default file name but in that directory. You can also yank
|
|
2272 the default file name into the minibuffer to edit it, using M-n.
|
|
2273
|
|
2274 If the buffer is not already visiting a file, the default file name
|
|
2275 for the output file is the buffer name.
|
|
2276
|
|
2277 If optional second arg CONFIRM is non-nil, this function
|
|
2278 asks for confirmation before overwriting an existing file.
|
|
2279 Interactively, this is always the case.
|
771
|
2280
|
|
2281 Optional third argument specifies the coding system to use when encoding
|
|
2282 the file. Interactively, with a prefix argument, you will be prompted for
|
|
2283 the coding system."
|
428
|
2284 ;; (interactive "FWrite file: ")
|
|
2285 (interactive
|
|
2286 (list (if buffer-file-name
|
|
2287 (read-file-name "Write file: "
|
|
2288 nil nil nil nil)
|
1333
|
2289 (read-file-name "Write file: " default-directory
|
|
2290 (expand-file-name
|
|
2291 (file-name-nondirectory (buffer-name))
|
|
2292 default-directory)
|
|
2293 nil nil))
|
428
|
2294 t
|
771
|
2295 (if current-prefix-arg (read-coding-system "Coding system: "))))
|
428
|
2296 (and (eq (current-buffer) mouse-grabbed-buffer)
|
|
2297 (error "Can't write minibuffer window"))
|
|
2298 (or (null filename) (string-equal filename "")
|
|
2299 (progn
|
|
2300 ;; If arg is just a directory,
|
1333
|
2301 ;; use the default file name, but in that directory.
|
|
2302 (if (file-directory-p filename)
|
428
|
2303 (setq filename (concat (file-name-as-directory filename)
|
1333
|
2304 (file-name-nondirectory
|
|
2305 (or buffer-file-name (buffer-name))))))
|
428
|
2306 (and confirm
|
|
2307 (file-exists-p filename)
|
|
2308 (or (y-or-n-p (format "File `%s' exists; overwrite? " filename))
|
|
2309 (error "Canceled")))
|
1333
|
2310 (set-visited-file-name filename (not confirm))))
|
428
|
2311 (set-buffer-modified-p t)
|
1333
|
2312 ;; Make buffer writable if file is writable.
|
|
2313 (and buffer-file-name
|
|
2314 (file-writable-p buffer-file-name)
|
|
2315 (setq buffer-read-only nil))
|
428
|
2316 (if codesys
|
|
2317 (let ((buffer-file-coding-system (get-coding-system codesys)))
|
|
2318 (save-buffer))
|
|
2319 (save-buffer)))
|
|
2320
|
1333
|
2321
|
428
|
2322 (defun backup-buffer ()
|
|
2323 "Make a backup of the disk file visited by the current buffer, if appropriate.
|
|
2324 This is normally done before saving the buffer the first time.
|
1333
|
2325 If the value is non-nil, it is the result of `file-modes' on the original
|
|
2326 file; this means that the caller, after saving the buffer, should change
|
|
2327 the modes of the new file to agree with the old modes.
|
|
2328
|
|
2329 A backup may be done by renaming or by copying; see documentation of
|
|
2330 variable `make-backup-files'. If it's done by renaming, then the file is
|
|
2331 no longer accessible under its old name."
|
428
|
2332 (if buffer-file-name
|
|
2333 (let ((handler (find-file-name-handler buffer-file-name 'backup-buffer)))
|
|
2334 (if handler
|
|
2335 (funcall handler 'backup-buffer)
|
|
2336 (if (and make-backup-files
|
|
2337 (not backup-inhibited)
|
|
2338 (not buffer-backed-up)
|
|
2339 (file-exists-p buffer-file-name)
|
|
2340 (memq (aref (elt (file-attributes buffer-file-name) 8) 0)
|
|
2341 '(?- ?l)))
|
|
2342 (let ((real-file-name buffer-file-name)
|
|
2343 backup-info backupname targets setmodes)
|
|
2344 ;; If specified name is a symbolic link, chase it to the target.
|
|
2345 ;; Thus we make the backups in the directory where the real file is.
|
|
2346 (setq real-file-name (file-chase-links real-file-name))
|
|
2347 (setq backup-info (find-backup-file-name real-file-name)
|
|
2348 backupname (car backup-info)
|
|
2349 targets (cdr backup-info))
|
|
2350 ;;; (if (file-directory-p buffer-file-name)
|
|
2351 ;;; (error "Cannot save buffer in directory %s" buffer-file-name))
|
|
2352 (if backup-info
|
|
2353 (condition-case ()
|
|
2354 (let ((delete-old-versions
|
|
2355 ;; If have old versions to maybe delete,
|
|
2356 ;; ask the user to confirm now, before doing anything.
|
440
|
2357 ;; But don't actually delete till later.
|
428
|
2358 (and targets
|
|
2359 (or (eq delete-old-versions t)
|
|
2360 (eq delete-old-versions nil))
|
|
2361 (or delete-old-versions
|
|
2362 (y-or-n-p (format "Delete excess backup versions of %s? "
|
|
2363 real-file-name))))))
|
|
2364 ;; Actually write the back up file.
|
|
2365 (condition-case ()
|
|
2366 (if (or file-precious-flag
|
|
2367 ; (file-symlink-p buffer-file-name)
|
|
2368 backup-by-copying
|
|
2369 (and backup-by-copying-when-linked
|
|
2370 (> (file-nlinks real-file-name) 1))
|
1333
|
2371 (and (or backup-by-copying-when-mismatch
|
|
2372 (integerp backup-by-copying-when-privileged-mismatch))
|
428
|
2373 (let ((attr (file-attributes real-file-name)))
|
1333
|
2374 (and (or backup-by-copying-when-mismatch
|
|
2375 (and (integerp (nth 2 attr))
|
|
2376 (integerp backup-by-copying-when-privileged-mismatch)
|
|
2377 (<= (nth 2 attr) backup-by-copying-when-privileged-mismatch)))
|
|
2378 (or (nth 9 attr)
|
|
2379 (not (file-ownership-preserved-p real-file-name)))))))
|
428
|
2380 (condition-case ()
|
|
2381 (copy-file real-file-name backupname t t)
|
|
2382 (file-error
|
|
2383 ;; If copying fails because file BACKUPNAME
|
|
2384 ;; is not writable, delete that file and try again.
|
|
2385 (if (and (file-exists-p backupname)
|
|
2386 (not (file-writable-p backupname)))
|
|
2387 (delete-file backupname))
|
|
2388 (copy-file real-file-name backupname t t)))
|
|
2389 ;; rename-file should delete old backup.
|
|
2390 (rename-file real-file-name backupname t)
|
|
2391 (setq setmodes (file-modes backupname)))
|
|
2392 (file-error
|
|
2393 ;; If trouble writing the backup, write it in ~.
|
464
|
2394 (setq backupname
|
|
2395 (expand-file-name
|
|
2396 (convert-standard-filename "~/%backup%~")))
|
1333
|
2397 (lwarn 'file 'alert "Cannot write backup file; backing up in %s"
|
|
2398 (file-name-nondirectory backupname))
|
428
|
2399 (sleep-for 1)
|
|
2400 (condition-case ()
|
|
2401 (copy-file real-file-name backupname t t)
|
|
2402 (file-error
|
|
2403 ;; If copying fails because file BACKUPNAME
|
|
2404 ;; is not writable, delete that file and try again.
|
|
2405 (if (and (file-exists-p backupname)
|
|
2406 (not (file-writable-p backupname)))
|
|
2407 (delete-file backupname))
|
|
2408 (copy-file real-file-name backupname t t)))))
|
|
2409 (setq buffer-backed-up t)
|
|
2410 ;; Now delete the old versions, if desired.
|
|
2411 (if delete-old-versions
|
|
2412 (while targets
|
|
2413 (ignore-file-errors (delete-file (car targets)))
|
|
2414 (setq targets (cdr targets))))
|
|
2415 setmodes)
|
|
2416 (file-error nil)))))))))
|
|
2417
|
|
2418 (defun file-name-sans-versions (name &optional keep-backup-version)
|
|
2419 "Return FILENAME sans backup versions or strings.
|
|
2420 This is a separate procedure so your site-init or startup file can
|
|
2421 redefine it.
|
|
2422 If the optional argument KEEP-BACKUP-VERSION is non-nil,
|
|
2423 we do not remove backup version numbers, only true file version numbers."
|
|
2424 (let ((handler (find-file-name-handler name 'file-name-sans-versions)))
|
|
2425 (if handler
|
|
2426 (funcall handler 'file-name-sans-versions name keep-backup-version)
|
|
2427 (substring name 0
|
|
2428 (if keep-backup-version
|
|
2429 (length name)
|
|
2430 (or (string-match "\\.~[0-9.]+~\\'" name)
|
|
2431 ;; XEmacs - VC uses extensions like ".~tagname~" or ".~1.1.5.2~"
|
|
2432 (let ((pos (string-match "\\.~\\([^.~ \t]+\\|[0-9.]+\\)~\\'" name)))
|
|
2433 (and pos
|
|
2434 ;; #### - is this filesystem check too paranoid?
|
|
2435 (file-exists-p (substring name 0 pos))
|
|
2436 pos))
|
|
2437 (string-match "~\\'" name)
|
|
2438 (length name)))))))
|
|
2439
|
|
2440 (defun file-ownership-preserved-p (file)
|
|
2441 "Return t if deleting FILE and rewriting it would preserve the owner."
|
|
2442 (let ((handler (find-file-name-handler file 'file-ownership-preserved-p)))
|
|
2443 (if handler
|
|
2444 (funcall handler 'file-ownership-preserved-p file)
|
|
2445 (let ((attributes (file-attributes file)))
|
|
2446 ;; Return t if the file doesn't exist, since it's true that no
|
|
2447 ;; information would be lost by an (attempted) delete and create.
|
|
2448 (or (null attributes)
|
|
2449 (= (nth 2 attributes) (user-uid)))))))
|
|
2450
|
|
2451 (defun file-name-sans-extension (filename)
|
|
2452 "Return FILENAME sans final \"extension\".
|
|
2453 The extension, in a file name, is the part that follows the last `.'."
|
|
2454 (save-match-data
|
|
2455 (let ((file (file-name-sans-versions (file-name-nondirectory filename)))
|
|
2456 directory)
|
|
2457 (if (string-match "\\.[^.]*\\'" file)
|
|
2458 (if (setq directory (file-name-directory filename))
|
|
2459 (expand-file-name (substring file 0 (match-beginning 0))
|
|
2460 directory)
|
|
2461 (substring file 0 (match-beginning 0)))
|
|
2462 filename))))
|
|
2463
|
|
2464 (defun file-name-extension (filename &optional period)
|
|
2465 "Return FILENAME's final \"extension\".
|
|
2466 The extension, in a file name, is the part that follows the last `.'.
|
|
2467 Return nil for extensionless file names such as `foo'.
|
|
2468 Return the empty string for file names such as `foo.'.
|
|
2469
|
|
2470 If PERIOD is non-nil, then the returned value includes the period
|
|
2471 that delimits the extension, and if FILENAME has no extension,
|
|
2472 the value is \"\"."
|
|
2473 (save-match-data
|
|
2474 (let ((file (file-name-sans-versions (file-name-nondirectory filename))))
|
|
2475 (if (string-match "\\.[^.]*\\'" file)
|
|
2476 (substring file (+ (match-beginning 0) (if period 0 1)))
|
|
2477 (if period
|
|
2478 "")))))
|
|
2479
|
1333
|
2480 (defcustom make-backup-file-name-function nil
|
|
2481 "A function to use instead of the default `make-backup-file-name'.
|
|
2482 A value of nil gives the default `make-backup-file-name' behaviour.
|
|
2483
|
|
2484 This could be buffer-local to do something special for specific
|
|
2485 files. If you define it, you may need to change `backup-file-name-p'
|
|
2486 and `file-name-sans-versions' too.
|
|
2487
|
|
2488 See also `backup-directory-alist'."
|
|
2489 :group 'backup
|
|
2490 :type '(choice (const :tag "Default" nil)
|
|
2491 (function :tag "Your function")))
|
|
2492
|
|
2493 (defcustom backup-directory-alist nil
|
|
2494 "Alist of filename patterns and backup directory names.
|
|
2495 Each element looks like (REGEXP . DIRECTORY). Backups of files with
|
|
2496 names matching REGEXP will be made in DIRECTORY. DIRECTORY may be
|
|
2497 relative or absolute. If it is absolute, so that all matching files
|
|
2498 are backed up into the same directory, the file names in this
|
|
2499 directory will be the full name of the file backed up with all
|
|
2500 directory separators changed to `!' to prevent clashes. This will not
|
|
2501 work correctly if your filesystem truncates the resulting name.
|
|
2502
|
|
2503 For the common case of all backups going into one directory, the alist
|
|
2504 should contain a single element pairing \".\" with the appropriate
|
|
2505 directory name.
|
|
2506
|
|
2507 If this variable is nil, or it fails to match a filename, the backup
|
|
2508 is made in the original file's directory.
|
|
2509
|
|
2510 On MS-DOS filesystems without long names this variable is always
|
|
2511 ignored."
|
|
2512 :group 'backup
|
|
2513 :type '(repeat (cons (regexp :tag "Regexp matching filename")
|
|
2514 (directory :tag "Backup directory name"))))
|
|
2515
|
428
|
2516 (defun make-backup-file-name (file)
|
|
2517 "Create the non-numeric backup file name for FILE.
|
1333
|
2518 Normally this will just be the file's name with `~' appended.
|
|
2519 Customization hooks are provided as follows.
|
|
2520
|
|
2521 If the variable `make-backup-file-name-function' is non-nil, its value
|
|
2522 should be a function which will be called with FILE as its argument;
|
|
2523 the resulting name is used.
|
|
2524
|
|
2525 Otherwise a match for FILE is sought in `backup-directory-alist'; see
|
|
2526 the documentation of that variable. If the directory for the backup
|
|
2527 doesn't exist, it is created."
|
|
2528 (if make-backup-file-name-function
|
|
2529 (funcall make-backup-file-name-function file)
|
|
2530 ; (if (and (eq system-type 'ms-dos)
|
|
2531 ; (not (msdos-long-file-names)))
|
|
2532 ; (let ((fn (file-name-nondirectory file)))
|
|
2533 ; (concat (file-name-directory file)
|
|
2534 ; (or (and (string-match "\\`[^.]+\\'" fn)
|
|
2535 ; (concat (match-string 0 fn) ".~"))
|
|
2536 ; (and (string-match "\\`[^.]+\\.\\(..?\\)?" fn)
|
|
2537 ; (concat (match-string 0 fn) "~")))))
|
|
2538 (concat (make-backup-file-name-1 file) "~")))
|
|
2539
|
|
2540 (defun make-backup-file-name-1 (file)
|
|
2541 "Subroutine of `make-backup-file-name' and `find-backup-file-name'."
|
|
2542 (let ((alist backup-directory-alist)
|
|
2543 elt backup-directory dir-sep-string)
|
|
2544 (while alist
|
|
2545 (setq elt (pop alist))
|
|
2546 (if (string-match (car elt) file)
|
|
2547 (setq backup-directory (cdr elt)
|
|
2548 alist nil)))
|
|
2549 (if (null backup-directory)
|
|
2550 file
|
|
2551 (unless (file-exists-p backup-directory)
|
|
2552 (condition-case nil
|
|
2553 (make-directory backup-directory 'parents)
|
|
2554 (file-error file)))
|
|
2555 (if (file-name-absolute-p backup-directory)
|
|
2556 (progn
|
|
2557 (when (memq system-type '(windows-nt ms-dos))
|
|
2558 ;; Normalize DOSish file names: convert all slashes to
|
|
2559 ;; directory-sep-char, downcase the drive letter, if any,
|
|
2560 ;; and replace the leading "x:" with "/drive_x".
|
|
2561 (or (file-name-absolute-p file)
|
|
2562 (setq file (expand-file-name file))) ; make defaults explicit
|
|
2563 ;; Replace any invalid file-name characters (for the
|
|
2564 ;; case of backing up remote files).
|
|
2565 (setq file (expand-file-name (convert-standard-filename file)))
|
|
2566 (setq dir-sep-string (char-to-string directory-sep-char))
|
|
2567 (if (eq (aref file 1) ?:)
|
|
2568 (setq file (concat dir-sep-string
|
|
2569 "drive_"
|
|
2570 (char-to-string (downcase (aref file 0)))
|
|
2571 (if (eq (aref file 2) directory-sep-char)
|
|
2572 ""
|
|
2573 dir-sep-string)
|
|
2574 (substring file 2)))))
|
|
2575 ;; Make the name unique by substituting directory
|
|
2576 ;; separators. It may not really be worth bothering about
|
|
2577 ;; doubling `!'s in the original name...
|
|
2578 (expand-file-name
|
|
2579 (subst-char-in-string
|
|
2580 directory-sep-char ?!
|
|
2581 (replace-regexp-in-string "!" "!!" file))
|
|
2582 backup-directory))
|
|
2583 (expand-file-name (file-name-nondirectory file)
|
|
2584 (file-name-as-directory
|
|
2585 (expand-file-name backup-directory
|
|
2586 (file-name-directory file))))))))
|
428
|
2587
|
|
2588 (defun backup-file-name-p (file)
|
|
2589 "Return non-nil if FILE is a backup file name (numeric or not).
|
|
2590 This is a separate function so you can redefine it for customization.
|
|
2591 You may need to redefine `file-name-sans-versions' as well."
|
440
|
2592 (string-match "~\\'" file))
|
428
|
2593
|
1333
|
2594 (defvar backup-extract-version-start)
|
|
2595
|
428
|
2596 ;; This is used in various files.
|
1333
|
2597 ;; The usage of backup-extract-version-start is not very clean,
|
|
2598 ;; but I can't see a good alternative, so as of now I am leaving it alone.
|
428
|
2599 (defun backup-extract-version (fn)
|
1333
|
2600 "Given the name of a numeric backup file, FN, return the backup number.
|
|
2601 Uses the free variable `backup-extract-version-start', whose value should be
|
428
|
2602 the index in the name where the version number begins."
|
1333
|
2603 (if (and (string-match "[0-9]+~$" fn backup-extract-version-start)
|
|
2604 (= (match-beginning 0) backup-extract-version-start))
|
|
2605 (string-to-int (substring fn backup-extract-version-start -1))
|
428
|
2606 0))
|
|
2607
|
1333
|
2608 ;; [[ FSF 21.2 says:
|
|
2609 ;; I believe there is no need to alter this behavior for VMS;
|
|
2610 ;; since backup files are not made on VMS, it should not get called. ]]
|
428
|
2611 (defun find-backup-file-name (fn)
|
1333
|
2612 "Find a file name for a backup file FN, and suggestions for deletions.
|
428
|
2613 Value is a list whose car is the name for the backup file
|
1333
|
2614 and whose cdr is a list of old versions to consider deleting now.
|
|
2615 If the value is nil, don't make a backup.
|
|
2616 Uses `backup-directory-alist' in the same way as does
|
|
2617 `make-backup-file-name'."
|
428
|
2618 (let ((handler (find-file-name-handler fn 'find-backup-file-name)))
|
|
2619 ;; Run a handler for this function so that ange-ftp can refuse to do it.
|
|
2620 (if handler
|
|
2621 (funcall handler 'find-backup-file-name fn)
|
1333
|
2622 (if (or (eq version-control 'never)
|
|
2623 ;; We don't support numbered backups on plain MS-DOS
|
|
2624 ;; when long file names are unavailable.
|
|
2625 ; (and (eq system-type 'ms-dos)
|
|
2626 ; (not (msdos-long-file-names)))
|
|
2627 )
|
428
|
2628 (list (make-backup-file-name fn))
|
1333
|
2629 (let* ((basic-name (make-backup-file-name-1 fn))
|
|
2630 (base-versions (concat (file-name-nondirectory basic-name)
|
|
2631 ".~"))
|
|
2632 (backup-extract-version-start (length base-versions))
|
428
|
2633 (high-water-mark 0)
|
1333
|
2634 (number-to-delete 0)
|
|
2635 possibilities deserve-versions-p versions)
|
428
|
2636 (condition-case ()
|
|
2637 (setq possibilities (file-name-all-completions
|
|
2638 base-versions
|
1333
|
2639 (file-name-directory basic-name))
|
|
2640 versions (sort (mapcar #'backup-extract-version
|
|
2641 possibilities)
|
|
2642 #'<)
|
|
2643 high-water-mark (apply 'max 0 versions)
|
428
|
2644 deserve-versions-p (or version-control
|
|
2645 (> high-water-mark 0))
|
|
2646 number-to-delete (- (length versions)
|
1333
|
2647 kept-old-versions
|
|
2648 kept-new-versions
|
|
2649 -1))
|
|
2650 (file-error (setq possibilities nil)))
|
428
|
2651 (if (not deserve-versions-p)
|
|
2652 (list (make-backup-file-name fn))
|
1333
|
2653 (cons (format "%s.~%d~" basic-name (1+ high-water-mark))
|
428
|
2654 (if (and (> number-to-delete 0)
|
|
2655 ;; Delete nothing if there is overflow
|
|
2656 ;; in the number of versions to keep.
|
|
2657 (>= (+ kept-new-versions kept-old-versions -1) 0))
|
1333
|
2658 (mapcar (lambda (n)
|
|
2659 (format "%s.~%d~" basic-name n))
|
428
|
2660 (let ((v (nthcdr kept-old-versions versions)))
|
|
2661 (rplacd (nthcdr (1- number-to-delete) v) ())
|
|
2662 v))))))))))
|
|
2663
|
|
2664 (defun file-nlinks (filename)
|
|
2665 "Return number of names file FILENAME has."
|
|
2666 (car (cdr (file-attributes filename))))
|
|
2667
|
|
2668 (defun file-relative-name (filename &optional directory)
|
1333
|
2669 "Convert FILENAME to be relative to DIRECTORY (default: `default-directory').
|
428
|
2670 This function returns a relative file name which is equivalent to FILENAME
|
|
2671 when used with that default directory as the default.
|
442
|
2672 If this is impossible (which can happen on MS Windows when the file name
|
|
2673 and directory use different drive names) then it returns FILENAME."
|
428
|
2674 (save-match-data
|
|
2675 (let ((fname (expand-file-name filename)))
|
|
2676 (setq directory (file-name-as-directory
|
|
2677 (expand-file-name (or directory default-directory))))
|
|
2678 ;; On Microsoft OSes, if FILENAME and DIRECTORY have different
|
|
2679 ;; drive names, they can't be relative, so return the absolute name.
|
440
|
2680 (if (and (eq system-type 'windows-nt)
|
428
|
2681 (not (string-equal (substring fname 0 2)
|
|
2682 (substring directory 0 2))))
|
|
2683 filename
|
|
2684 (let ((ancestor ".")
|
|
2685 (fname-dir (file-name-as-directory fname)))
|
|
2686 (while (and (not (string-match (concat "^" (regexp-quote directory))
|
|
2687 fname-dir))
|
|
2688 (not (string-match (concat "^" (regexp-quote directory)) fname)))
|
|
2689 (setq directory (file-name-directory (substring directory 0 -1))
|
|
2690 ancestor (if (equal ancestor ".")
|
|
2691 ".."
|
|
2692 (concat "../" ancestor))))
|
|
2693 ;; Now ancestor is empty, or .., or ../.., etc.
|
|
2694 (if (string-match (concat "^" (regexp-quote directory)) fname)
|
|
2695 ;; We matched within FNAME's directory part.
|
|
2696 ;; Add the rest of FNAME onto ANCESTOR.
|
|
2697 (let ((rest (substring fname (match-end 0))))
|
|
2698 (if (and (equal ancestor ".")
|
|
2699 (not (equal rest "")))
|
|
2700 ;; But don't bother with ANCESTOR if it would give us `./'.
|
|
2701 rest
|
|
2702 (concat (file-name-as-directory ancestor) rest)))
|
|
2703 ;; We matched FNAME's directory equivalent.
|
|
2704 ancestor))))))
|
|
2705
|
|
2706 (defun save-buffer (&optional args)
|
|
2707 "Save current buffer in visited file if modified. Versions described below.
|
|
2708 By default, makes the previous version into a backup file
|
|
2709 if previously requested or if this is the first save.
|
1333
|
2710 With 1 \\[universal-argument], marks this version
|
428
|
2711 to become a backup when the next save is done.
|
1333
|
2712 With 2 \\[universal-argument]'s,
|
428
|
2713 unconditionally makes the previous version into a backup file.
|
1333
|
2714 With 3 \\[universal-argument]'s, marks this version
|
|
2715 to become a backup when the next save is done,
|
|
2716 and unconditionally makes the previous version into a backup file.
|
|
2717
|
|
2718 With argument of 0, never make the previous version into a backup file.
|
428
|
2719
|
|
2720 If a file's name is FOO, the names of its numbered backup versions are
|
|
2721 FOO.~i~ for various integers i. A non-numbered backup file is called FOO~.
|
|
2722 Numeric backups (rather than FOO~) will be made if value of
|
|
2723 `version-control' is not the atom `never' and either there are already
|
|
2724 numeric versions of the file being backed up, or `version-control' is
|
|
2725 non-nil.
|
|
2726 We don't want excessive versions piling up, so there are variables
|
1333
|
2727 `kept-old-versions', which tells Emacs how many oldest versions to keep,
|
428
|
2728 and `kept-new-versions', which tells how many newest versions to keep.
|
|
2729 Defaults are 2 old versions and 2 new.
|
|
2730 `dired-kept-versions' controls dired's clean-directory (.) command.
|
|
2731 If `delete-old-versions' is nil, system will query user
|
1333
|
2732 before trimming versions. Otherwise it does it silently.
|
|
2733
|
|
2734 If `vc-make-backup-files' is nil, which is the default,
|
|
2735 no backup files are made for files managed by version control.
|
|
2736 (This is because the version control system itself records previous versions.)
|
|
2737
|
|
2738 See the subroutine `basic-save-buffer' for more information."
|
428
|
2739 (interactive "_p")
|
|
2740 (let ((modp (buffer-modified-p))
|
|
2741 (large (> (buffer-size) 50000))
|
|
2742 (make-backup-files (or (and make-backup-files (not (eq args 0)))
|
|
2743 (memq args '(16 64)))))
|
|
2744 (and modp (memq args '(16 64)) (setq buffer-backed-up nil))
|
1333
|
2745 (if (and modp large (buffer-file-name))
|
|
2746 (display-message 'progress (format "Saving file %s..."
|
|
2747 (buffer-file-name))))
|
428
|
2748 (basic-save-buffer)
|
|
2749 (and modp (memq args '(4 64)) (setq buffer-backed-up nil))))
|
|
2750
|
|
2751 (defun delete-auto-save-file-if-necessary (&optional force)
|
|
2752 "Delete auto-save file for current buffer if `delete-auto-save-files' is t.
|
1333
|
2753 Normally delete only if the file was written by this XEmacs since
|
|
2754 the last real save, but optional arg FORCE non-nil means delete anyway."
|
428
|
2755 (and buffer-auto-save-file-name delete-auto-save-files
|
|
2756 (not (string= buffer-file-name buffer-auto-save-file-name))
|
|
2757 (or force (recent-auto-save-p))
|
|
2758 (progn
|
|
2759 (ignore-file-errors (delete-file buffer-auto-save-file-name))
|
|
2760 (set-buffer-auto-saved))))
|
|
2761
|
|
2762 ;; XEmacs change (from Sun)
|
|
2763 ;; used to communicate with continue-save-buffer:
|
|
2764 (defvar continue-save-buffer-hooks-tail nil)
|
|
2765
|
|
2766 ;; Not in FSFmacs
|
|
2767 (defun basic-write-file-data (realname truename)
|
|
2768 ;; call the hooks until the bytes are put
|
|
2769 ;; call write-region as a last resort
|
|
2770 (let ((region-written nil)
|
|
2771 (hooks write-file-data-hooks))
|
|
2772 (while (and hooks (not region-written))
|
|
2773 (setq region-written (funcall (car hooks) realname)
|
|
2774 hooks (cdr hooks)))
|
|
2775 (if (not region-written)
|
|
2776 (write-region (point-min) (point-max) realname nil t truename))))
|
|
2777
|
1333
|
2778 ; (defvar auto-save-hook nil
|
|
2779 ; "Normal hook run just before auto-saving.")
|
|
2780
|
428
|
2781 (put 'after-save-hook 'permanent-local t)
|
|
2782 (defvar after-save-hook nil
|
|
2783 "Normal hook that is run after a buffer is saved to its file.
|
|
2784 These hooks are considered to pertain to the visited file.
|
|
2785 So this list is cleared if you change the visited file name.")
|
|
2786
|
1333
|
2787 (defvar save-buffer-coding-system nil
|
|
2788 "If non-nil, use this coding system for saving the buffer.
|
|
2789 More precisely, use this coding system in place of the
|
|
2790 value of `buffer-file-coding-system', when saving the buffer.
|
|
2791 Calling `write-region' for any purpose other than saving the buffer
|
|
2792 will still use `buffer-file-coding-system'; this variable has no effect
|
|
2793 in such cases.")
|
|
2794
|
|
2795 (make-variable-buffer-local 'save-buffer-coding-system)
|
|
2796 (put 'save-buffer-coding-system 'permanent-local t)
|
|
2797
|
428
|
2798 (defun files-fetch-hook-value (hook)
|
|
2799 (let ((localval (symbol-value hook))
|
|
2800 (globalval (default-value hook)))
|
|
2801 (if (memq t localval)
|
|
2802 (setq localval (append (delq t localval) (delq t globalval))))
|
|
2803 localval))
|
|
2804
|
|
2805 (defun basic-save-buffer ()
|
|
2806 "Save the current buffer in its visited file, if it has been modified.
|
1333
|
2807 The hooks `write-contents-hooks', `local-write-file-hooks' and
|
|
2808 `write-file-hooks' get a chance to do the job of saving; if they do not,
|
2116
|
2809 then the buffer is saved in the visited file in the usual way.
|
1333
|
2810 After saving the buffer, this function runs `after-save-hook'."
|
428
|
2811 (interactive)
|
1333
|
2812 (save-current-buffer
|
428
|
2813 ;; In an indirect buffer, save its base buffer instead.
|
|
2814 (if (buffer-base-buffer)
|
|
2815 (set-buffer (buffer-base-buffer)))
|
|
2816 (if (buffer-modified-p)
|
|
2817 (let ((recent-save (recent-auto-save-p)))
|
|
2818 ;; If buffer has no file name, ask user for one.
|
|
2819 (or buffer-file-name
|
|
2820 (let ((filename
|
|
2821 (expand-file-name
|
|
2822 (read-file-name "File to save in: ") nil)))
|
|
2823 (and (file-exists-p filename)
|
|
2824 (or (y-or-n-p (format "File `%s' exists; overwrite? "
|
|
2825 filename))
|
|
2826 (error "Canceled")))
|
|
2827 (set-visited-file-name filename)))
|
|
2828 (or (verify-visited-file-modtime (current-buffer))
|
|
2829 (not (file-exists-p buffer-file-name))
|
|
2830 (yes-or-no-p
|
|
2831 (format "%s has changed since visited or saved. Save anyway? "
|
|
2832 (file-name-nondirectory buffer-file-name)))
|
|
2833 (error "Save not confirmed"))
|
|
2834 (save-restriction
|
|
2835 (widen)
|
1333
|
2836 (save-excursion
|
|
2837 (and (> (point-max) 1)
|
|
2838 (not find-file-literally)
|
|
2839 (not (eq (char-after (1- (point-max))) ?\n))
|
|
2840 (not (and (eq selective-display t)
|
|
2841 (eq (char-after (1- (point-max))) ?\r)))
|
|
2842 (or (eq require-final-newline t)
|
|
2843 (and require-final-newline
|
|
2844 (y-or-n-p
|
|
2845 (format "Buffer %s does not end in newline. Add one? "
|
|
2846 (buffer-name)))))
|
|
2847 (save-excursion
|
|
2848 (goto-char (point-max))
|
|
2849 (insert ?\n))))
|
|
2850
|
|
2851 ;; Support VC version backups.
|
|
2852 (if-fboundp 'vc-before-save
|
|
2853 (vc-before-save))
|
434
|
2854
|
444
|
2855 ;; Run the write-file-hooks until one returns non-nil.
|
428
|
2856 ;; Bind after-save-hook to nil while running the
|
|
2857 ;; write-file-hooks so that if this function is called
|
|
2858 ;; recursively (from inside a write-file-hook) the
|
|
2859 ;; after-hooks will only get run once (from the
|
|
2860 ;; outermost call).
|
|
2861 ;;
|
|
2862 ;; Ugh, have to duplicate logic of run-hook-with-args-until-success
|
|
2863 (let ((hooks (append (files-fetch-hook-value 'write-contents-hooks)
|
|
2864 (files-fetch-hook-value
|
|
2865 'local-write-file-hooks)
|
|
2866 (files-fetch-hook-value 'write-file-hooks)))
|
|
2867 (after-save-hook nil)
|
|
2868 (local-write-file-hooks nil)
|
|
2869 (write-contents-hooks nil)
|
|
2870 (write-file-hooks nil)
|
|
2871 done)
|
|
2872 (while (and hooks
|
|
2873 (let ((continue-save-buffer-hooks-tail hooks))
|
|
2874 (not (setq done (funcall (car hooks))))))
|
|
2875 (setq hooks (cdr hooks)))
|
|
2876 ;; If a hook returned t, file is already "written".
|
|
2877 ;; Otherwise, write it the usual way now.
|
|
2878 (if (not done)
|
|
2879 (basic-save-buffer-1)))
|
|
2880 ;; XEmacs: next two clauses (buffer-file-number setting and
|
1333
|
2881 ;; set-file-modes) moved into basic-save-buffer-1 for use by
|
|
2882 ;; continue-save-buffer.
|
428
|
2883 )
|
|
2884 ;; If the auto-save file was recent before this command,
|
|
2885 ;; delete it now.
|
|
2886 (delete-auto-save-file-if-necessary recent-save)
|
|
2887 ;; Support VC `implicit' locking.
|
502
|
2888 (if-fboundp 'vc-after-save
|
|
2889 (vc-after-save))
|
428
|
2890 (run-hooks 'after-save-hook))
|
|
2891 (display-message 'no-log "(No changes need to be saved)"))))
|
|
2892
|
|
2893 ;; This does the "real job" of writing a buffer into its visited file
|
|
2894 ;; and making a backup file. This is what is normally done
|
|
2895 ;; but inhibited if one of write-file-hooks returns non-nil.
|
|
2896 ;; It returns a value to store in setmodes.
|
|
2897 (defun basic-save-buffer-1 ()
|
1333
|
2898 (if save-buffer-coding-system
|
|
2899 (let ((coding-system-for-write save-buffer-coding-system))
|
|
2900 (basic-save-buffer-2))
|
|
2901 (basic-save-buffer-2)))
|
|
2902
|
|
2903 (defun basic-save-buffer-2 ()
|
428
|
2904 (let (setmodes tempsetmodes)
|
|
2905 (if (not (file-writable-p buffer-file-name))
|
|
2906 (let ((dir (file-name-directory buffer-file-name)))
|
|
2907 (if (not (file-directory-p dir))
|
1333
|
2908 (if (file-exists-p dir)
|
|
2909 (error "%s is not a directory" dir)
|
|
2910 (error "%s: no such directory" buffer-file-name))
|
428
|
2911 (if (not (file-exists-p buffer-file-name))
|
|
2912 (error "Directory %s write-protected" dir)
|
|
2913 (if (yes-or-no-p
|
|
2914 (format "File %s is write-protected; try to save anyway? "
|
|
2915 (file-name-nondirectory
|
|
2916 buffer-file-name)))
|
|
2917 (setq tempsetmodes t)
|
|
2918 (error
|
|
2919 "Attempt to save to a file which you aren't allowed to write"))))))
|
|
2920 (or buffer-backed-up
|
|
2921 (setq setmodes (backup-buffer)))
|
|
2922 (let ((dir (file-name-directory buffer-file-name)))
|
|
2923 (if (and file-precious-flag
|
|
2924 (file-writable-p dir))
|
|
2925 ;; If file is precious, write temp name, then rename it.
|
|
2926 ;; This requires write access to the containing dir,
|
|
2927 ;; which is why we don't try it if we don't have that access.
|
|
2928 (let ((realname buffer-file-name)
|
|
2929 tempname nogood i succeed
|
|
2930 (old-modtime (visited-file-modtime)))
|
|
2931 (setq i 0)
|
|
2932 (setq nogood t)
|
|
2933 ;; Find the temporary name to write under.
|
|
2934 (while nogood
|
|
2935 (setq tempname (format "%s#tmp#%d" dir i))
|
|
2936 (setq nogood (file-exists-p tempname))
|
|
2937 (setq i (1+ i)))
|
|
2938 (unwind-protect
|
|
2939 (progn (clear-visited-file-modtime)
|
|
2940 (write-region (point-min) (point-max)
|
|
2941 tempname nil realname
|
|
2942 buffer-file-truename)
|
|
2943 (setq succeed t))
|
|
2944 ;; If writing the temp file fails,
|
|
2945 ;; delete the temp file.
|
|
2946 (or succeed
|
|
2947 (progn
|
1333
|
2948 (ignore-file-errors
|
|
2949 (delete-file tempname))
|
428
|
2950 (set-visited-file-modtime old-modtime))))
|
|
2951 ;; Since we have created an entirely new file
|
|
2952 ;; and renamed it, make sure it gets the
|
|
2953 ;; right permission bits set.
|
|
2954 (setq setmodes (file-modes buffer-file-name))
|
|
2955 ;; We succeeded in writing the temp file,
|
|
2956 ;; so rename it.
|
|
2957 (rename-file tempname buffer-file-name t))
|
|
2958 ;; If file not writable, see if we can make it writable
|
|
2959 ;; temporarily while we write it.
|
|
2960 ;; But no need to do so if we have just backed it up
|
|
2961 ;; (setmodes is set) because that says we're superseding.
|
|
2962 (cond ((and tempsetmodes (not setmodes))
|
|
2963 ;; Change the mode back, after writing.
|
|
2964 (setq setmodes (file-modes buffer-file-name))
|
1333
|
2965 (set-file-modes buffer-file-name (logior setmodes 128))))
|
428
|
2966 (basic-write-file-data buffer-file-name buffer-file-truename)))
|
1333
|
2967 ;; #### FSF 21.2. We don't have last-coding-system-used.
|
|
2968 ; ;; Now we have saved the current buffer. Let's make sure
|
|
2969 ; ;; that buffer-file-coding-system is fixed to what
|
|
2970 ; ;; actually used for saving by binding it locally.
|
|
2971 ; (if save-buffer-coding-system
|
|
2972 ; (setq save-buffer-coding-system last-coding-system-used)
|
|
2973 ; (setq buffer-file-coding-system last-coding-system-used))
|
428
|
2974 (setq buffer-file-number
|
|
2975 (if buffer-file-name
|
|
2976 (nth 10 (file-attributes buffer-file-name))
|
|
2977 nil))
|
|
2978 (if setmodes
|
|
2979 (condition-case ()
|
|
2980 (set-file-modes buffer-file-name setmodes)
|
|
2981 (error nil)))))
|
|
2982
|
|
2983 ;; XEmacs change, from Sun
|
|
2984 (defun continue-save-buffer ()
|
|
2985 "Provide a clean way for a write-file-hook to wrap AROUND
|
|
2986 the execution of the remaining hooks and writing to disk.
|
|
2987 Do not call this function except from a functions
|
444
|
2988 on the `write-file-hooks' or `write-contents-hooks' list.
|
428
|
2989 A hook that calls this function must return non-nil,
|
444
|
2990 to signal completion to its caller. `continue-save-buffer'
|
428
|
2991 always returns non-nil."
|
|
2992 (let ((hooks (cdr (or continue-save-buffer-hooks-tail
|
|
2993 (error
|
|
2994 "continue-save-buffer called outside a write-file-hook!"))))
|
|
2995 (done nil))
|
|
2996 ;; Do something like this:
|
|
2997 ;; (let ((write-file-hooks hooks)) (basic-save-buffer))
|
|
2998 ;; First run the rest of the hooks.
|
|
2999 (while (and hooks
|
|
3000 (let ((continue-save-buffer-hooks-tail hooks))
|
|
3001 (not (setq done (funcall (car hooks))))))
|
|
3002 (setq hooks (cdr hooks)))
|
|
3003 ;;
|
|
3004 ;; If a hook returned t, file is already "written".
|
|
3005 (if (not done)
|
|
3006 (basic-save-buffer-1))
|
|
3007 'continue-save-buffer))
|
|
3008
|
|
3009 (defcustom save-some-buffers-query-display-buffer t
|
|
3010 "*Non-nil makes `\\[save-some-buffers]' switch to the buffer offered for saving."
|
|
3011 :type 'boolean
|
|
3012 :group 'editing-basics)
|
|
3013
|
1333
|
3014 (defun save-some-buffers (&optional arg pred)
|
428
|
3015 "Save some modified file-visiting buffers. Asks user about each one.
|
|
3016 Optional argument (the prefix) non-nil means save all with no questions.
|
1333
|
3017 Optional second argument PRED determines which buffers are considered:
|
|
3018 If PRED is nil, all the file-visiting buffers are considered.
|
|
3019 If PRED is t, then certain non-file buffers will also be considered.
|
|
3020 If PRED is a zero-argument function, it indicates for each buffer whether
|
|
3021 to consider it or not when called with that buffer current."
|
428
|
3022 (interactive "P")
|
|
3023 (save-excursion
|
|
3024 ;; `delete-other-windows' can bomb during autoloads generation, so
|
|
3025 ;; guard it well.
|
|
3026 (if (or noninteractive
|
|
3027 (eq (selected-window) (minibuffer-window))
|
|
3028 (not save-some-buffers-query-display-buffer))
|
|
3029 ;; If playing with windows is unsafe or undesired, just do the
|
|
3030 ;; usual drill.
|
1333
|
3031 (save-some-buffers-1 arg pred nil)
|
428
|
3032 ;; Else, protect the windows.
|
|
3033 (when (save-window-excursion
|
1333
|
3034 (save-some-buffers-1 arg pred t))
|
428
|
3035 ;; Force redisplay.
|
|
3036 (sit-for 0)))))
|
|
3037
|
|
3038 ;; XEmacs - do not use queried flag
|
1333
|
3039 (defun save-some-buffers-1 (arg pred switch-buffer)
|
428
|
3040 (let* ((switched nil)
|
612
|
3041 (last-buffer nil)
|
428
|
3042 (files-done
|
|
3043 (map-y-or-n-p
|
|
3044 (lambda (buffer)
|
612
|
3045 (prog1
|
|
3046 (and (buffer-modified-p buffer)
|
|
3047 (not (buffer-base-buffer buffer))
|
|
3048 ;; XEmacs addition:
|
|
3049 (not (symbol-value-in-buffer 'save-buffers-skip buffer))
|
|
3050 (or
|
|
3051 (buffer-file-name buffer)
|
1333
|
3052 (and pred
|
612
|
3053 (progn
|
|
3054 (set-buffer buffer)
|
|
3055 (and buffer-offer-save (> (buffer-size) 0)))))
|
1333
|
3056 (or (not (functionp pred))
|
|
3057 (with-current-buffer buffer (funcall pred)))
|
612
|
3058 (if arg
|
|
3059 t
|
|
3060 ;; #### We should provide a per-buffer means to
|
|
3061 ;; disable the switching. For instance, you might
|
|
3062 ;; want to turn it off for buffers the contents of
|
|
3063 ;; which is meaningless to humans, such as
|
|
3064 ;; `.newsrc.eld'.
|
|
3065 (when (and switch-buffer
|
|
3066 ;; map-y-or-n-p is displaying help
|
|
3067 (not (eq last-buffer buffer)))
|
|
3068 (unless (one-window-p)
|
|
3069 (delete-other-windows))
|
|
3070 (setq switched t)
|
|
3071 ;; #### Consider using `display-buffer' here for 21.1!
|
|
3072 ;;(display-buffer buffer nil (selected-frame)))
|
|
3073 (switch-to-buffer buffer t))
|
|
3074 (if (buffer-file-name buffer)
|
|
3075 (format "Save file %s? "
|
|
3076 (buffer-file-name buffer))
|
|
3077 (format "Save buffer %s? "
|
|
3078 (buffer-name buffer)))))
|
|
3079 (setq last-buffer buffer)))
|
428
|
3080 (lambda (buffer)
|
|
3081 (set-buffer buffer)
|
|
3082 (condition-case ()
|
|
3083 (save-buffer)
|
|
3084 (error nil)))
|
|
3085 (buffer-list)
|
|
3086 '("buffer" "buffers" "save")
|
|
3087 ;;instead of this we just say "yes all", "no all", etc.
|
|
3088 ;;"save all the rest"
|
|
3089 ;;"save only this buffer" "save no more buffers")
|
|
3090 ;; this is rather bogus. --ben
|
|
3091 ;; (it makes the dialog box too big, and you get an error
|
|
3092 ;; "wrong type argument: framep, nil" when you hit q after
|
|
3093 ;; choosing the option from the dialog box)
|
|
3094
|
|
3095 ;; We should fix the dialog box rather than disabling
|
|
3096 ;; this! --hniksic
|
|
3097 (list (list ?\C-r (lambda (buf)
|
|
3098 ;; #### FSF has an EXIT-ACTION argument
|
|
3099 ;; to `view-buffer'.
|
1333
|
3100 (view-buffer buf
|
|
3101 ; (function
|
|
3102 ; (lambda (ignore)
|
|
3103 ; (exit-recursive-edit))))
|
|
3104 )
|
502
|
3105 (with-boundp 'view-exit-action
|
|
3106 (setq view-exit-action
|
|
3107 (lambda (ignore)
|
|
3108 (exit-recursive-edit))))
|
428
|
3109 (recursive-edit)
|
|
3110 ;; Return nil to ask about BUF again.
|
|
3111 nil)
|
442
|
3112 "%_Display Buffer"))))
|
428
|
3113 (abbrevs-done
|
|
3114 (and save-abbrevs abbrevs-changed
|
|
3115 (progn
|
|
3116 (if (or arg
|
1333
|
3117 (eq save-abbrevs 'silently)
|
428
|
3118 (y-or-n-p (format "Save abbrevs in %s? " abbrev-file-name)))
|
|
3119 (write-abbrev-file nil))
|
|
3120 ;; Don't keep bothering user if he says no.
|
|
3121 (setq abbrevs-changed nil)
|
|
3122 t))))
|
|
3123 (or (> files-done 0) abbrevs-done
|
|
3124 (display-message 'no-log "(No files need saving)"))
|
|
3125 switched))
|
|
3126
|
|
3127
|
1333
|
3128
|
428
|
3129 (defun not-modified (&optional arg)
|
|
3130 "Mark current buffer as unmodified, not needing to be saved.
|
|
3131 With prefix arg, mark buffer as modified, so \\[save-buffer] will save.
|
|
3132
|
|
3133 It is not a good idea to use this function in Lisp programs, because it
|
|
3134 prints a message in the minibuffer. Instead, use `set-buffer-modified-p'."
|
|
3135 (interactive "_P")
|
|
3136 (if arg ;; rewritten for I18N3 snarfing
|
|
3137 (display-message 'command "Modification-flag set")
|
|
3138 (display-message 'command "Modification-flag cleared"))
|
|
3139 (set-buffer-modified-p arg))
|
|
3140
|
|
3141 (defun toggle-read-only (&optional arg)
|
1333
|
3142 "Change whether this buffer is visiting its file read-only.
|
|
3143 With arg, set read-only iff arg is positive.
|
|
3144 If visiting file read-only and `view-read-only' is non-nil, enter view mode."
|
|
3145 (interactive "P")
|
|
3146 (cond
|
|
3147 ((and arg (if (> (prefix-numeric-value arg) 0) buffer-read-only
|
|
3148 (not buffer-read-only))) ; If buffer-read-only is set correctly,
|
|
3149 nil) ; do nothing.
|
|
3150 ;; Toggle.
|
|
3151 ((and buffer-read-only view-minor-mode)
|
|
3152 ;(View-exit-and-edit)
|
|
3153 (view-mode)
|
|
3154 (make-local-variable 'view-read-only)
|
|
3155 (setq view-read-only t)) ; Must leave view mode.
|
|
3156 ((and (not buffer-read-only) view-read-only
|
|
3157 (not (eq (get major-mode 'mode-class) 'special)))
|
|
3158 ;(view-mode-enter)
|
|
3159 (view-mode))
|
|
3160 (t (setq buffer-read-only (not buffer-read-only))
|
|
3161 (force-mode-line-update))))
|
428
|
3162
|
|
3163 (defun insert-file (filename &optional codesys)
|
|
3164 "Insert contents of file FILENAME into buffer after point.
|
|
3165 Set mark after the inserted text.
|
|
3166
|
771
|
3167 Optional second argument specifies the coding system to use when decoding
|
|
3168 the file. Interactively, with a prefix argument, you will be prompted for
|
|
3169 the coding system.
|
428
|
3170
|
771
|
3171 This function is meant for the user to run interactively. Don't call it
|
|
3172 from programs! Use `insert-file-contents' instead. \(Its calling sequence
|
|
3173 is different; see its documentation)."
|
428
|
3174 (interactive "*fInsert file: \nZCoding system: ")
|
|
3175 (if (file-directory-p filename)
|
|
3176 (signal 'file-error (list "Opening input file" "file is a directory"
|
|
3177 filename)))
|
|
3178 (let ((tem
|
|
3179 (if codesys
|
|
3180 (let ((coding-system-for-read
|
|
3181 (get-coding-system codesys)))
|
|
3182 (insert-file-contents filename))
|
|
3183 (insert-file-contents filename))))
|
|
3184 (push-mark (+ (point) (car (cdr tem))))))
|
|
3185
|
|
3186 (defun append-to-file (start end filename &optional codesys)
|
|
3187 "Append the contents of the region to the end of file FILENAME.
|
771
|
3188 When called from a function, expects three arguments, START, END and
|
|
3189 FILENAME. START and END are buffer positions saying what text to write.
|
|
3190 Optional fourth argument specifies the coding system to use when encoding
|
|
3191 the file. Interactively, with a prefix argument, you will be prompted for
|
|
3192 the coding system."
|
428
|
3193 (interactive "r\nFAppend to file: \nZCoding system: ")
|
|
3194 (if codesys
|
|
3195 (let ((buffer-file-coding-system (get-coding-system codesys)))
|
|
3196 (write-region start end filename t))
|
|
3197 (write-region start end filename t)))
|
|
3198
|
|
3199 (defun file-newest-backup (filename)
|
|
3200 "Return most recent backup file for FILENAME or nil if no backups exist."
|
1333
|
3201 ;; `make-backup-file-name' will get us the right directory for
|
|
3202 ;; ordinary or numeric backups. It might create a directory for
|
|
3203 ;; backups as a side-effect, according to `backup-directory-alist'.
|
|
3204 (let* ((filename (file-name-sans-versions
|
|
3205 (make-backup-file-name filename)))
|
428
|
3206 (file (file-name-nondirectory filename))
|
|
3207 (dir (file-name-directory filename))
|
|
3208 (comp (file-name-all-completions file dir))
|
1333
|
3209 (newest nil)
|
|
3210 tem)
|
428
|
3211 (while comp
|
1333
|
3212 (setq tem (pop comp))
|
|
3213 (cond ((and (backup-file-name-p tem)
|
|
3214 (string= (file-name-sans-versions tem) file))
|
|
3215 (setq tem (concat dir tem))
|
|
3216 (if (or (null newest)
|
|
3217 (file-newer-than-file-p tem newest))
|
|
3218 (setq newest tem)))))
|
428
|
3219 newest))
|
|
3220
|
|
3221 (defun rename-uniquely ()
|
|
3222 "Rename current buffer to a similar name not already taken.
|
|
3223 This function is useful for creating multiple shell process buffers
|
|
3224 or multiple mail buffers, etc."
|
|
3225 (interactive)
|
|
3226 (save-match-data
|
1333
|
3227 (let ((base-name (buffer-name)))
|
|
3228 (and (string-match "<[0-9]+>\\'" base-name)
|
|
3229 (not (and buffer-file-name
|
|
3230 (string= base-name
|
|
3231 (file-name-nondirectory buffer-file-name))))
|
|
3232 ;; If the existing buffer name has a <NNN>,
|
|
3233 ;; which isn't part of the file name (if any),
|
|
3234 ;; then get rid of that.
|
|
3235 (setq base-name (substring base-name 0 (match-beginning 0))))
|
|
3236 (rename-buffer (generate-new-buffer-name base-name))
|
|
3237 (force-mode-line-update))))
|
428
|
3238
|
|
3239 (defun make-directory-path (path)
|
|
3240 "Create all the directories along path that don't exist yet."
|
|
3241 (interactive "Fdirectory path to create: ")
|
|
3242 (make-directory path t))
|
|
3243
|
|
3244 (defun make-directory (dir &optional parents)
|
|
3245 "Create the directory DIR and any nonexistent parent dirs.
|
|
3246 Interactively, the default choice of directory to create
|
|
3247 is the current default directory for file names.
|
|
3248 That is useful when you have visited a file in a nonexistent directory.
|
|
3249
|
|
3250 Noninteractively, the second (optional) argument PARENTS says whether
|
|
3251 to create parent directories if they don't exist."
|
|
3252 (interactive (list (let ((current-prefix-arg current-prefix-arg))
|
|
3253 (read-directory-name "Create directory: "))
|
|
3254 current-prefix-arg))
|
|
3255 (let ((handler (find-file-name-handler dir 'make-directory)))
|
|
3256 (if handler
|
|
3257 (funcall handler 'make-directory dir parents)
|
|
3258 (if (not parents)
|
|
3259 (make-directory-internal dir)
|
|
3260 (let ((dir (directory-file-name (expand-file-name dir)))
|
|
3261 create-list)
|
|
3262 (while (not (file-exists-p dir))
|
|
3263 (setq create-list (cons dir create-list)
|
|
3264 dir (directory-file-name (file-name-directory dir))))
|
|
3265 (while create-list
|
|
3266 (make-directory-internal (car create-list))
|
|
3267 (setq create-list (cdr create-list))))))))
|
|
3268
|
|
3269 (put 'revert-buffer-function 'permanent-local t)
|
|
3270 (defvar revert-buffer-function nil
|
|
3271 "Function to use to revert this buffer, or nil to do the default.
|
|
3272 The function receives two arguments IGNORE-AUTO and NOCONFIRM,
|
|
3273 which are the arguments that `revert-buffer' received.")
|
|
3274
|
|
3275 (put 'revert-buffer-insert-file-contents-function 'permanent-local t)
|
|
3276 (defvar revert-buffer-insert-file-contents-function nil
|
|
3277 "Function to use to insert contents when reverting this buffer.
|
|
3278 Gets two args, first the nominal file name to use,
|
849
|
3279 and second, t if reading the auto-save file.
|
|
3280 If the current buffer contents are to be discarded, the function must do
|
1333
|
3281 so itself.
|
|
3282
|
|
3283 The function you specify is responsible for updating (or preserving) point.")
|
428
|
3284
|
|
3285 (defvar before-revert-hook nil
|
|
3286 "Normal hook for `revert-buffer' to run before reverting.
|
|
3287 If `revert-buffer-function' is used to override the normal revert
|
|
3288 mechanism, this hook is not used.")
|
|
3289
|
|
3290 (defvar after-revert-hook nil
|
|
3291 "Normal hook for `revert-buffer' to run after reverting.
|
|
3292 Note that the hook value that it runs is the value that was in effect
|
|
3293 before reverting; that makes a difference if you have buffer-local
|
|
3294 hook functions.
|
|
3295
|
|
3296 If `revert-buffer-function' is used to override the normal revert
|
|
3297 mechanism, this hook is not used.")
|
|
3298
|
|
3299 (defvar revert-buffer-internal-hook nil
|
|
3300 "Don't use this.")
|
|
3301
|
1333
|
3302 ;; END SYNC WITH FSF 21.2.
|
|
3303
|
428
|
3304 (defun revert-buffer (&optional ignore-auto noconfirm preserve-modes)
|
|
3305 "Replace the buffer text with the text of the visited file on disk.
|
|
3306 This undoes all changes since the file was visited or saved.
|
|
3307 With a prefix argument, offer to revert from latest auto-save file, if
|
|
3308 that is more recent than the visited file.
|
|
3309
|
849
|
3310 This command also refreshes certain special buffers that contain text
|
|
3311 which doesn't come from a file, but reflects some other data base
|
|
3312 instead: for example, Dired buffers and buffer-list buffers. This is
|
|
3313 implemented by having the modes set `revert-buffer-function'.
|
428
|
3314
|
|
3315 When called from Lisp, the first argument is IGNORE-AUTO; only offer
|
|
3316 to revert from the auto-save file when this is nil. Note that the
|
|
3317 sense of this argument is the reverse of the prefix argument, for the
|
|
3318 sake of backward compatibility. IGNORE-AUTO is optional, defaulting
|
|
3319 to nil.
|
|
3320
|
|
3321 Optional second argument NOCONFIRM means don't ask for confirmation at
|
|
3322 all.
|
|
3323
|
|
3324 Optional third argument PRESERVE-MODES non-nil means don't alter
|
849
|
3325 the buffer's modes. Otherwise, reinitialize them using `normal-mode'.
|
428
|
3326
|
|
3327 If the value of `revert-buffer-function' is non-nil, it is called to
|
|
3328 do all the work for this command. Otherwise, the hooks
|
|
3329 `before-revert-hook' and `after-revert-hook' are run at the beginning
|
|
3330 and the end, and if `revert-buffer-insert-file-contents-function' is
|
819
|
3331 non-nil, it is called instead of rereading visited file contents.
|
|
3332
|
849
|
3333 If the buffer-modified flag is nil, and we are not reverting from an
|
|
3334 auto-save file, then compare the contents of the buffer and the file.
|
|
3335 Revert only if they differ."
|
428
|
3336
|
|
3337 ;; I admit it's odd to reverse the sense of the prefix argument, but
|
|
3338 ;; there is a lot of code out there which assumes that the first
|
|
3339 ;; argument should be t to avoid consulting the auto-save file, and
|
|
3340 ;; there's no straightforward way to encourage authors to notice a
|
|
3341 ;; reversal of the argument sense. So I'm just changing the user
|
|
3342 ;; interface, but leaving the programmatic interface the same.
|
|
3343 (interactive (list (not current-prefix-arg)))
|
|
3344 (if revert-buffer-function
|
|
3345 (funcall revert-buffer-function ignore-auto noconfirm)
|
|
3346 (let* ((opoint (point))
|
819
|
3347 (newbuf nil)
|
988
|
3348 (found nil)
|
819
|
3349 (delay-prompt nil)
|
428
|
3350 (auto-save-p (and (not ignore-auto)
|
|
3351 (recent-auto-save-p)
|
|
3352 buffer-auto-save-file-name
|
|
3353 (file-readable-p buffer-auto-save-file-name)
|
|
3354 (y-or-n-p
|
|
3355 "Buffer has been auto-saved recently. Revert from auto-save file? ")))
|
|
3356 (file-name (if auto-save-p
|
|
3357 buffer-auto-save-file-name
|
|
3358 buffer-file-name)))
|
|
3359 (cond ((null file-name)
|
|
3360 (error "Buffer does not seem to be associated with any file"))
|
|
3361 ((or noconfirm
|
|
3362 (and (not (buffer-modified-p))
|
988
|
3363 (dolist (rx revert-without-query found)
|
|
3364 (when (string-match rx file-name)
|
|
3365 (setq found t))))
|
819
|
3366 ;; If we might perform an optimized revert then we
|
|
3367 ;; want to delay prompting in case we don't need to
|
|
3368 ;; do it at all
|
|
3369 (and (not auto-save-p)
|
|
3370 (not (buffer-modified-p))
|
|
3371 (setq delay-prompt t))
|
428
|
3372 (yes-or-no-p (format "Revert buffer from file %s? "
|
|
3373 file-name)))
|
|
3374 (run-hooks 'before-revert-hook)
|
819
|
3375 ;; Only perform our optimized revert if nothing obvious
|
|
3376 ;; has changed.
|
|
3377 (cond ((or auto-save-p
|
|
3378 (buffer-modified-p)
|
|
3379 (and (setq newbuf (revert-buffer-internal
|
|
3380 file-name))
|
988
|
3381 (or noconfirm found
|
838
|
3382 (and delay-prompt
|
|
3383 (yes-or-no-p
|
|
3384 (format "Revert buffer from file %s? "
|
|
3385 file-name))))))
|
819
|
3386 ;; If file was backed up but has changed since,
|
|
3387 ;; we should make another backup.
|
|
3388 (and (not auto-save-p)
|
|
3389 (not (verify-visited-file-modtime (current-buffer)))
|
|
3390 (setq buffer-backed-up nil))
|
|
3391 ;; Get rid of all undo records for this buffer.
|
|
3392 (or (eq buffer-undo-list t)
|
|
3393 (setq buffer-undo-list nil))
|
|
3394 ;; Effectively copy the after-revert-hook status,
|
|
3395 ;; since after-find-file will clobber it.
|
|
3396 (let ((global-hook (default-value 'after-revert-hook))
|
|
3397 (local-hook-p (local-variable-p 'after-revert-hook
|
|
3398 (current-buffer)))
|
|
3399 (local-hook (and (local-variable-p 'after-revert-hook
|
|
3400 (current-buffer))
|
|
3401 after-revert-hook)))
|
|
3402 (let (buffer-read-only
|
|
3403 ;; Don't make undo records for the reversion.
|
|
3404 (buffer-undo-list t))
|
|
3405 (if revert-buffer-insert-file-contents-function
|
|
3406 (funcall revert-buffer-insert-file-contents-function
|
|
3407 file-name auto-save-p)
|
|
3408 (if (not (file-exists-p file-name))
|
|
3409 (error "File %s no longer exists!" file-name))
|
|
3410 ;; Bind buffer-file-name to nil
|
|
3411 ;; so that we don't try to lock the file.
|
|
3412 (let ((buffer-file-name nil))
|
|
3413 (or auto-save-p
|
|
3414 (unlock-buffer)))
|
|
3415 (widen)
|
|
3416 ;; When reading in an autosave, it's encoded using
|
|
3417 ;; `escape-quoted', so we need to use it. (It is always
|
|
3418 ;; safe to specify `escape-quoted':
|
|
3419 ;;
|
|
3420 ;; 1. If file-coding but no Mule, `escape-quoted' is
|
|
3421 ;; aliased to `binary'.
|
|
3422 ;; 2. If no file-coding, all coding systems devolve into
|
|
3423 ;; `binary'.
|
|
3424 ;; 3. ASCII and ISO8859-1 are encoded the same in both
|
|
3425 ;; `binary' and `escape-quoted', so they will be
|
|
3426 ;; compatible for the most part.)
|
|
3427 ;;
|
|
3428 ;; Otherwise, use coding-system-for-read if explicitly
|
|
3429 ;; given (e.g. the "Revert Buffer with Specified
|
|
3430 ;; Encoding" menu entries), or use the coding system
|
|
3431 ;; that the file was loaded as.
|
|
3432 (let* ((coding-system-for-read
|
|
3433 (if auto-save-p 'escape-quoted
|
|
3434 (or coding-system-for-read
|
|
3435 buffer-file-coding-system-when-loaded)))
|
|
3436 ;; If the bfcs wasn't changed from its original
|
|
3437 ;; value (other than possible EOL change), then we
|
|
3438 ;; should update it for the new coding system.
|
|
3439 (should-update-bfcs
|
|
3440 (eq (coding-system-base
|
|
3441 buffer-file-coding-system-when-loaded)
|
|
3442 (coding-system-base
|
|
3443 buffer-file-coding-system)))
|
|
3444 (old-bfcs buffer-file-coding-system)
|
|
3445 ;; But if the EOL was changed, match it in the new
|
|
3446 ;; value of bfcs.
|
|
3447 (adjust-eol
|
|
3448 (and should-update-bfcs
|
|
3449 (not
|
|
3450 (eq (get-coding-system
|
|
3451 buffer-file-coding-system-when-loaded)
|
|
3452 (get-coding-system
|
|
3453 buffer-file-coding-system))))))
|
|
3454 (insert-file-contents file-name (not auto-save-p)
|
|
3455 nil nil t)
|
|
3456 (when should-update-bfcs
|
|
3457 (setq buffer-file-coding-system old-bfcs)
|
|
3458 (set-buffer-file-coding-system
|
|
3459 (if adjust-eol
|
|
3460 (coding-system-base
|
|
3461 buffer-file-coding-system-when-loaded)
|
771
|
3462 buffer-file-coding-system-when-loaded)
|
819
|
3463 (not adjust-eol))))))
|
|
3464 (goto-char (min opoint (point-max)))
|
|
3465 ;; Recompute the truename in case changes in symlinks
|
|
3466 ;; have changed the truename.
|
|
3467 ;;XEmacs: already done by insert-file-contents
|
|
3468 ;;(setq buffer-file-truename
|
|
3469 ;;(abbreviate-file-name (file-truename buffer-file-name)))
|
|
3470 (after-find-file nil nil t t preserve-modes)
|
|
3471 ;; Run after-revert-hook as it was before we reverted.
|
|
3472 (setq-default revert-buffer-internal-hook global-hook)
|
|
3473 (if local-hook-p
|
|
3474 (progn
|
|
3475 (make-local-variable 'revert-buffer-internal-hook)
|
|
3476 (setq revert-buffer-internal-hook local-hook))
|
|
3477 (kill-local-variable 'revert-buffer-internal-hook))
|
|
3478 (run-hooks 'revert-buffer-internal-hook)))
|
|
3479 ((null newbuf)
|
|
3480 ;; The resultant buffer is identical, alter
|
|
3481 ;; modtime, update mods and exit
|
|
3482 (set-visited-file-modtime)
|
2030
|
3483 (after-find-file nil nil t t t)
|
|
3484 ;; We preserved modes above so fixup the local
|
|
3485 ;; variables manually
|
|
3486 (condition-case err
|
|
3487 (hack-local-variables)
|
|
3488 (error (lwarn 'local-variables 'warning
|
|
3489 "File local-variables error: %s"
|
|
3490 (error-message-string err)))))
|
819
|
3491 (t t))
|
428
|
3492 t)))))
|
|
3493
|
2030
|
3494 ;; #### wouldn't something like `revert-buffer-compare-with-file' be a
|
|
3495 ;; better name?
|
|
3496 ;; #### why is the argument optional?
|
819
|
3497 (defun revert-buffer-internal (&optional file-name)
|
849
|
3498 "Read contents of FILE-NAME into a buffer, and compare to current buffer.
|
|
3499 Return nil if identical, and the new buffer if different."
|
|
3500
|
819
|
3501 (let* ((newbuf (get-buffer-create " *revert*"))
|
|
3502 bmin bmax)
|
|
3503 (save-excursion
|
|
3504 (set-buffer newbuf)
|
826
|
3505 (with-obsolete-variable '(before-change-function after-change-function)
|
|
3506 (let (buffer-read-only
|
|
3507 (buffer-undo-list t)
|
|
3508 after-change-function
|
|
3509 after-change-functions
|
|
3510 before-change-function
|
|
3511 before-change-functions)
|
|
3512 (if revert-buffer-insert-file-contents-function
|
|
3513 (funcall revert-buffer-insert-file-contents-function
|
|
3514 file-name nil)
|
|
3515 (if (not (file-exists-p file-name))
|
|
3516 (error "File %s no longer exists!" file-name))
|
|
3517 (widen)
|
863
|
3518 (insert-file-contents file-name nil nil nil t)
|
826
|
3519 (setq bmin (point-min)
|
|
3520 bmax (point-max))))))
|
819
|
3521 (if (not (and (eq bmin (point-min))
|
|
3522 (eq bmax (point-max))
|
|
3523 (eq (compare-buffer-substrings
|
|
3524 newbuf bmin bmax (current-buffer) bmin bmax) 0)))
|
|
3525 newbuf
|
863
|
3526 (and (kill-buffer newbuf) nil))))
|
819
|
3527
|
1333
|
3528 ;; BEGIN SYNC WITH FSF 21.2.
|
|
3529
|
844
|
3530 (defvar recover-file-diff-program "diff"
|
|
3531 "Absolute or relative name of the `diff' program used by `recover-file'.")
|
|
3532 (defvar recover-file-diff-arguments '("-c")
|
|
3533 "List of arguments (switches) to pass to `diff' by `recover-file'.")
|
|
3534
|
428
|
3535 (defun recover-file (file)
|
|
3536 "Visit file FILE, but get contents from its last auto-save file."
|
|
3537 ;; Actually putting the file name in the minibuffer should be used
|
|
3538 ;; only rarely.
|
|
3539 ;; Not just because users often use the default.
|
|
3540 (interactive "FRecover file: ")
|
|
3541 (setq file (expand-file-name file))
|
|
3542 (let ((handler (or (find-file-name-handler file 'recover-file)
|
|
3543 (find-file-name-handler
|
|
3544 (let ((buffer-file-name file))
|
|
3545 (make-auto-save-file-name))
|
|
3546 'recover-file))))
|
|
3547 (if handler
|
|
3548 (funcall handler 'recover-file file)
|
464
|
3549 (if (auto-save-file-name-p (file-name-nondirectory file))
|
428
|
3550 (error "%s is an auto-save file" file))
|
|
3551 (let ((file-name (let ((buffer-file-name file))
|
|
3552 (make-auto-save-file-name))))
|
|
3553 (cond ((if (file-exists-p file)
|
|
3554 (not (file-newer-than-file-p file-name file))
|
|
3555 (not (file-exists-p file-name)))
|
|
3556 (error "Auto-save file %s not current" file-name))
|
844
|
3557 (t
|
|
3558 (save-window-excursion
|
464
|
3559 ;; XEmacs change: use insert-directory instead of
|
844
|
3560 ;; calling ls directly. Add option for diff.
|
464
|
3561 (with-output-to-temp-buffer "*Directory*"
|
|
3562 (buffer-disable-undo standard-output)
|
|
3563 (save-excursion
|
1346
|
3564 (let ((switches
|
|
3565 (declare-boundp dired-listing-switches)))
|
1333
|
3566 (if (file-symlink-p file)
|
|
3567 (setq switches (concat switches "L")))
|
|
3568 (set-buffer standard-output)
|
|
3569 ;; XEmacs had the following line, not in FSF.
|
|
3570 (setq default-directory (file-name-directory file))
|
|
3571 ;; Use insert-directory-safely, not insert-directory,
|
|
3572 ;; because these files might not exist. In particular,
|
|
3573 ;; FILE might not exist if the auto-save file was for
|
|
3574 ;; a buffer that didn't visit a file, such as "*mail*".
|
|
3575 ;; The code in v20.x called `ls' directly, so we need
|
|
3576 ;; to emulate what `ls' did in that case.
|
|
3577 (insert-directory-safely file switches)
|
|
3578 (insert-directory-safely file-name switches))))
|
844
|
3579 (block nil
|
|
3580 (while t
|
|
3581 (case (get-user-response
|
|
3582 nil
|
|
3583 ;; Formerly included file name. Useless now that
|
|
3584 ;; we display an ls of the files, and potentially
|
|
3585 ;; fills up the minibuffer, esp. with autosaves
|
|
3586 ;; all in one directory.
|
|
3587 "Recover auto save file? "
|
|
3588 '(("yes" "%_Yes" yes)
|
|
3589 ("no" "%_No" no)
|
|
3590 ("diff" "%_Diff" diff)))
|
|
3591 (no (error "Recover-file cancelled."))
|
|
3592 (yes
|
|
3593 (switch-to-buffer (find-file-noselect file t))
|
1333
|
3594 (let ((buffer-read-only nil)
|
|
3595 ;; Keep the current buffer-file-coding-system.
|
|
3596 (coding-system buffer-file-coding-system)
|
|
3597 ;; Auto-saved file shoule be read without any code conversion.
|
|
3598 (coding-system-for-read 'escape-quoted))
|
844
|
3599 (erase-buffer)
|
1333
|
3600 (insert-file-contents file-name nil)
|
|
3601 (set-buffer-file-coding-system coding-system))
|
844
|
3602 (after-find-file nil nil t)
|
|
3603 (return nil))
|
|
3604 (diff
|
|
3605 ;; rather than just diff the two files (which would
|
|
3606 ;; be easy), we have to deal with the fact that
|
|
3607 ;; they may be in different formats, since
|
|
3608 ;; auto-saves are always in escape-quoted. so, we
|
|
3609 ;; read the file into a buffer (#### should we look
|
|
3610 ;; at or use a file if it's already in a buffer?
|
|
3611 ;; maybe we would find hints as to the encoding of
|
|
3612 ;; the file?), then we save the resulting buffer in
|
|
3613 ;; escape-quoted, do the diff (between two files
|
|
3614 ;; both in escape-quoted) and read in the results
|
|
3615 ;; using coding system escape-quoted. That way, we
|
|
3616 ;; should get what's correct most of the time.
|
|
3617 (let ((buffer (generate-new-buffer "*recover*"))
|
|
3618 (temp
|
|
3619 (make-temp-name
|
|
3620 (concat (file-name-as-directory
|
|
3621 (temp-directory))
|
|
3622 (file-name-nondirectory file) "-"))))
|
|
3623 (unwind-protect
|
|
3624 (progn
|
|
3625 (save-current-buffer
|
|
3626 (set-buffer buffer)
|
|
3627 (insert-file-contents file)
|
|
3628 (let ((coding-system-for-write
|
|
3629 'escape-quoted))
|
|
3630 (write-region (point-min) (point-max)
|
|
3631 temp nil 'silent)))
|
|
3632 (with-output-to-temp-buffer "*Autosave Diff*"
|
|
3633 (buffer-disable-undo standard-output)
|
|
3634 (let ((coding-system-for-read
|
|
3635 'escape-quoted))
|
|
3636 (condition-case ferr
|
|
3637 (apply #'call-process
|
|
3638 recover-file-diff-program
|
|
3639 nil standard-output nil
|
|
3640 (append
|
|
3641 recover-file-diff-arguments
|
|
3642 (list temp file-name)))
|
|
3643 (io-error
|
|
3644 (save-excursion
|
1346
|
3645 (let ((switches
|
|
3646 (declare-boundp
|
|
3647 dired-listing-switches)))
|
1333
|
3648 (if (file-symlink-p file)
|
|
3649 (setq switches (concat switches "L")))
|
|
3650 (set-buffer standard-output)
|
|
3651 ;; XEmacs had the following line, not in FSF.
|
|
3652 (setq default-directory (file-name-directory file))
|
1346
|
3653 ;; Use insert-directory-safely,
|
|
3654 ;; not insert-directory, because
|
|
3655 ;; these files might not exist.
|
|
3656 ;; In particular, FILE might not
|
|
3657 ;; exist if the auto-save file
|
|
3658 ;; was for a buffer that didn't
|
|
3659 ;; visit a file, such as
|
|
3660 ;; "*mail*". The code in v20.x
|
|
3661 ;; called `ls' directly, so we
|
|
3662 ;; need to emulate what `ls' did
|
|
3663 ;; in that case.
|
1333
|
3664 (insert-directory-safely file switches)
|
|
3665 (insert-directory-safely file-name switches))
|
844
|
3666 (terpri)
|
|
3667 (princ "Error during diff: ")
|
|
3668 (display-error ferr
|
|
3669 standard-output)))))))
|
|
3670 (ignore-errors (kill-buffer buffer))
|
|
3671 (ignore-file-errors
|
|
3672 (delete-file temp)))))))))))))))
|
428
|
3673
|
|
3674 (defun recover-session ()
|
|
3675 "Recover auto save files from a previous Emacs session.
|
|
3676 This command first displays a Dired buffer showing you the
|
|
3677 previous sessions that you could recover from.
|
|
3678 To choose one, move point to the proper line and then type C-c C-c.
|
|
3679 Then you'll be asked about a number of files to recover."
|
|
3680 (interactive)
|
|
3681 (unless (fboundp 'dired)
|
|
3682 (error "recover-session requires dired"))
|
|
3683 (if (null auto-save-list-file-prefix)
|
|
3684 (error
|
|
3685 "You set `auto-save-list-file-prefix' to disable making session files"))
|
1333
|
3686 (let ((dir (file-name-directory auto-save-list-file-prefix)))
|
|
3687 (unless (file-directory-p dir)
|
|
3688 (make-directory dir t)))
|
851
|
3689 (let* ((auto-save-list-dir
|
|
3690 (file-name-directory auto-save-list-file-prefix))
|
|
3691 (files (directory-files
|
|
3692 auto-save-list-dir
|
|
3693 t
|
|
3694 (concat "^" (regexp-quote (file-name-nondirectory
|
|
3695 auto-save-list-file-prefix)))))
|
|
3696 (files (sort (delete-if-not #'Recover-session-files-from-auto-save-list-file
|
|
3697 files) #'file-newer-than-file-p)))
|
|
3698 (unless files
|
|
3699 (error "No sessions can be recovered now"))
|
|
3700 (declare-fboundp (dired (cons auto-save-list-dir files)))
|
1333
|
3701 (save-excursion
|
|
3702 (goto-char (point-min))
|
|
3703 (or (looking-at "Move to the session you want to recover,")
|
|
3704 (let ((inhibit-read-only t))
|
|
3705 (delete-matching-lines "^[ \t]*total.*$")
|
|
3706 (insert "Move to the session you want to recover,\n"
|
|
3707 "then type C-c C-c to select it.\n\n"
|
|
3708 "You can also delete some of these files;\n"
|
|
3709 "type d on a line to mark that file for deletion.\n\n"))))
|
851
|
3710 (use-local-map (let ((map (make-sparse-keymap)))
|
|
3711 (set-keymap-parents map (list (current-local-map)))
|
|
3712 map))
|
|
3713 (define-key (current-local-map) "\C-c\C-c" 'recover-session-finish)))
|
428
|
3714
|
851
|
3715 (defun Recover-session-files-from-auto-save-list-file (file)
|
|
3716 "Return the auto save files in list file FILE that are current."
|
|
3717 (let (files
|
428
|
3718 (buffer (get-buffer-create " *recover*")))
|
|
3719 (unwind-protect
|
|
3720 (save-excursion
|
|
3721 ;; Read in the auto-save-list file.
|
|
3722 (set-buffer buffer)
|
|
3723 (erase-buffer)
|
771
|
3724 (let ((coding-system-for-read 'escape-quoted))
|
|
3725 (insert-file-contents file))
|
428
|
3726 ;; Loop thru the text of that file
|
|
3727 ;; and get out the names of the files to recover.
|
|
3728 (while (not (eobp))
|
|
3729 (let (thisfile autofile)
|
|
3730 (if (eolp)
|
|
3731 ;; This is a pair of lines for a non-file-visiting buffer.
|
|
3732 ;; Get the auto-save file name and manufacture
|
|
3733 ;; a "visited file name" from that.
|
|
3734 (progn
|
|
3735 (forward-line 1)
|
|
3736 (setq autofile
|
|
3737 (buffer-substring-no-properties
|
|
3738 (point)
|
|
3739 (save-excursion
|
|
3740 (end-of-line)
|
|
3741 (point))))
|
|
3742 (setq thisfile
|
|
3743 (expand-file-name
|
|
3744 (substring
|
|
3745 (file-name-nondirectory autofile)
|
|
3746 1 -1)
|
|
3747 (file-name-directory autofile)))
|
|
3748 (forward-line 1))
|
|
3749 ;; This pair of lines is a file-visiting
|
|
3750 ;; buffer. Use the visited file name.
|
|
3751 (progn
|
|
3752 (setq thisfile
|
|
3753 (buffer-substring-no-properties
|
|
3754 (point) (progn (end-of-line) (point))))
|
|
3755 (forward-line 1)
|
|
3756 (setq autofile
|
|
3757 (buffer-substring-no-properties
|
|
3758 (point) (progn (end-of-line) (point))))
|
|
3759 (forward-line 1)))
|
|
3760 ;; Ignore a file if its auto-save file does not exist now.
|
|
3761 (if (file-exists-p autofile)
|
|
3762 (setq files (cons thisfile files)))))
|
851
|
3763 (setq files (nreverse files)))
|
428
|
3764 (kill-buffer buffer))))
|
|
3765
|
851
|
3766 (defun recover-session-finish ()
|
|
3767 "Choose one saved session to recover auto-save files from.
|
|
3768 This command is used in the special Dired buffer created by
|
|
3769 \\[recover-session]."
|
|
3770 (interactive)
|
|
3771 ;; Get the name of the session file to recover from.
|
|
3772 (let ((file (declare-fboundp (dired-get-filename))))
|
1346
|
3773 (declare-fboundp (dired-unmark 1))
|
851
|
3774 ;; #### dired-do-flagged-delete in FSF.
|
|
3775 ;; This version is for ange-ftp
|
1346
|
3776 ;;(declare-fboundp (dired-do-deletions t))
|
851
|
3777 ;; This version is for efs
|
|
3778 (declare-fboundp (dired-expunge-deletions))
|
|
3779 (let ((files (Recover-session-files-from-auto-save-list-file file)))
|
|
3780 ;; The file contains a pair of line for each auto-saved buffer.
|
|
3781 ;; The first line of the pair contains the visited file name
|
|
3782 ;; or is empty if the buffer was not visiting a file.
|
|
3783 ;; The second line is the auto-save file name.
|
|
3784 (if files
|
|
3785 (map-y-or-n-p "Recover %s? "
|
|
3786 (lambda (file)
|
|
3787 (condition-case nil
|
|
3788 (save-excursion (recover-file file))
|
|
3789 (error
|
|
3790 (lwarn 'recover 'alert
|
|
3791 "Failed to recover `%s'" file))))
|
|
3792 files
|
|
3793 '("file" "files" "recover"))
|
|
3794 (message "No files can be recovered from this session now")))))
|
|
3795
|
428
|
3796 (defun kill-some-buffers (&optional list)
|
|
3797 "For each buffer in LIST, ask whether to kill it.
|
|
3798 LIST defaults to all existing live buffers."
|
|
3799 (interactive)
|
|
3800 (if (null list)
|
|
3801 (setq list (buffer-list)))
|
|
3802 (while list
|
|
3803 (let* ((buffer (car list))
|
|
3804 (name (buffer-name buffer)))
|
|
3805 (and (not (string-equal name ""))
|
1333
|
3806 (not (eq (aref name 0) ?\ ))
|
428
|
3807 (yes-or-no-p
|
|
3808 (format
|
|
3809 (if (buffer-modified-p buffer)
|
|
3810 (gettext "Buffer %s HAS BEEN EDITED. Kill? ")
|
|
3811 (gettext "Buffer %s is unmodified. Kill? "))
|
|
3812 name))
|
|
3813 (kill-buffer buffer)))
|
|
3814 (setq list (cdr list))))
|
|
3815
|
|
3816 (defun auto-save-mode (arg)
|
|
3817 "Toggle auto-saving of contents of current buffer.
|
|
3818 With prefix argument ARG, turn auto-saving on if positive, else off."
|
|
3819 (interactive "P")
|
|
3820 (setq buffer-auto-save-file-name
|
|
3821 (and (if (null arg)
|
|
3822 (or (not buffer-auto-save-file-name)
|
|
3823 ;; If autosave is off because buffer has shrunk,
|
|
3824 ;; then toggling should turn it on.
|
|
3825 (< buffer-saved-size 0))
|
|
3826 (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0))))
|
|
3827 (if (and buffer-file-name auto-save-visited-file-name
|
|
3828 (not buffer-read-only))
|
|
3829 buffer-file-name
|
|
3830 (make-auto-save-file-name))))
|
|
3831 ;; If -1 was stored here, to temporarily turn off saving,
|
|
3832 ;; turn it back on.
|
|
3833 (and (< buffer-saved-size 0)
|
|
3834 (setq buffer-saved-size 0))
|
|
3835 (if (interactive-p)
|
|
3836 (if buffer-auto-save-file-name ;; rewritten for I18N3 snarfing
|
|
3837 (display-message 'command "Auto-save on (in this buffer)")
|
|
3838 (display-message 'command "Auto-save off (in this buffer)")))
|
|
3839 buffer-auto-save-file-name)
|
|
3840
|
|
3841 (defun rename-auto-save-file ()
|
|
3842 "Adjust current buffer's auto save file name for current conditions.
|
|
3843 Also rename any existing auto save file, if it was made in this session."
|
|
3844 (let ((osave buffer-auto-save-file-name))
|
|
3845 (setq buffer-auto-save-file-name
|
|
3846 (make-auto-save-file-name))
|
|
3847 (if (and osave buffer-auto-save-file-name
|
|
3848 (not (string= buffer-auto-save-file-name buffer-file-name))
|
|
3849 (not (string= buffer-auto-save-file-name osave))
|
|
3850 (file-exists-p osave)
|
|
3851 (recent-auto-save-p))
|
|
3852 (rename-file osave buffer-auto-save-file-name t))))
|
|
3853
|
1333
|
3854 ;; END SYNC WITH FSF 21.2.
|
|
3855
|
464
|
3856 ;; make-auto-save-file-name and auto-save-file-name-p are now only in
|
|
3857 ;; auto-save.el.
|
428
|
3858
|
|
3859
|
1333
|
3860 ;; BEGIN SYNC WITH FSF 21.2.
|
|
3861
|
428
|
3862 (defun wildcard-to-regexp (wildcard)
|
|
3863 "Given a shell file name pattern WILDCARD, return an equivalent regexp.
|
|
3864 The generated regexp will match a filename iff the filename
|
|
3865 matches that wildcard according to shell rules. Only wildcards known
|
|
3866 by `sh' are supported."
|
|
3867 (let* ((i (string-match "[[.*+\\^$?]" wildcard))
|
|
3868 ;; Copy the initial run of non-special characters.
|
|
3869 (result (substring wildcard 0 i))
|
|
3870 (len (length wildcard)))
|
|
3871 ;; If no special characters, we're almost done.
|
|
3872 (if i
|
|
3873 (while (< i len)
|
|
3874 (let ((ch (aref wildcard i))
|
|
3875 j)
|
|
3876 (setq
|
|
3877 result
|
|
3878 (concat result
|
|
3879 (cond
|
1333
|
3880 ((and (eq ch ?\[)
|
|
3881 (< (1+ i) len)
|
|
3882 (eq (aref wildcard (1+ i)) ?\]))
|
|
3883 "\\[")
|
428
|
3884 ((eq ch ?\[) ; [...] maps to regexp char class
|
|
3885 (progn
|
|
3886 (setq i (1+ i))
|
|
3887 (concat
|
|
3888 (cond
|
|
3889 ((eq (aref wildcard i) ?!) ; [!...] -> [^...]
|
|
3890 (progn
|
|
3891 (setq i (1+ i))
|
|
3892 (if (eq (aref wildcard i) ?\])
|
|
3893 (progn
|
|
3894 (setq i (1+ i))
|
|
3895 "[^]")
|
|
3896 "[^")))
|
|
3897 ((eq (aref wildcard i) ?^)
|
|
3898 ;; Found "[^". Insert a `\0' character
|
|
3899 ;; (which cannot happen in a filename)
|
|
3900 ;; into the character class, so that `^'
|
|
3901 ;; is not the first character after `[',
|
|
3902 ;; and thus non-special in a regexp.
|
|
3903 (progn
|
|
3904 (setq i (1+ i))
|
|
3905 "[\000^"))
|
|
3906 ((eq (aref wildcard i) ?\])
|
|
3907 ;; I don't think `]' can appear in a
|
|
3908 ;; character class in a wildcard, but
|
|
3909 ;; let's be general here.
|
|
3910 (progn
|
|
3911 (setq i (1+ i))
|
|
3912 "[]"))
|
|
3913 (t "["))
|
|
3914 (prog1 ; copy everything upto next `]'.
|
|
3915 (substring wildcard
|
|
3916 i
|
|
3917 (setq j (string-match
|
|
3918 "]" wildcard i)))
|
|
3919 (setq i (if j (1- j) (1- len)))))))
|
|
3920 ((eq ch ?.) "\\.")
|
|
3921 ((eq ch ?*) "[^\000]*")
|
|
3922 ((eq ch ?+) "\\+")
|
|
3923 ((eq ch ?^) "\\^")
|
|
3924 ((eq ch ?$) "\\$")
|
|
3925 ((eq ch ?\\) "\\\\") ; probably cannot happen...
|
|
3926 ((eq ch ??) "[^\000]")
|
|
3927 (t (char-to-string ch)))))
|
|
3928 (setq i (1+ i)))))
|
|
3929 ;; Shell wildcards should match the entire filename,
|
|
3930 ;; not its part. Make the regexp say so.
|
|
3931 (concat "\\`" result "\\'")))
|
|
3932
|
|
3933 (defcustom list-directory-brief-switches "-CF"
|
|
3934 "*Switches for list-directory to pass to `ls' for brief listing."
|
|
3935 :type 'string
|
|
3936 :group 'dired)
|
|
3937
|
|
3938 (defcustom list-directory-verbose-switches "-l"
|
|
3939 "*Switches for list-directory to pass to `ls' for verbose listing,"
|
|
3940 :type 'string
|
|
3941 :group 'dired)
|
|
3942
|
1333
|
3943 (defun file-expand-wildcards (pattern &optional full)
|
|
3944 "Expand wildcard pattern PATTERN.
|
|
3945 This returns a list of file names which match the pattern.
|
|
3946
|
|
3947 If PATTERN is written as an absolute relative file name,
|
|
3948 the values are absolute also.
|
|
3949
|
|
3950 If PATTERN is written as a relative file name, it is interpreted
|
|
3951 relative to the current default directory, `default-directory'.
|
|
3952 The file names returned are normally also relative to the current
|
|
3953 default directory. However, if FULL is non-nil, they are absolute."
|
|
3954 (let* ((nondir (file-name-nondirectory pattern))
|
|
3955 (dirpart (file-name-directory pattern))
|
|
3956 ;; A list of all dirs that DIRPART specifies.
|
|
3957 ;; This can be more than one dir
|
|
3958 ;; if DIRPART contains wildcards.
|
|
3959 (dirs (if (and dirpart (string-match "[[*?]" dirpart))
|
|
3960 (mapcar 'file-name-as-directory
|
|
3961 (file-expand-wildcards (directory-file-name dirpart)))
|
|
3962 (list dirpart)))
|
|
3963 contents)
|
|
3964 (while dirs
|
|
3965 (when (or (null (car dirs)) ; Possible if DIRPART is not wild.
|
|
3966 (file-directory-p (directory-file-name (car dirs))))
|
|
3967 (let ((this-dir-contents
|
|
3968 ;; Filter out "." and ".."
|
|
3969 (delq nil
|
|
3970 (mapcar #'(lambda (name)
|
|
3971 (unless (string-match "\\`\\.\\.?\\'"
|
|
3972 (file-name-nondirectory name))
|
|
3973 name))
|
|
3974 (directory-files (or (car dirs) ".") full
|
|
3975 (wildcard-to-regexp nondir))))))
|
|
3976 (setq contents
|
|
3977 (nconc
|
|
3978 (if (and (car dirs) (not full))
|
|
3979 (mapcar (function (lambda (name) (concat (car dirs) name)))
|
|
3980 this-dir-contents)
|
|
3981 this-dir-contents)
|
|
3982 contents))))
|
|
3983 (setq dirs (cdr dirs)))
|
|
3984 contents))
|
|
3985
|
428
|
3986 (defun list-directory (dirname &optional verbose)
|
|
3987 "Display a list of files in or matching DIRNAME, a la `ls'.
|
|
3988 DIRNAME is globbed by the shell if necessary.
|
|
3989 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
|
|
3990 Actions controlled by variables `list-directory-brief-switches'
|
|
3991 and `list-directory-verbose-switches'."
|
|
3992 (interactive (let ((pfx current-prefix-arg))
|
|
3993 (list (read-file-name (if pfx (gettext "List directory (verbose): ")
|
|
3994 (gettext "List directory (brief): "))
|
|
3995 nil default-directory nil)
|
|
3996 pfx)))
|
|
3997 (let ((switches (if verbose list-directory-verbose-switches
|
|
3998 list-directory-brief-switches)))
|
|
3999 (or dirname (setq dirname default-directory))
|
|
4000 (setq dirname (expand-file-name dirname))
|
|
4001 (with-output-to-temp-buffer "*Directory*"
|
|
4002 (buffer-disable-undo standard-output)
|
|
4003 (princ "Directory ")
|
|
4004 (princ dirname)
|
|
4005 (terpri)
|
|
4006 (save-excursion
|
|
4007 (set-buffer "*Directory*")
|
1333
|
4008 (setq default-directory
|
|
4009 (if (file-directory-p dirname)
|
|
4010 (file-name-as-directory dirname)
|
|
4011 (file-name-directory dirname)))
|
428
|
4012 (let ((wildcard (not (file-directory-p dirname))))
|
|
4013 (insert-directory dirname switches wildcard (not wildcard)))))))
|
|
4014
|
1333
|
4015 (defun shell-quote-wildcard-pattern (pattern)
|
|
4016 "Quote characters special to the shell in PATTERN, leave wildcards alone.
|
|
4017
|
|
4018 PATTERN is assumed to represent a file-name wildcard suitable for the
|
|
4019 underlying filesystem. For Unix and GNU/Linux, the characters from the
|
|
4020 set [ \\t\\n;<>&|()#$] are quoted with a backslash; for DOS/Windows, all
|
|
4021 the parts of the pattern which don't include wildcard characters are
|
|
4022 quoted with double quotes.
|
|
4023 Existing quote characters in PATTERN are left alone, so you can pass
|
|
4024 PATTERN that already quotes some of the special characters."
|
|
4025 (save-match-data
|
|
4026 (cond
|
|
4027 ((memq system-type '(ms-dos windows-nt))
|
|
4028 ;; DOS/Windows don't allow `"' in file names. So if the
|
|
4029 ;; argument has quotes, we can safely assume it is already
|
|
4030 ;; quoted by the caller.
|
|
4031 (if (or (string-match "[\"]" pattern)
|
|
4032 ;; We quote [&()#$'] in case their shell is a port of a
|
|
4033 ;; Unixy shell. We quote [,=+] because stock DOS and
|
|
4034 ;; Windows shells require that in some cases, such as
|
|
4035 ;; passing arguments to batch files that use positional
|
|
4036 ;; arguments like %1.
|
|
4037 (not (string-match "[ \t;&()#$',=+]" pattern)))
|
|
4038 pattern
|
|
4039 (let ((result "\"")
|
|
4040 (beg 0)
|
|
4041 end)
|
|
4042 (while (string-match "[*?]+" pattern beg)
|
|
4043 (setq end (match-beginning 0)
|
|
4044 result (concat result (substring pattern beg end)
|
|
4045 "\""
|
|
4046 (substring pattern end (match-end 0))
|
|
4047 "\"")
|
|
4048 beg (match-end 0)))
|
|
4049 (concat result (substring pattern beg) "\""))))
|
|
4050 (t
|
|
4051 (let ((beg 0))
|
|
4052 (while (string-match "[ \t\n;<>&|()#$]" pattern beg)
|
|
4053 (setq pattern
|
|
4054 (concat (substring pattern 0 (match-beginning 0))
|
|
4055 "\\"
|
|
4056 (substring pattern (match-beginning 0)))
|
|
4057 beg (1+ (match-end 0)))))
|
|
4058 pattern))))
|
|
4059
|
|
4060
|
428
|
4061 (defvar insert-directory-program "ls"
|
|
4062 "Absolute or relative name of the `ls' program used by `insert-directory'.")
|
|
4063
|
|
4064 ;; insert-directory
|
|
4065 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and
|
|
4066 ;; FULL-DIRECTORY-P is nil.
|
|
4067 ;; The single line of output must display FILE's name as it was
|
|
4068 ;; given, namely, an absolute path name.
|
|
4069 ;; - must insert exactly one line for each file if WILDCARD or
|
|
4070 ;; FULL-DIRECTORY-P is t, plus one optional "total" line
|
|
4071 ;; before the file lines, plus optional text after the file lines.
|
|
4072 ;; Lines are delimited by "\n", so filenames containing "\n" are not
|
|
4073 ;; allowed.
|
|
4074 ;; File lines should display the basename.
|
|
4075 ;; - must be consistent with
|
|
4076 ;; - functions dired-move-to-filename, (these two define what a file line is)
|
|
4077 ;; dired-move-to-end-of-filename,
|
|
4078 ;; dired-between-files, (shortcut for (not (dired-move-to-filename)))
|
|
4079 ;; dired-insert-headerline
|
|
4080 ;; dired-after-subdir-garbage (defines what a "total" line is)
|
|
4081 ;; - variable dired-subdir-regexp
|
1606
|
4082 ;; - may be passed "--dired" as argument in SWITCHES.
|
|
4083 ;; Filename handlers might have to remove this switch if their
|
|
4084 ;; "ls" command does not support it.
|
1333
|
4085
|
|
4086 ;; END SYNC WITH FSF 21.2.
|
|
4087
|
428
|
4088 (defun insert-directory (file switches &optional wildcard full-directory-p)
|
|
4089 "Insert directory listing for FILE, formatted according to SWITCHES.
|
|
4090 Leaves point after the inserted text.
|
|
4091 SWITCHES may be a string of options, or a list of strings.
|
|
4092 Optional third arg WILDCARD means treat FILE as shell wildcard.
|
|
4093 Optional fourth arg FULL-DIRECTORY-P means file is a directory and
|
|
4094 switches do not contain `d', so that a full listing is expected.
|
|
4095
|
|
4096 This works by running a directory listing program
|
|
4097 whose name is in the variable `insert-directory-program'.
|
|
4098 If WILDCARD, it also runs the shell specified by `shell-file-name'."
|
|
4099 ;; We need the directory in order to find the right handler.
|
|
4100 (let ((handler (find-file-name-handler (expand-file-name file)
|
|
4101 'insert-directory)))
|
1606
|
4102 (cond
|
|
4103 (handler
|
|
4104 (funcall handler 'insert-directory file switches
|
|
4105 wildcard full-directory-p))
|
|
4106 ;; [mswindows-insert-directory should be called
|
|
4107 ;; nt-insert-directory - kkm]. not true any more according to
|
|
4108 ;; my new naming scheme. --ben
|
|
4109 ((and (fboundp 'mswindows-insert-directory)
|
|
4110 (eq system-type 'windows-nt))
|
|
4111 (declare-fboundp (mswindows-insert-directory
|
|
4112 file switches wildcard full-directory-p)))
|
|
4113 (t
|
|
4114 (let* ((beg (point))
|
|
4115 (result
|
|
4116 (if wildcard
|
|
4117 ;; Run ls in the directory of the file pattern we asked for.
|
|
4118 (let ((default-directory
|
|
4119 (if (file-name-absolute-p file)
|
|
4120 (file-name-directory file)
|
|
4121 (file-name-directory (expand-file-name file))))
|
|
4122 (pattern (file-name-nondirectory file))
|
|
4123 (start 0))
|
|
4124 ;; Quote some characters that have special meanings in shells;
|
|
4125 ;; but don't quote the wildcards--we want them to be special.
|
|
4126 ;; We also currently don't quote the quoting characters
|
|
4127 ;; in case people want to use them explicitly to quote
|
|
4128 ;; wildcard characters.
|
|
4129 ;;#### Unix-specific
|
|
4130 (while (string-match "[ \t\n;<>&|()#$]" pattern start)
|
|
4131 (setq pattern
|
|
4132 (concat (substring pattern 0 (match-beginning 0))
|
|
4133 "\\"
|
|
4134 (substring pattern (match-beginning 0)))
|
|
4135 start (1+ (match-end 0))))
|
|
4136 (call-process shell-file-name nil t nil
|
|
4137 "-c" (concat "\\" ;; Disregard shell aliases!
|
|
4138 insert-directory-program
|
|
4139 " -d "
|
|
4140 (if (stringp switches)
|
|
4141 switches
|
|
4142 (mapconcat 'identity switches " "))
|
|
4143 " "
|
|
4144 pattern)))
|
|
4145 ;; SunOS 4.1.3, SVr4 and others need the "." to list the
|
|
4146 ;; directory if FILE is a symbolic link.
|
|
4147 (apply 'call-process
|
|
4148 insert-directory-program nil t nil
|
|
4149 (let (list)
|
|
4150 (if (listp switches)
|
|
4151 (setq list switches)
|
|
4152 (if (not (equal switches ""))
|
|
4153 (let ((switches switches))
|
|
4154 ;; Split the switches at any spaces
|
|
4155 ;; so we can pass separate options as separate args.
|
|
4156 (while (string-match " " switches)
|
|
4157 (setq list (cons (substring switches 0 (match-beginning 0))
|
|
4158 list)
|
|
4159 switches (substring switches (match-end 0))))
|
|
4160 (setq list (cons switches list)))))
|
|
4161 (append list
|
|
4162 (list
|
|
4163 (if full-directory-p
|
|
4164 (concat (file-name-as-directory file)
|
|
4165 ;;#### Unix-specific
|
|
4166 ".")
|
|
4167 file))))))))
|
|
4168 ;; If `insert-directory-program' failed, signal an error.
|
|
4169 (if (/= result 0)
|
|
4170 ;; On non-Posix systems, we cannot open a directory, so
|
|
4171 ;; don't even try, because that will always result in
|
|
4172 ;; the ubiquitous "Access denied". Instead, show the
|
|
4173 ;; command line so the user can try to guess what went wrong.
|
|
4174 (error "Listing directory failed."))
|
|
4175
|
|
4176 (when (or (and (listp switches)
|
|
4177 (member "--dired" switches))
|
|
4178 (string-match "--dired\\>" switches))
|
|
4179 (forward-line -2)
|
|
4180 (when (looking-at "//SUBDIRED//")
|
|
4181 (delete-region (point) (progn (forward-line 1) (point)))
|
|
4182 (forward-line -1))
|
|
4183 (let ((end (line-end-position)))
|
|
4184 (forward-word 1)
|
|
4185 (forward-char 3)
|
|
4186 (while (< (point) end)
|
|
4187 (let ((start (+ beg (read (current-buffer))))
|
|
4188 (end (+ beg (read (current-buffer)))))
|
|
4189 (if (= (char-after end) ?\n)
|
|
4190 (let ((filename-extent (make-extent start end)))
|
|
4191 (set-extent-property filename-extent 'dired-file-name t)
|
|
4192 (set-extent-property filename-extent 'start-open t)
|
|
4193 (set-extent-property filename-extent 'end-open t))
|
|
4194 ;; It seems that we can't trust ls's output as to
|
|
4195 ;; byte positions of filenames.
|
|
4196 (map-extents
|
|
4197 #'(lambda (extent maparg)
|
|
4198 (delete-extent extent)
|
|
4199 nil)
|
|
4200 nil beg (point) nil nil 'dired-file-name)
|
|
4201 (end-of-line))))
|
|
4202 (goto-char end)
|
|
4203 (beginning-of-line)
|
|
4204 (delete-region (point) (progn (forward-line 2) (point))))))))))
|
428
|
4205
|
1333
|
4206 ;; BEGIN SYNC WITH FSF 21.2.
|
|
4207
|
|
4208 (defun insert-directory-safely (file switches
|
|
4209 &optional wildcard full-directory-p)
|
|
4210 "Insert directory listing for FILE, formatted according to SWITCHES.
|
|
4211
|
|
4212 Like `insert-directory', but if FILE does not exist, it inserts a
|
|
4213 message to that effect instead of signaling an error."
|
|
4214 (if (file-exists-p file)
|
|
4215 (insert-directory file switches wildcard full-directory-p)
|
|
4216 ;; Simulate the message printed by `ls'.
|
|
4217 (insert (format "%s: No such file or directory\n" file))))
|
|
4218
|
428
|
4219 (defvar kill-emacs-query-functions nil
|
|
4220 "Functions to call with no arguments to query about killing XEmacs.
|
|
4221 If any of these functions returns nil, killing Emacs is cancelled.
|
|
4222 `save-buffers-kill-emacs' (\\[save-buffers-kill-emacs]) calls these functions,
|
|
4223 but `kill-emacs', the low level primitive, does not.
|
|
4224 See also `kill-emacs-hook'.")
|
|
4225
|
1333
|
4226 (defcustom confirm-kill-emacs nil
|
|
4227 "How to ask for confirmation when leaving Emacs.
|
|
4228 If nil, the default, don't ask at all. If the value is non-nil, it should
|
|
4229 be a predicate function such as `yes-or-no-p'."
|
|
4230 :type '(choice (const :tag "Ask with yes-or-no-p" yes-or-no-p)
|
|
4231 (const :tag "Ask with y-or-n-p" y-or-n-p)
|
|
4232 (const :tag "Don't confirm" nil))
|
|
4233 :group 'emacs
|
|
4234 ;:version "21.1"
|
|
4235 )
|
|
4236
|
428
|
4237 (defun save-buffers-kill-emacs (&optional arg)
|
|
4238 "Offer to save each buffer, then kill this XEmacs process.
|
|
4239 With prefix arg, silently save all file-visiting buffers, then kill."
|
|
4240 (interactive "P")
|
|
4241 (save-some-buffers arg t)
|
|
4242 (and (or (not (memq t (mapcar #'(lambda (buf) (and (buffer-file-name buf)
|
|
4243 (buffer-modified-p buf)))
|
|
4244 (buffer-list))))
|
|
4245 (yes-or-no-p "Modified buffers exist; exit anyway? "))
|
|
4246 (or (not (fboundp 'process-list))
|
|
4247 ;; process-list is not defined on VMS.
|
|
4248 (let ((processes (process-list))
|
|
4249 active)
|
|
4250 (while processes
|
|
4251 (and (memq (process-status (car processes)) '(run stop open))
|
|
4252 (let ((val (process-kill-without-query (car processes))))
|
|
4253 (process-kill-without-query (car processes) val)
|
|
4254 val)
|
|
4255 (setq active t))
|
|
4256 (setq processes (cdr processes)))
|
|
4257 (or
|
|
4258 (not active)
|
|
4259 (save-excursion
|
|
4260 (save-window-excursion
|
|
4261 (delete-other-windows)
|
|
4262 (list-processes)
|
|
4263 (yes-or-no-p
|
|
4264 "Active processes exist; kill them and exit anyway? "))))))
|
|
4265 ;; Query the user for other things, perhaps.
|
|
4266 (run-hook-with-args-until-failure 'kill-emacs-query-functions)
|
1333
|
4267 (or (null confirm-kill-emacs)
|
|
4268 (funcall confirm-kill-emacs "Really exit Emacs? "))
|
428
|
4269 (kill-emacs)))
|
|
4270
|
|
4271 (defun symlink-expand-file-name (filename)
|
|
4272 "If FILENAME is a symlink, return its non-symlink equivalent.
|
|
4273 Unlike `file-truename', this doesn't chase symlinks in directory
|
|
4274 components of the file or expand a relative pathname into an
|
|
4275 absolute one."
|
|
4276 (let ((count 20))
|
|
4277 (while (and (> count 0) (file-symlink-p filename))
|
|
4278 (setq filename (file-symlink-p filename)
|
|
4279 count (1- count)))
|
|
4280 (if (> count 0)
|
|
4281 filename
|
|
4282 (error "Apparently circular symlink path"))))
|
|
4283
|
|
4284 ;; Suggested by Michael Kifer <kifer@CS.SunySB.EDU>
|
|
4285 (defun file-remote-p (file-name)
|
|
4286 "Test whether FILE-NAME is looked for on a remote system."
|
776
|
4287 (cond ((not (declare-boundp allow-remote-paths)) nil)
|
502
|
4288 ((fboundp 'ange-ftp-ftp-path)
|
|
4289 (declare-fboundp (ange-ftp-ftp-path file-name)))
|
|
4290 ((fboundp 'efs-ftp-path)
|
|
4291 (declare-fboundp (efs-ftp-path file-name)))
|
428
|
4292 (t nil)))
|
|
4293
|
1333
|
4294
|
|
4295 ;; We use /: as a prefix to "quote" a file name
|
|
4296 ;; so that magic file name handlers will not apply to it.
|
|
4297
|
|
4298 (setq file-name-handler-alist
|
|
4299 (cons '("\\`/:" . file-name-non-special)
|
|
4300 file-name-handler-alist))
|
|
4301
|
|
4302 ;; We depend on being the last handler on the list,
|
|
4303 ;; so that anything else which does need handling
|
|
4304 ;; has been handled already.
|
|
4305 ;; So it is safe for us to inhibit *all* magic file name handlers.
|
|
4306
|
|
4307 (defun file-name-non-special (operation &rest arguments)
|
|
4308 (let ((file-name-handler-alist nil)
|
|
4309 (default-directory
|
|
4310 (if (eq operation 'insert-directory)
|
|
4311 (directory-file-name
|
|
4312 (expand-file-name
|
|
4313 (unhandled-file-name-directory default-directory)))
|
|
4314 default-directory))
|
|
4315 ;; Get a list of the indices of the args which are file names.
|
|
4316 (file-arg-indices
|
|
4317 (cdr (or (assq operation
|
|
4318 ;; The first four are special because they
|
|
4319 ;; return a file name. We want to include the /:
|
|
4320 ;; in the return value.
|
|
4321 ;; So just avoid stripping it in the first place.
|
|
4322 '((expand-file-name . nil)
|
|
4323 ;; `identity' means just return the first arg
|
|
4324 ;; as stripped of its quoting.
|
|
4325 (substitute-in-file-name . identity)
|
|
4326 (file-name-directory . nil)
|
|
4327 (file-name-as-directory . nil)
|
|
4328 (directory-file-name . nil)
|
|
4329 (file-name-completion 0 1)
|
|
4330 (file-name-all-completions 0 1)
|
|
4331 (rename-file 0 1)
|
|
4332 (copy-file 0 1)
|
|
4333 (make-symbolic-link 0 1)
|
|
4334 (add-name-to-file 0 1)))
|
|
4335 ;; For all other operations, treat the first argument only
|
|
4336 ;; as the file name.
|
|
4337 '(nil 0))))
|
|
4338 ;; Copy ARGUMENTS so we can replace elements in it.
|
|
4339 (arguments (copy-sequence arguments)))
|
|
4340 ;; Strip off the /: from the file names that have this handler.
|
|
4341 (save-match-data
|
|
4342 (while (consp file-arg-indices)
|
|
4343 (let ((pair (nthcdr (car file-arg-indices) arguments)))
|
|
4344 (and (car pair)
|
|
4345 (string-match "\\`/:" (car pair))
|
|
4346 (setcar pair
|
|
4347 (if (= (length (car pair)) 2)
|
|
4348 "/"
|
|
4349 (substring (car pair) 2)))))
|
|
4350 (setq file-arg-indices (cdr file-arg-indices))))
|
|
4351 (if (eq file-arg-indices 'identity)
|
|
4352 (car arguments)
|
|
4353 (apply operation arguments))))
|
|
4354
|
|
4355 ;; END SYNC WITH FSF 21.2.
|
428
|
4356
|
|
4357 ;;; files.el ends here
|