Mercurial > emacs
annotate lisp/files.el @ 4717:5297e155e1d2
(Funexpand_abbrev, Fexpand_abbrev): Pass new arg to insert_from_string.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 14 Sep 1993 12:10:27 +0000 |
parents | f57fe6dbf4a0 |
children | 97c1e7309a2d |
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 |
2552
ce9a2a209b97
(set-auto-mode): If the buffer begins with "#!", look for -*- in the first
Roland McGrath <roland@gnu.org>
parents:
2521
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1987, 1992, 1993 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 | |
42 Use this feature when you have directories which you normally refer to | |
43 via absolute symbolic links. Make TO the name of the link, and FROM | |
44 the name it is linked to.") | |
45 | |
46 ;;; Turn off backup files on VMS since it has version numbers. | |
47 (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
|
48 "*Non-nil means make a backup of a file the first time it is saved. |
337 | 49 This can be done by renaming the file or by copying. |
50 | |
51 Renaming means that Emacs renames the existing file so that it is a | |
52 backup file, then writes the buffer into a new file. Any other names | |
53 that the old file had will now refer to the backup file. The new file | |
54 is owned by you and its group is defaulted. | |
55 | |
56 Copying means that Emacs copies the existing file into the backup | |
57 file, then writes the buffer on top of the existing file. Any other | |
58 names that the old file had will now refer to the new (edited) file. | |
59 The file's owner and group are unchanged. | |
60 | |
61 The choice of renaming or copying is controlled by the variables | |
62 `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
|
63 `backup-by-copying-when-mismatch'. See also `backup-inhibited'.") |
337 | 64 |
65 ;; Do this so that local variables based on the file name | |
66 ;; are not overridden by the major mode. | |
67 (defvar backup-inhibited nil | |
4597
7ae2e83e40ea
(backup-inhibited): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
4466
diff
changeset
|
68 "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
|
69 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
|
70 But it is local only if you make it local.") |
337 | 71 (put 'backup-inhibited 'permanent-local t) |
72 | |
73 (defconst backup-by-copying nil | |
74 "*Non-nil means always use copying to create backup files. | |
75 See documentation of variable `make-backup-files'.") | |
76 | |
77 (defconst backup-by-copying-when-linked nil | |
78 "*Non-nil means use copying to create backups for files with multiple names. | |
79 This causes the alternate names to refer to the latest version as edited. | |
80 This variable is relevant only if `backup-by-copying' is nil.") | |
81 | |
82 (defconst backup-by-copying-when-mismatch nil | |
83 "*Non-nil means create backups by copying if this preserves owner or group. | |
84 Renaming may still be used (subject to control of other variables) | |
85 when it would not result in changing the owner or group of the file; | |
86 that is, for files which are owned by you and whose group matches | |
87 the default for a new file created there by you. | |
88 This variable is relevant only if `backup-by-copying' is nil.") | |
89 | |
90 (defvar backup-enable-predicate | |
91 '(lambda (name) | |
92 (or (< (length name) 5) | |
93 (not (string-equal "/tmp/" (substring name 0 5))))) | |
94 "Predicate that looks at a file name and decides whether to make backups. | |
95 Called with an absolute file name as argument, it returns t to enable backup.") | |
96 | |
97 (defconst buffer-offer-save nil | |
98 "*Non-nil in a buffer means offer to save the buffer on exit | |
99 even if the buffer is not visiting a file. | |
100 Automatically local in all buffers.") | |
101 (make-variable-buffer-local 'buffer-offer-save) | |
102 | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
103 (defconst find-file-existing-other-name nil |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
104 "*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
|
105 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
|
106 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
|
107 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
108 (defconst find-file-visit-truename nil |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
109 "*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
|
110 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
|
111 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
|
112 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
113 (defvar buffer-file-truename nil |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
114 "The truename of the file visited in the current buffer. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
115 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
|
116 (make-variable-buffer-local 'buffer-file-truename) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
117 (put 'buffer-file-truename 'permanent-local t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
118 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
119 (defvar buffer-file-number nil |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
120 "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
|
121 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
|
122 This pair of numbers uniquely identifies the file. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
123 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
|
124 (make-variable-buffer-local 'buffer-file-number) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
125 (put 'buffer-file-number 'permanent-local t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
126 |
337 | 127 (defconst file-precious-flag nil |
128 "*Non-nil means protect against I/O errors while saving files. | |
129 Some modes set this non-nil in particular buffers.") | |
130 | |
131 (defvar version-control nil | |
132 "*Control use of version numbers for backup files. | |
133 t means make numeric backup versions unconditionally. | |
134 nil means make them for files that have some already. | |
135 never means do not make them.") | |
136 | |
137 (defvar dired-kept-versions 2 | |
138 "*When cleaning directory, number of versions to keep.") | |
139 | |
140 (defvar trim-versions-without-asking nil | |
844
bf829a2d63b4
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
819
diff
changeset
|
141 "*If t, deletes excess backup versions silently. |
bf829a2d63b4
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
819
diff
changeset
|
142 If nil, asks confirmation. Any other value prevents any trimming.") |
337 | 143 |
144 (defvar kept-old-versions 2 | |
145 "*Number of oldest versions to keep when a new numbered backup is made.") | |
146 | |
147 (defvar kept-new-versions 2 | |
148 "*Number of newest versions to keep when a new numbered backup is made. | |
149 Includes the new backup. Must be > 0") | |
150 | |
151 (defconst require-final-newline nil | |
152 "*Value of t says silently ensure a file ends in a newline when it is saved. | |
153 Non-nil but not t says ask user whether to add a newline when there isn't one. | |
154 nil means don't add newlines.") | |
155 | |
156 (defconst auto-save-default t | |
157 "*Non-nil says by default do auto-saving of every file-visiting buffer.") | |
158 | |
159 (defconst auto-save-visited-file-name nil | |
160 "*Non-nil says auto-save a buffer in the file it is visiting, when practical. | |
161 Normally auto-save files are written under other names.") | |
162 | |
163 (defconst save-abbrevs nil | |
164 "*Non-nil means save word abbrevs too when files are saved. | |
165 Loading an abbrev file sets this to t.") | |
166 | |
167 (defconst find-file-run-dired t | |
3280
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
168 "*Non-nil says run dired if `find-file' is given the name of a directory.") |
337 | 169 |
1879
c9b4ece292cc
(find-file-hooks): Delete permanent-local property.
Richard M. Stallman <rms@gnu.org>
parents:
1799
diff
changeset
|
170 ;;;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
|
171 ;;;(put 'find-file-not-found-hooks 'permanent-local t) |
337 | 172 (defvar find-file-not-found-hooks nil |
173 "List of functions to be called for `find-file' on nonexistent file. | |
174 These functions are called as soon as the error is detected. | |
175 `buffer-file-name' is already set up. | |
176 The functions are called in the order given until one of them returns non-nil.") | |
177 | |
1879
c9b4ece292cc
(find-file-hooks): Delete permanent-local property.
Richard M. Stallman <rms@gnu.org>
parents:
1799
diff
changeset
|
178 ;;;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
|
179 ;;;(put 'find-file-hooks 'permanent-local t) |
337 | 180 (defvar find-file-hooks nil |
181 "List of functions to be called after a buffer is loaded from a file. | |
182 The buffer's local variables (if any) will have been processed before the | |
183 functions are called.") | |
184 | |
2375
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
185 ;;; In case someone does make it local. |
337 | 186 (put 'write-file-hooks 'permanent-local t) |
187 (defvar write-file-hooks nil | |
188 "List of functions to be called before writing out a buffer to a file. | |
189 If one of them returns non-nil, the file is considered already written | |
605 | 190 and the rest are not called. |
191 These hooks are considered to pertain to the visited file. | |
192 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
|
193 See also `write-contents-hooks'. |
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
194 Don't make this variable buffer-local; instead, use `local-write-file-hooks'.") |
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
195 |
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
196 (put 'local-write-file-hooks 'permanent-local t) |
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
197 (defvar local-write-file-hooks nil |
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
198 "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
|
199 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
|
200 `write-file-hooks'.") |
605 | 201 |
202 (defvar write-contents-hooks nil | |
203 "List of functions to be called before writing out a buffer to a file. | |
204 If one of them returns non-nil, the file is considered already written | |
205 and the rest are not called. | |
206 These hooks are considered to pertain to the buffer's contents, | |
207 not to the particular visited file; thus, `set-visited-file-name' does | |
208 not clear this variable, but changing the major mode does clear it. | |
209 See also `write-file-hooks'.") | |
337 | 210 |
211 (defconst enable-local-variables t | |
212 "*Control use of local-variables lists in files you visit. | |
213 The value can be t, nil or something else. | |
214 A value of t means local-variables lists are obeyed; | |
215 nil means they are ignored; anything else means query. | |
216 | |
217 The command \\[normal-mode] always obeys local-variables lists | |
218 and ignores this variable.") | |
219 | |
1066
9b788095582b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
941
diff
changeset
|
220 (defconst enable-local-eval 'maybe |
722
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
221 "*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
|
222 The value can be t, nil or something else. |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
223 A value of t means obey `eval' variables; |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
224 nil means ignore them; anything else means query. |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
225 |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
226 The command \\[normal-mode] always obeys local-variables lists |
0a2391511b46
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
705
diff
changeset
|
227 and ignores this variable.") |
337 | 228 |
229 ;; Avoid losing in versions where CLASH_DETECTION is disabled. | |
230 (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
|
231 (defalias 'lock-buffer 'ignore)) |
337 | 232 (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
|
233 (defalias 'unlock-buffer 'ignore)) |
4186
45fc16fdf07e
(ange-ftp-completion-hook-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4148
diff
changeset
|
234 |
45fc16fdf07e
(ange-ftp-completion-hook-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4148
diff
changeset
|
235 ;; 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
|
236 ;; 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
|
237 ;; 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
|
238 ;; 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
|
239 (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
|
240 (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
|
241 (apply 'ange-ftp-hook-function op args) |
45fc16fdf07e
(ange-ftp-completion-hook-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4148
diff
changeset
|
242 (let (file-name-handler-alist) |
45fc16fdf07e
(ange-ftp-completion-hook-function): New function.
Richard M. Stallman <rms@gnu.org>
parents:
4148
diff
changeset
|
243 (apply op args)))) |
337 | 244 |
245 (defun pwd () | |
246 "Show the current default directory." | |
247 (interactive nil) | |
248 (message "Directory %s" default-directory)) | |
249 | |
2575
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
250 (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
|
251 "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
|
252 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
|
253 |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
254 (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
|
255 "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
|
256 (and cd-path |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
257 (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
|
258 (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
|
259 (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
|
260 (setq cd-list |
3038
4bdac10d920a
(cd): Set cd-path to a list.
Richard M. Stallman <rms@gnu.org>
parents:
2896
diff
changeset
|
261 (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
|
262 (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
|
263 nil |
6f940dcec978
(parse-colon-path): Really make nil, not ".", for empty path element.
Richard M. Stallman <rms@gnu.org>
parents:
4196
diff
changeset
|
264 (substitute-in-file-name |
4196
20f7ea2f83ef
(parse-colon-path): Turn empty substring into nil.
Richard M. Stallman <rms@gnu.org>
parents:
4186
diff
changeset
|
265 (file-name-as-directory |
20f7ea2f83ef
(parse-colon-path): Turn empty substring into nil.
Richard M. Stallman <rms@gnu.org>
parents:
4186
diff
changeset
|
266 (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
|
267 (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
|
268 cd-list))) |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
269 |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
270 (defun cd-absolute (dir) |
3652
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
271 "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
|
272 (setq dir (abbreviate-file-name (expand-file-name dir))) |
337 | 273 (if (not (eq system-type 'vax-vms)) |
274 (setq dir (file-name-as-directory dir))) | |
275 (if (not (file-directory-p dir)) | |
276 (error "%s is not a directory" dir) | |
277 (if (file-executable-p dir) | |
278 (setq default-directory dir) | |
3038
4bdac10d920a
(cd): Set cd-path to a list.
Richard M. Stallman <rms@gnu.org>
parents:
2896
diff
changeset
|
279 (error "Cannot cd to %s: Permission denied" dir)))) |
337 | 280 |
2575
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
281 (defun cd (dir) |
1c5dca7628cb
(cd): Changed to use to resolve relative cd calls.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2553
diff
changeset
|
282 "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
|
283 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
|
284 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
|
285 (interactive "FChange default directory: ") |
3652
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
286 (if (file-name-absolute-p dir) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
287 (cd-absolute (expand-file-name dir)) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
288 (if (null cd-path) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
289 (let ((trypath (parse-colon-path (getenv "CDPATH")))) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
290 (setq cd-path (or trypath (list "./"))))) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
291 (if (not (catch 'found |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
292 (mapcar |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
293 (function (lambda (x) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
294 (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
|
295 (if (file-directory-p f) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
296 (progn |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
297 (cd-absolute f) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
298 (throw 'found t)))))) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
299 cd-path) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
300 nil)) |
31e55359fcdb
(cd): Use file-name-absolute-p.
Richard M. Stallman <rms@gnu.org>
parents:
3634
diff
changeset
|
301 (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
|
302 |
337 | 303 (defun load-file (file) |
304 "Load the Lisp file named FILE." | |
305 (interactive "fLoad file: ") | |
306 (load (expand-file-name file) nil nil t)) | |
307 | |
308 (defun load-library (library) | |
309 "Load the library named LIBRARY. | |
310 This is an interface to the function `load'." | |
311 (interactive "sLoad library: ") | |
312 (load library)) | |
1134
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
313 |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
314 ;; OTHER is the other file to be compared. |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
315 (defun file-local-copy (file) |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
316 "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
|
317 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
|
318 accessible." |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1537
diff
changeset
|
319 (let ((handler (find-file-name-handler file))) |
1134
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
320 (if handler |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
321 (funcall handler 'file-local-copy file) |
05c961416bb5
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1109
diff
changeset
|
322 nil))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
323 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
324 (defun file-truename (filename) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
325 "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
|
326 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
|
327 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
|
328 containing it, until no links are left at any level." |
1406
62dae4a3c7fb
* files.el (file-truename): The variable ~ should be considered an
Jim Blandy <jimb@redhat.com>
parents:
1395
diff
changeset
|
329 (if (string= filename "~") |
2613
709f672f450e
(find-file-noselect): Do set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2600
diff
changeset
|
330 (progn |
709f672f450e
(find-file-noselect): Do set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2600
diff
changeset
|
331 (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
|
332 (if (string= filename "") |
709f672f450e
(find-file-noselect): Do set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2600
diff
changeset
|
333 (setq filename "/")))) |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1537
diff
changeset
|
334 (let ((handler (find-file-name-handler filename))) |
1453
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
335 ;; 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
|
336 ;; 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
|
337 (if handler |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
338 (funcall handler 'file-truename filename) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
339 (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
|
340 target dirfile) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
341 ;; 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
|
342 (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
|
343 ;; 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
|
344 (or (string= dir dirfile) |
fb2d16111e4b
(file-truename): Check for root by seeing if
Richard M. Stallman <rms@gnu.org>
parents:
1406
diff
changeset
|
345 (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
|
346 (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
|
347 (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
|
348 (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
|
349 (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
|
350 ;; 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
|
351 (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
|
352 ;; 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
|
353 (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
|
354 (if target |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
355 ;; 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
|
356 ;; 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
|
357 ;; 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
|
358 ;; 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
|
359 ;; 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
|
360 (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
|
361 (file-truename target) |
7b357cbaae8b
(file-truename): Don't use expand-file-name to merge
Richard M. Stallman <rms@gnu.org>
parents:
3652
diff
changeset
|
362 (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
|
363 ;; 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
|
364 filename))))))) |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1537
diff
changeset
|
365 |
3260
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
366 (defun file-chase-links (filename) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
367 "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
|
368 Does not examine containing directories for links, |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
369 unlike `file-truename'." |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
370 (let (tem (count 100) (newname filename)) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
371 (while (setq tem (file-symlink-p newname)) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
372 (if (= count 0) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
373 (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
|
374 ;; 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
|
375 ;; target of any directory symlink. |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
376 ;; 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
|
377 ;; 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
|
378 (while (string-match "\\.\\./" tem) |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
379 (setq tem (substring tem 3)) |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
380 (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
|
381 ;; Do the .. by hand. |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
382 (directory-file-name |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
383 (file-name-directory |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
384 ;; 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
|
385 (file-chase-links |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
386 (directory-file-name |
82b564084ce6
(file-chase-links): Handle leading .. in symlink target.
Richard M. Stallman <rms@gnu.org>
parents:
3260
diff
changeset
|
387 (file-name-directory newname)))))))) |
3260
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
388 (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
|
389 (setq count (1- count))) |
eecf2c0ca9b9
(file-chase-links): New function.
Richard M. Stallman <rms@gnu.org>
parents:
3240
diff
changeset
|
390 newname)) |
337 | 391 |
392 (defun switch-to-buffer-other-window (buffer) | |
393 "Select buffer BUFFER in another window." | |
394 (interactive "BSwitch to buffer in other window: ") | |
395 (let ((pop-up-windows t)) | |
396 (pop-to-buffer buffer t))) | |
397 | |
778 | 398 (defun switch-to-buffer-other-frame (buffer) |
399 "Switch to buffer BUFFER in another frame." | |
400 (interactive "BSwitch to buffer in other frame: ") | |
401 (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
|
402 (pop-to-buffer buffer t))) |
423 | 403 |
337 | 404 (defun find-file (filename) |
405 "Edit file FILENAME. | |
406 Switch to a buffer visiting file FILENAME, | |
407 creating one if none already exists." | |
408 (interactive "FFind file: ") | |
409 (switch-to-buffer (find-file-noselect filename))) | |
410 | |
411 (defun find-file-other-window (filename) | |
412 "Edit file FILENAME, in another window. | |
413 May create a new window, or reuse an existing one. | |
414 See the function `display-buffer'." | |
415 (interactive "FFind file in other window: ") | |
416 (switch-to-buffer-other-window (find-file-noselect filename))) | |
417 | |
778 | 418 (defun find-file-other-frame (filename) |
419 "Edit file FILENAME, in another frame. | |
420 May create a new frame, or reuse an existing one. | |
423 | 421 See the function `display-buffer'." |
778 | 422 (interactive "FFind file in other frame: ") |
423 (switch-to-buffer-other-frame (find-file-noselect filename))) | |
423 | 424 |
337 | 425 (defun find-file-read-only (filename) |
426 "Edit file FILENAME but don't allow changes. | |
427 Like \\[find-file] but marks buffer as read-only. | |
428 Use \\[toggle-read-only] to permit editing." | |
429 (interactive "fFind file read-only: ") | |
430 (find-file filename) | |
3280
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
431 (setq buffer-read-only t) |
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
432 (current-buffer)) |
337 | 433 |
434 (defun find-file-read-only-other-window (filename) | |
435 "Edit file FILENAME in another window but don't allow changes. | |
436 Like \\[find-file-other-window] but marks buffer as read-only. | |
437 Use \\[toggle-read-only] to permit editing." | |
438 (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
|
439 (find-file-other-window filename) |
3280
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
440 (setq buffer-read-only t) |
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
441 (current-buffer)) |
337 | 442 |
778 | 443 (defun find-file-read-only-other-frame (filename) |
444 "Edit file FILENAME in another frame but don't allow changes. | |
445 Like \\[find-file-other-frame] but marks buffer as read-only. | |
423 | 446 Use \\[toggle-read-only] to permit editing." |
778 | 447 (interactive "fFind file read-only other frame: ") |
448 (find-file-other-frame filename) | |
3280
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
449 (setq buffer-read-only t) |
3b3717164db0
(find-file-run-dired): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
3263
diff
changeset
|
450 (current-buffer)) |
423 | 451 |
337 | 452 (defun find-alternate-file (filename) |
453 "Find file FILENAME, select its buffer, kill previous buffer. | |
454 If the current buffer now contains an empty file that you just visited | |
455 \(presumably by mistake), use this command to visit the file you really want." | |
456 (interactive | |
457 (let ((file buffer-file-name) | |
458 (file-name nil) | |
459 (file-dir nil)) | |
460 (and file | |
461 (setq file-name (file-name-nondirectory file) | |
462 file-dir (file-name-directory file))) | |
941 | 463 (list (read-file-name |
464 "Find alternate file: " file-dir nil nil file-name)))) | |
337 | 465 (and (buffer-modified-p) |
466 ;; (not buffer-read-only) | |
467 (not (yes-or-no-p (format "Buffer %s is modified; kill anyway? " | |
468 (buffer-name)))) | |
469 (error "Aborted")) | |
470 (let ((obuf (current-buffer)) | |
471 (ofile buffer-file-name) | |
3191
d96fd9315996
(find-alternate-file): Hide truename and inode number
Richard M. Stallman <rms@gnu.org>
parents:
3151
diff
changeset
|
472 (onum buffer-file-number) |
d96fd9315996
(find-alternate-file): Hide truename and inode number
Richard M. Stallman <rms@gnu.org>
parents:
3151
diff
changeset
|
473 (otrue buffer-file-truename) |
337 | 474 (oname (buffer-name))) |
475 (rename-buffer " **lose**") | |
476 (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
|
477 (setq buffer-file-number nil) |
d96fd9315996
(find-alternate-file): Hide truename and inode number
Richard M. Stallman <rms@gnu.org>
parents:
3151
diff
changeset
|
478 (setq buffer-file-truename nil) |
337 | 479 (unwind-protect |
480 (progn | |
481 (unlock-buffer) | |
482 (find-file filename)) | |
483 (cond ((eq obuf (current-buffer)) | |
484 (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
|
485 (setq buffer-file-number onum) |
d96fd9315996
(find-alternate-file): Hide truename and inode number
Richard M. Stallman <rms@gnu.org>
parents:
3151
diff
changeset
|
486 (setq buffer-file-truename otrue) |
337 | 487 (lock-buffer) |
488 (rename-buffer oname)))) | |
489 (or (eq (current-buffer) obuf) | |
490 (kill-buffer obuf)))) | |
491 | |
492 (defun create-file-buffer (filename) | |
493 "Create a suitably named buffer for visiting FILENAME, and return it. | |
494 FILENAME (sans directory) is used unchanged if that name is free; | |
495 otherwise a string <2> or <3> or ... is appended to get an unused name." | |
496 (let ((lastname (file-name-nondirectory filename))) | |
497 (if (string= lastname "") | |
498 (setq lastname filename)) | |
499 (generate-new-buffer lastname))) | |
500 | |
423 | 501 (defun generate-new-buffer (name) |
502 "Create and return a buffer with a name based on NAME. | |
1461 | 503 Choose the buffer's name using `generate-new-buffer-name'." |
423 | 504 (get-buffer-create (generate-new-buffer-name name))) |
505 | |
817 | 506 (defconst automount-dir-prefix "^/tmp_mnt/" |
507 "Regexp to match the automounter prefix in a directory name.") | |
508 | |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
509 (defvar abbreviated-home-dir nil |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
510 "The the user's homedir abbreviated according to `directory-abbrev-list'.") |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
511 |
423 | 512 (defun abbreviate-file-name (filename) |
1461 | 513 "Return a version of FILENAME shortened using `directory-abbrev-alist'. |
423 | 514 This also substitutes \"~\" for the user's home directory. |
1461 | 515 Type \\[describe-variable] directory-abbrev-alist RET for more information." |
817 | 516 ;; Get rid of the prefixes added by the automounter. |
517 (if (and (string-match automount-dir-prefix filename) | |
518 (file-exists-p (file-name-directory | |
519 (substring filename (1- (match-end 0)))))) | |
520 (setq filename (substring filename (1- (match-end 0))))) | |
423 | 521 (let ((tail directory-abbrev-alist)) |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
522 ;; 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
|
523 ;; abbreviate accordingly. |
423 | 524 (while tail |
525 (if (string-match (car (car tail)) filename) | |
526 (setq filename | |
527 (concat (cdr (car tail)) (substring filename (match-end 0))))) | |
528 (setq tail (cdr tail))) | |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
529 ;; Compute and save the abbreviated homedir name. |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
530 ;; 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
|
531 ;; 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
|
532 ;; 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
|
533 ;; 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
|
534 (or abbreviated-home-dir |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
535 (setq abbreviated-home-dir |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
536 (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
|
537 (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
|
538 "\\(/\\|$\\)")))) |
09e961c82be8
(abbreviate-file-name): Match home dir with no / if nothing else follows.
Richard M. Stallman <rms@gnu.org>
parents:
3672
diff
changeset
|
539 |
1725
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
540 ;; If FILENAME starts with the abbreviated homedir, |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
541 ;; make it start with `~' instead. |
ac890f97e78b
(abbreviated-home-dir): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1672
diff
changeset
|
542 (if (string-match abbreviated-home-dir filename) |
423 | 543 (setq filename |
2630
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
544 (concat "~" |
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
545 ;; 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
|
546 ;; 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
|
547 ;; 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
|
548 ;; 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
|
549 ;; 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
|
550 ;; 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
|
551 (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
|
552 (1- (length abbreviated-home-dir)))) |
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
553 "/" |
47cf3a387530
* files.el (insert-directory): Undo change of March 23;
Jim Blandy <jimb@redhat.com>
parents:
2622
diff
changeset
|
554 "") |
3709
09e961c82be8
(abbreviate-file-name): Match home dir with no / if nothing else follows.
Richard M. Stallman <rms@gnu.org>
parents:
3672
diff
changeset
|
555 (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
|
556 (substring filename (match-end 0))))) |
423 | 557 filename)) |
558 | |
2622
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
559 (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
|
560 "*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
|
561 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
|
562 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
|
563 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
|
564 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
|
565 |
337 | 566 (defun find-file-noselect (filename &optional nowarn) |
567 "Read file FILENAME into a buffer and return the buffer. | |
568 If a buffer exists visiting FILENAME, return that one, but | |
569 verify that the file has not changed since visited or saved. | |
570 The buffer is not selected, just returned to the caller." | |
817 | 571 (setq filename |
572 (abbreviate-file-name | |
573 (expand-file-name filename))) | |
337 | 574 (if (file-directory-p filename) |
575 (if find-file-run-dired | |
576 (dired-noselect filename) | |
577 (error "%s is a directory." filename)) | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
578 (let* ((buf (get-file-buffer filename)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
579 (truename (abbreviate-file-name (file-truename filename))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
580 (number (nthcdr 10 (file-attributes truename))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
581 ;; Find any buffer for a file which has same truename. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
582 (same-truename |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
583 (or buf ; Shortcut |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
584 (let (found |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
585 (list (buffer-list))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
586 (while (and (not found) list) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
587 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
588 (set-buffer (car list)) |
2553
61e4e09e7243
(find-file-noselect): Never set SAME-TRUENAME to a buffer whose
Roland McGrath <roland@gnu.org>
parents:
2552
diff
changeset
|
589 (if (and buffer-file-name |
61e4e09e7243
(find-file-noselect): Never set SAME-TRUENAME to a buffer whose
Roland McGrath <roland@gnu.org>
parents:
2552
diff
changeset
|
590 (string= buffer-file-truename truename)) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
591 (setq found (car list)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
592 (setq list (cdr list))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
593 found))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
594 (same-number |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
595 (or buf ; Shortcut |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
596 (and number |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
597 (let (found |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
598 (list (buffer-list))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
599 (while (and (not found) list) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
600 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
601 (set-buffer (car list)) |
2521
63c5ea74bbb9
(find-file-noselect): Verify other buffers' file numbers are still valid.
Richard M. Stallman <rms@gnu.org>
parents:
2431
diff
changeset
|
602 (if (and (equal buffer-file-number number) |
63c5ea74bbb9
(find-file-noselect): Verify other buffers' file numbers are still valid.
Richard M. Stallman <rms@gnu.org>
parents:
2431
diff
changeset
|
603 ;; Verify this buffer's file number |
63c5ea74bbb9
(find-file-noselect): Verify other buffers' file numbers are still valid.
Richard M. Stallman <rms@gnu.org>
parents:
2431
diff
changeset
|
604 ;; still belongs to its file. |
63c5ea74bbb9
(find-file-noselect): Verify other buffers' file numbers are still valid.
Richard M. Stallman <rms@gnu.org>
parents:
2431
diff
changeset
|
605 (file-exists-p buffer-file-name) |
63c5ea74bbb9
(find-file-noselect): Verify other buffers' file numbers are still valid.
Richard M. Stallman <rms@gnu.org>
parents:
2431
diff
changeset
|
606 (equal (nthcdr 10 (file-attributes buffer-file-name)) number)) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
607 (setq found (car list)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
608 (setq list (cdr list))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
609 found)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
610 error) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
611 ;; Let user know if there is a buffer with the same truename. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
612 (if (and (not buf) same-truename (not nowarn)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
613 (message "%s and %s are the same file (%s)" |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
614 filename (buffer-file-name same-truename) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
615 truename) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
616 (if (and (not buf) same-number (not nowarn)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
617 (message "%s and %s are the same file" |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
618 filename (buffer-file-name same-number)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
619 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
620 ;; Optionally also find that buffer. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
621 (if (or find-file-existing-other-name find-file-visit-truename) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
622 (setq buf (or same-truename same-number))) |
337 | 623 (if buf |
624 (or nowarn | |
625 (verify-visited-file-modtime buf) | |
626 (cond ((not (file-exists-p filename)) | |
627 (error "File %s no longer exists!" filename)) | |
628 ((yes-or-no-p | |
629 (format | |
630 (if (buffer-modified-p buf) | |
631 "File %s changed on disk. Discard your edits? " | |
632 "File %s changed on disk. Read the new version? ") | |
633 (file-name-nondirectory filename))) | |
634 (save-excursion | |
635 (set-buffer buf) | |
636 (revert-buffer t t))))) | |
637 (save-excursion | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
638 ;;; The truename stuff makes this obsolete. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
639 ;;; (let* ((link-name (car (file-attributes filename))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
640 ;;; (linked-buf (and (stringp link-name) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
641 ;;; (get-file-buffer link-name)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
642 ;;; (if (bufferp linked-buf) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
643 ;;; (message "Symbolic link to file in buffer %s" |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
644 ;;; (buffer-name linked-buf)))) |
337 | 645 (setq buf (create-file-buffer filename)) |
646 (set-buffer buf) | |
647 (erase-buffer) | |
648 (condition-case () | |
649 (insert-file-contents filename t) | |
650 (file-error | |
651 (setq error t) | |
652 ;; Run find-file-not-found-hooks until one returns non-nil. | |
653 (let ((hooks find-file-not-found-hooks)) | |
654 (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
|
655 (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
|
656 ;; 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
|
657 (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
|
658 ;; 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
|
659 t)))) |
337 | 660 (setq hooks (cdr hooks)))))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
661 ;; Find the file's truename, and maybe use that as visited name. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
662 (setq buffer-file-truename (abbreviate-file-name truename)) |
2622
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
663 (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
|
664 ;; 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
|
665 ;; 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
|
666 (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
|
667 (let (logical) |
15cb6ba42da3
(find-file-noselect): On VMS, maybe set buffer-file-name
Richard M. Stallman <rms@gnu.org>
parents:
2613
diff
changeset
|
668 (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
|
669 (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
|
670 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
|
671 (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
|
672 (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
|
673 (if find-file-visit-truename |
3151
923f5564a2a1
(find-file-noselect): Expand buffer-file-truename
Richard M. Stallman <rms@gnu.org>
parents:
3122
diff
changeset
|
674 (setq buffer-file-name |
923f5564a2a1
(find-file-noselect): Expand buffer-file-truename
Richard M. Stallman <rms@gnu.org>
parents:
3122
diff
changeset
|
675 (setq filename |
923f5564a2a1
(find-file-noselect): Expand buffer-file-truename
Richard M. Stallman <rms@gnu.org>
parents:
3122
diff
changeset
|
676 (expand-file-name buffer-file-truename)))) |
337 | 677 ;; Set buffer's default directory to that of the file. |
678 (setq default-directory (file-name-directory filename)) | |
679 ;; Turn off backup files for certain file names. Since | |
680 ;; this is a permanent local, the major mode won't eliminate it. | |
681 (and (not (funcall backup-enable-predicate buffer-file-name)) | |
682 (progn | |
683 (make-local-variable 'backup-inhibited) | |
684 (setq backup-inhibited t))) | |
685 (after-find-file error (not nowarn)))) | |
686 buf))) | |
687 | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
688 (defun after-find-file (&optional error warn noauto) |
337 | 689 "Called after finding a file and by the default revert function. |
690 Sets buffer mode, parses local variables. | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
691 Optional args ERROR, WARN, and NOAUTO: ERROR non-nil means there was an |
337 | 692 error in reading the file. WARN non-nil means warn if there |
693 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
|
694 NOAUTO means don't mess with auto-save mode. |
337 | 695 Finishes by calling the functions in `find-file-hooks'." |
696 (setq buffer-read-only (not (file-writable-p buffer-file-name))) | |
697 (if noninteractive | |
698 nil | |
699 (let* (not-serious | |
700 (msg | |
701 (cond ((and error (file-attributes buffer-file-name)) | |
702 (setq buffer-read-only t) | |
4466
9d62b3cb7dd6
(after-find-file): Improve warning message about
Richard M. Stallman <rms@gnu.org>
parents:
4375
diff
changeset
|
703 "File exists, but cannot be read.") |
337 | 704 ((not buffer-read-only) |
705 (if (and warn | |
706 (file-newer-than-file-p (make-auto-save-file-name) | |
707 buffer-file-name)) | |
708 "Auto save file is newer; consider M-x recover-file" | |
709 (setq not-serious t) | |
710 (if error "(New file)" nil))) | |
711 ((not error) | |
712 (setq not-serious t) | |
713 "Note: file is write protected") | |
714 ((file-attributes (directory-file-name default-directory)) | |
715 "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
|
716 ((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
|
717 (setq buffer-read-only nil)) |
337 | 718 (t |
423 | 719 (setq buffer-read-only nil) |
1537
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
720 (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
|
721 "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
|
722 "Use C-u M-x make-dir RET RET to create directory and its parents"))))) |
337 | 723 (if msg |
724 (progn | |
725 (message msg) | |
726 (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
|
727 (if (and auto-save-default (not noauto)) |
337 | 728 (auto-save-mode t))) |
729 (normal-mode t) | |
730 (mapcar 'funcall find-file-hooks)) | |
731 | |
732 (defun normal-mode (&optional find-file) | |
733 "Choose the major mode for this buffer automatically. | |
734 Also sets up any specified local variables of the file. | |
735 Uses the visited file name, the -*- line, and the local variables spec. | |
736 | |
737 This function is called automatically from `find-file'. In that case, | |
738 we may set up specified local variables depending on the value of | |
739 `enable-local-variables': if it is t, we do; if it is nil, we don't; | |
740 otherwise, we query. `enable-local-variables' is ignored if you | |
741 run `normal-mode' explicitly." | |
742 (interactive) | |
743 (or find-file (funcall (or default-major-mode 'fundamental-mode))) | |
744 (condition-case err | |
745 (set-auto-mode) | |
746 (error (message "File mode specification error: %s" | |
747 (prin1-to-string err)))) | |
748 (condition-case err | |
566 | 749 (let ((enable-local-variables (or (not find-file) |
750 enable-local-variables))) | |
751 (hack-local-variables)) | |
337 | 752 (error (message "File local-variables error: %s" |
753 (prin1-to-string err))))) | |
754 | |
566 | 755 (defvar auto-mode-alist (mapcar 'purecopy |
756 '(("\\.text\\'" . text-mode) | |
757 ("\\.c\\'" . c-mode) | |
758 ("\\.h\\'" . c-mode) | |
759 ("\\.tex\\'" . TeX-mode) | |
760 ("\\.ltx\\'" . LaTeX-mode) | |
761 ("\\.el\\'" . emacs-lisp-mode) | |
762 ("\\.mm\\'" . nroff-mode) | |
763 ("\\.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
|
764 ("\\.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
|
765 ("\\.man\\'" . nroff-mode) |
566 | 766 ("\\.scm\\'" . scheme-mode) |
767 ("\\.l\\'" . lisp-mode) | |
768 ("\\.lisp\\'" . lisp-mode) | |
769 ("\\.f\\'" . fortran-mode) | |
770 ("\\.for\\'" . fortran-mode) | |
771 ("\\.mss\\'" . scribe-mode) | |
772 ("\\.pl\\'" . prolog-mode) | |
773 ("\\.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
|
774 ("\\.hh\\'" . c++-mode) |
566 | 775 ("\\.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
|
776 ("\\.H\\'" . c++-mode) |
2672
b69eef4cf31d
(auto-mode-alist): Delete the entries for makefile-mode.
Richard M. Stallman <rms@gnu.org>
parents:
2630
diff
changeset
|
777 ;;; ("\\.mk\\'" . makefile-mode) |
b69eef4cf31d
(auto-mode-alist): Delete the entries for makefile-mode.
Richard M. Stallman <rms@gnu.org>
parents:
2630
diff
changeset
|
778 ;;; ("[Mm]akefile" . makefile-mode) |
566 | 779 ;;; Less common extensions come here |
780 ;;; so more common ones above are found faster. | |
781 ("\\.s\\'" . asm-mode) | |
782 ("ChangeLog\\'" . change-log-mode) | |
1090
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
783 ("ChangeLog.[0-9]+\\'" . change-log-mode) |
566 | 784 ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode) |
1090
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
785 ;; The following should come after the ChangeLog pattern |
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
786 ;; for the sake of ChangeLog.1, etc. |
676310a31777
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1066
diff
changeset
|
787 ("\\.[12345678]\\'" . nroff-mode) |
566 | 788 ("\\.TeX\\'" . TeX-mode) |
789 ("\\.sty\\'" . LaTeX-mode) | |
790 ("\\.bbl\\'" . LaTeX-mode) | |
791 ("\\.bib\\'" . bibtex-mode) | |
792 ("\\.article\\'" . text-mode) | |
793 ("\\.letter\\'" . text-mode) | |
794 ("\\.texinfo\\'" . texinfo-mode) | |
819
5bbabfcef929
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
817
diff
changeset
|
795 ("\\.texi\\'" . texinfo-mode) |
566 | 796 ("\\.lsp\\'" . lisp-mode) |
797 ("\\.awk\\'" . awk-mode) | |
798 ("\\.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
|
799 ("\\.tar\\'" . tar-mode) |
566 | 800 ;; Mailer puts message to be edited in |
801 ;; /tmp/Re.... or Message | |
802 ("^/tmp/Re" . text-mode) | |
803 ("/Message[0-9]*\\'" . text-mode) | |
804 ;; some news reader is reported to use this | |
805 ("^/tmp/fol/" . text-mode) | |
806 ("\\.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
|
807 ("\\.lex\\'" . c-mode) |
566 | 808 ("\\.oak\\'" . scheme-mode) |
809 ("\\.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
|
810 ("\\.sgm\\'" . sgml-mode) |
f09230e68f20
(auto-mode-alist): Fix syntax for sgml mode.
Richard M. Stallman <rms@gnu.org>
parents:
3191
diff
changeset
|
811 ("\\.sgml\\'" . sgml-mode) |
f09230e68f20
(auto-mode-alist): Fix syntax for sgml mode.
Richard M. Stallman <rms@gnu.org>
parents:
3191
diff
changeset
|
812 ("\\.dtd\\'" . sgml-mode) |
566 | 813 ;; .emacs following a directory delimiter |
814 ;; in either Unix or VMS syntax. | |
815 ("[]>:/]\\..*emacs\\'" . emacs-lisp-mode) | |
816 ("\\.ml\\'" . lisp-mode))) | |
817 "\ | |
818 Alist of filename patterns vs corresponding major mode functions. | |
819 Each element looks like (REGEXP . FUNCTION). | |
820 Visiting a file whose name matches REGEXP causes FUNCTION to be called.") | |
821 | |
3364
3dd9b89c6a17
(inhibit-local-variables-regexps): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3280
diff
changeset
|
822 (defconst inhibit-local-variables-regexps '("\\.tar$") |
3dd9b89c6a17
(inhibit-local-variables-regexps): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3280
diff
changeset
|
823 "List of regexps; if one matches a file name, don't look for local vars.") |
3dd9b89c6a17
(inhibit-local-variables-regexps): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
3280
diff
changeset
|
824 |
337 | 825 (defun set-auto-mode () |
826 "Select major mode appropriate for current buffer. | |
566 | 827 This checks for a -*- mode tag in the buffer's text, or |
828 compares the filename against the entries in auto-mode-alist. It does | |
829 not check for the \"mode:\" local variable in the Local Variables | |
830 section of the file; for that, use `hack-local-variables'. | |
831 | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
832 If `enable-local-variables' is nil, this function does not check for a |
566 | 833 -*- mode tag." |
337 | 834 ;; 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
|
835 (let (beg end done) |
337 | 836 (save-excursion |
837 (goto-char (point-min)) | |
838 (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
|
839 (and enable-local-variables |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
840 ;; Don't look for -*- if this file name matches any |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
841 ;; of the regexps in inhibit-local-variables-regexps. |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
842 (let ((temp inhibit-local-variables-regexps)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
843 (while (and temp |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
844 (not (string-match (car temp) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
845 buffer-file-name))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
846 (setq temp (cdr temp))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
847 (not temp)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
848 (search-forward "-*-" (save-excursion |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
849 ;; If the file begins with "#!" |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
850 ;; (exec interpreter magic), look |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
851 ;; 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
|
852 ;; lines. You cannot necessarily |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
853 ;; 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
|
854 ;; 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
|
855 ;; the interpreter invocation. |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
856 (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
|
857 (point)) t) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
858 (progn |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
859 (skip-chars-forward " \t") |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
860 (setq beg (point)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
861 (search-forward "-*-" |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
862 (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
|
863 t)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
864 (progn |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
865 (forward-char -3) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
866 (skip-chars-backward " \t") |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
867 (setq end (point)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
868 (goto-char beg) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
869 (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
|
870 ;; Find all specifications for the `mode:' variable |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
871 ;; and execute hem left to right. |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
872 (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
|
873 (search-forward "mode:" end t)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
874 (skip-chars-forward " \t") |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
875 (setq beg (point)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
876 (if (search-forward ";" end t) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
877 (forward-char -1) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
878 (goto-char end)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
879 (skip-chars-backward " \t") |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
880 (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
|
881 ;; Simple -*-MODE-*- case. |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
882 (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
|
883 (setq done t))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
884 ;; 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
|
885 (if (and (not done) buffer-file-name) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
886 (let ((alist auto-mode-alist) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
887 (name buffer-file-name) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
888 mode) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
889 (let ((case-fold-search (eq system-type 'vax-vms))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
890 ;; Remove backup-suffixes from file name. |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
891 (setq name (file-name-sans-versions name)) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
892 ;; Find first matching alist entry. |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
893 (while (and (not mode) alist) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
894 (if (string-match (car (car alist)) name) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
895 (setq mode (cdr (car alist)))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
896 (setq alist (cdr alist)))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
897 (if mode (funcall mode))))))) |
337 | 898 |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
899 (defun hack-local-variables-prop-line () |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
900 ;; 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
|
901 ;; Ignore any specification for `mode:'; |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
902 ;; 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
|
903 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
904 (goto-char (point-min)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
905 (skip-chars-forward " \t\n\r") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
906 (let ((result '()) |
4699
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
907 (end (save-excursion (end-of-line) (point)))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
908 ;; Parse the -*- line into the `result' alist. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
909 (cond ((not (search-forward "-*-" end t)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
910 ;; doesn't have one. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
911 nil) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
912 ((looking-at "[ \t]*\\([^ \t\n\r:;]+\\)\\([ \t]*-\\*-\\)") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
913 ;; Simple form: "-*- MODENAME -*-". |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
914 (setq result |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
915 (list (cons 'mode |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
916 (intern (buffer-substring |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
917 (match-beginning 1) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
918 (match-end 1))))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
919 (t |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
920 ;; Hairy form: '-*-' [ <variable> ':' <value> ';' ]* '-*-' |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
921 ;; (last ";" is optional). |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
922 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
923 (if (search-forward "-*-" end t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
924 (setq end (- (point) 3)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
925 (error "-*- not terminated before end of line"))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
926 (while (< (point) end) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
927 (or (looking-at "[ \t]*\\([^ \t\n:]+\\)[ \t]*:[ \t]*") |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
928 (error "malformed -*- line")) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
929 (goto-char (match-end 0)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
930 (let ((key (intern (downcase (buffer-substring |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
931 (match-beginning 1) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
932 (match-end 1))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
933 (val (save-restriction |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
934 (narrow-to-region (point) end) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
935 (read (current-buffer))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
936 (setq result (cons (cons key val) result)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
937 (skip-chars-forward " \t;"))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
938 (setq result (nreverse result)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
939 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
940 (if (and result |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
941 (or (eq enable-local-variables t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
942 (and enable-local-variables |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
943 (save-window-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
944 (switch-to-buffer (current-buffer)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
945 (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
|
946 (file-name-nondirectory buffer-file-name))))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
947 (while result |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
948 (let ((key (car (car result))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
949 (val (cdr (car result)))) |
4699
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
950 (or (eq key 'mode) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
951 (hack-one-local-variable key val))) |
f57fe6dbf4a0
(hack-local-variables-prop-line): Ignore any specification
Richard M. Stallman <rms@gnu.org>
parents:
4645
diff
changeset
|
952 (setq result (cdr result))))))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
953 |
566 | 954 (defun hack-local-variables () |
1371 | 955 "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
|
956 (hack-local-variables-prop-line) |
337 | 957 ;; Look for "Local variables:" line in last page. |
958 (save-excursion | |
959 (goto-char (point-max)) | |
960 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move) | |
961 (if (let ((case-fold-search t)) | |
962 (and (search-forward "Local Variables:" nil t) | |
566 | 963 (or (eq enable-local-variables t) |
337 | 964 (and enable-local-variables |
965 (save-window-excursion | |
966 (switch-to-buffer (current-buffer)) | |
967 (save-excursion | |
968 (beginning-of-line) | |
969 (set-window-start (selected-window) (point))) | |
970 (y-or-n-p (format "Set local variables as specified at end of %s? " | |
971 (file-name-nondirectory buffer-file-name)))))))) | |
972 (let ((continue t) | |
1066
9b788095582b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
941
diff
changeset
|
973 prefix prefixlen suffix beg |
9b788095582b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
941
diff
changeset
|
974 (enable-local-eval enable-local-eval)) |
337 | 975 ;; The prefix is what comes before "local variables:" in its line. |
976 ;; The suffix is what comes after "local variables:" in its line. | |
977 (skip-chars-forward " \t") | |
978 (or (eolp) | |
979 (setq suffix (buffer-substring (point) | |
980 (progn (end-of-line) (point))))) | |
981 (goto-char (match-beginning 0)) | |
982 (or (bolp) | |
983 (setq prefix | |
984 (buffer-substring (point) | |
985 (progn (beginning-of-line) (point))))) | |
566 | 986 |
337 | 987 (if prefix (setq prefixlen (length prefix) |
988 prefix (regexp-quote prefix))) | |
989 (if suffix (setq suffix (concat (regexp-quote suffix) "$"))) | |
990 (while continue | |
991 ;; Look at next local variable spec. | |
992 (if selective-display (re-search-forward "[\n\C-m]") | |
993 (forward-line 1)) | |
994 ;; Skip the prefix, if any. | |
995 (if prefix | |
996 (if (looking-at prefix) | |
997 (forward-char prefixlen) | |
998 (error "Local variables entry is missing the prefix"))) | |
999 ;; Find the variable name; strip whitespace. | |
1000 (skip-chars-forward " \t") | |
1001 (setq beg (point)) | |
1002 (skip-chars-forward "^:\n") | |
1003 (if (eolp) (error "Missing colon in local variables entry")) | |
1004 (skip-chars-backward " \t") | |
1005 (let* ((str (buffer-substring beg (point))) | |
1006 (var (read str)) | |
1007 val) | |
1008 ;; Setting variable named "end" means end of list. | |
1009 (if (string-equal (downcase str) "end") | |
1010 (setq continue nil) | |
1011 ;; Otherwise read the variable value. | |
1012 (skip-chars-forward "^:") | |
1013 (forward-char 1) | |
1014 (setq val (read (current-buffer))) | |
1015 (skip-chars-backward "\n") | |
1016 (skip-chars-forward " \t") | |
1017 (or (if suffix (looking-at suffix) (eolp)) | |
1018 (error "Local variables entry is terminated incorrectly")) | |
1019 ;; 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
|
1020 (hack-one-local-variable var val)))))))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1021 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1022 (defconst ignored-local-variables |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1023 '(enable-local-eval) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1024 "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
|
1025 |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1026 ;; "Set" one variable in a local variables spec. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1027 ;; A few variable names are treated specially. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1028 (defun hack-one-local-variable (var val) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1029 (cond ((eq var 'mode) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1030 (funcall (intern (concat (downcase (symbol-name val)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1031 "-mode")))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1032 ((memq var ignored-local-variables) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1033 nil) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1034 ;; "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
|
1035 ;; Likewise for setting hook variables. |
ae0389767674
(hack-one-local-variable): Treat ...-hook(s) and ..-function(s)
Richard M. Stallman <rms@gnu.org>
parents:
3624
diff
changeset
|
1036 ((or (eq var 'eval) |
ae0389767674
(hack-one-local-variable): Treat ...-hook(s) and ..-function(s)
Richard M. Stallman <rms@gnu.org>
parents:
3624
diff
changeset
|
1037 (string-match "-hooks?$\\|-functions?$" (symbol-name var))) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1038 (if (and (not (string= (user-login-name) "root")) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1039 (or (eq enable-local-eval t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1040 (and enable-local-eval |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1041 (save-window-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1042 (switch-to-buffer (current-buffer)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1043 (save-excursion |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1044 (beginning-of-line) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1045 (set-window-start (selected-window) (point))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1046 (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
|
1047 (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
|
1048 (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
|
1049 (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
|
1050 (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
|
1051 (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
|
1052 (set var val)) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1053 (message "Ignoring `eval:' in file's local variables"))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1054 ;; Ordinary variable, really set it. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1055 (t (make-local-variable var) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1056 (set var val)))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1057 |
337 | 1058 |
1059 (defun set-visited-file-name (filename) | |
1060 "Change name of file visited in current buffer to FILENAME. | |
1061 The next time the buffer is saved it will go in the newly specified file. | |
1062 nil or empty string as argument means make buffer not be visiting any file. | |
1063 Remember to delete the initial contents of the minibuffer | |
1064 if you wish to pass an empty string as the argument." | |
1065 (interactive "FSet visited file name: ") | |
1066 (if filename | |
1067 (setq filename | |
1068 (if (string-equal filename "") | |
1069 nil | |
1070 (expand-file-name filename)))) | |
1071 (or (equal filename buffer-file-name) | |
1072 (null filename) | |
1073 (progn | |
1074 (lock-buffer filename) | |
1075 (unlock-buffer))) | |
1076 (setq buffer-file-name filename) | |
1077 (if filename ; make buffer name reflect filename. | |
423 | 1078 (let ((new-name (file-name-nondirectory buffer-file-name))) |
337 | 1079 (if (string= new-name "") |
1080 (error "Empty file name")) | |
1081 (if (eq system-type 'vax-vms) | |
1082 (setq new-name (downcase new-name))) | |
1083 (setq default-directory (file-name-directory buffer-file-name)) | |
423 | 1084 (rename-buffer new-name t))) |
337 | 1085 (setq buffer-backed-up nil) |
1086 (clear-visited-file-modtime) | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1087 (if filename |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1088 (progn |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1089 (setq buffer-file-truename |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1090 (abbreviate-file-name (file-truename buffer-file-name))) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1091 (if find-file-visit-truename |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1092 (setq buffer-file-name buffer-file-truename)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1093 (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
|
1094 (setq buffer-file-truename nil buffer-file-number nil)) |
337 | 1095 ;; write-file-hooks is normally used for things like ftp-find-file |
1096 ;; that visit things that are not local files as if they were files. | |
1097 ;; Changing to visit an ordinary local file instead should flush the hook. | |
1098 (kill-local-variable 'write-file-hooks) | |
2375
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
1099 (kill-local-variable 'local-write-file-hooks) |
337 | 1100 (kill-local-variable 'revert-buffer-function) |
1101 (kill-local-variable 'backup-inhibited) | |
1102 ;; Turn off backup files for certain file names. | |
1103 ;; Since this is a permanent local, the major mode won't eliminate it. | |
1104 (and (not (funcall backup-enable-predicate buffer-file-name)) | |
1105 (progn | |
1106 (make-local-variable 'backup-inhibited) | |
1107 (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
|
1108 (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
|
1109 ;; 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
|
1110 (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
|
1111 (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
|
1112 (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
|
1113 ;; 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
|
1114 ;; 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
|
1115 ;; 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
|
1116 ;; 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
|
1117 ;; 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
|
1118 (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
|
1119 (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
|
1120 ;; 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
|
1121 (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
|
1122 (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
|
1123 (rename-file oauto buffer-auto-save-file-name t))) |
337 | 1124 (if buffer-file-name |
1125 (set-buffer-modified-p t))) | |
1126 | |
1127 (defun write-file (filename) | |
1128 "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
|
1129 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
|
1130 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
|
1131 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
|
1132 old name in that directory." |
337 | 1133 ;; (interactive "FWrite file: ") |
1134 (interactive | |
1135 (list (if buffer-file-name | |
1136 (read-file-name "Write file: " | |
1137 nil nil nil nil) | |
1138 (read-file-name "Write file: " | |
1139 (cdr (assq 'default-directory | |
1140 (buffer-local-variables))) | |
1141 nil nil (buffer-name))))) | |
1142 (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
|
1143 (progn |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1144 ;; If arg is just a directory, |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1145 ;; 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
|
1146 (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
|
1147 (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
|
1148 (file-name-nondirectory buffer-file-name)))) |
bff31af6c721
(write-file): Handle directory name as arg.
Richard M. Stallman <rms@gnu.org>
parents:
1905
diff
changeset
|
1149 (set-visited-file-name filename))) |
337 | 1150 (set-buffer-modified-p t) |
1151 (save-buffer)) | |
1152 | |
1153 (defun backup-buffer () | |
1154 "Make a backup of the disk file visited by the current buffer, if appropriate. | |
1155 This is normally done before saving the buffer the first time. | |
1156 If the value is non-nil, it is the result of `file-modes' on the original | |
1157 file; this means that the caller, after saving the buffer, should change | |
1158 the modes of the new file to agree with the old modes." | |
1159 (if (and make-backup-files (not backup-inhibited) | |
1160 (not buffer-backed-up) | |
1161 (file-exists-p buffer-file-name) | |
1162 (memq (aref (elt (file-attributes buffer-file-name) 8) 0) | |
1163 '(?- ?l))) | |
1164 (let ((real-file-name buffer-file-name) | |
1165 backup-info backupname targets setmodes) | |
1166 ;; If specified name is a symbolic link, chase it to the target. | |
1167 ;; 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
|
1168 (setq real-file-name (file-chase-links real-file-name)) |
337 | 1169 (setq backup-info (find-backup-file-name real-file-name) |
1170 backupname (car backup-info) | |
1171 targets (cdr backup-info)) | |
1172 ;;; (if (file-directory-p buffer-file-name) | |
1173 ;;; (error "Cannot save buffer in directory %s" buffer-file-name)) | |
1174 (condition-case () | |
1175 (let ((delete-old-versions | |
1176 ;; If have old versions to maybe delete, | |
1177 ;; ask the user to confirm now, before doing anything. | |
1178 ;; But don't actually delete til later. | |
1179 (and targets | |
844
bf829a2d63b4
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
819
diff
changeset
|
1180 (or (eq trim-versions-without-asking t) (eq trim-versions-without-asking nil)) |
337 | 1181 (or trim-versions-without-asking |
1182 (y-or-n-p (format "Delete excess backup versions of %s? " | |
1183 real-file-name)))))) | |
1184 ;; Actually write the back up file. | |
1185 (condition-case () | |
1186 (if (or file-precious-flag | |
1187 ; (file-symlink-p buffer-file-name) | |
1188 backup-by-copying | |
1189 (and backup-by-copying-when-linked | |
1190 (> (file-nlinks real-file-name) 1)) | |
1191 (and backup-by-copying-when-mismatch | |
1192 (let ((attr (file-attributes real-file-name))) | |
1193 (or (nth 9 attr) | |
1194 (/= (nth 2 attr) (user-uid)))))) | |
1103
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1195 (condition-case () |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1196 (copy-file real-file-name backupname t t) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1197 (file-error |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1198 ;; If copying fails because file BACKUPNAME |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1199 ;; is not writable, delete that file and try again. |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1200 (if (and (file-exists-p backupname) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1201 (not (file-writable-p backupname))) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1202 (delete-file backupname)) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1203 (copy-file real-file-name backupname t t))) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1204 ;; rename-file should delete old backup. |
337 | 1205 (rename-file real-file-name backupname t) |
1206 (setq setmodes (file-modes backupname))) | |
1207 (file-error | |
1208 ;; If trouble writing the backup, write it in ~. | |
1209 (setq backupname (expand-file-name "~/%backup%~")) | |
1210 (message "Cannot write backup file; backing up in ~/%%backup%%~") | |
1211 (sleep-for 1) | |
1103
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1212 (condition-case () |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1213 (copy-file real-file-name backupname t t) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1214 (file-error |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1215 ;; If copying fails because file BACKUPNAME |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1216 ;; is not writable, delete that file and try again. |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1217 (if (and (file-exists-p backupname) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1218 (not (file-writable-p backupname))) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1219 (delete-file backupname)) |
ecaf2b70cd45
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1090
diff
changeset
|
1220 (copy-file real-file-name backupname t t))))) |
337 | 1221 (setq buffer-backed-up t) |
1222 ;; Now delete the old versions, if desired. | |
1223 (if delete-old-versions | |
1224 (while targets | |
1225 (condition-case () | |
1226 (delete-file (car targets)) | |
1227 (file-error nil)) | |
1228 (setq targets (cdr targets)))) | |
1229 setmodes) | |
1230 (file-error nil))))) | |
1231 | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1232 (defun file-name-sans-versions (name &optional keep-backup-version) |
337 | 1233 "Return FILENAME sans backup versions or strings. |
1234 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
|
1235 redefine it. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1236 If the optional argument KEEP-BACKUP-VERSION is non-nil, |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1237 we do not remove backup version numbers, only true file version numbers." |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1537
diff
changeset
|
1238 (let ((handler (find-file-name-handler name))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1239 (if handler |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1240 (funcall handler 'file-name-sans-versions name keep-backup-version) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1241 (substring name 0 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1242 (if (eq system-type 'vax-vms) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1243 ;; VMS version number is (a) semicolon, optional |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1244 ;; sign, zero or more digits or (b) period, option |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1245 ;; sign, zero or more digits, provided this is the |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1246 ;; second period encountered outside of the |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1247 ;; device/directory part of the file name. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1248 (or (string-match ";[---+]?[0-9]*\\'" name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1249 (if (string-match "\\.[^]>:]*\\(\\.[---+]?[0-9]*\\)\\'" |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1250 name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1251 (match-beginning 1)) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1252 (length name)) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1253 (if keep-backup-version |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1254 (length name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1255 (or (string-match "\\.~[0-9]+~\\'" name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1256 (string-match "~\\'" name) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1257 (length name)))))))) |
337 | 1258 |
1259 (defun make-backup-file-name (file) | |
1260 "Create the non-numeric backup file name for FILE. | |
1261 This is a separate function so you can redefine it for customization." | |
1262 (concat file "~")) | |
1263 | |
1264 (defun backup-file-name-p (file) | |
1265 "Return non-nil if FILE is a backup file name (numeric or not). | |
1266 This is a separate function so you can redefine it for customization. | |
1267 You may need to redefine `file-name-sans-versions' as well." | |
1268 (string-match "~$" file)) | |
1269 | |
890
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1270 ;; This is used in various files. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1271 ;; The usage of bv-length is not very clean, |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1272 ;; but I can't see a good alternative, |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1273 ;; so as of now I am leaving it alone. |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1274 (defun backup-extract-version (fn) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1275 "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
|
1276 Uses the free variable `bv-length', whose value should be |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1277 the index in the name where the version number begins." |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1278 (if (and (string-match "[0-9]+~$" fn bv-length) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1279 (= (match-beginning 0) bv-length)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1280 (string-to-int (substring fn bv-length -1)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1281 0)) |
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1282 |
337 | 1283 ;; I believe there is no need to alter this behavior for VMS; |
1284 ;; since backup files are not made on VMS, it should not get called. | |
1285 (defun find-backup-file-name (fn) | |
1286 "Find a file name for a backup file, and suggestions for deletions. | |
1287 Value is a list whose car is the name for the backup file | |
1288 and whose cdr is a list of old versions to consider deleting now." | |
1289 (if (eq version-control 'never) | |
1290 (list (make-backup-file-name fn)) | |
1291 (let* ((base-versions (concat (file-name-nondirectory fn) ".~")) | |
1292 (bv-length (length base-versions)) | |
1293 (possibilities (file-name-all-completions | |
1294 base-versions | |
1295 (file-name-directory fn))) | |
755 | 1296 (versions (sort (mapcar |
890
bad1b9af86a1
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
854
diff
changeset
|
1297 (function backup-extract-version) |
755 | 1298 possibilities) |
337 | 1299 '<)) |
423 | 1300 (high-water-mark (apply 'max 0 versions)) |
337 | 1301 (deserve-versions-p |
1302 (or version-control | |
1303 (> high-water-mark 0))) | |
1304 (number-to-delete (- (length versions) | |
1305 kept-old-versions kept-new-versions -1))) | |
1306 (if (not deserve-versions-p) | |
1307 (list (make-backup-file-name fn)) | |
1308 (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
|
1309 (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
|
1310 ;; 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
|
1311 ;; 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
|
1312 (>= (+ kept-new-versions kept-old-versions -1) 0)) |
337 | 1313 (mapcar (function (lambda (n) |
1314 (concat fn ".~" (int-to-string n) "~"))) | |
1315 (let ((v (nthcdr kept-old-versions versions))) | |
1316 (rplacd (nthcdr (1- number-to-delete) v) ()) | |
1317 v)))))))) | |
1318 | |
1319 (defun file-nlinks (filename) | |
1320 "Return number of names file FILENAME has." | |
1321 (car (cdr (file-attributes filename)))) | |
1229
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1322 |
1246
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1323 (defun file-relative-name-1 (directory) |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1324 (cond ((string= directory "/") |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1325 filename) |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1326 ((string-match (concat "^" (regexp-quote directory)) |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1327 filename) |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1328 (substring filename (match-end 0))) |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1329 (t |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1330 (file-relative-name-1 |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1331 (file-name-directory (substring directory 0 -1)))))) |
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1332 |
1229
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1333 (defun file-relative-name (filename &optional directory) |
d4324e885a41
(file-relative-name): New function.
Roland McGrath <roland@gnu.org>
parents:
1212
diff
changeset
|
1334 "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
|
1335 (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
|
1336 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
|
1337 (or directory default-directory)))) |
1246
5e25dd40a160
(file-relative-name-1): New function split out.
Richard M. Stallman <rms@gnu.org>
parents:
1231
diff
changeset
|
1338 (file-relative-name-1 directory)) |
337 | 1339 |
1340 (defun save-buffer (&optional args) | |
1341 "Save current buffer in visited file if modified. Versions described below. | |
1342 By default, makes the previous version into a backup file | |
1343 if previously requested or if this is the first save. | |
1344 With 1 or 3 \\[universal-argument]'s, marks this version | |
1345 to become a backup when the next save is done. | |
1346 With 2 or 3 \\[universal-argument]'s, | |
1347 unconditionally makes the previous version into a backup file. | |
1348 With argument of 0, never makes the previous version into a backup file. | |
1349 | |
1350 If a file's name is FOO, the names of its numbered backup versions are | |
1351 FOO.~i~ for various integers i. A non-numbered backup file is called FOO~. | |
1352 Numeric backups (rather than FOO~) will be made if value of | |
1353 `version-control' is not the atom `never' and either there are already | |
1354 numeric versions of the file being backed up, or `version-control' is | |
1355 non-nil. | |
1356 We don't want excessive versions piling up, so there are variables | |
1357 `kept-old-versions', which tells Emacs how many oldest versions to keep, | |
1358 and `kept-new-versions', which tells how many newest versions to keep. | |
1359 Defaults are 2 old versions and 2 new. | |
1360 `dired-kept-versions' controls dired's clean-directory (.) command. | |
1361 If `trim-versions-without-asking' is nil, system will query user | |
1362 before trimming versions. Otherwise it does it silently." | |
1363 (interactive "p") | |
1364 (let ((modp (buffer-modified-p)) | |
1365 (large (> (buffer-size) 50000)) | |
1366 (make-backup-files (and make-backup-files (not (eq args 0))))) | |
1367 (and modp (memq args '(16 64)) (setq buffer-backed-up nil)) | |
1368 (if (and modp large) (message "Saving file %s..." (buffer-file-name))) | |
1369 (basic-save-buffer) | |
1370 (and modp (memq args '(4 64)) (setq buffer-backed-up nil)))) | |
1371 | |
1372 (defun delete-auto-save-file-if-necessary (&optional force) | |
1373 "Delete auto-save file for current buffer if `delete-auto-save-files' is t. | |
1374 Normally delete only if the file was written by this Emacs since | |
1375 the last real save, but optional arg FORCE non-nil means delete anyway." | |
1376 (and buffer-auto-save-file-name delete-auto-save-files | |
1377 (not (string= buffer-file-name buffer-auto-save-file-name)) | |
1378 (or force (recent-auto-save-p)) | |
1379 (progn | |
1380 (condition-case () | |
1381 (delete-file buffer-auto-save-file-name) | |
1382 (file-error nil)) | |
1383 (set-buffer-auto-saved)))) | |
1384 | |
1385 (defun basic-save-buffer () | |
1386 "Save the current buffer in its visited file, if it has been modified." | |
1387 (interactive) | |
1388 (if (buffer-modified-p) | |
1389 (let ((recent-save (recent-auto-save-p)) | |
1390 setmodes tempsetmodes) | |
1391 ;; On VMS, rename file and buffer to get rid of version number. | |
1392 (if (and (eq system-type 'vax-vms) | |
1393 (not (string= buffer-file-name | |
1394 (file-name-sans-versions buffer-file-name)))) | |
1395 (let (buffer-new-name) | |
1396 ;; Strip VMS version number before save. | |
1397 (setq buffer-file-name | |
1398 (file-name-sans-versions buffer-file-name)) | |
1399 ;; Construct a (unique) buffer name to correspond. | |
1400 (let ((buf (create-file-buffer (downcase buffer-file-name)))) | |
1401 (setq buffer-new-name (buffer-name buf)) | |
1402 (kill-buffer buf)) | |
1403 (rename-buffer buffer-new-name))) | |
1404 ;; If buffer has no file name, ask user for one. | |
1405 (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
|
1406 (set-visited-file-name |
ebf146cb7720
(basic-save-buffer): When we read a file name,
Richard M. Stallman <rms@gnu.org>
parents:
4283
diff
changeset
|
1407 (expand-file-name (read-file-name "File to save in: ") nil))) |
337 | 1408 (or (verify-visited-file-modtime (current-buffer)) |
1409 (not (file-exists-p buffer-file-name)) | |
1410 (yes-or-no-p | |
1411 (format "%s has changed since visited or saved. Save anyway? " | |
1412 (file-name-nondirectory buffer-file-name))) | |
1413 (error "Save not confirmed")) | |
1414 (save-restriction | |
1415 (widen) | |
1416 (and (> (point-max) 1) | |
1417 (/= (char-after (1- (point-max))) ?\n) | |
1418 (or (eq require-final-newline t) | |
1419 (and require-final-newline | |
1420 (y-or-n-p | |
1421 (format "Buffer %s does not end in newline. Add one? " | |
1422 (buffer-name))))) | |
1423 (save-excursion | |
1424 (goto-char (point-max)) | |
1425 (insert ?\n))) | |
2375
94e135f2d64d
(local-write-file-hooks): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2335
diff
changeset
|
1426 (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
|
1427 write-file-hooks)) |
337 | 1428 (done nil)) |
1429 (while (and hooks | |
1430 (not (setq done (funcall (car hooks))))) | |
1431 (setq hooks (cdr hooks))) | |
1432 ;; If a hook returned t, file is already "written". | |
1433 (cond ((not done) | |
1434 (if (not (file-writable-p buffer-file-name)) | |
1435 (let ((dir (file-name-directory buffer-file-name))) | |
1436 (if (not (file-directory-p dir)) | |
1437 (error "%s is not a directory" dir) | |
1438 (if (not (file-exists-p buffer-file-name)) | |
1439 (error "Directory %s write-protected" dir) | |
1440 (if (yes-or-no-p | |
1441 (format "File %s is write-protected; try to save anyway? " | |
1442 (file-name-nondirectory | |
1443 buffer-file-name))) | |
1444 (setq tempsetmodes t) | |
1445 (error "Attempt to save to a file which you aren't allowed to write")))))) | |
1446 (or buffer-backed-up | |
1447 (setq setmodes (backup-buffer))) | |
1448 (if file-precious-flag | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1449 ;; If file is precious, write temp name, then rename it. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1450 (let ((dir (file-name-directory buffer-file-name)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1451 (realname buffer-file-name) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1452 tempname temp nogood i succeed) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1453 (setq i 0) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1454 (setq nogood t) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1455 ;; Find the temporary name to write under. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1456 (while nogood |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1457 (setq tempname (format "%s#tmp#%d" dir i)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1458 (setq nogood (file-exists-p tempname)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1459 (setq i (1+ i))) |
337 | 1460 (unwind-protect |
1461 (progn (clear-visited-file-modtime) | |
1462 (write-region (point-min) (point-max) | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1463 tempname nil realname) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1464 (setq succeed t)) |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1465 ;; If writing the temp file fails, |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1466 ;; delete the temp file. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1467 (or succeed (delete-file tempname))) |
2108
baec460e28c7
* files.el (basic-save-buffer): If file-precious-flag is set, and
Jim Blandy <jimb@redhat.com>
parents:
2003
diff
changeset
|
1468 ;; Since we have created an entirely new file |
baec460e28c7
* files.el (basic-save-buffer): If file-precious-flag is set, and
Jim Blandy <jimb@redhat.com>
parents:
2003
diff
changeset
|
1469 ;; and renamed it, make sure it gets the |
baec460e28c7
* files.el (basic-save-buffer): If file-precious-flag is set, and
Jim Blandy <jimb@redhat.com>
parents:
2003
diff
changeset
|
1470 ;; right permission bits set. |
baec460e28c7
* files.el (basic-save-buffer): If file-precious-flag is set, and
Jim Blandy <jimb@redhat.com>
parents:
2003
diff
changeset
|
1471 (setq setmodes (file-modes buffer-file-name)) |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1472 ;; We succeeded in writing the temp file, |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1473 ;; so rename it. |
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1474 (rename-file tempname buffer-file-name t)) |
337 | 1475 ;; If file not writable, see if we can make it writable |
1476 ;; temporarily while we write it. | |
1477 ;; But no need to do so if we have just backed it up | |
1478 ;; (setmodes is set) because that says we're superseding. | |
1479 (cond ((and tempsetmodes (not setmodes)) | |
1480 ;; Change the mode back, after writing. | |
1481 (setq setmodes (file-modes buffer-file-name)) | |
1482 (set-file-modes buffer-file-name 511))) | |
1483 (write-region (point-min) (point-max) | |
1484 buffer-file-name nil t))))) | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1485 (setq buffer-file-number (nth 10 (file-attributes buffer-file-name))) |
337 | 1486 (if setmodes |
1487 (condition-case () | |
1395
f6f838c4a26e
(buffer-file-number): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
1371
diff
changeset
|
1488 (set-file-modes buffer-file-name setmodes) |
337 | 1489 (error nil)))) |
1490 ;; If the auto-save file was recent before this command, | |
1491 ;; delete it now. | |
1492 (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
|
1493 (run-hooks 'after-save-hook)) |
337 | 1494 (message "(No changes need to be saved)"))) |
1495 | |
1496 (defun save-some-buffers (&optional arg exiting) | |
1497 "Save some modified file-visiting buffers. Asks user about each one. | |
423 | 1498 Optional argument (the prefix) non-nil means save all with no questions. |
1499 Optional second argument EXITING means ask about certain non-file buffers | |
1500 as well as about file buffers." | |
337 | 1501 (interactive "P") |
891 | 1502 (save-window-excursion |
632 | 1503 (if (zerop (map-y-or-n-p |
1504 (function | |
1505 (lambda (buffer) | |
1506 (and (buffer-modified-p buffer) | |
1507 (or | |
1508 (buffer-file-name buffer) | |
1509 (and exiting | |
1510 (progn | |
1511 (set-buffer buffer) | |
1512 (and buffer-offer-save (> (buffer-size) 0))))) | |
1513 (if arg | |
1514 t | |
1515 (if (buffer-file-name buffer) | |
1516 (format "Save file %s? " | |
1517 (buffer-file-name buffer)) | |
1518 (format "Save buffer %s? " | |
1519 (buffer-name buffer))))))) | |
1520 (function | |
1521 (lambda (buffer) | |
638 | 1522 (set-buffer buffer) |
1523 (save-buffer))) | |
632 | 1524 (buffer-list) |
891 | 1525 '("buffer" "buffers" "save") |
908
94eb4344341b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
891
diff
changeset
|
1526 (list (list ?\C-r (lambda (buf) |
94eb4344341b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
891
diff
changeset
|
1527 (view-buffer buf) |
909
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
908
diff
changeset
|
1528 (setq view-exit-action |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
908
diff
changeset
|
1529 '(lambda (ignore) |
4c6cdb66c74c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
908
diff
changeset
|
1530 (exit-recursive-edit))) |
908
94eb4344341b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
891
diff
changeset
|
1531 (recursive-edit) |
94eb4344341b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
891
diff
changeset
|
1532 ;; Return nil to ask about BUF again. |
94eb4344341b
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
891
diff
changeset
|
1533 nil) |
891 | 1534 "display the current buffer")) |
1535 )) | |
632 | 1536 (message "(No files need saving)")))) |
337 | 1537 |
1538 (defun not-modified (&optional arg) | |
1539 "Mark current buffer as unmodified, not needing to be saved. | |
1540 With prefix arg, mark buffer as modified, so \\[save-buffer] will save." | |
1541 (interactive "P") | |
1542 (message (if arg "Modification-flag set" | |
1543 "Modification-flag cleared")) | |
1544 (set-buffer-modified-p arg)) | |
1545 | |
1546 (defun toggle-read-only (&optional arg) | |
1547 "Change whether this buffer is visiting its file read-only. | |
1548 With arg, set read-only iff arg is positive." | |
1549 (interactive "P") | |
1550 (setq buffer-read-only | |
1551 (if (null arg) | |
1552 (not buffer-read-only) | |
1553 (> (prefix-numeric-value arg) 0))) | |
1554 ;; Force mode-line redisplay | |
1555 (set-buffer-modified-p (buffer-modified-p))) | |
1556 | |
1557 (defun insert-file (filename) | |
1558 "Insert contents of file FILENAME into buffer after point. | |
1559 Set mark after the inserted text. | |
1560 | |
1561 This function is meant for the user to run interactively. | |
1562 Don't call it from programs! Use `insert-file-contents' instead. | |
1563 \(Its calling sequence is different; see its documentation)." | |
1564 (interactive "fInsert file: ") | |
3835
e3a00a940cf4
(insert-file): Report error if file is directory.
Richard M. Stallman <rms@gnu.org>
parents:
3709
diff
changeset
|
1565 (if (file-directory-p filename) |
e3a00a940cf4
(insert-file): Report error if file is directory.
Richard M. Stallman <rms@gnu.org>
parents:
3709
diff
changeset
|
1566 (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
|
1567 filename))) |
337 | 1568 (let ((tem (insert-file-contents filename))) |
1569 (push-mark (+ (point) (car (cdr tem)))))) | |
1570 | |
1571 (defun append-to-file (start end filename) | |
1572 "Append the contents of the region to the end of file FILENAME. | |
1573 When called from a function, expects three arguments, | |
1574 START, END and FILENAME. START and END are buffer positions | |
1575 saying what text to write." | |
1576 (interactive "r\nFAppend to file: ") | |
1577 (write-region start end filename t)) | |
1578 | |
1579 (defun file-newest-backup (filename) | |
1580 "Return most recent backup file for FILENAME or nil if no backups exist." | |
1581 (let* ((filename (expand-file-name filename)) | |
1582 (file (file-name-nondirectory filename)) | |
1583 (dir (file-name-directory filename)) | |
1584 (comp (file-name-all-completions file dir)) | |
1585 newest) | |
1586 (while comp | |
1587 (setq file (concat dir (car comp)) | |
1588 comp (cdr comp)) | |
1589 (if (and (backup-file-name-p file) | |
1590 (or (null newest) (file-newer-than-file-p file newest))) | |
1591 (setq newest file))) | |
1592 newest)) | |
1593 | |
1594 (defun rename-uniquely () | |
1595 "Rename current buffer to a similar name not already taken. | |
1596 This function is useful for creating multiple shell process buffers | |
1597 or multiple mail buffers, etc." | |
1598 (interactive) | |
1599 (let* ((new-buf (generate-new-buffer (buffer-name))) | |
1600 (name (buffer-name new-buf))) | |
1601 (kill-buffer new-buf) | |
1602 (rename-buffer name) | |
1603 (set-buffer-modified-p (buffer-modified-p)))) ; force mode line update | |
423 | 1604 |
1537
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1605 (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
|
1606 "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
|
1607 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
|
1608 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
|
1609 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
|
1610 |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1611 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
|
1612 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
|
1613 (interactive |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1614 (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
|
1615 nil nil) |
3eaec128c91e
(make-directory): By default create dir default-dir.
Richard M. Stallman <rms@gnu.org>
parents:
3670
diff
changeset
|
1616 t)) |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1537
diff
changeset
|
1617 (let ((handler (find-file-name-handler dir))) |
1537
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1618 (if handler |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1619 (funcall handler 'make-directory dir parents) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1620 (if (not parents) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1621 (make-directory-internal dir) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1622 (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
|
1623 create-list) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1624 (while (not (file-exists-p dir)) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1625 (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
|
1626 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
|
1627 (while create-list |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1628 (make-directory-internal (car create-list)) |
8531c6d96e5c
(make-directory): Renamed from make-directory-path.
Richard M. Stallman <rms@gnu.org>
parents:
1471
diff
changeset
|
1629 (setq create-list (cdr create-list)))))))) |
337 | 1630 |
1631 (put 'revert-buffer-function 'permanent-local t) | |
1632 (defvar revert-buffer-function nil | |
1633 "Function to use to revert this buffer, or nil to do the default.") | |
1634 | |
1635 (put 'revert-buffer-insert-file-contents-function 'permanent-local t) | |
1636 (defvar revert-buffer-insert-file-contents-function nil | |
1637 "Function to use to insert contents when reverting this buffer. | |
1638 Gets two args, first the nominal file name to use, | |
1639 and second, t if reading the auto-save file.") | |
1640 | |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1641 (defun revert-buffer (&optional ignore-auto noconfirm) |
337 | 1642 "Replace the buffer text with the text of the visited file on disk. |
1643 This undoes all changes since the file was visited or saved. | |
605 | 1644 With a prefix argument, offer to revert from latest auto-save file, if |
1645 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
|
1646 |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1647 When called from lisp, the first argument is IGNORE-AUTO; only offer |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1648 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
|
1649 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
|
1650 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
|
1651 to nil. |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1652 |
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1653 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
|
1654 all. |
337 | 1655 |
605 | 1656 If the value of `revert-buffer-function' is non-nil, it is called to |
1657 do the work." | |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1658 ;; 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
|
1659 ;; 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
|
1660 ;; 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
|
1661 ;; 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
|
1662 ;; 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
|
1663 ;; 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
|
1664 (interactive (list (not prefix-arg))) |
337 | 1665 (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
|
1666 (funcall revert-buffer-function ignore-auto noconfirm) |
337 | 1667 (let* ((opoint (point)) |
1905
494dd05d460c
* files.el (revert-buffer): Reverse the sense of the first
Jim Blandy <jimb@redhat.com>
parents:
1892
diff
changeset
|
1668 (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
|
1669 (recent-auto-save-p) |
337 | 1670 buffer-auto-save-file-name |
1671 (file-readable-p buffer-auto-save-file-name) | |
1672 (y-or-n-p | |
1673 "Buffer has been auto-saved recently. Revert from auto-save file? "))) | |
1674 (file-name (if auto-save-p | |
1675 buffer-auto-save-file-name | |
1676 buffer-file-name))) | |
1677 (cond ((null file-name) | |
1678 (error "Buffer does not seem to be associated with any file")) | |
1679 ((or noconfirm | |
1680 (yes-or-no-p (format "Revert buffer from file %s? " | |
1681 file-name))) | |
1682 ;; If file was backed up but has changed since, | |
1683 ;; we shd make another backup. | |
1684 (and (not auto-save-p) | |
423 | 1685 (not (verify-visited-file-modtime (current-buffer))) |
337 | 1686 (setq buffer-backed-up nil)) |
1687 ;; Get rid of all undo records for this buffer. | |
1688 (or (eq buffer-undo-list t) | |
1689 (setq buffer-undo-list nil)) | |
1690 (let ((buffer-read-only nil) | |
1691 ;; Don't make undo records for the reversion. | |
1692 (buffer-undo-list t)) | |
1693 (if revert-buffer-insert-file-contents-function | |
1694 (funcall revert-buffer-insert-file-contents-function | |
1695 file-name auto-save-p) | |
1696 (if (not (file-exists-p file-name)) | |
1697 (error "File %s no longer exists!" file-name)) | |
1698 ;; Bind buffer-file-name to nil | |
1699 ;; so that we don't try to lock the file. | |
1700 (let ((buffer-file-name nil)) | |
1701 (or auto-save-p | |
1702 (unlock-buffer)) | |
1703 (erase-buffer)) | |
1704 (insert-file-contents file-name (not auto-save-p)))) | |
1705 (goto-char (min opoint (point-max))) | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
1706 (after-find-file nil nil t) |
337 | 1707 t))))) |
1708 | |
1709 (defun recover-file (file) | |
1710 "Visit file FILE, but get contents from its last auto-save file." | |
1711 (interactive | |
1712 (let ((prompt-file buffer-file-name) | |
1713 (file-name nil) | |
1714 (file-dir nil)) | |
1715 (and prompt-file | |
1716 (setq file-name (file-name-nondirectory prompt-file) | |
1717 file-dir (file-name-directory prompt-file))) | |
1718 (list (read-file-name "Recover file: " | |
1719 file-dir nil nil file-name)))) | |
1720 (setq file (expand-file-name file)) | |
1721 (if (auto-save-file-name-p file) (error "%s is an auto-save file" file)) | |
1722 (let ((file-name (let ((buffer-file-name file)) | |
1723 (make-auto-save-file-name)))) | |
1724 (cond ((not (file-newer-than-file-p file-name file)) | |
1725 (error "Auto-save file %s not current" file-name)) | |
1726 ((save-window-excursion | |
1727 (if (not (eq system-type 'vax-vms)) | |
1728 (with-output-to-temp-buffer "*Directory*" | |
1729 (buffer-disable-undo standard-output) | |
1730 (call-process "ls" nil standard-output nil | |
736
18b892513cb7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
735
diff
changeset
|
1731 (if (file-symlink-p file) "-lL" "-l") |
18b892513cb7
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
735
diff
changeset
|
1732 file file-name))) |
337 | 1733 (yes-or-no-p (format "Recover auto save file %s? " file-name))) |
1734 (switch-to-buffer (find-file-noselect file t)) | |
1735 (let ((buffer-read-only nil)) | |
1736 (erase-buffer) | |
1737 (insert-file-contents file-name nil)) | |
1212
de70f50101c0
(after-find-file): New arg NOAUTO.
Richard M. Stallman <rms@gnu.org>
parents:
1182
diff
changeset
|
1738 (after-find-file nil nil t)) |
337 | 1739 (t (error "Recover-file cancelled."))))) |
1740 | |
1741 (defun kill-some-buffers () | |
1742 "For each buffer, ask whether to kill it." | |
1743 (interactive) | |
1744 (let ((list (buffer-list))) | |
1745 (while list | |
1746 (let* ((buffer (car list)) | |
1747 (name (buffer-name buffer))) | |
1748 (and (not (string-equal name "")) | |
1749 (/= (aref name 0) ? ) | |
1750 (yes-or-no-p | |
1751 (format "Buffer %s %s. Kill? " | |
1752 name | |
1753 (if (buffer-modified-p buffer) | |
1754 "HAS BEEN EDITED" "is unmodified"))) | |
1755 (kill-buffer buffer))) | |
1756 (setq list (cdr list))))) | |
1757 | |
1758 (defun auto-save-mode (arg) | |
1759 "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
|
1760 With prefix argument ARG, turn auto-saving on if positive, else off." |
337 | 1761 (interactive "P") |
1762 (setq buffer-auto-save-file-name | |
1763 (and (if (null arg) | |
1764 (not buffer-auto-save-file-name) | |
1765 (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0)))) | |
1766 (if (and buffer-file-name auto-save-visited-file-name | |
1767 (not buffer-read-only)) | |
1768 buffer-file-name | |
1769 (make-auto-save-file-name)))) | |
1770 (if (interactive-p) | |
1771 (message "Auto-save %s (in this buffer)" | |
1772 (if buffer-auto-save-file-name "on" "off"))) | |
1773 buffer-auto-save-file-name) | |
1774 | |
1775 (defun rename-auto-save-file () | |
1776 "Adjust current buffer's auto save file name for current conditions. | |
1777 Also rename any existing auto save file, if it was made in this session." | |
1778 (let ((osave buffer-auto-save-file-name)) | |
1779 (setq buffer-auto-save-file-name | |
1780 (make-auto-save-file-name)) | |
1781 (if (and osave buffer-auto-save-file-name | |
1782 (not (string= buffer-auto-save-file-name buffer-file-name)) | |
1783 (not (string= buffer-auto-save-file-name osave)) | |
1784 (file-exists-p osave) | |
1785 (recent-auto-save-p)) | |
1786 (rename-file osave buffer-auto-save-file-name t)))) | |
1787 | |
1788 (defun make-auto-save-file-name () | |
1789 "Return file name to use for auto-saves of current buffer. | |
1790 Does not consider `auto-save-visited-file-name' as that variable is checked | |
1791 before calling this function. You can redefine this for customization. | |
1792 See also `auto-save-file-name-p'." | |
1793 (if buffer-file-name | |
1794 (concat (file-name-directory buffer-file-name) | |
1795 "#" | |
1796 (file-name-nondirectory buffer-file-name) | |
1797 "#") | |
1798 ;; For non-file bfr, use bfr name and Emacs pid. | |
1799 (expand-file-name (format "#%s#%s#" (buffer-name) (make-temp-name ""))))) | |
1800 | |
1801 (defun auto-save-file-name-p (filename) | |
1802 "Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'. | |
1803 FILENAME should lack slashes. You can redefine this for customization." | |
1804 (string-match "^#.*#$" filename)) | |
1805 | |
1806 (defconst list-directory-brief-switches | |
1807 (if (eq system-type 'vax-vms) "" "-CF") | |
1808 "*Switches for list-directory to pass to `ls' for brief listing,") | |
1809 | |
1810 (defconst list-directory-verbose-switches | |
1811 (if (eq system-type 'vax-vms) | |
1812 "/PROTECTION/SIZE/DATE/OWNER/WIDTH=(OWNER:10)" | |
1813 "-l") | |
1814 "*Switches for list-directory to pass to `ls' for verbose listing,") | |
1815 | |
1816 (defun list-directory (dirname &optional verbose) | |
1817 "Display a list of files in or matching DIRNAME, a la `ls'. | |
1818 DIRNAME is globbed by the shell if necessary. | |
1819 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'. | |
1820 Actions controlled by variables `list-directory-brief-switches' | |
1821 and `list-directory-verbose-switches'." | |
1822 (interactive (let ((pfx current-prefix-arg)) | |
1823 (list (read-file-name (if pfx "List directory (verbose): " | |
1824 "List directory (brief): ") | |
1825 nil default-directory nil) | |
1826 pfx))) | |
1827 (let ((switches (if verbose list-directory-verbose-switches | |
1828 list-directory-brief-switches))) | |
1829 (or dirname (setq dirname default-directory)) | |
1830 (setq dirname (expand-file-name dirname)) | |
1831 (with-output-to-temp-buffer "*Directory*" | |
1832 (buffer-disable-undo standard-output) | |
1833 (princ "Directory ") | |
1834 (princ dirname) | |
1835 (terpri) | |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1836 (save-excursion |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1837 (set-buffer "*Directory*") |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1838 (let ((wildcard (not (file-directory-p dirname)))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1839 (insert-directory dirname switches wildcard (not wildcard))))))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1840 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1841 (defvar insert-directory-program "ls" |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1842 "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
|
1843 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1844 ;; insert-directory |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1845 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1846 ;; FULL-DIRECTORY-P is nil. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1847 ;; 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
|
1848 ;; given, namely, an absolute path name. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1849 ;; - 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
|
1850 ;; FULL-DIRECTORY-P is t, plus one optional "total" line |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1851 ;; 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
|
1852 ;; 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
|
1853 ;; allowed. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1854 ;; File lines should display the basename. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1855 ;; - must be consistent with |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1856 ;; - 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
|
1857 ;; dired-move-to-end-of-filename, |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1858 ;; dired-between-files, (shortcut for (not (dired-move-to-filename))) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1859 ;; dired-insert-headerline |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1860 ;; dired-after-subdir-garbage (defines what a "total" line is) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1861 ;; - variable dired-subdir-regexp |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1862 (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
|
1863 "Insert directory listing for FILE, formatted according to SWITCHES. |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1864 Leaves point after the inserted text. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1865 Optional third arg WILDCARD means treat FILE as shell wildcard. |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1866 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
|
1867 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
|
1868 |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1869 This works by running a directory listing program |
1892
c4ff65277bb3
(insert-directory): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1879
diff
changeset
|
1870 whose name is in the variable `insert-directory-program'. |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1871 If WILDCARD, it also runs the shell specified by `shell-file-name'." |
1672
ecf43116a845
The find-file-name-handler function in ../src/fileio.c is now
Jim Blandy <jimb@redhat.com>
parents:
1537
diff
changeset
|
1872 (let ((handler (find-file-name-handler file))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1873 (if handler |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1874 (funcall handler 'insert-directory file switches |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1875 wildcard full-directory-p) |
337 | 1876 (if (eq system-type 'vax-vms) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1877 (vms-read-directory file switches (current-buffer)) |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1878 (if wildcard |
4283
f705c18c410d
(insert-directory): Make sure default-directory is absolute.
Richard M. Stallman <rms@gnu.org>
parents:
4216
diff
changeset
|
1879 ;; 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
|
1880 (let ((default-directory |
f705c18c410d
(insert-directory): Make sure default-directory is absolute.
Richard M. Stallman <rms@gnu.org>
parents:
4216
diff
changeset
|
1881 (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
|
1882 (file-name-directory file) |
f705c18c410d
(insert-directory): Make sure default-directory is absolute.
Richard M. Stallman <rms@gnu.org>
parents:
4216
diff
changeset
|
1883 (file-name-directory (expand-file-name file))))) |
1109
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1884 (call-process shell-file-name nil t nil |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1885 "-c" (concat insert-directory-program |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1886 " -d " switches " " |
c9feb3e64805
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
1103
diff
changeset
|
1887 (file-name-nondirectory file)))) |
4148
6b065ebb9090
* files.el (insert-directory): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
4032
diff
changeset
|
1888 ;; 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
|
1889 ;; directory if FILE is a symbolic link. |
6b065ebb9090
* files.el (insert-directory): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
4032
diff
changeset
|
1890 (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
|
1891 (if full-directory-p |
6b065ebb9090
* files.el (insert-directory): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
4032
diff
changeset
|
1892 (concat (file-name-as-directory file) ".") |
6b065ebb9090
* files.el (insert-directory): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
4032
diff
changeset
|
1893 file))))))) |
337 | 1894 |
1895 (defun save-buffers-kill-emacs (&optional arg) | |
1896 "Offer to save each buffer, then kill this Emacs process. | |
1897 With prefix arg, silently save all file-visiting buffers, then kill." | |
1898 (interactive "P") | |
1899 (save-some-buffers arg t) | |
1900 (and (or (not (memq t (mapcar (function | |
1901 (lambda (buf) (and (buffer-file-name buf) | |
1902 (buffer-modified-p buf)))) | |
1903 (buffer-list)))) | |
1904 (yes-or-no-p "Modified buffers exist; exit anyway? ")) | |
1905 (or (not (fboundp 'process-list)) | |
1906 ;; process-list is not defined on VMS. | |
1907 (let ((processes (process-list)) | |
1908 active) | |
1909 (while processes | |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
736
diff
changeset
|
1910 (and (memq (process-status (car processes)) '(run stop open)) |
337 | 1911 (let ((val (process-kill-without-query (car processes)))) |
1912 (process-kill-without-query (car processes) val) | |
1913 val) | |
1914 (setq active t)) | |
1915 (setq processes (cdr processes))) | |
1916 (or (not active) | |
1917 (yes-or-no-p "Active processes exist; kill them and exit anyway? ")))) | |
1918 (kill-emacs))) | |
1919 | |
1920 (define-key ctl-x-map "\C-f" 'find-file) | |
1921 (define-key ctl-x-map "\C-q" 'toggle-read-only) | |
1922 (define-key ctl-x-map "\C-r" 'find-file-read-only) | |
1923 (define-key ctl-x-map "\C-v" 'find-alternate-file) | |
1924 (define-key ctl-x-map "\C-s" 'save-buffer) | |
1925 (define-key ctl-x-map "s" 'save-some-buffers) | |
1926 (define-key ctl-x-map "\C-w" 'write-file) | |
1927 (define-key ctl-x-map "i" 'insert-file) | |
1928 (define-key esc-map "~" 'not-modified) | |
1929 (define-key ctl-x-map "\C-d" 'list-directory) | |
1930 (define-key ctl-x-map "\C-c" 'save-buffers-kill-emacs) | |
1931 | |
1932 (define-key ctl-x-4-map "f" 'find-file-other-window) | |
1933 (define-key ctl-x-4-map "r" 'find-file-read-only-other-window) | |
1934 (define-key ctl-x-4-map "\C-f" 'find-file-other-window) | |
1935 (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
|
1936 (define-key ctl-x-4-map "\C-o" 'display-buffer) |
423 | 1937 |
778 | 1938 (define-key ctl-x-5-map "b" 'switch-to-buffer-other-frame) |
1939 (define-key ctl-x-5-map "f" 'find-file-other-frame) | |
1940 (define-key ctl-x-5-map "\C-f" 'find-file-other-frame) | |
1941 (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
|
1942 |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
638
diff
changeset
|
1943 ;;; files.el ends here |