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