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