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