Mercurial > emacs
annotate lisp/files.el @ 9023:1f1081c31047
Initial revision
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 23 Sep 1994 18:35:06 +0000 |
parents | 1db2285cec99 |
children | dc5a9c83dc35 |
rev | line source |
---|---|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
1 ;;; files.el --- file input and output commands for Emacs |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
2 |
5621 | 3 ;; Copyright (C) 1985, 86, 87, 92, 93, 94 Free Software Foundation, Inc. |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
844
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
778
diff
changeset
|
5 ;; Maintainer: FSF |
337 | 6 |
7 ;; This file is part of GNU Emacs. | |
8 | |
9 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
10 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
778
diff
changeset
|
11 ;; the Free Software Foundation; either version 2, or (at your option) |
337 | 12 ;; any later version. |
13 | |
14 ;; GNU Emacs is distributed in the hope that it will be useful, | |
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 ;; GNU General Public License for more details. | |
18 | |
19 ;; You should have received a copy of the GNU General Public License | |
20 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
21 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
22 | |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2108
diff
changeset
|
23 ;;; Commentary: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2108
diff
changeset
|
24 |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2108
diff
changeset
|
25 ;; Defines most of Emacs's file- and directory-handling functions, |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2108
diff
changeset
|
26 ;; including basic file visiting, backup generation, link handling, |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2108
diff
changeset
|
27 ;; ITS-id version control, load- and write-hook handling, and the like. |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2108
diff
changeset
|
28 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
778
diff
changeset
|
29 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
778
diff
changeset
|
30 |
337 | 31 (defconst delete-auto-save-files t |
7993
fde315722669
(delete-auto-save-files): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7944
diff
changeset
|
32 "*Non-nil means delete auto-save file when a buffer is saved or killed.") |
337 | 33 |
34 (defconst directory-abbrev-alist | |
35 nil | |
36 "*Alist of abbreviations for file directories. | |
37 A list of elements of the form (FROM . TO), each meaning to replace | |
38 FROM with TO when it appears in a directory name. This replacement is | |
39 done when setting up the default directory of a newly visited file. | |
40 *Every* FROM string should start with `^'. | |
41 | |
4735
97c1e7309a2d
(directory-abbrev-alist): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4699
diff
changeset
|
42 Do not use `~' in the TO strings. |
97c1e7309a2d
(directory-abbrev-alist): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4699
diff
changeset
|
43 They should be ordinary absolute directory names. |
97c1e7309a2d
(directory-abbrev-alist): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4699
diff
changeset
|
44 |
337 | 45 Use this feature when you have directories which you normally refer to |
46 via absolute symbolic links. Make TO the name of the link, and FROM | |
47 the name it is linked to.") | |
48 | |
49 ;;; Turn off backup files on VMS since it has version numbers. | |
50 (defconst make-backup-files (not (eq system-type 'vax-vms)) | |
3634
1a0df59ac5fa
(make-backup-files): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3630
diff
changeset
|
51 "*Non-nil means make a backup of a file the first time it is saved. |
337 | 52 This can be done by renaming the file or by copying. |
53 | |
54 Renaming means that Emacs renames the existing file so that it is a | |
55 backup file, then writes the buffer into a new file. Any other names | |
56 that the old file had will now refer to the backup file. The new file | |
57 is owned by you and its group is defaulted. | |
58 | |
59 Copying means that Emacs copies the existing file into the backup | |
60 file, then writes the buffer on top of the existing file. Any other | |
61 names that the old file had will now refer to the new (edited) file. | |
62 The file's owner and group are unchanged. | |
63 | |
64 The choice of renaming or copying is controlled by the variables | |
65 `backup-by-copying', `backup-by-copying-when-linked' and | |
4597
7ae2e83e40ea
(backup-inhibited): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4466
diff
changeset
|
66 `backup-by-copying-when-mismatch'. See also `backup-inhibited'.") |
337 | 67 |
68 ;; Do this so that local variables based on the file name | |
69 ;; are not overridden by the major mode. | |
70 (defvar backup-inhibited nil | |
4597
7ae2e83e40ea
(backup-inhibited): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4466
diff
changeset
|
71 "Non-nil means don't make a backup, regardless of the other parameters. |
7ae2e83e40ea
(backup-inhibited): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4466
diff
changeset
|
72 This variable is intended for use by making it local to a buffer. |
7ae2e83e40ea
(backup-inhibited): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4466
diff
changeset
|
73 But it is local only if you make it local.") |
337 | 74 (put 'backup-inhibited 'permanent-local t) |
75 | |
76 (defconst backup-by-copying nil | |
77 "*Non-nil means always use copying to create backup files. | |
78 See documentation of variable `make-backup-files'.") | |
79 | |
80 (defconst backup-by-copying-when-linked nil | |
81 "*Non-nil means use copying to create backups for files with multiple names. | |
82 This causes the alternate names to refer to the latest version as edited. | |
83 This variable is relevant only if `backup-by-copying' is nil.") | |
84 | |
85 (defconst backup-by-copying-when-mismatch nil | |
86 "*Non-nil means create backups by copying if this preserves owner or group. | |
87 Renaming may still be used (subject to control of other variables) | |
88 when it would not result in changing the owner or group of the file; | |
89 that is, for files which are owned by you and whose group matches | |
90 the default for a new file created there by you. | |
91 This variable is relevant only if `backup-by-copying' is nil.") | |
92 | |
93 (defvar backup-enable-predicate | |
94 '(lambda (name) | |
95 (or (< (length name) 5) | |
96 (not (string-equal "/tmp/" (substring name 0 5))))) | |
97 "Predicate that looks at a file name and decides whether to make backups. | |
98 Called with an absolute file name as argument, it returns t to enable backup.") | |
99 | |
100 (defconst buffer-offer-save nil | |
101 "*Non-nil in a buffer means offer to save the buffer on exit | |
102 even if the buffer is not visiting a file. | |
103 Automatically local in all buffers.") | |
104 (make-variable-buffer-local 'buffer-offer-save) | |
105 | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
106 (defconst find-file-existing-other-name nil |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
107 "*Non-nil means find a file under alternative names, in existing buffers. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
108 This means if any existing buffer is visiting the file you want |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
109 under another name, you get the existing buffer instead of a new buffer.") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
110 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
111 (defconst find-file-visit-truename nil |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
112 "*Non-nil means visit a file under its truename. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
113 The truename of a file is found by chasing all links |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
114 both at the file level and at the levels of the containing directories.") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
115 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
116 (defvar buffer-file-truename nil |
6168
17abb6c60749
(buffer-file-truename): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
6085
diff
changeset
|
117 "The abbreviated truename of the file visited in the current buffer. |
17abb6c60749
(buffer-file-truename): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
6085
diff
changeset
|
118 That is, (abbreviated-file-name (file-truename buffer-file-name)). |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
119 This variable is automatically local in all buffers, when non-nil.") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
120 (make-variable-buffer-local 'buffer-file-truename) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
121 (put 'buffer-file-truename 'permanent-local t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
122 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
123 (defvar buffer-file-number nil |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
124 "The device number and file number of the file visited in the current buffer. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
125 The value is a list of the form (FILENUM DEVNUM). |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
126 This pair of numbers uniquely identifies the file. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
127 If the buffer is visiting a new file, the value is nil.") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
128 (make-variable-buffer-local 'buffer-file-number) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
129 (put 'buffer-file-number 'permanent-local t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
130 |
337 | 131 (defconst file-precious-flag nil |
132 "*Non-nil means protect against I/O errors while saving files. | |
133 Some modes set this non-nil in particular buffers.") | |
134 | |
135 (defvar version-control nil | |
136 "*Control use of version numbers for backup files. | |
137 t means make numeric backup versions unconditionally. | |
138 nil means make them for files that have some already. | |
6664
76774f82fb36
(version-control): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
6575
diff
changeset
|
139 `never' means do not make them.") |
337 | 140 |
141 (defvar dired-kept-versions 2 | |
142 "*When cleaning directory, number of versions to keep.") | |
143 | |
8157
14766204c0fe
(delete-old-versions): Var renamed from trim-versions-without-asking.
Richard M. Stallman <rms@gnu.org>
parents:
8151
diff
changeset
|
144 (defvar delete-old-versions nil |
14766204c0fe
(delete-old-versions): Var renamed from trim-versions-without-asking.
Richard M. Stallman <rms@gnu.org>
parents:
8151
diff
changeset
|
145 "*If t, delete excess backup versions silently. |
14766204c0fe
(delete-old-versions): Var renamed from trim-versions-without-asking.
Richard M. Stallman <rms@gnu.org>
parents:
8151
diff
changeset
|
146 If nil, ask confirmation. Any other value prevents any trimming.") |
337 | 147 |
148 (defvar kept-old-versions 2 | |
149 "*Number of oldest versions to keep when a new numbered backup is made.") | |
150 | |
151 (defvar kept-new-versions 2 | |
152 "*Number of newest versions to keep when a new numbered backup is made. | |
153 Includes the new backup. Must be > 0") | |
154 | |
155 (defconst require-final-newline nil | |
156 "*Value of t says silently ensure a file ends in a newline when it is saved. | |
157 Non-nil but not t says ask user whether to add a newline when there isn't one. | |
158 nil means don't add newlines.") | |
159 | |
160 (defconst auto-save-default t | |
161 "*Non-nil says by default do auto-saving of every file-visiting buffer.") | |
162 | |
163 (defconst auto-save-visited-file-name nil | |
164 "*Non-nil says auto-save a buffer in the file it is visiting, when practical. | |
165 Normally auto-save files are written under other names.") | |
166 | |
167 (defconst save-abbrevs nil | |
168 "*Non-nil means save word abbrevs too when files are saved. | |
169 Loading an abbrev file sets this to t.") | |
170 | |
171 (defconst find-file-run-dired t | |
3280
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
172 "*Non-nil says run dired if `find-file' is given the name of a directory.") |
337 | 173 |
1879
c9b4ece292cc
(find-file-hooks): Delete permanent-local property.
Richard M. Stallman <rms@gnu.org>
parents:
1799
diff
changeset
|
174 ;;;It is not useful to make this a local variable. |
c9b4ece292cc
(find-file-hooks): Delete permanent-local property.
Richard M. Stallman <rms@gnu.org>
parents:
1799
diff
changeset
|
175 ;;;(put 'find-file-not-found-hooks 'permanent-local t) |
337 | 176 (defvar find-file-not-found-hooks nil |
177 "List of functions to be called for `find-file' on nonexistent file. | |
178 These functions are called as soon as the error is detected. | |
179 `buffer-file-name' is already set up. | |
180 The functions are called in the order given until one of them returns non-nil.") | |
181 | |
1879
c9b4ece292cc
(find-file-hooks): Delete permanent-local property.
Richard M. Stallman <rms@gnu.org>
parents:
1799
diff
changeset
|
182 ;;;It is not useful to make this a local variable. |
c9b4ece292cc
(find-file-hooks): Delete permanent-local property.
Richard M. Stallman <rms@gnu.org>
parents:
1799
diff
changeset
|
183 ;;;(put 'find-file-hooks 'permanent-local t) |
337 | 184 (defvar find-file-hooks nil |
185 "List of functions to be called after a buffer is loaded from a file. | |
186 The buffer's local variables (if any) will have been processed before the | |
187 functions are called.") | |
188 | |
189 (defvar write-file-hooks nil | |
190 "List of functions to be called before writing out a buffer to a file. | |
191 If one of them returns non-nil, the file is considered already written | |
605 | 192 and the rest are not called. |
193 These hooks are considered to pertain to the visited file. | |
194 So this list is cleared if you change the visited file name. | |
2375
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
195 See also `write-contents-hooks'. |
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
196 Don't make this variable buffer-local; instead, use `local-write-file-hooks'.") |
4762
5eaa5d4eaaca
(local-write-file-hooks): Make this variable buffer-local.
Brian Fox <bfox@gnu.org>
parents:
4735
diff
changeset
|
197 ;;; However, in case someone does make it local... |
5eaa5d4eaaca
(local-write-file-hooks): Make this variable buffer-local.
Brian Fox <bfox@gnu.org>
parents:
4735
diff
changeset
|
198 (put 'write-file-hooks 'permanent-local t) |
2375
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
199 |
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
200 (defvar local-write-file-hooks nil |
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
201 "Just like `write-file-hooks', except intended for per-buffer use. |
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
202 The functions in this list are called before the ones in |
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
203 `write-file-hooks'.") |
4762
5eaa5d4eaaca
(local-write-file-hooks): Make this variable buffer-local.
Brian Fox <bfox@gnu.org>
parents:
4735
diff
changeset
|
204 (make-variable-buffer-local 'local-write-file-hooks) |
5eaa5d4eaaca
(local-write-file-hooks): Make this variable buffer-local.
Brian Fox <bfox@gnu.org>
parents:
4735
diff
changeset
|
205 (put 'local-write-file-hooks 'permanent-local t) |
605 | 206 |
207 (defvar write-contents-hooks nil | |
208 "List of functions to be called before writing out a buffer to a file. | |
209 If one of them returns non-nil, the file is considered already written | |
210 and the rest are not called. | |
211 These hooks are considered to pertain to the buffer's contents, | |
212 not to the particular visited file; thus, `set-visited-file-name' does | |
213 not clear this variable, but changing the major mode does clear it. | |
214 See also `write-file-hooks'.") | |
337 | 215 |
216 (defconst enable-local-variables t | |
217 "*Control use of local-variables lists in files you visit. | |
218 The value can be t, nil or something else. | |
219 A value of t means local-variables lists are obeyed; | |
220 nil means they are ignored; anything else means query. | |
221 | |
222 The command \\[normal-mode] always obeys local-variables lists | |
223 and ignores this variable.") | |
224 | |
1066
9b788095582b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
941
diff
changeset
|
225 (defconst enable-local-eval 'maybe |
722
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
226 "*Control processing of the \"variable\" `eval' in a file's local variables. |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
227 The value can be t, nil or something else. |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
228 A value of t means obey `eval' variables; |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
229 nil means ignore them; anything else means query. |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
230 |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
231 The command \\[normal-mode] always obeys local-variables lists |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
232 and ignores this variable.") |
337 | 233 |
234 ;; Avoid losing in versions where CLASH_DETECTION is disabled. | |
235 (or (fboundp 'lock-buffer) | |
2575
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
236 (defalias 'lock-buffer 'ignore)) |
337 | 237 (or (fboundp 'unlock-buffer) |
2575
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
238 (defalias 'unlock-buffer 'ignore)) |
4186
45fc16fdf07e
(ange-ftp-completion-hook-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4148
diff
changeset
|
239 |
45fc16fdf07e
(ange-ftp-completion-hook-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4148
diff
changeset
|
240 ;; This hook function provides support for ange-ftp host name |
45fc16fdf07e
(ange-ftp-completion-hook-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4148
diff
changeset
|
241 ;; completion. It runs the usual ange-ftp hook, but only for |
45fc16fdf07e
(ange-ftp-completion-hook-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4148
diff
changeset
|
242 ;; completion operations. Having this here avoids the need |
45fc16fdf07e
(ange-ftp-completion-hook-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4148
diff
changeset
|
243 ;; to load ange-ftp when it's not really in use. |
45fc16fdf07e
(ange-ftp-completion-hook-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4148
diff
changeset
|
244 (defun ange-ftp-completion-hook-function (op &rest args) |
45fc16fdf07e
(ange-ftp-completion-hook-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4148
diff
changeset
|
245 (if (memq op '(file-name-completion file-name-all-completions)) |
45fc16fdf07e
(ange-ftp-completion-hook-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4148
diff
changeset
|
246 (apply 'ange-ftp-hook-function op args) |
7142
2b445c15563e
(ange-ftp-completion-hook-function): Use new inhibit vars.
Richard M. Stallman <rms@gnu.org>
parents:
7036
diff
changeset
|
247 (let ((inhibit-file-name-handlers |
2b445c15563e
(ange-ftp-completion-hook-function): Use new inhibit vars.
Richard M. Stallman <rms@gnu.org>
parents:
7036
diff
changeset
|
248 (cons 'ange-ftp-completion-hook-function |
2b445c15563e
(ange-ftp-completion-hook-function): Use new inhibit vars.
Richard M. Stallman <rms@gnu.org>
parents:
7036
diff
changeset
|
249 (and (eq inhibit-file-name-operation op) |
2b445c15563e
(ange-ftp-completion-hook-function): Use new inhibit vars.
Richard M. Stallman <rms@gnu.org>
parents:
7036
diff
changeset
|
250 inhibit-file-name-handlers))) |
2b445c15563e
(ange-ftp-completion-hook-function): Use new inhibit vars.
Richard M. Stallman <rms@gnu.org>
parents:
7036
diff
changeset
|
251 (inhibit-file-name-operation op)) |
4186
45fc16fdf07e
(ange-ftp-completion-hook-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4148
diff
changeset
|
252 (apply op args)))) |
337 | 253 |
254 (defun pwd () | |
255 "Show the current default directory." | |
256 (interactive nil) | |
257 (message "Directory %s" default-directory)) | |
258 | |
2575
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
259 (defvar cd-path nil |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
260 "Value of the CDPATH environment variable, as a list. |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
261 Not actually set up until the first time you you use it.") |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
262 |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
263 (defun parse-colon-path (cd-path) |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
264 "Explode a colon-separated list of paths into a string list." |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
265 (and cd-path |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
266 (let (cd-prefix cd-list (cd-start 0) cd-colon) |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
267 (setq cd-path (concat cd-path ":")) |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
268 (while (setq cd-colon (string-match ":" cd-path cd-start)) |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
269 (setq cd-list |
3038
4bdac10d920a
(cd): Set cd-path to a list.
Richard M. Stallman <rms@gnu.org>
parents:
2896
diff
changeset
|
270 (nconc cd-list |
4216
6f940dcec978
(parse-colon-path): Really make nil, not ".", for empty path element.
Richard M. Stallman <rms@gnu.org>
parents:
4196
diff
changeset
|
271 (list (if (= cd-start cd-colon) |
6f940dcec978
(parse-colon-path): Really make nil, not ".", for empty path element.
Richard M. Stallman <rms@gnu.org>
parents:
4196
diff
changeset
|
272 nil |
6f940dcec978
(parse-colon-path): Really make nil, not ".", for empty path element.
Richard M. Stallman <rms@gnu.org>
parents:
4196
diff
changeset
|
273 (substitute-in-file-name |
4196
20f7ea2f83ef
(parse-colon-path): Turn empty substring into nil.
Richard M. Stallman <rms@gnu.org>
parents:
4186
diff
changeset
|
274 (file-name-as-directory |
20f7ea2f83ef
(parse-colon-path): Turn empty substring into nil.
Richard M. Stallman <rms@gnu.org>
parents:
4186
diff
changeset
|
275 (substring cd-path cd-start cd-colon))))))) |
2575
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
276 (setq cd-start (+ cd-colon 1))) |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
277 cd-list))) |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
278 |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
279 (defun cd-absolute (dir) |
3652
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
280 "Change current directory to given absolute file name DIR." |
8362
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
281 ;; Put the name into directory syntax now, |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
282 ;; because otherwise expand-file-name may give some bad results. |
337 | 283 (if (not (eq system-type 'vax-vms)) |
284 (setq dir (file-name-as-directory dir))) | |
8362
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
285 (setq dir (abbreviate-file-name (expand-file-name dir))) |
337 | 286 (if (not (file-directory-p dir)) |
287 (error "%s is not a directory" dir) | |
288 (if (file-executable-p dir) | |
289 (setq default-directory dir) | |
3038
4bdac10d920a
(cd): Set cd-path to a list.
Richard M. Stallman <rms@gnu.org>
parents:
2896
diff
changeset
|
290 (error "Cannot cd to %s: Permission denied" dir)))) |
337 | 291 |
2575
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
292 (defun cd (dir) |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
293 "Make DIR become the current buffer's default directory. |
3652
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
294 If your environment includes a `CDPATH' variable, try each one of that |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
295 colon-separated list of directories when resolving a relative directory name." |
2575
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
296 (interactive "FChange default directory: ") |
3652
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
297 (if (file-name-absolute-p dir) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
298 (cd-absolute (expand-file-name dir)) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
299 (if (null cd-path) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
300 (let ((trypath (parse-colon-path (getenv "CDPATH")))) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
301 (setq cd-path (or trypath (list "./"))))) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
302 (if (not (catch 'found |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
303 (mapcar |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
304 (function (lambda (x) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
305 (let ((f (expand-file-name (concat x dir)))) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
306 (if (file-directory-p f) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
307 (progn |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
308 (cd-absolute f) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
309 (throw 'found t)))))) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
310 cd-path) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
311 nil)) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
312 (error "No such directory found via CDPATH environment variable")))) |
2575
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
313 |
337 | 314 (defun load-file (file) |
315 "Load the Lisp file named FILE." | |
316 (interactive "fLoad file: ") | |
317 (load (expand-file-name file) nil nil t)) | |
318 | |
319 (defun load-library (library) | |
320 "Load the library named LIBRARY. | |
321 This is an interface to the function `load'." | |
322 (interactive "sLoad library: ") | |
323 (load library)) | |
1134
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
324 |
7036 | 325 (defun file-local-copy (file &optional buffer) |
1134
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
326 "Copy the file FILE into a temporary file on this machine. |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
327 Returns the name of the local copy, or nil, if FILE is directly |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
328 accessible." |
7030
9e51b51e8595
Pass operation to find-file-name-handler.
Karl Heuer <kwzh@gnu.org>
parents:
6899
diff
changeset
|
329 (let ((handler (find-file-name-handler file 'file-local-copy))) |
1134
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
330 (if handler |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
331 (funcall handler 'file-local-copy file) |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
332 nil))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
333 |
8148
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
334 (defun file-truename (filename &optional counter prev-dirs) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
335 "Return the truename of FILENAME, which should be absolute. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
336 The truename of a file name is found by chasing symbolic links |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
337 both at the level of the file and at the level of the directories |
8148
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
338 containing it, until no links are left at any level. |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
339 |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
340 The arguments COUNTER and PREV-DIRS are used only in recursive calls. |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
341 Do not specify them in other calls." |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
342 ;; COUNTER can be a cons cell whose car is the count of how many more links |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
343 ;; to chase before getting an error. |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
344 ;; PREV-DIRS can be a cons cell whose car is an alist |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
345 ;; of truenames we've just recently computed. |
4965
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
346 (if (or (string= filename "~") |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
347 (and (string= (substring filename 0 1) "~") |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
348 (string-match "~[^/]*" filename))) |
2613
709f672f450e
(find-file-noselect): Do set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2600
diff
changeset
|
349 (progn |
709f672f450e
(find-file-noselect): Do set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2600
diff
changeset
|
350 (setq filename (expand-file-name filename)) |
709f672f450e
(find-file-noselect): Do set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2600
diff
changeset
|
351 (if (string= filename "") |
709f672f450e
(find-file-noselect): Do set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2600
diff
changeset
|
352 (setq filename "/")))) |
8148
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
353 (or counter (setq counter (list 100))) |
8374
4c6590fc242e
(file-truename): Temporarily get rid of the
Richard M. Stallman <rms@gnu.org>
parents:
8362
diff
changeset
|
354 (let (done |
4c6590fc242e
(file-truename): Temporarily get rid of the
Richard M. Stallman <rms@gnu.org>
parents:
8362
diff
changeset
|
355 ;; For speed, remove the ange-ftp completion handler from the list. |
4c6590fc242e
(file-truename): Temporarily get rid of the
Richard M. Stallman <rms@gnu.org>
parents:
8362
diff
changeset
|
356 ;; We know it's not needed here. |
4c6590fc242e
(file-truename): Temporarily get rid of the
Richard M. Stallman <rms@gnu.org>
parents:
8362
diff
changeset
|
357 ;; For even more speed, do this only on the outermost call. |
4c6590fc242e
(file-truename): Temporarily get rid of the
Richard M. Stallman <rms@gnu.org>
parents:
8362
diff
changeset
|
358 (file-name-handler-alist |
4c6590fc242e
(file-truename): Temporarily get rid of the
Richard M. Stallman <rms@gnu.org>
parents:
8362
diff
changeset
|
359 (if prev-dirs file-name-handler-alist |
4c6590fc242e
(file-truename): Temporarily get rid of the
Richard M. Stallman <rms@gnu.org>
parents:
8362
diff
changeset
|
360 (let ((tem (copy-sequence file-name-handler-alist))) |
4c6590fc242e
(file-truename): Temporarily get rid of the
Richard M. Stallman <rms@gnu.org>
parents:
8362
diff
changeset
|
361 (delq (rassq 'ange-ftp-completion-hook-function tem) tem))))) |
4c6590fc242e
(file-truename): Temporarily get rid of the
Richard M. Stallman <rms@gnu.org>
parents:
8362
diff
changeset
|
362 (or prev-dirs (setq prev-dirs (list nil))) |
8148
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
363 ;; If this file directly leads to a link, process that iteratively |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
364 ;; so that we don't use lots of stack. |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
365 (while (not done) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
366 (setcar counter (1- (car counter))) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
367 (if (< (car counter) 0) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
368 (error "Apparent cycle of symbolic links for %s" filename)) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
369 (let ((handler (find-file-name-handler filename 'file-truename))) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
370 ;; For file name that has a special handler, call handler. |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
371 ;; This is so that ange-ftp can save time by doing a no-op. |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
372 (if handler |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
373 (setq filename (funcall handler 'file-truename filename) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
374 done t) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
375 (let ((dir (file-name-directory filename)) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
376 target dirfile) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
377 ;; Get the truename of the directory. |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
378 (setq dirfile (directory-file-name dir)) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
379 ;; If these are equal, we have the (or a) root directory. |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
380 (or (string= dir dirfile) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
381 ;; If this is the same dir we last got the truename for, |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
382 ;; save time--don't recalculate. |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
383 (if (assoc dir (car prev-dirs)) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
384 (setq dir (cdr (assoc dir (car prev-dirs)))) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
385 (let ((old dir) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
386 (new (file-name-as-directory (file-truename dirfile counter prev-dirs)))) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
387 (setcar prev-dirs (cons (cons old new) (car prev-dirs))) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
388 (setq dir new)))) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
389 (if (equal ".." (file-name-nondirectory filename)) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
390 (setq filename |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
391 (directory-file-name (file-name-directory (directory-file-name dir))) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
392 done t) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
393 (if (equal "." (file-name-nondirectory filename)) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
394 (setq filename (directory-file-name dir) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
395 done t) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
396 ;; Put it back on the file name. |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
397 (setq filename (concat dir (file-name-nondirectory filename))) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
398 ;; Is the file name the name of a link? |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
399 (setq target (file-symlink-p filename)) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
400 (if target |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
401 ;; Yes => chase that link, then start all over |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
402 ;; since the link may point to a directory name that uses links. |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
403 ;; We can't safely use expand-file-name here |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
404 ;; since target might look like foo/../bar where foo |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
405 ;; is itself a link. Instead, we handle . and .. above. |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
406 (setq filename |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
407 (if (file-name-absolute-p target) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
408 target |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
409 (concat dir target)) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
410 done nil) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
411 ;; No, we are done! |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
412 (setq done t)))))))) |
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
413 filename)) |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1537
diff
changeset
|
414 |
3260
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
415 (defun file-chase-links (filename) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
416 "Chase links in FILENAME until a name that is not a link. |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
417 Does not examine containing directories for links, |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
418 unlike `file-truename'." |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
419 (let (tem (count 100) (newname filename)) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
420 (while (setq tem (file-symlink-p newname)) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
421 (if (= count 0) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
422 (error "Apparent cycle of symbolic links for %s" filename)) |
7430
1ec8830e553c
(file-chase-links): Delete redundant slashes.
Karl Heuer <kwzh@gnu.org>
parents:
7422
diff
changeset
|
423 ;; In the context of a link, `//' doesn't mean what Emacs thinks. |
1ec8830e553c
(file-chase-links): Delete redundant slashes.
Karl Heuer <kwzh@gnu.org>
parents:
7422
diff
changeset
|
424 (while (string-match "//+" tem) |
1ec8830e553c
(file-chase-links): Delete redundant slashes.
Karl Heuer <kwzh@gnu.org>
parents:
7422
diff
changeset
|
425 (setq tem (concat (substring tem 0 (1+ (match-beginning 0))) |
1ec8830e553c
(file-chase-links): Delete redundant slashes.
Karl Heuer <kwzh@gnu.org>
parents:
7422
diff
changeset
|
426 (substring tem (match-end 0))))) |
3263
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
427 ;; Handle `..' by hand, since it needs to work in the |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
428 ;; target of any directory symlink. |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
429 ;; This code is not quite complete; it does not handle |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
430 ;; embedded .. in some cases such as ./../foo and foo/bar/../../../lose. |
7430
1ec8830e553c
(file-chase-links): Delete redundant slashes.
Karl Heuer <kwzh@gnu.org>
parents:
7422
diff
changeset
|
431 (while (string-match "\\`\\.\\./" tem) |
3263
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
432 (setq tem (substring tem 3)) |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
433 (setq newname (file-name-as-directory |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
434 ;; Do the .. by hand. |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
435 (directory-file-name |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
436 (file-name-directory |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
437 ;; Chase links in the default dir of the symlink. |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
438 (file-chase-links |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
439 (directory-file-name |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
440 (file-name-directory newname)))))))) |
3260
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
441 (setq newname (expand-file-name tem (file-name-directory newname))) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
442 (setq count (1- count))) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
443 newname)) |
337 | 444 |
445 (defun switch-to-buffer-other-window (buffer) | |
446 "Select buffer BUFFER in another window." | |
447 (interactive "BSwitch to buffer in other window: ") | |
448 (let ((pop-up-windows t)) | |
449 (pop-to-buffer buffer t))) | |
450 | |
778 | 451 (defun switch-to-buffer-other-frame (buffer) |
452 "Switch to buffer BUFFER in another frame." | |
453 (interactive "BSwitch to buffer in other frame: ") | |
454 (let ((pop-up-frames t)) | |
8165
02ee07034f11
(switch-to-buffer-other-frame): Raise the frame.
Richard M. Stallman <rms@gnu.org>
parents:
8160
diff
changeset
|
455 (pop-to-buffer buffer t) |
02ee07034f11
(switch-to-buffer-other-frame): Raise the frame.
Richard M. Stallman <rms@gnu.org>
parents:
8160
diff
changeset
|
456 (raise-frame (window-frame (selected-window))))) |
423 | 457 |
337 | 458 (defun find-file (filename) |
459 "Edit file FILENAME. | |
460 Switch to a buffer visiting file FILENAME, | |
461 creating one if none already exists." | |
462 (interactive "FFind file: ") | |
463 (switch-to-buffer (find-file-noselect filename))) | |
464 | |
465 (defun find-file-other-window (filename) | |
466 "Edit file FILENAME, in another window. | |
467 May create a new window, or reuse an existing one. | |
468 See the function `display-buffer'." | |
469 (interactive "FFind file in other window: ") | |
470 (switch-to-buffer-other-window (find-file-noselect filename))) | |
471 | |
778 | 472 (defun find-file-other-frame (filename) |
473 "Edit file FILENAME, in another frame. | |
474 May create a new frame, or reuse an existing one. | |
423 | 475 See the function `display-buffer'." |
778 | 476 (interactive "FFind file in other frame: ") |
477 (switch-to-buffer-other-frame (find-file-noselect filename))) | |
423 | 478 |
337 | 479 (defun find-file-read-only (filename) |
480 "Edit file FILENAME but don't allow changes. | |
481 Like \\[find-file] but marks buffer as read-only. | |
482 Use \\[toggle-read-only] to permit editing." | |
483 (interactive "fFind file read-only: ") | |
484 (find-file filename) | |
3280
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
485 (setq buffer-read-only t) |
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
486 (current-buffer)) |
337 | 487 |
488 (defun find-file-read-only-other-window (filename) | |
489 "Edit file FILENAME in another window but don't allow changes. | |
490 Like \\[find-file-other-window] but marks buffer as read-only. | |
491 Use \\[toggle-read-only] to permit editing." | |
492 (interactive "fFind file read-only other window: ") | |
3056
2edea0c54dc3
(find-file-read-only-other-window): Use find-file-other-window.
Richard M. Stallman <rms@gnu.org>
parents:
3038
diff
changeset
|
493 (find-file-other-window filename) |
3280
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
494 (setq buffer-read-only t) |
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
495 (current-buffer)) |
337 | 496 |
778 | 497 (defun find-file-read-only-other-frame (filename) |
498 "Edit file FILENAME in another frame but don't allow changes. | |
499 Like \\[find-file-other-frame] but marks buffer as read-only. | |
423 | 500 Use \\[toggle-read-only] to permit editing." |
778 | 501 (interactive "fFind file read-only other frame: ") |
502 (find-file-other-frame filename) | |
3280
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
503 (setq buffer-read-only t) |
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
504 (current-buffer)) |
423 | 505 |
337 | 506 (defun find-alternate-file (filename) |
507 "Find file FILENAME, select its buffer, kill previous buffer. | |
508 If the current buffer now contains an empty file that you just visited | |
509 \(presumably by mistake), use this command to visit the file you really want." | |
510 (interactive | |
511 (let ((file buffer-file-name) | |
512 (file-name nil) | |
513 (file-dir nil)) | |
514 (and file | |
515 (setq file-name (file-name-nondirectory file) | |
516 file-dir (file-name-directory file))) | |
941 | 517 (list (read-file-name |
518 "Find alternate file: " file-dir nil nil file-name)))) | |
337 | 519 (and (buffer-modified-p) |
520 ;; (not buffer-read-only) | |
521 (not (yes-or-no-p (format "Buffer %s is modified; kill anyway? " | |
522 (buffer-name)))) | |
523 (error "Aborted")) | |
524 (let ((obuf (current-buffer)) | |
525 (ofile buffer-file-name) | |
3191
d96fd9315996
(find-alternate-file): Hide truename and inode number
Richard M. Stallman <rms@gnu.org>
parents:
3151
diff
changeset
|
526 (onum buffer-file-number) |
d96fd9315996
(find-alternate-file): Hide truename and inode number
Richard M. Stallman <rms@gnu.org>
parents:
3151
diff
changeset
|
527 (otrue buffer-file-truename) |
337 | 528 (oname (buffer-name))) |
529 (rename-buffer " **lose**") | |
530 (setq buffer-file-name nil) | |
3191
d96fd9315996
(find-alternate-file): Hide truename and inode number
Richard M. Stallman <rms@gnu.org>
parents:
3151
diff
changeset
|
531 (setq buffer-file-number nil) |
d96fd9315996
(find-alternate-file): Hide truename and inode number
Richard M. Stallman <rms@gnu.org>
parents:
3151
diff
changeset
|
532 (setq buffer-file-truename nil) |
337 | 533 (unwind-protect |
534 (progn | |
535 (unlock-buffer) | |
536 (find-file filename)) | |
537 (cond ((eq obuf (current-buffer)) | |
538 (setq buffer-file-name ofile) | |
3191
d96fd9315996
(find-alternate-file): Hide truename and inode number
Richard M. Stallman <rms@gnu.org>
parents:
3151
diff
changeset
|
539 (setq buffer-file-number onum) |
d96fd9315996
(find-alternate-file): Hide truename and inode number
Richard M. Stallman <rms@gnu.org>
parents:
3151
diff
changeset
|
540 (setq buffer-file-truename otrue) |
337 | 541 (lock-buffer) |
542 (rename-buffer oname)))) | |
543 (or (eq (current-buffer) obuf) | |
544 (kill-buffer obuf)))) | |
545 | |
546 (defun create-file-buffer (filename) | |
547 "Create a suitably named buffer for visiting FILENAME, and return it. | |
548 FILENAME (sans directory) is used unchanged if that name is free; | |
549 otherwise a string <2> or <3> or ... is appended to get an unused name." | |
550 (let ((lastname (file-name-nondirectory filename))) | |
551 (if (string= lastname "") | |
552 (setq lastname filename)) | |
553 (generate-new-buffer lastname))) | |
554 | |
423 | 555 (defun generate-new-buffer (name) |
556 "Create and return a buffer with a name based on NAME. | |
1461 | 557 Choose the buffer's name using `generate-new-buffer-name'." |
423 | 558 (get-buffer-create (generate-new-buffer-name name))) |
559 | |
817 | 560 (defconst automount-dir-prefix "^/tmp_mnt/" |
561 "Regexp to match the automounter prefix in a directory name.") | |
562 | |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
563 (defvar abbreviated-home-dir nil |
4847
e7d8cfd205d4
(abbreviated-home-dir): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4837
diff
changeset
|
564 "The user's homedir abbreviated according to `directory-abbrev-list'.") |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
565 |
423 | 566 (defun abbreviate-file-name (filename) |
1461 | 567 "Return a version of FILENAME shortened using `directory-abbrev-alist'. |
423 | 568 This also substitutes \"~\" for the user's home directory. |
1461 | 569 Type \\[describe-variable] directory-abbrev-alist RET for more information." |
817 | 570 ;; Get rid of the prefixes added by the automounter. |
571 (if (and (string-match automount-dir-prefix filename) | |
572 (file-exists-p (file-name-directory | |
573 (substring filename (1- (match-end 0)))))) | |
574 (setq filename (substring filename (1- (match-end 0))))) | |
423 | 575 (let ((tail directory-abbrev-alist)) |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
576 ;; If any elt of directory-abbrev-alist matches this name, |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
577 ;; abbreviate accordingly. |
423 | 578 (while tail |
579 (if (string-match (car (car tail)) filename) | |
580 (setq filename | |
581 (concat (cdr (car tail)) (substring filename (match-end 0))))) | |
582 (setq tail (cdr tail))) | |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
583 ;; Compute and save the abbreviated homedir name. |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
584 ;; We defer computing this until the first time it's needed, to |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
585 ;; give time for directory-abbrev-alist to be set properly. |
3624
386094c1a569
(abbreviate-file-name): Make abbreviated-home-dir
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
586 ;; We include a slash at the end, to avoid spurious matches |
386094c1a569
(abbreviate-file-name): Make abbreviated-home-dir
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
587 ;; such as `/usr/foobar' when the home dir is `/usr/foo'. |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
588 (or abbreviated-home-dir |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
589 (setq abbreviated-home-dir |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
590 (let ((abbreviated-home-dir "$foo")) |
3709
09e961c82be8
(abbreviate-file-name): Match home dir with no / if nothing else follows.
Richard M. Stallman <rms@gnu.org>
parents:
3672
diff
changeset
|
591 (concat "^" (abbreviate-file-name (expand-file-name "~")) |
09e961c82be8
(abbreviate-file-name): Match home dir with no / if nothing else follows.
Richard M. Stallman <rms@gnu.org>
parents:
3672
diff
changeset
|
592 "\\(/\\|$\\)")))) |
09e961c82be8
(abbreviate-file-name): Match home dir with no / if nothing else follows.
Richard M. Stallman <rms@gnu.org>
parents:
3672
diff
changeset
|
593 |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
594 ;; If FILENAME starts with the abbreviated homedir, |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
595 ;; make it start with `~' instead. |
5582
cc4892ee6807
(abbreviate-file-name): Don't convert / to ~/ when the home dir is /.
Richard M. Stallman <rms@gnu.org>
parents:
5468
diff
changeset
|
596 (if (and (string-match abbreviated-home-dir filename) |
cc4892ee6807
(abbreviate-file-name): Don't convert / to ~/ when the home dir is /.
Richard M. Stallman <rms@gnu.org>
parents:
5468
diff
changeset
|
597 ;; If the home dir is just /, don't change it. |
cc4892ee6807
(abbreviate-file-name): Don't convert / to ~/ when the home dir is /.
Richard M. Stallman <rms@gnu.org>
parents:
5468
diff
changeset
|
598 (not (and (= (match-end 0) 1) |
7440
1c0885a92832
(abbreviate-file-name): Add special case for ms-dos.
Richard M. Stallman <rms@gnu.org>
parents:
7430
diff
changeset
|
599 (= (aref filename 0) ?/))) |
1c0885a92832
(abbreviate-file-name): Add special case for ms-dos.
Richard M. Stallman <rms@gnu.org>
parents:
7430
diff
changeset
|
600 (not (and (eq system-type 'ms-dos) |
1c0885a92832
(abbreviate-file-name): Add special case for ms-dos.
Richard M. Stallman <rms@gnu.org>
parents:
7430
diff
changeset
|
601 (save-match-data |
1c0885a92832
(abbreviate-file-name): Add special case for ms-dos.
Richard M. Stallman <rms@gnu.org>
parents:
7430
diff
changeset
|
602 (string-match "^[a-zA-Z]:/$" filename))))) |
423 | 603 (setq filename |
2630
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
604 (concat "~" |
3709
09e961c82be8
(abbreviate-file-name): Match home dir with no / if nothing else follows.
Richard M. Stallman <rms@gnu.org>
parents:
3672
diff
changeset
|
605 (substring filename (match-beginning 1) (match-end 1)) |
2630
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
606 (substring filename (match-end 0))))) |
423 | 607 filename)) |
608 | |
2622
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
609 (defvar find-file-not-true-dirname-list nil |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
610 "*List of logical names for which visiting shouldn't save the true dirname. |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
611 On VMS, when you visit a file using a logical name that searches a path, |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
612 you may or may not want the visited file name to record the specific |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
613 directory where the file was found. If you *do not* want that, add the logical |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
614 name to this list as a string.") |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
615 |
6265
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
616 (defun find-buffer-visiting (filename) |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
617 "Return the buffer visiting file FILENAME (a string). |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
618 This is like `get-file-buffer', except that it checks for any buffer |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
619 visiting the same file, possibly under a different name. |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
620 If there is no such live buffer, return nil." |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
621 (let ((buf (get-file-buffer filename)) |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
622 (truename (abbreviate-file-name (file-truename filename)))) |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
623 (or buf |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
624 (let ((list (buffer-list)) found) |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
625 (while (and (not found) list) |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
626 (save-excursion |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
627 (set-buffer (car list)) |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
628 (if (and buffer-file-name |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
629 (string= buffer-file-truename truename)) |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
630 (setq found (car list)))) |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
631 (setq list (cdr list))) |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
632 found) |
6272
d19db87b8c8e
(find-buffer-visiting): Fix typo in previous change.
Karl Heuer <kwzh@gnu.org>
parents:
6265
diff
changeset
|
633 (let ((number (nthcdr 10 (file-attributes truename))) |
6265
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
634 (list (buffer-list)) found) |
6294
6044f2615082
(find-buffer-visiting): Don't compare NUMBER if it is nil.
Richard M. Stallman <rms@gnu.org>
parents:
6272
diff
changeset
|
635 (and number |
6044f2615082
(find-buffer-visiting): Don't compare NUMBER if it is nil.
Richard M. Stallman <rms@gnu.org>
parents:
6272
diff
changeset
|
636 (while (and (not found) list) |
6044f2615082
(find-buffer-visiting): Don't compare NUMBER if it is nil.
Richard M. Stallman <rms@gnu.org>
parents:
6272
diff
changeset
|
637 (save-excursion |
6044f2615082
(find-buffer-visiting): Don't compare NUMBER if it is nil.
Richard M. Stallman <rms@gnu.org>
parents:
6272
diff
changeset
|
638 (set-buffer (car list)) |
6866
47bed999969a
(find-buffer-visiting): Don't check buffer-file-number
Richard M. Stallman <rms@gnu.org>
parents:
6780
diff
changeset
|
639 (if (and buffer-file-name |
47bed999969a
(find-buffer-visiting): Don't check buffer-file-number
Richard M. Stallman <rms@gnu.org>
parents:
6780
diff
changeset
|
640 (equal buffer-file-number number) |
6294
6044f2615082
(find-buffer-visiting): Don't compare NUMBER if it is nil.
Richard M. Stallman <rms@gnu.org>
parents:
6272
diff
changeset
|
641 ;; Verify this buffer's file number |
6044f2615082
(find-buffer-visiting): Don't compare NUMBER if it is nil.
Richard M. Stallman <rms@gnu.org>
parents:
6272
diff
changeset
|
642 ;; still belongs to its file. |
6044f2615082
(find-buffer-visiting): Don't compare NUMBER if it is nil.
Richard M. Stallman <rms@gnu.org>
parents:
6272
diff
changeset
|
643 (file-exists-p buffer-file-name) |
6044f2615082
(find-buffer-visiting): Don't compare NUMBER if it is nil.
Richard M. Stallman <rms@gnu.org>
parents:
6272
diff
changeset
|
644 (equal (nthcdr 10 (file-attributes buffer-file-name)) |
6044f2615082
(find-buffer-visiting): Don't compare NUMBER if it is nil.
Richard M. Stallman <rms@gnu.org>
parents:
6272
diff
changeset
|
645 number)) |
6044f2615082
(find-buffer-visiting): Don't compare NUMBER if it is nil.
Richard M. Stallman <rms@gnu.org>
parents:
6272
diff
changeset
|
646 (setq found (car list)))) |
6044f2615082
(find-buffer-visiting): Don't compare NUMBER if it is nil.
Richard M. Stallman <rms@gnu.org>
parents:
6272
diff
changeset
|
647 (setq list (cdr list)))) |
6265
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
648 found)))) |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
649 |
337 | 650 (defun find-file-noselect (filename &optional nowarn) |
651 "Read file FILENAME into a buffer and return the buffer. | |
652 If a buffer exists visiting FILENAME, return that one, but | |
653 verify that the file has not changed since visited or saved. | |
654 The buffer is not selected, just returned to the caller." | |
817 | 655 (setq filename |
656 (abbreviate-file-name | |
657 (expand-file-name filename))) | |
337 | 658 (if (file-directory-p filename) |
659 (if find-file-run-dired | |
660 (dired-noselect filename) | |
661 (error "%s is a directory." filename)) | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
662 (let* ((buf (get-file-buffer filename)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
663 (truename (abbreviate-file-name (file-truename filename))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
664 (number (nthcdr 10 (file-attributes truename))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
665 ;; Find any buffer for a file which has same truename. |
6265
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
666 (other (and (not buf) (find-buffer-visiting filename))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
667 error) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
668 ;; Let user know if there is a buffer with the same truename. |
6265
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
669 (if other |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
670 (progn |
7422
49876b60d0c6
(find-file-noselect): Suppress same-file warning if
Richard M. Stallman <rms@gnu.org>
parents:
7217
diff
changeset
|
671 (or nowarn |
49876b60d0c6
(find-file-noselect): Suppress same-file warning if
Richard M. Stallman <rms@gnu.org>
parents:
7217
diff
changeset
|
672 (string-equal filename (buffer-file-name other)) |
49876b60d0c6
(find-file-noselect): Suppress same-file warning if
Richard M. Stallman <rms@gnu.org>
parents:
7217
diff
changeset
|
673 (message "%s and %s are the same file" |
49876b60d0c6
(find-file-noselect): Suppress same-file warning if
Richard M. Stallman <rms@gnu.org>
parents:
7217
diff
changeset
|
674 filename (buffer-file-name other))) |
6265
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
675 ;; Optionally also find that buffer. |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
676 (if (or find-file-existing-other-name find-file-visit-truename) |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
677 (setq buf other)))) |
337 | 678 (if buf |
679 (or nowarn | |
680 (verify-visited-file-modtime buf) | |
681 (cond ((not (file-exists-p filename)) | |
682 (error "File %s no longer exists!" filename)) | |
683 ((yes-or-no-p | |
684 (format | |
685 (if (buffer-modified-p buf) | |
686 "File %s changed on disk. Discard your edits? " | |
8618
59c582e9f4f6
(find-file-noselect): Improve "file changed" message.
Richard M. Stallman <rms@gnu.org>
parents:
8556
diff
changeset
|
687 "File %s changed on disk. Reread from disk? ") |
337 | 688 (file-name-nondirectory filename))) |
689 (save-excursion | |
690 (set-buffer buf) | |
691 (revert-buffer t t))))) | |
692 (save-excursion | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
693 ;;; The truename stuff makes this obsolete. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
694 ;;; (let* ((link-name (car (file-attributes filename))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
695 ;;; (linked-buf (and (stringp link-name) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
696 ;;; (get-file-buffer link-name)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
697 ;;; (if (bufferp linked-buf) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
698 ;;; (message "Symbolic link to file in buffer %s" |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
699 ;;; (buffer-name linked-buf)))) |
337 | 700 (setq buf (create-file-buffer filename)) |
701 (set-buffer buf) | |
702 (erase-buffer) | |
703 (condition-case () | |
704 (insert-file-contents filename t) | |
705 (file-error | |
706 (setq error t) | |
707 ;; Run find-file-not-found-hooks until one returns non-nil. | |
708 (let ((hooks find-file-not-found-hooks)) | |
709 (while (and hooks | |
4645
f00c973bc8a4
(find-file-noselect): If a find-file-not-found-hook succeeds, clear `error'.
Richard M. Stallman <rms@gnu.org>
parents:
4597
diff
changeset
|
710 (not (and (funcall (car hooks)) |
f00c973bc8a4
(find-file-noselect): If a find-file-not-found-hook succeeds, clear `error'.
Richard M. Stallman <rms@gnu.org>
parents:
4597
diff
changeset
|
711 ;; If a hook succeeded, clear error. |
f00c973bc8a4
(find-file-noselect): If a find-file-not-found-hook succeeds, clear `error'.
Richard M. Stallman <rms@gnu.org>
parents:
4597
diff
changeset
|
712 (progn (setq error nil) |
f00c973bc8a4
(find-file-noselect): If a find-file-not-found-hook succeeds, clear `error'.
Richard M. Stallman <rms@gnu.org>
parents:
4597
diff
changeset
|
713 ;; Also exit the loop. |
f00c973bc8a4
(find-file-noselect): If a find-file-not-found-hook succeeds, clear `error'.
Richard M. Stallman <rms@gnu.org>
parents:
4597
diff
changeset
|
714 t)))) |
337 | 715 (setq hooks (cdr hooks)))))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
716 ;; Find the file's truename, and maybe use that as visited name. |
6265
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
717 (setq buffer-file-truename truename) |
2622
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
718 (setq buffer-file-number number) |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
719 ;; On VMS, we may want to remember which directory in a search list |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
720 ;; the file was found in. |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
721 (and (eq system-type 'vax-vms) |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
722 (let (logical) |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
723 (if (string-match ":" (file-name-directory filename)) |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
724 (setq logical (substring (file-name-directory filename) |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
725 0 (match-beginning 0)))) |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
726 (not (member logical find-file-not-true-dirname-list))) |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
727 (setq buffer-file-name buffer-file-truename)) |
2613
709f672f450e
(find-file-noselect): Do set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2600
diff
changeset
|
728 (if find-file-visit-truename |
3151
923f5564a2a1
(find-file-noselect): Expand buffer-file-truename
Richard M. Stallman <rms@gnu.org>
parents:
3122
diff
changeset
|
729 (setq buffer-file-name |
923f5564a2a1
(find-file-noselect): Expand buffer-file-truename
Richard M. Stallman <rms@gnu.org>
parents:
3122
diff
changeset
|
730 (setq filename |
923f5564a2a1
(find-file-noselect): Expand buffer-file-truename
Richard M. Stallman <rms@gnu.org>
parents:
3122
diff
changeset
|
731 (expand-file-name buffer-file-truename)))) |
337 | 732 ;; Set buffer's default directory to that of the file. |
733 (setq default-directory (file-name-directory filename)) | |
734 ;; Turn off backup files for certain file names. Since | |
735 ;; this is a permanent local, the major mode won't eliminate it. | |
736 (and (not (funcall backup-enable-predicate buffer-file-name)) | |
737 (progn | |
738 (make-local-variable 'backup-inhibited) | |
739 (setq backup-inhibited t))) | |
740 (after-find-file error (not nowarn)))) | |
741 buf))) | |
742 | |
8650
deb008af7049
(after-find-file-from-revert-buffer): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
8618
diff
changeset
|
743 (defvar after-find-file-from-revert-buffer nil) |
deb008af7049
(after-find-file-from-revert-buffer): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
8618
diff
changeset
|
744 |
8556
04a87d0e4a62
(after-find-file): New arg renamed to after-find-file-from-revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
8554
diff
changeset
|
745 (defun after-find-file (&optional error warn noauto |
04a87d0e4a62
(after-find-file): New arg renamed to after-find-file-from-revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
8554
diff
changeset
|
746 after-find-file-from-revert-buffer) |
337 | 747 "Called after finding a file and by the default revert function. |
748 Sets buffer mode, parses local variables. | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
749 Optional args ERROR, WARN, and NOAUTO: ERROR non-nil means there was an |
337 | 750 error in reading the file. WARN non-nil means warn if there |
751 exists an auto-save file more recent than the visited file. | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
752 NOAUTO means don't mess with auto-save mode. |
8556
04a87d0e4a62
(after-find-file): New arg renamed to after-find-file-from-revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
8554
diff
changeset
|
753 Fourth arg AFTER-FIND-FILE-FROM-REVERT-BUFFER non-nil |
04a87d0e4a62
(after-find-file): New arg renamed to after-find-file-from-revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
8554
diff
changeset
|
754 means this call was from `revert-buffer'. |
337 | 755 Finishes by calling the functions in `find-file-hooks'." |
756 (setq buffer-read-only (not (file-writable-p buffer-file-name))) | |
757 (if noninteractive | |
758 nil | |
759 (let* (not-serious | |
760 (msg | |
761 (cond ((and error (file-attributes buffer-file-name)) | |
762 (setq buffer-read-only t) | |
4466
9d62b3cb7dd6
(after-find-file): Improve warning message about
Richard M. Stallman <rms@gnu.org>
parents:
4375
diff
changeset
|
763 "File exists, but cannot be read.") |
337 | 764 ((not buffer-read-only) |
765 (if (and warn | |
766 (file-newer-than-file-p (make-auto-save-file-name) | |
767 buffer-file-name)) | |
768 "Auto save file is newer; consider M-x recover-file" | |
769 (setq not-serious t) | |
770 (if error "(New file)" nil))) | |
771 ((not error) | |
772 (setq not-serious t) | |
773 "Note: file is write protected") | |
774 ((file-attributes (directory-file-name default-directory)) | |
775 "File not found and directory write-protected") | |
1537
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
776 ((file-exists-p (file-name-directory buffer-file-name)) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
777 (setq buffer-read-only nil)) |
337 | 778 (t |
423 | 779 (setq buffer-read-only nil) |
1537
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
780 (if (file-exists-p (file-name-directory (directory-file-name (file-name-directory buffer-file-name)))) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
781 "Use M-x make-dir RET RET to create the directory" |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
782 "Use C-u M-x make-dir RET RET to create directory and its parents"))))) |
337 | 783 (if msg |
784 (progn | |
785 (message msg) | |
786 (or not-serious (sit-for 1 nil t))))) | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
787 (if (and auto-save-default (not noauto)) |
337 | 788 (auto-save-mode t))) |
789 (normal-mode t) | |
790 (mapcar 'funcall find-file-hooks)) | |
791 | |
792 (defun normal-mode (&optional find-file) | |
793 "Choose the major mode for this buffer automatically. | |
794 Also sets up any specified local variables of the file. | |
795 Uses the visited file name, the -*- line, and the local variables spec. | |
796 | |
797 This function is called automatically from `find-file'. In that case, | |
798 we may set up specified local variables depending on the value of | |
799 `enable-local-variables': if it is t, we do; if it is nil, we don't; | |
800 otherwise, we query. `enable-local-variables' is ignored if you | |
801 run `normal-mode' explicitly." | |
802 (interactive) | |
803 (or find-file (funcall (or default-major-mode 'fundamental-mode))) | |
804 (condition-case err | |
805 (set-auto-mode) | |
806 (error (message "File mode specification error: %s" | |
807 (prin1-to-string err)))) | |
808 (condition-case err | |
566 | 809 (let ((enable-local-variables (or (not find-file) |
810 enable-local-variables))) | |
811 (hack-local-variables)) | |
337 | 812 (error (message "File local-variables error: %s" |
813 (prin1-to-string err))))) | |
814 | |
566 | 815 (defvar auto-mode-alist (mapcar 'purecopy |
816 '(("\\.text\\'" . text-mode) | |
817 ("\\.c\\'" . c-mode) | |
818 ("\\.h\\'" . c-mode) | |
819 ("\\.tex\\'" . TeX-mode) | |
820 ("\\.ltx\\'" . LaTeX-mode) | |
821 ("\\.el\\'" . emacs-lisp-mode) | |
822 ("\\.mm\\'" . nroff-mode) | |
823 ("\\.me\\'" . nroff-mode) | |
2399
808b03396f33
(auto-mode-alist): added pairs for .ms, .man, .mk, [Mm]akefile, .lex.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2375
diff
changeset
|
824 ("\\.ms\\'" . nroff-mode) |
808b03396f33
(auto-mode-alist): added pairs for .ms, .man, .mk, [Mm]akefile, .lex.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2375
diff
changeset
|
825 ("\\.man\\'" . nroff-mode) |
566 | 826 ("\\.scm\\'" . scheme-mode) |
827 ("\\.l\\'" . lisp-mode) | |
828 ("\\.lisp\\'" . lisp-mode) | |
829 ("\\.f\\'" . fortran-mode) | |
830 ("\\.for\\'" . fortran-mode) | |
5722
b087b24b26ea
(auto-mode-alist): Add .p and .pas for pascal-mode.
Richard M. Stallman <rms@gnu.org>
parents:
5718
diff
changeset
|
831 ("\\.p\\'" . pascal-mode) |
b087b24b26ea
(auto-mode-alist): Add .p and .pas for pascal-mode.
Richard M. Stallman <rms@gnu.org>
parents:
5718
diff
changeset
|
832 ("\\.pas\\'" . pascal-mode) |
566 | 833 ("\\.mss\\'" . scribe-mode) |
834 ("\\.pl\\'" . prolog-mode) | |
835 ("\\.cc\\'" . c++-mode) | |
3120
c6c87b7f85b8
(auto-mode-alist): Treat .H and .hh as C++ files.
Richard M. Stallman <rms@gnu.org>
parents:
3056
diff
changeset
|
836 ("\\.hh\\'" . c++-mode) |
566 | 837 ("\\.C\\'" . c++-mode) |
3120
c6c87b7f85b8
(auto-mode-alist): Treat .H and .hh as C++ files.
Richard M. Stallman <rms@gnu.org>
parents:
3056
diff
changeset
|
838 ("\\.H\\'" . c++-mode) |
2672
b69eef4cf31d
(auto-mode-alist): Delete the entries for makefile-mode.
Richard M. Stallman <rms@gnu.org>
parents:
2630
diff
changeset
|
839 ;;; ("\\.mk\\'" . makefile-mode) |
b69eef4cf31d
(auto-mode-alist): Delete the entries for makefile-mode.
Richard M. Stallman <rms@gnu.org>
parents:
2630
diff
changeset
|
840 ;;; ("[Mm]akefile" . makefile-mode) |
566 | 841 ;;; Less common extensions come here |
842 ;;; so more common ones above are found faster. | |
5804
8fd47a5040cb
(auto-mode-alist): Add elt for .tcl files.
Richard M. Stallman <rms@gnu.org>
parents:
5733
diff
changeset
|
843 ("\\.texinfo\\'" . texinfo-mode) |
8fd47a5040cb
(auto-mode-alist): Add elt for .tcl files.
Richard M. Stallman <rms@gnu.org>
parents:
5733
diff
changeset
|
844 ("\\.texi\\'" . texinfo-mode) |
566 | 845 ("\\.s\\'" . asm-mode) |
846 ("ChangeLog\\'" . change-log-mode) | |
5453
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
847 ("change.log\\'" . change-log-mode) |
5468
d9fa38b889c9
(auto-mode-alist): Treat changelo like ChangeLog.
Richard M. Stallman <rms@gnu.org>
parents:
5453
diff
changeset
|
848 ("changelo\\'" . change-log-mode) |
1090
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
849 ("ChangeLog.[0-9]+\\'" . change-log-mode) |
566 | 850 ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode) |
1090
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
851 ;; The following should come after the ChangeLog pattern |
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
852 ;; for the sake of ChangeLog.1, etc. |
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
853 ("\\.[12345678]\\'" . nroff-mode) |
566 | 854 ("\\.TeX\\'" . TeX-mode) |
855 ("\\.sty\\'" . LaTeX-mode) | |
856 ("\\.bbl\\'" . LaTeX-mode) | |
857 ("\\.bib\\'" . bibtex-mode) | |
858 ("\\.article\\'" . text-mode) | |
859 ("\\.letter\\'" . text-mode) | |
5804
8fd47a5040cb
(auto-mode-alist): Add elt for .tcl files.
Richard M. Stallman <rms@gnu.org>
parents:
5733
diff
changeset
|
860 ("\\.tcl\\'" . tcl-mode) |
566 | 861 ("\\.lsp\\'" . lisp-mode) |
862 ("\\.awk\\'" . awk-mode) | |
863 ("\\.prolog\\'" . prolog-mode) | |
2399
808b03396f33
(auto-mode-alist): added pairs for .ms, .man, .mk, [Mm]akefile, .lex.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2375
diff
changeset
|
864 ("\\.tar\\'" . tar-mode) |
566 | 865 ;; Mailer puts message to be edited in |
866 ;; /tmp/Re.... or Message | |
867 ("^/tmp/Re" . text-mode) | |
868 ("/Message[0-9]*\\'" . text-mode) | |
869 ;; some news reader is reported to use this | |
870 ("^/tmp/fol/" . text-mode) | |
871 ("\\.y\\'" . c-mode) | |
2399
808b03396f33
(auto-mode-alist): added pairs for .ms, .man, .mk, [Mm]akefile, .lex.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2375
diff
changeset
|
872 ("\\.lex\\'" . c-mode) |
566 | 873 ("\\.oak\\'" . scheme-mode) |
874 ("\\.scm.[0-9]*\\'" . scheme-mode) | |
3240
f09230e68f20
(auto-mode-alist): Fix syntax for sgml mode.
Richard M. Stallman <rms@gnu.org>
parents:
3191
diff
changeset
|
875 ("\\.sgm\\'" . sgml-mode) |
f09230e68f20
(auto-mode-alist): Fix syntax for sgml mode.
Richard M. Stallman <rms@gnu.org>
parents:
3191
diff
changeset
|
876 ("\\.sgml\\'" . sgml-mode) |
f09230e68f20
(auto-mode-alist): Fix syntax for sgml mode.
Richard M. Stallman <rms@gnu.org>
parents:
3191
diff
changeset
|
877 ("\\.dtd\\'" . sgml-mode) |
566 | 878 ;; .emacs following a directory delimiter |
879 ;; in either Unix or VMS syntax. | |
880 ("[]>:/]\\..*emacs\\'" . emacs-lisp-mode) | |
5453
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
881 ;; _emacs following a directory delimiter |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
882 ;; in MsDos syntax |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
883 ("[:/]_emacs\\'" . emacs-lisp-mode) |
566 | 884 ("\\.ml\\'" . lisp-mode))) |
885 "\ | |
886 Alist of filename patterns vs corresponding major mode functions. | |
5600
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
887 Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION). |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
888 Visiting a file whose name matches REGEXP causes FUNCTION to be called. |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
889 If the element has the form (REGEXP FUNCTION), then after calling |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
890 FUNCTION, we delete the suffix that matched REGEXP and search the list |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
891 again for another match.") |
566 | 892 |
5956
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
893 (defconst interpreter-mode-alist |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
894 '(("perl" . perl-mode) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
895 ("wish" . tcl-mode) |
7662
25cf7bc3b8c5
(interpreter-mode-alist): Add wishx, tclsh.
Richard M. Stallman <rms@gnu.org>
parents:
7643
diff
changeset
|
896 ("wishx" . tcl-mode) |
5973
628188ceb43b
interpreter-mode-alist: Add modes for awk, gawk, and scm scripts.
Noah Friedman <friedman@splode.com>
parents:
5958
diff
changeset
|
897 ("tcl" . tcl-mode) |
7662
25cf7bc3b8c5
(interpreter-mode-alist): Add wishx, tclsh.
Richard M. Stallman <rms@gnu.org>
parents:
7643
diff
changeset
|
898 ("tclsh" . tcl-mode) |
5973
628188ceb43b
interpreter-mode-alist: Add modes for awk, gawk, and scm scripts.
Noah Friedman <friedman@splode.com>
parents:
5958
diff
changeset
|
899 ("awk" . awk-mode) |
628188ceb43b
interpreter-mode-alist: Add modes for awk, gawk, and scm scripts.
Noah Friedman <friedman@splode.com>
parents:
5958
diff
changeset
|
900 ("gawk" . awk-mode) |
628188ceb43b
interpreter-mode-alist: Add modes for awk, gawk, and scm scripts.
Noah Friedman <friedman@splode.com>
parents:
5958
diff
changeset
|
901 ("scm" . scheme-mode)) |
5956
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
902 "Alist mapping interpreter names to major modes. |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
903 This alist applies to files whose first line starts with `#!'. |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
904 Each element looks like (INTERPRETER . MODE). |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
905 The car of each element is compared with |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
906 the name of the interpreter specified in the first line. |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
907 If it matches, mode MODE is selected.") |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
908 |
6780
06eb068ba329
(inhibit-first-line-modes-regexps): Renamed from
Richard M. Stallman <rms@gnu.org>
parents:
6734
diff
changeset
|
909 (defconst inhibit-first-line-modes-regexps '("\\.tar$") |
06eb068ba329
(inhibit-first-line-modes-regexps): Renamed from
Richard M. Stallman <rms@gnu.org>
parents:
6734
diff
changeset
|
910 "List of regexps; if one matches a file name, don't look for `-*-'.") |
3364
3dd9b89c6a17
(inhibit-local-variables-regexps): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3280
diff
changeset
|
911 |
5453
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
912 (defvar user-init-file |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
913 "" ; set by command-line |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
914 "File name including directory of user's initialization file.") |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
915 |
337 | 916 (defun set-auto-mode () |
917 "Select major mode appropriate for current buffer. | |
7662
25cf7bc3b8c5
(interpreter-mode-alist): Add wishx, tclsh.
Richard M. Stallman <rms@gnu.org>
parents:
7643
diff
changeset
|
918 This checks for a -*- mode tag in the buffer's text, |
25cf7bc3b8c5
(interpreter-mode-alist): Add wishx, tclsh.
Richard M. Stallman <rms@gnu.org>
parents:
7643
diff
changeset
|
919 compares the filename against the entries in `auto-mode-alist', |
25cf7bc3b8c5
(interpreter-mode-alist): Add wishx, tclsh.
Richard M. Stallman <rms@gnu.org>
parents:
7643
diff
changeset
|
920 or checks the interpreter that runs this file against |
25cf7bc3b8c5
(interpreter-mode-alist): Add wishx, tclsh.
Richard M. Stallman <rms@gnu.org>
parents:
7643
diff
changeset
|
921 `interpreter-mode-alist'. |
25cf7bc3b8c5
(interpreter-mode-alist): Add wishx, tclsh.
Richard M. Stallman <rms@gnu.org>
parents:
7643
diff
changeset
|
922 |
25cf7bc3b8c5
(interpreter-mode-alist): Add wishx, tclsh.
Richard M. Stallman <rms@gnu.org>
parents:
7643
diff
changeset
|
923 It does not check for the `mode:' local variable in the |
25cf7bc3b8c5
(interpreter-mode-alist): Add wishx, tclsh.
Richard M. Stallman <rms@gnu.org>
parents:
7643
diff
changeset
|
924 Local Variables section of the file; for that, use `hack-local-variables'. |
566 | 925 |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
926 If `enable-local-variables' is nil, this function does not check for a |
566 | 927 -*- mode tag." |
337 | 928 ;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*- |
4699
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
929 (let (beg end done) |
337 | 930 (save-excursion |
931 (goto-char (point-min)) | |
932 (skip-chars-forward " \t\n") | |
4699
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
933 (and enable-local-variables |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
934 ;; Don't look for -*- if this file name matches any |
6780
06eb068ba329
(inhibit-first-line-modes-regexps): Renamed from
Richard M. Stallman <rms@gnu.org>
parents:
6734
diff
changeset
|
935 ;; of the regexps in inhibit-first-line-modes-regexps. |
06eb068ba329
(inhibit-first-line-modes-regexps): Renamed from
Richard M. Stallman <rms@gnu.org>
parents:
6734
diff
changeset
|
936 (let ((temp inhibit-first-line-modes-regexps)) |
4699
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
937 (while (and temp |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
938 (not (string-match (car temp) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
939 buffer-file-name))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
940 (setq temp (cdr temp))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
941 (not temp)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
942 (search-forward "-*-" (save-excursion |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
943 ;; If the file begins with "#!" |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
944 ;; (exec interpreter magic), look |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
945 ;; for mode frobs in the first two |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
946 ;; lines. You cannot necessarily |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
947 ;; put them in the first line of |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
948 ;; such a file without screwing up |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
949 ;; the interpreter invocation. |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
950 (end-of-line (and (looking-at "^#!") 2)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
951 (point)) t) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
952 (progn |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
953 (skip-chars-forward " \t") |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
954 (setq beg (point)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
955 (search-forward "-*-" |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
956 (save-excursion (end-of-line) (point)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
957 t)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
958 (progn |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
959 (forward-char -3) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
960 (skip-chars-backward " \t") |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
961 (setq end (point)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
962 (goto-char beg) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
963 (if (save-excursion (search-forward ":" end t)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
964 ;; Find all specifications for the `mode:' variable |
6322 | 965 ;; and execute them left to right. |
4699
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
966 (while (let ((case-fold-search t)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
967 (search-forward "mode:" end t)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
968 (skip-chars-forward " \t") |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
969 (setq beg (point)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
970 (if (search-forward ";" end t) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
971 (forward-char -1) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
972 (goto-char end)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
973 (skip-chars-backward " \t") |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
974 (funcall (intern (concat (downcase (buffer-substring beg (point))) "-mode")))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
975 ;; Simple -*-MODE-*- case. |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
976 (funcall (intern (concat (downcase (buffer-substring beg end)) "-mode")))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
977 (setq done t))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
978 ;; If we didn't find a mode from a -*- line, try using the file name. |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
979 (if (and (not done) buffer-file-name) |
5600
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
980 (let ((name buffer-file-name) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
981 (keep-going t)) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
982 ;; Remove backup-suffixes from file name. |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
983 (setq name (file-name-sans-versions name)) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
984 (while keep-going |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
985 (setq keep-going nil) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
986 (let ((alist auto-mode-alist) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
987 (mode nil)) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
988 ;; Find first matching alist entry. |
8362
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
989 (let ((case-fold-search (eq system-type 'vax-vms))) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
990 (while (and (not mode) alist) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
991 (if (string-match (car (car alist)) name) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
992 (if (and (consp (cdr (car alist))) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
993 (nth 2 (car alist))) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
994 (progn |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
995 (setq mode (car (cdr (car alist))) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
996 name (substring name 0 (match-beginning 0)) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
997 keep-going t)) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
998 (setq mode (cdr (car alist)) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
999 keep-going nil))) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1000 (setq alist (cdr alist)))) |
5956
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
1001 (if mode |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
1002 (funcall mode) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
1003 ;; If we can't deduce a mode from the file name, |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
1004 ;; look for an interpreter specified in the first line. |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
1005 (let ((interpreter |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
1006 (save-excursion |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
1007 (goto-char (point-min)) |
7662
25cf7bc3b8c5
(interpreter-mode-alist): Add wishx, tclsh.
Richard M. Stallman <rms@gnu.org>
parents:
7643
diff
changeset
|
1008 (if (looking-at "#! *\\([^ \t\n]+\\)") |
25cf7bc3b8c5
(interpreter-mode-alist): Add wishx, tclsh.
Richard M. Stallman <rms@gnu.org>
parents:
7643
diff
changeset
|
1009 (buffer-substring (match-beginning 1) |
25cf7bc3b8c5
(interpreter-mode-alist): Add wishx, tclsh.
Richard M. Stallman <rms@gnu.org>
parents:
7643
diff
changeset
|
1010 (match-end 1)) |
5956
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
1011 ""))) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
1012 elt) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
1013 ;; Map interpreter name to a mode. |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
1014 (setq elt (assoc (file-name-nondirectory interpreter) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
1015 interpreter-mode-alist)) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
1016 (if elt |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
1017 (funcall (cdr elt)))))))))))) |
337 | 1018 |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1019 (defun hack-local-variables-prop-line () |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1020 ;; Set local variables specified in the -*- line. |
4699
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
1021 ;; Ignore any specification for `mode:'; |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
1022 ;; set-auto-mode should already have handled that. |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1023 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1024 (goto-char (point-min)) |
6575
9aba6be8e460
(hack-local-variables-prop-line): Search two lines if "#!".
Karl Heuer <kwzh@gnu.org>
parents:
6574
diff
changeset
|
1025 (let ((result nil) |
9aba6be8e460
(hack-local-variables-prop-line): Search two lines if "#!".
Karl Heuer <kwzh@gnu.org>
parents:
6574
diff
changeset
|
1026 (end (save-excursion (end-of-line (and (looking-at "^#!") 2)) (point)))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1027 ;; Parse the -*- line into the `result' alist. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1028 (cond ((not (search-forward "-*-" end t)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1029 ;; doesn't have one. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1030 nil) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1031 ((looking-at "[ \t]*\\([^ \t\n\r:;]+\\)\\([ \t]*-\\*-\\)") |
6575
9aba6be8e460
(hack-local-variables-prop-line): Search two lines if "#!".
Karl Heuer <kwzh@gnu.org>
parents:
6574
diff
changeset
|
1032 ;; Simple form: "-*- MODENAME -*-". Already handled. |
9aba6be8e460
(hack-local-variables-prop-line): Search two lines if "#!".
Karl Heuer <kwzh@gnu.org>
parents:
6574
diff
changeset
|
1033 nil) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1034 (t |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1035 ;; Hairy form: '-*-' [ <variable> ':' <value> ';' ]* '-*-' |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1036 ;; (last ";" is optional). |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1037 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1038 (if (search-forward "-*-" end t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1039 (setq end (- (point) 3)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1040 (error "-*- not terminated before end of line"))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1041 (while (< (point) end) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1042 (or (looking-at "[ \t]*\\([^ \t\n:]+\\)[ \t]*:[ \t]*") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1043 (error "malformed -*- line")) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1044 (goto-char (match-end 0)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1045 (let ((key (intern (downcase (buffer-substring |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1046 (match-beginning 1) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1047 (match-end 1))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1048 (val (save-restriction |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1049 (narrow-to-region (point) end) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1050 (read (current-buffer))))) |
6575
9aba6be8e460
(hack-local-variables-prop-line): Search two lines if "#!".
Karl Heuer <kwzh@gnu.org>
parents:
6574
diff
changeset
|
1051 (or (eq key 'mode) |
9aba6be8e460
(hack-local-variables-prop-line): Search two lines if "#!".
Karl Heuer <kwzh@gnu.org>
parents:
6574
diff
changeset
|
1052 (setq result (cons (cons key val) result))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1053 (skip-chars-forward " \t;"))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1054 (setq result (nreverse result)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1055 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1056 (if (and result |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1057 (or (eq enable-local-variables t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1058 (and enable-local-variables |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1059 (save-window-excursion |
5292
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1060 (condition-case nil |
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1061 (switch-to-buffer (current-buffer)) |
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1062 (error |
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1063 ;; If we fail to switch in the selected window, |
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1064 ;; it is probably a minibuffer. |
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1065 ;; So try another window. |
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1066 (condition-case nil |
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1067 (switch-to-buffer-other-window (current-buffer)) |
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1068 (error |
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1069 (switch-to-buffer-other-frame (current-buffer)))))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1070 (y-or-n-p (format "Set local variables as specified in -*- line of %s? " |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1071 (file-name-nondirectory buffer-file-name))))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1072 (while result |
6575
9aba6be8e460
(hack-local-variables-prop-line): Search two lines if "#!".
Karl Heuer <kwzh@gnu.org>
parents:
6574
diff
changeset
|
1073 (hack-one-local-variable (car (car result)) (cdr (car result))) |
4699
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
1074 (setq result (cdr result))))))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1075 |
566 | 1076 (defun hack-local-variables () |
1371 | 1077 "Parse and put into effect this buffer's local variables spec." |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1078 (hack-local-variables-prop-line) |
337 | 1079 ;; Look for "Local variables:" line in last page. |
1080 (save-excursion | |
1081 (goto-char (point-max)) | |
1082 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move) | |
1083 (if (let ((case-fold-search t)) | |
1084 (and (search-forward "Local Variables:" nil t) | |
566 | 1085 (or (eq enable-local-variables t) |
337 | 1086 (and enable-local-variables |
1087 (save-window-excursion | |
1088 (switch-to-buffer (current-buffer)) | |
1089 (save-excursion | |
1090 (beginning-of-line) | |
1091 (set-window-start (selected-window) (point))) | |
1092 (y-or-n-p (format "Set local variables as specified at end of %s? " | |
4837
b040c520f090
(hack-local-variables): If buffer has no file, display its buffer name.
Richard M. Stallman <rms@gnu.org>
parents:
4762
diff
changeset
|
1093 (if buffer-file-name |
b040c520f090
(hack-local-variables): If buffer has no file, display its buffer name.
Richard M. Stallman <rms@gnu.org>
parents:
4762
diff
changeset
|
1094 (file-name-nondirectory |
b040c520f090
(hack-local-variables): If buffer has no file, display its buffer name.
Richard M. Stallman <rms@gnu.org>
parents:
4762
diff
changeset
|
1095 buffer-file-name) |
b040c520f090
(hack-local-variables): If buffer has no file, display its buffer name.
Richard M. Stallman <rms@gnu.org>
parents:
4762
diff
changeset
|
1096 (concat "buffer " |
b040c520f090
(hack-local-variables): If buffer has no file, display its buffer name.
Richard M. Stallman <rms@gnu.org>
parents:
4762
diff
changeset
|
1097 (buffer-name)))))))))) |
337 | 1098 (let ((continue t) |
1066
9b788095582b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
941
diff
changeset
|
1099 prefix prefixlen suffix beg |
9b788095582b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
941
diff
changeset
|
1100 (enable-local-eval enable-local-eval)) |
337 | 1101 ;; The prefix is what comes before "local variables:" in its line. |
1102 ;; The suffix is what comes after "local variables:" in its line. | |
1103 (skip-chars-forward " \t") | |
1104 (or (eolp) | |
1105 (setq suffix (buffer-substring (point) | |
1106 (progn (end-of-line) (point))))) | |
1107 (goto-char (match-beginning 0)) | |
1108 (or (bolp) | |
1109 (setq prefix | |
1110 (buffer-substring (point) | |
1111 (progn (beginning-of-line) (point))))) | |
566 | 1112 |
337 | 1113 (if prefix (setq prefixlen (length prefix) |
1114 prefix (regexp-quote prefix))) | |
1115 (if suffix (setq suffix (concat (regexp-quote suffix) "$"))) | |
1116 (while continue | |
1117 ;; Look at next local variable spec. | |
1118 (if selective-display (re-search-forward "[\n\C-m]") | |
1119 (forward-line 1)) | |
1120 ;; Skip the prefix, if any. | |
1121 (if prefix | |
1122 (if (looking-at prefix) | |
1123 (forward-char prefixlen) | |
1124 (error "Local variables entry is missing the prefix"))) | |
1125 ;; Find the variable name; strip whitespace. | |
1126 (skip-chars-forward " \t") | |
1127 (setq beg (point)) | |
1128 (skip-chars-forward "^:\n") | |
1129 (if (eolp) (error "Missing colon in local variables entry")) | |
1130 (skip-chars-backward " \t") | |
1131 (let* ((str (buffer-substring beg (point))) | |
1132 (var (read str)) | |
1133 val) | |
1134 ;; Setting variable named "end" means end of list. | |
1135 (if (string-equal (downcase str) "end") | |
1136 (setq continue nil) | |
1137 ;; Otherwise read the variable value. | |
1138 (skip-chars-forward "^:") | |
1139 (forward-char 1) | |
1140 (setq val (read (current-buffer))) | |
1141 (skip-chars-backward "\n") | |
1142 (skip-chars-forward " \t") | |
1143 (or (if suffix (looking-at suffix) (eolp)) | |
1144 (error "Local variables entry is terminated incorrectly")) | |
1145 ;; Set the variable. "Variables" mode and eval are funny. | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1146 (hack-one-local-variable var val)))))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1147 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1148 (defconst ignored-local-variables |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1149 '(enable-local-eval) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1150 "Variables to be ignored in a file's local variable spec.") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1151 |
6734
6e61dbbfce80
(hack-one-local-variable): Test for risky-local-variable property.
Richard M. Stallman <rms@gnu.org>
parents:
6733
diff
changeset
|
1152 ;; Get confirmation before setting these variables as locals in a file. |
8148
0035bfc4bc9d
(file-truename): Use iteration when possible.
Richard M. Stallman <rms@gnu.org>
parents:
8140
diff
changeset
|
1153 (put 'debugger 'risky-local-variable t) |
7682
ce09b4fd6cc8
Add more risky-local-variable properties.
Richard M. Stallman <rms@gnu.org>
parents:
7662
diff
changeset
|
1154 (put 'enable-local-eval 'risky-local-variable t) |
6734
6e61dbbfce80
(hack-one-local-variable): Test for risky-local-variable property.
Richard M. Stallman <rms@gnu.org>
parents:
6733
diff
changeset
|
1155 (put 'eval 'risky-local-variable t) |
6e61dbbfce80
(hack-one-local-variable): Test for risky-local-variable property.
Richard M. Stallman <rms@gnu.org>
parents:
6733
diff
changeset
|
1156 (put 'file-name-handler-alist 'risky-local-variable t) |
6e61dbbfce80
(hack-one-local-variable): Test for risky-local-variable property.
Richard M. Stallman <rms@gnu.org>
parents:
6733
diff
changeset
|
1157 (put 'minor-mode-map-alist 'risky-local-variable t) |
6e61dbbfce80
(hack-one-local-variable): Test for risky-local-variable property.
Richard M. Stallman <rms@gnu.org>
parents:
6733
diff
changeset
|
1158 (put 'after-load-alist 'risky-local-variable t) |
7682
ce09b4fd6cc8
Add more risky-local-variable properties.
Richard M. Stallman <rms@gnu.org>
parents:
7662
diff
changeset
|
1159 (put 'buffer-file-name 'risky-local-variable t) |
ce09b4fd6cc8
Add more risky-local-variable properties.
Richard M. Stallman <rms@gnu.org>
parents:
7662
diff
changeset
|
1160 (put 'buffer-auto-save-file-name 'risky-local-variable t) |
ce09b4fd6cc8
Add more risky-local-variable properties.
Richard M. Stallman <rms@gnu.org>
parents:
7662
diff
changeset
|
1161 (put 'buffer-file-truename 'risky-local-variable t) |
8171
750282040c17
(process-environment, exec-path, load-path,exec-directory):
Richard M. Stallman <rms@gnu.org>
parents:
8165
diff
changeset
|
1162 (put 'exec-path 'risky-local-variable t) |
750282040c17
(process-environment, exec-path, load-path,exec-directory):
Richard M. Stallman <rms@gnu.org>
parents:
8165
diff
changeset
|
1163 (put 'load-path 'risky-local-variable t) |
750282040c17
(process-environment, exec-path, load-path,exec-directory):
Richard M. Stallman <rms@gnu.org>
parents:
8165
diff
changeset
|
1164 (put 'exec-directory 'risky-local-variable t) |
750282040c17
(process-environment, exec-path, load-path,exec-directory):
Richard M. Stallman <rms@gnu.org>
parents:
8165
diff
changeset
|
1165 (put 'process-environment 'risky-local-variable t) |
8177
defefddf88db
(outline-level): Mark it risky.
Richard M. Stallman <rms@gnu.org>
parents:
8171
diff
changeset
|
1166 ;; Don't wait for outline.el to be loaded, for the sake of outline-minor-mode. |
defefddf88db
(outline-level): Mark it risky.
Richard M. Stallman <rms@gnu.org>
parents:
8171
diff
changeset
|
1167 (put 'outline-level 'risky-local-variable t) |
8251
6f692cc01d52
(rmail-output-file-alist): Mark it risky.
Richard M. Stallman <rms@gnu.org>
parents:
8232
diff
changeset
|
1168 (put 'rmail-output-file-alist 'risky-local-variable t) |
7682
ce09b4fd6cc8
Add more risky-local-variable properties.
Richard M. Stallman <rms@gnu.org>
parents:
7662
diff
changeset
|
1169 |
7217
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1170 (defun hack-one-local-variable-quotep (exp) |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1171 (and (consp exp) (eq (car exp) 'quote) (consp (cdr exp)))) |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1172 |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1173 ;; "Set" one variable in a local variables spec. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1174 ;; A few variable names are treated specially. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1175 (defun hack-one-local-variable (var val) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1176 (cond ((eq var 'mode) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1177 (funcall (intern (concat (downcase (symbol-name val)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1178 "-mode")))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1179 ((memq var ignored-local-variables) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1180 nil) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1181 ;; "Setting" eval means either eval it or do nothing. |
3626
ae0389767674
(hack-one-local-variable): Treat ...-hook(s) and ..-function(s)
Richard M. Stallman <rms@gnu.org>
parents:
3624
diff
changeset
|
1182 ;; Likewise for setting hook variables. |
6734
6e61dbbfce80
(hack-one-local-variable): Test for risky-local-variable property.
Richard M. Stallman <rms@gnu.org>
parents:
6733
diff
changeset
|
1183 ((or (get var 'risky-local-variable) |
8171
750282040c17
(process-environment, exec-path, load-path,exec-directory):
Richard M. Stallman <rms@gnu.org>
parents:
8165
diff
changeset
|
1184 (string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|-command$" |
6733
bf9c1e9a4055
(hack-one-local-variable): Treat varnames ending in -form or -forms like eval.
Richard M. Stallman <rms@gnu.org>
parents:
6677
diff
changeset
|
1185 (symbol-name var))) |
7217
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1186 ;; Permit evaling a put of a harmless property |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1187 ;; if the args do nothing tricky. |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1188 (if (or (and (eq var 'eval) |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1189 (consp val) |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1190 (eq (car val) 'put) |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1191 (hack-one-local-variable-quotep (nth 1 val)) |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1192 (hack-one-local-variable-quotep (nth 2 val)) |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1193 ;; Only allow safe values of lisp-indent-hook; |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1194 ;; not functions. |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1195 (or (numberp (nth 3 val)) |
7643
86001e904ef3
(hack-one-local-variable): Check properly for `defun.
Richard M. Stallman <rms@gnu.org>
parents:
7440
diff
changeset
|
1196 (equal (nth 3 val) ''defun)) |
7217
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1197 (memq (nth 1 (nth 2 val)) |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1198 '(lisp-indent-hook))) |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1199 ;; Permit eval if not root and user says ok. |
8181
a5c67d37141b
(hack-one-local-variable): Check for root using user-uid.
Richard M. Stallman <rms@gnu.org>
parents:
8177
diff
changeset
|
1200 (and (not (zerop (user-uid))) |
7217
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1201 (or (eq enable-local-eval t) |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1202 (and enable-local-eval |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1203 (save-window-excursion |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1204 (switch-to-buffer (current-buffer)) |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1205 (save-excursion |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1206 (beginning-of-line) |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1207 (set-window-start (selected-window) (point))) |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1208 (setq enable-local-eval |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1209 (y-or-n-p (format "Process `eval' or hook local variables in file %s? " |
c35a4919c161
(hack-one-local-variable): Silently execute eval
Richard M. Stallman <rms@gnu.org>
parents:
7215
diff
changeset
|
1210 (file-name-nondirectory buffer-file-name))))))))) |
3626
ae0389767674
(hack-one-local-variable): Treat ...-hook(s) and ..-function(s)
Richard M. Stallman <rms@gnu.org>
parents:
3624
diff
changeset
|
1211 (if (eq var 'eval) |
ae0389767674
(hack-one-local-variable): Treat ...-hook(s) and ..-function(s)
Richard M. Stallman <rms@gnu.org>
parents:
3624
diff
changeset
|
1212 (save-excursion (eval val)) |
ae0389767674
(hack-one-local-variable): Treat ...-hook(s) and ..-function(s)
Richard M. Stallman <rms@gnu.org>
parents:
3624
diff
changeset
|
1213 (make-local-variable var) |
ae0389767674
(hack-one-local-variable): Treat ...-hook(s) and ..-function(s)
Richard M. Stallman <rms@gnu.org>
parents:
3624
diff
changeset
|
1214 (set var val)) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1215 (message "Ignoring `eval:' in file's local variables"))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1216 ;; Ordinary variable, really set it. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1217 (t (make-local-variable var) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1218 (set var val)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1219 |
337 | 1220 |
1221 (defun set-visited-file-name (filename) | |
1222 "Change name of file visited in current buffer to FILENAME. | |
1223 The next time the buffer is saved it will go in the newly specified file. | |
1224 nil or empty string as argument means make buffer not be visiting any file. | |
1225 Remember to delete the initial contents of the minibuffer | |
1226 if you wish to pass an empty string as the argument." | |
1227 (interactive "FSet visited file name: ") | |
8140
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1228 (let (truename) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1229 (if filename |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1230 (setq filename |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1231 (if (string-equal filename "") |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1232 nil |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1233 (expand-file-name filename)))) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1234 (if filename |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1235 (progn |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1236 (setq truename (file-truename filename)) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1237 (if find-file-visit-truename |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1238 ;; Do not use the abbreviated filename, because |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1239 ;; write-region will reset it to the expanded filename |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1240 (setq filename truename)))) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1241 (or (equal filename buffer-file-name) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1242 (progn |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1243 (and filename (lock-buffer filename)) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1244 (unlock-buffer))) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1245 (setq buffer-file-name filename) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1246 (if filename ; make buffer name reflect filename. |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1247 (let ((new-name (file-name-nondirectory buffer-file-name))) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1248 (if (string= new-name "") |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1249 (error "Empty file name")) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1250 (if (eq system-type 'vax-vms) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1251 (setq new-name (downcase new-name))) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1252 (setq default-directory (file-name-directory buffer-file-name)) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1253 (or (string= new-name (buffer-name)) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1254 (rename-buffer new-name t)))) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1255 (setq buffer-backed-up nil) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1256 (clear-visited-file-modtime) |
8151
2ac4479dd0ff
(set-visited-file-name): Avoid crash if TRUENAME is nil.
Richard M. Stallman <rms@gnu.org>
parents:
8148
diff
changeset
|
1257 (if truename |
2ac4479dd0ff
(set-visited-file-name): Avoid crash if TRUENAME is nil.
Richard M. Stallman <rms@gnu.org>
parents:
8148
diff
changeset
|
1258 (setq buffer-file-truename (abbreviate-file-name truename))) |
8140
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1259 (setq buffer-file-number |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1260 (if filename |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1261 (nth 10 (file-attributes buffer-file-name)) |
ed2ac2e85eef
(set-visited-file-name): Handle find-file-visit-truename
Richard M. Stallman <rms@gnu.org>
parents:
7993
diff
changeset
|
1262 nil))) |
337 | 1263 ;; write-file-hooks is normally used for things like ftp-find-file |
1264 ;; that visit things that are not local files as if they were files. | |
1265 ;; Changing to visit an ordinary local file instead should flush the hook. | |
1266 (kill-local-variable 'write-file-hooks) | |
2375
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
1267 (kill-local-variable 'local-write-file-hooks) |
337 | 1268 (kill-local-variable 'revert-buffer-function) |
1269 (kill-local-variable 'backup-inhibited) | |
6546
8eb722515c31
(set-visited-file-name): Kill local var vc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
6454
diff
changeset
|
1270 ;; If buffer was read-only because of version control, |
8eb722515c31
(set-visited-file-name): Kill local var vc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
6454
diff
changeset
|
1271 ;; that reason is gone now, so make it writable. |
8eb722515c31
(set-visited-file-name): Kill local var vc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
6454
diff
changeset
|
1272 (if vc-mode |
8eb722515c31
(set-visited-file-name): Kill local var vc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
6454
diff
changeset
|
1273 (setq buffer-read-only nil)) |
8eb722515c31
(set-visited-file-name): Kill local var vc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
6454
diff
changeset
|
1274 (kill-local-variable 'vc-mode) |
337 | 1275 ;; Turn off backup files for certain file names. |
1276 ;; Since this is a permanent local, the major mode won't eliminate it. | |
1277 (and (not (funcall backup-enable-predicate buffer-file-name)) | |
1278 (progn | |
1279 (make-local-variable 'backup-inhibited) | |
1280 (setq backup-inhibited t))) | |
3944
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1281 (let ((oauto buffer-auto-save-file-name)) |
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1282 ;; If auto-save was not already on, turn it on if appropriate. |
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1283 (if (not buffer-auto-save-file-name) |
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1284 (and buffer-file-name auto-save-default |
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1285 (auto-save-mode t)) |
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1286 ;; If auto save is on, start using a new name. |
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1287 ;; We deliberately don't rename or delete the old auto save |
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1288 ;; for the old visited file name. This is because perhaps |
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1289 ;; the user wants to save the new state and then compare with the |
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1290 ;; previous state from the auto save file. |
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1291 (setq buffer-auto-save-file-name |
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1292 (make-auto-save-file-name))) |
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1293 ;; Rename the old auto save file if any. |
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1294 (and oauto buffer-auto-save-file-name |
3946
535f1f575d04
(set-visited-file-name): Rename auto-save file only if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
3944
diff
changeset
|
1295 (file-exists-p oauto) |
3944
5e740ac08e39
(set-visited-file-name): Rename the old auto save file.
Richard M. Stallman <rms@gnu.org>
parents:
3835
diff
changeset
|
1296 (rename-file oauto buffer-auto-save-file-name t))) |
337 | 1297 (if buffer-file-name |
1298 (set-buffer-modified-p t))) | |
1299 | |
1300 (defun write-file (filename) | |
1301 "Write current buffer into file FILENAME. | |
2003
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1302 Makes buffer visit that file, and marks it not modified. |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1303 If the buffer is already visiting a file, you can specify |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1304 a directory name as FILENAME, to write a file of the same |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1305 old name in that directory." |
337 | 1306 ;; (interactive "FWrite file: ") |
1307 (interactive | |
1308 (list (if buffer-file-name | |
1309 (read-file-name "Write file: " | |
1310 nil nil nil nil) | |
1311 (read-file-name "Write file: " | |
1312 (cdr (assq 'default-directory | |
1313 (buffer-local-variables))) | |
1314 nil nil (buffer-name))))) | |
1315 (or (null filename) (string-equal filename "") | |
2003
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1316 (progn |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1317 ;; If arg is just a directory, |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1318 ;; use same file name, but in that directory. |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1319 (if (and (file-directory-p filename) buffer-file-name) |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1320 (setq filename (concat (file-name-as-directory filename) |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1321 (file-name-nondirectory buffer-file-name)))) |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1322 (set-visited-file-name filename))) |
337 | 1323 (set-buffer-modified-p t) |
1324 (save-buffer)) | |
1325 | |
1326 (defun backup-buffer () | |
1327 "Make a backup of the disk file visited by the current buffer, if appropriate. | |
1328 This is normally done before saving the buffer the first time. | |
1329 If the value is non-nil, it is the result of `file-modes' on the original | |
1330 file; this means that the caller, after saving the buffer, should change | |
1331 the modes of the new file to agree with the old modes." | |
1332 (if (and make-backup-files (not backup-inhibited) | |
1333 (not buffer-backed-up) | |
1334 (file-exists-p buffer-file-name) | |
1335 (memq (aref (elt (file-attributes buffer-file-name) 8) 0) | |
1336 '(?- ?l))) | |
1337 (let ((real-file-name buffer-file-name) | |
1338 backup-info backupname targets setmodes) | |
1339 ;; If specified name is a symbolic link, chase it to the target. | |
1340 ;; Thus we make the backups in the directory where the real file is. | |
3260
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
1341 (setq real-file-name (file-chase-links real-file-name)) |
337 | 1342 (setq backup-info (find-backup-file-name real-file-name) |
1343 backupname (car backup-info) | |
1344 targets (cdr backup-info)) | |
1345 ;;; (if (file-directory-p buffer-file-name) | |
1346 ;;; (error "Cannot save buffer in directory %s" buffer-file-name)) | |
1347 (condition-case () | |
1348 (let ((delete-old-versions | |
1349 ;; If have old versions to maybe delete, | |
1350 ;; ask the user to confirm now, before doing anything. | |
1351 ;; But don't actually delete til later. | |
1352 (and targets | |
8157
14766204c0fe
(delete-old-versions): Var renamed from trim-versions-without-asking.
Richard M. Stallman <rms@gnu.org>
parents:
8151
diff
changeset
|
1353 (or (eq delete-old-versions t) (eq delete-old-versions nil)) |
14766204c0fe
(delete-old-versions): Var renamed from trim-versions-without-asking.
Richard M. Stallman <rms@gnu.org>
parents:
8151
diff
changeset
|
1354 (or delete-old-versions |
337 | 1355 (y-or-n-p (format "Delete excess backup versions of %s? " |
1356 real-file-name)))))) | |
1357 ;; Actually write the back up file. | |
1358 (condition-case () | |
1359 (if (or file-precious-flag | |
1360 ; (file-symlink-p buffer-file-name) | |
1361 backup-by-copying | |
1362 (and backup-by-copying-when-linked | |
1363 (> (file-nlinks real-file-name) 1)) | |
1364 (and backup-by-copying-when-mismatch | |
1365 (let ((attr (file-attributes real-file-name))) | |
1366 (or (nth 9 attr) | |
1367 (/= (nth 2 attr) (user-uid)))))) | |
1103
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1368 (condition-case () |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1369 (copy-file real-file-name backupname t t) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1370 (file-error |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1371 ;; If copying fails because file BACKUPNAME |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1372 ;; is not writable, delete that file and try again. |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1373 (if (and (file-exists-p backupname) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1374 (not (file-writable-p backupname))) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1375 (delete-file backupname)) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1376 (copy-file real-file-name backupname t t))) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1377 ;; rename-file should delete old backup. |
337 | 1378 (rename-file real-file-name backupname t) |
1379 (setq setmodes (file-modes backupname))) | |
1380 (file-error | |
1381 ;; If trouble writing the backup, write it in ~. | |
1382 (setq backupname (expand-file-name "~/%backup%~")) | |
1383 (message "Cannot write backup file; backing up in ~/%%backup%%~") | |
1384 (sleep-for 1) | |
1103
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1385 (condition-case () |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1386 (copy-file real-file-name backupname t t) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1387 (file-error |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1388 ;; If copying fails because file BACKUPNAME |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1389 ;; is not writable, delete that file and try again. |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1390 (if (and (file-exists-p backupname) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1391 (not (file-writable-p backupname))) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1392 (delete-file backupname)) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1393 (copy-file real-file-name backupname t t))))) |
337 | 1394 (setq buffer-backed-up t) |
1395 ;; Now delete the old versions, if desired. | |
1396 (if delete-old-versions | |
1397 (while targets | |
1398 (condition-case () | |
1399 (delete-file (car targets)) | |
1400 (file-error nil)) | |
1401 (setq targets (cdr targets)))) | |
1402 setmodes) | |
1403 (file-error nil))))) | |
1404 | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1405 (defun file-name-sans-versions (name &optional keep-backup-version) |
337 | 1406 "Return FILENAME sans backup versions or strings. |
1407 This is a separate procedure so your site-init or startup file can | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1408 redefine it. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1409 If the optional argument KEEP-BACKUP-VERSION is non-nil, |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1410 we do not remove backup version numbers, only true file version numbers." |
7030
9e51b51e8595
Pass operation to find-file-name-handler.
Karl Heuer <kwzh@gnu.org>
parents:
6899
diff
changeset
|
1411 (let ((handler (find-file-name-handler name 'file-name-sans-versions))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1412 (if handler |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1413 (funcall handler 'file-name-sans-versions name keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1414 (substring name 0 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1415 (if (eq system-type 'vax-vms) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1416 ;; VMS version number is (a) semicolon, optional |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1417 ;; sign, zero or more digits or (b) period, option |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1418 ;; sign, zero or more digits, provided this is the |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1419 ;; second period encountered outside of the |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1420 ;; device/directory part of the file name. |
6309
9217f29851c2
Don't use triple-hyphen in a character class.
Karl Heuer <kwzh@gnu.org>
parents:
6294
diff
changeset
|
1421 (or (string-match ";[-+]?[0-9]*\\'" name) |
9217f29851c2
Don't use triple-hyphen in a character class.
Karl Heuer <kwzh@gnu.org>
parents:
6294
diff
changeset
|
1422 (if (string-match "\\.[^]>:]*\\(\\.[-+]?[0-9]*\\)\\'" |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1423 name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1424 (match-beginning 1)) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1425 (length name)) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1426 (if keep-backup-version |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1427 (length name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1428 (or (string-match "\\.~[0-9]+~\\'" name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1429 (string-match "~\\'" name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1430 (length name)))))))) |
337 | 1431 |
8987
1db2285cec99
(file-ownership-preserved-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8937
diff
changeset
|
1432 (defun file-ownership-preserved-p (file) |
1db2285cec99
(file-ownership-preserved-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8937
diff
changeset
|
1433 "Returns t if deleting FILE and rewriting it would preserve the owner." |
1db2285cec99
(file-ownership-preserved-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8937
diff
changeset
|
1434 (let ((handler (find-file-name-handler file 'file-ownership-preserved-p))) |
1db2285cec99
(file-ownership-preserved-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8937
diff
changeset
|
1435 (if handler |
1db2285cec99
(file-ownership-preserved-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8937
diff
changeset
|
1436 (funcall handler 'file-ownership-preserved-p file) |
1db2285cec99
(file-ownership-preserved-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8937
diff
changeset
|
1437 (= (nth 2 (file-attributes file)) (user-uid))))) |
1db2285cec99
(file-ownership-preserved-p): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8937
diff
changeset
|
1438 |
8908
25d8b804abd3
(file-name-sans-extension): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8650
diff
changeset
|
1439 (defun file-name-sans-extension (filename) |
25d8b804abd3
(file-name-sans-extension): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8650
diff
changeset
|
1440 "Return FILENAME sans final \"extension\". |
25d8b804abd3
(file-name-sans-extension): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8650
diff
changeset
|
1441 The extension, in a file name, is the part that follows the last `.'." |
25d8b804abd3
(file-name-sans-extension): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8650
diff
changeset
|
1442 (save-match-data |
25d8b804abd3
(file-name-sans-extension): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8650
diff
changeset
|
1443 (let ((file (file-name-sans-versions (file-name-nondirectory filename))) |
25d8b804abd3
(file-name-sans-extension): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8650
diff
changeset
|
1444 directory) |
25d8b804abd3
(file-name-sans-extension): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8650
diff
changeset
|
1445 (if (string-match "\\.[^.]*\\'" file) |
25d8b804abd3
(file-name-sans-extension): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8650
diff
changeset
|
1446 (if (setq directory (file-name-directory filename)) |
25d8b804abd3
(file-name-sans-extension): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8650
diff
changeset
|
1447 (expand-file-name (substring file 0 (match-beginning 0)) |
25d8b804abd3
(file-name-sans-extension): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8650
diff
changeset
|
1448 directory) |
25d8b804abd3
(file-name-sans-extension): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8650
diff
changeset
|
1449 (substring file 0 (match-beginning 0))) |
25d8b804abd3
(file-name-sans-extension): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8650
diff
changeset
|
1450 filename)))) |
25d8b804abd3
(file-name-sans-extension): New function.
Richard M. Stallman <rms@gnu.org>
parents:
8650
diff
changeset
|
1451 |
337 | 1452 (defun make-backup-file-name (file) |
1453 "Create the non-numeric backup file name for FILE. | |
1454 This is a separate function so you can redefine it for customization." | |
5453
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
1455 (if (eq system-type 'ms-dos) |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
1456 (let ((fn (file-name-nondirectory file))) |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
1457 (concat (file-name-directory file) |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
1458 (if (string-match "\\([^.]*\\)\\(\\..*\\)?" fn) |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
1459 (substring fn 0 (match-end 1))) |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
1460 ".bak")) |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
1461 (concat file "~"))) |
337 | 1462 |
1463 (defun backup-file-name-p (file) | |
1464 "Return non-nil if FILE is a backup file name (numeric or not). | |
1465 This is a separate function so you can redefine it for customization. | |
1466 You may need to redefine `file-name-sans-versions' as well." | |
5453
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
1467 (if (eq system-type 'ms-dos) |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
1468 (string-match "\\.bak$" file) |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
1469 (string-match "~$" file))) |
337 | 1470 |
890
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1471 ;; This is used in various files. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1472 ;; The usage of bv-length is not very clean, |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1473 ;; but I can't see a good alternative, |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1474 ;; so as of now I am leaving it alone. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1475 (defun backup-extract-version (fn) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1476 "Given the name of a numeric backup file, return the backup number. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1477 Uses the free variable `bv-length', whose value should be |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1478 the index in the name where the version number begins." |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1479 (if (and (string-match "[0-9]+~$" fn bv-length) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1480 (= (match-beginning 0) bv-length)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1481 (string-to-int (substring fn bv-length -1)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1482 0)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1483 |
337 | 1484 ;; I believe there is no need to alter this behavior for VMS; |
1485 ;; since backup files are not made on VMS, it should not get called. | |
1486 (defun find-backup-file-name (fn) | |
1487 "Find a file name for a backup file, and suggestions for deletions. | |
1488 Value is a list whose car is the name for the backup file | |
1489 and whose cdr is a list of old versions to consider deleting now." | |
1490 (if (eq version-control 'never) | |
1491 (list (make-backup-file-name fn)) | |
1492 (let* ((base-versions (concat (file-name-nondirectory fn) ".~")) | |
1493 (bv-length (length base-versions)) | |
4965
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1494 possibilities |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1495 (versions nil) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1496 (high-water-mark 0) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1497 (deserve-versions-p nil) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1498 (number-to-delete 0)) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1499 (condition-case () |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1500 (setq possibilities (file-name-all-completions |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1501 base-versions |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1502 (file-name-directory fn)) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1503 versions (sort (mapcar |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1504 (function backup-extract-version) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1505 possibilities) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1506 '<) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1507 high-water-mark (apply 'max 0 versions) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1508 deserve-versions-p (or version-control |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1509 (> high-water-mark 0)) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1510 number-to-delete (- (length versions) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1511 kept-old-versions kept-new-versions -1)) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1512 (file-error |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1513 (setq possibilities nil))) |
337 | 1514 (if (not deserve-versions-p) |
1515 (list (make-backup-file-name fn)) | |
1516 (cons (concat fn ".~" (int-to-string (1+ high-water-mark)) "~") | |
2431
03e538cb97b8
(find-backup-file-name): delete nothing if overflow in number of files to keep.
Noah Friedman <friedman@splode.com>
parents:
2401
diff
changeset
|
1517 (if (and (> number-to-delete 0) |
03e538cb97b8
(find-backup-file-name): delete nothing if overflow in number of files to keep.
Noah Friedman <friedman@splode.com>
parents:
2401
diff
changeset
|
1518 ;; Delete nothing if there is overflow |
03e538cb97b8
(find-backup-file-name): delete nothing if overflow in number of files to keep.
Noah Friedman <friedman@splode.com>
parents:
2401
diff
changeset
|
1519 ;; in the number of versions to keep. |
03e538cb97b8
(find-backup-file-name): delete nothing if overflow in number of files to keep.
Noah Friedman <friedman@splode.com>
parents:
2401
diff
changeset
|
1520 (>= (+ kept-new-versions kept-old-versions -1) 0)) |
337 | 1521 (mapcar (function (lambda (n) |
1522 (concat fn ".~" (int-to-string n) "~"))) | |
1523 (let ((v (nthcdr kept-old-versions versions))) | |
1524 (rplacd (nthcdr (1- number-to-delete) v) ()) | |
1525 v)))))))) | |
1526 | |
1527 (defun file-nlinks (filename) | |
1528 "Return number of names file FILENAME has." | |
1529 (car (cdr (file-attributes filename)))) | |
1229
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1530 |
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1531 (defun file-relative-name (filename &optional directory) |
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1532 "Convert FILENAME to be relative to DIRECTORY (default: default-directory)." |
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1533 (setq filename (expand-file-name filename) |
4030
e5cf0991893a
(file-relative-name): If we use default-directory,
Richard M. Stallman <rms@gnu.org>
parents:
4027
diff
changeset
|
1534 directory (file-name-as-directory (expand-file-name |
e5cf0991893a
(file-relative-name): If we use default-directory,
Richard M. Stallman <rms@gnu.org>
parents:
4027
diff
changeset
|
1535 (or directory default-directory)))) |
5733
04260338bfca
Fix file-relative-name to allow for ancestors as well as descendants.
Karl Heuer <kwzh@gnu.org>
parents:
5722
diff
changeset
|
1536 (let ((ancestor "")) |
04260338bfca
Fix file-relative-name to allow for ancestors as well as descendants.
Karl Heuer <kwzh@gnu.org>
parents:
5722
diff
changeset
|
1537 (while (not (string-match (concat "^" (regexp-quote directory)) filename)) |
04260338bfca
Fix file-relative-name to allow for ancestors as well as descendants.
Karl Heuer <kwzh@gnu.org>
parents:
5722
diff
changeset
|
1538 (setq directory (file-name-directory (substring directory 0 -1)) |
04260338bfca
Fix file-relative-name to allow for ancestors as well as descendants.
Karl Heuer <kwzh@gnu.org>
parents:
5722
diff
changeset
|
1539 ancestor (concat "../" ancestor))) |
04260338bfca
Fix file-relative-name to allow for ancestors as well as descendants.
Karl Heuer <kwzh@gnu.org>
parents:
5722
diff
changeset
|
1540 (concat ancestor (substring filename (match-end 0))))) |
337 | 1541 |
1542 (defun save-buffer (&optional args) | |
1543 "Save current buffer in visited file if modified. Versions described below. | |
1544 By default, makes the previous version into a backup file | |
1545 if previously requested or if this is the first save. | |
1546 With 1 or 3 \\[universal-argument]'s, marks this version | |
1547 to become a backup when the next save is done. | |
1548 With 2 or 3 \\[universal-argument]'s, | |
1549 unconditionally makes the previous version into a backup file. | |
1550 With argument of 0, never makes the previous version into a backup file. | |
1551 | |
1552 If a file's name is FOO, the names of its numbered backup versions are | |
1553 FOO.~i~ for various integers i. A non-numbered backup file is called FOO~. | |
1554 Numeric backups (rather than FOO~) will be made if value of | |
1555 `version-control' is not the atom `never' and either there are already | |
1556 numeric versions of the file being backed up, or `version-control' is | |
1557 non-nil. | |
1558 We don't want excessive versions piling up, so there are variables | |
1559 `kept-old-versions', which tells Emacs how many oldest versions to keep, | |
1560 and `kept-new-versions', which tells how many newest versions to keep. | |
1561 Defaults are 2 old versions and 2 new. | |
1562 `dired-kept-versions' controls dired's clean-directory (.) command. | |
8157
14766204c0fe
(delete-old-versions): Var renamed from trim-versions-without-asking.
Richard M. Stallman <rms@gnu.org>
parents:
8151
diff
changeset
|
1563 If `delete-old-versions' is nil, system will query user |
337 | 1564 before trimming versions. Otherwise it does it silently." |
1565 (interactive "p") | |
1566 (let ((modp (buffer-modified-p)) | |
1567 (large (> (buffer-size) 50000)) | |
8462
c281b470d633
(save-buffer): Unconditionally make a backup with 2 or
Richard M. Stallman <rms@gnu.org>
parents:
8374
diff
changeset
|
1568 (make-backup-files (or (and make-backup-files (not (eq args 0))) |
c281b470d633
(save-buffer): Unconditionally make a backup with 2 or
Richard M. Stallman <rms@gnu.org>
parents:
8374
diff
changeset
|
1569 (memq args '(16 64))))) |
337 | 1570 (and modp (memq args '(16 64)) (setq buffer-backed-up nil)) |
1571 (if (and modp large) (message "Saving file %s..." (buffer-file-name))) | |
1572 (basic-save-buffer) | |
1573 (and modp (memq args '(4 64)) (setq buffer-backed-up nil)))) | |
1574 | |
1575 (defun delete-auto-save-file-if-necessary (&optional force) | |
1576 "Delete auto-save file for current buffer if `delete-auto-save-files' is t. | |
1577 Normally delete only if the file was written by this Emacs since | |
1578 the last real save, but optional arg FORCE non-nil means delete anyway." | |
1579 (and buffer-auto-save-file-name delete-auto-save-files | |
1580 (not (string= buffer-file-name buffer-auto-save-file-name)) | |
1581 (or force (recent-auto-save-p)) | |
1582 (progn | |
1583 (condition-case () | |
1584 (delete-file buffer-auto-save-file-name) | |
1585 (file-error nil)) | |
1586 (set-buffer-auto-saved)))) | |
1587 | |
1588 (defun basic-save-buffer () | |
1589 "Save the current buffer in its visited file, if it has been modified." | |
1590 (interactive) | |
1591 (if (buffer-modified-p) | |
1592 (let ((recent-save (recent-auto-save-p)) | |
1593 setmodes tempsetmodes) | |
1594 ;; On VMS, rename file and buffer to get rid of version number. | |
1595 (if (and (eq system-type 'vax-vms) | |
1596 (not (string= buffer-file-name | |
1597 (file-name-sans-versions buffer-file-name)))) | |
1598 (let (buffer-new-name) | |
1599 ;; Strip VMS version number before save. | |
1600 (setq buffer-file-name | |
1601 (file-name-sans-versions buffer-file-name)) | |
1602 ;; Construct a (unique) buffer name to correspond. | |
1603 (let ((buf (create-file-buffer (downcase buffer-file-name)))) | |
1604 (setq buffer-new-name (buffer-name buf)) | |
1605 (kill-buffer buf)) | |
1606 (rename-buffer buffer-new-name))) | |
1607 ;; If buffer has no file name, ask user for one. | |
1608 (or buffer-file-name | |
4375
ebf146cb7720
(basic-save-buffer): When we read a file name,
Richard M. Stallman <rms@gnu.org>
parents:
4283
diff
changeset
|
1609 (set-visited-file-name |
ebf146cb7720
(basic-save-buffer): When we read a file name,
Richard M. Stallman <rms@gnu.org>
parents:
4283
diff
changeset
|
1610 (expand-file-name (read-file-name "File to save in: ") nil))) |
337 | 1611 (or (verify-visited-file-modtime (current-buffer)) |
1612 (not (file-exists-p buffer-file-name)) | |
1613 (yes-or-no-p | |
1614 (format "%s has changed since visited or saved. Save anyway? " | |
1615 (file-name-nondirectory buffer-file-name))) | |
1616 (error "Save not confirmed")) | |
1617 (save-restriction | |
1618 (widen) | |
1619 (and (> (point-max) 1) | |
1620 (/= (char-after (1- (point-max))) ?\n) | |
6899
45751abc406f
(basic-save-buffer): if selective-display is t, file may end in CR instead of
Karl Heuer <kwzh@gnu.org>
parents:
6866
diff
changeset
|
1621 (not (and (eq selective-display t) |
45751abc406f
(basic-save-buffer): if selective-display is t, file may end in CR instead of
Karl Heuer <kwzh@gnu.org>
parents:
6866
diff
changeset
|
1622 (= (char-after (1- (point-max))) ?\r))) |
337 | 1623 (or (eq require-final-newline t) |
1624 (and require-final-newline | |
1625 (y-or-n-p | |
1626 (format "Buffer %s does not end in newline. Add one? " | |
1627 (buffer-name))))) | |
1628 (save-excursion | |
1629 (goto-char (point-max)) | |
1630 (insert ?\n))) | |
2375
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
1631 (let ((hooks (append write-contents-hooks local-write-file-hooks |
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
1632 write-file-hooks)) |
337 | 1633 (done nil)) |
1634 (while (and hooks | |
1635 (not (setq done (funcall (car hooks))))) | |
1636 (setq hooks (cdr hooks))) | |
1637 ;; If a hook returned t, file is already "written". | |
1638 (cond ((not done) | |
6574
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1639 (setq setmodes (basic-save-buffer-1))))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1640 (setq buffer-file-number (nth 10 (file-attributes buffer-file-name))) |
337 | 1641 (if setmodes |
1642 (condition-case () | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1643 (set-file-modes buffer-file-name setmodes) |
337 | 1644 (error nil)))) |
1645 ;; If the auto-save file was recent before this command, | |
1646 ;; delete it now. | |
1647 (delete-auto-save-file-if-necessary recent-save) | |
4032
ff35c9c97504
(basic-save-buffer): Use after-save-hook.
Richard M. Stallman <rms@gnu.org>
parents:
4030
diff
changeset
|
1648 (run-hooks 'after-save-hook)) |
337 | 1649 (message "(No changes need to be saved)"))) |
1650 | |
6574
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1651 ;; This does the "real job" of writing a buffer into its visited file |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1652 ;; and making a backup file. This is what is normally done |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1653 ;; but inhibited if one of write-file-hooks returns non-nil. |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1654 ;; It returns a value to store in setmodes. |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1655 (defun basic-save-buffer-1 () |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1656 (let (tempsetmodes setmodes) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1657 (if (not (file-writable-p buffer-file-name)) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1658 (let ((dir (file-name-directory buffer-file-name))) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1659 (if (not (file-directory-p dir)) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1660 (error "%s is not a directory" dir) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1661 (if (not (file-exists-p buffer-file-name)) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1662 (error "Directory %s write-protected" dir) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1663 (if (yes-or-no-p |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1664 (format "File %s is write-protected; try to save anyway? " |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1665 (file-name-nondirectory |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1666 buffer-file-name))) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1667 (setq tempsetmodes t) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1668 (error "Attempt to save to a file which you aren't allowed to write")))))) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1669 (or buffer-backed-up |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1670 (setq setmodes (backup-buffer))) |
8362
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1671 (let ((dir (file-name-directory buffer-file-name))) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1672 (if (and file-precious-flag |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1673 (file-writable-p dir)) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1674 ;; If file is precious, write temp name, then rename it. |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1675 ;; This requires write access to the containing dir, |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1676 ;; which is why we don't try it if we don't have that access. |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1677 (let ((realname buffer-file-name) |
8937
065d01c10c78
(basic-save-buffer-1): If writing temp file fails
Richard M. Stallman <rms@gnu.org>
parents:
8908
diff
changeset
|
1678 tempname temp nogood i succeed |
065d01c10c78
(basic-save-buffer-1): If writing temp file fails
Richard M. Stallman <rms@gnu.org>
parents:
8908
diff
changeset
|
1679 (old-modtime (visited-file-modtime))) |
8362
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1680 (setq i 0) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1681 (setq nogood t) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1682 ;; Find the temporary name to write under. |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1683 (while nogood |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1684 (setq tempname (format "%s#tmp#%d" dir i)) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1685 (setq nogood (file-exists-p tempname)) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1686 (setq i (1+ i))) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1687 (unwind-protect |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1688 (progn (clear-visited-file-modtime) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1689 (write-region (point-min) (point-max) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1690 tempname nil realname) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1691 (setq succeed t)) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1692 ;; If writing the temp file fails, |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1693 ;; delete the temp file. |
8937
065d01c10c78
(basic-save-buffer-1): If writing temp file fails
Richard M. Stallman <rms@gnu.org>
parents:
8908
diff
changeset
|
1694 (or succeed |
065d01c10c78
(basic-save-buffer-1): If writing temp file fails
Richard M. Stallman <rms@gnu.org>
parents:
8908
diff
changeset
|
1695 (progn |
065d01c10c78
(basic-save-buffer-1): If writing temp file fails
Richard M. Stallman <rms@gnu.org>
parents:
8908
diff
changeset
|
1696 (delete-file tempname) |
065d01c10c78
(basic-save-buffer-1): If writing temp file fails
Richard M. Stallman <rms@gnu.org>
parents:
8908
diff
changeset
|
1697 (set-visited-file-modtime old-modtime)))) |
8362
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1698 ;; Since we have created an entirely new file |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1699 ;; and renamed it, make sure it gets the |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1700 ;; right permission bits set. |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1701 (setq setmodes (file-modes buffer-file-name)) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1702 ;; We succeeded in writing the temp file, |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1703 ;; so rename it. |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1704 (rename-file tempname buffer-file-name t)) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1705 ;; If file not writable, see if we can make it writable |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1706 ;; temporarily while we write it. |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1707 ;; But no need to do so if we have just backed it up |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1708 ;; (setmodes is set) because that says we're superseding. |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1709 (cond ((and tempsetmodes (not setmodes)) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1710 ;; Change the mode back, after writing. |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1711 (setq setmodes (file-modes buffer-file-name)) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1712 (set-file-modes buffer-file-name 511))) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1713 (write-region (point-min) (point-max) |
87e1b76bbd6b
(set-auto-mode): Shorten scope of case-fold-search binding.
Richard M. Stallman <rms@gnu.org>
parents:
8251
diff
changeset
|
1714 buffer-file-name nil t))) |
6574
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1715 setmodes)) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1716 |
337 | 1717 (defun save-some-buffers (&optional arg exiting) |
1718 "Save some modified file-visiting buffers. Asks user about each one. | |
423 | 1719 Optional argument (the prefix) non-nil means save all with no questions. |
1720 Optional second argument EXITING means ask about certain non-file buffers | |
1721 as well as about file buffers." | |
337 | 1722 (interactive "P") |
891 | 1723 (save-window-excursion |
5398
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1724 (let ((files-done |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1725 (map-y-or-n-p |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1726 (function |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1727 (lambda (buffer) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1728 (and (buffer-modified-p buffer) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1729 (or |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1730 (buffer-file-name buffer) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1731 (and exiting |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1732 (progn |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1733 (set-buffer buffer) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1734 (and buffer-offer-save (> (buffer-size) 0))))) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1735 (if arg |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1736 t |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1737 (if (buffer-file-name buffer) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1738 (format "Save file %s? " |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1739 (buffer-file-name buffer)) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1740 (format "Save buffer %s? " |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1741 (buffer-name buffer))))))) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1742 (function |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1743 (lambda (buffer) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1744 (set-buffer buffer) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1745 (save-buffer))) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1746 (buffer-list) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1747 '("buffer" "buffers" "save") |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1748 (list (list ?\C-r (lambda (buf) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1749 (view-buffer buf) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1750 (setq view-exit-action |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1751 '(lambda (ignore) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1752 (exit-recursive-edit))) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1753 (recursive-edit) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1754 ;; Return nil to ask about BUF again. |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1755 nil) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1756 "display the current buffer")))) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1757 (abbrevs-done |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1758 (and save-abbrevs abbrevs-changed |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1759 (progn |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1760 (if (or arg |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1761 (y-or-n-p (format "Save abbrevs in %s? " abbrev-file-name))) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1762 (write-abbrev-file nil)) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1763 ;; Don't keep bothering user if he says no. |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1764 (setq abbrevs-changed nil) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1765 t)))) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1766 (or (> files-done 0) abbrevs-done |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1767 (message "(No files need saving)"))))) |
337 | 1768 |
1769 (defun not-modified (&optional arg) | |
1770 "Mark current buffer as unmodified, not needing to be saved. | |
1771 With prefix arg, mark buffer as modified, so \\[save-buffer] will save." | |
1772 (interactive "P") | |
1773 (message (if arg "Modification-flag set" | |
1774 "Modification-flag cleared")) | |
1775 (set-buffer-modified-p arg)) | |
1776 | |
1777 (defun toggle-read-only (&optional arg) | |
1778 "Change whether this buffer is visiting its file read-only. | |
1779 With arg, set read-only iff arg is positive." | |
1780 (interactive "P") | |
1781 (setq buffer-read-only | |
1782 (if (null arg) | |
1783 (not buffer-read-only) | |
1784 (> (prefix-numeric-value arg) 0))) | |
1785 ;; Force mode-line redisplay | |
1786 (set-buffer-modified-p (buffer-modified-p))) | |
1787 | |
1788 (defun insert-file (filename) | |
1789 "Insert contents of file FILENAME into buffer after point. | |
1790 Set mark after the inserted text. | |
1791 | |
1792 This function is meant for the user to run interactively. | |
1793 Don't call it from programs! Use `insert-file-contents' instead. | |
1794 \(Its calling sequence is different; see its documentation)." | |
5292
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1795 (interactive "*fInsert file: ") |
3835
e3a00a940cf4
(insert-file): Report error if file is directory.
Richard M. Stallman <rms@gnu.org>
parents:
3709
diff
changeset
|
1796 (if (file-directory-p filename) |
e3a00a940cf4
(insert-file): Report error if file is directory.
Richard M. Stallman <rms@gnu.org>
parents:
3709
diff
changeset
|
1797 (signal 'file-error (list "Opening input file" "file is a directory" |
e3a00a940cf4
(insert-file): Report error if file is directory.
Richard M. Stallman <rms@gnu.org>
parents:
3709
diff
changeset
|
1798 filename))) |
337 | 1799 (let ((tem (insert-file-contents filename))) |
1800 (push-mark (+ (point) (car (cdr tem)))))) | |
1801 | |
1802 (defun append-to-file (start end filename) | |
1803 "Append the contents of the region to the end of file FILENAME. | |
1804 When called from a function, expects three arguments, | |
1805 START, END and FILENAME. START and END are buffer positions | |
1806 saying what text to write." | |
1807 (interactive "r\nFAppend to file: ") | |
1808 (write-region start end filename t)) | |
1809 | |
1810 (defun file-newest-backup (filename) | |
1811 "Return most recent backup file for FILENAME or nil if no backups exist." | |
1812 (let* ((filename (expand-file-name filename)) | |
1813 (file (file-name-nondirectory filename)) | |
1814 (dir (file-name-directory filename)) | |
1815 (comp (file-name-all-completions file dir)) | |
1816 newest) | |
1817 (while comp | |
1818 (setq file (concat dir (car comp)) | |
1819 comp (cdr comp)) | |
1820 (if (and (backup-file-name-p file) | |
1821 (or (null newest) (file-newer-than-file-p file newest))) | |
1822 (setq newest file))) | |
1823 newest)) | |
1824 | |
1825 (defun rename-uniquely () | |
1826 "Rename current buffer to a similar name not already taken. | |
1827 This function is useful for creating multiple shell process buffers | |
1828 or multiple mail buffers, etc." | |
1829 (interactive) | |
1830 (let* ((new-buf (generate-new-buffer (buffer-name))) | |
1831 (name (buffer-name new-buf))) | |
1832 (kill-buffer new-buf) | |
1833 (rename-buffer name) | |
1834 (set-buffer-modified-p (buffer-modified-p)))) ; force mode line update | |
423 | 1835 |
1537
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1836 (defun make-directory (dir &optional parents) |
3672
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1837 "Create the directory DIR and any nonexistent parent dirs. |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1838 Interactively, the default choice of directory to create |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1839 is the current default directory for file names. |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1840 That is useful when you have visited a file in a nonexistint directory. |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1841 |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1842 Noninteractively, the second (optional) argument PARENTS says whether |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1843 to create parent directories if they don't exist." |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1844 (interactive |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1845 (list (read-file-name "Make directory: " default-directory default-directory |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1846 nil nil) |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1847 t)) |
7030
9e51b51e8595
Pass operation to find-file-name-handler.
Karl Heuer <kwzh@gnu.org>
parents:
6899
diff
changeset
|
1848 (let ((handler (find-file-name-handler dir 'make-directory))) |
1537
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1849 (if handler |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1850 (funcall handler 'make-directory dir parents) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1851 (if (not parents) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1852 (make-directory-internal dir) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1853 (let ((dir (directory-file-name (expand-file-name dir))) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1854 create-list) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1855 (while (not (file-exists-p dir)) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1856 (setq create-list (cons dir create-list) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1857 dir (directory-file-name (file-name-directory dir)))) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1858 (while create-list |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1859 (make-directory-internal (car create-list)) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1860 (setq create-list (cdr create-list)))))))) |
337 | 1861 |
1862 (put 'revert-buffer-function 'permanent-local t) | |
1863 (defvar revert-buffer-function nil | |
8160
1013d56a1133
(revert-buffer-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
8158
diff
changeset
|
1864 "Function to use to revert this buffer, or nil to do the default. |
1013d56a1133
(revert-buffer-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
8158
diff
changeset
|
1865 The function receives two arguments IGNORE-AUTO and NOCONFIRM, |
1013d56a1133
(revert-buffer-function): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
8158
diff
changeset
|
1866 which are the arguments that `revert-buffer' received.") |
337 | 1867 |
1868 (put 'revert-buffer-insert-file-contents-function 'permanent-local t) | |
1869 (defvar revert-buffer-insert-file-contents-function nil | |
1870 "Function to use to insert contents when reverting this buffer. | |
1871 Gets two args, first the nominal file name to use, | |
1872 and second, t if reading the auto-save file.") | |
1873 | |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1874 (defun revert-buffer (&optional ignore-auto noconfirm) |
337 | 1875 "Replace the buffer text with the text of the visited file on disk. |
1876 This undoes all changes since the file was visited or saved. | |
605 | 1877 With a prefix argument, offer to revert from latest auto-save file, if |
1878 that is more recent than the visited file. | |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1879 |
5718
3548110b4957
(revert-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5716
diff
changeset
|
1880 When called from lisp, The first argument is IGNORE-AUTO; only offer |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1881 to revert from the auto-save file when this is nil. Note that the |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1882 sense of this argument is the reverse of the prefix argument, for the |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1883 sake of backward compatibility. IGNORE-AUTO is optional, defaulting |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1884 to nil. |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1885 |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1886 Optional second argument NOCONFIRM means don't ask for confirmation at |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1887 all. |
337 | 1888 |
605 | 1889 If the value of `revert-buffer-function' is non-nil, it is called to |
5624
76f618230217
(revert-buffer): Run after-revert-hook.
Richard M. Stallman <rms@gnu.org>
parents:
5621
diff
changeset
|
1890 do the work. |
76f618230217
(revert-buffer): Run after-revert-hook.
Richard M. Stallman <rms@gnu.org>
parents:
5621
diff
changeset
|
1891 |
5716
82588f97d478
(revert-buffer): reposition after-revert-hook, and add before-revert-hook.
Karl Heuer <kwzh@gnu.org>
parents:
5624
diff
changeset
|
1892 The default revert function runs the hook `before-revert-hook' at the |
82588f97d478
(revert-buffer): reposition after-revert-hook, and add before-revert-hook.
Karl Heuer <kwzh@gnu.org>
parents:
5624
diff
changeset
|
1893 beginning and `after-revert-hook' at the end." |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1894 ;; I admit it's odd to reverse the sense of the prefix argument, but |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1895 ;; there is a lot of code out there which assumes that the first |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1896 ;; argument should be t to avoid consulting the auto-save file, and |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1897 ;; there's no straightforward way to encourage authors to notice a |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1898 ;; reversal of the argument sense. So I'm just changing the user |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1899 ;; interface, but leaving the programmatic interface the same. |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1900 (interactive (list (not prefix-arg))) |
337 | 1901 (if revert-buffer-function |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1902 (funcall revert-buffer-function ignore-auto noconfirm) |
337 | 1903 (let* ((opoint (point)) |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1904 (auto-save-p (and (not ignore-auto) |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1905 (recent-auto-save-p) |
337 | 1906 buffer-auto-save-file-name |
1907 (file-readable-p buffer-auto-save-file-name) | |
1908 (y-or-n-p | |
1909 "Buffer has been auto-saved recently. Revert from auto-save file? "))) | |
1910 (file-name (if auto-save-p | |
1911 buffer-auto-save-file-name | |
1912 buffer-file-name))) | |
1913 (cond ((null file-name) | |
1914 (error "Buffer does not seem to be associated with any file")) | |
1915 ((or noconfirm | |
1916 (yes-or-no-p (format "Revert buffer from file %s? " | |
1917 file-name))) | |
5716
82588f97d478
(revert-buffer): reposition after-revert-hook, and add before-revert-hook.
Karl Heuer <kwzh@gnu.org>
parents:
5624
diff
changeset
|
1918 (run-hooks 'before-revert-hook) |
337 | 1919 ;; If file was backed up but has changed since, |
1920 ;; we shd make another backup. | |
1921 (and (not auto-save-p) | |
423 | 1922 (not (verify-visited-file-modtime (current-buffer))) |
337 | 1923 (setq buffer-backed-up nil)) |
1924 ;; Get rid of all undo records for this buffer. | |
1925 (or (eq buffer-undo-list t) | |
1926 (setq buffer-undo-list nil)) | |
1927 (let ((buffer-read-only nil) | |
1928 ;; Don't make undo records for the reversion. | |
1929 (buffer-undo-list t)) | |
1930 (if revert-buffer-insert-file-contents-function | |
1931 (funcall revert-buffer-insert-file-contents-function | |
1932 file-name auto-save-p) | |
1933 (if (not (file-exists-p file-name)) | |
1934 (error "File %s no longer exists!" file-name)) | |
1935 ;; Bind buffer-file-name to nil | |
1936 ;; so that we don't try to lock the file. | |
1937 (let ((buffer-file-name nil)) | |
1938 (or auto-save-p | |
5974
bee9069f17e3
(revert-buffer): Use new insert-file-contents replace arg.
Richard M. Stallman <rms@gnu.org>
parents:
5973
diff
changeset
|
1939 (unlock-buffer))) |
7215
729f02b2d064
(revert-buffer): widen before replacing text.
Karl Heuer <kwzh@gnu.org>
parents:
7142
diff
changeset
|
1940 (widen) |
5974
bee9069f17e3
(revert-buffer): Use new insert-file-contents replace arg.
Richard M. Stallman <rms@gnu.org>
parents:
5973
diff
changeset
|
1941 (insert-file-contents file-name (not auto-save-p) |
bee9069f17e3
(revert-buffer): Use new insert-file-contents replace arg.
Richard M. Stallman <rms@gnu.org>
parents:
5973
diff
changeset
|
1942 nil nil t))) |
337 | 1943 (goto-char (min opoint (point-max))) |
8554
0b44462dbbc8
(after-find-file): New arg from-revert-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
8462
diff
changeset
|
1944 (after-find-file nil nil t t) |
5716
82588f97d478
(revert-buffer): reposition after-revert-hook, and add before-revert-hook.
Karl Heuer <kwzh@gnu.org>
parents:
5624
diff
changeset
|
1945 (run-hooks 'after-revert-hook) |
82588f97d478
(revert-buffer): reposition after-revert-hook, and add before-revert-hook.
Karl Heuer <kwzh@gnu.org>
parents:
5624
diff
changeset
|
1946 t))))) |
337 | 1947 |
1948 (defun recover-file (file) | |
1949 "Visit file FILE, but get contents from its last auto-save file." | |
1950 (interactive | |
1951 (let ((prompt-file buffer-file-name) | |
1952 (file-name nil) | |
1953 (file-dir nil)) | |
1954 (and prompt-file | |
1955 (setq file-name (file-name-nondirectory prompt-file) | |
1956 file-dir (file-name-directory prompt-file))) | |
1957 (list (read-file-name "Recover file: " | |
1958 file-dir nil nil file-name)))) | |
1959 (setq file (expand-file-name file)) | |
5958
64fa4e0f3fce
(recover-file): Call auto-save-file-name-p correctly.
Richard M. Stallman <rms@gnu.org>
parents:
5956
diff
changeset
|
1960 (if (auto-save-file-name-p (file-name-nondirectory file)) |
64fa4e0f3fce
(recover-file): Call auto-save-file-name-p correctly.
Richard M. Stallman <rms@gnu.org>
parents:
5956
diff
changeset
|
1961 (error "%s is an auto-save file" file)) |
337 | 1962 (let ((file-name (let ((buffer-file-name file)) |
1963 (make-auto-save-file-name)))) | |
1964 (cond ((not (file-newer-than-file-p file-name file)) | |
1965 (error "Auto-save file %s not current" file-name)) | |
1966 ((save-window-excursion | |
1967 (if (not (eq system-type 'vax-vms)) | |
1968 (with-output-to-temp-buffer "*Directory*" | |
1969 (buffer-disable-undo standard-output) | |
1970 (call-process "ls" nil standard-output nil | |
736
18b892513cb7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
735
diff
changeset
|
1971 (if (file-symlink-p file) "-lL" "-l") |
18b892513cb7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
735
diff
changeset
|
1972 file file-name))) |
337 | 1973 (yes-or-no-p (format "Recover auto save file %s? " file-name))) |
1974 (switch-to-buffer (find-file-noselect file t)) | |
1975 (let ((buffer-read-only nil)) | |
1976 (erase-buffer) | |
1977 (insert-file-contents file-name nil)) | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
1978 (after-find-file nil nil t)) |
337 | 1979 (t (error "Recover-file cancelled."))))) |
1980 | |
1981 (defun kill-some-buffers () | |
1982 "For each buffer, ask whether to kill it." | |
1983 (interactive) | |
1984 (let ((list (buffer-list))) | |
1985 (while list | |
1986 (let* ((buffer (car list)) | |
1987 (name (buffer-name buffer))) | |
1988 (and (not (string-equal name "")) | |
1989 (/= (aref name 0) ? ) | |
1990 (yes-or-no-p | |
1991 (format "Buffer %s %s. Kill? " | |
1992 name | |
1993 (if (buffer-modified-p buffer) | |
1994 "HAS BEEN EDITED" "is unmodified"))) | |
1995 (kill-buffer buffer))) | |
1996 (setq list (cdr list))))) | |
1997 | |
1998 (defun auto-save-mode (arg) | |
1999 "Toggle auto-saving of contents of current buffer. | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
2000 With prefix argument ARG, turn auto-saving on if positive, else off." |
337 | 2001 (interactive "P") |
2002 (setq buffer-auto-save-file-name | |
2003 (and (if (null arg) | |
8158
a6fa25ffa764
(auto-save-mode): If autosave is off because buffer has
Richard M. Stallman <rms@gnu.org>
parents:
8157
diff
changeset
|
2004 (or (not buffer-auto-save-file-name) |
a6fa25ffa764
(auto-save-mode): If autosave is off because buffer has
Richard M. Stallman <rms@gnu.org>
parents:
8157
diff
changeset
|
2005 ;; If autosave is off because buffer has shrunk, |
a6fa25ffa764
(auto-save-mode): If autosave is off because buffer has
Richard M. Stallman <rms@gnu.org>
parents:
8157
diff
changeset
|
2006 ;; then toggling should turn it on. |
a6fa25ffa764
(auto-save-mode): If autosave is off because buffer has
Richard M. Stallman <rms@gnu.org>
parents:
8157
diff
changeset
|
2007 (< buffer-saved-size 0)) |
337 | 2008 (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0)))) |
2009 (if (and buffer-file-name auto-save-visited-file-name | |
2010 (not buffer-read-only)) | |
2011 buffer-file-name | |
2012 (make-auto-save-file-name)))) | |
6677
3c7e3d1cc3ad
(auto-save-mode): Don't let buffer-saved-size stay negative.
Richard M. Stallman <rms@gnu.org>
parents:
6664
diff
changeset
|
2013 ;; If -1 was stored here, to temporarily turn off saving, |
3c7e3d1cc3ad
(auto-save-mode): Don't let buffer-saved-size stay negative.
Richard M. Stallman <rms@gnu.org>
parents:
6664
diff
changeset
|
2014 ;; turn it back on. |
3c7e3d1cc3ad
(auto-save-mode): Don't let buffer-saved-size stay negative.
Richard M. Stallman <rms@gnu.org>
parents:
6664
diff
changeset
|
2015 (and (< buffer-saved-size 0) |
3c7e3d1cc3ad
(auto-save-mode): Don't let buffer-saved-size stay negative.
Richard M. Stallman <rms@gnu.org>
parents:
6664
diff
changeset
|
2016 (setq buffer-saved-size 0)) |
337 | 2017 (if (interactive-p) |
2018 (message "Auto-save %s (in this buffer)" | |
2019 (if buffer-auto-save-file-name "on" "off"))) | |
2020 buffer-auto-save-file-name) | |
2021 | |
2022 (defun rename-auto-save-file () | |
2023 "Adjust current buffer's auto save file name for current conditions. | |
2024 Also rename any existing auto save file, if it was made in this session." | |
2025 (let ((osave buffer-auto-save-file-name)) | |
2026 (setq buffer-auto-save-file-name | |
2027 (make-auto-save-file-name)) | |
2028 (if (and osave buffer-auto-save-file-name | |
2029 (not (string= buffer-auto-save-file-name buffer-file-name)) | |
2030 (not (string= buffer-auto-save-file-name osave)) | |
2031 (file-exists-p osave) | |
2032 (recent-auto-save-p)) | |
2033 (rename-file osave buffer-auto-save-file-name t)))) | |
2034 | |
2035 (defun make-auto-save-file-name () | |
2036 "Return file name to use for auto-saves of current buffer. | |
2037 Does not consider `auto-save-visited-file-name' as that variable is checked | |
2038 before calling this function. You can redefine this for customization. | |
2039 See also `auto-save-file-name-p'." | |
2040 (if buffer-file-name | |
2041 (concat (file-name-directory buffer-file-name) | |
2042 "#" | |
2043 (file-name-nondirectory buffer-file-name) | |
2044 "#") | |
7944
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2045 |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2046 ;; Deal with buffers that don't have any associated files. (Mail |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2047 ;; mode tends to create a good number of these.) |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2048 |
7895
fac7ff0a7aeb
(make-auto-save-file-name): Don't use slashes in autosave name for a non-file
Karl Heuer <kwzh@gnu.org>
parents:
7730
diff
changeset
|
2049 (let ((buffer-name (buffer-name)) |
7944
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2050 (limit 0)) |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2051 ;; Use technique from Sebastian Kremer's auto-save |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2052 ;; package to turn slashes into \\!. This ensures that |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2053 ;; the auto-save buffer name is unique. |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2054 |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2055 (while (string-match "[/\\]" buffer-name limit) |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2056 (setq buffer-name (concat (substring buffer-name 0 (match-beginning 0)) |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2057 (if (string= (substring buffer-name |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2058 (match-beginning 0) |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2059 (match-end 0)) |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2060 "/") |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2061 "\\!" |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2062 "\\\\") |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2063 (substring buffer-name (match-end 0)))) |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2064 (setq limit (1+ (match-end 0)))) |
a114bbe9a63c
(make-auto-save-file-name): Convert slashes to \! and double the backslashes.
Richard M. Stallman <rms@gnu.org>
parents:
7895
diff
changeset
|
2065 |
7895
fac7ff0a7aeb
(make-auto-save-file-name): Don't use slashes in autosave name for a non-file
Karl Heuer <kwzh@gnu.org>
parents:
7730
diff
changeset
|
2066 (expand-file-name (format "#%s#%s#" buffer-name (make-temp-name "")))))) |
337 | 2067 |
2068 (defun auto-save-file-name-p (filename) | |
2069 "Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'. | |
2070 FILENAME should lack slashes. You can redefine this for customization." | |
2071 (string-match "^#.*#$" filename)) | |
2072 | |
2073 (defconst list-directory-brief-switches | |
2074 (if (eq system-type 'vax-vms) "" "-CF") | |
2075 "*Switches for list-directory to pass to `ls' for brief listing,") | |
2076 | |
2077 (defconst list-directory-verbose-switches | |
2078 (if (eq system-type 'vax-vms) | |
2079 "/PROTECTION/SIZE/DATE/OWNER/WIDTH=(OWNER:10)" | |
2080 "-l") | |
2081 "*Switches for list-directory to pass to `ls' for verbose listing,") | |
2082 | |
2083 (defun list-directory (dirname &optional verbose) | |
2084 "Display a list of files in or matching DIRNAME, a la `ls'. | |
2085 DIRNAME is globbed by the shell if necessary. | |
2086 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'. | |
2087 Actions controlled by variables `list-directory-brief-switches' | |
2088 and `list-directory-verbose-switches'." | |
2089 (interactive (let ((pfx current-prefix-arg)) | |
2090 (list (read-file-name (if pfx "List directory (verbose): " | |
2091 "List directory (brief): ") | |
2092 nil default-directory nil) | |
2093 pfx))) | |
2094 (let ((switches (if verbose list-directory-verbose-switches | |
2095 list-directory-brief-switches))) | |
2096 (or dirname (setq dirname default-directory)) | |
2097 (setq dirname (expand-file-name dirname)) | |
2098 (with-output-to-temp-buffer "*Directory*" | |
2099 (buffer-disable-undo standard-output) | |
2100 (princ "Directory ") | |
2101 (princ dirname) | |
2102 (terpri) | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2103 (save-excursion |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2104 (set-buffer "*Directory*") |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2105 (let ((wildcard (not (file-directory-p dirname)))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2106 (insert-directory dirname switches wildcard (not wildcard))))))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2107 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2108 (defvar insert-directory-program "ls" |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2109 "Absolute or relative name of the `ls' program used by `insert-directory'.") |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2110 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2111 ;; insert-directory |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2112 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2113 ;; FULL-DIRECTORY-P is nil. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2114 ;; The single line of output must display FILE's name as it was |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2115 ;; given, namely, an absolute path name. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2116 ;; - must insert exactly one line for each file if WILDCARD or |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2117 ;; FULL-DIRECTORY-P is t, plus one optional "total" line |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2118 ;; before the file lines, plus optional text after the file lines. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2119 ;; Lines are delimited by "\n", so filenames containing "\n" are not |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2120 ;; allowed. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2121 ;; File lines should display the basename. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2122 ;; - must be consistent with |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2123 ;; - functions dired-move-to-filename, (these two define what a file line is) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2124 ;; dired-move-to-end-of-filename, |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2125 ;; dired-between-files, (shortcut for (not (dired-move-to-filename))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2126 ;; dired-insert-headerline |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2127 ;; dired-after-subdir-garbage (defines what a "total" line is) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2128 ;; - variable dired-subdir-regexp |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2129 (defun insert-directory (file switches &optional wildcard full-directory-p) |
4148
6b065ebb9090
* files.el (insert-directory): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
4032
diff
changeset
|
2130 "Insert directory listing for FILE, formatted according to SWITCHES. |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2131 Leaves point after the inserted text. |
8207
96e6518c209b
(insert-directory): Allow list for SWITCHES.
Richard M. Stallman <rms@gnu.org>
parents:
8181
diff
changeset
|
2132 SWITCHES may be a string of options, or a list of strings. |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2133 Optional third arg WILDCARD means treat FILE as shell wildcard. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2134 Optional fourth arg FULL-DIRECTORY-P means file is a directory and |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2135 switches do not contain `d', so that a full listing is expected. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2136 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2137 This works by running a directory listing program |
1892
c4ff65277bb3
(insert-directory): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1879
diff
changeset
|
2138 whose name is in the variable `insert-directory-program'. |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2139 If WILDCARD, it also runs the shell specified by `shell-file-name'." |
7730
3846302b9c9c
(insert-directory): Use expanded file name to find handler.
Richard M. Stallman <rms@gnu.org>
parents:
7686
diff
changeset
|
2140 ;; We need the directory in order to find the right handler. |
3846302b9c9c
(insert-directory): Use expanded file name to find handler.
Richard M. Stallman <rms@gnu.org>
parents:
7686
diff
changeset
|
2141 (let ((handler (find-file-name-handler (expand-file-name file) |
3846302b9c9c
(insert-directory): Use expanded file name to find handler.
Richard M. Stallman <rms@gnu.org>
parents:
7686
diff
changeset
|
2142 'insert-directory))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2143 (if handler |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2144 (funcall handler 'insert-directory file switches |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2145 wildcard full-directory-p) |
337 | 2146 (if (eq system-type 'vax-vms) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2147 (vms-read-directory file switches (current-buffer)) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2148 (if wildcard |
4283
f705c18c410d
(insert-directory): Make sure default-directory is absolute.
Richard M. Stallman <rms@gnu.org>
parents:
4216
diff
changeset
|
2149 ;; Run ls in the directory of the file pattern we asked for. |
f705c18c410d
(insert-directory): Make sure default-directory is absolute.
Richard M. Stallman <rms@gnu.org>
parents:
4216
diff
changeset
|
2150 (let ((default-directory |
f705c18c410d
(insert-directory): Make sure default-directory is absolute.
Richard M. Stallman <rms@gnu.org>
parents:
4216
diff
changeset
|
2151 (if (file-name-absolute-p file) |
f705c18c410d
(insert-directory): Make sure default-directory is absolute.
Richard M. Stallman <rms@gnu.org>
parents:
4216
diff
changeset
|
2152 (file-name-directory file) |
6454
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2153 (file-name-directory (expand-file-name file)))) |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2154 (pattern (file-name-nondirectory file)) |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2155 (beg 0)) |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2156 ;; Quote some characters that have special meanings in shells; |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2157 ;; but don't quote the wildcards--we want them to be special. |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2158 ;; We also currently don't quote the quoting characters |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2159 ;; in case people want to use them explicitly to quote |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2160 ;; wildcard characters. |
7993
fde315722669
(delete-auto-save-files): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7944
diff
changeset
|
2161 (while (string-match "[ \t\n;<>&|()#$]" pattern beg) |
6454
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2162 (setq pattern |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2163 (concat (substring pattern 0 (match-beginning 0)) |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2164 "\\" |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2165 (substring pattern (match-beginning 0))) |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2166 beg (1+ (match-end 0)))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2167 (call-process shell-file-name nil t nil |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2168 "-c" (concat insert-directory-program |
8207
96e6518c209b
(insert-directory): Allow list for SWITCHES.
Richard M. Stallman <rms@gnu.org>
parents:
8181
diff
changeset
|
2169 " -d " |
96e6518c209b
(insert-directory): Allow list for SWITCHES.
Richard M. Stallman <rms@gnu.org>
parents:
8181
diff
changeset
|
2170 (if (stringp switches) |
96e6518c209b
(insert-directory): Allow list for SWITCHES.
Richard M. Stallman <rms@gnu.org>
parents:
8181
diff
changeset
|
2171 switches |
8232
d87067f822f5
(insert-directory): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8220
diff
changeset
|
2172 (mapconcat 'identity switches " ")) |
8207
96e6518c209b
(insert-directory): Allow list for SWITCHES.
Richard M. Stallman <rms@gnu.org>
parents:
8181
diff
changeset
|
2173 " " |
8232
d87067f822f5
(insert-directory): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
8220
diff
changeset
|
2174 pattern))) |
4148
6b065ebb9090
* files.el (insert-directory): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
4032
diff
changeset
|
2175 ;; SunOS 4.1.3, SVr4 and others need the "." to list the |
6b065ebb9090
* files.el (insert-directory): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
4032
diff
changeset
|
2176 ;; directory if FILE is a symbolic link. |
8207
96e6518c209b
(insert-directory): Allow list for SWITCHES.
Richard M. Stallman <rms@gnu.org>
parents:
8181
diff
changeset
|
2177 (apply 'call-process |
96e6518c209b
(insert-directory): Allow list for SWITCHES.
Richard M. Stallman <rms@gnu.org>
parents:
8181
diff
changeset
|
2178 insert-directory-program nil t nil |
96e6518c209b
(insert-directory): Allow list for SWITCHES.
Richard M. Stallman <rms@gnu.org>
parents:
8181
diff
changeset
|
2179 (let (list) |
8220
aea786f4cdd1
(insert-directory): Fix prev change.
Richard M. Stallman <rms@gnu.org>
parents:
8207
diff
changeset
|
2180 (if (listp switches) |
8207
96e6518c209b
(insert-directory): Allow list for SWITCHES.
Richard M. Stallman <rms@gnu.org>
parents:
8181
diff
changeset
|
2181 (setq list switches) |
8220
aea786f4cdd1
(insert-directory): Fix prev change.
Richard M. Stallman <rms@gnu.org>
parents:
8207
diff
changeset
|
2182 (if (not (equal switches "")) |
aea786f4cdd1
(insert-directory): Fix prev change.
Richard M. Stallman <rms@gnu.org>
parents:
8207
diff
changeset
|
2183 (progn |
aea786f4cdd1
(insert-directory): Fix prev change.
Richard M. Stallman <rms@gnu.org>
parents:
8207
diff
changeset
|
2184 ;; Split the switches at any spaces |
aea786f4cdd1
(insert-directory): Fix prev change.
Richard M. Stallman <rms@gnu.org>
parents:
8207
diff
changeset
|
2185 ;; so we can pass separate options as separate args. |
aea786f4cdd1
(insert-directory): Fix prev change.
Richard M. Stallman <rms@gnu.org>
parents:
8207
diff
changeset
|
2186 (while (string-match " " switches) |
aea786f4cdd1
(insert-directory): Fix prev change.
Richard M. Stallman <rms@gnu.org>
parents:
8207
diff
changeset
|
2187 (setq list (cons (substring switches 0 (match-beginning 0)) |
aea786f4cdd1
(insert-directory): Fix prev change.
Richard M. Stallman <rms@gnu.org>
parents:
8207
diff
changeset
|
2188 list) |
aea786f4cdd1
(insert-directory): Fix prev change.
Richard M. Stallman <rms@gnu.org>
parents:
8207
diff
changeset
|
2189 switches (substring switches (match-end 0)))) |
aea786f4cdd1
(insert-directory): Fix prev change.
Richard M. Stallman <rms@gnu.org>
parents:
8207
diff
changeset
|
2190 (setq list (cons switches list))))) |
8207
96e6518c209b
(insert-directory): Allow list for SWITCHES.
Richard M. Stallman <rms@gnu.org>
parents:
8181
diff
changeset
|
2191 (append list |
96e6518c209b
(insert-directory): Allow list for SWITCHES.
Richard M. Stallman <rms@gnu.org>
parents:
8181
diff
changeset
|
2192 (list |
96e6518c209b
(insert-directory): Allow list for SWITCHES.
Richard M. Stallman <rms@gnu.org>
parents:
8181
diff
changeset
|
2193 (if full-directory-p |
96e6518c209b
(insert-directory): Allow list for SWITCHES.
Richard M. Stallman <rms@gnu.org>
parents:
8181
diff
changeset
|
2194 (concat (file-name-as-directory file) ".") |
96e6518c209b
(insert-directory): Allow list for SWITCHES.
Richard M. Stallman <rms@gnu.org>
parents:
8181
diff
changeset
|
2195 file)))))))))) |
337 | 2196 |
6050
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2197 (defvar kill-emacs-query-functions nil |
7686
814e18e2d3d4
(kill-emacs-query-functions): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7682
diff
changeset
|
2198 "Functions to call with no arguments to query about killing Emacs. |
814e18e2d3d4
(kill-emacs-query-functions): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
7682
diff
changeset
|
2199 If any of these functions returns nil, killing Emacs is cancelled.") |
6050
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2200 |
337 | 2201 (defun save-buffers-kill-emacs (&optional arg) |
2202 "Offer to save each buffer, then kill this Emacs process. | |
2203 With prefix arg, silently save all file-visiting buffers, then kill." | |
2204 (interactive "P") | |
2205 (save-some-buffers arg t) | |
2206 (and (or (not (memq t (mapcar (function | |
2207 (lambda (buf) (and (buffer-file-name buf) | |
2208 (buffer-modified-p buf)))) | |
2209 (buffer-list)))) | |
2210 (yes-or-no-p "Modified buffers exist; exit anyway? ")) | |
2211 (or (not (fboundp 'process-list)) | |
2212 ;; process-list is not defined on VMS. | |
2213 (let ((processes (process-list)) | |
2214 active) | |
2215 (while processes | |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
736
diff
changeset
|
2216 (and (memq (process-status (car processes)) '(run stop open)) |
337 | 2217 (let ((val (process-kill-without-query (car processes)))) |
2218 (process-kill-without-query (car processes) val) | |
2219 val) | |
2220 (setq active t)) | |
2221 (setq processes (cdr processes))) | |
2222 (or (not active) | |
2223 (yes-or-no-p "Active processes exist; kill them and exit anyway? ")))) | |
6050
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2224 ;; Query the user for other things, perhaps. |
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2225 (let ((functions kill-emacs-query-functions) |
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2226 (yes t)) |
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2227 (while (and functions yes) |
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2228 (setq yes (and yes (funcall (car functions)))) |
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2229 (setq functions (cdr functions))) |
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2230 yes) |
337 | 2231 (kill-emacs))) |
2232 | |
2233 (define-key ctl-x-map "\C-f" 'find-file) | |
2234 (define-key ctl-x-map "\C-q" 'toggle-read-only) | |
2235 (define-key ctl-x-map "\C-r" 'find-file-read-only) | |
2236 (define-key ctl-x-map "\C-v" 'find-alternate-file) | |
2237 (define-key ctl-x-map "\C-s" 'save-buffer) | |
2238 (define-key ctl-x-map "s" 'save-some-buffers) | |
2239 (define-key ctl-x-map "\C-w" 'write-file) | |
2240 (define-key ctl-x-map "i" 'insert-file) | |
2241 (define-key esc-map "~" 'not-modified) | |
2242 (define-key ctl-x-map "\C-d" 'list-directory) | |
2243 (define-key ctl-x-map "\C-c" 'save-buffers-kill-emacs) | |
2244 | |
2245 (define-key ctl-x-4-map "f" 'find-file-other-window) | |
2246 (define-key ctl-x-4-map "r" 'find-file-read-only-other-window) | |
2247 (define-key ctl-x-4-map "\C-f" 'find-file-other-window) | |
2248 (define-key ctl-x-4-map "b" 'switch-to-buffer-other-window) | |
854
0b4f3a91f207
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
2249 (define-key ctl-x-4-map "\C-o" 'display-buffer) |
423 | 2250 |
778 | 2251 (define-key ctl-x-5-map "b" 'switch-to-buffer-other-frame) |
2252 (define-key ctl-x-5-map "f" 'find-file-other-frame) | |
2253 (define-key ctl-x-5-map "\C-f" 'find-file-other-frame) | |
2254 (define-key ctl-x-5-map "r" 'find-file-read-only-other-frame) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
2255 |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
2256 ;;; files.el ends here |