Mercurial > emacs
annotate lisp/files.el @ 7181:459c47388834
Fix syntax in previous change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 28 Apr 1994 22:24:41 +0000 |
parents | 2b445c15563e |
children | 729f02b2d064 |
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 |
32 "*Non-nil means delete a buffer's auto-save file when the buffer is saved.") | |
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 | |
144 (defvar trim-versions-without-asking nil | |
844
bf829a2d63b4
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
819
diff
changeset
|
145 "*If t, deletes excess backup versions silently. |
bf829a2d63b4
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
819
diff
changeset
|
146 If nil, asks 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." |
4017
3a16b66a26d9
(cd-absolute): Use abbreviate-file-name on expansion of DIR.
Roland McGrath <roland@gnu.org>
parents:
4015
diff
changeset
|
281 (setq dir (abbreviate-file-name (expand-file-name dir))) |
337 | 282 (if (not (eq system-type 'vax-vms)) |
283 (setq dir (file-name-as-directory dir))) | |
284 (if (not (file-directory-p dir)) | |
285 (error "%s is not a directory" dir) | |
286 (if (file-executable-p dir) | |
287 (setq default-directory dir) | |
3038
4bdac10d920a
(cd): Set cd-path to a list.
Richard M. Stallman <rms@gnu.org>
parents:
2896
diff
changeset
|
288 (error "Cannot cd to %s: Permission denied" dir)))) |
337 | 289 |
2575
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
290 (defun cd (dir) |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
291 "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
|
292 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
|
293 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
|
294 (interactive "FChange default directory: ") |
3652
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
295 (if (file-name-absolute-p dir) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
296 (cd-absolute (expand-file-name dir)) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
297 (if (null cd-path) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
298 (let ((trypath (parse-colon-path (getenv "CDPATH")))) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
299 (setq cd-path (or trypath (list "./"))))) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
300 (if (not (catch 'found |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
301 (mapcar |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
302 (function (lambda (x) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
303 (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
|
304 (if (file-directory-p f) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
305 (progn |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
306 (cd-absolute f) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
307 (throw 'found t)))))) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
308 cd-path) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
309 nil)) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
310 (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
|
311 |
337 | 312 (defun load-file (file) |
313 "Load the Lisp file named FILE." | |
314 (interactive "fLoad file: ") | |
315 (load (expand-file-name file) nil nil t)) | |
316 | |
317 (defun load-library (library) | |
318 "Load the library named LIBRARY. | |
319 This is an interface to the function `load'." | |
320 (interactive "sLoad library: ") | |
321 (load library)) | |
1134
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
322 |
7036 | 323 (defun file-local-copy (file &optional buffer) |
1134
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
324 "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
|
325 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
|
326 accessible." |
7030
9e51b51e8595
Pass operation to find-file-name-handler.
Karl Heuer <kwzh@gnu.org>
parents:
6899
diff
changeset
|
327 (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
|
328 (if handler |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
329 (funcall handler 'file-local-copy file) |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
330 nil))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
331 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
332 (defun file-truename (filename) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
333 "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
|
334 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
|
335 both at the level of the file and at the level of the directories |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
336 containing it, until no links are left at any level." |
4965
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
337 (if (or (string= filename "~") |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
338 (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
|
339 (string-match "~[^/]*" filename))) |
2613
709f672f450e
(find-file-noselect): Do set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2600
diff
changeset
|
340 (progn |
709f672f450e
(find-file-noselect): Do set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2600
diff
changeset
|
341 (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
|
342 (if (string= filename "") |
709f672f450e
(find-file-noselect): Do set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2600
diff
changeset
|
343 (setq filename "/")))) |
7030
9e51b51e8595
Pass operation to find-file-name-handler.
Karl Heuer <kwzh@gnu.org>
parents:
6899
diff
changeset
|
344 (let ((handler (find-file-name-handler filename 'file-truename))) |
1453
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
345 ;; For file name that has a special handler, call handler. |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
346 ;; This is so that ange-ftp can save time by doing a no-op. |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
347 (if handler |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
348 (funcall handler 'file-truename filename) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
349 (let ((dir (file-name-directory filename)) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
350 target dirfile) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
351 ;; Get the truename of the directory. |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
352 (setq dirfile (directory-file-name dir)) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
353 ;; If these are equal, we have the (or a) root directory. |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
354 (or (string= dir dirfile) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
355 (setq dir (file-name-as-directory (file-truename dirfile)))) |
3670
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
356 (if (equal ".." (file-name-nondirectory filename)) |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
357 (directory-file-name (file-name-directory (directory-file-name dir))) |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
358 (if (equal "." (file-name-nondirectory filename)) |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
359 (directory-file-name dir) |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
360 ;; Put it back on the file name. |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
361 (setq filename (concat dir (file-name-nondirectory filename))) |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
362 ;; Is the file name the name of a link? |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
363 (setq target (file-symlink-p filename)) |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
364 (if target |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
365 ;; Yes => chase that link, then start all over |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
366 ;; since the link may point to a directory name that uses links. |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
367 ;; We can't safely use expand-file-name here |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
368 ;; since target might look like foo/../bar where foo |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
369 ;; is itself a link. Instead, we handle . and .. above. |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
370 (if (file-name-absolute-p target) |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
371 (file-truename target) |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
372 (file-truename (concat dir target))) |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
373 ;; No, we are done! |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
374 filename))))))) |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1537
diff
changeset
|
375 |
3260
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
376 (defun file-chase-links (filename) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
377 "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
|
378 Does not examine containing directories for links, |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
379 unlike `file-truename'." |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
380 (let (tem (count 100) (newname filename)) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
381 (while (setq tem (file-symlink-p newname)) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
382 (if (= count 0) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
383 (error "Apparent cycle of symbolic links for %s" filename)) |
3263
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
384 ;; 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
|
385 ;; target of any directory symlink. |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
386 ;; 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
|
387 ;; embedded .. in some cases such as ./../foo and foo/bar/../../../lose. |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
388 (while (string-match "\\.\\./" tem) |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
389 (setq tem (substring tem 3)) |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
390 (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
|
391 ;; Do the .. by hand. |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
392 (directory-file-name |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
393 (file-name-directory |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
394 ;; 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
|
395 (file-chase-links |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
396 (directory-file-name |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
397 (file-name-directory newname)))))))) |
3260
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
398 (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
|
399 (setq count (1- count))) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
400 newname)) |
337 | 401 |
402 (defun switch-to-buffer-other-window (buffer) | |
403 "Select buffer BUFFER in another window." | |
404 (interactive "BSwitch to buffer in other window: ") | |
405 (let ((pop-up-windows t)) | |
406 (pop-to-buffer buffer t))) | |
407 | |
778 | 408 (defun switch-to-buffer-other-frame (buffer) |
409 "Switch to buffer BUFFER in another frame." | |
410 (interactive "BSwitch to buffer in other frame: ") | |
411 (let ((pop-up-frames t)) | |
1799
8e52d9366e6c
(switch-to-buffer-other-frame): Pass t to pop-to-buffer.
Roland McGrath <roland@gnu.org>
parents:
1725
diff
changeset
|
412 (pop-to-buffer buffer t))) |
423 | 413 |
337 | 414 (defun find-file (filename) |
415 "Edit file FILENAME. | |
416 Switch to a buffer visiting file FILENAME, | |
417 creating one if none already exists." | |
418 (interactive "FFind file: ") | |
419 (switch-to-buffer (find-file-noselect filename))) | |
420 | |
421 (defun find-file-other-window (filename) | |
422 "Edit file FILENAME, in another window. | |
423 May create a new window, or reuse an existing one. | |
424 See the function `display-buffer'." | |
425 (interactive "FFind file in other window: ") | |
426 (switch-to-buffer-other-window (find-file-noselect filename))) | |
427 | |
778 | 428 (defun find-file-other-frame (filename) |
429 "Edit file FILENAME, in another frame. | |
430 May create a new frame, or reuse an existing one. | |
423 | 431 See the function `display-buffer'." |
778 | 432 (interactive "FFind file in other frame: ") |
433 (switch-to-buffer-other-frame (find-file-noselect filename))) | |
423 | 434 |
337 | 435 (defun find-file-read-only (filename) |
436 "Edit file FILENAME but don't allow changes. | |
437 Like \\[find-file] but marks buffer as read-only. | |
438 Use \\[toggle-read-only] to permit editing." | |
439 (interactive "fFind file read-only: ") | |
440 (find-file filename) | |
3280
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
441 (setq buffer-read-only t) |
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
442 (current-buffer)) |
337 | 443 |
444 (defun find-file-read-only-other-window (filename) | |
445 "Edit file FILENAME in another window but don't allow changes. | |
446 Like \\[find-file-other-window] but marks buffer as read-only. | |
447 Use \\[toggle-read-only] to permit editing." | |
448 (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
|
449 (find-file-other-window filename) |
3280
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
450 (setq buffer-read-only t) |
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
451 (current-buffer)) |
337 | 452 |
778 | 453 (defun find-file-read-only-other-frame (filename) |
454 "Edit file FILENAME in another frame but don't allow changes. | |
455 Like \\[find-file-other-frame] but marks buffer as read-only. | |
423 | 456 Use \\[toggle-read-only] to permit editing." |
778 | 457 (interactive "fFind file read-only other frame: ") |
458 (find-file-other-frame filename) | |
3280
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
459 (setq buffer-read-only t) |
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
460 (current-buffer)) |
423 | 461 |
337 | 462 (defun find-alternate-file (filename) |
463 "Find file FILENAME, select its buffer, kill previous buffer. | |
464 If the current buffer now contains an empty file that you just visited | |
465 \(presumably by mistake), use this command to visit the file you really want." | |
466 (interactive | |
467 (let ((file buffer-file-name) | |
468 (file-name nil) | |
469 (file-dir nil)) | |
470 (and file | |
471 (setq file-name (file-name-nondirectory file) | |
472 file-dir (file-name-directory file))) | |
941 | 473 (list (read-file-name |
474 "Find alternate file: " file-dir nil nil file-name)))) | |
337 | 475 (and (buffer-modified-p) |
476 ;; (not buffer-read-only) | |
477 (not (yes-or-no-p (format "Buffer %s is modified; kill anyway? " | |
478 (buffer-name)))) | |
479 (error "Aborted")) | |
480 (let ((obuf (current-buffer)) | |
481 (ofile buffer-file-name) | |
3191
d96fd9315996
(find-alternate-file): Hide truename and inode number
Richard M. Stallman <rms@gnu.org>
parents:
3151
diff
changeset
|
482 (onum buffer-file-number) |
d96fd9315996
(find-alternate-file): Hide truename and inode number
Richard M. Stallman <rms@gnu.org>
parents:
3151
diff
changeset
|
483 (otrue buffer-file-truename) |
337 | 484 (oname (buffer-name))) |
485 (rename-buffer " **lose**") | |
486 (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
|
487 (setq buffer-file-number nil) |
d96fd9315996
(find-alternate-file): Hide truename and inode number
Richard M. Stallman <rms@gnu.org>
parents:
3151
diff
changeset
|
488 (setq buffer-file-truename nil) |
337 | 489 (unwind-protect |
490 (progn | |
491 (unlock-buffer) | |
492 (find-file filename)) | |
493 (cond ((eq obuf (current-buffer)) | |
494 (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
|
495 (setq buffer-file-number onum) |
d96fd9315996
(find-alternate-file): Hide truename and inode number
Richard M. Stallman <rms@gnu.org>
parents:
3151
diff
changeset
|
496 (setq buffer-file-truename otrue) |
337 | 497 (lock-buffer) |
498 (rename-buffer oname)))) | |
499 (or (eq (current-buffer) obuf) | |
500 (kill-buffer obuf)))) | |
501 | |
502 (defun create-file-buffer (filename) | |
503 "Create a suitably named buffer for visiting FILENAME, and return it. | |
504 FILENAME (sans directory) is used unchanged if that name is free; | |
505 otherwise a string <2> or <3> or ... is appended to get an unused name." | |
506 (let ((lastname (file-name-nondirectory filename))) | |
507 (if (string= lastname "") | |
508 (setq lastname filename)) | |
509 (generate-new-buffer lastname))) | |
510 | |
423 | 511 (defun generate-new-buffer (name) |
512 "Create and return a buffer with a name based on NAME. | |
1461 | 513 Choose the buffer's name using `generate-new-buffer-name'." |
423 | 514 (get-buffer-create (generate-new-buffer-name name))) |
515 | |
817 | 516 (defconst automount-dir-prefix "^/tmp_mnt/" |
517 "Regexp to match the automounter prefix in a directory name.") | |
518 | |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
519 (defvar abbreviated-home-dir nil |
4847
e7d8cfd205d4
(abbreviated-home-dir): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4837
diff
changeset
|
520 "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
|
521 |
423 | 522 (defun abbreviate-file-name (filename) |
1461 | 523 "Return a version of FILENAME shortened using `directory-abbrev-alist'. |
423 | 524 This also substitutes \"~\" for the user's home directory. |
1461 | 525 Type \\[describe-variable] directory-abbrev-alist RET for more information." |
817 | 526 ;; Get rid of the prefixes added by the automounter. |
527 (if (and (string-match automount-dir-prefix filename) | |
528 (file-exists-p (file-name-directory | |
529 (substring filename (1- (match-end 0)))))) | |
530 (setq filename (substring filename (1- (match-end 0))))) | |
423 | 531 (let ((tail directory-abbrev-alist)) |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
532 ;; 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
|
533 ;; abbreviate accordingly. |
423 | 534 (while tail |
535 (if (string-match (car (car tail)) filename) | |
536 (setq filename | |
537 (concat (cdr (car tail)) (substring filename (match-end 0))))) | |
538 (setq tail (cdr tail))) | |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
539 ;; Compute and save the abbreviated homedir name. |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
540 ;; 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
|
541 ;; 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
|
542 ;; 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
|
543 ;; 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
|
544 (or abbreviated-home-dir |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
545 (setq abbreviated-home-dir |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
546 (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
|
547 (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
|
548 "\\(/\\|$\\)")))) |
09e961c82be8
(abbreviate-file-name): Match home dir with no / if nothing else follows.
Richard M. Stallman <rms@gnu.org>
parents:
3672
diff
changeset
|
549 |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
550 ;; If FILENAME starts with the abbreviated homedir, |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
551 ;; 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
|
552 (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
|
553 ;; 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
|
554 (not (and (= (match-end 0) 1) |
cc4892ee6807
(abbreviate-file-name): Don't convert / to ~/ when the home dir is /.
Richard M. Stallman <rms@gnu.org>
parents:
5468
diff
changeset
|
555 (= (aref filename 0) ?/)))) |
423 | 556 (setq filename |
2630
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
557 (concat "~" |
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
558 ;; If abbreviated-home-dir ends with a slash, |
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
559 ;; don't remove the corresponding slash from |
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
560 ;; filename. On MS-DOS and OS/2, you can have |
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
561 ;; home directories like "g:/", in which it is |
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
562 ;; important not to remove the slash. And what |
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
563 ;; about poor root on Unix systems? |
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
564 (if (eq ?/ (aref abbreviated-home-dir |
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
565 (1- (length abbreviated-home-dir)))) |
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
566 "/" |
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
567 "") |
3709
09e961c82be8
(abbreviate-file-name): Match home dir with no / if nothing else follows.
Richard M. Stallman <rms@gnu.org>
parents:
3672
diff
changeset
|
568 (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
|
569 (substring filename (match-end 0))))) |
423 | 570 filename)) |
571 | |
2622
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
572 (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
|
573 "*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
|
574 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
|
575 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
|
576 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
|
577 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
|
578 |
6265
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
579 (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
|
580 "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
|
581 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
|
582 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
|
583 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
|
584 (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
|
585 (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
|
586 (or buf |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
587 (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
|
588 (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
|
589 (save-excursion |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
590 (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
|
591 (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
|
592 (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
|
593 (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
|
594 (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
|
595 found) |
6272
d19db87b8c8e
(find-buffer-visiting): Fix typo in previous change.
Karl Heuer <kwzh@gnu.org>
parents:
6265
diff
changeset
|
596 (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
|
597 (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
|
598 (and number |
6044f2615082
(find-buffer-visiting): Don't compare NUMBER if it is nil.
Richard M. Stallman <rms@gnu.org>
parents:
6272
diff
changeset
|
599 (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
|
600 (save-excursion |
6044f2615082
(find-buffer-visiting): Don't compare NUMBER if it is nil.
Richard M. Stallman <rms@gnu.org>
parents:
6272
diff
changeset
|
601 (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
|
602 (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
|
603 (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
|
604 ;; 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
|
605 ;; 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
|
606 (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
|
607 (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
|
608 number)) |
6044f2615082
(find-buffer-visiting): Don't compare NUMBER if it is nil.
Richard M. Stallman <rms@gnu.org>
parents:
6272
diff
changeset
|
609 (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
|
610 (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
|
611 found)))) |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
612 |
337 | 613 (defun find-file-noselect (filename &optional nowarn) |
614 "Read file FILENAME into a buffer and return the buffer. | |
615 If a buffer exists visiting FILENAME, return that one, but | |
616 verify that the file has not changed since visited or saved. | |
617 The buffer is not selected, just returned to the caller." | |
817 | 618 (setq filename |
619 (abbreviate-file-name | |
620 (expand-file-name filename))) | |
337 | 621 (if (file-directory-p filename) |
622 (if find-file-run-dired | |
623 (dired-noselect filename) | |
624 (error "%s is a directory." filename)) | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
625 (let* ((buf (get-file-buffer filename)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
626 (truename (abbreviate-file-name (file-truename filename))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
627 (number (nthcdr 10 (file-attributes truename))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
628 ;; 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
|
629 (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
|
630 error) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
631 ;; 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
|
632 (if other |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
633 (progn |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
634 (or nowarn (message "%s and %s are the same file" |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
635 filename (buffer-file-name other))) |
f901b6091821
(find-buffer-visiting): New function to look for another buffer visiting the
Karl Heuer <kwzh@gnu.org>
parents:
6168
diff
changeset
|
636 ;; 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
|
637 (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
|
638 (setq buf other)))) |
337 | 639 (if buf |
640 (or nowarn | |
641 (verify-visited-file-modtime buf) | |
642 (cond ((not (file-exists-p filename)) | |
643 (error "File %s no longer exists!" filename)) | |
644 ((yes-or-no-p | |
645 (format | |
646 (if (buffer-modified-p buf) | |
647 "File %s changed on disk. Discard your edits? " | |
648 "File %s changed on disk. Read the new version? ") | |
649 (file-name-nondirectory filename))) | |
650 (save-excursion | |
651 (set-buffer buf) | |
652 (revert-buffer t t))))) | |
653 (save-excursion | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
654 ;;; The truename stuff makes this obsolete. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
655 ;;; (let* ((link-name (car (file-attributes filename))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
656 ;;; (linked-buf (and (stringp link-name) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
657 ;;; (get-file-buffer link-name)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
658 ;;; (if (bufferp linked-buf) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
659 ;;; (message "Symbolic link to file in buffer %s" |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
660 ;;; (buffer-name linked-buf)))) |
337 | 661 (setq buf (create-file-buffer filename)) |
662 (set-buffer buf) | |
663 (erase-buffer) | |
664 (condition-case () | |
665 (insert-file-contents filename t) | |
666 (file-error | |
667 (setq error t) | |
668 ;; Run find-file-not-found-hooks until one returns non-nil. | |
669 (let ((hooks find-file-not-found-hooks)) | |
670 (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
|
671 (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
|
672 ;; 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
|
673 (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
|
674 ;; 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
|
675 t)))) |
337 | 676 (setq hooks (cdr hooks)))))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
677 ;; 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
|
678 (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
|
679 (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
|
680 ;; 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
|
681 ;; 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
|
682 (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
|
683 (let (logical) |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
684 (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
|
685 (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
|
686 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
|
687 (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
|
688 (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
|
689 (if find-file-visit-truename |
3151
923f5564a2a1
(find-file-noselect): Expand buffer-file-truename
Richard M. Stallman <rms@gnu.org>
parents:
3122
diff
changeset
|
690 (setq buffer-file-name |
923f5564a2a1
(find-file-noselect): Expand buffer-file-truename
Richard M. Stallman <rms@gnu.org>
parents:
3122
diff
changeset
|
691 (setq filename |
923f5564a2a1
(find-file-noselect): Expand buffer-file-truename
Richard M. Stallman <rms@gnu.org>
parents:
3122
diff
changeset
|
692 (expand-file-name buffer-file-truename)))) |
337 | 693 ;; Set buffer's default directory to that of the file. |
694 (setq default-directory (file-name-directory filename)) | |
695 ;; Turn off backup files for certain file names. Since | |
696 ;; this is a permanent local, the major mode won't eliminate it. | |
697 (and (not (funcall backup-enable-predicate buffer-file-name)) | |
698 (progn | |
699 (make-local-variable 'backup-inhibited) | |
700 (setq backup-inhibited t))) | |
701 (after-find-file error (not nowarn)))) | |
702 buf))) | |
703 | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
704 (defun after-find-file (&optional error warn noauto) |
337 | 705 "Called after finding a file and by the default revert function. |
706 Sets buffer mode, parses local variables. | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
707 Optional args ERROR, WARN, and NOAUTO: ERROR non-nil means there was an |
337 | 708 error in reading the file. WARN non-nil means warn if there |
709 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
|
710 NOAUTO means don't mess with auto-save mode. |
337 | 711 Finishes by calling the functions in `find-file-hooks'." |
712 (setq buffer-read-only (not (file-writable-p buffer-file-name))) | |
713 (if noninteractive | |
714 nil | |
715 (let* (not-serious | |
716 (msg | |
717 (cond ((and error (file-attributes buffer-file-name)) | |
718 (setq buffer-read-only t) | |
4466
9d62b3cb7dd6
(after-find-file): Improve warning message about
Richard M. Stallman <rms@gnu.org>
parents:
4375
diff
changeset
|
719 "File exists, but cannot be read.") |
337 | 720 ((not buffer-read-only) |
721 (if (and warn | |
722 (file-newer-than-file-p (make-auto-save-file-name) | |
723 buffer-file-name)) | |
724 "Auto save file is newer; consider M-x recover-file" | |
725 (setq not-serious t) | |
726 (if error "(New file)" nil))) | |
727 ((not error) | |
728 (setq not-serious t) | |
729 "Note: file is write protected") | |
730 ((file-attributes (directory-file-name default-directory)) | |
731 "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
|
732 ((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
|
733 (setq buffer-read-only nil)) |
337 | 734 (t |
423 | 735 (setq buffer-read-only nil) |
1537
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
736 (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
|
737 "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
|
738 "Use C-u M-x make-dir RET RET to create directory and its parents"))))) |
337 | 739 (if msg |
740 (progn | |
741 (message msg) | |
742 (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
|
743 (if (and auto-save-default (not noauto)) |
337 | 744 (auto-save-mode t))) |
745 (normal-mode t) | |
746 (mapcar 'funcall find-file-hooks)) | |
747 | |
748 (defun normal-mode (&optional find-file) | |
749 "Choose the major mode for this buffer automatically. | |
750 Also sets up any specified local variables of the file. | |
751 Uses the visited file name, the -*- line, and the local variables spec. | |
752 | |
753 This function is called automatically from `find-file'. In that case, | |
754 we may set up specified local variables depending on the value of | |
755 `enable-local-variables': if it is t, we do; if it is nil, we don't; | |
756 otherwise, we query. `enable-local-variables' is ignored if you | |
757 run `normal-mode' explicitly." | |
758 (interactive) | |
759 (or find-file (funcall (or default-major-mode 'fundamental-mode))) | |
760 (condition-case err | |
761 (set-auto-mode) | |
762 (error (message "File mode specification error: %s" | |
763 (prin1-to-string err)))) | |
764 (condition-case err | |
566 | 765 (let ((enable-local-variables (or (not find-file) |
766 enable-local-variables))) | |
767 (hack-local-variables)) | |
337 | 768 (error (message "File local-variables error: %s" |
769 (prin1-to-string err))))) | |
770 | |
566 | 771 (defvar auto-mode-alist (mapcar 'purecopy |
772 '(("\\.text\\'" . text-mode) | |
773 ("\\.c\\'" . c-mode) | |
774 ("\\.h\\'" . c-mode) | |
775 ("\\.tex\\'" . TeX-mode) | |
776 ("\\.ltx\\'" . LaTeX-mode) | |
777 ("\\.el\\'" . emacs-lisp-mode) | |
778 ("\\.mm\\'" . nroff-mode) | |
779 ("\\.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
|
780 ("\\.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
|
781 ("\\.man\\'" . nroff-mode) |
566 | 782 ("\\.scm\\'" . scheme-mode) |
783 ("\\.l\\'" . lisp-mode) | |
784 ("\\.lisp\\'" . lisp-mode) | |
785 ("\\.f\\'" . fortran-mode) | |
786 ("\\.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
|
787 ("\\.p\\'" . pascal-mode) |
b087b24b26ea
(auto-mode-alist): Add .p and .pas for pascal-mode.
Richard M. Stallman <rms@gnu.org>
parents:
5718
diff
changeset
|
788 ("\\.pas\\'" . pascal-mode) |
566 | 789 ("\\.mss\\'" . scribe-mode) |
790 ("\\.pl\\'" . prolog-mode) | |
791 ("\\.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
|
792 ("\\.hh\\'" . c++-mode) |
566 | 793 ("\\.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
|
794 ("\\.H\\'" . c++-mode) |
2672
b69eef4cf31d
(auto-mode-alist): Delete the entries for makefile-mode.
Richard M. Stallman <rms@gnu.org>
parents:
2630
diff
changeset
|
795 ;;; ("\\.mk\\'" . makefile-mode) |
b69eef4cf31d
(auto-mode-alist): Delete the entries for makefile-mode.
Richard M. Stallman <rms@gnu.org>
parents:
2630
diff
changeset
|
796 ;;; ("[Mm]akefile" . makefile-mode) |
566 | 797 ;;; Less common extensions come here |
798 ;;; 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
|
799 ("\\.texinfo\\'" . texinfo-mode) |
8fd47a5040cb
(auto-mode-alist): Add elt for .tcl files.
Richard M. Stallman <rms@gnu.org>
parents:
5733
diff
changeset
|
800 ("\\.texi\\'" . texinfo-mode) |
566 | 801 ("\\.s\\'" . asm-mode) |
802 ("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
|
803 ("change.log\\'" . change-log-mode) |
5468
d9fa38b889c9
(auto-mode-alist): Treat changelo like ChangeLog.
Richard M. Stallman <rms@gnu.org>
parents:
5453
diff
changeset
|
804 ("changelo\\'" . change-log-mode) |
1090
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
805 ("ChangeLog.[0-9]+\\'" . change-log-mode) |
566 | 806 ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode) |
1090
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
807 ;; The following should come after the ChangeLog pattern |
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
808 ;; for the sake of ChangeLog.1, etc. |
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
809 ("\\.[12345678]\\'" . nroff-mode) |
566 | 810 ("\\.TeX\\'" . TeX-mode) |
811 ("\\.sty\\'" . LaTeX-mode) | |
812 ("\\.bbl\\'" . LaTeX-mode) | |
813 ("\\.bib\\'" . bibtex-mode) | |
814 ("\\.article\\'" . text-mode) | |
815 ("\\.letter\\'" . text-mode) | |
5804
8fd47a5040cb
(auto-mode-alist): Add elt for .tcl files.
Richard M. Stallman <rms@gnu.org>
parents:
5733
diff
changeset
|
816 ("\\.tcl\\'" . tcl-mode) |
566 | 817 ("\\.lsp\\'" . lisp-mode) |
818 ("\\.awk\\'" . awk-mode) | |
819 ("\\.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
|
820 ("\\.tar\\'" . tar-mode) |
566 | 821 ;; Mailer puts message to be edited in |
822 ;; /tmp/Re.... or Message | |
823 ("^/tmp/Re" . text-mode) | |
824 ("/Message[0-9]*\\'" . text-mode) | |
825 ;; some news reader is reported to use this | |
826 ("^/tmp/fol/" . text-mode) | |
827 ("\\.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
|
828 ("\\.lex\\'" . c-mode) |
566 | 829 ("\\.oak\\'" . scheme-mode) |
830 ("\\.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
|
831 ("\\.sgm\\'" . sgml-mode) |
f09230e68f20
(auto-mode-alist): Fix syntax for sgml mode.
Richard M. Stallman <rms@gnu.org>
parents:
3191
diff
changeset
|
832 ("\\.sgml\\'" . sgml-mode) |
f09230e68f20
(auto-mode-alist): Fix syntax for sgml mode.
Richard M. Stallman <rms@gnu.org>
parents:
3191
diff
changeset
|
833 ("\\.dtd\\'" . sgml-mode) |
566 | 834 ;; .emacs following a directory delimiter |
835 ;; in either Unix or VMS syntax. | |
836 ("[]>:/]\\..*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
|
837 ;; _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
|
838 ;; in MsDos syntax |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
839 ("[:/]_emacs\\'" . emacs-lisp-mode) |
566 | 840 ("\\.ml\\'" . lisp-mode))) |
841 "\ | |
842 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
|
843 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
|
844 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
|
845 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
|
846 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
|
847 again for another match.") |
566 | 848 |
5956
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
849 (defconst interpreter-mode-alist |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
850 '(("perl" . perl-mode) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
851 ("scope" . tcl-mode) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
852 ("wish" . tcl-mode) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
853 ("shell" . tcl-mode) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
854 ("form" . tcl-mode) |
5973
628188ceb43b
interpreter-mode-alist: Add modes for awk, gawk, and scm scripts.
Noah Friedman <friedman@splode.com>
parents:
5958
diff
changeset
|
855 ("tcl" . tcl-mode) |
628188ceb43b
interpreter-mode-alist: Add modes for awk, gawk, and scm scripts.
Noah Friedman <friedman@splode.com>
parents:
5958
diff
changeset
|
856 ("awk" . awk-mode) |
628188ceb43b
interpreter-mode-alist: Add modes for awk, gawk, and scm scripts.
Noah Friedman <friedman@splode.com>
parents:
5958
diff
changeset
|
857 ("gawk" . awk-mode) |
628188ceb43b
interpreter-mode-alist: Add modes for awk, gawk, and scm scripts.
Noah Friedman <friedman@splode.com>
parents:
5958
diff
changeset
|
858 ("scm" . scheme-mode)) |
5956
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
859 "Alist mapping interpreter names to major modes. |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
860 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
|
861 Each element looks like (INTERPRETER . MODE). |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
862 The car of each element is compared with |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
863 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
|
864 If it matches, mode MODE is selected.") |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
865 |
6780
06eb068ba329
(inhibit-first-line-modes-regexps): Renamed from
Richard M. Stallman <rms@gnu.org>
parents:
6734
diff
changeset
|
866 (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
|
867 "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
|
868 |
5453
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
869 (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
|
870 "" ; 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
|
871 "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
|
872 |
337 | 873 (defun set-auto-mode () |
874 "Select major mode appropriate for current buffer. | |
566 | 875 This checks for a -*- mode tag in the buffer's text, or |
5600
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
876 compares the filename against the entries in `auto-mode-alist'. It does |
566 | 877 not check for the \"mode:\" local variable in the Local Variables |
878 section of the file; for that, use `hack-local-variables'. | |
879 | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
880 If `enable-local-variables' is nil, this function does not check for a |
566 | 881 -*- mode tag." |
337 | 882 ;; 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
|
883 (let (beg end done) |
337 | 884 (save-excursion |
885 (goto-char (point-min)) | |
886 (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
|
887 (and enable-local-variables |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
888 ;; 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
|
889 ;; 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
|
890 (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
|
891 (while (and temp |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
892 (not (string-match (car temp) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
893 buffer-file-name))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
894 (setq temp (cdr temp))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
895 (not temp)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
896 (search-forward "-*-" (save-excursion |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
897 ;; If the file begins with "#!" |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
898 ;; (exec interpreter magic), look |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
899 ;; 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
|
900 ;; lines. You cannot necessarily |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
901 ;; 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
|
902 ;; 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
|
903 ;; the interpreter invocation. |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
904 (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
|
905 (point)) t) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
906 (progn |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
907 (skip-chars-forward " \t") |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
908 (setq beg (point)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
909 (search-forward "-*-" |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
910 (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
|
911 t)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
912 (progn |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
913 (forward-char -3) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
914 (skip-chars-backward " \t") |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
915 (setq end (point)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
916 (goto-char beg) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
917 (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
|
918 ;; Find all specifications for the `mode:' variable |
6322 | 919 ;; 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
|
920 (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
|
921 (search-forward "mode:" end t)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
922 (skip-chars-forward " \t") |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
923 (setq beg (point)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
924 (if (search-forward ";" end t) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
925 (forward-char -1) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
926 (goto-char end)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
927 (skip-chars-backward " \t") |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
928 (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
|
929 ;; Simple -*-MODE-*- case. |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
930 (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
|
931 (setq done t))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
932 ;; 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
|
933 (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
|
934 (let ((name buffer-file-name) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
935 (case-fold-search (eq system-type 'vax-vms)) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
936 (keep-going t)) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
937 ;; 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
|
938 (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
|
939 (while keep-going |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
940 (setq keep-going nil) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
941 (let ((alist auto-mode-alist) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
942 (mode nil)) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
943 ;; Find first matching alist entry. |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
944 (while (and (not mode) alist) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
945 (if (string-match (car (car alist)) name) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
946 (if (and (consp (cdr (car alist))) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
947 (nth 2 (car alist))) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
948 (progn |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
949 (setq mode (car (cdr (car alist))) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
950 name (substring name 0 (match-beginning 0)) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
951 keep-going t)) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
952 (setq mode (cdr (car alist)) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
953 keep-going nil))) |
777597fbd048
(set-auto-mode): Handle (REGEXP FUNCTION t) elements.
Richard M. Stallman <rms@gnu.org>
parents:
5582
diff
changeset
|
954 (setq alist (cdr alist))) |
5956
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
955 (if mode |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
956 (funcall mode) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
957 ;; 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
|
958 ;; 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
|
959 (let ((interpreter |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
960 (save-excursion |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
961 (goto-char (point-min)) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
962 (if (looking-at "#! *") |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
963 (progn |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
964 (goto-char (match-end 0)) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
965 (buffer-substring (point) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
966 (progn (end-of-line) (point)))) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
967 ""))) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
968 elt) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
969 ;; Map interpreter name to a mode. |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
970 (setq elt (assoc (file-name-nondirectory interpreter) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
971 interpreter-mode-alist)) |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
972 (if elt |
586a37656a31
(interpreter-mode-alist): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5804
diff
changeset
|
973 (funcall (cdr elt)))))))))))) |
337 | 974 |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
975 (defun hack-local-variables-prop-line () |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
976 ;; 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
|
977 ;; Ignore any specification for `mode:'; |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
978 ;; 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
|
979 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
980 (goto-char (point-min)) |
6575
9aba6be8e460
(hack-local-variables-prop-line): Search two lines if "#!".
Karl Heuer <kwzh@gnu.org>
parents:
6574
diff
changeset
|
981 (let ((result nil) |
9aba6be8e460
(hack-local-variables-prop-line): Search two lines if "#!".
Karl Heuer <kwzh@gnu.org>
parents:
6574
diff
changeset
|
982 (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
|
983 ;; Parse the -*- line into the `result' alist. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
984 (cond ((not (search-forward "-*-" end t)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
985 ;; doesn't have one. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
986 nil) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
987 ((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
|
988 ;; Simple form: "-*- MODENAME -*-". Already handled. |
9aba6be8e460
(hack-local-variables-prop-line): Search two lines if "#!".
Karl Heuer <kwzh@gnu.org>
parents:
6574
diff
changeset
|
989 nil) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
990 (t |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
991 ;; Hairy form: '-*-' [ <variable> ':' <value> ';' ]* '-*-' |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
992 ;; (last ";" is optional). |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
993 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
994 (if (search-forward "-*-" end t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
995 (setq end (- (point) 3)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
996 (error "-*- not terminated before end of line"))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
997 (while (< (point) end) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
998 (or (looking-at "[ \t]*\\([^ \t\n:]+\\)[ \t]*:[ \t]*") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
999 (error "malformed -*- line")) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1000 (goto-char (match-end 0)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1001 (let ((key (intern (downcase (buffer-substring |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1002 (match-beginning 1) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1003 (match-end 1))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1004 (val (save-restriction |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1005 (narrow-to-region (point) end) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1006 (read (current-buffer))))) |
6575
9aba6be8e460
(hack-local-variables-prop-line): Search two lines if "#!".
Karl Heuer <kwzh@gnu.org>
parents:
6574
diff
changeset
|
1007 (or (eq key 'mode) |
9aba6be8e460
(hack-local-variables-prop-line): Search two lines if "#!".
Karl Heuer <kwzh@gnu.org>
parents:
6574
diff
changeset
|
1008 (setq result (cons (cons key val) result))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1009 (skip-chars-forward " \t;"))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1010 (setq result (nreverse result)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1011 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1012 (if (and result |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1013 (or (eq enable-local-variables t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1014 (and enable-local-variables |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1015 (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
|
1016 (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
|
1017 (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
|
1018 (error |
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1019 ;; 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
|
1020 ;; 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
|
1021 ;; 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
|
1022 (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
|
1023 (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
|
1024 (error |
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1025 (switch-to-buffer-other-frame (current-buffer)))))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1026 (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
|
1027 (file-name-nondirectory buffer-file-name))))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1028 (while result |
6575
9aba6be8e460
(hack-local-variables-prop-line): Search two lines if "#!".
Karl Heuer <kwzh@gnu.org>
parents:
6574
diff
changeset
|
1029 (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
|
1030 (setq result (cdr result))))))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1031 |
566 | 1032 (defun hack-local-variables () |
1371 | 1033 "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
|
1034 (hack-local-variables-prop-line) |
337 | 1035 ;; Look for "Local variables:" line in last page. |
1036 (save-excursion | |
1037 (goto-char (point-max)) | |
1038 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move) | |
1039 (if (let ((case-fold-search t)) | |
1040 (and (search-forward "Local Variables:" nil t) | |
566 | 1041 (or (eq enable-local-variables t) |
337 | 1042 (and enable-local-variables |
1043 (save-window-excursion | |
1044 (switch-to-buffer (current-buffer)) | |
1045 (save-excursion | |
1046 (beginning-of-line) | |
1047 (set-window-start (selected-window) (point))) | |
1048 (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
|
1049 (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
|
1050 (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
|
1051 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
|
1052 (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
|
1053 (buffer-name)))))))))) |
337 | 1054 (let ((continue t) |
1066
9b788095582b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
941
diff
changeset
|
1055 prefix prefixlen suffix beg |
9b788095582b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
941
diff
changeset
|
1056 (enable-local-eval enable-local-eval)) |
337 | 1057 ;; The prefix is what comes before "local variables:" in its line. |
1058 ;; The suffix is what comes after "local variables:" in its line. | |
1059 (skip-chars-forward " \t") | |
1060 (or (eolp) | |
1061 (setq suffix (buffer-substring (point) | |
1062 (progn (end-of-line) (point))))) | |
1063 (goto-char (match-beginning 0)) | |
1064 (or (bolp) | |
1065 (setq prefix | |
1066 (buffer-substring (point) | |
1067 (progn (beginning-of-line) (point))))) | |
566 | 1068 |
337 | 1069 (if prefix (setq prefixlen (length prefix) |
1070 prefix (regexp-quote prefix))) | |
1071 (if suffix (setq suffix (concat (regexp-quote suffix) "$"))) | |
1072 (while continue | |
1073 ;; Look at next local variable spec. | |
1074 (if selective-display (re-search-forward "[\n\C-m]") | |
1075 (forward-line 1)) | |
1076 ;; Skip the prefix, if any. | |
1077 (if prefix | |
1078 (if (looking-at prefix) | |
1079 (forward-char prefixlen) | |
1080 (error "Local variables entry is missing the prefix"))) | |
1081 ;; Find the variable name; strip whitespace. | |
1082 (skip-chars-forward " \t") | |
1083 (setq beg (point)) | |
1084 (skip-chars-forward "^:\n") | |
1085 (if (eolp) (error "Missing colon in local variables entry")) | |
1086 (skip-chars-backward " \t") | |
1087 (let* ((str (buffer-substring beg (point))) | |
1088 (var (read str)) | |
1089 val) | |
1090 ;; Setting variable named "end" means end of list. | |
1091 (if (string-equal (downcase str) "end") | |
1092 (setq continue nil) | |
1093 ;; Otherwise read the variable value. | |
1094 (skip-chars-forward "^:") | |
1095 (forward-char 1) | |
1096 (setq val (read (current-buffer))) | |
1097 (skip-chars-backward "\n") | |
1098 (skip-chars-forward " \t") | |
1099 (or (if suffix (looking-at suffix) (eolp)) | |
1100 (error "Local variables entry is terminated incorrectly")) | |
1101 ;; 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
|
1102 (hack-one-local-variable var val)))))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1103 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1104 (defconst ignored-local-variables |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1105 '(enable-local-eval) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1106 "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
|
1107 |
6734
6e61dbbfce80
(hack-one-local-variable): Test for risky-local-variable property.
Richard M. Stallman <rms@gnu.org>
parents:
6733
diff
changeset
|
1108 ;; Get confirmation before setting these variables as locals in a file. |
6e61dbbfce80
(hack-one-local-variable): Test for risky-local-variable property.
Richard M. Stallman <rms@gnu.org>
parents:
6733
diff
changeset
|
1109 (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
|
1110 (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
|
1111 (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
|
1112 (put 'after-load-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
|
1113 |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1114 ;; "Set" one variable in a local variables spec. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1115 ;; A few variable names are treated specially. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1116 (defun hack-one-local-variable (var val) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1117 (cond ((eq var 'mode) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1118 (funcall (intern (concat (downcase (symbol-name val)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1119 "-mode")))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1120 ((memq var ignored-local-variables) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1121 nil) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1122 ;; "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
|
1123 ;; 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
|
1124 ((or (get var 'risky-local-variable) |
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
|
1125 (string-match "-hooks?$\\|-functions?$\\|-forms?$" |
bf9c1e9a4055
(hack-one-local-variable): Treat varnames ending in -form or -forms like eval.
Richard M. Stallman <rms@gnu.org>
parents:
6677
diff
changeset
|
1126 (symbol-name var))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1127 (if (and (not (string= (user-login-name) "root")) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1128 (or (eq enable-local-eval t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1129 (and enable-local-eval |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1130 (save-window-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1131 (switch-to-buffer (current-buffer)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1132 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1133 (beginning-of-line) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1134 (set-window-start (selected-window) (point))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1135 (setq enable-local-eval |
3626
ae0389767674
(hack-one-local-variable): Treat ...-hook(s) and ..-function(s)
Richard M. Stallman <rms@gnu.org>
parents:
3624
diff
changeset
|
1136 (y-or-n-p (format "Process `eval' or hook local variables in file %s? " |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1137 (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
|
1138 (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
|
1139 (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
|
1140 (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
|
1141 (set var val)) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1142 (message "Ignoring `eval:' in file's local variables"))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1143 ;; Ordinary variable, really set it. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1144 (t (make-local-variable var) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1145 (set var val)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1146 |
337 | 1147 |
1148 (defun set-visited-file-name (filename) | |
1149 "Change name of file visited in current buffer to FILENAME. | |
1150 The next time the buffer is saved it will go in the newly specified file. | |
1151 nil or empty string as argument means make buffer not be visiting any file. | |
1152 Remember to delete the initial contents of the minibuffer | |
1153 if you wish to pass an empty string as the argument." | |
1154 (interactive "FSet visited file name: ") | |
1155 (if filename | |
1156 (setq filename | |
1157 (if (string-equal filename "") | |
1158 nil | |
1159 (expand-file-name filename)))) | |
1160 (or (equal filename buffer-file-name) | |
1161 (progn | |
6085
b44d5d121bc5
(set-visited-file-name): Unlock the file if setting the visited file name to
Karl Heuer <kwzh@gnu.org>
parents:
6050
diff
changeset
|
1162 (and filename (lock-buffer filename)) |
337 | 1163 (unlock-buffer))) |
1164 (setq buffer-file-name filename) | |
1165 (if filename ; make buffer name reflect filename. | |
423 | 1166 (let ((new-name (file-name-nondirectory buffer-file-name))) |
337 | 1167 (if (string= new-name "") |
1168 (error "Empty file name")) | |
1169 (if (eq system-type 'vax-vms) | |
1170 (setq new-name (downcase new-name))) | |
1171 (setq default-directory (file-name-directory buffer-file-name)) | |
5292
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1172 (or (string= new-name (buffer-name)) |
4b1f2e4dcf34
(hack-local-variables-prop-line): If we can't switch-to-buffer
Richard M. Stallman <rms@gnu.org>
parents:
4965
diff
changeset
|
1173 (rename-buffer new-name t)))) |
337 | 1174 (setq buffer-backed-up nil) |
1175 (clear-visited-file-modtime) | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1176 (if filename |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1177 (progn |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1178 (setq buffer-file-truename |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1179 (abbreviate-file-name (file-truename buffer-file-name))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1180 (if find-file-visit-truename |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1181 (setq buffer-file-name buffer-file-truename)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1182 (setq buffer-file-number (nth 10 (file-attributes buffer-file-name)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1183 (setq buffer-file-truename nil buffer-file-number nil)) |
337 | 1184 ;; write-file-hooks is normally used for things like ftp-find-file |
1185 ;; that visit things that are not local files as if they were files. | |
1186 ;; Changing to visit an ordinary local file instead should flush the hook. | |
1187 (kill-local-variable 'write-file-hooks) | |
2375
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
1188 (kill-local-variable 'local-write-file-hooks) |
337 | 1189 (kill-local-variable 'revert-buffer-function) |
1190 (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
|
1191 ;; 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
|
1192 ;; 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
|
1193 (if vc-mode |
8eb722515c31
(set-visited-file-name): Kill local var vc-mode.
Richard M. Stallman <rms@gnu.org>
parents:
6454
diff
changeset
|
1194 (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
|
1195 (kill-local-variable 'vc-mode) |
337 | 1196 ;; Turn off backup files for certain file names. |
1197 ;; Since this is a permanent local, the major mode won't eliminate it. | |
1198 (and (not (funcall backup-enable-predicate buffer-file-name)) | |
1199 (progn | |
1200 (make-local-variable 'backup-inhibited) | |
1201 (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
|
1202 (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
|
1203 ;; 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
|
1204 (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
|
1205 (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
|
1206 (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
|
1207 ;; 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
|
1208 ;; 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
|
1209 ;; 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
|
1210 ;; 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
|
1211 ;; 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
|
1212 (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
|
1213 (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
|
1214 ;; 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
|
1215 (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
|
1216 (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
|
1217 (rename-file oauto buffer-auto-save-file-name t))) |
337 | 1218 (if buffer-file-name |
1219 (set-buffer-modified-p t))) | |
1220 | |
1221 (defun write-file (filename) | |
1222 "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
|
1223 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
|
1224 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
|
1225 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
|
1226 old name in that directory." |
337 | 1227 ;; (interactive "FWrite file: ") |
1228 (interactive | |
1229 (list (if buffer-file-name | |
1230 (read-file-name "Write file: " | |
1231 nil nil nil nil) | |
1232 (read-file-name "Write file: " | |
1233 (cdr (assq 'default-directory | |
1234 (buffer-local-variables))) | |
1235 nil nil (buffer-name))))) | |
1236 (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
|
1237 (progn |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1238 ;; If arg is just a directory, |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1239 ;; 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
|
1240 (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
|
1241 (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
|
1242 (file-name-nondirectory buffer-file-name)))) |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1243 (set-visited-file-name filename))) |
337 | 1244 (set-buffer-modified-p t) |
1245 (save-buffer)) | |
1246 | |
1247 (defun backup-buffer () | |
1248 "Make a backup of the disk file visited by the current buffer, if appropriate. | |
1249 This is normally done before saving the buffer the first time. | |
1250 If the value is non-nil, it is the result of `file-modes' on the original | |
1251 file; this means that the caller, after saving the buffer, should change | |
1252 the modes of the new file to agree with the old modes." | |
1253 (if (and make-backup-files (not backup-inhibited) | |
1254 (not buffer-backed-up) | |
1255 (file-exists-p buffer-file-name) | |
1256 (memq (aref (elt (file-attributes buffer-file-name) 8) 0) | |
1257 '(?- ?l))) | |
1258 (let ((real-file-name buffer-file-name) | |
1259 backup-info backupname targets setmodes) | |
1260 ;; If specified name is a symbolic link, chase it to the target. | |
1261 ;; 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
|
1262 (setq real-file-name (file-chase-links real-file-name)) |
337 | 1263 (setq backup-info (find-backup-file-name real-file-name) |
1264 backupname (car backup-info) | |
1265 targets (cdr backup-info)) | |
1266 ;;; (if (file-directory-p buffer-file-name) | |
1267 ;;; (error "Cannot save buffer in directory %s" buffer-file-name)) | |
1268 (condition-case () | |
1269 (let ((delete-old-versions | |
1270 ;; If have old versions to maybe delete, | |
1271 ;; ask the user to confirm now, before doing anything. | |
1272 ;; But don't actually delete til later. | |
1273 (and targets | |
844
bf829a2d63b4
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
819
diff
changeset
|
1274 (or (eq trim-versions-without-asking t) (eq trim-versions-without-asking nil)) |
337 | 1275 (or trim-versions-without-asking |
1276 (y-or-n-p (format "Delete excess backup versions of %s? " | |
1277 real-file-name)))))) | |
1278 ;; Actually write the back up file. | |
1279 (condition-case () | |
1280 (if (or file-precious-flag | |
1281 ; (file-symlink-p buffer-file-name) | |
1282 backup-by-copying | |
1283 (and backup-by-copying-when-linked | |
1284 (> (file-nlinks real-file-name) 1)) | |
1285 (and backup-by-copying-when-mismatch | |
1286 (let ((attr (file-attributes real-file-name))) | |
1287 (or (nth 9 attr) | |
1288 (/= (nth 2 attr) (user-uid)))))) | |
1103
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1289 (condition-case () |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1290 (copy-file real-file-name backupname t t) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1291 (file-error |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1292 ;; If copying fails because file BACKUPNAME |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1293 ;; is not writable, delete that file and try again. |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1294 (if (and (file-exists-p backupname) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1295 (not (file-writable-p backupname))) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1296 (delete-file backupname)) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1297 (copy-file real-file-name backupname t t))) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1298 ;; rename-file should delete old backup. |
337 | 1299 (rename-file real-file-name backupname t) |
1300 (setq setmodes (file-modes backupname))) | |
1301 (file-error | |
1302 ;; If trouble writing the backup, write it in ~. | |
1303 (setq backupname (expand-file-name "~/%backup%~")) | |
1304 (message "Cannot write backup file; backing up in ~/%%backup%%~") | |
1305 (sleep-for 1) | |
1103
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1306 (condition-case () |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1307 (copy-file real-file-name backupname t t) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1308 (file-error |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1309 ;; If copying fails because file BACKUPNAME |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1310 ;; is not writable, delete that file and try again. |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1311 (if (and (file-exists-p backupname) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1312 (not (file-writable-p backupname))) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1313 (delete-file backupname)) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1314 (copy-file real-file-name backupname t t))))) |
337 | 1315 (setq buffer-backed-up t) |
1316 ;; Now delete the old versions, if desired. | |
1317 (if delete-old-versions | |
1318 (while targets | |
1319 (condition-case () | |
1320 (delete-file (car targets)) | |
1321 (file-error nil)) | |
1322 (setq targets (cdr targets)))) | |
1323 setmodes) | |
1324 (file-error nil))))) | |
1325 | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1326 (defun file-name-sans-versions (name &optional keep-backup-version) |
337 | 1327 "Return FILENAME sans backup versions or strings. |
1328 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
|
1329 redefine it. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1330 If the optional argument KEEP-BACKUP-VERSION is non-nil, |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1331 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
|
1332 (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
|
1333 (if handler |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1334 (funcall handler 'file-name-sans-versions name keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1335 (substring name 0 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1336 (if (eq system-type 'vax-vms) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1337 ;; VMS version number is (a) semicolon, optional |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1338 ;; sign, zero or more digits or (b) period, option |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1339 ;; sign, zero or more digits, provided this is the |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1340 ;; second period encountered outside of the |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1341 ;; 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
|
1342 (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
|
1343 (if (string-match "\\.[^]>:]*\\(\\.[-+]?[0-9]*\\)\\'" |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1344 name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1345 (match-beginning 1)) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1346 (length name)) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1347 (if keep-backup-version |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1348 (length name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1349 (or (string-match "\\.~[0-9]+~\\'" name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1350 (string-match "~\\'" name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1351 (length name)))))))) |
337 | 1352 |
1353 (defun make-backup-file-name (file) | |
1354 "Create the non-numeric backup file name for FILE. | |
1355 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
|
1356 (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
|
1357 (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
|
1358 (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
|
1359 (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
|
1360 (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
|
1361 ".bak")) |
691f7961e32c
[ms-dos] (make-backup-file-name, backup-file-name-p):
Richard M. Stallman <rms@gnu.org>
parents:
5398
diff
changeset
|
1362 (concat file "~"))) |
337 | 1363 |
1364 (defun backup-file-name-p (file) | |
1365 "Return non-nil if FILE is a backup file name (numeric or not). | |
1366 This is a separate function so you can redefine it for customization. | |
1367 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
|
1368 (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
|
1369 (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
|
1370 (string-match "~$" file))) |
337 | 1371 |
890
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1372 ;; This is used in various files. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1373 ;; The usage of bv-length is not very clean, |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1374 ;; but I can't see a good alternative, |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1375 ;; so as of now I am leaving it alone. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1376 (defun backup-extract-version (fn) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1377 "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
|
1378 Uses the free variable `bv-length', whose value should be |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1379 the index in the name where the version number begins." |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1380 (if (and (string-match "[0-9]+~$" fn bv-length) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1381 (= (match-beginning 0) bv-length)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1382 (string-to-int (substring fn bv-length -1)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1383 0)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1384 |
337 | 1385 ;; I believe there is no need to alter this behavior for VMS; |
1386 ;; since backup files are not made on VMS, it should not get called. | |
1387 (defun find-backup-file-name (fn) | |
1388 "Find a file name for a backup file, and suggestions for deletions. | |
1389 Value is a list whose car is the name for the backup file | |
1390 and whose cdr is a list of old versions to consider deleting now." | |
1391 (if (eq version-control 'never) | |
1392 (list (make-backup-file-name fn)) | |
1393 (let* ((base-versions (concat (file-name-nondirectory fn) ".~")) | |
1394 (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
|
1395 possibilities |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1396 (versions nil) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1397 (high-water-mark 0) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1398 (deserve-versions-p nil) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1399 (number-to-delete 0)) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1400 (condition-case () |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1401 (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
|
1402 base-versions |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1403 (file-name-directory fn)) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1404 versions (sort (mapcar |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1405 (function backup-extract-version) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1406 possibilities) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1407 '<) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1408 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
|
1409 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
|
1410 (> high-water-mark 0)) |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1411 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
|
1412 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
|
1413 (file-error |
dad86ab54e36
(find-backup-file-name): Don't fatal-error on
Richard M. Stallman <rms@gnu.org>
parents:
4847
diff
changeset
|
1414 (setq possibilities nil))) |
337 | 1415 (if (not deserve-versions-p) |
1416 (list (make-backup-file-name fn)) | |
1417 (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
|
1418 (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
|
1419 ;; 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
|
1420 ;; 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
|
1421 (>= (+ kept-new-versions kept-old-versions -1) 0)) |
337 | 1422 (mapcar (function (lambda (n) |
1423 (concat fn ".~" (int-to-string n) "~"))) | |
1424 (let ((v (nthcdr kept-old-versions versions))) | |
1425 (rplacd (nthcdr (1- number-to-delete) v) ()) | |
1426 v)))))))) | |
1427 | |
1428 (defun file-nlinks (filename) | |
1429 "Return number of names file FILENAME has." | |
1430 (car (cdr (file-attributes filename)))) | |
1229
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1431 |
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1432 (defun file-relative-name (filename &optional directory) |
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1433 "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
|
1434 (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
|
1435 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
|
1436 (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
|
1437 (let ((ancestor "")) |
04260338bfca
Fix file-relative-name to allow for ancestors as well as descendants.
Karl Heuer <kwzh@gnu.org>
parents:
5722
diff
changeset
|
1438 (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
|
1439 (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
|
1440 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
|
1441 (concat ancestor (substring filename (match-end 0))))) |
337 | 1442 |
1443 (defun save-buffer (&optional args) | |
1444 "Save current buffer in visited file if modified. Versions described below. | |
1445 By default, makes the previous version into a backup file | |
1446 if previously requested or if this is the first save. | |
1447 With 1 or 3 \\[universal-argument]'s, marks this version | |
1448 to become a backup when the next save is done. | |
1449 With 2 or 3 \\[universal-argument]'s, | |
1450 unconditionally makes the previous version into a backup file. | |
1451 With argument of 0, never makes the previous version into a backup file. | |
1452 | |
1453 If a file's name is FOO, the names of its numbered backup versions are | |
1454 FOO.~i~ for various integers i. A non-numbered backup file is called FOO~. | |
1455 Numeric backups (rather than FOO~) will be made if value of | |
1456 `version-control' is not the atom `never' and either there are already | |
1457 numeric versions of the file being backed up, or `version-control' is | |
1458 non-nil. | |
1459 We don't want excessive versions piling up, so there are variables | |
1460 `kept-old-versions', which tells Emacs how many oldest versions to keep, | |
1461 and `kept-new-versions', which tells how many newest versions to keep. | |
1462 Defaults are 2 old versions and 2 new. | |
1463 `dired-kept-versions' controls dired's clean-directory (.) command. | |
1464 If `trim-versions-without-asking' is nil, system will query user | |
1465 before trimming versions. Otherwise it does it silently." | |
1466 (interactive "p") | |
1467 (let ((modp (buffer-modified-p)) | |
1468 (large (> (buffer-size) 50000)) | |
1469 (make-backup-files (and make-backup-files (not (eq args 0))))) | |
1470 (and modp (memq args '(16 64)) (setq buffer-backed-up nil)) | |
1471 (if (and modp large) (message "Saving file %s..." (buffer-file-name))) | |
1472 (basic-save-buffer) | |
1473 (and modp (memq args '(4 64)) (setq buffer-backed-up nil)))) | |
1474 | |
1475 (defun delete-auto-save-file-if-necessary (&optional force) | |
1476 "Delete auto-save file for current buffer if `delete-auto-save-files' is t. | |
1477 Normally delete only if the file was written by this Emacs since | |
1478 the last real save, but optional arg FORCE non-nil means delete anyway." | |
1479 (and buffer-auto-save-file-name delete-auto-save-files | |
1480 (not (string= buffer-file-name buffer-auto-save-file-name)) | |
1481 (or force (recent-auto-save-p)) | |
1482 (progn | |
1483 (condition-case () | |
1484 (delete-file buffer-auto-save-file-name) | |
1485 (file-error nil)) | |
1486 (set-buffer-auto-saved)))) | |
1487 | |
1488 (defun basic-save-buffer () | |
1489 "Save the current buffer in its visited file, if it has been modified." | |
1490 (interactive) | |
1491 (if (buffer-modified-p) | |
1492 (let ((recent-save (recent-auto-save-p)) | |
1493 setmodes tempsetmodes) | |
1494 ;; On VMS, rename file and buffer to get rid of version number. | |
1495 (if (and (eq system-type 'vax-vms) | |
1496 (not (string= buffer-file-name | |
1497 (file-name-sans-versions buffer-file-name)))) | |
1498 (let (buffer-new-name) | |
1499 ;; Strip VMS version number before save. | |
1500 (setq buffer-file-name | |
1501 (file-name-sans-versions buffer-file-name)) | |
1502 ;; Construct a (unique) buffer name to correspond. | |
1503 (let ((buf (create-file-buffer (downcase buffer-file-name)))) | |
1504 (setq buffer-new-name (buffer-name buf)) | |
1505 (kill-buffer buf)) | |
1506 (rename-buffer buffer-new-name))) | |
1507 ;; If buffer has no file name, ask user for one. | |
1508 (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
|
1509 (set-visited-file-name |
ebf146cb7720
(basic-save-buffer): When we read a file name,
Richard M. Stallman <rms@gnu.org>
parents:
4283
diff
changeset
|
1510 (expand-file-name (read-file-name "File to save in: ") nil))) |
337 | 1511 (or (verify-visited-file-modtime (current-buffer)) |
1512 (not (file-exists-p buffer-file-name)) | |
1513 (yes-or-no-p | |
1514 (format "%s has changed since visited or saved. Save anyway? " | |
1515 (file-name-nondirectory buffer-file-name))) | |
1516 (error "Save not confirmed")) | |
1517 (save-restriction | |
1518 (widen) | |
1519 (and (> (point-max) 1) | |
1520 (/= (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
|
1521 (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
|
1522 (= (char-after (1- (point-max))) ?\r))) |
337 | 1523 (or (eq require-final-newline t) |
1524 (and require-final-newline | |
1525 (y-or-n-p | |
1526 (format "Buffer %s does not end in newline. Add one? " | |
1527 (buffer-name))))) | |
1528 (save-excursion | |
1529 (goto-char (point-max)) | |
1530 (insert ?\n))) | |
2375
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
1531 (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
|
1532 write-file-hooks)) |
337 | 1533 (done nil)) |
1534 (while (and hooks | |
1535 (not (setq done (funcall (car hooks))))) | |
1536 (setq hooks (cdr hooks))) | |
1537 ;; If a hook returned t, file is already "written". | |
1538 (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
|
1539 (setq setmodes (basic-save-buffer-1))))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1540 (setq buffer-file-number (nth 10 (file-attributes buffer-file-name))) |
337 | 1541 (if setmodes |
1542 (condition-case () | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1543 (set-file-modes buffer-file-name setmodes) |
337 | 1544 (error nil)))) |
1545 ;; If the auto-save file was recent before this command, | |
1546 ;; delete it now. | |
1547 (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
|
1548 (run-hooks 'after-save-hook)) |
337 | 1549 (message "(No changes need to be saved)"))) |
1550 | |
6574
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1551 ;; 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
|
1552 ;; 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
|
1553 ;; 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
|
1554 ;; 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
|
1555 (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
|
1556 (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
|
1557 (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
|
1558 (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
|
1559 (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
|
1560 (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
|
1561 (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
|
1562 (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
|
1563 (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
|
1564 (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
|
1565 (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
|
1566 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
|
1567 (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
|
1568 (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
|
1569 (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
|
1570 (setq setmodes (backup-buffer))) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1571 (if file-precious-flag |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1572 ;; If file is precious, write temp name, then rename it. |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1573 (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
|
1574 (realname 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
|
1575 tempname temp nogood i succeed) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1576 (setq i 0) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1577 (setq nogood t) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1578 ;; Find the temporary name to write under. |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1579 (while nogood |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1580 (setq tempname (format "%s#tmp#%d" dir i)) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1581 (setq nogood (file-exists-p tempname)) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1582 (setq i (1+ i))) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1583 (unwind-protect |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1584 (progn (clear-visited-file-modtime) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1585 (write-region (point-min) (point-max) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1586 tempname nil realname) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1587 (setq succeed t)) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1588 ;; If writing the temp file fails, |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1589 ;; delete the temp file. |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1590 (or succeed (delete-file tempname))) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1591 ;; Since we have created an entirely new file |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1592 ;; and renamed it, make sure it gets the |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1593 ;; right permission bits set. |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1594 (setq setmodes (file-modes 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
|
1595 ;; We succeeded in writing the temp file, |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1596 ;; so rename it. |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1597 (rename-file tempname buffer-file-name t)) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1598 ;; If file not writable, see if we can make it writable |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1599 ;; temporarily while we write it. |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1600 ;; But no need to do so if we have just backed it up |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1601 ;; (setmodes is set) because that says we're superseding. |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1602 (cond ((and tempsetmodes (not setmodes)) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1603 ;; Change the mode back, after writing. |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1604 (setq setmodes (file-modes 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
|
1605 (set-file-modes buffer-file-name 511))) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1606 (write-region (point-min) (point-max) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1607 buffer-file-name nil t)) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1608 setmodes)) |
f0e1ed0e82a7
(basic-save-buffer-1): New subroutine, broken out of basic-save-buffer.
Richard M. Stallman <rms@gnu.org>
parents:
6546
diff
changeset
|
1609 |
337 | 1610 (defun save-some-buffers (&optional arg exiting) |
1611 "Save some modified file-visiting buffers. Asks user about each one. | |
423 | 1612 Optional argument (the prefix) non-nil means save all with no questions. |
1613 Optional second argument EXITING means ask about certain non-file buffers | |
1614 as well as about file buffers." | |
337 | 1615 (interactive "P") |
891 | 1616 (save-window-excursion |
5398
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1617 (let ((files-done |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1618 (map-y-or-n-p |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1619 (function |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1620 (lambda (buffer) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1621 (and (buffer-modified-p buffer) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1622 (or |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1623 (buffer-file-name buffer) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1624 (and exiting |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1625 (progn |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1626 (set-buffer buffer) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1627 (and buffer-offer-save (> (buffer-size) 0))))) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1628 (if arg |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1629 t |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1630 (if (buffer-file-name buffer) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1631 (format "Save file %s? " |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1632 (buffer-file-name buffer)) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1633 (format "Save buffer %s? " |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1634 (buffer-name buffer))))))) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1635 (function |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1636 (lambda (buffer) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1637 (set-buffer buffer) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1638 (save-buffer))) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1639 (buffer-list) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1640 '("buffer" "buffers" "save") |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1641 (list (list ?\C-r (lambda (buf) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1642 (view-buffer buf) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1643 (setq view-exit-action |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1644 '(lambda (ignore) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1645 (exit-recursive-edit))) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1646 (recursive-edit) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1647 ;; Return nil to ask about BUF again. |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1648 nil) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1649 "display the current buffer")))) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1650 (abbrevs-done |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1651 (and save-abbrevs abbrevs-changed |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1652 (progn |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1653 (if (or arg |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1654 (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
|
1655 (write-abbrev-file nil)) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1656 ;; 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
|
1657 (setq abbrevs-changed nil) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1658 t)))) |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1659 (or (> files-done 0) abbrevs-done |
499f25507242
(save-some-buffers): Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents:
5389
diff
changeset
|
1660 (message "(No files need saving)"))))) |
337 | 1661 |
1662 (defun not-modified (&optional arg) | |
1663 "Mark current buffer as unmodified, not needing to be saved. | |
1664 With prefix arg, mark buffer as modified, so \\[save-buffer] will save." | |
1665 (interactive "P") | |
1666 (message (if arg "Modification-flag set" | |
1667 "Modification-flag cleared")) | |
1668 (set-buffer-modified-p arg)) | |
1669 | |
1670 (defun toggle-read-only (&optional arg) | |
1671 "Change whether this buffer is visiting its file read-only. | |
1672 With arg, set read-only iff arg is positive." | |
1673 (interactive "P") | |
1674 (setq buffer-read-only | |
1675 (if (null arg) | |
1676 (not buffer-read-only) | |
1677 (> (prefix-numeric-value arg) 0))) | |
1678 ;; Force mode-line redisplay | |
1679 (set-buffer-modified-p (buffer-modified-p))) | |
1680 | |
1681 (defun insert-file (filename) | |
1682 "Insert contents of file FILENAME into buffer after point. | |
1683 Set mark after the inserted text. | |
1684 | |
1685 This function is meant for the user to run interactively. | |
1686 Don't call it from programs! Use `insert-file-contents' instead. | |
1687 \(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
|
1688 (interactive "*fInsert file: ") |
3835
e3a00a940cf4
(insert-file): Report error if file is directory.
Richard M. Stallman <rms@gnu.org>
parents:
3709
diff
changeset
|
1689 (if (file-directory-p filename) |
e3a00a940cf4
(insert-file): Report error if file is directory.
Richard M. Stallman <rms@gnu.org>
parents:
3709
diff
changeset
|
1690 (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
|
1691 filename))) |
337 | 1692 (let ((tem (insert-file-contents filename))) |
1693 (push-mark (+ (point) (car (cdr tem)))))) | |
1694 | |
1695 (defun append-to-file (start end filename) | |
1696 "Append the contents of the region to the end of file FILENAME. | |
1697 When called from a function, expects three arguments, | |
1698 START, END and FILENAME. START and END are buffer positions | |
1699 saying what text to write." | |
1700 (interactive "r\nFAppend to file: ") | |
1701 (write-region start end filename t)) | |
1702 | |
1703 (defun file-newest-backup (filename) | |
1704 "Return most recent backup file for FILENAME or nil if no backups exist." | |
1705 (let* ((filename (expand-file-name filename)) | |
1706 (file (file-name-nondirectory filename)) | |
1707 (dir (file-name-directory filename)) | |
1708 (comp (file-name-all-completions file dir)) | |
1709 newest) | |
1710 (while comp | |
1711 (setq file (concat dir (car comp)) | |
1712 comp (cdr comp)) | |
1713 (if (and (backup-file-name-p file) | |
1714 (or (null newest) (file-newer-than-file-p file newest))) | |
1715 (setq newest file))) | |
1716 newest)) | |
1717 | |
1718 (defun rename-uniquely () | |
1719 "Rename current buffer to a similar name not already taken. | |
1720 This function is useful for creating multiple shell process buffers | |
1721 or multiple mail buffers, etc." | |
1722 (interactive) | |
1723 (let* ((new-buf (generate-new-buffer (buffer-name))) | |
1724 (name (buffer-name new-buf))) | |
1725 (kill-buffer new-buf) | |
1726 (rename-buffer name) | |
1727 (set-buffer-modified-p (buffer-modified-p)))) ; force mode line update | |
423 | 1728 |
1537
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1729 (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
|
1730 "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
|
1731 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
|
1732 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
|
1733 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
|
1734 |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1735 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
|
1736 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
|
1737 (interactive |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1738 (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
|
1739 nil nil) |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1740 t)) |
7030
9e51b51e8595
Pass operation to find-file-name-handler.
Karl Heuer <kwzh@gnu.org>
parents:
6899
diff
changeset
|
1741 (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
|
1742 (if handler |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1743 (funcall handler 'make-directory dir parents) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1744 (if (not parents) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1745 (make-directory-internal dir) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1746 (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
|
1747 create-list) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1748 (while (not (file-exists-p dir)) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1749 (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
|
1750 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
|
1751 (while create-list |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1752 (make-directory-internal (car create-list)) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1753 (setq create-list (cdr create-list)))))))) |
337 | 1754 |
1755 (put 'revert-buffer-function 'permanent-local t) | |
1756 (defvar revert-buffer-function nil | |
1757 "Function to use to revert this buffer, or nil to do the default.") | |
1758 | |
1759 (put 'revert-buffer-insert-file-contents-function 'permanent-local t) | |
1760 (defvar revert-buffer-insert-file-contents-function nil | |
1761 "Function to use to insert contents when reverting this buffer. | |
1762 Gets two args, first the nominal file name to use, | |
1763 and second, t if reading the auto-save file.") | |
1764 | |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1765 (defun revert-buffer (&optional ignore-auto noconfirm) |
337 | 1766 "Replace the buffer text with the text of the visited file on disk. |
1767 This undoes all changes since the file was visited or saved. | |
605 | 1768 With a prefix argument, offer to revert from latest auto-save file, if |
1769 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
|
1770 |
5718
3548110b4957
(revert-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
5716
diff
changeset
|
1771 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
|
1772 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
|
1773 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
|
1774 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
|
1775 to nil. |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1776 |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1777 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
|
1778 all. |
337 | 1779 |
605 | 1780 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
|
1781 do the work. |
76f618230217
(revert-buffer): Run after-revert-hook.
Richard M. Stallman <rms@gnu.org>
parents:
5621
diff
changeset
|
1782 |
5716
82588f97d478
(revert-buffer): reposition after-revert-hook, and add before-revert-hook.
Karl Heuer <kwzh@gnu.org>
parents:
5624
diff
changeset
|
1783 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
|
1784 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
|
1785 ;; 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
|
1786 ;; 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
|
1787 ;; 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
|
1788 ;; 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
|
1789 ;; 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
|
1790 ;; 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
|
1791 (interactive (list (not prefix-arg))) |
337 | 1792 (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
|
1793 (funcall revert-buffer-function ignore-auto noconfirm) |
337 | 1794 (let* ((opoint (point)) |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1795 (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
|
1796 (recent-auto-save-p) |
337 | 1797 buffer-auto-save-file-name |
1798 (file-readable-p buffer-auto-save-file-name) | |
1799 (y-or-n-p | |
1800 "Buffer has been auto-saved recently. Revert from auto-save file? "))) | |
1801 (file-name (if auto-save-p | |
1802 buffer-auto-save-file-name | |
1803 buffer-file-name))) | |
1804 (cond ((null file-name) | |
1805 (error "Buffer does not seem to be associated with any file")) | |
1806 ((or noconfirm | |
1807 (yes-or-no-p (format "Revert buffer from file %s? " | |
1808 file-name))) | |
5716
82588f97d478
(revert-buffer): reposition after-revert-hook, and add before-revert-hook.
Karl Heuer <kwzh@gnu.org>
parents:
5624
diff
changeset
|
1809 (run-hooks 'before-revert-hook) |
337 | 1810 ;; If file was backed up but has changed since, |
1811 ;; we shd make another backup. | |
1812 (and (not auto-save-p) | |
423 | 1813 (not (verify-visited-file-modtime (current-buffer))) |
337 | 1814 (setq buffer-backed-up nil)) |
1815 ;; Get rid of all undo records for this buffer. | |
1816 (or (eq buffer-undo-list t) | |
1817 (setq buffer-undo-list nil)) | |
1818 (let ((buffer-read-only nil) | |
1819 ;; Don't make undo records for the reversion. | |
1820 (buffer-undo-list t)) | |
1821 (if revert-buffer-insert-file-contents-function | |
1822 (funcall revert-buffer-insert-file-contents-function | |
1823 file-name auto-save-p) | |
1824 (if (not (file-exists-p file-name)) | |
1825 (error "File %s no longer exists!" file-name)) | |
1826 ;; Bind buffer-file-name to nil | |
1827 ;; so that we don't try to lock the file. | |
1828 (let ((buffer-file-name nil)) | |
1829 (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
|
1830 (unlock-buffer))) |
bee9069f17e3
(revert-buffer): Use new insert-file-contents replace arg.
Richard M. Stallman <rms@gnu.org>
parents:
5973
diff
changeset
|
1831 (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
|
1832 nil nil t))) |
337 | 1833 (goto-char (min opoint (point-max))) |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
1834 (after-find-file nil nil t) |
5716
82588f97d478
(revert-buffer): reposition after-revert-hook, and add before-revert-hook.
Karl Heuer <kwzh@gnu.org>
parents:
5624
diff
changeset
|
1835 (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
|
1836 t))))) |
337 | 1837 |
1838 (defun recover-file (file) | |
1839 "Visit file FILE, but get contents from its last auto-save file." | |
1840 (interactive | |
1841 (let ((prompt-file buffer-file-name) | |
1842 (file-name nil) | |
1843 (file-dir nil)) | |
1844 (and prompt-file | |
1845 (setq file-name (file-name-nondirectory prompt-file) | |
1846 file-dir (file-name-directory prompt-file))) | |
1847 (list (read-file-name "Recover file: " | |
1848 file-dir nil nil file-name)))) | |
1849 (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
|
1850 (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
|
1851 (error "%s is an auto-save file" file)) |
337 | 1852 (let ((file-name (let ((buffer-file-name file)) |
1853 (make-auto-save-file-name)))) | |
1854 (cond ((not (file-newer-than-file-p file-name file)) | |
1855 (error "Auto-save file %s not current" file-name)) | |
1856 ((save-window-excursion | |
1857 (if (not (eq system-type 'vax-vms)) | |
1858 (with-output-to-temp-buffer "*Directory*" | |
1859 (buffer-disable-undo standard-output) | |
1860 (call-process "ls" nil standard-output nil | |
736
18b892513cb7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
735
diff
changeset
|
1861 (if (file-symlink-p file) "-lL" "-l") |
18b892513cb7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
735
diff
changeset
|
1862 file file-name))) |
337 | 1863 (yes-or-no-p (format "Recover auto save file %s? " file-name))) |
1864 (switch-to-buffer (find-file-noselect file t)) | |
1865 (let ((buffer-read-only nil)) | |
1866 (erase-buffer) | |
1867 (insert-file-contents file-name nil)) | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
1868 (after-find-file nil nil t)) |
337 | 1869 (t (error "Recover-file cancelled."))))) |
1870 | |
1871 (defun kill-some-buffers () | |
1872 "For each buffer, ask whether to kill it." | |
1873 (interactive) | |
1874 (let ((list (buffer-list))) | |
1875 (while list | |
1876 (let* ((buffer (car list)) | |
1877 (name (buffer-name buffer))) | |
1878 (and (not (string-equal name "")) | |
1879 (/= (aref name 0) ? ) | |
1880 (yes-or-no-p | |
1881 (format "Buffer %s %s. Kill? " | |
1882 name | |
1883 (if (buffer-modified-p buffer) | |
1884 "HAS BEEN EDITED" "is unmodified"))) | |
1885 (kill-buffer buffer))) | |
1886 (setq list (cdr list))))) | |
1887 | |
1888 (defun auto-save-mode (arg) | |
1889 "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
|
1890 With prefix argument ARG, turn auto-saving on if positive, else off." |
337 | 1891 (interactive "P") |
1892 (setq buffer-auto-save-file-name | |
1893 (and (if (null arg) | |
1894 (not buffer-auto-save-file-name) | |
1895 (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0)))) | |
1896 (if (and buffer-file-name auto-save-visited-file-name | |
1897 (not buffer-read-only)) | |
1898 buffer-file-name | |
1899 (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
|
1900 ;; 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
|
1901 ;; 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
|
1902 (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
|
1903 (setq buffer-saved-size 0)) |
337 | 1904 (if (interactive-p) |
1905 (message "Auto-save %s (in this buffer)" | |
1906 (if buffer-auto-save-file-name "on" "off"))) | |
1907 buffer-auto-save-file-name) | |
1908 | |
1909 (defun rename-auto-save-file () | |
1910 "Adjust current buffer's auto save file name for current conditions. | |
1911 Also rename any existing auto save file, if it was made in this session." | |
1912 (let ((osave buffer-auto-save-file-name)) | |
1913 (setq buffer-auto-save-file-name | |
1914 (make-auto-save-file-name)) | |
1915 (if (and osave buffer-auto-save-file-name | |
1916 (not (string= buffer-auto-save-file-name buffer-file-name)) | |
1917 (not (string= buffer-auto-save-file-name osave)) | |
1918 (file-exists-p osave) | |
1919 (recent-auto-save-p)) | |
1920 (rename-file osave buffer-auto-save-file-name t)))) | |
1921 | |
1922 (defun make-auto-save-file-name () | |
1923 "Return file name to use for auto-saves of current buffer. | |
1924 Does not consider `auto-save-visited-file-name' as that variable is checked | |
1925 before calling this function. You can redefine this for customization. | |
1926 See also `auto-save-file-name-p'." | |
1927 (if buffer-file-name | |
1928 (concat (file-name-directory buffer-file-name) | |
1929 "#" | |
1930 (file-name-nondirectory buffer-file-name) | |
1931 "#") | |
1932 ;; For non-file bfr, use bfr name and Emacs pid. | |
1933 (expand-file-name (format "#%s#%s#" (buffer-name) (make-temp-name ""))))) | |
1934 | |
1935 (defun auto-save-file-name-p (filename) | |
1936 "Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'. | |
1937 FILENAME should lack slashes. You can redefine this for customization." | |
1938 (string-match "^#.*#$" filename)) | |
1939 | |
1940 (defconst list-directory-brief-switches | |
1941 (if (eq system-type 'vax-vms) "" "-CF") | |
1942 "*Switches for list-directory to pass to `ls' for brief listing,") | |
1943 | |
1944 (defconst list-directory-verbose-switches | |
1945 (if (eq system-type 'vax-vms) | |
1946 "/PROTECTION/SIZE/DATE/OWNER/WIDTH=(OWNER:10)" | |
1947 "-l") | |
1948 "*Switches for list-directory to pass to `ls' for verbose listing,") | |
1949 | |
1950 (defun list-directory (dirname &optional verbose) | |
1951 "Display a list of files in or matching DIRNAME, a la `ls'. | |
1952 DIRNAME is globbed by the shell if necessary. | |
1953 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'. | |
1954 Actions controlled by variables `list-directory-brief-switches' | |
1955 and `list-directory-verbose-switches'." | |
1956 (interactive (let ((pfx current-prefix-arg)) | |
1957 (list (read-file-name (if pfx "List directory (verbose): " | |
1958 "List directory (brief): ") | |
1959 nil default-directory nil) | |
1960 pfx))) | |
1961 (let ((switches (if verbose list-directory-verbose-switches | |
1962 list-directory-brief-switches))) | |
1963 (or dirname (setq dirname default-directory)) | |
1964 (setq dirname (expand-file-name dirname)) | |
1965 (with-output-to-temp-buffer "*Directory*" | |
1966 (buffer-disable-undo standard-output) | |
1967 (princ "Directory ") | |
1968 (princ dirname) | |
1969 (terpri) | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1970 (save-excursion |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1971 (set-buffer "*Directory*") |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1972 (let ((wildcard (not (file-directory-p dirname)))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1973 (insert-directory dirname switches wildcard (not wildcard))))))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1974 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1975 (defvar insert-directory-program "ls" |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1976 "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
|
1977 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1978 ;; insert-directory |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1979 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1980 ;; FULL-DIRECTORY-P is nil. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1981 ;; 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
|
1982 ;; given, namely, an absolute path name. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1983 ;; - 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
|
1984 ;; FULL-DIRECTORY-P is t, plus one optional "total" line |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1985 ;; 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
|
1986 ;; 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
|
1987 ;; allowed. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1988 ;; File lines should display the basename. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1989 ;; - must be consistent with |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1990 ;; - 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
|
1991 ;; dired-move-to-end-of-filename, |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1992 ;; dired-between-files, (shortcut for (not (dired-move-to-filename))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1993 ;; dired-insert-headerline |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1994 ;; dired-after-subdir-garbage (defines what a "total" line is) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1995 ;; - variable dired-subdir-regexp |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1996 (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
|
1997 "Insert directory listing for FILE, formatted according to SWITCHES. |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1998 Leaves point after the inserted text. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1999 Optional third arg WILDCARD means treat FILE as shell wildcard. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2000 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
|
2001 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
|
2002 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2003 This works by running a directory listing program |
1892
c4ff65277bb3
(insert-directory): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1879
diff
changeset
|
2004 whose name is in the variable `insert-directory-program'. |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2005 If WILDCARD, it also runs the shell specified by `shell-file-name'." |
7030
9e51b51e8595
Pass operation to find-file-name-handler.
Karl Heuer <kwzh@gnu.org>
parents:
6899
diff
changeset
|
2006 (let ((handler (find-file-name-handler file 'insert-directory))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2007 (if handler |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2008 (funcall handler 'insert-directory file switches |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2009 wildcard full-directory-p) |
337 | 2010 (if (eq system-type 'vax-vms) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2011 (vms-read-directory file switches (current-buffer)) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2012 (if wildcard |
4283
f705c18c410d
(insert-directory): Make sure default-directory is absolute.
Richard M. Stallman <rms@gnu.org>
parents:
4216
diff
changeset
|
2013 ;; 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
|
2014 (let ((default-directory |
f705c18c410d
(insert-directory): Make sure default-directory is absolute.
Richard M. Stallman <rms@gnu.org>
parents:
4216
diff
changeset
|
2015 (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
|
2016 (file-name-directory file) |
6454
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2017 (file-name-directory (expand-file-name file)))) |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2018 (pattern (file-name-nondirectory file)) |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2019 (beg 0)) |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2020 ;; 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
|
2021 ;; 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
|
2022 ;; 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
|
2023 ;; 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
|
2024 ;; wildcard characters. |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2025 (while (string-match "[ \t\n;<>&|{}()#$]" pattern beg) |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2026 (setq pattern |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2027 (concat (substring pattern 0 (match-beginning 0)) |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2028 "\\" |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2029 (substring pattern (match-beginning 0))) |
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2030 beg (1+ (match-end 0)))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2031 (call-process shell-file-name nil t nil |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2032 "-c" (concat insert-directory-program |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
2033 " -d " switches " " |
6454
f5abd5d777eb
(insert-directory): Quote special shell chars,
Richard M. Stallman <rms@gnu.org>
parents:
6322
diff
changeset
|
2034 pattern))) |
4148
6b065ebb9090
* files.el (insert-directory): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
4032
diff
changeset
|
2035 ;; 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
|
2036 ;; directory if FILE is a symbolic link. |
6b065ebb9090
* files.el (insert-directory): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
4032
diff
changeset
|
2037 (call-process insert-directory-program nil t nil switches |
6b065ebb9090
* files.el (insert-directory): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
4032
diff
changeset
|
2038 (if full-directory-p |
6b065ebb9090
* files.el (insert-directory): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
4032
diff
changeset
|
2039 (concat (file-name-as-directory file) ".") |
6b065ebb9090
* files.el (insert-directory): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
4032
diff
changeset
|
2040 file))))))) |
337 | 2041 |
6050
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2042 (defvar kill-emacs-query-functions nil |
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2043 "Functions to call with no arguments to query about killing Emacs.") |
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2044 |
337 | 2045 (defun save-buffers-kill-emacs (&optional arg) |
2046 "Offer to save each buffer, then kill this Emacs process. | |
2047 With prefix arg, silently save all file-visiting buffers, then kill." | |
2048 (interactive "P") | |
2049 (save-some-buffers arg t) | |
2050 (and (or (not (memq t (mapcar (function | |
2051 (lambda (buf) (and (buffer-file-name buf) | |
2052 (buffer-modified-p buf)))) | |
2053 (buffer-list)))) | |
2054 (yes-or-no-p "Modified buffers exist; exit anyway? ")) | |
2055 (or (not (fboundp 'process-list)) | |
2056 ;; process-list is not defined on VMS. | |
2057 (let ((processes (process-list)) | |
2058 active) | |
2059 (while processes | |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
736
diff
changeset
|
2060 (and (memq (process-status (car processes)) '(run stop open)) |
337 | 2061 (let ((val (process-kill-without-query (car processes)))) |
2062 (process-kill-without-query (car processes) val) | |
2063 val) | |
2064 (setq active t)) | |
2065 (setq processes (cdr processes))) | |
2066 (or (not active) | |
2067 (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
|
2068 ;; Query the user for other things, perhaps. |
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2069 (let ((functions kill-emacs-query-functions) |
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2070 (yes t)) |
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2071 (while (and functions yes) |
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2072 (setq yes (and yes (funcall (car functions)))) |
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2073 (setq functions (cdr functions))) |
afc731c614d3
(kill-emacs-query-functions): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
5974
diff
changeset
|
2074 yes) |
337 | 2075 (kill-emacs))) |
2076 | |
2077 (define-key ctl-x-map "\C-f" 'find-file) | |
2078 (define-key ctl-x-map "\C-q" 'toggle-read-only) | |
2079 (define-key ctl-x-map "\C-r" 'find-file-read-only) | |
2080 (define-key ctl-x-map "\C-v" 'find-alternate-file) | |
2081 (define-key ctl-x-map "\C-s" 'save-buffer) | |
2082 (define-key ctl-x-map "s" 'save-some-buffers) | |
2083 (define-key ctl-x-map "\C-w" 'write-file) | |
2084 (define-key ctl-x-map "i" 'insert-file) | |
2085 (define-key esc-map "~" 'not-modified) | |
2086 (define-key ctl-x-map "\C-d" 'list-directory) | |
2087 (define-key ctl-x-map "\C-c" 'save-buffers-kill-emacs) | |
2088 | |
2089 (define-key ctl-x-4-map "f" 'find-file-other-window) | |
2090 (define-key ctl-x-4-map "r" 'find-file-read-only-other-window) | |
2091 (define-key ctl-x-4-map "\C-f" 'find-file-other-window) | |
2092 (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
|
2093 (define-key ctl-x-4-map "\C-o" 'display-buffer) |
423 | 2094 |
778 | 2095 (define-key ctl-x-5-map "b" 'switch-to-buffer-other-frame) |
2096 (define-key ctl-x-5-map "f" 'find-file-other-frame) | |
2097 (define-key ctl-x-5-map "\C-f" 'find-file-other-frame) | |
2098 (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
|
2099 |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
2100 ;;; files.el ends here |