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