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