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