209
|
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.
|
|
5
|
|
6 ;; Maintainer: XEmacs Development Team
|
|
7 ;; Keywords: extensions, dumped
|
|
8
|
|
9 ;; This file is part of XEmacs.
|
|
10
|
|
11 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
12 ;; under the terms of the GNU General Public License as published by
|
|
13 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
14 ;; any later version.
|
|
15
|
|
16 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
19 ;; General Public License for more details.
|
|
20
|
|
21 ;; You should have received a copy of the GNU General Public License
|
|
22 ;; along with XEmacs; see the file COPYING. If not, write to the Free
|
|
23 ;; Software Foundation, Inc. 59 Temple Place - Suite 330, Boston, MA
|
|
24 ;; 02111-1307, USA.
|
|
25
|
|
26 ;;; Synched up with: FSF 19.34 [Partial].
|
|
27 ;;; Warning: Merging this file is tough. Beware.
|
|
28
|
|
29 ;;; Commentary:
|
|
30
|
|
31 ;; This file is dumped with XEmacs.
|
|
32
|
|
33 ;; Defines most of XEmacs's file- and directory-handling functions,
|
|
34 ;; including basic file visiting, backup generation, link handling,
|
|
35 ;; ITS-id version control, load- and write-hook handling, and the like.
|
|
36
|
|
37 ;;; Code:
|
|
38
|
|
39 ;; XEmacs: Avoid compilation warnings.
|
|
40 (defvar coding-system-for-read)
|
|
41 (defvar buffer-file-coding-system)
|
|
42
|
227
|
43 (defgroup files nil
|
|
44 "Support editing files."
|
|
45 :group 'emacs)
|
|
46
|
209
|
47 (defgroup backup nil
|
|
48 "Backups of edited data files."
|
|
49 :group 'files)
|
|
50
|
|
51 (defgroup find-file nil
|
|
52 "Finding and editing files."
|
|
53 :group 'files)
|
|
54
|
|
55
|
|
56 ;; XEmacs: In buffer.c
|
|
57 ;(defconst delete-auto-save-files t
|
|
58 ; "*Non-nil means delete auto-save file when a buffer is saved or killed.")
|
|
59
|
|
60 ;; FSF has automount-dir-prefix. Our directory-abbrev-alist is more general.
|
|
61 ;; note: tmp_mnt bogosity conversion is established in paths.el.
|
|
62 (defcustom directory-abbrev-alist nil
|
|
63 "*Alist of abbreviations for file directories.
|
|
64 A list of elements of the form (FROM . TO), each meaning to replace
|
|
65 FROM with TO when it appears in a directory name.
|
|
66 This replacement is done when setting up the default directory of a
|
|
67 newly visited file. *Every* FROM string should start with \\\\` or ^.
|
|
68
|
|
69 Use this feature when you have directories which you normally refer to
|
|
70 via absolute symbolic links or to eliminate automounter mount points
|
|
71 from the beginning of your filenames. Make TO the name of the link,
|
|
72 and FROM the name it is linked to."
|
|
73 :type '(repeat (cons :format "%v"
|
|
74 :value ("\\`" . "")
|
|
75 (regexp :tag "From")
|
|
76 (regexp :tag "To")))
|
|
77 :group 'find-file)
|
|
78
|
|
79 ;;; Turn off backup files on VMS since it has version numbers.
|
|
80 (defcustom make-backup-files (not (eq system-type 'vax-vms))
|
|
81 "*Non-nil means make a backup of a file the first time it is saved.
|
|
82 This can be done by renaming the file or by copying.
|
|
83
|
|
84 Renaming means that XEmacs renames the existing file so that it is a
|
|
85 backup file, then writes the buffer into a new file. Any other names
|
|
86 that the old file had will now refer to the backup file. The new file
|
|
87 is owned by you and its group is defaulted.
|
|
88
|
|
89 Copying means that XEmacs copies the existing file into the backup
|
|
90 file, then writes the buffer on top of the existing file. Any other
|
|
91 names that the old file had will now refer to the new (edited) file.
|
|
92 The file's owner and group are unchanged.
|
|
93
|
|
94 The choice of renaming or copying is controlled by the variables
|
|
95 `backup-by-copying', `backup-by-copying-when-linked' and
|
|
96 `backup-by-copying-when-mismatch'. See also `backup-inhibited'."
|
|
97 :type 'boolean
|
|
98 :group 'backup)
|
|
99
|
|
100 ;; Do this so that local variables based on the file name
|
|
101 ;; are not overridden by the major mode.
|
|
102 (defvar backup-inhibited nil
|
|
103 "Non-nil means don't make a backup, regardless of the other parameters.
|
|
104 This variable is intended for use by making it local to a buffer.
|
|
105 But it is local only if you make it local.")
|
|
106 (put 'backup-inhibited 'permanent-local t)
|
|
107
|
|
108 (defcustom backup-by-copying nil
|
|
109 "*Non-nil means always use copying to create backup files.
|
|
110 See documentation of variable `make-backup-files'."
|
|
111 :type 'boolean
|
|
112 :group 'backup)
|
|
113
|
|
114 (defcustom backup-by-copying-when-linked nil
|
|
115 "*Non-nil means use copying to create backups for files with multiple names.
|
|
116 This causes the alternate names to refer to the latest version as edited.
|
|
117 This variable is relevant only if `backup-by-copying' is nil."
|
|
118 :type 'boolean
|
|
119 :group 'backup)
|
|
120
|
|
121 (defcustom backup-by-copying-when-mismatch nil
|
|
122 "*Non-nil means create backups by copying if this preserves owner or group.
|
|
123 Renaming may still be used (subject to control of other variables)
|
|
124 when it would not result in changing the owner or group of the file;
|
|
125 that is, for files which are owned by you and whose group matches
|
|
126 the default for a new file created there by you.
|
|
127 This variable is relevant only if `backup-by-copying' is nil."
|
|
128 :type 'boolean
|
|
129 :group 'backup)
|
|
130
|
|
131 (defvar backup-enable-predicate
|
|
132 '(lambda (name)
|
|
133 (or (< (length name) 5)
|
|
134 (not (string-equal "/tmp/" (substring name 0 5)))))
|
|
135 "Predicate that looks at a file name and decides whether to make backups.
|
|
136 Called with an absolute file name as argument, it returns t to enable backup.")
|
|
137
|
|
138 (defcustom buffer-offer-save nil
|
|
139 "*Non-nil in a buffer means offer to save the buffer on exit
|
|
140 even if the buffer is not visiting a file.
|
|
141 Automatically local in all buffers."
|
|
142 :type 'boolean
|
|
143 :group 'find-file)
|
|
144 (make-variable-buffer-local 'buffer-offer-save)
|
|
145
|
|
146 ;; FSF uses normal defconst
|
|
147 (defvaralias 'find-file-visit-truename 'find-file-use-truenames)
|
|
148 (defvaralias 'find-file-existing-other-name 'find-file-compare-truenames)
|
|
149
|
|
150 (defcustom revert-without-query nil
|
|
151 "*Specify which files should be reverted without query.
|
|
152 The value is a list of regular expressions.
|
|
153 If the file name matches one of these regular expressions,
|
|
154 then `revert-buffer' reverts the file without querying
|
|
155 if the file has changed on disk and you have not edited the buffer."
|
|
156 :type '(repeat (regexp ""))
|
|
157 :group 'find-file)
|
|
158
|
|
159 (defvar buffer-file-number nil
|
|
160 "The device number and file number of the file visited in the current buffer.
|
|
161 The value is a list of the form (FILENUM DEVNUM).
|
|
162 This pair of numbers uniquely identifies the file.
|
|
163 If the buffer is visiting a new file, the value is nil.")
|
|
164 (make-variable-buffer-local 'buffer-file-number)
|
|
165 (put 'buffer-file-number 'permanent-local t)
|
|
166
|
|
167 (defvar buffer-file-numbers-unique (not (memq system-type '(windows-nt)))
|
|
168 "Non-nil means that buffer-file-number uniquely identifies files.")
|
|
169
|
|
170 (defcustom file-precious-flag nil
|
|
171 "*Non-nil means protect against I/O errors while saving files.
|
|
172 Some modes set this non-nil in particular buffers.
|
|
173
|
|
174 This feature works by writing the new contents into a temporary file
|
|
175 and then renaming the temporary file to replace the original.
|
|
176 In this way, any I/O error in writing leaves the original untouched,
|
|
177 and there is never any instant where the file is nonexistent.
|
|
178
|
|
179 Note that this feature forces backups to be made by copying.
|
|
180 Yet, at the same time, saving a precious file
|
|
181 breaks any hard links between it and other files."
|
|
182 :type 'boolean
|
|
183 :group 'backup)
|
|
184
|
|
185 (defcustom version-control nil
|
|
186 "*Control use of version numbers for backup files.
|
|
187 t means make numeric backup versions unconditionally.
|
|
188 nil means make them for files that have some already.
|
|
189 `never' means do not make them."
|
|
190 :type 'boolean
|
|
191 :group 'backup
|
|
192 :group 'vc)
|
|
193
|
|
194 ;; This is now defined in efs.
|
|
195 ;(defvar dired-kept-versions 2
|
|
196 ; "*When cleaning directory, number of versions to keep.")
|
|
197
|
|
198 (defcustom delete-old-versions nil
|
|
199 "*If t, delete excess backup versions silently.
|
|
200 If nil, ask confirmation. Any other value prevents any trimming."
|
|
201 :type '(choice (const :tag "Delete" t)
|
|
202 (const :tag "Ask" nil)
|
|
203 (sexp :tag "Leave" :format "%t\n" other))
|
|
204 :group 'backup)
|
|
205
|
|
206 (defcustom kept-old-versions 2
|
|
207 "*Number of oldest versions to keep when a new numbered backup is made."
|
|
208 :type 'integer
|
|
209 :group 'backup)
|
|
210
|
|
211 (defcustom kept-new-versions 2
|
|
212 "*Number of newest versions to keep when a new numbered backup is made.
|
|
213 Includes the new backup. Must be > 0"
|
|
214 :type 'integer
|
|
215 :group 'backup)
|
|
216
|
|
217 (defcustom require-final-newline nil
|
|
218 "*Value of t says silently ensure a file ends in a newline when it is saved.
|
|
219 Non-nil but not t says ask user whether to add a newline when there isn't one.
|
|
220 nil means don't add newlines."
|
|
221 :type '(choice (const :tag "Off" nil)
|
|
222 (const :tag "Add" t)
|
|
223 (sexp :tag "Ask" :format "%t\n" ask))
|
|
224 :group 'editing-basics)
|
|
225
|
|
226 (defcustom auto-save-default t
|
|
227 "*Non-nil says by default do auto-saving of every file-visiting buffer."
|
|
228 :type 'boolean
|
|
229 :group 'auto-save)
|
|
230
|
|
231 (defcustom auto-save-visited-file-name nil
|
|
232 "*Non-nil says auto-save a buffer in the file it is visiting, when practical.
|
|
233 Normally auto-save files are written under other names."
|
|
234 :type 'boolean
|
|
235 :group 'auto-save)
|
|
236
|
|
237 (defcustom save-abbrevs nil
|
|
238 "*Non-nil means save word abbrevs too when files are saved.
|
|
239 Loading an abbrev file sets this to t."
|
|
240 :type 'boolean
|
|
241 :group 'abbrev)
|
|
242
|
|
243 (defcustom find-file-run-dired t
|
|
244 "*Non-nil says run dired if `find-file' is given the name of a directory."
|
|
245 :type 'boolean
|
|
246 :group 'find-file)
|
|
247
|
|
248 ;;;It is not useful to make this a local variable.
|
|
249 ;;;(put 'find-file-not-found-hooks 'permanent-local t)
|
|
250 (defvar find-file-not-found-hooks nil
|
|
251 "List of functions to be called for `find-file' on nonexistent file.
|
|
252 These functions are called as soon as the error is detected.
|
|
253 `buffer-file-name' is already set up.
|
|
254 The functions are called in the order given until one of them returns non-nil.")
|
|
255
|
|
256 ;;;It is not useful to make this a local variable.
|
|
257 ;;;(put 'find-file-hooks 'permanent-local t)
|
|
258 (defvar find-file-hooks nil
|
|
259 "List of functions to be called after a buffer is loaded from a file.
|
|
260 The buffer's local variables (if any) will have been processed before the
|
|
261 functions are called.")
|
|
262
|
|
263 (defvar write-file-hooks nil
|
|
264 "List of functions to be called before writing out a buffer to a file.
|
|
265 If one of them returns non-nil, the file is considered already written
|
|
266 and the rest are not called.
|
|
267 These hooks are considered to pertain to the visited file.
|
|
268 So this list is cleared if you change the visited file name.
|
|
269 See also `write-contents-hooks' and `continue-save-buffer'.")
|
|
270 ;;; However, in case someone does make it local...
|
|
271 (put 'write-file-hooks 'permanent-local t)
|
|
272
|
|
273 (defvar local-write-file-hooks nil
|
|
274 "Just like `write-file-hooks', except intended for per-buffer use.
|
|
275 The functions in this list are called before the ones in
|
|
276 `write-file-hooks'.
|
|
277
|
|
278 This variable is meant to be used for hooks that have to do with a
|
|
279 particular visited file. Therefore, it is a permanent local, so that
|
|
280 changing the major mode does not clear it. However, calling
|
|
281 `set-visited-file-name' does clear it.")
|
|
282 (make-variable-buffer-local 'local-write-file-hooks)
|
|
283 (put 'local-write-file-hooks 'permanent-local t)
|
|
284
|
|
285
|
|
286 ;; #### think about this (added by Sun).
|
|
287 (put 'after-set-visited-file-name-hooks 'permanent-local t)
|
|
288 (defvar after-set-visited-file-name-hooks nil
|
|
289 "List of functions to be called after \\[set-visited-file-name]
|
|
290 or during \\[write-file].
|
|
291 You can use this hook to restore local values of write-file-hooks,
|
|
292 after-save-hook, and revert-buffer-function, which pertain
|
|
293 to a specific file and therefore are normally killed by a rename.
|
|
294 Put hooks pertaining to the buffer contents on write-contents-hooks
|
|
295 and revert-buffer-insert-file-contents-function.")
|
|
296
|
|
297 (defvar write-contents-hooks nil
|
|
298 "List of functions to be called before writing out a buffer to a file.
|
|
299 If one of them returns non-nil, the file is considered already written
|
|
300 and the rest are not called.
|
|
301 These hooks are considered to pertain to the buffer's contents,
|
|
302 not to the particular visited file; thus, `set-visited-file-name' does
|
|
303 not clear this variable, but changing the major mode does clear it.
|
|
304 See also `write-file-hooks' and `continue-save-buffer'.")
|
|
305
|
|
306 ;; XEmacs addition
|
|
307 ;; Energize needed this to hook into save-buffer at a lower level; we need
|
|
308 ;; to provide a new output method, but don't want to have to duplicate all
|
|
309 ;; of the backup file and file modes logic.that does not occur if one uses
|
|
310 ;; a write-file-hook which returns non-nil.
|
|
311 (put 'write-file-data-hooks 'permanent-local t)
|
|
312 (defvar write-file-data-hooks nil
|
|
313 "List of functions to be called to put the bytes on disk.
|
|
314 These functions receive the name of the file to write to as argument.
|
|
315 The default behavior is to call
|
|
316 (write-region (point-min) (point-max) filename nil t)
|
|
317 If one of them returns non-nil, the file is considered already written
|
|
318 and the rest are not called.
|
|
319 These hooks are considered to pertain to the visited file.
|
|
320 So this list is cleared if you change the visited file name.
|
|
321 See also `write-file-hooks'.")
|
|
322
|
|
323 (defcustom enable-local-variables t
|
|
324 "*Control use of local-variables lists in files you visit.
|
|
325 The value can be t, nil or something else.
|
|
326 A value of t means local-variables lists are obeyed;
|
|
327 nil means they are ignored; anything else means query.
|
|
328
|
|
329 The command \\[normal-mode] always obeys local-variables lists
|
|
330 and ignores this variable."
|
|
331 :type '(choice (const :tag "Obey" t)
|
|
332 (const :tag "Ignore" nil)
|
|
333 (sexp :tag "Query" :format "%t\n" other))
|
|
334 :group 'find-file)
|
|
335
|
|
336 (defcustom enable-local-eval 'maybe
|
|
337 "*Control processing of the \"variable\" `eval' in a file's local variables.
|
|
338 The value can be t, nil or something else.
|
|
339 A value of t means obey `eval' variables;
|
|
340 nil means ignore them; anything else means query.
|
|
341
|
|
342 The command \\[normal-mode] always obeys local-variables lists
|
|
343 and ignores this variable."
|
|
344 :type '(choice (const :tag "Obey" t)
|
|
345 (const :tag "Ignore" nil)
|
|
346 (sexp :tag "Query" :format "%t\n" other))
|
|
347 :group 'find-file)
|
|
348
|
|
349 ;; Avoid losing in versions where CLASH_DETECTION is disabled.
|
|
350 (or (fboundp 'lock-buffer)
|
|
351 (defalias 'lock-buffer 'ignore))
|
|
352 (or (fboundp 'unlock-buffer)
|
|
353 (defalias 'unlock-buffer 'ignore))
|
|
354
|
|
355 ;;FSFmacs bastardized ange-ftp cruft
|
|
356 ;; This hook function provides support for ange-ftp host name
|
|
357 ;; completion. It runs the usual ange-ftp hook, but only for
|
|
358 ;; completion operations. Having this here avoids the need
|
|
359 ;; to load ange-ftp when it's not really in use.
|
|
360 ;(defun ange-ftp-completion-hook-function (op &rest args)
|
|
361 ; (if (memq op '(file-name-completion file-name-all-completions))
|
|
362 ; (apply 'ange-ftp-hook-function op args)
|
|
363 ; (let ((inhibit-file-name-handlers
|
|
364 ; (cons 'ange-ftp-completion-hook-function
|
|
365 ; (and (eq inhibit-file-name-operation op)
|
|
366 ; inhibit-file-name-handlers)))
|
|
367 ; (inhibit-file-name-operation op))
|
|
368 ; (apply op args))
|
|
369
|
|
370 (defun convert-standard-filename (filename)
|
|
371 "Convert a standard file's name to something suitable for the current OS.
|
|
372 This function's standard definition is trivial; it just returns the argument.
|
|
373 However, on some systems, the function is redefined
|
|
374 with a definition that really does change some file names."
|
|
375 filename)
|
|
376
|
|
377 (defun pwd ()
|
|
378 "Show the current default directory."
|
|
379 (interactive nil)
|
|
380 (message "Directory %s" default-directory))
|
|
381
|
|
382 (defvar cd-path nil
|
|
383 "Value of the CDPATH environment variable, as a list.
|
|
384 Not actually set up until the first time you use it.")
|
|
385
|
|
386 (defvar path-separator ":"
|
|
387 "Character used to separate concatenated paths.")
|
|
388
|
|
389 (defun parse-colon-path (cd-path)
|
|
390 "Explode a colon-separated list of paths into a string list."
|
|
391 (and cd-path
|
|
392 (let (cd-list (cd-start 0) cd-colon)
|
|
393 (setq cd-path (concat cd-path path-separator))
|
|
394 (while (setq cd-colon (string-match path-separator cd-path cd-start))
|
|
395 (setq cd-list
|
|
396 (nconc cd-list
|
|
397 (list (if (= cd-start cd-colon)
|
|
398 nil
|
|
399 (substitute-in-file-name
|
|
400 (file-name-as-directory
|
|
401 (substring cd-path cd-start cd-colon)))))))
|
|
402 (setq cd-start (+ cd-colon 1)))
|
|
403 cd-list)))
|
|
404
|
|
405 (defun cd-absolute (dir)
|
|
406 "Change current directory to given absolute file name DIR."
|
|
407 ;; Put the name into directory syntax now,
|
|
408 ;; because otherwise expand-file-name may give some bad results.
|
|
409 (if (not (eq system-type 'vax-vms))
|
|
410 (setq dir (file-name-as-directory dir)))
|
|
411 ;; XEmacs change: stig@hackvan.com
|
|
412 (if find-file-use-truenames
|
|
413 (setq dir (file-truename dir)))
|
|
414 (setq dir (abbreviate-file-name (expand-file-name dir)))
|
|
415 (cond ((not (file-directory-p dir))
|
|
416 (error "%s is not a directory" dir))
|
|
417 ;; this breaks ange-ftp, which doesn't (can't?) overload `file-executable-p'.
|
|
418 ;;((not (file-executable-p dir))
|
|
419 ;; (error "Cannot cd to %s: Permission denied" dir))
|
|
420 (t
|
|
421 (setq default-directory dir))))
|
|
422
|
|
423 (defun cd (dir)
|
|
424 "Make DIR become the current buffer's default directory.
|
|
425 If your environment includes a `CDPATH' variable, try each one of that
|
|
426 colon-separated list of directories when resolving a relative directory name."
|
|
427 (interactive
|
|
428 ;; XEmacs change? (read-file-name => read-directory-name)
|
|
429 (list (read-directory-name "Change default directory: "
|
|
430 default-directory default-directory
|
|
431 (and (member cd-path '(nil ("./")))
|
|
432 (null (getenv "CDPATH"))))))
|
|
433 (if (file-name-absolute-p dir)
|
|
434 (cd-absolute (expand-file-name dir))
|
|
435 ;; XEmacs
|
|
436 (if (null cd-path)
|
|
437 ;;#### Unix-specific
|
|
438 (let ((trypath (parse-colon-path (getenv "CDPATH"))))
|
|
439 (setq cd-path (or trypath (list "./")))))
|
|
440 (or (catch 'found
|
|
441 (mapcar #'(lambda (x)
|
|
442 (let ((f (expand-file-name (concat x dir))))
|
|
443 (if (file-directory-p f)
|
|
444 (progn
|
|
445 (cd-absolute f)
|
|
446 (throw 'found t)))))
|
|
447 cd-path)
|
|
448 nil)
|
|
449 ;; jwz: give a better error message to those of us with the
|
|
450 ;; good taste not to use a kludge like $CDPATH.
|
|
451 (if (equal cd-path '("./"))
|
|
452 (error "No such directory: %s" (expand-file-name dir))
|
|
453 (error "Directory not found in $CDPATH: %s" dir)))))
|
|
454
|
|
455 (defun load-file (file)
|
|
456 "Load the Lisp file named FILE."
|
|
457 (interactive "fLoad file: ")
|
|
458 (load (expand-file-name file) nil nil t))
|
|
459
|
|
460 ; We now dump utils/lib-complete.el which has improved versions of this.
|
|
461 ;(defun load-library (library)
|
|
462 ; "Load the library named LIBRARY.
|
|
463 ;This is an interface to the function `load'."
|
|
464 ; (interactive "sLoad library: ")
|
|
465 ; (load library))
|
|
466 ;
|
|
467 ;(defun find-library (library)
|
|
468 ; "Find the library of Lisp code named LIBRARY.
|
|
469 ;This searches `load-path' for a file named either \"LIBRARY\" or \"LIBRARY.el\"."
|
|
470 ; (interactive "sFind library file: ")
|
|
471 ; (let ((f (locate-file library load-path ":.el:")))
|
|
472 ; (if f
|
|
473 ; (find-file f)
|
|
474 ; (error "Couldn't locate library %s" library))))
|
|
475
|
|
476 (defun file-local-copy (file &optional buffer)
|
|
477 "Copy the file FILE into a temporary file on this machine.
|
|
478 Returns the name of the local copy, or nil, if FILE is directly
|
|
479 accessible."
|
|
480 (let ((handler (find-file-name-handler file 'file-local-copy)))
|
|
481 (if handler
|
|
482 (funcall handler 'file-local-copy file)
|
|
483 nil)))
|
|
484
|
|
485 ;; XEmacs change block
|
|
486 ; We have this in C and use the realpath() system call.
|
|
487
|
|
488 ;(defun file-truename (filename &optional counter prev-dirs)
|
|
489 ; "Return the truename of FILENAME, which should be absolute.
|
|
490 ;The truename of a file name is found by chasing symbolic links
|
|
491 ;both at the level of the file and at the level of the directories
|
|
492 ;containing it, until no links are left at any level.
|
|
493 ;
|
|
494 ;The arguments COUNTER and PREV-DIRS are used only in recursive calls.
|
|
495 ;Do not specify them in other calls."
|
|
496 ; ;; COUNTER can be a cons cell whose car is the count of how many more links
|
|
497 ; ;; to chase before getting an error.
|
|
498 ; ;; PREV-DIRS can be a cons cell whose car is an alist
|
|
499 ; ;; of truenames we've just recently computed.
|
|
500 ; ;; The last test looks dubious, maybe `+' is meant here? --simon.
|
|
501 ; (if (or (string= filename "") (string= filename "~")
|
|
502 ; (and (string= (substring filename 0 1) "~")
|
|
503 ; (string-match "~[^/]*" filename)))
|
|
504 ; (progn
|
|
505 ; (setq filename (expand-file-name filename))
|
|
506 ; (if (string= filename "")
|
|
507 ; (setq filename "/"))))
|
|
508 ; (or counter (setq counter (list 100)))
|
|
509 ; (let (done
|
|
510 ; ;; For speed, remove the ange-ftp completion handler from the list.
|
|
511 ; ;; We know it's not needed here.
|
|
512 ; ;; For even more speed, do this only on the outermost call.
|
|
513 ; (file-name-handler-alist
|
|
514 ; (if prev-dirs file-name-handler-alist
|
|
515 ; (let ((tem (copy-sequence file-name-handler-alist)))
|
|
516 ; (delq (rassq 'ange-ftp-completion-hook-function tem) tem)))))
|
|
517 ; (or prev-dirs (setq prev-dirs (list nil)))
|
|
518 ; ;; If this file directly leads to a link, process that iteratively
|
|
519 ; ;; so that we don't use lots of stack.
|
|
520 ; (while (not done)
|
|
521 ; (setcar counter (1- (car counter)))
|
|
522 ; (if (< (car counter) 0)
|
|
523 ; (error "Apparent cycle of symbolic links for %s" filename))
|
|
524 ; (let ((handler (find-file-name-handler filename 'file-truename)))
|
|
525 ; ;; For file name that has a special handler, call handler.
|
|
526 ; ;; This is so that ange-ftp can save time by doing a no-op.
|
|
527 ; (if handler
|
|
528 ; (setq filename (funcall handler 'file-truename filename)
|
|
529 ; done t)
|
|
530 ; (let ((dir (or (file-name-directory filename) default-directory))
|
|
531 ; target dirfile)
|
|
532 ; ;; Get the truename of the directory.
|
|
533 ; (setq dirfile (directory-file-name dir))
|
|
534 ; ;; If these are equal, we have the (or a) root directory.
|
|
535 ; (or (string= dir dirfile)
|
|
536 ; ;; If this is the same dir we last got the truename for,
|
|
537 ; ;; save time--don't recalculate.
|
|
538 ; (if (assoc dir (car prev-dirs))
|
|
539 ; (setq dir (cdr (assoc dir (car prev-dirs))))
|
|
540 ; (let ((old dir)
|
|
541 ; (new (file-name-as-directory (file-truename dirfile counter prev-dirs))))
|
|
542 ; (setcar prev-dirs (cons (cons old new) (car prev-dirs)))
|
|
543 ; (setq dir new))))
|
|
544 ; (if (equal ".." (file-name-nondirectory filename))
|
|
545 ; (setq filename
|
|
546 ; (directory-file-name (file-name-directory (directory-file-name dir)))
|
|
547 ; done t)
|
|
548 ; (if (equal "." (file-name-nondirectory filename))
|
|
549 ; (setq filename (directory-file-name dir)
|
|
550 ; done t)
|
|
551 ; ;; Put it back on the file name.
|
|
552 ; (setq filename (concat dir (file-name-nondirectory filename)))
|
|
553 ; ;; Is the file name the name of a link?
|
|
554 ; (setq target (file-symlink-p filename))
|
|
555 ; (if target
|
|
556 ; ;; Yes => chase that link, then start all over
|
|
557 ; ;; since the link may point to a directory name that uses links.
|
|
558 ; ;; We can't safely use expand-file-name here
|
|
559 ; ;; since target might look like foo/../bar where foo
|
|
560 ; ;; is itself a link. Instead, we handle . and .. above.
|
|
561 ; (setq filename
|
|
562 ; (if (file-name-absolute-p target)
|
|
563 ; target
|
|
564 ; (concat dir target))
|
|
565 ; done nil)
|
|
566 ; ;; No, we are done!
|
|
567 ; (setq done t))))))))
|
|
568 ; filename))
|
|
569
|
|
570 ;; XEmacs addition. Called from `insert-file-contents-internal'
|
|
571 ;; at the appropriate time.
|
|
572 (defun compute-buffer-file-truename (&optional buffer)
|
|
573 "Recomputes BUFFER's value of `buffer-file-truename'
|
|
574 based on the current value of `buffer-file-name'.
|
|
575 BUFFER defaults to the current buffer if unspecified."
|
|
576 (save-excursion
|
|
577 (set-buffer (or buffer (current-buffer)))
|
|
578 (cond ((null buffer-file-name)
|
|
579 (setq buffer-file-truename nil))
|
|
580 ((setq buffer-file-truename (file-truename buffer-file-name))
|
|
581 ;; it exists, we're done.
|
|
582 nil)
|
|
583 (t
|
|
584 ;; the file doesn't exist, but maybe the directory does.
|
|
585 (let* ((dir (file-name-directory buffer-file-name))
|
|
586 (truedir (file-truename dir)))
|
|
587 (if truedir (setq dir truedir))
|
|
588 (setq buffer-file-truename
|
|
589 (expand-file-name (file-name-nondirectory buffer-file-name)
|
|
590 dir)))))
|
|
591 (if (and find-file-use-truenames buffer-file-truename)
|
|
592 (setq buffer-file-name (abbreviate-file-name buffer-file-truename)
|
|
593 default-directory (file-name-directory buffer-file-name)))
|
|
594 buffer-file-truename))
|
|
595 ;; End XEmacs change block
|
|
596
|
|
597 (defun file-chase-links (filename)
|
|
598 "Chase links in FILENAME until a name that is not a link.
|
|
599 Does not examine containing directories for links,
|
|
600 unlike `file-truename'."
|
|
601 (let (tem (count 100) (newname filename))
|
|
602 (while (setq tem (file-symlink-p newname))
|
|
603 (if (= count 0)
|
|
604 (error "Apparent cycle of symbolic links for %s" filename))
|
|
605 ;; In the context of a link, `//' doesn't mean what XEmacs thinks.
|
|
606 (while (string-match "//+" tem)
|
|
607 (setq tem (concat (substring tem 0 (1+ (match-beginning 0)))
|
|
608 (substring tem (match-end 0)))))
|
|
609 ;; Handle `..' by hand, since it needs to work in the
|
|
610 ;; target of any directory symlink.
|
|
611 ;; This code is not quite complete; it does not handle
|
|
612 ;; embedded .. in some cases such as ./../foo and foo/bar/../../../lose.
|
|
613 (while (string-match "\\`\\.\\./" tem) ;#### Unix specific
|
|
614 (setq tem (substring tem 3))
|
|
615 (setq newname (file-name-as-directory
|
|
616 ;; Do the .. by hand.
|
|
617 (directory-file-name
|
|
618 (file-name-directory
|
|
619 ;; Chase links in the default dir of the symlink.
|
|
620 (file-chase-links
|
|
621 (directory-file-name
|
|
622 (file-name-directory newname))))))))
|
|
623 (setq newname (expand-file-name tem (file-name-directory newname)))
|
|
624 (setq count (1- count)))
|
|
625 newname))
|
|
626
|
|
627 (defun switch-to-other-buffer (arg)
|
|
628 "Switch to the previous buffer. With a numeric arg, n, switch to the nth
|
|
629 most recent buffer. With an arg of 0, buries the current buffer at the
|
|
630 bottom of the buffer stack."
|
|
631 (interactive "p")
|
|
632 (if (eq arg 0)
|
|
633 (bury-buffer (current-buffer)))
|
|
634 (switch-to-buffer
|
|
635 (if (<= arg 1) (other-buffer (current-buffer))
|
|
636 (nth (1+ arg) (buffer-list)))))
|
|
637
|
|
638 (defun switch-to-buffer-other-window (buffer)
|
|
639 "Select buffer BUFFER in another window."
|
|
640 (interactive "BSwitch to buffer in other window: ")
|
|
641 (let ((pop-up-windows t))
|
|
642 ;; XEmacs: this used to have (selected-frame) as the third argument,
|
|
643 ;; but this is obnoxious. If the user wants the buffer in a
|
|
644 ;; different frame, then it should be this way.
|
|
645
|
|
646 ;; Change documented above undone --mrb
|
|
647 (pop-to-buffer buffer t (selected-frame))))
|
|
648
|
|
649 (defun switch-to-buffer-other-frame (buffer)
|
|
650 "Switch to buffer BUFFER in a newly-created frame."
|
|
651 (interactive "BSwitch to buffer in other frame: ")
|
|
652 (let* ((name (get-frame-name-for-buffer buffer))
|
|
653 (frame (make-frame (if name
|
|
654 (list (cons 'name (symbol-name name)))))))
|
|
655 (pop-to-buffer buffer t frame)
|
|
656 (make-frame-visible frame)
|
|
657 buffer))
|
|
658
|
|
659 (defun find-file (filename &optional codesys)
|
|
660 "Edit file FILENAME.
|
|
661 Switch to a buffer visiting file FILENAME,
|
|
662 creating one if none already exists.
|
|
663 Under XEmacs/Mule, optional second argument specifies the
|
|
664 coding system to use when decoding the file. Interactively,
|
|
665 with a prefix argument, you will be prompted for the coding system."
|
|
666 (interactive "FFind file: \nZCoding system: ")
|
|
667 (if codesys
|
|
668 (let ((coding-system-for-read
|
|
669 (get-coding-system codesys)))
|
|
670 (switch-to-buffer (find-file-noselect filename)))
|
|
671 (switch-to-buffer (find-file-noselect filename))))
|
|
672
|
|
673 (defun find-file-other-window (filename &optional codesys)
|
|
674 "Edit file FILENAME, in another window.
|
|
675 May create a new window, or reuse an existing one.
|
|
676 See the function `display-buffer'.
|
|
677 Under XEmacs/Mule, optional second argument specifies the
|
|
678 coding system to use when decoding the file. Interactively,
|
|
679 with a prefix argument, you will be prompted for the coding system."
|
|
680 (interactive "FFind file in other window: \nZCoding system: ")
|
|
681 (if codesys
|
|
682 (let ((coding-system-for-read
|
|
683 (get-coding-system codesys)))
|
|
684 (switch-to-buffer-other-window (find-file-noselect filename)))
|
|
685 (switch-to-buffer-other-window (find-file-noselect filename))))
|
|
686
|
|
687 (defun find-file-other-frame (filename &optional codesys)
|
|
688 "Edit file FILENAME, in a newly-created frame.
|
|
689 Under XEmacs/Mule, optional second argument specifies the
|
|
690 coding system to use when decoding the file. Interactively,
|
|
691 with a prefix argument, you will be prompted for the coding system."
|
|
692 (interactive "FFind file in other frame: \nZCoding system: ")
|
|
693 (if codesys
|
|
694 (let ((coding-system-for-read
|
|
695 (get-coding-system codesys)))
|
|
696 (switch-to-buffer-other-frame (find-file-noselect filename)))
|
|
697 (switch-to-buffer-other-frame (find-file-noselect filename))))
|
|
698
|
|
699 (defun find-file-read-only (filename &optional codesys)
|
|
700 "Edit file FILENAME but don't allow changes.
|
|
701 Like \\[find-file] but marks buffer as read-only.
|
|
702 Use \\[toggle-read-only] to permit editing.
|
|
703 Under XEmacs/Mule, optional second argument specifies the
|
|
704 coding system to use when decoding the file. Interactively,
|
|
705 with a prefix argument, you will be prompted for the coding system."
|
|
706 (interactive "fFind file read-only: \nZCoding system: ")
|
|
707 (if codesys
|
|
708 (let ((coding-system-for-read
|
|
709 (get-coding-system codesys)))
|
|
710 (find-file filename))
|
|
711 (find-file filename))
|
|
712 (setq buffer-read-only t)
|
|
713 (current-buffer))
|
|
714
|
|
715 (defun find-file-read-only-other-window (filename &optional codesys)
|
|
716 "Edit file FILENAME in another window but don't allow changes.
|
|
717 Like \\[find-file-other-window] but marks buffer as read-only.
|
|
718 Use \\[toggle-read-only] to permit editing.
|
|
719 Under XEmacs/Mule, optional second argument specifies the
|
|
720 coding system to use when decoding the file. Interactively,
|
|
721 with a prefix argument, you will be prompted for the coding system."
|
|
722 (interactive "fFind file read-only other window: \nZCoding system: ")
|
|
723 (if codesys
|
|
724 (let ((coding-system-for-read
|
|
725 (get-coding-system codesys)))
|
|
726 (find-file-other-window filename))
|
|
727 (find-file-other-window filename))
|
|
728 (setq buffer-read-only t)
|
|
729 (current-buffer))
|
|
730
|
|
731 (defun find-file-read-only-other-frame (filename &optional codesys)
|
|
732 "Edit file FILENAME in another frame but don't allow changes.
|
|
733 Like \\[find-file-other-frame] but marks buffer as read-only.
|
|
734 Use \\[toggle-read-only] to permit editing.
|
|
735 Under XEmacs/Mule, optional second argument specifies the
|
|
736 coding system to use when decoding the file. Interactively,
|
|
737 with a prefix argument, you will be prompted for the coding system."
|
|
738 (interactive "fFind file read-only other frame: \nZCoding system: ")
|
|
739 (if codesys
|
|
740 (let ((coding-system-for-read
|
|
741 (get-coding-system codesys)))
|
|
742 (find-file-other-frame filename))
|
|
743 (find-file-other-frame filename))
|
|
744 (setq buffer-read-only t)
|
|
745 (current-buffer))
|
|
746
|
|
747 (defun find-alternate-file-other-window (filename &optional codesys)
|
|
748 "Find file FILENAME as a replacement for the file in the next window.
|
|
749 This command does not select that window.
|
|
750 Under XEmacs/Mule, optional second argument specifies the
|
|
751 coding system to use when decoding the file. Interactively,
|
|
752 with a prefix argument, you will be prompted for the coding system."
|
|
753 (interactive
|
|
754 (save-selected-window
|
|
755 (other-window 1)
|
|
756 (let ((file buffer-file-name)
|
|
757 (file-name nil)
|
|
758 (file-dir nil))
|
|
759 (and file
|
|
760 (setq file-name (file-name-nondirectory file)
|
|
761 file-dir (file-name-directory file)))
|
|
762 (list (read-file-name
|
|
763 "Find alternate file: " file-dir nil nil file-name)
|
|
764 (if (and current-prefix-arg (featurep 'mule))
|
|
765 (read-coding-system "Coding-system: "))))))
|
|
766 (if (one-window-p)
|
|
767 (find-file-other-window filename)
|
|
768 (save-selected-window
|
|
769 (other-window 1)
|
|
770 (find-alternate-file filename codesys))))
|
|
771
|
|
772 (defun find-alternate-file (filename &optional codesys)
|
|
773 "Find file FILENAME, select its buffer, kill previous buffer.
|
|
774 If the current buffer now contains an empty file that you just visited
|
|
775 \(presumably by mistake), use this command to visit the file you really want.
|
|
776 Under XEmacs/Mule, optional second argument specifies the
|
|
777 coding system to use when decoding the file. Interactively,
|
|
778 with a prefix argument, you will be prompted for the coding system."
|
|
779 (interactive
|
|
780 (let ((file buffer-file-name)
|
|
781 (file-name nil)
|
|
782 (file-dir nil))
|
|
783 (and file
|
|
784 (setq file-name (file-name-nondirectory file)
|
|
785 file-dir (file-name-directory file)))
|
|
786 (list (read-file-name
|
|
787 "Find alternate file: " file-dir nil nil file-name)
|
|
788 (if (and current-prefix-arg (featurep 'mule))
|
|
789 (read-coding-system "Coding-system: ")))))
|
|
790 (and (buffer-modified-p) (buffer-file-name)
|
|
791 ;; (not buffer-read-only)
|
|
792 (not (yes-or-no-p (format
|
|
793 "Buffer %s is modified; kill anyway? "
|
|
794 (buffer-name))))
|
|
795 (error "Aborted"))
|
|
796 (let ((obuf (current-buffer))
|
|
797 (ofile buffer-file-name)
|
|
798 (onum buffer-file-number)
|
|
799 (otrue buffer-file-truename)
|
|
800 (oname (buffer-name)))
|
|
801 (if (get-buffer " **lose**")
|
|
802 (kill-buffer " **lose**"))
|
|
803 (rename-buffer " **lose**")
|
|
804 (setq buffer-file-name nil)
|
|
805 (setq buffer-file-number nil)
|
|
806 (setq buffer-file-truename nil)
|
|
807 (unwind-protect
|
|
808 (progn
|
|
809 (unlock-buffer)
|
|
810 (if codesys
|
|
811 (let ((coding-system-for-read
|
|
812 (get-coding-system codesys)))
|
|
813 (find-file filename))
|
|
814 (find-file filename)))
|
|
815 (cond ((eq obuf (current-buffer))
|
|
816 (setq buffer-file-name ofile)
|
|
817 (setq buffer-file-number onum)
|
|
818 (setq buffer-file-truename otrue)
|
|
819 (lock-buffer)
|
|
820 (rename-buffer oname))))
|
|
821 (or (eq (current-buffer) obuf)
|
|
822 (kill-buffer obuf))))
|
|
823
|
|
824 (defun create-file-buffer (filename)
|
|
825 "Create a suitably named buffer for visiting FILENAME, and return it.
|
|
826 FILENAME (sans directory) is used unchanged if that name is free;
|
|
827 otherwise a string <2> or <3> or ... is appended to get an unused name."
|
|
828 (let ((handler (find-file-name-handler filename 'create-file-buffer)))
|
|
829 (if handler
|
|
830 (funcall handler 'create-file-buffer filename)
|
|
831 (let ((lastname (file-name-nondirectory filename)))
|
|
832 (if (string= lastname "")
|
|
833 (setq lastname filename))
|
|
834 (generate-new-buffer lastname)))))
|
|
835
|
|
836 (defun generate-new-buffer (name)
|
|
837 "Create and return a buffer with a name based on NAME.
|
|
838 Choose the buffer's name using `generate-new-buffer-name'."
|
|
839 (get-buffer-create (generate-new-buffer-name name)))
|
|
840
|
|
841 (defvar abbreviated-home-dir nil
|
|
842 "The user's homedir abbreviated according to `directory-abbrev-alist'.")
|
|
843
|
|
844 (defun abbreviate-file-name (filename &optional hack-homedir)
|
|
845 "Return a version of FILENAME shortened using `directory-abbrev-alist'.
|
|
846 See documentation of variable `directory-abbrev-alist' for more information.
|
|
847 If optional argument HACK-HOMEDIR is non-nil, then this also substitutes
|
|
848 \"~\" for the user's home directory."
|
|
849 (let ((handler (find-file-name-handler filename 'abbreviate-file-name)))
|
|
850 (if handler
|
|
851 (funcall handler 'abbreviate-file-name filename hack-homedir)
|
|
852 ;; Get rid of the prefixes added by the automounter.
|
|
853 ;;(if (and (string-match automount-dir-prefix filename)
|
|
854 ;; (file-exists-p (file-name-directory
|
|
855 ;; (substring filename (1- (match-end 0))))))
|
|
856 ;; (setq filename (substring filename (1- (match-end 0)))))
|
|
857 (let ((tail directory-abbrev-alist))
|
|
858 ;; If any elt of directory-abbrev-alist matches this name,
|
|
859 ;; abbreviate accordingly.
|
|
860 (while tail
|
|
861 (if (string-match (car (car tail)) filename)
|
|
862 (setq filename
|
|
863 (concat (cdr (car tail)) (substring filename (match-end 0)))))
|
|
864 (setq tail (cdr tail))))
|
|
865 (if hack-homedir
|
|
866 (progn
|
|
867 ;; Compute and save the abbreviated homedir name.
|
|
868 ;; We defer computing this until the first time it's needed, to
|
|
869 ;; give time for directory-abbrev-alist to be set properly.
|
|
870 ;; We include a slash at the end, to avoid spurious matches
|
|
871 ;; such as `/usr/foobar' when the home dir is `/usr/foo'.
|
|
872 (or abbreviated-home-dir
|
|
873 (setq abbreviated-home-dir
|
|
874 (let ((abbreviated-home-dir "$foo"))
|
|
875 (concat "\\`" (regexp-quote (abbreviate-file-name
|
|
876 (expand-file-name "~")))
|
|
877 "\\(/\\|\\'\\)"))))
|
|
878 ;; If FILENAME starts with the abbreviated homedir,
|
|
879 ;; make it start with `~' instead.
|
|
880 (if (and (string-match abbreviated-home-dir filename)
|
|
881 ;; If the home dir is just /, don't change it.
|
|
882 (not (and (= (match-end 0) 1) ;#### unix-specific
|
|
883 (= (aref filename 0) ?/)))
|
|
884 (not (and (or (eq system-type 'ms-dos)
|
|
885 (eq system-type 'windows-nt))
|
|
886 (save-match-data
|
|
887 (string-match "^[a-zA-Z]:/$" filename)))))
|
|
888 (setq filename
|
|
889 (concat "~"
|
|
890 (substring filename
|
|
891 (match-beginning 1) (match-end 1))
|
|
892 (substring filename (match-end 0)))))))
|
|
893 filename)))
|
|
894
|
|
895 (defcustom find-file-not-true-dirname-list nil
|
|
896 "*List of logical names for which visiting shouldn't save the true dirname.
|
|
897 On VMS, when you visit a file using a logical name that searches a path,
|
|
898 you may or may not want the visited file name to record the specific
|
|
899 directory where the file was found. If you *do not* want that, add the logical
|
|
900 name to this list as a string."
|
|
901 :type '(repeat (string :tag "Name"))
|
|
902 :group 'find-file)
|
|
903
|
|
904 ;; This function is needed by FSF vc.el. I hope somebody can make it
|
|
905 ;; work for XEmacs. -sb.
|
|
906 (defun find-buffer-visiting (filename)
|
|
907 "Return the buffer visiting file FILENAME (a string).
|
|
908 This is like `get-file-buffer', except that it checks for any buffer
|
|
909 visiting the same file, possibly under a different name.
|
|
910 If there is no such live buffer, return nil."
|
|
911 (let ((buf (get-file-buffer filename))
|
|
912 (truename (abbreviate-file-name (file-truename filename))))
|
|
913 (or buf
|
|
914 (let ((list (buffer-list)) found)
|
|
915 (while (and (not found) list)
|
|
916 (save-excursion
|
|
917 (set-buffer (car list))
|
|
918 (if (and buffer-file-name
|
|
919 (string= buffer-file-truename truename))
|
|
920 (setq found (car list))))
|
|
921 (setq list (cdr list)))
|
|
922 found)
|
|
923 (let ((number (nthcdr 10 (file-attributes truename)))
|
|
924 (list (buffer-list)) found)
|
|
925 (and buffer-file-numbers-unique
|
|
926 number
|
|
927 (while (and (not found) list)
|
|
928 (save-excursion
|
|
929 (set-buffer (car list))
|
|
930 (if (and buffer-file-number
|
|
931 (equal buffer-file-number number)
|
|
932 ;; Verify this buffer's file number
|
|
933 ;; still belongs to its file.
|
|
934 (file-exists-p buffer-file-name)
|
|
935 (equal (nthcdr 10 (file-attributes buffer-file-name))
|
|
936 number))
|
|
937 (setq found (car list))))
|
|
938 (setq list (cdr list))))
|
|
939 found))))
|
|
940
|
|
941 (defun insert-file-contents-literally (filename &optional visit beg end replace)
|
|
942 "Like `insert-file-contents', q.v., but only reads in the file.
|
|
943 A buffer may be modified in several ways after reading into the buffer due
|
|
944 to advanced Emacs features, such as file-name-handlers, format decoding,
|
|
945 find-file-hooks, etc.
|
|
946 This function ensures that none of these modifications will take place."
|
|
947 (let ((file-name-handler-alist nil)
|
|
948 (format-alist nil)
|
|
949 (after-insert-file-functions nil)
|
|
950 (find-buffer-file-type-function
|
|
951 (if (fboundp 'find-buffer-file-type)
|
|
952 (symbol-function 'find-buffer-file-type)
|
|
953 nil)))
|
|
954 (unwind-protect
|
|
955 (progn
|
|
956 (fset 'find-buffer-file-type (lambda (filename) t))
|
|
957 (insert-file-contents filename visit beg end replace))
|
|
958 (if find-buffer-file-type-function
|
|
959 (fset 'find-buffer-file-type find-buffer-file-type-function)
|
|
960 (fmakunbound 'find-buffer-file-type)))))
|
|
961
|
|
962 (defun find-file-noselect (filename &optional nowarn rawfile)
|
|
963 "Read file FILENAME into a buffer and return the buffer.
|
|
964 If a buffer exists visiting FILENAME, return that one, but
|
|
965 verify that the file has not changed since visited or saved.
|
|
966 The buffer is not selected, just returned to the caller.
|
|
967 If NOWARN is non-nil, warning messages about several potential
|
|
968 problems will be suppressed."
|
|
969 (setq filename (abbreviate-file-name (expand-file-name filename)))
|
|
970 (if (file-directory-p filename)
|
211
|
971 (if (and (fboundp 'dired-noselect) find-file-run-dired)
|
209
|
972 (dired-noselect (if find-file-use-truenames
|
|
973 (abbreviate-file-name (file-truename filename))
|
|
974 filename))
|
|
975 (error "%s is a directory." filename))
|
|
976 (let* ((buf (get-file-buffer filename))
|
|
977 ; (truename (abbreviate-file-name (file-truename filename)))
|
|
978 (number (nthcdr 10 (file-attributes (file-truename filename))))
|
|
979 ; (number (and buffer-file-truename
|
|
980 ; (nthcdr 10 (file-attributes buffer-file-truename))))
|
|
981 ; ;; Find any buffer for a file which has same truename.
|
|
982 ; (other (and (not buf) (find-buffer-visiting filename)))
|
|
983 (error nil))
|
|
984
|
|
985 ; ;; Let user know if there is a buffer with the same truename.
|
|
986 ; (if (and (not buf) same-truename (not nowarn))
|
|
987 ; (message "%s and %s are the same file (%s)"
|
|
988 ; filename (buffer-file-name same-truename)
|
|
989 ; truename)
|
|
990 ; (if (and (not buf) same-number (not nowarn))
|
|
991 ; (message "%s and %s are the same file"
|
|
992 ; filename (buffer-file-name same-number))))
|
|
993 ; ;; Optionally also find that buffer.
|
|
994 ; (if (or find-file-existing-other-name find-file-visit-truename)
|
|
995 ; (setq buf (or same-truename same-number)))
|
|
996
|
|
997 (when (and buf
|
|
998 (or find-file-compare-truenames find-file-use-truenames)
|
|
999 (not nowarn))
|
|
1000 (save-excursion
|
|
1001 (set-buffer buf)
|
|
1002 (if (not (string-equal buffer-file-name filename))
|
|
1003 (message "%s and %s are the same file (%s)"
|
|
1004 filename buffer-file-name
|
|
1005 buffer-file-truename))))
|
|
1006
|
|
1007 (if buf
|
|
1008 (or nowarn
|
|
1009 (verify-visited-file-modtime buf)
|
|
1010 (cond ((not (file-exists-p filename))
|
|
1011 (error "File %s no longer exists!" filename))
|
|
1012 ;; Certain files should be reverted automatically
|
|
1013 ;; if they have changed on disk and not in the buffer.
|
|
1014 ((and (not (buffer-modified-p buf))
|
|
1015 (let (found)
|
|
1016 (dolist (rx revert-without-query found)
|
|
1017 (when (string-match rx filename)
|
|
1018 (setq found t)))))
|
|
1019 (with-current-buffer buf
|
|
1020 (message "Reverting file %s..." filename)
|
|
1021 (revert-buffer t t)
|
|
1022 (message "Reverting file %s... done" filename)))
|
|
1023 ((yes-or-no-p
|
|
1024 (if (string= (file-name-nondirectory filename)
|
|
1025 (buffer-name buf))
|
|
1026 (format
|
|
1027 (if (buffer-modified-p buf)
|
|
1028 (gettext "File %s changed on disk. Discard your edits? ")
|
|
1029 (gettext "File %s changed on disk. Reread from disk? "))
|
|
1030 (file-name-nondirectory filename))
|
|
1031 (format
|
|
1032 (if (buffer-modified-p buf)
|
|
1033 (gettext "File %s changed on disk. Discard your edits in %s? ")
|
|
1034 (gettext "File %s changed on disk. Reread from disk into %s? "))
|
|
1035 (file-name-nondirectory filename)
|
|
1036 (buffer-name buf))))
|
|
1037 (save-excursion
|
|
1038 (set-buffer buf)
|
|
1039 (revert-buffer t t)))))
|
|
1040 ;; Else: we must create a new buffer for filename
|
|
1041 (save-excursion
|
|
1042 ;;; The truename stuff makes this obsolete.
|
|
1043 ;;; (let* ((link-name (car (file-attributes filename)))
|
|
1044 ;;; (linked-buf (and (stringp link-name)
|
|
1045 ;;; (get-file-buffer link-name))))
|
|
1046 ;;; (if (bufferp linked-buf)
|
|
1047 ;;; (message "Symbolic link to file in buffer %s"
|
|
1048 ;;; (buffer-name linked-buf))))
|
|
1049 (setq buf (create-file-buffer filename))
|
|
1050 (set-buffer-major-mode buf)
|
|
1051 (set-buffer buf)
|
|
1052 (erase-buffer)
|
|
1053 (if rawfile
|
|
1054 (condition-case ()
|
|
1055 (insert-file-contents-literally filename t)
|
|
1056 (file-error
|
|
1057 ;; Unconditionally set error
|
|
1058 (setq error t)))
|
|
1059 (condition-case e
|
|
1060 (insert-file-contents filename t)
|
|
1061 (file-error
|
|
1062 ;; Run find-file-not-found-hooks until one returns non-nil.
|
|
1063 (or (run-hook-with-args-until-success 'find-file-not-found-hooks)
|
|
1064 ;; If they fail too, set error.
|
|
1065 (setq error e)))))
|
|
1066 ;; Find the file's truename, and maybe use that as visited name.
|
|
1067 ;; automatically computed in XEmacs.
|
|
1068 ; (setq buffer-file-truename truename)
|
|
1069 (setq buffer-file-number number)
|
|
1070 ;; On VMS, we may want to remember which directory in a search list
|
|
1071 ;; the file was found in.
|
|
1072 (and (eq system-type 'vax-vms)
|
|
1073 (let (logical)
|
|
1074 (if (string-match ":" (file-name-directory filename))
|
|
1075 (setq logical (substring (file-name-directory filename)
|
|
1076 0 (match-beginning 0))))
|
|
1077 (not (member logical find-file-not-true-dirname-list)))
|
|
1078 (setq buffer-file-name buffer-file-truename))
|
|
1079 ; (if find-file-visit-truename
|
|
1080 ; (setq buffer-file-name
|
|
1081 ; (setq filename
|
|
1082 ; (expand-file-name buffer-file-truename))))
|
|
1083 (and find-file-use-truenames
|
|
1084 ;; This should be in C. Put pathname abbreviations that have
|
|
1085 ;; been explicitly requested back into the pathname. Most
|
|
1086 ;; importantly, strip out automounter /tmp_mnt directories so
|
|
1087 ;; that auto-save will work
|
|
1088 (setq buffer-file-name (abbreviate-file-name buffer-file-name)))
|
|
1089 ;; Set buffer's default directory to that of the file.
|
|
1090 (setq default-directory (file-name-directory buffer-file-name))
|
|
1091 ;; Turn off backup files for certain file names. Since
|
|
1092 ;; this is a permanent local, the major mode won't eliminate it.
|
|
1093 (and (not (funcall backup-enable-predicate buffer-file-name))
|
|
1094 (progn
|
|
1095 (make-local-variable 'backup-inhibited)
|
|
1096 (setq backup-inhibited t)))
|
|
1097 (if rawfile
|
|
1098 nil
|
|
1099 (after-find-file error (not nowarn))
|
|
1100 (setq buf (current-buffer)))))
|
|
1101 buf)))
|
|
1102
|
|
1103 (defvar after-find-file-from-revert-buffer nil)
|
|
1104
|
|
1105 (defun after-find-file (&optional error warn noauto
|
|
1106 after-find-file-from-revert-buffer
|
|
1107 nomodes)
|
|
1108 "Called after finding a file and by the default revert function.
|
|
1109 Sets buffer mode, parses local variables.
|
|
1110 Optional args ERROR, WARN, and NOAUTO: ERROR non-nil means there was an
|
|
1111 error in reading the file. WARN non-nil means warn if there
|
|
1112 exists an auto-save file more recent than the visited file.
|
|
1113 NOAUTO means don't mess with auto-save mode.
|
|
1114 Fourth arg AFTER-FIND-FILE-FROM-REVERT-BUFFER non-nil
|
|
1115 means this call was from `revert-buffer'.
|
|
1116 Fifth arg NOMODES non-nil means don't alter the file's modes.
|
|
1117 Finishes by calling the functions in `find-file-hooks'."
|
|
1118 (setq buffer-read-only (not (file-writable-p buffer-file-name)))
|
|
1119 (if noninteractive
|
|
1120 nil
|
|
1121 (let* (not-serious
|
|
1122 (msg
|
|
1123 (cond ((and error (file-attributes buffer-file-name))
|
|
1124 (setq buffer-read-only t)
|
|
1125 (gettext "File exists, but cannot be read."))
|
|
1126 ((not buffer-read-only)
|
|
1127 (if (and warn
|
|
1128 (file-newer-than-file-p (make-auto-save-file-name)
|
|
1129 buffer-file-name))
|
|
1130 (format "%s has auto save data; consider M-x recover-file"
|
|
1131 (setq not-serious t)
|
|
1132 (if error (gettext "(New file)") nil))))
|
|
1133 ((not error)
|
|
1134 (setq not-serious t)
|
|
1135 (gettext "Note: file is write protected"))
|
|
1136 ((file-attributes (directory-file-name default-directory))
|
|
1137 (gettext "File not found and directory write-protected"))
|
|
1138 ((file-exists-p (file-name-directory buffer-file-name))
|
|
1139 (setq buffer-read-only nil))
|
|
1140 (t
|
|
1141 ;; If the directory the buffer is in doesn't exist,
|
|
1142 ;; offer to create it. It's better to do this now
|
|
1143 ;; than when we save the buffer, because we want
|
|
1144 ;; autosaving to work.
|
|
1145 (setq buffer-read-only nil)
|
|
1146 ;; XEmacs
|
|
1147 (or (file-exists-p (file-name-directory buffer-file-name))
|
|
1148 (if (yes-or-no-p
|
|
1149 (format
|
|
1150 "The directory containing %s does not exist. Create? "
|
|
1151 (abbreviate-file-name buffer-file-name)))
|
|
1152 (make-directory (file-name-directory
|
|
1153 buffer-file-name)
|
|
1154 t)))
|
|
1155 nil))))
|
|
1156 (if msg
|
|
1157 (progn
|
|
1158 (message msg)
|
|
1159 (or not-serious (sit-for 1 t)))))
|
|
1160 (if (and auto-save-default (not noauto))
|
|
1161 (auto-save-mode t)))
|
|
1162 (unless nomodes
|
|
1163 (normal-mode t)
|
|
1164 (run-hooks 'find-file-hooks)))
|
|
1165
|
|
1166 (defun normal-mode (&optional find-file)
|
|
1167 "Choose the major mode for this buffer automatically.
|
|
1168 Also sets up any specified local variables of the file.
|
|
1169 Uses the visited file name, the -*- line, and the local variables spec.
|
|
1170
|
|
1171 This function is called automatically from `find-file'. In that case,
|
|
1172 we may set up specified local variables depending on the value of
|
|
1173 `enable-local-variables': if it is t, we do; if it is nil, we don't;
|
|
1174 otherwise, we query. `enable-local-variables' is ignored if you
|
|
1175 run `normal-mode' explicitly."
|
|
1176 (interactive)
|
|
1177 (or find-file (funcall (or default-major-mode 'fundamental-mode)))
|
|
1178 (and (condition-case err
|
|
1179 (progn (set-auto-mode)
|
|
1180 t)
|
|
1181 (error (message "File mode specification error: %s"
|
|
1182 (prin1-to-string err))
|
|
1183 nil))
|
|
1184 (condition-case err
|
|
1185 (hack-local-variables (not find-file))
|
|
1186 (error (message "File local-variables error: %s"
|
|
1187 (prin1-to-string err))))))
|
|
1188
|
|
1189 (defvar auto-mode-alist
|
|
1190 '(("\\.te?xt\\'" . text-mode)
|
|
1191 ("\\.[ch]\\'" . c-mode)
|
|
1192 ("\\.el\\'" . emacs-lisp-mode)
|
|
1193 ("\\.\\([CH]\\|cc\\|hh\\)\\'" . c++-mode)
|
|
1194 ("\\.[ch]\\(pp\\|xx\\|\\+\\+\\)\\'" . c++-mode)
|
|
1195 ("\\.java\\'" . java-mode)
|
|
1196 ("\\.f\\(or\\)?\\'" . fortran-mode)
|
|
1197 ("\\.F\\(OR\\)?\\'" . fortran-mode)
|
|
1198 ("\\.[fF]90\\'" . f90-mode)
|
|
1199 ;;; Less common extensions come here
|
|
1200 ;;; so more common ones above are found faster.
|
|
1201 ("\\.p[lm]\\'" . perl-mode)
|
|
1202 ("\\.py\\'" . python-mode)
|
|
1203 ("\\.texi\\(nfo\\)?\\'" . texinfo-mode)
|
|
1204 ("\\.ad[abs]\\'" . ada-mode)
|
|
1205 ("\\.c?l\\(i?sp\\)?\\'" . lisp-mode)
|
|
1206 ("\\.p\\(as\\)?\\'" . pascal-mode)
|
|
1207 ("\\.ltx\\'" . latex-mode)
|
|
1208 ("\\.[sS]\\'" . asm-mode)
|
|
1209 ("[Cc]hange.?[Ll]og?\\(.[0-9]+\\)?\\'" . change-log-mode)
|
|
1210 ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode)
|
|
1211 ("\\.scm\\(\\.[0-9]*\\)?\\'" . scheme-mode)
|
|
1212 ("\\.e\\'" . eiffel-mode)
|
|
1213 ("\\.mss\\'" . scribe-mode)
|
|
1214 ("\\.m\\([mes]\\|an\\)\\'" . nroff-mode)
|
|
1215 ("\\.icn\\'" . icon-mode)
|
|
1216 ("\\.\\([ckz]?sh\\|shar\\)\\'" . sh-mode)
|
|
1217 ("/\\.\\(bash_\\|z\\)?\\(profile\\|login\||logout\\)\\'" . sh-mode)
|
|
1218 ("/\\.\\([ckz]sh\\|bash\\|tcsh\\|es\\|xinit\\|startx\\)rc\\'" . sh-mode)
|
|
1219 ("/\\.\\([kz]shenv\\|xsession\\)\\'" . sh-mode)
|
|
1220 ;;; The following should come after the ChangeLog pattern
|
|
1221 ;;; for the sake of ChangeLog.1, etc.
|
|
1222 ;;; and after the .scm.[0-9] pattern too.
|
|
1223 ("\\.[12345678]\\'" . nroff-mode)
|
|
1224 ("\\.[tT]e[xX]\\'" . tex-mode)
|
|
1225 ("\\.\\(sty\\|cls\\|bbl\\)\\'" . latex-mode)
|
|
1226 ("\\.bib\\'" . bibtex-mode)
|
|
1227 ("\\.article\\'" . text-mode)
|
|
1228 ("\\.letter\\'" . text-mode)
|
|
1229 ("\\.\\(tcl\\|exp\\)\\'" . tcl-mode)
|
|
1230 ("\\.wrl\\'" . vrml-mode)
|
|
1231 ("\\.awk\\'" . awk-mode)
|
|
1232 ("\\.prolog\\'" . prolog-mode)
|
|
1233 ("\\.tar\\'" . tar-mode)
|
|
1234 ("\\.\\(arc\\|zip\\|lzh\\|zoo\\)\\'" . archive-mode)
|
|
1235 ;; Mailer puts message to be edited in
|
|
1236 ;; /tmp/Re.... or Message
|
|
1237 ("^/tmp/Re" . text-mode)
|
|
1238 ("/Message[0-9]*\\'" . text-mode)
|
|
1239 ("/drafts/[0-9]+\\'" . mh-letter-mode)
|
|
1240 ;; some news reader is reported to use this
|
|
1241 ("^/tmp/fol/" . text-mode)
|
|
1242 ("\\.y\\'" . c-mode)
|
|
1243 ("\\.lex\\'" . c-mode)
|
|
1244 ("\\.m\\'" . objc-mode)
|
|
1245 ("\\.oak\\'" . scheme-mode)
|
|
1246 ("\\.s?html?\\'" . html-mode)
|
|
1247 ("\\.htm?l?3\\'" . html3-mode)
|
|
1248 ("\\.\\(sgml?\\|dtd\\)\\'" . sgml-mode)
|
|
1249 ("\\.c?ps\\'" . postscript-mode)
|
|
1250 ;; .emacs following a directory delimiter
|
|
1251 ;; in either Unix or VMS syntax.
|
|
1252 ("[]>:/]\\..*emacs\\'" . emacs-lisp-mode)
|
|
1253 ;; _emacs following a directory delimiter
|
|
1254 ;; in MsDos syntax
|
|
1255 ("[:/]_emacs\\'" . emacs-lisp-mode)
|
|
1256 ("\\.m4\\'" . autoconf-mode)
|
|
1257 ("configure\\.in\\'" . autoconf-mode)
|
|
1258 ("\\.ml\\'" . lisp-mode)
|
|
1259 ("\\.ma?k\\'" . makefile-mode)
|
|
1260 ("[Mm]akefile\\(\\.\\|\\'\\)" . makefile-mode)
|
|
1261 ("\\.X\\(defaults\\|environment\\|resources\\|modmap\\)\\'" . xrdb-mode)
|
|
1262 ("/app-defaults/" . xrdb-mode)
|
|
1263 ("\\.[^/]*wm\\'" . winmgr-mode)
|
|
1264 ("\\.[^/]*wm2?rc" . winmgr-mode)
|
|
1265 ("\\.[Jj][Pp][Ee]?[Gg]\\'" . image-mode)
|
|
1266 ("\\.[Pp][Nn][Gg]\\'" . image-mode)
|
|
1267 ("\\.[Gg][Ii][Ff]\\'" . image-mode)
|
|
1268 )
|
|
1269 "Alist of filename patterns vs. corresponding major mode functions.
|
|
1270 Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL).
|
|
1271 \(NON-NIL stands for anything that is not nil; the value does not matter.)
|
|
1272 Visiting a file whose name matches REGEXP specifies FUNCTION as the
|
|
1273 mode function to use. FUNCTION will be called, unless it is nil.
|
|
1274
|
|
1275 If the element has the form (REGEXP FUNCTION NON-NIL), then after
|
|
1276 calling FUNCTION (if it's not nil), we delete the suffix that matched
|
|
1277 REGEXP and search the list again for another match.")
|
|
1278
|
|
1279 (defconst interpreter-mode-alist
|
|
1280 '(("^#!.*csh" . sh-mode)
|
|
1281 ("^#!.*sh\\b" . sh-mode)
|
|
1282 ("^#!.*\\b\\(scope\\|wish\\|tcl\\|expect\\)" . tcl-mode)
|
|
1283 ("perl" . perl-mode)
|
|
1284 ("python" . python-mode)
|
|
1285 ("awk\\b" . awk-mode)
|
|
1286 ("rexx" . rexx-mode)
|
|
1287 ("scm" . scheme-mode)
|
|
1288 ("^:" . sh-mode))
|
|
1289 "Alist mapping interpreter names to major modes.
|
|
1290 This alist is used to guess the major mode of a file based on the
|
|
1291 contents of the first line. This line often contains something like:
|
|
1292 #!/bin/sh
|
|
1293 but may contain something more imaginative like
|
|
1294 #! /bin/env python
|
|
1295 or
|
|
1296 eval 'exec perl -w -S $0 ${1+\"$@\"}'.
|
|
1297
|
|
1298 Each alist element looks like (INTERPRETER . MODE).
|
|
1299 The car of each element is a regular expression which is compared
|
|
1300 with the name of the interpreter specified in the first line.
|
|
1301 If it matches, mode MODE is selected.")
|
|
1302
|
|
1303 (defconst inhibit-first-line-modes-regexps (purecopy '("\\.tar\\'"))
|
|
1304 "List of regexps; if one matches a file name, don't look for `-*-'.")
|
|
1305
|
|
1306 (defconst inhibit-first-line-modes-suffixes nil
|
|
1307 "List of regexps for what to ignore, for `inhibit-first-line-modes-regexps'.
|
|
1308 When checking `inhibit-first-line-modes-regexps', we first discard
|
|
1309 from the end of the file name anything that matches one of these regexps.")
|
|
1310
|
|
1311 (defvar user-init-file
|
|
1312 "" ; set by command-line
|
|
1313 "File name including directory of user's initialization file.")
|
|
1314
|
|
1315 (defun set-auto-mode ()
|
|
1316 "Select major mode appropriate for current buffer.
|
|
1317 This checks for a -*- mode tag in the buffer's text,
|
|
1318 compares the filename against the entries in `auto-mode-alist',
|
|
1319 or checks the interpreter that runs this file against
|
|
1320 `interpreter-mode-alist'.
|
|
1321
|
|
1322 It does not check for the `mode:' local variable in the
|
|
1323 Local Variables section of the file; for that, use `hack-local-variables'.
|
|
1324
|
|
1325 If `enable-local-variables' is nil, this function does not check for a
|
|
1326 -*- mode tag."
|
|
1327 (save-excursion
|
|
1328 ;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*-
|
|
1329 ;; Do this by calling the hack-local-variables helper to avoid redundancy.
|
|
1330 ;; We bind enable-local-variables to nil this time because we're going to
|
219
|
1331 ;; call hack-local-variables-prop-line again later, "for real." Note that
|
|
1332 ;; this temporary binding does not prevent hack-local-variables-prop-line
|
|
1333 ;; from setting the major mode.
|
|
1334 (or (and enable-local-variables
|
|
1335 (let ((enable-local-variables nil))
|
|
1336 (hack-local-variables-prop-line nil))
|
|
1337 )
|
209
|
1338 ;; It's not in the -*- line, so check the auto-mode-alist, unless
|
|
1339 ;; this buffer isn't associated with a file.
|
|
1340 (null buffer-file-name)
|
|
1341 (let ((name (file-name-sans-versions buffer-file-name))
|
|
1342 (keep-going t))
|
|
1343 (while keep-going
|
|
1344 (setq keep-going nil)
|
|
1345 (let ((alist auto-mode-alist)
|
|
1346 (mode nil))
|
|
1347 ;; Find first matching alist entry.
|
|
1348 (let ((case-fold-search
|
|
1349 (memq system-type '(vax-vms windows-nt))))
|
|
1350 (while (and (not mode) alist)
|
|
1351 (if (string-match (car (car alist)) name)
|
|
1352 (if (and (consp (cdr (car alist)))
|
|
1353 (nth 2 (car alist)))
|
|
1354 (progn
|
|
1355 (setq mode (car (cdr (car alist)))
|
|
1356 name (substring name 0 (match-beginning 0))
|
|
1357 keep-going t))
|
|
1358 (setq mode (cdr (car alist))
|
|
1359 keep-going nil)))
|
|
1360 (setq alist (cdr alist))))
|
|
1361 ;; If we can't deduce a mode from the file name,
|
|
1362 ;; look for an interpreter specified in the first line.
|
|
1363 (if (and (null mode)
|
|
1364 (save-excursion ; XEmacs
|
|
1365 (goto-char (point-min))
|
|
1366 (looking-at "#!")))
|
|
1367 (let ((firstline
|
|
1368 (buffer-substring
|
|
1369 (point-min)
|
|
1370 (save-excursion
|
|
1371 (goto-char (point-min)) (end-of-line) (point)))))
|
|
1372 (setq alist interpreter-mode-alist)
|
|
1373 (while alist
|
|
1374 (if (string-match (car (car alist)) firstline)
|
|
1375 (progn
|
|
1376 (setq mode (cdr (car alist)))
|
|
1377 (setq alist nil))
|
|
1378 (setq alist (cdr alist))))))
|
|
1379 (if mode
|
|
1380 (funcall mode))
|
|
1381 ))))))
|
|
1382
|
|
1383 (defvar hack-local-variables-hook nil
|
|
1384 "Normal hook run after processing a file's local variables specs.
|
|
1385 Major modes can use this to examine user-specified local variables
|
|
1386 in order to initialize other data structure based on them.
|
|
1387
|
|
1388 This hook runs even if there were no local variables or if their
|
|
1389 evaluation was suppressed. See also `enable-local-variables' and
|
|
1390 `enable-local-eval'.")
|
|
1391
|
|
1392 (defun hack-local-variables (&optional force)
|
|
1393 "Parse, and bind or evaluate as appropriate, any local variables
|
|
1394 for current buffer."
|
|
1395 ;; Don't look for -*- if this file name matches any
|
|
1396 ;; of the regexps in inhibit-first-line-modes-regexps.
|
|
1397 (if (or (null buffer-file-name) ; don't lose if buffer has no file!
|
|
1398 (not (let ((temp inhibit-first-line-modes-regexps)
|
|
1399 (name (if buffer-file-name
|
|
1400 (file-name-sans-versions buffer-file-name)
|
|
1401 (buffer-name))))
|
|
1402 (while (let ((sufs inhibit-first-line-modes-suffixes))
|
|
1403 (while (and sufs (not
|
|
1404 (string-match (car sufs) name)))
|
|
1405 (setq sufs (cdr sufs)))
|
|
1406 sufs)
|
|
1407 (setq name (substring name 0 (match-beginning 0))))
|
|
1408 (while (and temp
|
|
1409 (not (string-match (car temp) name)))
|
|
1410 (setq temp (cdr temp))
|
|
1411 temp))))
|
|
1412 (progn
|
|
1413 ;; Look for variables in the -*- line.
|
|
1414 (hack-local-variables-prop-line force)
|
|
1415 ;; Look for "Local variables:" block in last page.
|
|
1416 (hack-local-variables-last-page force)))
|
|
1417 (run-hooks 'hack-local-variables-hook))
|
|
1418
|
|
1419 ;;; Local variables may be specified in the last page of the file (within 3k
|
|
1420 ;;; from the end of the file and after the last ^L) in the form
|
|
1421 ;;;
|
|
1422 ;;; Local variables:
|
|
1423 ;;; variable-name: variable-value
|
|
1424 ;;; end:
|
|
1425 ;;;
|
|
1426 ;;; The lines may begin with a common prefix, like ";;; " in the above
|
|
1427 ;;; example. They may also have a common suffix (" */" for example). In
|
|
1428 ;;; this form, the local variable "mode" can be used to change the major
|
|
1429 ;;; mode, and the local variable "eval" can be used to evaluate an arbitrary
|
|
1430 ;;; form.
|
|
1431 ;;;
|
|
1432 ;;; Local variables may also be specified in the first line of the file.
|
|
1433 ;;; Embedded in this line are a pair of "-*-" sequences. What lies between
|
|
1434 ;;; them are variable-name/variable-value pairs, like:
|
|
1435 ;;;
|
|
1436 ;;; -*- mode: emacs-lisp -*-
|
|
1437 ;;; or -*- mode: postscript; version-control: never -*-
|
|
1438 ;;; or -*- tags-file-name: "/foo/bar/TAGS" -*-
|
|
1439 ;;;
|
|
1440 ;;; The local variable "eval" is not used with this form. For hysterical
|
|
1441 ;;; reasons, the syntax "-*- modename -*-" is allowed as well.
|
|
1442 ;;;
|
|
1443
|
|
1444 (defun hack-local-variables-p (modeline)
|
|
1445 (or (eq enable-local-variables t)
|
|
1446 (and enable-local-variables
|
|
1447 (save-window-excursion
|
|
1448 (condition-case nil
|
|
1449 (switch-to-buffer (current-buffer))
|
|
1450 (error
|
|
1451 ;; If we fail to switch in the selected window,
|
|
1452 ;; it is probably a minibuffer.
|
|
1453 ;; So try another window.
|
|
1454 (condition-case nil
|
|
1455 (switch-to-buffer-other-window (current-buffer))
|
|
1456 (error
|
|
1457 (switch-to-buffer-other-frame (current-buffer))))))
|
|
1458 (or modeline (save-excursion
|
|
1459 (beginning-of-line)
|
|
1460 (set-window-start (selected-window) (point))))
|
|
1461 (y-or-n-p (format
|
|
1462 "Set local variables as specified %s of %s? "
|
|
1463 (if modeline "in -*- line" "at end")
|
|
1464 (if buffer-file-name
|
|
1465 (file-name-nondirectory buffer-file-name)
|
|
1466 (concat "buffer " (buffer-name)))))))))
|
|
1467
|
|
1468 (defun hack-local-variables-last-page (&optional force)
|
|
1469 ;; Set local variables set in the "Local Variables:" block of the last page.
|
|
1470 (save-excursion
|
|
1471 (goto-char (point-max))
|
|
1472 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move)
|
|
1473 (if (let ((case-fold-search t))
|
|
1474 (and (search-forward "Local Variables:" nil t)
|
|
1475 (or force
|
|
1476 (hack-local-variables-p nil))))
|
|
1477 (let ((continue t)
|
|
1478 prefix prefixlen suffix beg
|
|
1479 (enable-local-eval enable-local-eval))
|
|
1480 ;; The prefix is what comes before "local variables:" in its line.
|
|
1481 ;; The suffix is what comes after "local variables:" in its line.
|
|
1482 (skip-chars-forward " \t")
|
|
1483 (or (eolp)
|
|
1484 (setq suffix (buffer-substring (point)
|
|
1485 (progn (end-of-line) (point)))))
|
|
1486 (goto-char (match-beginning 0))
|
|
1487 (or (bolp)
|
|
1488 (setq prefix
|
|
1489 (buffer-substring (point)
|
|
1490 (progn (beginning-of-line) (point)))))
|
|
1491 (if prefix (setq prefixlen (length prefix)
|
|
1492 prefix (regexp-quote prefix)))
|
|
1493 (if suffix (setq suffix (concat (regexp-quote suffix) "$")))
|
|
1494 (while continue
|
|
1495 ;; Look at next local variable spec.
|
|
1496 (if selective-display (re-search-forward "[\n\C-m]")
|
|
1497 (forward-line 1))
|
|
1498 ;; Skip the prefix, if any.
|
|
1499 (if prefix
|
|
1500 (if (looking-at prefix)
|
|
1501 (forward-char prefixlen)
|
|
1502 (error "Local variables entry is missing the prefix")))
|
|
1503 ;; Find the variable name; strip whitespace.
|
|
1504 (skip-chars-forward " \t")
|
|
1505 (setq beg (point))
|
|
1506 (skip-chars-forward "^:\n")
|
|
1507 (if (eolp) (error "Missing colon in local variables entry"))
|
|
1508 (skip-chars-backward " \t")
|
|
1509 (let* ((str (buffer-substring beg (point)))
|
|
1510 (var (read str))
|
|
1511 val)
|
|
1512 ;; Setting variable named "end" means end of list.
|
|
1513 (if (string-equal (downcase str) "end")
|
|
1514 (setq continue nil)
|
|
1515 ;; Otherwise read the variable value.
|
|
1516 (skip-chars-forward "^:")
|
|
1517 (forward-char 1)
|
|
1518 (setq val (read (current-buffer)))
|
|
1519 (skip-chars-backward "\n")
|
|
1520 (skip-chars-forward " \t")
|
|
1521 (or (if suffix (looking-at suffix) (eolp))
|
|
1522 (error "Local variables entry is terminated incorrectly"))
|
|
1523 ;; Set the variable. "Variables" mode and eval are funny.
|
|
1524 (hack-one-local-variable var val))))))))
|
|
1525
|
|
1526 ;; jwz - New Version 20.1/19.15
|
|
1527 (defun hack-local-variables-prop-line (&optional force)
|
|
1528 ;; Set local variables specified in the -*- line.
|
|
1529 ;; Returns t if mode was set.
|
|
1530 (let ((result nil))
|
|
1531 (save-excursion
|
|
1532 (goto-char (point-min))
|
|
1533 (skip-chars-forward " \t\n\r")
|
|
1534 (let ((end (save-excursion
|
|
1535 ;; If the file begins with "#!"
|
|
1536 ;; (un*x exec interpreter magic), look
|
|
1537 ;; for mode frobs in the first two
|
|
1538 ;; lines. You cannot necessarily
|
|
1539 ;; put them in the first line of
|
|
1540 ;; such a file without screwing up
|
|
1541 ;; the interpreter invocation.
|
|
1542 (end-of-line (and (looking-at "^#!") 2))
|
|
1543 (point))))
|
|
1544 ;; Parse the -*- line into the `result' alist.
|
|
1545 (cond ((not (search-forward "-*-" end t))
|
|
1546 ;; doesn't have one.
|
|
1547 (setq force t))
|
|
1548 ((looking-at "[ \t]*\\([^ \t\n\r:;]+\\)\\([ \t]*-\\*-\\)")
|
|
1549 ;; Antiquated form: "-*- ModeName -*-".
|
|
1550 (setq result
|
|
1551 (list (cons 'mode
|
|
1552 (intern (buffer-substring
|
|
1553 (match-beginning 1)
|
|
1554 (match-end 1)))))
|
|
1555 ))
|
|
1556 (t
|
|
1557 ;; Usual form: '-*-' [ <variable> ':' <value> ';' ]* '-*-'
|
|
1558 ;; (last ";" is optional).
|
|
1559 (save-excursion
|
|
1560 (if (search-forward "-*-" end t)
|
|
1561 (setq end (- (point) 3))
|
|
1562 (error "-*- not terminated before end of line")))
|
|
1563 (while (< (point) end)
|
|
1564 (or (looking-at "[ \t]*\\([^ \t\n:]+\\)[ \t]*:[ \t]*")
|
|
1565 (error "malformed -*- line"))
|
|
1566 (goto-char (match-end 0))
|
|
1567 ;; There used to be a downcase here,
|
|
1568 ;; but the manual didn't say so,
|
|
1569 ;; and people want to set var names that aren't all lc.
|
|
1570 (let ((key (intern (buffer-substring
|
|
1571 (match-beginning 1)
|
|
1572 (match-end 1))))
|
|
1573 (val (save-restriction
|
|
1574 (narrow-to-region (point) end)
|
|
1575 (read (current-buffer)))))
|
|
1576 ;; Case sensitivity! Icepicks in my forehead!
|
|
1577 (if (equal (downcase (symbol-name key)) "mode")
|
|
1578 (setq key 'mode))
|
|
1579 (setq result (cons (cons key val) result))
|
|
1580 (skip-chars-forward " \t;")))
|
|
1581 (setq result (nreverse result))))))
|
|
1582
|
219
|
1583 (let ((set-any-p (or force
|
|
1584 ;; It's OK to force null specifications.
|
|
1585 (null result)
|
|
1586 ;; It's OK to force mode-only specifications.
|
|
1587 (let ((remaining result)
|
|
1588 (mode-specs-only t))
|
|
1589 (while remaining
|
|
1590 (if (eq (car (car remaining)) 'mode)
|
|
1591 (setq remaining (cdr remaining))
|
|
1592 ;; Otherwise, we have a real local.
|
|
1593 (setq mode-specs-only nil
|
|
1594 remaining nil))
|
|
1595 )
|
|
1596 mode-specs-only)
|
|
1597 ;; Otherwise, check.
|
|
1598 (hack-local-variables-p t)))
|
209
|
1599 (mode-p nil))
|
|
1600 (while result
|
|
1601 (let ((key (car (car result)))
|
|
1602 (val (cdr (car result))))
|
|
1603 (cond ((eq key 'mode)
|
219
|
1604 (setq mode-p t)
|
|
1605 (let ((mode (intern (concat (downcase (symbol-name val))
|
|
1606 "-mode"))))
|
|
1607 ;; Without this guard, `normal-mode' would potentially run
|
|
1608 ;; the major mode function twice: once via `set-auto-mode'
|
|
1609 ;; and once via `hack-local-variables'.
|
|
1610 (if (not (eq mode major-mode))
|
|
1611 (funcall mode))
|
|
1612 ))
|
209
|
1613 (set-any-p
|
|
1614 (hack-one-local-variable key val))
|
|
1615 (t
|
|
1616 nil)))
|
|
1617 (setq result (cdr result)))
|
|
1618 mode-p)))
|
|
1619
|
|
1620 (defconst ignored-local-variables
|
|
1621 (list 'enable-local-eval)
|
|
1622 "Variables to be ignored in a file's local variable spec.")
|
|
1623
|
|
1624 ;; Get confirmation before setting these variables as locals in a file.
|
|
1625 (put 'debugger 'risky-local-variable t)
|
|
1626 (put 'enable-local-eval 'risky-local-variable t)
|
|
1627 (put 'ignored-local-variables 'risky-local-variable t)
|
|
1628 (put 'eval 'risky-local-variable t)
|
|
1629 (put 'file-name-handler-alist 'risky-local-variable t)
|
|
1630 (put 'minor-mode-map-alist 'risky-local-variable t)
|
|
1631 (put 'after-load-alist 'risky-local-variable t)
|
|
1632 (put 'buffer-file-name 'risky-local-variable t)
|
|
1633 (put 'buffer-auto-save-file-name 'risky-local-variable t)
|
|
1634 (put 'buffer-file-truename 'risky-local-variable t)
|
|
1635 (put 'exec-path 'risky-local-variable t)
|
|
1636 (put 'load-path 'risky-local-variable t)
|
|
1637 (put 'exec-directory 'risky-local-variable t)
|
|
1638 (put 'process-environment 'risky-local-variable t)
|
|
1639 ;; Don't wait for outline.el to be loaded, for the sake of outline-minor-mode.
|
|
1640 (put 'outline-level 'risky-local-variable t)
|
|
1641 (put 'rmail-output-file-alist 'risky-local-variable t)
|
|
1642
|
|
1643 ;; This one is safe because the user gets to check it before it is used.
|
|
1644 (put 'compile-command 'safe-local-variable t)
|
|
1645
|
|
1646 ;(defun hack-one-local-variable-quotep (exp)
|
|
1647 ; (and (consp exp) (eq (car exp) 'quote) (consp (cdr exp))))
|
|
1648
|
|
1649 ;; "Set" one variable in a local variables spec.
|
|
1650 ;; A few variable names are treated specially.
|
|
1651 (defun hack-one-local-variable (var val)
|
|
1652 (cond ((eq var 'mode)
|
|
1653 (funcall (intern (concat (downcase (symbol-name val))
|
|
1654 "-mode"))))
|
|
1655 ((memq var ignored-local-variables)
|
|
1656 nil)
|
|
1657 ;; "Setting" eval means either eval it or do nothing.
|
|
1658 ;; Likewise for setting hook variables.
|
|
1659 ((or (get var 'risky-local-variable)
|
|
1660 (and
|
|
1661 (string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|-command$"
|
|
1662 (symbol-name var))
|
|
1663 (not (get var 'safe-local-variable))))
|
|
1664 ; ;; Permit evaling a put of a harmless property
|
|
1665 ; ;; if the args do nothing tricky.
|
|
1666 ; (if (or (and (eq var 'eval)
|
|
1667 ; (consp val)
|
|
1668 ; (eq (car val) 'put)
|
|
1669 ; (hack-one-local-variable-quotep (nth 1 val))
|
|
1670 ; (hack-one-local-variable-quotep (nth 2 val))
|
|
1671 ; ;; Only allow safe values of lisp-indent-hook;
|
|
1672 ; ;; not functions.
|
|
1673 ; (or (numberp (nth 3 val))
|
|
1674 ; (equal (nth 3 val) ''defun))
|
|
1675 ; (memq (nth 1 (nth 2 val))
|
|
1676 ; '(lisp-indent-hook)))
|
|
1677 (if (and (not (zerop (user-uid)))
|
|
1678 (or (eq enable-local-eval t)
|
|
1679 (and enable-local-eval
|
|
1680 (save-window-excursion
|
|
1681 (switch-to-buffer (current-buffer))
|
|
1682 (save-excursion
|
|
1683 (beginning-of-line)
|
|
1684 (set-window-start (selected-window) (point)))
|
|
1685 (setq enable-local-eval
|
|
1686 (y-or-n-p (format "Process `eval' or hook local variables in file %s? "
|
|
1687 (file-name-nondirectory buffer-file-name))))))))
|
|
1688 (if (eq var 'eval)
|
|
1689 (save-excursion (eval val))
|
|
1690 (make-local-variable var)
|
|
1691 (set var val))
|
|
1692 (message "Ignoring `eval:' in file's local variables")))
|
|
1693 ;; Ordinary variable, really set it.
|
|
1694 (t (make-local-variable var)
|
|
1695 (set var val))))
|
|
1696
|
|
1697 (defun set-visited-file-name (filename)
|
|
1698 "Change name of file visited in current buffer to FILENAME.
|
|
1699 The next time the buffer is saved it will go in the newly specified file.
|
|
1700 nil or empty string as argument means make buffer not be visiting any file.
|
|
1701 Remember to delete the initial contents of the minibuffer
|
|
1702 if you wish to pass an empty string as the argument."
|
|
1703 (interactive "FSet visited file name: ")
|
|
1704 (if (buffer-base-buffer)
|
|
1705 (error "An indirect buffer cannot visit a file"))
|
|
1706 (let (truename)
|
|
1707 (if filename
|
|
1708 (setq filename
|
|
1709 (if (string-equal filename "")
|
|
1710 nil
|
|
1711 (expand-file-name filename))))
|
|
1712 (if filename
|
|
1713 (progn
|
|
1714 (setq truename (file-truename filename))
|
|
1715 ;; #### Do we need to check if truename is non-nil?
|
|
1716 (if find-file-use-truenames
|
|
1717 (setq filename truename))))
|
|
1718 (or (equal filename buffer-file-name)
|
|
1719 (progn
|
|
1720 (and filename (lock-buffer filename))
|
|
1721 (unlock-buffer)))
|
|
1722 (setq buffer-file-name filename)
|
|
1723 (if filename ; make buffer name reflect filename.
|
|
1724 (let ((new-name (file-name-nondirectory buffer-file-name)))
|
|
1725 (if (string= new-name "")
|
|
1726 (error "Empty file name"))
|
|
1727 (if (eq system-type 'vax-vms)
|
|
1728 (setq new-name (downcase new-name)))
|
|
1729 (setq default-directory (file-name-directory buffer-file-name))
|
|
1730 (or (string= new-name (buffer-name))
|
|
1731 (rename-buffer new-name t))))
|
|
1732 (setq buffer-backed-up nil)
|
|
1733 (clear-visited-file-modtime)
|
|
1734 (compute-buffer-file-truename) ; insert-file-contents does this too.
|
|
1735 ; ;; Abbreviate the file names of the buffer.
|
|
1736 ; (if truename
|
|
1737 ; (progn
|
|
1738 ; (setq buffer-file-truename (abbreviate-file-name truename))
|
|
1739 ; (if find-file-visit-truename
|
|
1740 ; (setq buffer-file-name buffer-file-truename))))
|
|
1741 (setq buffer-file-number
|
|
1742 (if filename
|
|
1743 (nthcdr 10 (file-attributes buffer-file-name))
|
|
1744 nil)))
|
|
1745 ;; write-file-hooks is normally used for things like ftp-find-file
|
|
1746 ;; that visit things that are not local files as if they were files.
|
|
1747 ;; Changing to visit an ordinary local file instead should flush the hook.
|
|
1748 (kill-local-variable 'write-file-hooks)
|
|
1749 (kill-local-variable 'after-save-hook)
|
|
1750 (kill-local-variable 'local-write-file-hooks)
|
|
1751 (kill-local-variable 'write-file-data-hooks)
|
|
1752 (kill-local-variable 'revert-buffer-function)
|
|
1753 (kill-local-variable 'backup-inhibited)
|
|
1754 ;; If buffer was read-only because of version control,
|
|
1755 ;; that reason is gone now, so make it writable.
|
|
1756 (if (and (boundp 'vc-mode) vc-mode)
|
|
1757 (setq buffer-read-only nil))
|
|
1758 (kill-local-variable 'vc-mode)
|
|
1759 ;; Turn off backup files for certain file names.
|
|
1760 ;; Since this is a permanent local, the major mode won't eliminate it.
|
|
1761 (and (not (funcall backup-enable-predicate buffer-file-name))
|
|
1762 (progn
|
|
1763 (make-local-variable 'backup-inhibited)
|
|
1764 (setq backup-inhibited t)))
|
|
1765 (let ((oauto buffer-auto-save-file-name))
|
|
1766 ;; If auto-save was not already on, turn it on if appropriate.
|
|
1767 (if (not buffer-auto-save-file-name)
|
|
1768 (and buffer-file-name auto-save-default
|
|
1769 (auto-save-mode t))
|
|
1770 ;; If auto save is on, start using a new name.
|
|
1771 ;; We deliberately don't rename or delete the old auto save
|
|
1772 ;; for the old visited file name. This is because perhaps
|
|
1773 ;; the user wants to save the new state and then compare with the
|
|
1774 ;; previous state from the auto save file.
|
|
1775 (setq buffer-auto-save-file-name
|
|
1776 (make-auto-save-file-name)))
|
|
1777 ;; Rename the old auto save file if any.
|
|
1778 (and oauto buffer-auto-save-file-name
|
|
1779 (file-exists-p oauto)
|
|
1780 (rename-file oauto buffer-auto-save-file-name t)))
|
|
1781 (if buffer-file-name
|
|
1782 (set-buffer-modified-p t))
|
|
1783 ;; #### ??
|
|
1784 (run-hooks 'after-set-visited-file-name-hooks))
|
|
1785
|
|
1786 (defun write-file (filename &optional confirm codesys)
|
|
1787 "Write current buffer into file FILENAME.
|
|
1788 Makes buffer visit that file, and marks it not modified.
|
|
1789 If the buffer is already visiting a file, you can specify
|
|
1790 a directory name as FILENAME, to write a file of the same
|
|
1791 old name in that directory.
|
|
1792 If optional second arg CONFIRM is non-nil,
|
|
1793 ask for confirmation for overwriting an existing file.
|
|
1794 Under XEmacs/Mule, optional third argument specifies the
|
|
1795 coding system to use when encoding the file. Interactively,
|
|
1796 with a prefix argument, you will be prompted for the coding system."
|
|
1797 ;; (interactive "FWrite file: ")
|
|
1798 (interactive
|
|
1799 (list (if buffer-file-name
|
|
1800 (read-file-name "Write file: "
|
|
1801 nil nil nil nil)
|
|
1802 (read-file-name "Write file: "
|
|
1803 (cdr (assq 'default-directory
|
|
1804 (buffer-local-variables)))
|
|
1805 nil nil (buffer-name)))
|
|
1806 t
|
|
1807 (if (and current-prefix-arg (featurep 'mule))
|
|
1808 (read-coding-system "Coding system: "))))
|
|
1809 (and (eq (current-buffer) mouse-grabbed-buffer)
|
|
1810 (error "Can't write minibuffer window"))
|
|
1811 (or (null filename) (string-equal filename "")
|
|
1812 (progn
|
|
1813 ;; If arg is just a directory,
|
|
1814 ;; use same file name, but in that directory.
|
|
1815 (if (and (file-directory-p filename) buffer-file-name)
|
|
1816 (setq filename (concat (file-name-as-directory filename)
|
|
1817 (file-name-nondirectory buffer-file-name))))
|
|
1818 (and confirm
|
|
1819 (file-exists-p filename)
|
|
1820 (or (y-or-n-p (format "File `%s' exists; overwrite? " filename))
|
|
1821 (error "Canceled")))
|
|
1822 (set-visited-file-name filename)))
|
|
1823 (set-buffer-modified-p t)
|
|
1824 (setq buffer-read-only nil)
|
|
1825 (if codesys
|
|
1826 (let ((buffer-file-coding-system (get-coding-system codesys)))
|
|
1827 (save-buffer))
|
|
1828 (save-buffer)))
|
|
1829
|
|
1830 (defun backup-buffer ()
|
|
1831 "Make a backup of the disk file visited by the current buffer, if appropriate.
|
|
1832 This is normally done before saving the buffer the first time.
|
|
1833 If the value is non-nil, it is the result of `file-modes' on the original file;
|
|
1834 this means that the caller, after saving the buffer, should change the modes
|
|
1835 of the new file to agree with the old modes."
|
|
1836 (if buffer-file-name
|
|
1837 (let ((handler (find-file-name-handler buffer-file-name 'backup-buffer)))
|
|
1838 (if handler
|
|
1839 (funcall handler 'backup-buffer)
|
|
1840 (if (and make-backup-files
|
|
1841 (not backup-inhibited)
|
|
1842 (not buffer-backed-up)
|
|
1843 (file-exists-p buffer-file-name)
|
|
1844 (memq (aref (elt (file-attributes buffer-file-name) 8) 0)
|
|
1845 '(?- ?l)))
|
|
1846 (let ((real-file-name buffer-file-name)
|
|
1847 backup-info backupname targets setmodes)
|
|
1848 ;; If specified name is a symbolic link, chase it to the target.
|
|
1849 ;; Thus we make the backups in the directory where the real file is.
|
|
1850 (setq real-file-name (file-chase-links real-file-name))
|
|
1851 (setq backup-info (find-backup-file-name real-file-name)
|
|
1852 backupname (car backup-info)
|
|
1853 targets (cdr backup-info))
|
|
1854 ;;; (if (file-directory-p buffer-file-name)
|
|
1855 ;;; (error "Cannot save buffer in directory %s" buffer-file-name))
|
|
1856 (if backup-info
|
|
1857 (condition-case ()
|
|
1858 (let ((delete-old-versions
|
|
1859 ;; If have old versions to maybe delete,
|
|
1860 ;; ask the user to confirm now, before doing anything.
|
|
1861 ;; But don't actually delete til later.
|
|
1862 (and targets
|
|
1863 (or (eq delete-old-versions t)
|
|
1864 (eq delete-old-versions nil))
|
|
1865 (or delete-old-versions
|
|
1866 (y-or-n-p (format "Delete excess backup versions of %s? "
|
|
1867 real-file-name))))))
|
|
1868 ;; Actually write the back up file.
|
|
1869 (condition-case ()
|
|
1870 (if (or file-precious-flag
|
|
1871 ; (file-symlink-p buffer-file-name)
|
|
1872 backup-by-copying
|
|
1873 (and backup-by-copying-when-linked
|
|
1874 (> (file-nlinks real-file-name) 1))
|
|
1875 (and backup-by-copying-when-mismatch
|
|
1876 (let ((attr (file-attributes real-file-name)))
|
|
1877 (or (nth 9 attr)
|
|
1878 (not (file-ownership-preserved-p real-file-name))))))
|
|
1879 (condition-case ()
|
|
1880 (copy-file real-file-name backupname t t)
|
|
1881 (file-error
|
|
1882 ;; If copying fails because file BACKUPNAME
|
|
1883 ;; is not writable, delete that file and try again.
|
|
1884 (if (and (file-exists-p backupname)
|
|
1885 (not (file-writable-p backupname)))
|
|
1886 (delete-file backupname))
|
|
1887 (copy-file real-file-name backupname t t)))
|
|
1888 ;; rename-file should delete old backup.
|
|
1889 (rename-file real-file-name backupname t)
|
|
1890 (setq setmodes (file-modes backupname)))
|
|
1891 (file-error
|
|
1892 ;; If trouble writing the backup, write it in ~.
|
|
1893 (setq backupname (expand-file-name "~/%backup%~"))
|
|
1894 (message "Cannot write backup file; backing up in ~/%%backup%%~")
|
|
1895 (sleep-for 1)
|
|
1896 (condition-case ()
|
|
1897 (copy-file real-file-name backupname t t)
|
|
1898 (file-error
|
|
1899 ;; If copying fails because file BACKUPNAME
|
|
1900 ;; is not writable, delete that file and try again.
|
|
1901 (if (and (file-exists-p backupname)
|
|
1902 (not (file-writable-p backupname)))
|
|
1903 (delete-file backupname))
|
|
1904 (copy-file real-file-name backupname t t)))))
|
|
1905 (setq buffer-backed-up t)
|
|
1906 ;; Now delete the old versions, if desired.
|
|
1907 (if delete-old-versions
|
|
1908 (while targets
|
|
1909 (condition-case ()
|
|
1910 (delete-file (car targets))
|
|
1911 (file-error nil))
|
|
1912 (setq targets (cdr targets))))
|
|
1913 setmodes)
|
|
1914 (file-error nil)))))))))
|
|
1915
|
|
1916 (defun file-name-sans-versions (name &optional keep-backup-version)
|
|
1917 "Return FILENAME sans backup versions or strings.
|
|
1918 This is a separate procedure so your site-init or startup file can
|
|
1919 redefine it.
|
|
1920 If the optional argument KEEP-BACKUP-VERSION is non-nil,
|
|
1921 we do not remove backup version numbers, only true file version numbers."
|
|
1922 (let ((handler (find-file-name-handler name 'file-name-sans-versions)))
|
|
1923 (if handler
|
|
1924 (funcall handler 'file-name-sans-versions name keep-backup-version)
|
|
1925 (substring name 0
|
|
1926 (if (eq system-type 'vax-vms)
|
|
1927 ;; VMS version number is (a) semicolon, optional
|
|
1928 ;; sign, zero or more digits or (b) period, option
|
|
1929 ;; sign, zero or more digits, provided this is the
|
|
1930 ;; second period encountered outside of the
|
|
1931 ;; device/directory part of the file name.
|
|
1932 (or (string-match ";[-+]?[0-9]*\\'" name)
|
|
1933 (if (string-match "\\.[^]>:]*\\(\\.[-+]?[0-9]*\\)\\'"
|
|
1934 name)
|
|
1935 (match-beginning 1))
|
|
1936 (length name))
|
|
1937 (if keep-backup-version
|
|
1938 (length name)
|
|
1939 (or (string-match "\\.~[0-9.]+~\\'" name)
|
|
1940 ;; XEmacs - VC uses extensions like ".~tagname~" or ".~1.1.5.2~"
|
|
1941 (let ((pos (string-match "\\.~\\([^.~ \t]+\\|[0-9.]+\\)~\\'" name)))
|
|
1942 (and pos
|
|
1943 ;; #### - is this filesystem check too paranoid?
|
|
1944 (file-exists-p (substring name 0 pos))
|
|
1945 pos))
|
|
1946 (string-match "~\\'" name)
|
|
1947 (length name))))))))
|
|
1948
|
|
1949 (defun file-ownership-preserved-p (file)
|
|
1950 "Returns t if deleting FILE and rewriting it would preserve the owner."
|
|
1951 (let ((handler (find-file-name-handler file 'file-ownership-preserved-p)))
|
|
1952 (if handler
|
|
1953 (funcall handler 'file-ownership-preserved-p file)
|
|
1954 (let ((attributes (file-attributes file)))
|
|
1955 ;; Return t if the file doesn't exist, since it's true that no
|
|
1956 ;; information would be lost by an (attempted) delete and create.
|
|
1957 (or (null attributes)
|
|
1958 (= (nth 2 attributes) (user-uid)))))))
|
|
1959
|
|
1960 (defun file-name-sans-extension (filename)
|
|
1961 "Return FILENAME sans final \"extension\".
|
|
1962 The extension, in a file name, is the part that follows the last `.'."
|
|
1963 (save-match-data
|
|
1964 (let ((file (file-name-sans-versions (file-name-nondirectory filename)))
|
|
1965 directory)
|
|
1966 (if (string-match "\\.[^.]*\\'" file)
|
|
1967 (if (setq directory (file-name-directory filename))
|
|
1968 (expand-file-name (substring file 0 (match-beginning 0))
|
|
1969 directory)
|
|
1970 (substring file 0 (match-beginning 0)))
|
|
1971 filename))))
|
|
1972
|
|
1973 (defun make-backup-file-name (file)
|
|
1974 "Create the non-numeric backup file name for FILE.
|
|
1975 This is a separate function so you can redefine it for customization."
|
|
1976 (if (eq system-type 'ms-dos)
|
|
1977 (let ((fn (file-name-nondirectory file)))
|
|
1978 (concat (file-name-directory file)
|
|
1979 (if (string-match "\\([^.]*\\)\\(\\..*\\)?" fn)
|
|
1980 (substring fn 0 (match-end 1)))
|
|
1981 ".bak"))
|
|
1982 (concat file "~")))
|
|
1983
|
|
1984 (defun backup-file-name-p (file)
|
|
1985 "Return non-nil if FILE is a backup file name (numeric or not).
|
|
1986 This is a separate function so you can redefine it for customization.
|
|
1987 You may need to redefine `file-name-sans-versions' as well."
|
|
1988 (if (eq system-type 'ms-dos)
|
|
1989 (string-match "\\.bak\\'" file)
|
|
1990 (string-match "~\\'" file)))
|
|
1991
|
|
1992 ;; This is used in various files.
|
|
1993 ;; The usage of bv-length is not very clean,
|
|
1994 ;; but I can't see a good alternative,
|
|
1995 ;; so as of now I am leaving it alone.
|
|
1996 (defun backup-extract-version (fn)
|
|
1997 "Given the name of a numeric backup file, return the backup number.
|
|
1998 Uses the free variable `bv-length', whose value should be
|
|
1999 the index in the name where the version number begins."
|
|
2000 (declare (special bv-length))
|
|
2001 (if (and (string-match "[0-9]+~\\'" fn bv-length)
|
|
2002 (= (match-beginning 0) bv-length))
|
|
2003 (string-to-int (substring fn bv-length -1))
|
|
2004 0))
|
|
2005
|
|
2006 ;; I believe there is no need to alter this behavior for VMS;
|
|
2007 ;; since backup files are not made on VMS, it should not get called.
|
|
2008 (defun find-backup-file-name (fn)
|
|
2009 "Find a file name for a backup file, and suggestions for deletions.
|
|
2010 Value is a list whose car is the name for the backup file
|
|
2011 and whose cdr is a list of old versions to consider deleting now.
|
|
2012 If the value is nil, don't make a backup."
|
|
2013 (let ((handler (find-file-name-handler fn 'find-backup-file-name)))
|
|
2014 ;; Run a handler for this function so that ange-ftp can refuse to do it.
|
|
2015 (if handler
|
|
2016 (funcall handler 'find-backup-file-name fn)
|
|
2017 (if (eq version-control 'never)
|
|
2018 (list (make-backup-file-name fn))
|
|
2019 (let* ((base-versions (concat (file-name-nondirectory fn) ".~"))
|
|
2020 ;; used by backup-extract-version:
|
|
2021 (bv-length (length base-versions))
|
|
2022 possibilities
|
|
2023 (versions nil)
|
|
2024 (high-water-mark 0)
|
|
2025 (deserve-versions-p nil)
|
|
2026 (number-to-delete 0))
|
|
2027 (condition-case ()
|
|
2028 (setq possibilities (file-name-all-completions
|
|
2029 base-versions
|
|
2030 (file-name-directory fn))
|
|
2031 versions (sort (mapcar
|
|
2032 #'backup-extract-version
|
|
2033 possibilities)
|
|
2034 '<)
|
|
2035 high-water-mark (apply #'max 0 versions)
|
|
2036 deserve-versions-p (or version-control
|
|
2037 (> high-water-mark 0))
|
|
2038 number-to-delete (- (length versions)
|
|
2039 kept-old-versions kept-new-versions -1))
|
|
2040 (file-error
|
|
2041 (setq possibilities nil)))
|
|
2042 (if (not deserve-versions-p)
|
|
2043 (list (make-backup-file-name fn))
|
|
2044 (cons (concat fn ".~" (int-to-string (1+ high-water-mark)) "~")
|
|
2045 (if (and (> number-to-delete 0)
|
|
2046 ;; Delete nothing if there is overflow
|
|
2047 ;; in the number of versions to keep.
|
|
2048 (>= (+ kept-new-versions kept-old-versions -1) 0))
|
|
2049 (mapcar #'(lambda (n)
|
|
2050 (concat fn ".~" (int-to-string n) "~"))
|
|
2051 (let ((v (nthcdr kept-old-versions versions)))
|
|
2052 (rplacd (nthcdr (1- number-to-delete) v) ())
|
|
2053 v))))))))))
|
|
2054
|
|
2055 (defun file-nlinks (filename)
|
|
2056 "Return number of names file FILENAME has."
|
|
2057 (car (cdr (file-attributes filename))))
|
|
2058
|
|
2059 (defun file-relative-name (filename &optional directory)
|
|
2060 "Convert FILENAME to be relative to DIRECTORY (default: default-directory)."
|
|
2061 (setq filename (expand-file-name filename)
|
|
2062 directory (file-name-as-directory (expand-file-name
|
|
2063 (or directory default-directory))))
|
|
2064 (let ((ancestor ""))
|
|
2065 (while (not (string-match (concat "^" (regexp-quote directory)) filename))
|
|
2066 (setq directory (file-name-directory (substring directory 0 -1))
|
|
2067 ancestor (concat "../" ancestor)))
|
|
2068 (concat ancestor (substring filename (match-end 0)))))
|
|
2069
|
|
2070 (defun save-buffer (&optional args)
|
|
2071 "Save current buffer in visited file if modified. Versions described below.
|
|
2072
|
|
2073 By default, makes the previous version into a backup file
|
|
2074 if previously requested or if this is the first save.
|
|
2075 With 1 or 3 \\[universal-argument]'s, marks this version
|
|
2076 to become a backup when the next save is done.
|
|
2077 With 2 or 3 \\[universal-argument]'s,
|
|
2078 unconditionally makes the previous version into a backup file.
|
|
2079 With argument of 0, never makes the previous version into a backup file.
|
|
2080
|
|
2081 If a file's name is FOO, the names of its numbered backup versions are
|
|
2082 FOO.~i~ for various integers i. A non-numbered backup file is called FOO~.
|
|
2083 Numeric backups (rather than FOO~) will be made if value of
|
|
2084 `version-control' is not the atom `never' and either there are already
|
|
2085 numeric versions of the file being backed up, or `version-control' is
|
|
2086 non-nil.
|
|
2087 We don't want excessive versions piling up, so there are variables
|
|
2088 `kept-old-versions', which tells XEmacs how many oldest versions to keep,
|
|
2089 and `kept-new-versions', which tells how many newest versions to keep.
|
|
2090 Defaults are 2 old versions and 2 new.
|
|
2091 `dired-kept-versions' controls dired's clean-directory (.) command.
|
|
2092 If `delete-old-versions' is nil, system will query user
|
|
2093 before trimming versions. Otherwise it does it silently."
|
|
2094 (interactive "_p")
|
|
2095 (let ((modp (buffer-modified-p))
|
|
2096 (large (> (buffer-size) 50000))
|
|
2097 (make-backup-files (or (and make-backup-files (not (eq args 0)))
|
|
2098 (memq args '(16 64)))))
|
|
2099 (and modp (memq args '(16 64)) (setq buffer-backed-up nil))
|
|
2100 (if (and modp large) (display-message
|
|
2101 'progress (format "Saving file %s..."
|
|
2102 (buffer-file-name))))
|
|
2103 (basic-save-buffer)
|
|
2104 (and modp (memq args '(4 64)) (setq buffer-backed-up nil))))
|
|
2105
|
|
2106 (defun delete-auto-save-file-if-necessary (&optional force)
|
|
2107 "Delete auto-save file for current buffer if `delete-auto-save-files' is t.
|
|
2108 Normally delete only if the file was written by this XEmacs
|
|
2109 since the last real save, but optional arg FORCE non-nil means delete anyway."
|
|
2110 (and buffer-auto-save-file-name delete-auto-save-files
|
|
2111 (not (string= buffer-file-name buffer-auto-save-file-name))
|
|
2112 (or force (recent-auto-save-p))
|
|
2113 (progn
|
|
2114 (condition-case ()
|
|
2115 (delete-file buffer-auto-save-file-name)
|
|
2116 (file-error nil))
|
|
2117 (set-buffer-auto-saved))))
|
|
2118
|
|
2119 ;; XEmacs change (from Sun)
|
|
2120 ;; used to communicate with continue-save-buffer:
|
|
2121 (defvar continue-save-buffer-hooks-tail nil)
|
|
2122
|
|
2123 ;; Not in FSFmacs
|
|
2124 (defun basic-write-file-data (realname truename)
|
|
2125 ;; call the hooks until the bytes are put
|
|
2126 ;; call write-region as a last resort
|
|
2127 (let ((region-written nil)
|
|
2128 (hooks write-file-data-hooks))
|
|
2129 (while (and hooks (not region-written))
|
|
2130 (setq region-written (funcall (car hooks) realname)
|
|
2131 hooks (cdr hooks)))
|
|
2132 (if (not region-written)
|
|
2133 (write-region (point-min) (point-max) realname nil t truename))))
|
|
2134
|
|
2135 (put 'after-save-hook 'permanent-local t)
|
|
2136 (defvar after-save-hook nil
|
|
2137 "Normal hook that is run after a buffer is saved to its file.
|
|
2138 These hooks are considered to pertain to the visited file.
|
|
2139 So this list is cleared if you change the visited file name.")
|
|
2140
|
|
2141 (defun files-fetch-hook-value (hook)
|
|
2142 (let ((localval (symbol-value hook))
|
|
2143 (globalval (default-value hook)))
|
|
2144 (if (memq t localval)
|
|
2145 (setq localval (append (delq t localval) (delq t globalval))))
|
|
2146 localval))
|
|
2147
|
|
2148 (defun basic-save-buffer ()
|
|
2149 "Save the current buffer in its visited file, if it has been modified.
|
|
2150 After saving the buffer, run `after-save-hook'."
|
|
2151 (interactive)
|
|
2152 (save-excursion
|
|
2153 ;; In an indirect buffer, save its base buffer instead.
|
|
2154 (if (buffer-base-buffer)
|
|
2155 (set-buffer (buffer-base-buffer)))
|
|
2156 (if (buffer-modified-p)
|
|
2157 (let ((recent-save (recent-auto-save-p)))
|
|
2158 ;; On VMS, rename file and buffer to get rid of version number.
|
|
2159 (if (and (eq system-type 'vax-vms)
|
|
2160 (not (string= buffer-file-name
|
|
2161 (file-name-sans-versions buffer-file-name))))
|
|
2162 (let (buffer-new-name)
|
|
2163 ;; Strip VMS version number before save.
|
|
2164 (setq buffer-file-name
|
|
2165 (file-name-sans-versions buffer-file-name))
|
|
2166 ;; Construct a (unique) buffer name to correspond.
|
|
2167 (let ((buf (create-file-buffer (downcase buffer-file-name))))
|
|
2168 (setq buffer-new-name (buffer-name buf))
|
|
2169 (kill-buffer buf))
|
|
2170 (rename-buffer buffer-new-name)))
|
|
2171 ;; If buffer has no file name, ask user for one.
|
|
2172 (or buffer-file-name
|
|
2173 (let ((filename
|
|
2174 (expand-file-name
|
|
2175 (read-file-name "File to save in: ") nil)))
|
|
2176 (and (file-exists-p filename)
|
|
2177 (or (y-or-n-p (format "File `%s' exists; overwrite? "
|
|
2178 filename))
|
|
2179 (error "Canceled")))
|
|
2180 (set-visited-file-name filename)))
|
|
2181 (or (verify-visited-file-modtime (current-buffer))
|
|
2182 (not (file-exists-p buffer-file-name))
|
|
2183 (yes-or-no-p
|
|
2184 (format "%s has changed since visited or saved. Save anyway? "
|
|
2185 (file-name-nondirectory buffer-file-name)))
|
|
2186 (error "Save not confirmed"))
|
|
2187 (save-restriction
|
|
2188 (widen)
|
|
2189 (and (> (point-max) 1)
|
|
2190 (/= (char-after (1- (point-max))) ?\n)
|
|
2191 (not (and (eq selective-display t)
|
|
2192 (= (char-after (1- (point-max))) ?\r)))
|
|
2193 (or (eq require-final-newline t)
|
|
2194 (and require-final-newline
|
|
2195 (y-or-n-p
|
|
2196 (format "Buffer %s does not end in newline. Add one? "
|
|
2197 (buffer-name)))))
|
|
2198 (save-excursion
|
|
2199 (goto-char (point-max))
|
|
2200 (insert ?\n)))
|
|
2201 ;;
|
|
2202 ;; Run the write-file-hooks until one returns non-null.
|
|
2203 ;; Bind after-save-hook to nil while running the
|
|
2204 ;; write-file-hooks so that if this function is called
|
|
2205 ;; recursively (from inside a write-file-hook) the
|
|
2206 ;; after-hooks will only get run once (from the
|
|
2207 ;; outermost call).
|
|
2208 ;;
|
|
2209 ;; Ugh, have to duplicate logic of run-hook-with-args-until-success
|
|
2210 (let ((hooks (append (files-fetch-hook-value 'write-contents-hooks)
|
|
2211 (files-fetch-hook-value
|
|
2212 'local-write-file-hooks)
|
|
2213 (files-fetch-hook-value 'write-file-hooks)))
|
|
2214 (after-save-hook nil)
|
|
2215 (local-write-file-hooks nil)
|
|
2216 (write-contents-hooks nil)
|
|
2217 (write-file-hooks nil)
|
|
2218 done)
|
|
2219 (while (and hooks
|
|
2220 (let ((continue-save-buffer-hooks-tail hooks))
|
|
2221 (not (setq done (funcall (car hooks))))))
|
|
2222 (setq hooks (cdr hooks)))
|
|
2223 ;; If a hook returned t, file is already "written".
|
|
2224 ;; Otherwise, write it the usual way now.
|
|
2225 (if (not done)
|
|
2226 (basic-save-buffer-1)))
|
|
2227 ;; XEmacs: next two clauses (buffer-file-number setting and
|
|
2228 ;; set-file-modes) moved into basic-save-buffer-1.
|
|
2229 )
|
|
2230 ;; If the auto-save file was recent before this command,
|
|
2231 ;; delete it now.
|
|
2232 (delete-auto-save-file-if-necessary recent-save)
|
|
2233 ;; Support VC `implicit' locking.
|
|
2234 (when (fboundp 'vc-after-save)
|
|
2235 (vc-after-save))
|
|
2236 (run-hooks 'after-save-hook))
|
|
2237 (display-message 'no-log "(No changes need to be saved)"))))
|
|
2238
|
|
2239 ;; This does the "real job" of writing a buffer into its visited file
|
|
2240 ;; and making a backup file. This is what is normally done
|
|
2241 ;; but inhibited if one of write-file-hooks returns non-nil.
|
|
2242 ;; It returns a value to store in setmodes.
|
|
2243 (defun basic-save-buffer-1 ()
|
|
2244 (let (setmodes tempsetmodes)
|
|
2245 (if (not (file-writable-p buffer-file-name))
|
|
2246 (let ((dir (file-name-directory buffer-file-name)))
|
|
2247 (if (not (file-directory-p dir))
|
|
2248 (error "%s is not a directory" dir)
|
|
2249 (if (not (file-exists-p buffer-file-name))
|
|
2250 (error "Directory %s write-protected" dir)
|
|
2251 (if (yes-or-no-p
|
|
2252 (format "File %s is write-protected; try to save anyway? "
|
|
2253 (file-name-nondirectory
|
|
2254 buffer-file-name)))
|
|
2255 (setq tempsetmodes t)
|
|
2256 (error
|
|
2257 "Attempt to save to a file which you aren't allowed to write"))))))
|
|
2258 (or buffer-backed-up
|
|
2259 (setq setmodes (backup-buffer)))
|
|
2260 (let ((dir (file-name-directory buffer-file-name)))
|
|
2261 (if (and file-precious-flag
|
|
2262 (file-writable-p dir))
|
|
2263 ;; If file is precious, write temp name, then rename it.
|
|
2264 ;; This requires write access to the containing dir,
|
|
2265 ;; which is why we don't try it if we don't have that access.
|
|
2266 (let ((realname buffer-file-name)
|
|
2267 tempname nogood i succeed
|
|
2268 (old-modtime (visited-file-modtime)))
|
|
2269 (setq i 0)
|
|
2270 (setq nogood t)
|
|
2271 ;; Find the temporary name to write under.
|
|
2272 (while nogood
|
|
2273 (setq tempname (format "%s#tmp#%d" dir i))
|
|
2274 (setq nogood (file-exists-p tempname))
|
|
2275 (setq i (1+ i)))
|
|
2276 (unwind-protect
|
|
2277 (progn (clear-visited-file-modtime)
|
|
2278 (write-region (point-min) (point-max)
|
|
2279 tempname nil realname
|
|
2280 buffer-file-truename)
|
|
2281 (setq succeed t))
|
|
2282 ;; If writing the temp file fails,
|
|
2283 ;; delete the temp file.
|
|
2284 (or succeed
|
|
2285 (progn
|
|
2286 (delete-file tempname)
|
|
2287 (set-visited-file-modtime old-modtime))))
|
|
2288 ;; Since we have created an entirely new file
|
|
2289 ;; and renamed it, make sure it gets the
|
|
2290 ;; right permission bits set.
|
|
2291 (setq setmodes (file-modes buffer-file-name))
|
|
2292 ;; We succeeded in writing the temp file,
|
|
2293 ;; so rename it.
|
|
2294 (rename-file tempname buffer-file-name t))
|
|
2295 ;; If file not writable, see if we can make it writable
|
|
2296 ;; temporarily while we write it.
|
|
2297 ;; But no need to do so if we have just backed it up
|
|
2298 ;; (setmodes is set) because that says we're superseding.
|
|
2299 (cond ((and tempsetmodes (not setmodes))
|
|
2300 ;; Change the mode back, after writing.
|
|
2301 (setq setmodes (file-modes buffer-file-name))
|
|
2302 (set-file-modes buffer-file-name 511)))
|
|
2303 (basic-write-file-data buffer-file-name buffer-file-truename)))
|
|
2304 (setq buffer-file-number
|
|
2305 (if buffer-file-name
|
|
2306 (nth 10 (file-attributes buffer-file-name))
|
|
2307 nil))
|
|
2308 (if setmodes
|
|
2309 (condition-case ()
|
|
2310 (set-file-modes buffer-file-name setmodes)
|
|
2311 (error nil)))))
|
|
2312
|
|
2313 ;; XEmacs change, from Sun
|
|
2314 (defun continue-save-buffer ()
|
|
2315 "Provide a clean way for a write-file-hook to wrap AROUND
|
|
2316 the execution of the remaining hooks and writing to disk.
|
|
2317 Do not call this function except from a functions
|
|
2318 on the write-file-hooks or write-contents-hooks list.
|
|
2319 A hook that calls this function must return non-nil,
|
|
2320 to signal completion to its caller. continue-save-buffer
|
|
2321 always returns non-nil."
|
|
2322 (let ((hooks (cdr (or continue-save-buffer-hooks-tail
|
|
2323 (error
|
|
2324 "continue-save-buffer called outside a write-file-hook!"))))
|
|
2325 (done nil))
|
|
2326 ;; Do something like this:
|
|
2327 ;; (let ((write-file-hooks hooks)) (basic-save-buffer))
|
|
2328 ;; First run the rest of the hooks.
|
|
2329 (while (and hooks
|
|
2330 (let ((continue-save-buffer-hooks-tail hooks))
|
|
2331 (not (setq done (funcall (car hooks))))))
|
|
2332 (setq hooks (cdr hooks)))
|
|
2333 ;;
|
|
2334 ;; If a hook returned t, file is already "written".
|
|
2335 (if (not done)
|
|
2336 (basic-save-buffer-1))
|
|
2337 'continue-save-buffer))
|
|
2338
|
239
|
2339 (defcustom save-some-buffers-query-display-buffer t
|
209
|
2340 "*Non-nil makes `\\[save-some-buffers]' switch to the buffer offered for saving."
|
|
2341 :type 'boolean
|
|
2342 :group 'editing-basics)
|
|
2343
|
|
2344 (defun save-some-buffers (&optional arg exiting)
|
|
2345 "Save some modified file-visiting buffers. Asks user about each one.
|
|
2346 Optional argument (the prefix) non-nil means save all with no questions.
|
|
2347 Optional second argument EXITING means ask about certain non-file buffers
|
|
2348 as well as about file buffers."
|
|
2349 (interactive "P")
|
|
2350 (save-excursion
|
|
2351 (save-window-excursion
|
|
2352 ;; This can bomb during autoloads generation
|
|
2353 (when (and (not noninteractive)
|
|
2354 save-some-buffers-query-display-buffer)
|
|
2355 (delete-other-windows))
|
|
2356 ;; XEmacs - do not use queried flag
|
|
2357 (let ((files-done
|
|
2358 (map-y-or-n-p
|
|
2359 (function
|
|
2360 (lambda (buffer)
|
|
2361 (and (buffer-modified-p buffer)
|
|
2362 (not (buffer-base-buffer buffer))
|
|
2363 ;; XEmacs addition:
|
|
2364 (not (symbol-value-in-buffer 'save-buffers-skip buffer))
|
|
2365 (or
|
|
2366 (buffer-file-name buffer)
|
|
2367 (and exiting
|
|
2368 (progn
|
|
2369 (set-buffer buffer)
|
|
2370 (and buffer-offer-save (> (buffer-size) 0)))))
|
|
2371 (if arg
|
|
2372 t
|
|
2373 (when save-some-buffers-query-display-buffer
|
|
2374 (condition-case nil
|
|
2375 (switch-to-buffer buffer t)
|
|
2376 (error nil)))
|
|
2377 (if (buffer-file-name buffer)
|
|
2378 (format "Save file %s? "
|
|
2379 (buffer-file-name buffer))
|
|
2380 (format "Save buffer %s? "
|
|
2381 (buffer-name buffer)))))))
|
|
2382 (function
|
|
2383 (lambda (buffer)
|
|
2384 (set-buffer buffer)
|
|
2385 (condition-case ()
|
|
2386 (save-buffer)
|
|
2387 (error nil))))
|
|
2388 (buffer-list)
|
|
2389 '("buffer" "buffers" "save")
|
|
2390 ;;instead of this we just say "yes all", "no all", etc.
|
|
2391 ;;"save all the rest"
|
|
2392 ;;"save only this buffer" "save no more buffers")
|
|
2393 ;; this is rather bogus. --ben
|
|
2394 ;; (it makes the dialog box too big, and you get an error
|
|
2395 ;; "wrong type argument: framep, nil" when you hit q after
|
|
2396 ;; choosing the option from the dialog box)
|
|
2397 ; (list (list ?\C-r (lambda (buf)
|
|
2398 ; (view-buffer buf)
|
|
2399 ; (setq view-exit-action
|
|
2400 ; '(lambda (ignore)
|
|
2401 ; (exit-recursive-edit)))
|
|
2402 ; (recursive-edit)
|
|
2403 ; ;; Return nil to ask about BUF again.
|
|
2404 ; nil)
|
|
2405 ; "display the current buffer"))
|
|
2406 ))
|
|
2407 (abbrevs-done
|
|
2408 (and save-abbrevs abbrevs-changed
|
|
2409 (progn
|
|
2410 (if (or arg
|
|
2411 (y-or-n-p (format "Save abbrevs in %s? " abbrev-file-name)))
|
|
2412 (write-abbrev-file nil))
|
|
2413 ;; Don't keep bothering user if he says no.
|
|
2414 (setq abbrevs-changed nil)
|
|
2415 t))))
|
|
2416 (or (> files-done 0) abbrevs-done
|
|
2417 (display-message 'no-log "(No files need saving)"))))))
|
|
2418
|
|
2419
|
|
2420 (defun not-modified (&optional arg)
|
|
2421 "Mark current buffer as unmodified, not needing to be saved.
|
|
2422 With prefix arg, mark buffer as modified, so \\[save-buffer] will save.
|
|
2423
|
|
2424 It is not a good idea to use this function in Lisp programs, because it
|
|
2425 prints a message in the minibuffer. Instead, use `set-buffer-modified-p'."
|
|
2426 (interactive "_P")
|
|
2427 (if arg ;; rewritten for I18N3 snarfing
|
|
2428 (display-message 'command "Modification-flag set")
|
|
2429 (display-message 'command "Modification-flag cleared"))
|
|
2430 (set-buffer-modified-p arg))
|
|
2431
|
|
2432 (defun toggle-read-only (&optional arg)
|
|
2433 "Change whether this buffer is visiting its file read-only.
|
|
2434 With arg, set read-only iff arg is positive."
|
|
2435 (interactive "_P")
|
|
2436 (setq buffer-read-only
|
|
2437 (if (null arg)
|
|
2438 (not buffer-read-only)
|
|
2439 (> (prefix-numeric-value arg) 0)))
|
|
2440 ;; Force modeline redisplay
|
|
2441 (redraw-modeline))
|
|
2442
|
|
2443 (defun insert-file (filename &optional codesys)
|
|
2444 "Insert contents of file FILENAME into buffer after point.
|
|
2445 Set mark after the inserted text.
|
|
2446
|
|
2447 Under XEmacs/Mule, optional second argument specifies the
|
|
2448 coding system to use when decoding the file. Interactively,
|
|
2449 with a prefix argument, you will be prompted for the coding system.
|
|
2450
|
|
2451 This function is meant for the user to run interactively.
|
|
2452 Don't call it from programs! Use `insert-file-contents' instead.
|
|
2453 \(Its calling sequence is different; see its documentation)."
|
|
2454 (interactive "*fInsert file: \nZCoding system: ")
|
|
2455 (if (file-directory-p filename)
|
|
2456 (signal 'file-error (list "Opening input file" "file is a directory"
|
|
2457 filename)))
|
223
|
2458 (let* (format-alist ; format.el only confuses people in this context
|
|
2459 (tem
|
209
|
2460 (if codesys
|
|
2461 (let ((coding-system-for-read
|
|
2462 (get-coding-system codesys)))
|
|
2463 (insert-file-contents filename))
|
|
2464 (insert-file-contents filename))))
|
|
2465 (push-mark (+ (point) (car (cdr tem))))))
|
|
2466
|
|
2467 (defun append-to-file (start end filename &optional codesys)
|
|
2468 "Append the contents of the region to the end of file FILENAME.
|
|
2469 When called from a function, expects three arguments,
|
|
2470 START, END and FILENAME. START and END are buffer positions
|
|
2471 saying what text to write.
|
|
2472 Under XEmacs/Mule, optional fourth argument specifies the
|
|
2473 coding system to use when encoding the file. Interactively,
|
|
2474 with a prefix argument, you will be prompted for the coding system."
|
|
2475 (interactive "r\nFAppend to file: \nZCoding system: ")
|
|
2476 (if codesys
|
|
2477 (let ((buffer-file-coding-system (get-coding-system codesys)))
|
|
2478 (write-region start end filename t))
|
|
2479 (write-region start end filename t)))
|
|
2480
|
|
2481 (defun file-newest-backup (filename)
|
|
2482 "Return most recent backup file for FILENAME or nil if no backups exist."
|
|
2483 (let* ((filename (expand-file-name filename))
|
|
2484 (file (file-name-nondirectory filename))
|
|
2485 (dir (file-name-directory filename))
|
|
2486 (comp (file-name-all-completions file dir))
|
|
2487 newest)
|
|
2488 (while comp
|
|
2489 (setq file (concat dir (car comp))
|
|
2490 comp (cdr comp))
|
|
2491 (if (and (backup-file-name-p file)
|
|
2492 (or (null newest) (file-newer-than-file-p file newest)))
|
|
2493 (setq newest file)))
|
|
2494 newest))
|
|
2495
|
|
2496 (defun rename-uniquely ()
|
|
2497 "Rename current buffer to a similar name not already taken.
|
|
2498 This function is useful for creating multiple shell process buffers
|
|
2499 or multiple mail buffers, etc."
|
|
2500 (interactive)
|
|
2501 (save-match-data
|
|
2502 (let* ((base-name (if (and (string-match "<[0-9]+>\\'" (buffer-name))
|
|
2503 (not (and buffer-file-name
|
|
2504 (string= (buffer-name)
|
|
2505 (file-name-nondirectory
|
|
2506 buffer-file-name)))))
|
|
2507 ;; If the existing buffer name has a <NNN>,
|
|
2508 ;; which isn't part of the file name (if any),
|
|
2509 ;; then get rid of that.
|
|
2510 (substring (buffer-name) 0 (match-beginning 0))
|
|
2511 (buffer-name)))
|
|
2512 (new-buf (generate-new-buffer base-name))
|
|
2513 (name (buffer-name new-buf)))
|
|
2514 (kill-buffer new-buf)
|
|
2515 (rename-buffer name)
|
|
2516 (redraw-modeline))))
|
|
2517
|
|
2518 (defun make-directory-path (path)
|
|
2519 "Create all the directories along path that don't exist yet."
|
|
2520 (interactive "Fdirectory path to create: ")
|
|
2521 (make-directory path t))
|
|
2522
|
|
2523 (defun make-directory (dir &optional parents)
|
|
2524 "Create the directory DIR and any nonexistent parent dirs.
|
|
2525 Interactively, the default choice of directory to create
|
|
2526 is the current default directory for file names.
|
|
2527 That is useful when you have visited a file in a nonexistent directory.
|
|
2528
|
|
2529 Noninteractively, the second (optional) argument PARENTS says whether
|
|
2530 to create parent directories if they don't exist."
|
|
2531 (interactive (list (let ((current-prefix-arg current-prefix-arg))
|
|
2532 (read-directory-name "Create directory: "))
|
|
2533 current-prefix-arg))
|
|
2534 (let ((handler (find-file-name-handler dir 'make-directory)))
|
|
2535 (if handler
|
|
2536 (funcall handler 'make-directory dir parents)
|
|
2537 (if (not parents)
|
|
2538 (make-directory-internal dir)
|
|
2539 (let ((dir (directory-file-name (expand-file-name dir)))
|
|
2540 create-list)
|
|
2541 (while (not (file-exists-p dir))
|
|
2542 (setq create-list (cons dir create-list)
|
|
2543 dir (directory-file-name (file-name-directory dir))))
|
|
2544 (while create-list
|
|
2545 (make-directory-internal (car create-list))
|
|
2546 (setq create-list (cdr create-list))))))))
|
|
2547
|
|
2548 (put 'revert-buffer-function 'permanent-local t)
|
|
2549 (defvar revert-buffer-function nil
|
|
2550 "Function to use to revert this buffer, or nil to do the default.
|
|
2551 The function receives two arguments IGNORE-AUTO and NOCONFIRM,
|
|
2552 which are the arguments that `revert-buffer' received.")
|
|
2553
|
|
2554 (put 'revert-buffer-insert-file-contents-function 'permanent-local t)
|
|
2555 (defvar revert-buffer-insert-file-contents-function nil
|
|
2556 "Function to use to insert contents when reverting this buffer.
|
|
2557 Gets two args, first the nominal file name to use,
|
|
2558 and second, t if reading the auto-save file.")
|
|
2559
|
|
2560 (defvar before-revert-hook nil
|
|
2561 "Normal hook for `revert-buffer' to run before reverting.
|
|
2562 If `revert-buffer-function' is used to override the normal revert
|
|
2563 mechanism, this hook is not used.")
|
|
2564
|
|
2565 (defvar after-revert-hook nil
|
|
2566 "Normal hook for `revert-buffer' to run after reverting.
|
|
2567 Note that the hook value that it runs is the value that was in effect
|
|
2568 before reverting; that makes a difference if you have buffer-local
|
|
2569 hook functions.
|
|
2570
|
|
2571 If `revert-buffer-function' is used to override the normal revert
|
|
2572 mechanism, this hook is not used.")
|
|
2573
|
|
2574 (defvar revert-buffer-internal-hook nil
|
|
2575 "Don't use this.")
|
|
2576
|
|
2577 (defun revert-buffer (&optional ignore-auto noconfirm preserve-modes)
|
|
2578 "Replace the buffer text with the text of the visited file on disk.
|
|
2579 This undoes all changes since the file was visited or saved.
|
|
2580 With a prefix argument, offer to revert from latest auto-save file, if
|
|
2581 that is more recent than the visited file.
|
|
2582
|
|
2583 This command also works for special buffers that contain text which
|
|
2584 doesn't come from a file, but reflects some other data base instead:
|
|
2585 for example, Dired buffers and buffer-list buffers. In these cases,
|
|
2586 it reconstructs the buffer contents from the appropriate data base.
|
|
2587
|
|
2588 When called from Lisp, the first argument is IGNORE-AUTO; only offer
|
|
2589 to revert from the auto-save file when this is nil. Note that the
|
|
2590 sense of this argument is the reverse of the prefix argument, for the
|
|
2591 sake of backward compatibility. IGNORE-AUTO is optional, defaulting
|
|
2592 to nil.
|
|
2593
|
|
2594 Optional second argument NOCONFIRM means don't ask for confirmation at
|
|
2595 all.
|
|
2596
|
|
2597 Optional third argument PRESERVE-MODES non-nil means don't alter
|
|
2598 the files modes. Normally we reinitialize them using `normal-mode'.
|
|
2599
|
|
2600 If the value of `revert-buffer-function' is non-nil, it is called to
|
|
2601 do the work.
|
|
2602
|
|
2603 The default revert function runs the hook `before-revert-hook' at the
|
|
2604 beginning and `after-revert-hook' at the end."
|
|
2605 ;; I admit it's odd to reverse the sense of the prefix argument, but
|
|
2606 ;; there is a lot of code out there which assumes that the first
|
|
2607 ;; argument should be t to avoid consulting the auto-save file, and
|
|
2608 ;; there's no straightforward way to encourage authors to notice a
|
|
2609 ;; reversal of the argument sense. So I'm just changing the user
|
|
2610 ;; interface, but leaving the programmatic interface the same.
|
|
2611 (interactive (list (not current-prefix-arg)))
|
|
2612 (if revert-buffer-function
|
|
2613 (funcall revert-buffer-function ignore-auto noconfirm)
|
|
2614 (let* ((opoint (point))
|
|
2615 (auto-save-p (and (not ignore-auto)
|
|
2616 (recent-auto-save-p)
|
|
2617 buffer-auto-save-file-name
|
|
2618 (file-readable-p buffer-auto-save-file-name)
|
|
2619 (y-or-n-p
|
|
2620 "Buffer has been auto-saved recently. Revert from auto-save file? ")))
|
|
2621 (file-name (if auto-save-p
|
|
2622 buffer-auto-save-file-name
|
|
2623 buffer-file-name)))
|
|
2624 (cond ((null file-name)
|
|
2625 (error "Buffer does not seem to be associated with any file"))
|
|
2626 ((or noconfirm
|
|
2627 (and (not (buffer-modified-p))
|
|
2628 (let (found)
|
|
2629 (dolist (rx revert-without-query found)
|
|
2630 (when (string-match rx file-name)
|
|
2631 (setq found t)))))
|
|
2632 (yes-or-no-p (format "Revert buffer from file %s? "
|
|
2633 file-name)))
|
|
2634 (run-hooks 'before-revert-hook)
|
|
2635 ;; If file was backed up but has changed since,
|
|
2636 ;; we shd make another backup.
|
|
2637 (and (not auto-save-p)
|
|
2638 (not (verify-visited-file-modtime (current-buffer)))
|
|
2639 (setq buffer-backed-up nil))
|
|
2640 ;; Get rid of all undo records for this buffer.
|
|
2641 (or (eq buffer-undo-list t)
|
|
2642 (setq buffer-undo-list nil))
|
|
2643 ;; Effectively copy the after-revert-hook status,
|
|
2644 ;; since after-find-file will clobber it.
|
|
2645 (let ((global-hook (default-value 'after-revert-hook))
|
|
2646 (local-hook-p (local-variable-p 'after-revert-hook
|
|
2647 (current-buffer)))
|
|
2648 (local-hook (and (local-variable-p 'after-revert-hook
|
|
2649 (current-buffer))
|
|
2650 after-revert-hook)))
|
|
2651 (let (buffer-read-only
|
|
2652 ;; Don't make undo records for the reversion.
|
|
2653 (buffer-undo-list t))
|
|
2654 (if revert-buffer-insert-file-contents-function
|
|
2655 (funcall revert-buffer-insert-file-contents-function
|
|
2656 file-name auto-save-p)
|
|
2657 (if (not (file-exists-p file-name))
|
|
2658 (error "File %s no longer exists!" file-name))
|
|
2659 ;; Bind buffer-file-name to nil
|
|
2660 ;; so that we don't try to lock the file.
|
|
2661 (let ((buffer-file-name nil))
|
|
2662 (or auto-save-p
|
|
2663 (unlock-buffer)))
|
|
2664 (widen)
|
|
2665 (insert-file-contents file-name (not auto-save-p)
|
|
2666 nil nil t)))
|
|
2667 (goto-char (min opoint (point-max)))
|
|
2668 ;; Recompute the truename in case changes in symlinks
|
|
2669 ;; have changed the truename.
|
|
2670 ;XEmacs: already done by insert-file-contents
|
|
2671 ;;(setq buffer-file-truename
|
|
2672 ;;(abbreviate-file-name (file-truename buffer-file-name)))
|
|
2673 (after-find-file nil nil t t preserve-modes)
|
|
2674 ;; Run after-revert-hook as it was before we reverted.
|
|
2675 (setq-default revert-buffer-internal-hook global-hook)
|
|
2676 (if local-hook-p
|
|
2677 (progn
|
|
2678 (make-local-variable 'revert-buffer-internal-hook)
|
|
2679 (setq revert-buffer-internal-hook local-hook))
|
|
2680 (kill-local-variable 'revert-buffer-internal-hook))
|
|
2681 (run-hooks 'revert-buffer-internal-hook))
|
|
2682 t)))))
|
|
2683
|
|
2684 (defun recover-file (file)
|
|
2685 "Visit file FILE, but get contents from its last auto-save file."
|
|
2686 ;; Actually putting the file name in the minibuffer should be used
|
|
2687 ;; only rarely.
|
|
2688 ;; Not just because users often use the default.
|
|
2689 (interactive "FRecover file: ")
|
|
2690 (setq file (expand-file-name file))
|
|
2691 (let ((handler (or (find-file-name-handler file 'recover-file)
|
|
2692 (find-file-name-handler
|
|
2693 (let ((buffer-file-name file))
|
|
2694 (make-auto-save-file-name))
|
|
2695 'recover-file))))
|
|
2696 (if handler
|
|
2697 (funcall handler 'recover-file file)
|
|
2698 (if (auto-save-file-name-p file)
|
|
2699 (error "%s is an auto-save file" file))
|
|
2700 (let ((file-name (let ((buffer-file-name file))
|
|
2701 (make-auto-save-file-name))))
|
|
2702 (cond ((if (file-exists-p file)
|
|
2703 (not (file-newer-than-file-p file-name file))
|
|
2704 (not (file-exists-p file-name)))
|
|
2705 (error "Auto-save file %s not current" file-name))
|
|
2706 ((save-window-excursion
|
|
2707 (if (not (eq system-type 'vax-vms))
|
|
2708 (with-output-to-temp-buffer "*Directory*"
|
|
2709 (buffer-disable-undo standard-output)
|
|
2710 (call-process "ls" nil standard-output nil
|
|
2711 (if (file-symlink-p file) "-lL" "-l")
|
|
2712 file file-name)))
|
|
2713 (yes-or-no-p (format "Recover auto save file %s? " file-name)))
|
|
2714 (switch-to-buffer (find-file-noselect file t))
|
|
2715 (let ((buffer-read-only nil))
|
|
2716 (erase-buffer)
|
|
2717 (insert-file-contents file-name nil))
|
|
2718 (after-find-file nil nil t))
|
|
2719 (t (error "Recover-file cancelled.")))))))
|
|
2720
|
|
2721 (defun recover-session ()
|
|
2722 "Recover auto save files from a previous Emacs session.
|
|
2723 This command first displays a Dired buffer showing you the
|
|
2724 previous sessions that you could recover from.
|
|
2725 To choose one, move point to the proper line and then type C-c C-c.
|
|
2726 Then you'll be asked about a number of files to recover."
|
|
2727 (interactive)
|
219
|
2728 (unless (fboundp 'dired)
|
|
2729 (error "recover-session requires dired"))
|
209
|
2730 (dired (concat auto-save-list-file-prefix "*"))
|
|
2731 (goto-char (point-min))
|
|
2732 (or (looking-at "Move to the session you want to recover,")
|
|
2733 (let ((inhibit-read-only t))
|
|
2734 (insert "Move to the session you want to recover,\n"
|
|
2735 "then type C-c C-c to select it.\n\n"
|
|
2736 "You can also delete some of these files;\n"
|
|
2737 "type d on a line to mark that file for deletion.\n\n")))
|
|
2738 (use-local-map (let ((map (make-sparse-keymap)))
|
|
2739 (set-keymap-parents map (list (current-local-map)))
|
|
2740 map))
|
|
2741 (define-key (current-local-map) "\C-c\C-c" 'recover-session-finish))
|
|
2742
|
|
2743 (defun recover-session-finish ()
|
|
2744 "Choose one saved session to recover auto-save files from.
|
|
2745 This command is used in the special Dired buffer created by
|
|
2746 \\[recover-session]."
|
|
2747 (interactive)
|
|
2748 ;; Get the name of the session file to recover from.
|
|
2749 (let ((file (dired-get-filename))
|
|
2750 files
|
|
2751 (buffer (get-buffer-create " *recover*")))
|
|
2752 ;; #### dired-do-flagged-delete in FSF.
|
|
2753 ;; This version is for ange-ftp
|
|
2754 ;;(dired-do-deletions t)
|
|
2755 ;; This version is for efs
|
|
2756 (dired-expunge-deletions)
|
|
2757 (unwind-protect
|
|
2758 (save-excursion
|
|
2759 ;; Read in the auto-save-list file.
|
|
2760 (set-buffer buffer)
|
|
2761 (erase-buffer)
|
|
2762 (insert-file-contents file)
|
|
2763 ;; Loop thru the text of that file
|
|
2764 ;; and get out the names of the files to recover.
|
|
2765 (while (not (eobp))
|
|
2766 (let (thisfile autofile)
|
|
2767 (if (eolp)
|
|
2768 ;; This is a pair of lines for a non-file-visiting buffer.
|
|
2769 ;; Get the auto-save file name and manufacture
|
|
2770 ;; a "visited file name" from that.
|
|
2771 (progn
|
|
2772 (forward-line 1)
|
|
2773 (setq autofile
|
|
2774 (buffer-substring-no-properties
|
|
2775 (point)
|
|
2776 (save-excursion
|
|
2777 (end-of-line)
|
|
2778 (point))))
|
|
2779 (setq thisfile
|
|
2780 (expand-file-name
|
|
2781 (substring
|
|
2782 (file-name-nondirectory autofile)
|
|
2783 1 -1)
|
|
2784 (file-name-directory autofile)))
|
|
2785 (forward-line 1))
|
|
2786 ;; This pair of lines is a file-visiting
|
|
2787 ;; buffer. Use the visited file name.
|
|
2788 (progn
|
|
2789 (setq thisfile
|
|
2790 (buffer-substring-no-properties
|
|
2791 (point) (progn (end-of-line) (point))))
|
|
2792 (forward-line 1)
|
|
2793 (setq autofile
|
|
2794 (buffer-substring-no-properties
|
|
2795 (point) (progn (end-of-line) (point))))
|
|
2796 (forward-line 1)))
|
|
2797 ;; Ignore a file if its auto-save file does not exist now.
|
|
2798 (if (file-exists-p autofile)
|
|
2799 (setq files (cons thisfile files)))))
|
|
2800 (setq files (nreverse files))
|
|
2801 ;; The file contains a pair of line for each auto-saved buffer.
|
|
2802 ;; The first line of the pair contains the visited file name
|
|
2803 ;; or is empty if the buffer was not visiting a file.
|
|
2804 ;; The second line is the auto-save file name.
|
|
2805 (if files
|
|
2806 (map-y-or-n-p "Recover %s? "
|
|
2807 (lambda (file)
|
|
2808 (condition-case nil
|
|
2809 (save-excursion (recover-file file))
|
|
2810 (error
|
|
2811 "Failed to recover `%s'" file)))
|
|
2812 files
|
|
2813 '("file" "files" "recover"))
|
|
2814 (message "No files can be recovered from this session now")))
|
|
2815 (kill-buffer buffer))))
|
|
2816
|
|
2817 (defun kill-some-buffers ()
|
|
2818 "For each buffer, ask whether to kill it."
|
|
2819 (interactive)
|
|
2820 (let ((list (buffer-list)))
|
|
2821 (while list
|
|
2822 (let* ((buffer (car list))
|
|
2823 (name (buffer-name buffer)))
|
|
2824 (and (not (string-equal name ""))
|
|
2825 (/= (aref name 0) ? )
|
|
2826 (yes-or-no-p
|
|
2827 (format
|
|
2828 (if (buffer-modified-p buffer)
|
|
2829 (gettext "Buffer %s HAS BEEN EDITED. Kill? ")
|
|
2830 (gettext "Buffer %s is unmodified. Kill? "))
|
|
2831 name))
|
|
2832 (kill-buffer buffer)))
|
|
2833 (setq list (cdr list)))))
|
|
2834
|
|
2835 (defun auto-save-mode (arg)
|
|
2836 "Toggle auto-saving of contents of current buffer.
|
|
2837 With prefix argument ARG, turn auto-saving on if positive, else off."
|
|
2838 (interactive "P")
|
|
2839 (setq buffer-auto-save-file-name
|
|
2840 (and (if (null arg)
|
|
2841 (or (not buffer-auto-save-file-name)
|
|
2842 ;; If autosave is off because buffer has shrunk,
|
|
2843 ;; then toggling should turn it on.
|
|
2844 (< buffer-saved-size 0))
|
|
2845 (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0))))
|
|
2846 (if (and buffer-file-name auto-save-visited-file-name
|
|
2847 (not buffer-read-only))
|
|
2848 buffer-file-name
|
|
2849 (make-auto-save-file-name))))
|
|
2850 ;; If -1 was stored here, to temporarily turn off saving,
|
|
2851 ;; turn it back on.
|
|
2852 (and (< buffer-saved-size 0)
|
|
2853 (setq buffer-saved-size 0))
|
|
2854 (if (interactive-p)
|
|
2855 (if buffer-auto-save-file-name ;; rewritten for I18N3 snarfing
|
|
2856 (display-message 'command "Auto-save on (in this buffer)")
|
|
2857 (display-message 'command "Auto-save off (in this buffer)")))
|
|
2858 buffer-auto-save-file-name)
|
|
2859
|
|
2860 (defun rename-auto-save-file ()
|
|
2861 "Adjust current buffer's auto save file name for current conditions.
|
|
2862 Also rename any existing auto save file, if it was made in this session."
|
|
2863 (let ((osave buffer-auto-save-file-name))
|
|
2864 (setq buffer-auto-save-file-name
|
|
2865 (make-auto-save-file-name))
|
|
2866 (if (and osave buffer-auto-save-file-name
|
|
2867 (not (string= buffer-auto-save-file-name buffer-file-name))
|
|
2868 (not (string= buffer-auto-save-file-name osave))
|
|
2869 (file-exists-p osave)
|
|
2870 (recent-auto-save-p))
|
|
2871 (rename-file osave buffer-auto-save-file-name t))))
|
|
2872
|
|
2873 ;; see also ../packages/auto-save.el
|
|
2874 (defun make-auto-save-file-name (&optional filename)
|
|
2875 "Return file name to use for auto-saves of current buffer.
|
|
2876 Does not consider `auto-save-visited-file-name' as that variable is checked
|
|
2877 before calling this function. You can redefine this for customization.
|
|
2878 See also `auto-save-file-name-p'."
|
|
2879 (let ((fname (or filename buffer-file-name))
|
|
2880 name)
|
|
2881 (setq name
|
|
2882 (if fname
|
|
2883 (concat (file-name-directory fname)
|
|
2884 "#"
|
|
2885 (file-name-nondirectory fname)
|
|
2886 "#")
|
|
2887
|
|
2888 ;; Deal with buffers that don't have any associated files. (Mail
|
|
2889 ;; mode tends to create a good number of these.)
|
|
2890
|
|
2891 (let ((buffer-name (buffer-name))
|
|
2892 (limit 0))
|
|
2893 ;; Use technique from Sebastian Kremer's auto-save
|
|
2894 ;; package to turn slashes into \\!. This ensures that
|
|
2895 ;; the auto-save buffer name is unique.
|
|
2896
|
|
2897 ;; #### - yuck! yuck! yuck! move this functionality
|
|
2898 ;; somewhere else and make the name translation customizable.
|
|
2899 ;; Using "\!" as part of a filename on a UNIX filesystem is nearly
|
|
2900 ;; IMPOSSIBLE to get past a shell parser. -stig
|
|
2901
|
|
2902 (while (string-match "[/\\]" buffer-name limit)
|
|
2903 (setq buffer-name
|
|
2904 (concat (substring buffer-name 0 (match-beginning 0))
|
|
2905 (if (string= (substring buffer-name
|
|
2906 (match-beginning 0)
|
|
2907 (match-end 0))
|
|
2908 "/")
|
|
2909 "\\!"
|
|
2910 "\\\\")
|
|
2911 (substring buffer-name (match-end 0))))
|
|
2912 (setq limit (1+ (match-end 0))))
|
|
2913
|
|
2914 ;; (expand-file-name (format "#%s#%s#" (buffer-name) (make-temp-name "")))
|
|
2915
|
|
2916 ;; jwz: putting the emacs PID in the auto-save file name
|
|
2917 ;; is bad news, because that defeats auto-save-recovery of
|
|
2918 ;; *mail* buffers -- the (sensible) code in sendmail.el
|
|
2919 ;; calls (make-auto-save-file-name) to determine whether
|
|
2920 ;; there is unsent, auto-saved mail to recover. If that
|
|
2921 ;; mail came from a previous emacs process (far and away
|
|
2922 ;; the most likely case) then this can never succeed as
|
|
2923 ;; the pid differs.
|
|
2924
|
|
2925 (expand-file-name (format "#%s#" buffer-name)))
|
|
2926 ))
|
|
2927 ;; don't try to write auto-save files in unwritable places. Unless
|
|
2928 ;; there's already an autosave file here, put ours somewhere safe. --Stig
|
|
2929 (if (or (file-writable-p name)
|
|
2930 (file-exists-p name))
|
|
2931 name
|
|
2932 (expand-file-name (concat "~/" (file-name-nondirectory name))))))
|
|
2933
|
|
2934 (defun auto-save-file-name-p (filename)
|
|
2935 "Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'.
|
|
2936 FILENAME should lack slashes.
|
|
2937 You can redefine this for customization."
|
|
2938 (string-match "\\`#.*#\\'" filename))
|
|
2939
|
|
2940 (defcustom list-directory-brief-switches
|
|
2941 (if (eq system-type 'vax-vms) "" "-CF")
|
|
2942 "*Switches for list-directory to pass to `ls' for brief listing."
|
|
2943 :type 'string
|
|
2944 :group 'dired)
|
|
2945
|
|
2946 (defcustom list-directory-verbose-switches
|
|
2947 (if (eq system-type 'vax-vms)
|
|
2948 "/PROTECTION/SIZE/DATE/OWNER/WIDTH=(OWNER:10)"
|
|
2949 "-l")
|
|
2950 "*Switches for list-directory to pass to `ls' for verbose listing,"
|
|
2951 :type 'string
|
|
2952 :group 'dired)
|
|
2953
|
|
2954 (defun list-directory (dirname &optional verbose)
|
|
2955 "Display a list of files in or matching DIRNAME, a la `ls'.
|
|
2956 DIRNAME is globbed by the shell if necessary.
|
|
2957 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
|
|
2958 Actions controlled by variables `list-directory-brief-switches'
|
|
2959 and `list-directory-verbose-switches'."
|
|
2960 (interactive (let ((pfx current-prefix-arg))
|
|
2961 (list (read-file-name (if pfx (gettext "List directory (verbose): ")
|
|
2962 (gettext "List directory (brief): "))
|
|
2963 nil default-directory nil)
|
|
2964 pfx)))
|
|
2965 (let ((switches (if verbose list-directory-verbose-switches
|
|
2966 list-directory-brief-switches)))
|
|
2967 (or dirname (setq dirname default-directory))
|
|
2968 (setq dirname (expand-file-name dirname))
|
|
2969 (with-output-to-temp-buffer "*Directory*"
|
|
2970 (buffer-disable-undo standard-output)
|
|
2971 (princ "Directory ")
|
|
2972 (princ dirname)
|
|
2973 (terpri)
|
|
2974 (save-excursion
|
|
2975 (set-buffer "*Directory*")
|
|
2976 (setq default-directory (file-name-directory dirname))
|
|
2977 (let ((wildcard (not (file-directory-p dirname))))
|
|
2978 (insert-directory dirname switches wildcard (not wildcard)))))))
|
|
2979
|
|
2980 (defvar insert-directory-program "ls"
|
|
2981 "Absolute or relative name of the `ls' program used by `insert-directory'.")
|
|
2982
|
|
2983 ;; insert-directory
|
|
2984 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and
|
|
2985 ;; FULL-DIRECTORY-P is nil.
|
|
2986 ;; The single line of output must display FILE's name as it was
|
|
2987 ;; given, namely, an absolute path name.
|
|
2988 ;; - must insert exactly one line for each file if WILDCARD or
|
|
2989 ;; FULL-DIRECTORY-P is t, plus one optional "total" line
|
|
2990 ;; before the file lines, plus optional text after the file lines.
|
|
2991 ;; Lines are delimited by "\n", so filenames containing "\n" are not
|
|
2992 ;; allowed.
|
|
2993 ;; File lines should display the basename.
|
|
2994 ;; - must be consistent with
|
|
2995 ;; - functions dired-move-to-filename, (these two define what a file line is)
|
|
2996 ;; dired-move-to-end-of-filename,
|
|
2997 ;; dired-between-files, (shortcut for (not (dired-move-to-filename)))
|
|
2998 ;; dired-insert-headerline
|
|
2999 ;; dired-after-subdir-garbage (defines what a "total" line is)
|
|
3000 ;; - variable dired-subdir-regexp
|
|
3001 (defun insert-directory (file switches &optional wildcard full-directory-p)
|
|
3002 "Insert directory listing for FILE, formatted according to SWITCHES.
|
|
3003 Leaves point after the inserted text.
|
|
3004 SWITCHES may be a string of options, or a list of strings.
|
|
3005 Optional third arg WILDCARD means treat FILE as shell wildcard.
|
|
3006 Optional fourth arg FULL-DIRECTORY-P means file is a directory and
|
|
3007 switches do not contain `d', so that a full listing is expected.
|
|
3008
|
|
3009 This works by running a directory listing program
|
|
3010 whose name is in the variable `insert-directory-program'.
|
|
3011 If WILDCARD, it also runs the shell specified by `shell-file-name'."
|
|
3012 ;; We need the directory in order to find the right handler.
|
|
3013 (let ((handler (find-file-name-handler (expand-file-name file)
|
|
3014 'insert-directory)))
|
|
3015 (if handler
|
|
3016 (funcall handler 'insert-directory file switches
|
|
3017 wildcard full-directory-p)
|
|
3018 (if (eq system-type 'vax-vms)
|
|
3019 (vms-read-directory file switches (current-buffer))
|
|
3020 (if wildcard
|
|
3021 ;; Run ls in the directory of the file pattern we asked for.
|
|
3022 (let ((default-directory
|
|
3023 (if (file-name-absolute-p file)
|
|
3024 (file-name-directory file)
|
|
3025 (file-name-directory (expand-file-name file))))
|
|
3026 (pattern (file-name-nondirectory file))
|
|
3027 (beg 0))
|
|
3028 ;; Quote some characters that have special meanings in shells;
|
|
3029 ;; but don't quote the wildcards--we want them to be special.
|
|
3030 ;; We also currently don't quote the quoting characters
|
|
3031 ;; in case people want to use them explicitly to quote
|
|
3032 ;; wildcard characters.
|
|
3033 ;;#### Unix-specific
|
|
3034 (while (string-match "[ \t\n;<>&|()#$]" pattern beg)
|
|
3035 (setq pattern
|
|
3036 (concat (substring pattern 0 (match-beginning 0))
|
|
3037 "\\"
|
|
3038 (substring pattern (match-beginning 0)))
|
|
3039 beg (1+ (match-end 0))))
|
|
3040 (call-process shell-file-name nil t nil
|
|
3041 "-c" (concat "\\" ;; Disregard shell aliases!
|
|
3042 insert-directory-program
|
|
3043 " -d "
|
|
3044 (if (stringp switches)
|
|
3045 switches
|
|
3046 (mapconcat 'identity switches " "))
|
|
3047 " "
|
|
3048 pattern)))
|
|
3049 ;; SunOS 4.1.3, SVr4 and others need the "." to list the
|
|
3050 ;; directory if FILE is a symbolic link.
|
|
3051 (apply 'call-process
|
|
3052 insert-directory-program nil t nil
|
|
3053 (let (list)
|
|
3054 (if (listp switches)
|
|
3055 (setq list switches)
|
|
3056 (if (not (equal switches ""))
|
|
3057 (progn
|
|
3058 ;; Split the switches at any spaces
|
|
3059 ;; so we can pass separate options as separate args.
|
|
3060 (while (string-match " " switches)
|
|
3061 (setq list (cons (substring switches 0 (match-beginning 0))
|
|
3062 list)
|
|
3063 switches (substring switches (match-end 0))))
|
|
3064 (setq list (cons switches list)))))
|
|
3065 (append list
|
|
3066 (list
|
|
3067 (if full-directory-p
|
|
3068 (concat (file-name-as-directory file)
|
|
3069 ;;#### Unix-specific
|
|
3070 ".")
|
|
3071 file))))))))))
|
|
3072
|
|
3073 (defvar kill-emacs-query-functions nil
|
|
3074 "Functions to call with no arguments to query about killing XEmacs.
|
|
3075 If any of these functions returns nil, killing Emacs is cancelled.
|
|
3076 `save-buffers-kill-emacs' (\\[save-buffers-kill-emacs]) calls these functions,
|
|
3077 but `kill-emacs', the low level primitive, does not.
|
|
3078 See also `kill-emacs-hook'.")
|
|
3079
|
|
3080 (defun save-buffers-kill-emacs (&optional arg)
|
|
3081 "Offer to save each buffer, then kill this XEmacs process.
|
|
3082 With prefix arg, silently save all file-visiting buffers, then kill."
|
|
3083 (interactive "P")
|
|
3084 (save-some-buffers arg t)
|
|
3085 (and (or (not (memq t (mapcar #'(lambda (buf) (and (buffer-file-name buf)
|
|
3086 (buffer-modified-p buf)))
|
|
3087 (buffer-list))))
|
|
3088 (yes-or-no-p "Modified buffers exist; exit anyway? "))
|
|
3089 (or (not (fboundp 'process-list))
|
|
3090 ;; process-list is not defined on VMS.
|
|
3091 (let ((processes (process-list))
|
|
3092 active)
|
|
3093 (while processes
|
|
3094 (and (memq (process-status (car processes)) '(run stop open))
|
|
3095 (let ((val (process-kill-without-query (car processes))))
|
|
3096 (process-kill-without-query (car processes) val)
|
|
3097 val)
|
|
3098 (setq active t))
|
|
3099 (setq processes (cdr processes)))
|
|
3100 (or
|
|
3101 (not active)
|
|
3102 (save-excursion
|
|
3103 (save-window-excursion
|
|
3104 (delete-other-windows)
|
|
3105 (list-processes)
|
|
3106 (yes-or-no-p
|
|
3107 "Active processes exist; kill them and exit anyway? "))))))
|
|
3108 ;; Query the user for other things, perhaps.
|
|
3109 (run-hook-with-args-until-failure 'kill-emacs-query-functions)
|
|
3110 (kill-emacs)))
|
|
3111
|
|
3112 (defun symlink-expand-file-name (filename)
|
|
3113 "If FILENAME is a symlink, return its non-symlink equivalent.
|
|
3114 Unlike `file-truename', this doesn't chase symlinks in directory
|
|
3115 components of the file or expand a relative pathname into an
|
|
3116 absolute one."
|
|
3117 (let ((count 20))
|
|
3118 (while (and (> count 0) (file-symlink-p filename))
|
|
3119 (setq filename (file-symlink-p filename)
|
|
3120 count (1- count)))
|
|
3121 (if (> count 0)
|
|
3122 filename
|
|
3123 (error "Apparently circular symlink path"))))
|
|
3124
|
|
3125 ;; Suggested by Michael Kifer <kifer@CS.SunySB.EDU>
|
|
3126 (defun file-remote-p (file-name)
|
|
3127 "Test whether FILE-NAME is looked for on a remote system."
|
|
3128 (cond ((not allow-remote-paths) nil)
|
|
3129 ((featurep 'ange-ftp) (ange-ftp-ftp-path file-name))
|
219
|
3130 ((fboundp 'efs-ftp-path) (efs-ftp-path file-name))
|
|
3131 (t nil)))
|
209
|
3132
|
|
3133 ;;; files.el ends here
|