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