Mercurial > hg > xemacs-beta
annotate lisp/files.el @ 5818:15b0715c204d
Avoid passing patterns to with charset property to FcNameUnparse.
Prevents crash reported by Raymond Toy.
| author | Stephen J. Turnbull <stephen@xemacs.org> |
|---|---|
| date | Sat, 18 Oct 2014 21:20:42 +0900 |
| parents | 182d01410b8d |
| children | bbe4146603db |
| rev | line source |
|---|---|
| 428 | 1 ;;; files.el --- file input and output commands for XEmacs. |
| 2 | |
|
5766
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
3 ;; Copyright (C) 1985-1987, 1992-1995, 1997, 2013 Free Software Foundation, Inc. |
| 428 | 4 ;; Copyright (C) 1995 Sun Microsystems. |
| 1333 | 5 ;; Copyright (C) 2001, 2002, 2003 Ben Wing. |
| 428 | 6 |
| 7 ;; Maintainer: XEmacs Development Team | |
| 8 ;; Keywords: extensions, dumped | |
| 9 | |
| 10 ;; This file is part of XEmacs. | |
| 11 | |
|
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5270
diff
changeset
|
12 ;; XEmacs is free software: you can redistribute it and/or modify it |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5270
diff
changeset
|
13 ;; under the terms of the GNU General Public License as published by the |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5270
diff
changeset
|
14 ;; Free Software Foundation, either version 3 of the License, or (at your |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5270
diff
changeset
|
15 ;; option) any later version. |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5270
diff
changeset
|
16 |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5270
diff
changeset
|
17 ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5270
diff
changeset
|
18 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5270
diff
changeset
|
19 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5270
diff
changeset
|
20 ;; for more details. |
| 428 | 21 |
| 22 ;; You should have received a copy of the GNU General Public License | |
|
5402
308d34e9f07d
Changed bulk of GPLv2 or later files identified by script
Mats Lidell <matsl@xemacs.org>
parents:
5270
diff
changeset
|
23 ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |
| 428 | 24 |
| 1333 | 25 ;;; [[ Synched up with: FSF 20.3 (but diverging) |
| 26 ;;; Warning: Merging this file is tough. Beware.]] | |
| 27 | |
| 28 ;;; Beware of sync messages with 20.x or 21.x! (Unless I did them, of | |
| 29 ;;; course ... :-) Those who did these synchronizations did not do proper | |
| 30 ;;; jobs and often left out lots of changes. In practice you need to do a | |
| 31 ;;; line-by-line comparison, and whenever encountering differences, see | |
| 32 ;;; what FSF 19.34 looks like to see if the changes are intentional or just | |
| 33 ;;; regressions. In at least one case below, our code was unchanged from | |
| 34 ;;; FSF 19.30! --ben | |
| 35 | |
| 36 ;;; Mostly synched to FSF 21.2 by Ben Wing using a line-by-line comparison, | |
| 37 ;;; except some really hard parts that have changed almost completely. | |
| 428 | 38 |
| 39 ;;; Commentary: | |
| 40 | |
| 41 ;; This file is dumped with XEmacs. | |
| 42 | |
| 1333 | 43 ;; BEGIN SYNC WITH FSF 21.2. |
| 44 | |
| 428 | 45 ;; Defines most of XEmacs's file- and directory-handling functions, |
| 46 ;; including basic file visiting, backup generation, link handling, | |
| 47 ;; ITS-id version control, load- and write-hook handling, and the like. | |
| 48 | |
| 49 ;;; Code: | |
| 50 | |
| 51 ;; XEmacs: Avoid compilation warnings. | |
| 52 (defvar coding-system-for-read) | |
| 53 (defvar buffer-file-coding-system) | |
| 54 | |
| 55 (defgroup files nil | |
| 56 "Support editing files." | |
| 57 :group 'emacs) | |
| 58 | |
| 59 (defgroup backup nil | |
| 60 "Backups of edited data files." | |
| 61 :group 'files) | |
| 62 | |
| 63 (defgroup find-file nil | |
| 64 "Finding and editing files." | |
| 65 :group 'files) | |
| 66 | |
| 1333 | 67 ;; XEmacs: In buffer.c (also) |
| 68 (defcustom delete-auto-save-files t | |
| 69 "*Non-nil means delete auto-save file when a buffer is saved or killed. | |
| 70 | |
| 71 Note that auto-save file will not be deleted if the buffer is killed | |
| 72 when it has unsaved changes." | |
| 73 :type 'boolean | |
| 74 :group 'auto-save) | |
| 428 | 75 |
| 76 ;; FSF has automount-dir-prefix. Our directory-abbrev-alist is more general. | |
| 77 ;; note: tmp_mnt bogosity conversion is established in paths.el. | |
| 78 (defcustom directory-abbrev-alist nil | |
| 79 "*Alist of abbreviations for file directories. | |
| 80 A list of elements of the form (FROM . TO), each meaning to replace | |
| 81 FROM with TO when it appears in a directory name. | |
| 82 This replacement is done when setting up the default directory of a | |
| 83 newly visited file. *Every* FROM string should start with \\\\` or ^. | |
| 84 | |
| 1333 | 85 Do not use `~' in the TO strings. |
| 86 They should be ordinary absolute directory names. | |
| 87 | |
| 428 | 88 Use this feature when you have directories which you normally refer to |
| 89 via absolute symbolic links or to eliminate automounter mount points | |
| 90 from the beginning of your filenames. Make TO the name of the link, | |
| 91 and FROM the name it is linked to." | |
| 92 :type '(repeat (cons :format "%v" | |
| 93 :value ("\\`" . "") | |
| 94 (regexp :tag "From") | |
| 95 (regexp :tag "To"))) | |
| 96 :group 'find-file) | |
| 97 | |
| 98 (defcustom make-backup-files t | |
| 99 "*Non-nil means make a backup of a file the first time it is saved. | |
| 100 This can be done by renaming the file or by copying. | |
| 101 | |
| 102 Renaming means that XEmacs renames the existing file so that it is a | |
| 103 backup file, then writes the buffer into a new file. Any other names | |
| 104 that the old file had will now refer to the backup file. The new file | |
| 105 is owned by you and its group is defaulted. | |
| 106 | |
| 107 Copying means that XEmacs copies the existing file into the backup | |
| 108 file, then writes the buffer on top of the existing file. Any other | |
| 109 names that the old file had will now refer to the new (edited) file. | |
| 110 The file's owner and group are unchanged. | |
| 111 | |
| 112 The choice of renaming or copying is controlled by the variables | |
| 113 `backup-by-copying', `backup-by-copying-when-linked' and | |
| 1333 | 114 `backup-by-copying-when-mismatch' and |
| 115 `backup-by-copying-when-privileged-mismatch'. See also `backup-inhibited'." | |
| 428 | 116 :type 'boolean |
| 117 :group 'backup) | |
| 118 | |
| 119 ;; Do this so that local variables based on the file name | |
| 120 ;; are not overridden by the major mode. | |
| 121 (defvar backup-inhibited nil | |
| 122 "Non-nil means don't make a backup, regardless of the other parameters. | |
| 123 This variable is intended for use by making it local to a buffer. | |
| 124 But it is local only if you make it local.") | |
| 125 (put 'backup-inhibited 'permanent-local t) | |
| 126 | |
| 127 (defcustom backup-by-copying nil | |
| 128 "*Non-nil means always use copying to create backup files. | |
| 129 See documentation of variable `make-backup-files'." | |
| 130 :type 'boolean | |
| 131 :group 'backup) | |
| 132 | |
| 133 (defcustom backup-by-copying-when-linked nil | |
| 134 "*Non-nil means use copying to create backups for files with multiple names. | |
| 135 This causes the alternate names to refer to the latest version as edited. | |
| 136 This variable is relevant only if `backup-by-copying' is nil." | |
| 137 :type 'boolean | |
| 138 :group 'backup) | |
| 139 | |
| 140 (defcustom backup-by-copying-when-mismatch nil | |
| 141 "*Non-nil means create backups by copying if this preserves owner or group. | |
| 142 Renaming may still be used (subject to control of other variables) | |
| 143 when it would not result in changing the owner or group of the file; | |
| 144 that is, for files which are owned by you and whose group matches | |
| 145 the default for a new file created there by you. | |
| 146 This variable is relevant only if `backup-by-copying' is nil." | |
| 147 :type 'boolean | |
| 148 :group 'backup) | |
| 149 | |
| 1333 | 150 (defcustom backup-by-copying-when-privileged-mismatch 200 |
| 151 "*Non-nil means create backups by copying to preserve a privileged owner. | |
| 152 Renaming may still be used (subject to control of other variables) | |
| 153 when it would not result in changing the owner of the file or if the owner | |
| 154 has a user id greater than the value of this variable. This is useful | |
| 155 when low-numbered uid's are used for special system users (such as root) | |
| 156 that must maintain ownership of certain files. | |
| 157 This variable is relevant only if `backup-by-copying' and | |
| 158 `backup-by-copying-when-mismatch' are nil." | |
| 159 :type '(choice (const nil) integer) | |
| 160 :group 'backup) | |
| 161 | |
| 162 (defun normal-backup-enable-predicate (name) | |
| 163 "Default `backup-enable-predicate' function. | |
| 4266 | 164 Checks for files in the directory returned by `temp-directory' or specified |
| 165 by `small-temporary-file-directory'." | |
| 1333 | 166 (let ((temporary-file-directory (temp-directory))) |
| 167 (not (or (let ((comp (compare-strings temporary-file-directory 0 nil | |
| 168 name 0 nil))) | |
| 169 ;; Directory is under temporary-file-directory. | |
| 170 (and (not (eq comp t)) | |
| 171 (< comp (- (length temporary-file-directory))))) | |
| 172 (if small-temporary-file-directory | |
| 173 (let ((comp (compare-strings small-temporary-file-directory | |
| 174 0 nil | |
| 175 name 0 nil))) | |
| 176 ;; Directory is under small-temporary-file-directory. | |
| 177 (and (not (eq comp t)) | |
| 178 (< comp (- (length small-temporary-file-directory)))))))))) | |
| 179 | |
| 180 (defvar backup-enable-predicate 'normal-backup-enable-predicate | |
| 428 | 181 "Predicate that looks at a file name and decides whether to make backups. |
| 182 Called with an absolute file name as argument, it returns t to enable backup.") | |
| 183 | |
| 184 (defcustom buffer-offer-save nil | |
| 1333 | 185 "*Non-nil in a buffer means always offer to save buffer on exit. |
| 186 Do so even if the buffer is not visiting a file. | |
| 428 | 187 Automatically local in all buffers." |
| 188 :type 'boolean | |
| 189 :group 'find-file) | |
| 190 (make-variable-buffer-local 'buffer-offer-save) | |
| 191 | |
| 192 ;; FSF uses normal defconst | |
| 193 (defvaralias 'find-file-visit-truename 'find-file-use-truenames) | |
| 194 (defvaralias 'find-file-existing-other-name 'find-file-compare-truenames) | |
| 195 | |
| 196 (defcustom revert-without-query nil | |
| 197 "*Specify which files should be reverted without query. | |
| 198 The value is a list of regular expressions. | |
| 199 If the file name matches one of these regular expressions, | |
| 200 then `revert-buffer' reverts the file without querying | |
| 201 if the file has changed on disk and you have not edited the buffer." | |
| 202 :type '(repeat (regexp "")) | |
| 203 :group 'find-file) | |
| 204 | |
| 205 (defvar buffer-file-number nil | |
| 206 "The device number and file number of the file visited in the current buffer. | |
| 207 The value is a list of the form (FILENUM DEVNUM). | |
| 208 This pair of numbers uniquely identifies the file. | |
| 209 If the buffer is visiting a new file, the value is nil.") | |
| 210 (make-variable-buffer-local 'buffer-file-number) | |
| 211 (put 'buffer-file-number 'permanent-local t) | |
| 212 | |
| 213 (defvar buffer-file-numbers-unique (not (memq system-type '(windows-nt))) | |
| 214 "Non-nil means that buffer-file-number uniquely identifies files.") | |
| 215 | |
| 1333 | 216 ;; FSF 21.2. We use (temp-directory). |
| 217 ; (defvar temporary-file-directory | |
| 218 ; (file-name-as-directory | |
| 219 ; (cond ((memq system-type '(ms-dos windows-nt)) | |
| 220 ; (or (getenv "TEMP") (getenv "TMPDIR") (getenv "TMP") "c:/temp")) | |
| 221 ; ((memq system-type '(vax-vms axp-vms)) | |
| 222 ; (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "SYS$SCRATCH:")) | |
| 223 ; (t | |
| 224 ; (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") "/tmp")))) | |
| 225 ; "The directory for writing temporary files.") | |
| 226 | |
| 227 (defvar small-temporary-file-directory | |
| 228 (if (eq system-type 'ms-dos) (getenv "TMPDIR")) | |
| 229 "The directory for writing small temporary files. | |
| 230 If non-nil, this directory is used instead of `temporary-file-directory' | |
| 231 by programs that create small temporary files. This is for systems that | |
| 232 have fast storage with limited space, such as a RAM disk.") | |
| 233 | |
| 234 ; (defvar file-name-invalid-regexp | |
| 235 ; (cond ((and (eq system-type 'ms-dos) (not (msdos-long-file-names))) | |
| 236 ; (concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" ; colon except after drive | |
| 237 ; "[+, ;=|<>\"?*]\\|\\[\\|\\]\\|" ; invalid characters | |
| 238 ; "[\000-\031]\\|" ; control characters | |
| 239 ; "\\(/\\.\\.?[^/]\\)\\|" ; leading dots | |
| 240 ; "\\(/[^/.]+\\.[^/.]*\\.\\)")) ; more than a single dot | |
| 241 ; ((memq system-type '(ms-dos windows-nt)) | |
| 242 ; (concat "^\\([^A-Z[-`a-z]\\|..+\\)?:\\|" ; colon except after drive | |
| 243 ; "[|<>\"?*\000-\031]")) ; invalid characters | |
| 244 ; (t "[\000]")) | |
| 245 ; "Regexp recognizing file names which aren't allowed by the filesystem.") | |
| 246 | |
| 428 | 247 (defcustom file-precious-flag nil |
| 248 "*Non-nil means protect against I/O errors while saving files. | |
| 249 Some modes set this non-nil in particular buffers. | |
| 250 | |
| 251 This feature works by writing the new contents into a temporary file | |
| 252 and then renaming the temporary file to replace the original. | |
| 253 In this way, any I/O error in writing leaves the original untouched, | |
| 254 and there is never any instant where the file is nonexistent. | |
| 255 | |
| 256 Note that this feature forces backups to be made by copying. | |
| 257 Yet, at the same time, saving a precious file | |
| 258 breaks any hard links between it and other files." | |
| 259 :type 'boolean | |
| 260 :group 'backup) | |
| 261 | |
| 262 (defcustom version-control nil | |
| 263 "*Control use of version numbers for backup files. | |
| 264 t means make numeric backup versions unconditionally. | |
| 265 nil means make them for files that have some already. | |
| 266 `never' means do not make them." | |
| 1333 | 267 :type '(choice (const :tag "Never" never) |
| 268 (const :tag "If existing" nil) | |
| 269 (other :tag "Always" t)) | |
| 428 | 270 :group 'backup |
| 271 :group 'vc) | |
| 272 | |
| 273 ;; This is now defined in efs. | |
| 1333 | 274 ; (defcustom dired-kept-versions 2 |
| 275 ; "*When cleaning directory, number of versions to keep." | |
| 276 ; :type 'integer | |
| 277 ; :group 'backup | |
| 278 ; :group 'dired) | |
| 428 | 279 |
| 2103 | 280 (defcustom delete-old-versions (when noninteractive 'leave) |
| 428 | 281 "*If t, delete excess backup versions silently. |
| 282 If nil, ask confirmation. Any other value prevents any trimming." | |
| 283 :type '(choice (const :tag "Delete" t) | |
| 284 (const :tag "Ask" nil) | |
| 285 (sexp :tag "Leave" :format "%t\n" other)) | |
| 286 :group 'backup) | |
| 287 | |
| 288 (defcustom kept-old-versions 2 | |
| 289 "*Number of oldest versions to keep when a new numbered backup is made." | |
| 290 :type 'integer | |
| 291 :group 'backup) | |
| 292 | |
| 293 (defcustom kept-new-versions 2 | |
| 294 "*Number of newest versions to keep when a new numbered backup is made. | |
| 295 Includes the new backup. Must be > 0" | |
| 296 :type 'integer | |
| 297 :group 'backup) | |
| 298 | |
| 299 (defcustom require-final-newline nil | |
|
5766
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
300 "Whether to add a newline automatically at the end of the file. |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
301 |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
302 A value of t means do this only when the file is about to be saved. |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
303 A value of `visit' means do this right after the file is visited. |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
304 A value of `visit-save' means do it at both of those times. |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
305 Any other non-nil value means ask user whether to add a newline, when saving. |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
306 A value of nil means don't add newlines. |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
307 |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
308 Certain major modes set this locally to the value obtained |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
309 from `mode-require-final-newline'." |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
310 :type '(choice (const :tag "When visiting" visit) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
311 (const :tag "When saving" t) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
312 (const :tag "When visiting or saving" visit-save) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
313 (const :tag "Don't add newlines" nil) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
314 (other :tag "Ask each time" ask)) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
315 :group 'editing-basics |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
316 :version "21.5.35") |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
317 |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
318 (defcustom mode-require-final-newline t |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
319 "Whether to add a newline at end of file, in certain major modes. |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
320 Those modes set `require-final-newline' to this value when you enable them. |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
321 They do so because they are often used for files that are supposed |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
322 to end in newlines, and the question is how to arrange that. |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
323 |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
324 A value of t means do this only when the file is about to be saved. |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
325 A value of `visit' means do this right after the file is visited. |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
326 A value of `visit-save' means do it at both of those times. |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
327 Any other non-nil value means ask user whether to add a newline, when saving. |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
328 |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
329 A value of nil means do not add newlines. That is a risky choice in this |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
330 variable since this value is used for modes for files that ought to have |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
331 final newlines. So if you set this to nil, you must explicitly check and |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
332 add a final newline, whenever you save a file that really needs one." |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
333 :type '(choice (const :tag "When visiting" visit) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
334 (const :tag "When saving" t) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
335 (const :tag "When visiting or saving" visit-save) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
336 (const :tag "Don't add newlines" nil) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
337 (other :tag "Ask each time" ask)) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
338 :group 'editing-basics |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
339 :version "21.5.35") |
| 428 | 340 |
| 341 (defcustom auto-save-default t | |
| 342 "*Non-nil says by default do auto-saving of every file-visiting buffer." | |
| 343 :type 'boolean | |
| 344 :group 'auto-save) | |
| 345 | |
| 346 (defcustom auto-save-visited-file-name nil | |
| 347 "*Non-nil says auto-save a buffer in the file it is visiting, when practical. | |
| 348 Normally auto-save files are written under other names." | |
| 349 :type 'boolean | |
| 350 :group 'auto-save) | |
| 351 | |
| 1333 | 352 (defcustom auto-save-file-name-transforms |
| 353 `(("\\`/[^/]*:\\(.+/\\)*\\(.*\\)" | |
| 354 ,(expand-file-name "\\2" (temp-directory)))) | |
| 355 "*Transforms to apply to buffer file name before making auto-save file name. | |
| 356 Each transform is a list (REGEXP REPLACEMENT): | |
| 357 REGEXP is a regular expression to match against the file name. | |
| 358 If it matches, `replace-match' is used to replace the | |
| 359 matching part with REPLACEMENT. | |
| 360 All the transforms in the list are tried, in the order they are listed. | |
| 361 When one transform applies, its result is final; | |
| 362 no further transforms are tried. | |
| 363 | |
| 4266 | 364 The default value is set up to put the auto-save file into the temporary |
| 365 directory (see the function `temp-directory') for editing a remote file." | |
| 1333 | 366 :group 'auto-save |
| 367 :type '(repeat (list (string :tag "Regexp") (string :tag "Replacement"))) | |
| 368 ;:version "21.1" | |
| 369 ) | |
| 370 | |
| 428 | 371 (defcustom save-abbrevs nil |
| 1333 | 372 "*Non-nil means save word abbrevs too when files are saved. |
| 373 If `silently', don't ask the user before saving. | |
| 1337 | 374 Loading an abbrev file sets this to t." |
| 1333 | 375 :type '(choice (const t) (const nil) (const silently)) |
| 1337 | 376 :group 'abbrev) |
| 377 | |
| 428 | 378 (defcustom find-file-run-dired t |
| 1333 | 379 "*Non-nil means allow `find-file' to visit directories. |
| 380 To visit the directory, `find-file' runs `find-directory-functions'." | |
| 381 :type 'boolean | |
| 382 :group 'find-file) | |
| 383 | |
| 384 (defcustom find-directory-functions '(cvs-dired-noselect dired-noselect) | |
| 385 "*List of functions to try in sequence to visit a directory. | |
| 386 Each function is called with the directory name as the sole argument | |
| 387 and should return either a buffer or nil." | |
| 388 :type '(hook :options (cvs-dired-noselect dired-noselect)) | |
| 428 | 389 :group 'find-file) |
| 390 | |
| 391 ;;;It is not useful to make this a local variable. | |
| 392 ;;;(put 'find-file-not-found-hooks 'permanent-local t) | |
| 393 (defvar find-file-not-found-hooks nil | |
| 394 "List of functions to be called for `find-file' on nonexistent file. | |
| 395 These functions are called as soon as the error is detected. | |
| 1333 | 396 Variable `buffer-file-name' is already set up. |
| 428 | 397 The functions are called in the order given until one of them returns non-nil.") |
| 398 | |
| 399 ;;;It is not useful to make this a local variable. | |
| 400 ;;;(put 'find-file-hooks 'permanent-local t) | |
| 401 (defvar find-file-hooks nil | |
| 402 "List of functions to be called after a buffer is loaded from a file. | |
| 403 The buffer's local variables (if any) will have been processed before the | |
| 404 functions are called.") | |
| 405 | |
| 406 (defvar write-file-hooks nil | |
| 407 "List of functions to be called before writing out a buffer to a file. | |
| 408 If one of them returns non-nil, the file is considered already written | |
| 409 and the rest are not called. | |
| 410 These hooks are considered to pertain to the visited file. | |
| 1333 | 411 So any buffer-local binding of `write-file-hooks' is |
| 412 discarded if you change the visited file name with \\[set-visited-file-name]. | |
| 413 | |
| 414 Don't make this variable buffer-local; instead, use `local-write-file-hooks'. | |
| 428 | 415 See also `write-contents-hooks' and `continue-save-buffer'.") |
| 416 ;;; However, in case someone does make it local... | |
| 417 (put 'write-file-hooks 'permanent-local t) | |
| 418 | |
| 419 (defvar local-write-file-hooks nil | |
| 420 "Just like `write-file-hooks', except intended for per-buffer use. | |
| 421 The functions in this list are called before the ones in | |
| 422 `write-file-hooks'. | |
| 423 | |
| 424 This variable is meant to be used for hooks that have to do with a | |
| 425 particular visited file. Therefore, it is a permanent local, so that | |
| 426 changing the major mode does not clear it. However, calling | |
| 427 `set-visited-file-name' does clear it.") | |
| 428 (make-variable-buffer-local 'local-write-file-hooks) | |
| 429 (put 'local-write-file-hooks 'permanent-local t) | |
| 430 | |
| 431 | |
| 432 ;; #### think about this (added by Sun). | |
| 433 (put 'after-set-visited-file-name-hooks 'permanent-local t) | |
| 434 (defvar after-set-visited-file-name-hooks nil | |
| 435 "List of functions to be called after \\[set-visited-file-name] | |
| 436 or during \\[write-file]. | |
| 444 | 437 You can use this hook to restore local values of `write-file-hooks', |
| 438 `after-save-hook', and `revert-buffer-function', which pertain | |
| 428 | 439 to a specific file and therefore are normally killed by a rename. |
| 444 | 440 Put hooks pertaining to the buffer contents on `write-contents-hooks' |
| 441 and `revert-buffer-insert-file-contents-function'.") | |
| 428 | 442 |
| 443 (defvar write-contents-hooks nil | |
| 444 "List of functions to be called before writing out a buffer to a file. | |
| 445 If one of them returns non-nil, the file is considered already written | |
| 446 and the rest are not called. | |
| 1333 | 447 |
| 448 This variable is meant to be used for hooks that pertain to the | |
| 449 buffer's contents, not to the particular visited file; thus, | |
| 450 `set-visited-file-name' does not clear this variable; but changing the | |
| 451 major mode does clear it. | |
| 452 | |
| 453 This variable automatically becomes buffer-local whenever it is set. | |
| 454 If you use `add-hook' to add elements to the list, use nil for the | |
| 455 LOCAL argument. | |
| 456 | |
| 428 | 457 See also `write-file-hooks' and `continue-save-buffer'.") |
| 1333 | 458 (make-variable-buffer-local 'write-contents-hooks) |
| 428 | 459 |
| 460 ;; XEmacs addition | |
| 461 ;; Energize needed this to hook into save-buffer at a lower level; we need | |
| 462 ;; to provide a new output method, but don't want to have to duplicate all | |
| 463 ;; of the backup file and file modes logic.that does not occur if one uses | |
| 464 ;; a write-file-hook which returns non-nil. | |
| 465 (put 'write-file-data-hooks 'permanent-local t) | |
| 466 (defvar write-file-data-hooks nil | |
| 467 "List of functions to be called to put the bytes on disk. | |
| 468 These functions receive the name of the file to write to as argument. | |
| 469 The default behavior is to call | |
| 470 (write-region (point-min) (point-max) filename nil t) | |
| 471 If one of them returns non-nil, the file is considered already written | |
| 472 and the rest are not called. | |
| 473 These hooks are considered to pertain to the visited file. | |
| 1333 | 474 So any buffer-local binding of `write-file-data-hooks' is |
| 475 discarded if you change the visited file name with \\[set-visited-file-name]. | |
| 428 | 476 See also `write-file-hooks'.") |
| 477 | |
| 478 (defcustom enable-local-variables t | |
| 1333 | 479 "*Control use of local variables in files you visit. |
| 428 | 480 The value can be t, nil or something else. |
| 1333 | 481 A value of t means file local variables specifications are obeyed; |
| 428 | 482 nil means they are ignored; anything else means query. |
| 1333 | 483 This variable also controls use of major modes specified in |
| 484 a -*- line. | |
| 485 | |
| 486 The command \\[normal-mode], when used interactively, | |
| 487 always obeys file local variable specifications and the -*- line, | |
| 428 | 488 and ignores this variable." |
| 489 :type '(choice (const :tag "Obey" t) | |
| 490 (const :tag "Ignore" nil) | |
| 491 (sexp :tag "Query" :format "%t\n" other)) | |
| 492 :group 'find-file) | |
| 493 | |
| 1333 | 494 ; (defvar local-enable-local-variables t |
| 495 ; "Like `enable-local-variables' but meant for buffer-local bindings. | |
| 496 ; The meaningful values are nil and non-nil. The default is non-nil. | |
| 497 ; If a major mode sets this to nil, buffer-locally, then any local | |
| 498 ; variables list in the file will be ignored. | |
| 499 | |
| 500 ; This variable does not affect the use of major modes | |
| 501 ; specified in a -*- line.") | |
| 502 | |
| 428 | 503 (defcustom enable-local-eval 'maybe |
| 504 "*Control processing of the \"variable\" `eval' in a file's local variables. | |
| 505 The value can be t, nil or something else. | |
| 506 A value of t means obey `eval' variables; | |
| 507 nil means ignore them; anything else means query. | |
| 508 | |
| 509 The command \\[normal-mode] always obeys local-variables lists | |
| 510 and ignores this variable." | |
| 511 :type '(choice (const :tag "Obey" t) | |
| 512 (const :tag "Ignore" nil) | |
| 513 (sexp :tag "Query" :format "%t\n" other)) | |
| 514 :group 'find-file) | |
| 515 | |
| 516 ;; Avoid losing in versions where CLASH_DETECTION is disabled. | |
| 517 (or (fboundp 'lock-buffer) | |
| 518 (defalias 'lock-buffer 'ignore)) | |
| 519 (or (fboundp 'unlock-buffer) | |
| 520 (defalias 'unlock-buffer 'ignore)) | |
| 1333 | 521 (or (fboundp 'file-locked-p) |
| 522 (defalias 'file-locked-p 'ignore)) | |
| 523 | |
| 524 (defvar view-read-only nil | |
| 525 "*Non-nil means buffers visiting files read-only, do it in view mode.") | |
| 428 | 526 |
| 527 ;;FSFmacs bastardized ange-ftp cruft | |
| 528 ;(defun ange-ftp-completion-hook-function (op &rest args) | |
| 1333 | 529 ; "Provides support for ange-ftp host name completion. |
| 530 ;Runs the usual ange-ftp hook, but only for completion operations." | |
| 531 ; ;; Having this here avoids the need to load ange-ftp when it's not | |
| 532 ; ;; really in use. | |
| 428 | 533 ; (if (memq op '(file-name-completion file-name-all-completions)) |
| 534 ; (apply 'ange-ftp-hook-function op args) | |
| 535 ; (let ((inhibit-file-name-handlers | |
| 536 ; (cons 'ange-ftp-completion-hook-function | |
| 537 ; (and (eq inhibit-file-name-operation op) | |
| 538 ; inhibit-file-name-handlers))) | |
| 539 ; (inhibit-file-name-operation op)) | |
| 540 ; (apply op args)) | |
| 541 | |
| 1333 | 542 ;; FSF 21.2: |
| 543 ;This function's standard definition is trivial; it just returns the argument. | |
| 544 ;However, on some systems, the function is redefined with a definition | |
| 545 ;that really does change some file names to canonicalize certain | |
| 546 ;patterns and to guarantee valid names." | |
| 428 | 547 (defun convert-standard-filename (filename) |
| 464 | 548 "Convert a standard file's name to something suitable for the current OS." |
| 549 (if (eq system-type 'windows-nt) | |
| 550 (let ((name (copy-sequence filename)) | |
| 551 (start 0)) | |
| 552 ;; leave ':' if part of drive specifier | |
| 819 | 553 (if (and (> (length name) 1) |
| 554 (eq (aref name 1) ?:)) | |
| 464 | 555 (setq start 2)) |
| 556 ;; destructively replace invalid filename characters with ! | |
| 557 (while (string-match "[?*:<>|\"\000-\037]" name start) | |
| 558 (aset name (match-beginning 0) ?!) | |
| 559 (setq start (match-end 0))) | |
| 560 ;; FSF: [convert directory separators to Windows format ...] | |
| 561 ;; unneeded in XEmacs. | |
| 562 name) | |
| 563 filename)) | |
| 564 | |
| 428 | 565 |
| 566 (defun pwd () | |
| 567 "Show the current default directory." | |
| 568 (interactive nil) | |
| 569 (message "Directory %s" default-directory)) | |
| 570 | |
| 571 (defvar cd-path nil | |
| 572 "Value of the CDPATH environment variable, as a list. | |
| 573 Not actually set up until the first time you use it.") | |
| 574 | |
| 575 (defvar cdpath-previous nil | |
| 576 "Prior value of the CDPATH environment variable.") | |
| 577 | |
| 578 (defun parse-colon-path (cd-path) | |
| 579 "Explode a colon-separated search path into a list of directory names. | |
| 580 | |
| 581 If you think you want to use this, you probably don't. This function | |
| 582 is provided for backward compatibility. A more robust implementation | |
| 583 of the same functionality is available as `split-path', which see." | |
| 584 (and cd-path | |
| 585 (let (cd-list (cd-start 0) cd-colon) | |
| 586 (setq cd-path (concat cd-path path-separator)) | |
| 587 (while (setq cd-colon (string-match path-separator cd-path cd-start)) | |
| 588 (setq cd-list | |
| 589 (nconc cd-list | |
| 590 (list (if (= cd-start cd-colon) | |
| 591 nil | |
| 592 (substitute-in-file-name | |
| 593 (file-name-as-directory | |
| 594 (substring cd-path cd-start cd-colon))))))) | |
| 595 (setq cd-start (+ cd-colon 1))) | |
| 596 cd-list))) | |
| 597 | |
| 598 (defun cd-absolute (dir) | |
| 599 "Change current directory to given absolute file name DIR." | |
| 600 ;; Put the name into directory syntax now, | |
| 601 ;; because otherwise expand-file-name may give some bad results. | |
| 602 (setq dir (file-name-as-directory dir)) | |
| 603 ;; XEmacs change: stig@hackvan.com | |
| 604 (if find-file-use-truenames | |
| 605 (setq dir (file-truename dir))) | |
| 606 (setq dir (abbreviate-file-name (expand-file-name dir))) | |
| 607 (cond ((not (file-directory-p dir)) | |
| 1333 | 608 (if (file-exists-p dir) |
| 609 (error "%s is not a directory" dir) | |
| 610 (error "%s: no such directory" dir))) | |
| 428 | 611 ;; this breaks ange-ftp, which doesn't (can't?) overload `file-executable-p'. |
| 612 ;;((not (file-executable-p dir)) | |
| 613 ;; (error "Cannot cd to %s: Permission denied" dir)) | |
| 614 (t | |
| 615 (setq default-directory dir)))) | |
| 616 | |
| 617 (defun cd (dir) | |
| 618 "Make DIR become the current buffer's default directory. | |
| 619 If your environment includes a `CDPATH' variable, try each one of that | |
| 620 colon-separated list of directories when resolving a relative directory name." | |
| 621 (interactive | |
| 622 ;; XEmacs change? (read-file-name => read-directory-name) | |
| 623 (list (read-directory-name "Change default directory: " | |
| 624 default-directory default-directory | |
| 625 (and (member cd-path '(nil ("./"))) | |
| 626 (null (getenv "CDPATH")))))) | |
|
4645
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
627 |
|
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
628 (let* ((cdpath-current (getenv "CDPATH")) |
|
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
629 (trypath (if cdpath-current |
|
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
630 (split-path (setq cdpath-previous cdpath-current)) |
|
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
631 nil))) ; null list |
|
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
632 (if (file-name-absolute-p dir) |
|
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
633 (cd-absolute (expand-file-name dir)) |
|
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
634 ;; XEmacs change. I'm not sure respecting CDPATH is the right thing to |
|
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
635 ;; do under Windows. |
|
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
636 (unless (and cd-path (equal cdpath-current cdpath-previous)) |
|
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
637 (setq cd-path (or (and trypath |
|
4640
8cef85a39d2c
Make CDPATH handling portable, accept entries not matching "/$".
Aidan Kehoe <kehoea@parhasard.net>
parents:
4400
diff
changeset
|
638 (mapcar #'file-name-as-directory trypath)) |
|
4645
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
639 (list (file-name-as-directory ""))))) |
|
5270
3acaa0fc09be
Use #'some, #'every, etc. for composing boolean operations on lists.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5249
diff
changeset
|
640 (or (some #'(lambda (x) |
|
3acaa0fc09be
Use #'some, #'every, etc. for composing boolean operations on lists.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5249
diff
changeset
|
641 (let ((f (expand-file-name (concat x dir)))) |
|
3acaa0fc09be
Use #'some, #'every, etc. for composing boolean operations on lists.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5249
diff
changeset
|
642 (when (file-directory-p f) (cd-absolute f)))) |
|
3acaa0fc09be
Use #'some, #'every, etc. for composing boolean operations on lists.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5249
diff
changeset
|
643 cd-path) |
|
4645
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
644 ;; jwz: give a better error message to those of us with the |
|
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
645 ;; good taste not to use a kludge like $CDPATH. |
|
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
646 (if (equal cd-path '("./")) |
|
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
647 (error "No such directory: %s" (expand-file-name dir)) |
|
f2a991ff6db0
Do not #'split-path on nil #'getenv result. <877hz7lzrt.fsf@yahoo.com.cn>
Jerry James <james@xemacs.org>
parents:
4640
diff
changeset
|
648 (error "Directory not found in $CDPATH: %s" dir)))))) |
| 428 | 649 |
| 650 (defun load-file (file) | |
| 651 "Load the Lisp file named FILE." | |
| 1333 | 652 ;; This is a case where .elc makes a lot of sense. |
| 653 (interactive (list (let ((completion-ignored-extensions | |
| 654 (remove ".elc" completion-ignored-extensions))) | |
| 655 (read-file-name "Load file: ")))) | |
| 428 | 656 (load (expand-file-name file) nil nil t)) |
| 657 | |
| 658 ; We now dump utils/lib-complete.el which has improved versions of this. | |
| 659 ;(defun load-library (library) | |
| 660 ; "Load the library named LIBRARY. | |
| 661 ;This is an interface to the function `load'." | |
| 662 ; (interactive "sLoad library: ") | |
| 663 ; (load library)) | |
| 664 ; | |
| 665 ;(defun find-library (library) | |
| 666 ; "Find the library of Lisp code named LIBRARY. | |
| 667 ;This searches `load-path' for a file named either \"LIBRARY\" or \"LIBRARY.el\"." | |
| 668 ; (interactive "sFind library file: ") | |
| 669 ; (let ((f (locate-file library load-path ":.el:"))) | |
| 670 ; (if f | |
| 671 ; (find-file f) | |
| 672 ; (error "Couldn't locate library %s" library)))) | |
| 673 | |
| 1333 | 674 (defun file-local-copy (file) |
| 428 | 675 "Copy the file FILE into a temporary file on this machine. |
| 676 Returns the name of the local copy, or nil, if FILE is directly | |
| 677 accessible." | |
| 1333 | 678 ;; This formerly had an optional BUFFER argument that wasn't used by |
| 679 ;; anything. | |
| 428 | 680 (let ((handler (find-file-name-handler file 'file-local-copy))) |
| 681 (if handler | |
| 682 (funcall handler 'file-local-copy file) | |
| 683 nil))) | |
| 684 | |
| 685 ;; XEmacs change block | |
| 686 ; We have this in C and use the realpath() system call. | |
| 687 | |
| 688 ;(defun file-truename (filename &optional counter prev-dirs) | |
| 689 ; [... lots of code snipped ...] | |
| 690 ; filename)) | |
| 691 | |
| 692 ;; XEmacs addition. Called from `insert-file-contents-internal' | |
| 693 ;; at the appropriate time. | |
| 694 (defun compute-buffer-file-truename (&optional buffer) | |
| 695 "Recompute BUFFER's value of `buffer-file-truename' | |
| 696 based on the current value of `buffer-file-name'. | |
| 697 BUFFER defaults to the current buffer if unspecified." | |
| 698 (save-excursion | |
| 699 (set-buffer (or buffer (current-buffer))) | |
| 700 (cond ((null buffer-file-name) | |
| 701 (setq buffer-file-truename nil)) | |
| 702 ((setq buffer-file-truename (file-truename buffer-file-name)) | |
| 703 ;; it exists, we're done. | |
| 704 nil) | |
| 705 (t | |
| 706 ;; the file doesn't exist, but maybe the directory does. | |
| 707 (let* ((dir (file-name-directory buffer-file-name)) | |
| 708 (truedir (file-truename dir))) | |
| 709 (if truedir (setq dir truedir)) | |
| 710 (setq buffer-file-truename | |
| 711 (expand-file-name (file-name-nondirectory buffer-file-name) | |
| 712 dir))))) | |
| 713 (if (and find-file-use-truenames buffer-file-truename) | |
| 714 (setq buffer-file-name (abbreviate-file-name buffer-file-truename) | |
| 715 default-directory (file-name-directory buffer-file-name))) | |
| 716 buffer-file-truename)) | |
| 717 ;; End XEmacs change block | |
| 718 | |
| 719 (defun file-chase-links (filename) | |
| 720 "Chase links in FILENAME until a name that is not a link. | |
| 721 Does not examine containing directories for links, | |
| 722 unlike `file-truename'." | |
| 723 (let (tem (count 100) (newname filename)) | |
| 724 (while (setq tem (file-symlink-p newname)) | |
| 725 (save-match-data | |
| 726 (if (= count 0) | |
| 727 (error "Apparent cycle of symbolic links for %s" filename)) | |
| 728 ;; In the context of a link, `//' doesn't mean what XEmacs thinks. | |
| 729 (while (string-match "//+" tem) | |
| 1333 | 730 (setq tem (replace-match "/" nil nil tem))) |
| 428 | 731 ;; Handle `..' by hand, since it needs to work in the |
| 732 ;; target of any directory symlink. | |
| 733 ;; This code is not quite complete; it does not handle | |
| 734 ;; embedded .. in some cases such as ./../foo and foo/bar/../../../lose. | |
| 735 (while (string-match "\\`\\.\\./" tem) ;#### Unix specific | |
| 736 (setq tem (substring tem 3)) | |
| 737 (setq newname (file-name-as-directory | |
| 738 ;; Do the .. by hand. | |
| 739 (directory-file-name | |
| 740 (file-name-directory | |
| 741 ;; Chase links in the default dir of the symlink. | |
| 742 (file-chase-links | |
| 743 (directory-file-name | |
| 744 (file-name-directory newname)))))))) | |
| 745 (setq newname (expand-file-name tem (file-name-directory newname))) | |
| 746 (setq count (1- count)))) | |
| 747 newname)) | |
| 4266 | 748 |
| 749 (defun make-temp-file (prefix &optional dir-flag suffix) | |
| 750 "Create a temporary file. | |
| 751 The returned file name (created by appending some random characters at the | |
| 752 end of PREFIX, and expanding against the return value of `temp-directory' if | |
| 753 necessary), is guaranteed to point to a newly created empty file. You can | |
| 754 then use `write-region' to write new data into the file. | |
| 755 | |
| 756 If DIR-FLAG is non-nil, create a new empty directory instead of a file. | |
| 757 | |
| 758 If SUFFIX is non-nil, add that at the end of the file name. | |
| 759 | |
|
5384
3889ef128488
Fix misspelled words, and some grammar, across the entire source tree.
Jerry James <james@xemacs.org>
parents:
5369
diff
changeset
|
760 This function is analogous to mkstemp(3) under POSIX, avoiding the race |
| 4266 | 761 condition between testing for the existence of the generated filename (under |
| 762 POSIX with mktemp(3), under Emacs Lisp with `make-temp-name') and creating | |
| 763 it." | |
| 764 (let ((umask (default-file-modes)) | |
| 765 (temporary-file-directory (temp-directory)) | |
| 766 file) | |
| 767 (unwind-protect | |
| 768 (progn | |
| 769 ;; Create temp files with strict access rights. It's easy to | |
| 770 ;; loosen them later, whereas it's impossible to close the | |
| 771 ;; time-window of loose permissions otherwise. | |
| 772 (set-default-file-modes #o700) | |
| 773 (while (condition-case () | |
| 774 (progn | |
| 775 (setq file | |
| 776 (make-temp-name | |
| 777 (expand-file-name prefix | |
| 778 temporary-file-directory))) | |
| 779 (if suffix | |
| 780 (setq file (concat file suffix))) | |
| 781 (if dir-flag | |
| 782 (make-directory file) | |
| 783 (write-region "" nil file nil 'silent nil 'excl)) | |
| 784 nil) | |
| 785 (file-already-exists t)) | |
| 786 ;; the file was somehow created by someone else between | |
| 787 ;; `make-temp-name' and `write-region', let's try again. | |
| 788 nil) | |
| 789 file) | |
| 790 ;; Reset the umask. | |
| 791 (set-default-file-modes umask)))) | |
| 792 | |
| 428 | 793 |
| 794 (defun switch-to-other-buffer (arg) | |
| 795 "Switch to the previous buffer. With a numeric arg, n, switch to the nth | |
| 796 most recent buffer. With an arg of 0, buries the current buffer at the | |
| 797 bottom of the buffer stack." | |
| 798 (interactive "p") | |
| 799 (if (eq arg 0) | |
| 800 (bury-buffer (current-buffer))) | |
| 801 (switch-to-buffer | |
| 802 (if (<= arg 1) (other-buffer (current-buffer)) | |
| 803 (nth (1+ arg) (buffer-list))))) | |
| 804 | |
| 1333 | 805 ;;FSF 21.2 |
| 806 ;Optional second arg NORECORD non-nil means | |
| 807 ;do not put this buffer at the front of the list of recently selected ones. | |
| 808 (defun switch-to-buffer-other-window (buffer) ;;FSF 21.2: &optional norecord | |
| 809 "Select buffer BUFFER in another window. | |
| 810 | |
| 811 This uses the function `display-buffer' as a subroutine; see its | |
| 812 documentation for additional customization information." | |
| 813 (interactive "BSwitch to buffer in other window: ") | |
| 428 | 814 (let ((pop-up-windows t)) |
| 815 ;; XEmacs: this used to have (selected-frame) as the third argument, | |
| 816 ;; but this is obnoxious. If the user wants the buffer in a | |
| 817 ;; different frame, then it should be this way. | |
| 818 | |
| 819 ;; Change documented above undone --mrb | |
| 820 (pop-to-buffer buffer t (selected-frame)))) | |
| 1333 | 821 ;(pop-to-buffer buffer t norecord))) |
| 822 | |
| 823 ;; FSF 21.2: | |
| 824 ; (defun switch-to-buffer-other-frame (buffer &optional norecord) | |
| 825 ; "Switch to buffer BUFFER in another frame. | |
| 826 ; Optional second arg NORECORD non-nil means | |
| 827 ; do not put this buffer at the front of the list of recently selected ones. | |
| 828 | |
| 829 ; This uses the function `display-buffer' as a subroutine; see its | |
| 830 ; documentation for additional customization information." | |
| 831 ; (interactive "BSwitch to buffer in other frame: ") | |
| 832 ; (let ((pop-up-frames t)) | |
| 833 ; (pop-to-buffer buffer t norecord) | |
| 834 ; (raise-frame (window-frame (selected-window))))) | |
| 428 | 835 |
| 836 (defun switch-to-buffer-other-frame (buffer) | |
| 1333 | 837 "Switch to buffer BUFFER in a newly-created frame. |
| 838 | |
| 839 This uses the function `display-buffer' as a subroutine; see its | |
| 840 documentation for additional customization information." | |
| 428 | 841 (interactive "BSwitch to buffer in other frame: ") |
| 842 (let* ((name (get-frame-name-for-buffer buffer)) | |
| 843 (frame (make-frame (if name | |
| 844 (list (cons 'name (symbol-name name))))))) | |
| 845 (pop-to-buffer buffer t frame) | |
| 846 (make-frame-visible frame) | |
| 847 buffer)) | |
| 848 | |
| 771 | 849 (defun switch-to-next-buffer (&optional n) |
| 850 "Switch to the next-most-recent buffer. | |
| 851 This essentially rotates the buffer list forward. | |
| 852 N (interactively, the prefix arg) specifies how many times to rotate | |
| 853 forward, and defaults to 1. Buffers whose name begins with a space | |
| 854 \(i.e. \"invisible\" buffers) are ignored." | |
| 855 ;; Here is a different interactive spec. Look up the function | |
| 856 ;; `interactive' (i.e. `C-h f interactive') to understand how this | |
| 857 ;; all works. | |
| 858 (interactive "p") | |
| 859 (dotimes (n (or n 1)) | |
| 860 (loop | |
| 861 do (bury-buffer (car (buffer-list))) | |
| 862 while (funcall buffers-tab-omit-function (car (buffer-list)))) | |
| 863 (switch-to-buffer (car (buffer-list))))) | |
| 864 | |
| 865 (defun switch-to-previous-buffer (&optional n) | |
| 866 "Switch to the previously most-recent buffer. | |
| 867 This essentially rotates the buffer list backward. | |
| 868 N (interactively, the prefix arg) specifies how many times to rotate | |
| 869 backward, and defaults to 1. Buffers whose name begins with a space | |
| 870 \(i.e. \"invisible\" buffers) are ignored." | |
| 871 (interactive "p") | |
| 872 (dotimes (n (or n 1)) | |
| 873 (loop | |
| 874 do (switch-to-buffer (car (last (buffer-list)))) | |
| 875 while (funcall buffers-tab-omit-function (car (buffer-list)))))) | |
| 876 | |
| 877 (defun switch-to-next-buffer-in-group (&optional n) | |
| 878 "Switch to the next-most-recent buffer in the current group. | |
| 879 This essentially rotates the buffer list forward. | |
| 880 N (interactively, the prefix arg) specifies how many times to rotate | |
| 881 forward, and defaults to 1. Buffers whose name begins with a space | |
| 882 \(i.e. \"invisible\" buffers) are ignored." | |
| 883 (interactive "p") | |
| 884 (dotimes (n (or n 1)) | |
| 885 (let ((curbuf (car (buffer-list)))) | |
| 886 (loop | |
| 887 do (bury-buffer (car (buffer-list))) | |
| 888 while (or (funcall buffers-tab-omit-function (car (buffer-list))) | |
| 889 (not (funcall buffers-tab-selection-function | |
| 890 curbuf (car (buffer-list))))))) | |
| 891 (switch-to-buffer (car (buffer-list))))) | |
| 892 | |
| 893 (defun switch-to-previous-buffer-in-group (&optional n) | |
| 894 "Switch to the previously most-recent buffer in the current group. | |
| 895 This essentially rotates the buffer list backward. | |
| 896 N (interactively, the prefix arg) specifies how many times to rotate | |
| 897 backward, and defaults to 1. Buffers whose name begins with a space | |
| 898 \(i.e. \"invisible\" buffers) are ignored." | |
| 899 (interactive "p") | |
| 900 (dotimes (n (or n 1)) | |
| 901 (let ((curbuf (car (buffer-list)))) | |
| 902 (loop | |
| 903 do (switch-to-buffer (car (last (buffer-list)))) | |
| 904 while (or (funcall buffers-tab-omit-function (car (buffer-list))) | |
| 905 (not (funcall buffers-tab-selection-function | |
| 906 curbuf (car (buffer-list))))))))) | |
| 907 | |
|
4648
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
908 (defmacro find-file-create-switch-thunk (switch-function) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
909 "Mark buffer modified if needed, then call SWITCH-FUNCTION. |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
910 |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
911 The buffer will be marked modified if the file associated with the buffer |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
912 does not exist. This means that \\[find-file] on a non-existent file will |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
913 create a modified buffer, making \\[save-buffer] sufficient to create the |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
914 file. |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
915 |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
916 SWITCH-FUNCTION should be `switch-to-buffer' or a related function. This |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
917 function (that is, `find-file-create-switch-thunk') is implemented as a macro |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
918 because we don't have built-in lexical scope, a closure created with |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
919 `lexical-let' will always run as interpreted code. Though functions created |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
920 by this macro are unlikely to be called in performance-critical contexts. |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
921 |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
922 This function may be called from functions related to `find-file', as well |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
923 as `find-file' itself." |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
924 `(function |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
925 (lambda (buffer) |
|
4655
13273cffca2a
Avoid errors in Dired when opening directories.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4649
diff
changeset
|
926 (unless (and (buffer-file-name buffer) |
|
13273cffca2a
Avoid errors in Dired when opening directories.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4649
diff
changeset
|
927 (file-exists-p (buffer-file-name buffer))) |
|
4648
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
928 ;; XEmacs: nonexistent file--qualifies as a modification to the |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
929 ;; buffer. |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
930 (set-buffer-modified-p t buffer)) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
931 (,switch-function buffer)))) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
932 |
| 1333 | 933 (defun find-file (filename &optional codesys wildcards) |
| 428 | 934 "Edit file FILENAME. |
| 771 | 935 Switch to a buffer visiting file FILENAME, creating one if none already |
| 936 exists. Optional second argument specifies the coding system to use when | |
| 937 decoding the file. Interactively, with a prefix argument, you will be | |
| 938 prompted for the coding system. | |
| 939 | |
| 940 If you do not explicitly specify a coding system, the coding system | |
| 941 is determined as follows: | |
| 942 | |
| 943 1. `coding-system-for-read', if non-nil. (This is used by Lisp programs to | |
| 944 temporarily set an overriding coding system and should almost never | |
| 945 apply here in `find-file'.) | |
| 946 2. The result of `insert-file-contents-pre-hook', if non-nil. (This is a | |
| 947 complex interface for handling special cases.) | |
| 948 3. The matching value for this filename from `file-coding-system-alist', | |
| 949 if any. (This lets you specify the coding system to be used for | |
| 950 files with particular extensions, names, etc.) | |
| 951 4. `buffer-file-coding-system-for-read', if non-nil. (This is the global | |
| 952 default -- normally `undecided', so the built-in auto-detection | |
| 953 mechanism can do its thing.) | |
| 954 5. The coding system 'raw-text. | |
| 955 | |
| 956 See `insert-file-contents' for more details about how the process of | |
| 1333 | 957 determining the coding system works. |
| 958 | |
| 959 Interactively, or if WILDCARDS is non-nil in a call from Lisp, | |
| 960 expand wildcards (if any) and visit multiple files. Wildcard expansion | |
| 1745 | 961 can be suppressed by setting `find-file-wildcards' to `nil'." |
| 1333 | 962 (interactive (list (read-file-name "Find file: ") |
| 963 (and current-prefix-arg | |
| 964 (read-coding-system "Coding system: ")) | |
| 965 t)) | |
|
4648
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
966 (and codesys (setq codesys (check-coding-system codesys))) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
967 (let* ((coding-system-for-read (or codesys coding-system-for-read)) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
968 (value (find-file-noselect filename nil nil wildcards)) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
969 (thunk (find-file-create-switch-thunk switch-to-buffer))) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
970 (if (listp value) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
971 (mapcar thunk (nreverse value)) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
972 (funcall thunk value)))) |
| 1333 | 973 |
| 974 (defun find-file-other-window (filename &optional codesys wildcards) | |
| 428 | 975 "Edit file FILENAME, in another window. |
| 771 | 976 May create a new window, or reuse an existing one. See the function |
| 977 `display-buffer'. Optional second argument specifies the coding system to | |
| 978 use when decoding the file. Interactively, with a prefix argument, you | |
| 979 will be prompted for the coding system." | |
| 1333 | 980 (interactive (list (read-file-name "Find file in other window: ") |
| 981 (and current-prefix-arg | |
| 982 (read-coding-system "Coding system: ")) | |
| 983 t)) | |
|
4648
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
984 (and codesys (setq codesys (check-coding-system codesys))) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
985 (let* ((coding-system-for-read (or codesys coding-system-for-read)) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
986 (value (find-file-noselect filename nil nil wildcards)) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
987 (list (and (listp value) (nreverse value))) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
988 (other-window-thunk (find-file-create-switch-thunk |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
989 switch-to-buffer-other-window))) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
990 (if list |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
991 (cons |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
992 (funcall other-window-thunk (car list)) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
993 (mapcar (find-file-create-switch-thunk switch-to-buffer) (cdr list))) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
994 (funcall other-window-thunk value)))) |
| 1333 | 995 |
| 996 (defun find-file-other-frame (filename &optional codesys wildcards) | |
| 428 | 997 "Edit file FILENAME, in a newly-created frame. |
| 771 | 998 Optional second argument specifies the coding system to use when decoding |
| 999 the file. Interactively, with a prefix argument, you will be prompted for | |
| 1000 the coding system." | |
| 1333 | 1001 (interactive (list (read-file-name "Find file in other frame: ") |
| 1002 (and current-prefix-arg | |
| 1003 (read-coding-system "Coding system: ")) | |
| 1004 t)) | |
|
4648
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1005 (and codesys (setq codesys (check-coding-system codesys))) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1006 (let* ((coding-system-for-read (or codesys coding-system-for-read)) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1007 (value (find-file-noselect filename nil nil wildcards)) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1008 (list (and (listp value) (nreverse value))) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1009 (other-frame-thunk (find-file-create-switch-thunk |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1010 switch-to-buffer-other-frame))) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1011 (if list |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1012 (cons |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1013 (funcall other-frame-thunk (car list)) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1014 (mapcar (find-file-create-switch-thunk switch-to-buffer) (cdr list))) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1015 (funcall other-frame-thunk value)))) |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1016 |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1017 ;; No need to keep this macro around in the dumped executable. |
|
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1018 (unintern 'find-file-create-switch-thunk) |
| 1333 | 1019 |
| 1020 (defun find-file-read-only (filename &optional codesys wildcards) | |
| 428 | 1021 "Edit file FILENAME but don't allow changes. |
| 1022 Like \\[find-file] but marks buffer as read-only. | |
| 1023 Use \\[toggle-read-only] to permit editing. | |
| 771 | 1024 Optional second argument specifies the coding system to use when decoding |
| 1025 the file. Interactively, with a prefix argument, you will be prompted for | |
| 1026 the coding system." | |
| 1333 | 1027 (interactive (list (read-file-name "Find file read-only: ") |
| 1028 (and current-prefix-arg | |
| 1029 (read-coding-system "Coding system: ")) | |
| 1030 t)) | |
|
4648
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1031 (let ((value (find-file filename codesys wildcards))) |
|
5369
4141aeddc55b
Eliminate byte-compile warnings, core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
1032 (mapc #'(lambda (buffer) |
|
4141aeddc55b
Eliminate byte-compile warnings, core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
1033 (set-symbol-value-in-buffer 'buffer-read-only t buffer)) |
|
4141aeddc55b
Eliminate byte-compile warnings, core Lisp.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5366
diff
changeset
|
1034 (if (listp value) value (list value))) |
|
4648
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1035 value)) |
| 428 | 1036 |
| 1333 | 1037 (defun find-file-read-only-other-window (filename &optional codesys wildcards) |
| 428 | 1038 "Edit file FILENAME in another window but don't allow changes. |
| 1039 Like \\[find-file-other-window] but marks buffer as read-only. | |
| 1040 Use \\[toggle-read-only] to permit editing. | |
| 771 | 1041 Optional second argument specifies the coding system to use when decoding |
| 1042 the file. Interactively, with a prefix argument, you will be prompted for | |
| 1043 the coding system." | |
| 1333 | 1044 (interactive (list (read-file-name "Find file read-only other window: ") |
| 1045 (and current-prefix-arg | |
| 1046 (read-coding-system "Coding system: ")) | |
| 1047 t)) | |
|
4648
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1048 (find-file-other-window filename codesys wildcards) |
| 428 | 1049 (setq buffer-read-only t) |
| 1050 (current-buffer)) | |
| 1051 | |
| 1333 | 1052 (defun find-file-read-only-other-frame (filename &optional codesys wildcards) |
| 428 | 1053 "Edit file FILENAME in another frame but don't allow changes. |
| 1054 Like \\[find-file-other-frame] but marks buffer as read-only. | |
| 1055 Use \\[toggle-read-only] to permit editing. | |
| 771 | 1056 Optional second argument specifies the coding system to use when decoding |
| 1057 the file. Interactively, with a prefix argument, you will be prompted for | |
| 1058 the coding system." | |
| 1333 | 1059 (interactive (list (read-file-name "Find file read-only other frame: ") |
| 1060 (and current-prefix-arg | |
| 1061 (read-coding-system "Coding system: ")) | |
| 1062 t)) | |
|
4648
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1063 (find-file-other-frame filename codesys wildcards) |
| 428 | 1064 (setq buffer-read-only t) |
| 1065 (current-buffer)) | |
| 1066 | |
| 1067 (defun find-alternate-file-other-window (filename &optional codesys) | |
| 1068 "Find file FILENAME as a replacement for the file in the next window. | |
| 771 | 1069 This command does not select that window. Optional second argument |
| 1070 specifies the coding system to use when decoding the file. Interactively, | |
| 428 | 1071 with a prefix argument, you will be prompted for the coding system." |
| 1072 (interactive | |
| 1073 (save-selected-window | |
| 1074 (other-window 1) | |
| 1075 (let ((file buffer-file-name) | |
| 1076 (file-name nil) | |
| 1077 (file-dir nil)) | |
| 1078 (and file | |
| 1079 (setq file-name (file-name-nondirectory file) | |
| 1080 file-dir (file-name-directory file))) | |
| 1081 (list (read-file-name | |
| 1082 "Find alternate file: " file-dir nil nil file-name) | |
| 771 | 1083 (if current-prefix-arg (read-coding-system "Coding-system: ")))))) |
| 428 | 1084 (if (one-window-p) |
|
4648
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1085 (find-file-other-window filename codesys) |
| 428 | 1086 (save-selected-window |
| 1087 (other-window 1) | |
| 1088 (find-alternate-file filename codesys)))) | |
| 1089 | |
| 1090 (defun find-alternate-file (filename &optional codesys) | |
| 1091 "Find file FILENAME, select its buffer, kill previous buffer. | |
| 1092 If the current buffer now contains an empty file that you just visited | |
| 771 | 1093 \(presumably by mistake), use this command to visit the file you really |
| 1094 want. Optional second argument specifies the coding system to use when | |
| 1095 decoding the file. Interactively, with a prefix argument, you will be | |
| 1096 prompted for the coding system." | |
| 428 | 1097 (interactive |
| 1098 (let ((file buffer-file-name) | |
| 1099 (file-name nil) | |
| 1100 (file-dir nil)) | |
| 1101 (and file | |
| 1102 (setq file-name (file-name-nondirectory file) | |
| 1103 file-dir (file-name-directory file))) | |
| 1104 (list (read-file-name | |
| 1105 "Find alternate file: " file-dir nil nil file-name) | |
| 771 | 1106 (if current-prefix-arg (read-coding-system "Coding-system: "))))) |
| 428 | 1107 (and (buffer-modified-p) (buffer-file-name) |
| 1108 ;; (not buffer-read-only) | |
| 1109 (not (yes-or-no-p (format | |
| 1110 "Buffer %s is modified; kill anyway? " | |
| 1111 (buffer-name)))) | |
| 1112 (error "Aborted")) | |
| 1113 (let ((obuf (current-buffer)) | |
| 1114 (ofile buffer-file-name) | |
| 1115 (onum buffer-file-number) | |
| 1116 (otrue buffer-file-truename) | |
| 1117 (oname (buffer-name))) | |
| 1118 (if (get-buffer " **lose**") | |
| 1119 (kill-buffer " **lose**")) | |
| 1120 (rename-buffer " **lose**") | |
| 1121 (setq buffer-file-name nil) | |
| 1122 (setq buffer-file-number nil) | |
| 1123 (setq buffer-file-truename nil) | |
| 1124 (unwind-protect | |
| 1125 (progn | |
| 1126 (unlock-buffer) | |
|
4648
907697569a49
Mark buffers modified in #'find-file if nonexistent file; fix other bugs.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4645
diff
changeset
|
1127 (find-file filename codesys)) |
| 428 | 1128 (cond ((eq obuf (current-buffer)) |
| 1129 (setq buffer-file-name ofile) | |
| 1130 (setq buffer-file-number onum) | |
| 1131 (setq buffer-file-truename otrue) | |
| 1132 (lock-buffer) | |
| 1133 (rename-buffer oname)))) | |
| 1134 (or (eq (current-buffer) obuf) | |
| 1135 (kill-buffer obuf)))) | |
| 1333 | 1136 |
| 428 | 1137 (defun create-file-buffer (filename) |
| 1138 "Create a suitably named buffer for visiting FILENAME, and return it. | |
| 1139 FILENAME (sans directory) is used unchanged if that name is free; | |
| 1140 otherwise a string <2> or <3> or ... is appended to get an unused name." | |
| 1141 (let ((handler (find-file-name-handler filename 'create-file-buffer))) | |
| 1142 (if handler | |
| 1143 (funcall handler 'create-file-buffer filename) | |
| 1144 (let ((lastname (file-name-nondirectory filename))) | |
| 1145 (if (string= lastname "") | |
| 1146 (setq lastname filename)) | |
| 1147 (generate-new-buffer lastname))))) | |
| 1148 | |
| 1149 (defun generate-new-buffer (name) | |
| 1150 "Create and return a buffer with a name based on NAME. | |
| 1151 Choose the buffer's name using `generate-new-buffer-name'." | |
| 1152 (get-buffer-create (generate-new-buffer-name name))) | |
| 1153 | |
| 1154 (defvar abbreviated-home-dir nil | |
| 1155 "The user's homedir abbreviated according to `directory-abbrev-alist'.") | |
| 1156 | |
| 1157 (defun abbreviate-file-name (filename &optional hack-homedir) | |
| 1158 "Return a version of FILENAME shortened using `directory-abbrev-alist'. | |
| 1333 | 1159 Type \\[describe-variable] directory-abbrev-alist RET for more information. |
| 428 | 1160 If optional argument HACK-HOMEDIR is non-nil, then this also substitutes |
| 1161 \"~\" for the user's home directory." | |
| 1162 (let ((handler (find-file-name-handler filename 'abbreviate-file-name))) | |
| 1163 (if handler | |
| 1164 (funcall handler 'abbreviate-file-name filename hack-homedir) | |
| 1165 ;; Get rid of the prefixes added by the automounter. | |
| 1166 ;;(if (and (string-match automount-dir-prefix filename) | |
| 1167 ;; (file-exists-p (file-name-directory | |
| 1168 ;; (substring filename (1- (match-end 0)))))) | |
| 1169 ;; (setq filename (substring filename (1- (match-end 0))))) | |
| 1170 (let ((tail directory-abbrev-alist)) | |
| 1171 ;; If any elt of directory-abbrev-alist matches this name, | |
| 1172 ;; abbreviate accordingly. | |
| 1173 (while tail | |
| 1174 (when (string-match (car (car tail)) filename) | |
| 1175 (setq filename | |
| 1176 (concat (cdr (car tail)) (substring filename (match-end 0))))) | |
| 1177 (setq tail (cdr tail)))) | |
| 1178 (when hack-homedir | |
| 1179 ;; Compute and save the abbreviated homedir name. | |
| 440 | 1180 ;; We defer computing this until the first time it's needed, |
| 1181 ;; to give time for directory-abbrev-alist to be set properly. | |
| 1182 ;; We include the separator at the end, to avoid spurious | |
| 1183 ;; matches such as `/usr/foobar' when the home dir is | |
| 1184 ;; `/usr/foo'. | |
| 428 | 1185 (or abbreviated-home-dir |
| 1186 (setq abbreviated-home-dir | |
| 1187 (let ((abbreviated-home-dir "$foo")) | |
| 440 | 1188 (concat "\\`" |
| 1189 (regexp-quote | |
| 1190 (abbreviate-file-name (expand-file-name "~"))) | |
| 1191 "\\(" | |
| 1192 (regexp-quote (string directory-sep-char)) | |
| 1193 "\\|\\'\\)")))) | |
| 428 | 1194 ;; If FILENAME starts with the abbreviated homedir, |
| 1195 ;; make it start with `~' instead. | |
| 1196 (if (and (string-match abbreviated-home-dir filename) | |
| 1197 ;; If the home dir is just /, don't change it. | |
| 440 | 1198 (not (and (= (match-end 0) 1) |
| 1199 (= (aref filename 0) directory-sep-char))) | |
| 1200 (not (and (eq system-type 'windows-nt) | |
| 428 | 1201 (save-match-data |
| 440 | 1202 (string-match (concat "\\`[a-zA-Z]:" |
| 1203 (regexp-quote | |
| 1204 (string directory-sep-char)) | |
| 1205 "\\'") | |
| 1206 filename))))) | |
| 428 | 1207 (setq filename |
| 1208 (concat "~" | |
| 440 | 1209 (match-string 1 filename) |
| 428 | 1210 (substring filename (match-end 0)))))) |
| 1211 filename))) | |
| 1212 | |
| 1213 (defcustom find-file-not-true-dirname-list nil | |
| 1214 "*List of logical names for which visiting shouldn't save the true dirname." | |
| 1215 :type '(repeat (string :tag "Name")) | |
| 1216 :group 'find-file) | |
| 1217 | |
| 1218 ;; This function is needed by FSF vc.el. I hope somebody can make it | |
| 1219 ;; work for XEmacs. -sb. | |
| 1220 ;; #### In what way does it not work? --hniksic | |
| 1221 (defun find-buffer-visiting (filename) | |
| 1222 "Return the buffer visiting file FILENAME (a string). | |
| 1223 This is like `get-file-buffer', except that it checks for any buffer | |
| 1224 visiting the same file, possibly under a different name. | |
| 1225 If there is no such live buffer, return nil." | |
| 1226 (let ((buf (get-file-buffer filename)) | |
| 1227 (truename (abbreviate-file-name (file-truename filename)))) | |
| 1228 (or buf | |
| 1229 (let ((list (buffer-list)) found) | |
| 1230 (while (and (not found) list) | |
| 1231 (save-excursion | |
| 1232 (set-buffer (car list)) | |
| 1233 (if (and buffer-file-name | |
| 1234 (string= buffer-file-truename truename)) | |
| 1235 (setq found (car list)))) | |
| 1236 (setq list (cdr list))) | |
| 1237 found) | |
| 1333 | 1238 (let* ((attributes (file-attributes truename)) |
| 1239 (number (nthcdr 10 attributes)) | |
| 1240 (list (buffer-list)) found) | |
| 428 | 1241 (and buffer-file-numbers-unique |
| 1242 number | |
| 1243 (while (and (not found) list) | |
| 1333 | 1244 (with-current-buffer (car list) |
| 1245 (if (and buffer-file-name | |
| 1246 (equal buffer-file-number number) | |
| 428 | 1247 ;; Verify this buffer's file number |
| 1248 ;; still belongs to its file. | |
| 1249 (file-exists-p buffer-file-name) | |
| 1333 | 1250 (equal (file-attributes buffer-file-name) |
| 1251 attributes)) | |
| 428 | 1252 (setq found (car list)))) |
| 1253 (setq list (cdr list)))) | |
| 1254 found)))) | |
| 1333 | 1255 |
| 1256 (defcustom find-file-wildcards t | |
| 1257 "*Non-nil means file-visiting commands should handle wildcards. | |
| 1258 For example, if you specify `*.c', that would visit all the files | |
| 1259 whose names match the pattern." | |
| 1260 :group 'files | |
| 1261 ; :version "20.4" | |
| 1262 :type 'boolean) | |
| 1263 | |
| 1264 (defcustom find-file-suppress-same-file-warnings nil | |
| 1265 "*Non-nil means suppress warning messages for symlinked files. | |
| 1266 When nil, Emacs prints a warning when visiting a file that is already | |
| 1267 visited, but with a different name. Setting this option to t | |
| 1268 suppresses this warning." | |
| 1269 :group 'files | |
| 1270 ; :version "21.1" | |
| 1271 :type 'boolean) | |
| 1272 | |
| 1273 (defun find-file-noselect (filename &optional nowarn rawfile wildcards) | |
| 1274 "Read file FILENAME into a buffer and return the buffer. | |
| 1275 If a buffer exists visiting FILENAME, return that one, but | |
| 1276 verify that the file has not changed since visited or saved. | |
| 1277 The buffer is not selected, just returned to the caller. | |
| 1278 If NOWARN is non-nil, warning messages will be suppressed. | |
| 1279 If RAWFILE is non-nil, the file is read literally." | |
| 1280 (setq filename | |
| 1281 (abbreviate-file-name | |
| 1282 (expand-file-name filename))) | |
| 1283 (if (file-directory-p filename) | |
| 1284 (or (and find-file-run-dired | |
| 1285 (loop for fn in find-directory-functions | |
| 1286 for x = (and (fboundp fn) | |
| 1287 (funcall fn | |
| 1288 (if find-file-use-truenames | |
| 1289 (abbreviate-file-name | |
| 1290 (file-truename filename)) | |
| 1291 filename))) | |
| 1292 if x | |
| 1293 return x)) | |
| 1294 (error "%s is a directory" filename)) | |
| 1295 (if (and wildcards | |
| 1296 find-file-wildcards | |
| 1297 (not (string-match "\\`/:" filename)) | |
| 1298 (string-match "[[*?]" filename)) | |
| 1299 (let ((files (condition-case nil | |
| 1300 (file-expand-wildcards filename t) | |
| 1301 (error (list filename)))) | |
| 1302 (find-file-wildcards nil)) | |
| 1303 (if (null files) | |
| 1304 (find-file-noselect filename) | |
| 1305 (mapcar #'find-file-noselect files))) | |
| 1306 (let* ((buf (get-file-buffer filename)) | |
| 1307 (truename (abbreviate-file-name (file-truename filename))) | |
| 1308 (number (nthcdr 10 (file-attributes truename))) | |
| 1309 ; ;; Find any buffer for a file which has same truename. | |
| 1310 ; (other (and (not buf) (find-buffer-visiting filename))) | |
| 1346 | 1311 ) |
| 1333 | 1312 |
| 1313 ; ;; Let user know if there is a buffer with the same truename. | |
| 1314 ; (if other | |
| 1315 ; (progn | |
| 1316 ; (or nowarn | |
| 1317 ; find-file-suppress-same-file-warnings | |
| 1318 ; (string-equal filename (buffer-file-name other)) | |
| 1319 ; (message "%s and %s are the same file" | |
| 1320 ; filename (buffer-file-name other))) | |
| 1321 ; ;; Optionally also find that buffer. | |
| 1322 ; (if (or find-file-existing-other-name find-file-visit-truename) | |
| 1323 ; (setq buf other)))) | |
| 1324 | |
| 1325 (when (and buf | |
| 1326 (or find-file-compare-truenames find-file-use-truenames) | |
| 1327 (not find-file-suppress-same-file-warnings) | |
| 1328 (not nowarn)) | |
| 1329 (save-excursion | |
| 1330 (set-buffer buf) | |
| 1331 (if (not (string-equal buffer-file-name filename)) | |
| 1332 (message "%s and %s are the same file (%s)" | |
| 1333 filename buffer-file-name | |
| 1334 buffer-file-truename)))) | |
| 1335 | |
| 1336 (if buf | |
| 1337 (progn | |
| 1338 (or nowarn | |
| 1339 (verify-visited-file-modtime buf) | |
| 1340 (cond ((not (file-exists-p filename)) | |
| 1341 (error "File %s no longer exists!" filename)) | |
| 1342 ;; Certain files should be reverted automatically | |
| 1343 ;; if they have changed on disk and not in the buffer. | |
| 1344 ((and (not (buffer-modified-p buf)) | |
| 1345 (dolist (rx revert-without-query nil) | |
| 1346 (when (string-match rx filename) | |
| 1347 (return t)))) | |
| 1348 (with-current-buffer buf | |
| 1349 (message "Reverting file %s..." filename) | |
| 1350 (revert-buffer t t) | |
| 1351 (message "Reverting file %s... done" filename))) | |
| 1352 ((yes-or-no-p | |
| 1353 (if (string= (file-name-nondirectory filename) | |
| 1354 (buffer-name buf)) | |
| 1355 (format | |
| 1356 (if (buffer-modified-p buf) | |
| 1357 (gettext "File %s changed on disk. Discard your edits? ") | |
| 1358 (gettext "File %s changed on disk. Reread from disk? ")) | |
| 1359 (file-name-nondirectory filename)) | |
| 1360 (format | |
| 1361 (if (buffer-modified-p buf) | |
| 1362 (gettext "File %s changed on disk. Discard your edits in %s? ") | |
| 1363 (gettext "File %s changed on disk. Reread from disk into %s? ")) | |
| 1364 (file-name-nondirectory filename) | |
| 1365 (buffer-name buf)))) | |
| 1366 (with-current-buffer buf | |
| 1367 (revert-buffer t t))))) | |
| 1368 (when (not (eq rawfile (not (null find-file-literally)))) | |
| 1369 (with-current-buffer buf | |
| 1370 (if (buffer-modified-p) | |
| 1371 (if (y-or-n-p (if rawfile | |
| 1372 "Save file and revisit literally? " | |
| 1373 "Save file and revisit non-literally? ")) | |
| 1374 (progn | |
| 1375 (save-buffer) | |
| 1376 (find-file-noselect-1 buf filename nowarn | |
| 1377 rawfile truename number)) | |
| 1378 (if (y-or-n-p (if rawfile | |
| 1379 "Discard your edits and revisit file literally? " | |
| 1380 "Discard your edits and revisit file non-literally? ")) | |
| 1381 (find-file-noselect-1 buf filename nowarn | |
| 1382 rawfile truename number) | |
| 1383 (error (if rawfile "File already visited non-literally" | |
| 1384 "File already visited literally")))) | |
| 1385 (if (y-or-n-p (if rawfile | |
| 1386 "Revisit file literally? " | |
| 1387 "Revisit file non-literally? ")) | |
| 1388 (find-file-noselect-1 buf filename nowarn | |
| 1389 rawfile truename number) | |
| 1390 (error (if rawfile "File already visited non-literally" | |
| 1391 "File already visited literally")))))) | |
| 1392 ;; Return the buffer we are using. | |
| 1393 buf) | |
| 1394 ;; Create a new buffer. | |
| 1395 (setq buf (create-file-buffer filename)) | |
| 1396 ;; Catch various signals, such as QUIT, and kill the buffer | |
| 1397 ;; in that case. | |
| 1398 (condition-case data | |
| 1399 (progn | |
| 1400 (set-buffer-major-mode buf) | |
| 1401 ;; find-file-noselect-1 may use a different buffer. | |
| 1402 (find-file-noselect-1 buf filename nowarn | |
| 1403 rawfile truename number)) | |
| 1404 (t | |
| 1405 (kill-buffer buf) | |
| 1406 (signal (car data) (cdr data))))))))) | |
| 1407 | |
| 1408 (defun find-file-noselect-1 (buf filename nowarn rawfile truename number) | |
| 1409 (let ((inhibit-read-only t) | |
| 1410 error) | |
| 1411 (with-current-buffer buf | |
| 1412 (kill-local-variable 'find-file-literally) | |
| 1413 ;; Needed in case we are re-visiting the file with a different | |
| 1414 ;; text representation. | |
| 1415 (kill-local-variable 'buffer-file-coding-system) | |
| 1416 (erase-buffer) | |
| 1417 ; (and (default-value 'enable-multibyte-characters) | |
| 1418 ; (not rawfile) | |
| 1419 ; (set-buffer-multibyte t)) | |
| 1420 (condition-case () | |
| 1421 (if rawfile | |
| 1422 (insert-file-contents-literally filename t) | |
| 1423 (insert-file-contents filename t)) | |
| 1424 (file-error | |
| 1425 (when (and (file-exists-p filename) | |
| 1426 (not (file-readable-p filename))) | |
| 1427 (signal 'file-error (list "File is not readable" filename))) | |
| 1428 (if rawfile | |
| 1429 ;; Unconditionally set error | |
| 1430 (setq error t) | |
| 1431 (or | |
| 1432 ;; Run find-file-not-found-hooks until one returns non-nil. | |
| 1433 (run-hook-with-args-until-success 'find-file-not-found-hooks) | |
| 1434 ;; If they fail too, set error. | |
| 1435 (setq error t))))) | |
| 1436 ;; Find the file's truename, and maybe use that as visited name. | |
| 1437 ;; automatically computed in XEmacs, unless jka-compr was used! | |
| 1438 (unless buffer-file-truename | |
| 1439 (setq buffer-file-truename truename)) | |
| 1440 (setq buffer-file-number number) | |
| 1441 (and find-file-use-truenames | |
| 1442 ;; This should be in C. Put pathname | |
| 1443 ;; abbreviations that have been explicitly | |
| 1444 ;; requested back into the pathname. Most | |
| 1445 ;; importantly, strip out automounter /tmp_mnt | |
| 1446 ;; directories so that auto-save will work | |
| 1447 (setq buffer-file-name (abbreviate-file-name buffer-file-name))) | |
| 1448 ;; Set buffer's default directory to that of the file. | |
| 1449 (setq default-directory (file-name-directory buffer-file-name)) | |
| 1450 ;; Turn off backup files for certain file names. Since | |
| 1451 ;; this is a permanent local, the major mode won't eliminate it. | |
| 1452 (and (not (funcall backup-enable-predicate buffer-file-name)) | |
| 1453 (progn | |
| 1454 (make-local-variable 'backup-inhibited) | |
| 1455 (setq backup-inhibited t))) | |
| 1456 (if rawfile | |
| 1457 (progn | |
| 1458 (setq buffer-file-coding-system 'no-conversion) | |
| 1459 (make-local-variable 'find-file-literally) | |
| 1460 (setq find-file-literally t)) | |
| 1461 (after-find-file error (not nowarn)) | |
| 1462 (setq buf (current-buffer))) | |
| 1463 (current-buffer)))) | |
| 1464 | |
| 444 | 1465 (defun insert-file-contents-literally (filename &optional visit start end replace) |
| 1333 | 1466 "Like `insert-file-contents', but only reads in the file literally. |
| 1467 A buffer may be modified in several ways after reading into the buffer, | |
| 1468 due to Emacs features such as format decoding, character code | |
| 1469 conversion, `find-file-hooks', automatic uncompression, etc. | |
| 1470 | |
| 1471 This function ensures that none of these modifications will take place." | |
| 442 | 1472 (let ((wrap-func (find-file-name-handler filename |
| 1473 'insert-file-contents-literally))) | |
| 444 | 1474 (if wrap-func |
| 442 | 1475 (funcall wrap-func 'insert-file-contents-literally filename |
| 444 | 1476 visit start end replace) |
| 442 | 1477 (let ((file-name-handler-alist nil) |
| 1478 (format-alist nil) | |
| 1479 (after-insert-file-functions nil) | |
| 1480 (coding-system-for-read 'binary) | |
| 1481 (coding-system-for-write 'binary) | |
| 1482 (find-buffer-file-type-function | |
| 1483 (if (fboundp 'find-buffer-file-type) | |
| 1484 (symbol-function 'find-buffer-file-type) | |
| 1333 | 1485 nil)) |
| 1486 (inhibit-file-name-handlers '(jka-compr-handler image-file-handler)) | |
| 1487 (inhibit-file-name-operation 'insert-file-contents)) | |
| 442 | 1488 (unwind-protect |
| 1489 (progn | |
| 1490 (fset 'find-buffer-file-type (lambda (filename) t)) | |
| 444 | 1491 (insert-file-contents filename visit start end replace)) |
| 442 | 1492 (if find-buffer-file-type-function |
| 1493 (fset 'find-buffer-file-type find-buffer-file-type-function) | |
| 1494 (fmakunbound 'find-buffer-file-type))))))) | |
| 428 | 1495 |
| 1333 | 1496 (defun insert-file-literally (filename) |
| 1497 "Insert contents of file FILENAME into buffer after point with no conversion. | |
| 1498 | |
| 1499 This function is meant for the user to run interactively. | |
| 1500 Don't call it from programs! Use `insert-file-contents-literally' instead. | |
| 1501 \(Its calling sequence is different; see its documentation)." | |
| 1502 (interactive "*fInsert file literally: ") | |
| 428 | 1503 (if (file-directory-p filename) |
| 1333 | 1504 (signal 'file-error (list "Opening input file" "file is a directory" |
| 1505 filename))) | |
| 1506 (let ((tem (insert-file-contents-literally filename))) | |
| 1507 (push-mark (+ (point) (car (cdr tem)))))) | |
| 1508 | |
| 1509 (defvar find-file-literally nil | |
| 1510 "Non-nil if this buffer was made by `find-file-literally' or equivalent. | |
| 1511 This is a permanent local.") | |
| 1512 (put 'find-file-literally 'permanent-local t) | |
| 1513 | |
| 1514 (defun find-file-literally (filename) | |
| 1515 "Visit file FILENAME with no conversion of any kind. | |
| 1516 Format conversion and character code conversion are both disabled, | |
| 1517 and multibyte characters are disabled in the resulting buffer. | |
| 1518 The major mode used is Fundamental mode regardless of the file name, | |
| 1519 and local variable specifications in the file are ignored. | |
| 1520 Automatic uncompression and adding a newline at the end of the | |
| 1521 file due to `require-final-newline' is also disabled. | |
| 1522 | |
| 1523 You cannot absolutely rely on this function to result in | |
| 1524 visiting the file literally. If Emacs already has a buffer | |
| 1525 which is visiting the file, you get the existing buffer, | |
| 1526 regardless of whether it was created literally or not. | |
| 1527 | |
| 1528 In a Lisp program, if you want to be sure of accessing a file's | |
| 1529 contents literally, you should create a temporary buffer and then read | |
| 1530 the file contents into it using `insert-file-contents-literally'." | |
| 1531 (interactive "FFind file literally: ") | |
| 1532 (switch-to-buffer (find-file-noselect filename nil t))) | |
| 428 | 1533 |
| 1534 (defvar after-find-file-from-revert-buffer nil) | |
| 1535 | |
| 1536 (defun after-find-file (&optional error warn noauto | |
| 1537 after-find-file-from-revert-buffer | |
| 1538 nomodes) | |
| 1539 "Called after finding a file and by the default revert function. | |
| 1540 Sets buffer mode, parses local variables. | |
| 1541 Optional args ERROR, WARN, and NOAUTO: ERROR non-nil means there was an | |
| 1542 error in reading the file. WARN non-nil means warn if there | |
| 1543 exists an auto-save file more recent than the visited file. | |
| 1544 NOAUTO means don't mess with auto-save mode. | |
| 1545 Fourth arg AFTER-FIND-FILE-FROM-REVERT-BUFFER non-nil | |
| 1546 means this call was from `revert-buffer'. | |
| 1547 Fifth arg NOMODES non-nil means don't alter the file's modes. | |
| 1333 | 1548 Finishes by calling the functions in `find-file-hooks' |
| 1549 unless NOMODES is non-nil." | |
| 428 | 1550 (setq buffer-read-only (not (file-writable-p buffer-file-name))) |
| 1551 (if noninteractive | |
| 1552 nil | |
| 1553 (let* (not-serious | |
| 1554 (msg | |
| 1333 | 1555 (cond |
| 1556 ((not warn) nil) | |
| 1557 ((and error (file-attributes buffer-file-name)) | |
| 1558 (setq buffer-read-only t) | |
| 1559 (gettext "File exists, but cannot be read.")) | |
| 1560 ((not buffer-read-only) | |
| 1561 (if (and warn | |
| 1562 (file-newer-than-file-p (make-auto-save-file-name) | |
| 1563 buffer-file-name)) | |
| 1564 (format "%s has auto save data; consider M-x recover-file" | |
| 1565 (file-name-nondirectory buffer-file-name)) | |
| 1566 (setq not-serious t) | |
| 1567 (if error (gettext "(New file)") nil))) | |
| 1568 ((not error) | |
| 1569 (setq not-serious t) | |
| 1570 (gettext "Note: file is write protected")) | |
| 1571 ((file-attributes (directory-file-name default-directory)) | |
| 1572 (gettext "File not found and directory write-protected")) | |
| 1573 ((file-exists-p (file-name-directory buffer-file-name)) | |
| 1574 (setq buffer-read-only nil)) | |
| 1575 (t | |
| 1576 ;; If the directory the buffer is in doesn't exist, | |
| 1577 ;; offer to create it. It's better to do this now | |
| 1578 ;; than when we save the buffer, because we want | |
| 1579 ;; autosaving to work. | |
| 1580 (setq buffer-read-only nil) | |
| 1581 ;; XEmacs | |
| 1582 (or (file-exists-p (file-name-directory buffer-file-name)) | |
| 1583 (condition-case nil | |
| 1584 (if (yes-or-no-p | |
| 1585 (format | |
| 1586 "\ | |
| 428 | 1587 The directory containing %s does not exist. Create? " |
| 1333 | 1588 (abbreviate-file-name buffer-file-name))) |
| 1589 (make-directory (file-name-directory | |
| 1590 buffer-file-name) | |
|
4649
3972966a4588
Kill buffer if directory name misspelled and user doesn't want to create it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4648
diff
changeset
|
1591 t) |
|
3972966a4588
Kill buffer if directory name misspelled and user doesn't want to create it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4648
diff
changeset
|
1592 (kill-buffer (current-buffer))) |
| 1333 | 1593 (quit |
| 1594 (kill-buffer (current-buffer)) | |
| 1595 (signal 'quit nil)))) | |
| 1596 nil)))) | |
| 428 | 1597 (if msg |
| 1598 (progn | |
| 1599 (message "%s" msg) | |
| 1600 (or not-serious (sit-for 1 t))))) | |
| 1333 | 1601 (when (and auto-save-default (not noauto)) |
| 428 | 1602 (auto-save-mode t))) |
| 1333 | 1603 ;; Make people do a little extra work (C-x C-q) |
| 1604 ;; before altering a backup file. | |
| 1605 (when (backup-file-name-p buffer-file-name) | |
| 1606 (setq buffer-read-only t)) | |
| 428 | 1607 (unless nomodes |
| 1333 | 1608 ;; #### No view-mode-disable. |
| 1609 ; (when view-read-only | |
| 1610 ; (and-boundp 'view-mode (view-mode-disable))) | |
| 428 | 1611 (normal-mode t) |
|
5766
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
1612 ;; If requested, add a newline at the end of the file. |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
1613 (and (memq require-final-newline '(visit visit-save)) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
1614 (> (point-max) (point-min)) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
1615 (/= (char-after (1- (point-max))) ?\n) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
1616 (not (and (eq selective-display t) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
1617 (= (char-after (1- (point-max))) ?\r))) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
1618 (not buffer-read-only) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
1619 (save-excursion |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
1620 (goto-char (point-max)) |
|
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
1621 (ignore-errors (insert "\n")))) |
| 1333 | 1622 (when (and buffer-read-only |
| 1623 view-read-only | |
| 1624 (not (eq (get major-mode 'mode-class) 'special))) | |
| 1625 (view-mode)) | |
| 428 | 1626 (run-hooks 'find-file-hooks))) |
| 1627 | |
| 1628 (defun normal-mode (&optional find-file) | |
| 1629 "Choose the major mode for this buffer automatically. | |
| 1630 Also sets up any specified local variables of the file. | |
| 1631 Uses the visited file name, the -*- line, and the local variables spec. | |
| 1632 | |
| 1633 This function is called automatically from `find-file'. In that case, | |
| 1333 | 1634 we may set up the file-specified mode and local variables, |
| 1635 depending on the value of `enable-local-variables': if it is t, we do; | |
| 1636 if it is nil, we don't; otherwise, we query. | |
| 1637 In addition, if `local-enable-local-variables' is nil, we do | |
| 1638 not set local variables (though we do notice a mode specified with -*-.) | |
| 1639 | |
| 1640 `enable-local-variables' is ignored if you run `normal-mode' interactively, | |
| 1641 or from Lisp without specifying the optional argument FIND-FILE; | |
| 1642 in that case, this function acts as if `enable-local-variables' were t." | |
| 428 | 1643 (interactive) |
| 1644 (or find-file (funcall (or default-major-mode 'fundamental-mode))) | |
| 793 | 1645 (and (with-trapping-errors |
| 1646 :operation "File mode specification" | |
| 1647 :class 'file-mode-spec | |
| 1648 :error-form nil | |
| 1649 (set-auto-mode) | |
| 1650 t) | |
| 1651 (with-trapping-errors | |
| 1652 :operation "File local-variables" | |
| 1653 :class 'local-variables | |
| 1654 :error-form nil | |
| 1333 | 1655 ;; FSF 21.2: |
| 1656 ; (let ((enable-local-variables (or (not find-file) | |
| 1657 ; enable-local-variables))) | |
| 1658 ; (hack-local-variables)) | |
| 793 | 1659 (hack-local-variables (not find-file))))) |
| 428 | 1660 |
| 1333 | 1661 ;; END SYNC WITH FSF 21.2. |
| 1662 | |
| 1024 | 1663 ;; `auto-mode-alist' used to contain entries for modes in core and in packages. |
| 1664 ;; The applicable entries are now located in the corresponding modes in | |
| 1665 ;; packages, the ones here are for core modes. Ditto for | |
| 1666 ;; `interpreter-mode-alist' below. | |
| 1667 ;; Per Abrahamsen suggested splitting auto-mode-alist to | |
| 428 | 1668 ;; several distinct variables such as, in order of precedence, |
| 1669 ;; `user-auto-mode-alist' for users, `package-auto-mode-alist' for | |
| 1670 ;; packages and `auto-mode-alist' (which might also be called | |
| 1671 ;; `default-auto-mode-alist') for default stuff, such as some of the | |
| 1672 ;; entries below. | |
| 1673 | |
| 1674 (defvar auto-mode-alist | |
| 1675 '(("\\.te?xt\\'" . text-mode) | |
| 1676 ("\\.el\\'" . emacs-lisp-mode) | |
| 1677 ("\\.c?l\\(?:i?sp\\)?\\'" . lisp-mode) | |
| 1678 ("\\.article\\'" . text-mode) | |
| 1679 ("\\.letter\\'" . text-mode) | |
| 1680 ;; Mailer puts message to be edited in /tmp/Re.... or Message | |
| 1681 ;; #### Unix-specific! | |
| 1682 ("\\`/tmp/Re" . text-mode) | |
| 1683 ("/Message[0-9]*\\'" . text-mode) | |
| 1684 ;; some news reader is reported to use this | |
| 1685 ("^/tmp/fol/" . text-mode) | |
| 1686 ;; .emacs following a directory delimiter in either Unix or | |
| 1687 ;; Windows syntax. | |
| 1688 ("[/\\][._].*emacs\\'" . emacs-lisp-mode) | |
| 1689 ("\\.ml\\'" . lisp-mode) | |
| 1690 ) | |
| 1691 "Alist of filename patterns vs. corresponding major mode functions. | |
| 1692 Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL). | |
| 1693 \(NON-NIL stands for anything that is not nil; the value does not matter.) | |
| 1694 Visiting a file whose name matches REGEXP specifies FUNCTION as the | |
| 1695 mode function to use. FUNCTION will be called, unless it is nil. | |
| 1696 | |
| 1697 If the element has the form (REGEXP FUNCTION NON-NIL), then after | |
| 1698 calling FUNCTION (if it's not nil), we delete the suffix that matched | |
| 1699 REGEXP and search the list again for another match.") | |
| 1700 | |
| 1701 (defvar interpreter-mode-alist | |
| 1024 | 1702 '(("emacs" . emacs-lisp-mode)) |
| 428 | 1703 "Alist mapping interpreter names to major modes. |
| 1704 This alist is used to guess the major mode of a file based on the | |
| 1705 contents of the first line. This line often contains something like: | |
| 1706 #!/bin/sh | |
| 1707 but may contain something more imaginative like | |
| 1708 #! /bin/env python | |
| 1709 or | |
| 1710 eval 'exec perl -w -S $0 ${1+\"$@\"}'. | |
| 1711 | |
| 1712 Each alist element looks like (INTERPRETER . MODE). | |
| 1713 The car of each element is a regular expression which is compared | |
| 1714 with the name of the interpreter specified in the first line. | |
| 1715 If it matches, mode MODE is selected.") | |
| 1716 | |
| 1717 (defvar binary-file-regexps | |
|
5573
f0f1fd0d8486
Remove ELC files from `binary-file-regexps', many of them are escape-quoted.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5572
diff
changeset
|
1718 '("\\.\\(?:7[Zz]\\|ARC\\|E\\(?:AR\\|XE\\)\\|JAR\\|LZH\\|RAR\\|WAR\\|XPI\\|Z\\(?:IP\\|OO\\)\\|arc\\|bz2\\|e\\(?:ar\\|xe\\)\\|g\\(?:if\\|z\\)\\|j\\(?:ar\\|p\\(?:e?g\\)\\)\\|l\\(?:ha\\|zh\\)\\|odt\\|p\\(?:bm\\|df\\|gm\\|n[gm]\\|pm\\)\\|sx[cdimw]\\|t\\(?:ar\\|gz\\|iff\\)\\|war\\|xpi\\|z\\(?:ip\\|oo\\)\\|[Zo]\\)\\'") |
| 428 | 1719 "List of regexps of filenames containing binary (non-text) data.") |
| 1720 ; (eval-when-compile | |
| 1721 ; (require 'regexp-opt) | |
| 1722 ; (list | |
| 1723 ; (format "\\.\\(?:%s\\)\\'" | |
| 1724 ; (regexp-opt | |
|
5572
c17a46ac63af
Include many more files in binary-file-regexps, files.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1725 ; '("7Z" "7z" "ARC" "EAR" "EXE" "JAR" "LZH" "RAR" "WAR" "XPI" "Z" |
|
5573
f0f1fd0d8486
Remove ELC files from `binary-file-regexps', many of them are escape-quoted.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5572
diff
changeset
|
1726 ; "ZIP" "ZOO" "arc" "bz2" "ear" "exe" "gif" "gz" "jar" |
|
5572
c17a46ac63af
Include many more files in binary-file-regexps, files.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1727 ; "jpeg" "jpg" "lha" "lzh" "o" "odt" "pbm" "pdf" "pgm" "png" |
|
c17a46ac63af
Include many more files in binary-file-regexps, files.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1728 ; "pnm" "ppm" "sxc" "sxd" "sxi" "sxm" "sxw" "tar" "tgz" |
|
c17a46ac63af
Include many more files in binary-file-regexps, files.el.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5474
diff
changeset
|
1729 ; "tiff" "war" "xpi" "zip" "zoo"))))) |
| 444 | 1730 |
| 428 | 1731 (defvar inhibit-first-line-modes-regexps |
| 444 | 1732 binary-file-regexps |
| 428 | 1733 "List of regexps; if one matches a file name, don't look for `-*-'.") |
| 1734 | |
| 1735 (defvar inhibit-first-line-modes-suffixes nil | |
| 1736 "List of regexps for what to ignore, for `inhibit-first-line-modes-regexps'. | |
| 1737 When checking `inhibit-first-line-modes-regexps', we first discard | |
| 1738 from the end of the file name anything that matches one of these regexps.") | |
| 1739 | |
| 1333 | 1740 ;; Junk from FSF 21.2. Unnecessary in XEmacs, since `interpreter-mode-alist' |
| 1741 ;; can have regexps. | |
| 1742 ; (defvar auto-mode-interpreter-regexp | |
| 1743 ; "#![ \t]?\\([^ \t\n]*\ | |
| 1744 ; /bin/env[ \t]\\)?\\([^ \t\n]+\\)" | |
| 1745 ; "Regular expression matching interpreters, for file mode determination. | |
| 1746 ; This regular expression is matched against the first line of a file | |
| 1747 ; to determine the file's mode in `set-auto-mode' when Emacs can't deduce | |
| 1748 ; a mode from the file's name. If it matches, the file is assumed to | |
| 1749 ; be interpreted by the interpreter matched by the second group of the | |
| 1750 ; regular expression. The mode is then determined as the mode associated | |
| 1751 ; with that interpreter in `interpreter-mode-alist'.") | |
| 1752 | |
| 428 | 1753 (defvar user-init-file |
| 1754 nil ; set by command-line | |
| 1755 "File name including directory of user's initialization file.") | |
| 1756 | |
| 1757 (defun set-auto-mode (&optional just-from-file-name) | |
| 1758 "Select major mode appropriate for current buffer. | |
| 1759 This checks for a -*- mode tag in the buffer's text, | |
| 1760 compares the filename against the entries in `auto-mode-alist', | |
| 1761 or checks the interpreter that runs this file against | |
| 1762 `interpreter-mode-alist'. | |
| 1763 | |
| 1764 It does not check for the `mode:' local variable in the | |
| 1765 Local Variables section of the file; for that, use `hack-local-variables'. | |
| 1766 | |
| 1767 If `enable-local-variables' is nil, this function does not check for a | |
| 1768 -*- mode tag. | |
| 1769 | |
| 1770 If the optional argument JUST-FROM-FILE-NAME is non-nil, | |
| 1771 then we do not set anything but the major mode, | |
| 1772 and we don't even do that unless it would come from the file name." | |
| 1773 (save-excursion | |
| 1774 ;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*- | |
| 1775 ;; Do this by calling the hack-local-variables helper to avoid redundancy. | |
| 1776 ;; We bind enable-local-variables to nil this time because we're going to | |
| 1777 ;; call hack-local-variables-prop-line again later, "for real." Note that | |
| 1778 ;; this temporary binding does not prevent hack-local-variables-prop-line | |
| 1779 ;; from setting the major mode. | |
| 1780 (or (and enable-local-variables | |
| 1781 (let ((enable-local-variables nil)) | |
| 1782 (hack-local-variables-prop-line nil)) | |
| 1783 ) | |
| 1784 ;; It's not in the -*- line, so check the auto-mode-alist, unless | |
| 1785 ;; this buffer isn't associated with a file. | |
| 1786 (null buffer-file-name) | |
| 1787 (let ((name (file-name-sans-versions buffer-file-name)) | |
| 1788 (keep-going t)) | |
| 1789 (while keep-going | |
| 1790 (setq keep-going nil) | |
| 1791 (let ((alist auto-mode-alist) | |
| 1792 (mode nil)) | |
| 440 | 1793 |
| 428 | 1794 ;; Find first matching alist entry. |
| 440 | 1795 |
| 1796 ;; #### This is incorrect. In NT, case sensitivity is a volume | |
| 1797 ;; property. For instance, NFS mounts *are* case sensitive. | |
| 1798 ;; Need internal function (file-name-case-sensitive f), F | |
| 1799 ;; being file or directory name. - kkm | |
| 428 | 1800 (let ((case-fold-search |
| 440 | 1801 (eq system-type 'windows-nt))) |
| 428 | 1802 (while (and (not mode) alist) |
| 1803 (if (string-match (car (car alist)) name) | |
| 1804 (if (and (consp (cdr (car alist))) | |
| 1805 (nth 2 (car alist))) | |
| 1806 (progn | |
| 1807 (setq mode (car (cdr (car alist))) | |
| 1808 name (substring name 0 (match-beginning 0)) | |
| 1809 keep-going t)) | |
| 1810 (setq mode (cdr (car alist)) | |
| 1811 keep-going nil))) | |
| 1812 (setq alist (cdr alist)))) | |
| 1813 (unless just-from-file-name | |
| 1814 ;; If we can't deduce a mode from the file name, | |
| 1815 ;; look for an interpreter specified in the first line. | |
| 1816 (if (and (null mode) | |
| 1817 (save-excursion ; XEmacs | |
| 1818 (goto-char (point-min)) | |
| 1819 (looking-at "#!"))) | |
| 1820 (let ((firstline | |
| 1821 (buffer-substring | |
| 1822 (point-min) | |
| 1823 (save-excursion | |
| 1824 (goto-char (point-min)) (end-of-line) (point))))) | |
| 1825 (setq alist interpreter-mode-alist) | |
| 1826 (while alist | |
| 1827 (if (string-match (car (car alist)) firstline) | |
| 1828 (progn | |
| 1829 (setq mode (cdr (car alist))) | |
| 1830 (setq alist nil)) | |
| 1831 (setq alist (cdr alist))))))) | |
| 1832 (if mode | |
| 1833 (if (not (fboundp mode)) | |
| 1834 (let ((name (package-get-package-provider mode))) | |
| 1835 (if name | |
| 1836 (message "Mode %s is not installed. Download package %s" mode name) | |
| 1837 (message "Mode %s either doesn't exist or is not a known package" mode)) | |
| 1838 (sit-for 2) | |
| 1839 (error "%s" mode)) | |
| 1840 (unless (and just-from-file-name | |
| 1841 (or | |
| 1842 ;; Don't reinvoke major mode. | |
| 1843 (eq mode major-mode) | |
| 1844 ;; Don't lose on minor modes. | |
| 1845 (assq mode minor-mode-alist))) | |
| 1846 (funcall mode)))))))))) | |
| 1847 | |
| 1848 (defvar hack-local-variables-hook nil | |
| 1849 "Normal hook run after processing a file's local variables specs. | |
| 1850 Major modes can use this to examine user-specified local variables | |
| 1851 in order to initialize other data structure based on them. | |
| 1852 | |
| 1853 This hook runs even if there were no local variables or if their | |
| 1854 evaluation was suppressed. See also `enable-local-variables' and | |
| 1855 `enable-local-eval'.") | |
| 1856 | |
| 1857 (defun hack-local-variables (&optional force) | |
| 1858 "Parse, and bind or evaluate as appropriate, any local variables | |
| 1859 for current buffer." | |
| 1860 ;; Don't look for -*- if this file name matches any | |
| 1861 ;; of the regexps in inhibit-first-line-modes-regexps. | |
| 1862 (if (or (null buffer-file-name) ; don't lose if buffer has no file! | |
| 1863 (not (let ((temp inhibit-first-line-modes-regexps) | |
| 1864 (name (if buffer-file-name | |
| 1865 (file-name-sans-versions buffer-file-name) | |
| 1866 (buffer-name)))) | |
| 1867 (while (let ((sufs inhibit-first-line-modes-suffixes)) | |
| 1868 (while (and sufs (not | |
| 1869 (string-match (car sufs) name))) | |
| 1870 (setq sufs (cdr sufs))) | |
| 1871 sufs) | |
| 1872 (setq name (substring name 0 (match-beginning 0)))) | |
| 1873 (while (and temp | |
| 1874 (not (string-match (car temp) name))) | |
| 1875 (setq temp (cdr temp)) | |
| 1876 temp)))) | |
| 1877 (progn | |
| 1878 ;; Look for variables in the -*- line. | |
| 1879 (hack-local-variables-prop-line force) | |
| 1880 ;; Look for "Local variables:" block in last page. | |
| 1881 (hack-local-variables-last-page force))) | |
| 1882 (run-hooks 'hack-local-variables-hook)) | |
| 1883 | |
| 1884 ;;; Local variables may be specified in the last page of the file (within 3k | |
| 1885 ;;; from the end of the file and after the last ^L) in the form | |
| 1886 ;;; | |
| 1887 ;;; Local variables: | |
| 1888 ;;; variable-name: variable-value | |
| 1889 ;;; end: | |
| 1890 ;;; | |
| 1891 ;;; The lines may begin with a common prefix, like ";;; " in the above | |
| 1892 ;;; example. They may also have a common suffix (" */" for example). In | |
| 1893 ;;; this form, the local variable "mode" can be used to change the major | |
| 1894 ;;; mode, and the local variable "eval" can be used to evaluate an arbitrary | |
| 1895 ;;; form. | |
| 1896 ;;; | |
| 1897 ;;; Local variables may also be specified in the first line of the file. | |
| 1898 ;;; Embedded in this line are a pair of "-*-" sequences. What lies between | |
| 1899 ;;; them are variable-name/variable-value pairs, like: | |
| 1900 ;;; | |
| 1901 ;;; -*- mode: emacs-lisp -*- | |
| 1902 ;;; or -*- mode: postscript; version-control: never -*- | |
| 1903 ;;; or -*- tags-file-name: "/foo/bar/TAGS" -*- | |
| 1904 ;;; | |
| 1905 ;;; The local variable "eval" is not used with this form. For hysterical | |
| 1906 ;;; reasons, the syntax "-*- modename -*-" is allowed as well. | |
| 1907 ;;; | |
| 1908 | |
| 1909 (defun hack-local-variables-p (modeline) | |
| 1910 (or (eq enable-local-variables t) | |
| 1911 (and enable-local-variables | |
| 1912 (save-window-excursion | |
| 1913 (condition-case nil | |
| 1914 (switch-to-buffer (current-buffer)) | |
| 1915 (error | |
| 1916 ;; If we fail to switch in the selected window, | |
| 1917 ;; it is probably a minibuffer. | |
| 1918 ;; So try another window. | |
| 1919 (condition-case nil | |
| 1920 (switch-to-buffer-other-window (current-buffer)) | |
| 1921 (error | |
| 1922 (switch-to-buffer-other-frame (current-buffer)))))) | |
| 1923 (or modeline (save-excursion | |
| 1924 (beginning-of-line) | |
| 1925 (set-window-start (selected-window) (point)))) | |
| 1926 (y-or-n-p (format | |
| 1927 "Set local variables as specified %s of %s? " | |
| 1928 (if modeline "in -*- line" "at end") | |
| 1929 (if buffer-file-name | |
| 1930 (file-name-nondirectory buffer-file-name) | |
| 1931 (concat "buffer " (buffer-name))))))))) | |
| 1932 | |
| 1933 (defun hack-local-variables-last-page (&optional force) | |
| 1934 ;; Set local variables set in the "Local Variables:" block of the last page. | |
| 1935 (save-excursion | |
| 1936 (goto-char (point-max)) | |
| 1937 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move) | |
| 1938 (if (let ((case-fold-search t)) | |
| 1939 (and (search-forward "Local Variables:" nil t) | |
| 1940 (or force | |
| 1941 (hack-local-variables-p nil)))) | |
| 1942 (let ((continue t) | |
| 444 | 1943 prefix prefixlen suffix start |
| 428 | 1944 (enable-local-eval enable-local-eval)) |
| 1945 ;; The prefix is what comes before "local variables:" in its line. | |
| 1946 ;; The suffix is what comes after "local variables:" in its line. | |
| 1947 (skip-chars-forward " \t") | |
| 1948 (or (eolp) | |
| 1949 (setq suffix (buffer-substring (point) | |
| 1950 (progn (end-of-line) (point))))) | |
| 1951 (goto-char (match-beginning 0)) | |
| 1952 (or (bolp) | |
| 1953 (setq prefix | |
| 1954 (buffer-substring (point) | |
| 1955 (progn (beginning-of-line) (point))))) | |
| 1956 (if prefix (setq prefixlen (length prefix) | |
| 1957 prefix (regexp-quote prefix))) | |
| 1958 (if suffix (setq suffix (concat (regexp-quote suffix) "$"))) | |
| 1959 (while continue | |
| 1960 ;; Look at next local variable spec. | |
| 1961 (if selective-display (re-search-forward "[\n\C-m]") | |
| 1962 (forward-line 1)) | |
| 1963 ;; Skip the prefix, if any. | |
| 1964 (if prefix | |
| 1965 (if (looking-at prefix) | |
| 1966 (forward-char prefixlen) | |
| 1967 (error "Local variables entry is missing the prefix"))) | |
| 1968 ;; Find the variable name; strip whitespace. | |
| 1969 (skip-chars-forward " \t") | |
| 444 | 1970 (setq start (point)) |
| 428 | 1971 (skip-chars-forward "^:\n") |
| 1972 (if (eolp) (error "Missing colon in local variables entry")) | |
| 1973 (skip-chars-backward " \t") | |
| 444 | 1974 (let* ((str (buffer-substring start (point))) |
| 428 | 1975 (var (read str)) |
| 1976 val) | |
| 1977 ;; Setting variable named "end" means end of list. | |
| 801 | 1978 (if (equalp str "end") |
| 428 | 1979 (setq continue nil) |
| 1980 ;; Otherwise read the variable value. | |
| 1981 (skip-chars-forward "^:") | |
| 1982 (forward-char 1) | |
| 1983 (setq val (read (current-buffer))) | |
| 1984 (skip-chars-backward "\n") | |
| 1985 (skip-chars-forward " \t") | |
| 1986 (or (if suffix (looking-at suffix) (eolp)) | |
| 1987 (error "Local variables entry is terminated incorrectly")) | |
| 1988 ;; Set the variable. "Variables" mode and eval are funny. | |
| 1989 (hack-one-local-variable var val)))))))) | |
| 1990 | |
| 1991 ;; jwz - New Version 20.1/19.15 | |
| 1992 (defun hack-local-variables-prop-line (&optional force) | |
| 1993 ;; Set local variables specified in the -*- line. | |
| 1994 ;; Returns t if mode was set. | |
| 1995 (let ((result nil)) | |
| 1996 (save-excursion | |
| 1997 (goto-char (point-min)) | |
| 1998 (skip-chars-forward " \t\n\r") | |
| 1999 (let ((end (save-excursion | |
| 2000 ;; If the file begins with "#!" | |
| 2001 ;; (un*x exec interpreter magic), look | |
| 2002 ;; for mode frobs in the first two | |
| 2003 ;; lines. You cannot necessarily | |
| 2004 ;; put them in the first line of | |
| 2005 ;; such a file without screwing up | |
| 2006 ;; the interpreter invocation. | |
| 2007 (end-of-line (and (looking-at "^#!") 2)) | |
| 2008 (point)))) | |
| 2009 ;; Parse the -*- line into the `result' alist. | |
| 2010 (cond ((not (search-forward "-*-" end t)) | |
| 2011 ;; doesn't have one. | |
| 2012 (setq force t)) | |
| 442 | 2013 ((looking-at "[ \t]*\\([^ \t\n\r:;]+?\\)\\([ \t]*-\\*-\\)") |
| 428 | 2014 ;; Antiquated form: "-*- ModeName -*-". |
| 2015 (setq result | |
| 2016 (list (cons 'mode | |
| 2017 (intern (buffer-substring | |
| 2018 (match-beginning 1) | |
| 2019 (match-end 1))))) | |
| 2020 )) | |
| 2021 (t | |
| 2022 ;; Usual form: '-*-' [ <variable> ':' <value> ';' ]* '-*-' | |
| 2023 ;; (last ";" is optional). | |
| 2024 (save-excursion | |
| 2025 (if (search-forward "-*-" end t) | |
| 2026 (setq end (- (point) 3)) | |
| 2027 (error "-*- not terminated before end of line"))) | |
| 2028 (while (< (point) end) | |
| 2029 (or (looking-at "[ \t]*\\([^ \t\n:]+\\)[ \t]*:[ \t]*") | |
| 2030 (error "malformed -*- line")) | |
| 2031 (goto-char (match-end 0)) | |
| 2032 ;; There used to be a downcase here, | |
| 2033 ;; but the manual didn't say so, | |
| 2034 ;; and people want to set var names that aren't all lc. | |
| 2035 (let ((key (intern (buffer-substring | |
| 2036 (match-beginning 1) | |
| 2037 (match-end 1)))) | |
| 2038 (val (save-restriction | |
| 2039 (narrow-to-region (point) end) | |
| 2040 (read (current-buffer))))) | |
| 2041 ;; Case sensitivity! Icepicks in my forehead! | |
| 801 | 2042 (if (equalp (symbol-name key) "mode") |
| 428 | 2043 (setq key 'mode)) |
| 2044 (setq result (cons (cons key val) result)) | |
| 2045 (skip-chars-forward " \t;"))) | |
| 2046 (setq result (nreverse result)))))) | |
| 2047 | |
| 2048 (let ((set-any-p (or force | |
| 2049 ;; It's OK to force null specifications. | |
| 2050 (null result) | |
| 2051 ;; It's OK to force mode-only specifications. | |
| 2052 (let ((remaining result) | |
| 2053 (mode-specs-only t)) | |
| 2054 (while remaining | |
| 2055 (if (eq (car (car remaining)) 'mode) | |
| 2056 (setq remaining (cdr remaining)) | |
| 2057 ;; Otherwise, we have a real local. | |
| 2058 (setq mode-specs-only nil | |
| 2059 remaining nil)) | |
| 2060 ) | |
| 2061 mode-specs-only) | |
| 2062 ;; Otherwise, check. | |
| 2063 (hack-local-variables-p t))) | |
| 2064 (mode-p nil)) | |
| 2065 (while result | |
| 2066 (let ((key (car (car result))) | |
| 2067 (val (cdr (car result)))) | |
| 2068 (cond ((eq key 'mode) | |
| 2069 (setq mode-p t) | |
| 2070 (let ((mode (intern (concat (downcase (symbol-name val)) | |
| 2071 "-mode")))) | |
| 2072 ;; Without this guard, `normal-mode' would potentially run | |
| 2073 ;; the major mode function twice: once via `set-auto-mode' | |
| 2074 ;; and once via `hack-local-variables'. | |
|
5203
733f067a73ce
Check that MODENAME-mode is fboundp before calling it, files.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
2075 (if (and (not (eq mode major-mode)) (fboundp mode)) |
| 428 | 2076 (funcall mode)) |
| 2077 )) | |
| 2078 (set-any-p | |
| 2079 (hack-one-local-variable key val)) | |
| 2080 (t | |
| 2081 nil))) | |
| 2082 (setq result (cdr result))) | |
| 2083 mode-p))) | |
| 2084 | |
| 1333 | 2085 ;; BEGIN SYNC WITH FSF 21.2. |
| 2086 | |
| 428 | 2087 (defconst ignored-local-variables |
| 2088 (list 'enable-local-eval) | |
| 2089 "Variables to be ignored in a file's local variable spec.") | |
| 2090 | |
| 2091 ;; Get confirmation before setting these variables as locals in a file. | |
| 2092 (put 'debugger 'risky-local-variable t) | |
| 2093 (put 'enable-local-eval 'risky-local-variable t) | |
| 2094 (put 'ignored-local-variables 'risky-local-variable t) | |
| 2095 (put 'eval 'risky-local-variable t) | |
| 2096 (put 'file-name-handler-alist 'risky-local-variable t) | |
| 2097 (put 'minor-mode-map-alist 'risky-local-variable t) | |
| 2098 (put 'after-load-alist 'risky-local-variable t) | |
| 2099 (put 'buffer-file-name 'risky-local-variable t) | |
| 2100 (put 'buffer-auto-save-file-name 'risky-local-variable t) | |
| 2101 (put 'buffer-file-truename 'risky-local-variable t) | |
| 2102 (put 'exec-path 'risky-local-variable t) | |
| 2103 (put 'load-path 'risky-local-variable t) | |
| 2104 (put 'exec-directory 'risky-local-variable t) | |
| 2105 (put 'process-environment 'risky-local-variable t) | |
| 1333 | 2106 (put 'dabbrev-case-fold-search 'risky-local-variable t) |
| 2107 (put 'dabbrev-case-replace 'risky-local-variable t) | |
| 428 | 2108 ;; Don't wait for outline.el to be loaded, for the sake of outline-minor-mode. |
| 2109 (put 'outline-level 'risky-local-variable t) | |
| 2110 (put 'rmail-output-file-alist 'risky-local-variable t) | |
| 2111 | |
| 2112 ;; This one is safe because the user gets to check it before it is used. | |
| 2113 (put 'compile-command 'safe-local-variable t) | |
| 2114 | |
| 1333 | 2115 (defun hack-one-local-variable-quotep (exp) |
| 2116 (and (consp exp) (eq (car exp) 'quote) (consp (cdr exp)))) | |
| 2117 | |
| 428 | 2118 (defun hack-one-local-variable (var val) |
| 1333 | 2119 "\"Set\" one variable in a local variables spec. |
| 2120 A few variable names are treated specially." | |
| 428 | 2121 (cond ((eq var 'mode) |
|
5203
733f067a73ce
Check that MODENAME-mode is fboundp before calling it, files.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
2122 (and (fboundp (setq val (intern (concat (downcase (symbol-name val)) |
|
733f067a73ce
Check that MODENAME-mode is fboundp before calling it, files.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
2123 "-mode")))) |
|
733f067a73ce
Check that MODENAME-mode is fboundp before calling it, files.el
Aidan Kehoe <kehoea@parhasard.net>
parents:
4783
diff
changeset
|
2124 (funcall val))) |
| 1333 | 2125 ((eq var 'coding) |
| 2126 ;; We have already handled coding: tag in set-auto-coding. | |
| 2127 nil) | |
| 428 | 2128 ((memq var ignored-local-variables) |
| 2129 nil) | |
| 2130 ;; "Setting" eval means either eval it or do nothing. | |
| 2131 ;; Likewise for setting hook variables. | |
| 2132 ((or (get var 'risky-local-variable) | |
| 2133 (and | |
| 1333 | 2134 (string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|-command$\\|-predicate$" |
| 428 | 2135 (symbol-name var)) |
| 2136 (not (get var 'safe-local-variable)))) | |
| 1333 | 2137 ;; Permit evalling a put of a harmless property. |
| 2138 ;; if the args do nothing tricky. | |
| 2139 (if (or (and (eq var 'eval) | |
| 2140 (consp val) | |
| 2141 (eq (car val) 'put) | |
| 2142 (hack-one-local-variable-quotep (nth 1 val)) | |
| 2143 (hack-one-local-variable-quotep (nth 2 val)) | |
| 2144 ;; Only allow safe values of lisp-indent-hook; | |
| 2145 ;; not functions. | |
| 2146 (or (numberp (nth 3 val)) | |
| 2147 (equal (nth 3 val) ''defun)) | |
| 2148 (memq (nth 1 (nth 2 val)) | |
| 2149 '(lisp-indent-hook))) | |
| 2150 ;; Permit eval if not root and user says ok. | |
| 2151 (and (not (zerop (user-uid))) | |
| 2152 (or (eq enable-local-eval t) | |
| 2153 (and enable-local-eval | |
| 2154 (save-window-excursion | |
| 2155 (switch-to-buffer (current-buffer)) | |
| 2156 (save-excursion | |
| 2157 (beginning-of-line) | |
| 2158 (set-window-start (selected-window) (point))) | |
| 2159 (setq enable-local-eval | |
| 2160 (y-or-n-p (format "Process `eval' or hook local variables in %s? " | |
| 2161 (if buffer-file-name | |
| 2162 (concat "file " (file-name-nondirectory buffer-file-name)) | |
| 2163 (concat "buffer " (buffer-name))))))))))) | |
| 428 | 2164 (if (eq var 'eval) |
| 2165 (save-excursion (eval val)) | |
| 2166 (make-local-variable var) | |
| 2167 (set var val)) | |
| 1333 | 2168 (message "Ignoring `eval:' in the local variables list"))) |
| 428 | 2169 ;; Ordinary variable, really set it. |
| 2170 (t (make-local-variable var) | |
| 2171 (set var val)))) | |
| 2172 | |
| 1333 | 2173 |
| 428 | 2174 (defcustom change-major-mode-with-file-name t |
| 2175 "*Non-nil means \\[write-file] should set the major mode from the file name. | |
| 2176 However, the mode will not be changed if | |
| 2177 \(1) a local variables list or the `-*-' line specifies a major mode, or | |
| 2178 \(2) the current major mode is a \"special\" mode, | |
| 2179 \ not suitable for ordinary files, or | |
| 2180 \(3) the new file name does not particularly specify any mode." | |
| 2181 :type 'boolean | |
| 2182 :group 'editing-basics) | |
| 2183 | |
| 2184 (defun set-visited-file-name (filename &optional no-query along-with-file) | |
| 2185 "Change name of file visited in current buffer to FILENAME. | |
| 2186 The next time the buffer is saved it will go in the newly specified file. | |
| 2187 nil or empty string as argument means make buffer not be visiting any file. | |
| 2188 Remember to delete the initial contents of the minibuffer | |
| 2189 if you wish to pass an empty string as the argument. | |
| 2190 | |
| 2191 The optional second argument NO-QUERY, if non-nil, inhibits asking for | |
| 2192 confirmation in the case where another buffer is already visiting FILENAME. | |
| 2193 | |
| 2194 The optional third argument ALONG-WITH-FILE, if non-nil, means that | |
| 2195 the old visited file has been renamed to the new name FILENAME." | |
| 2196 (interactive "FSet visited file name: ") | |
| 2197 (if (buffer-base-buffer) | |
| 2198 (error "An indirect buffer cannot visit a file")) | |
| 2199 (let (truename) | |
| 2200 (if filename | |
| 2201 (setq filename | |
| 2202 (if (string-equal filename "") | |
| 2203 nil | |
| 2204 (expand-file-name filename)))) | |
| 2205 (if filename | |
| 2206 (progn | |
| 2207 (setq truename (file-truename filename)) | |
| 2208 ;; #### Do we need to check if truename is non-nil? | |
| 2209 (if find-file-use-truenames | |
| 2210 (setq filename truename)))) | |
| 2211 (let ((buffer (and filename (find-buffer-visiting filename)))) | |
| 2212 (and buffer (not (eq buffer (current-buffer))) | |
| 2213 (not no-query) | |
| 2214 (not (y-or-n-p (message "A buffer is visiting %s; proceed? " | |
| 2215 filename))) | |
| 2216 (error "Aborted"))) | |
| 2217 (or (equal filename buffer-file-name) | |
| 2218 (progn | |
| 2219 (and filename (lock-buffer filename)) | |
| 2220 (unlock-buffer))) | |
| 2221 (setq buffer-file-name filename) | |
| 2222 (if filename ; make buffer name reflect filename. | |
| 2223 (let ((new-name (file-name-nondirectory buffer-file-name))) | |
| 2224 (if (string= new-name "") | |
| 2225 (error "Empty file name")) | |
| 2226 (setq default-directory (file-name-directory buffer-file-name)) | |
| 2227 (or (string= new-name (buffer-name)) | |
| 2228 (rename-buffer new-name t)))) | |
| 2229 (setq buffer-backed-up nil) | |
| 2230 (or along-with-file | |
| 2231 (clear-visited-file-modtime)) | |
| 2232 (compute-buffer-file-truename) ; insert-file-contents does this too. | |
| 2233 ; ;; Abbreviate the file names of the buffer. | |
| 2234 ; (if truename | |
| 2235 ; (progn | |
| 2236 ; (setq buffer-file-truename (abbreviate-file-name truename)) | |
| 2237 ; (if find-file-visit-truename | |
| 2238 ; (setq buffer-file-name buffer-file-truename)))) | |
| 2239 (setq buffer-file-number | |
| 2240 (if filename | |
| 2241 (nthcdr 10 (file-attributes buffer-file-name)) | |
| 2242 nil))) | |
| 2243 ;; write-file-hooks is normally used for things like ftp-find-file | |
| 2244 ;; that visit things that are not local files as if they were files. | |
| 2245 ;; Changing to visit an ordinary local file instead should flush the hook. | |
| 2246 (kill-local-variable 'write-file-hooks) | |
| 2247 (kill-local-variable 'after-save-hook) | |
| 2248 (kill-local-variable 'local-write-file-hooks) | |
| 2249 (kill-local-variable 'write-file-data-hooks) | |
| 2250 (kill-local-variable 'revert-buffer-function) | |
| 2251 (kill-local-variable 'backup-inhibited) | |
| 2252 ;; If buffer was read-only because of version control, | |
| 2253 ;; that reason is gone now, so make it writable. | |
| 502 | 2254 (if-boundp 'vc-mode |
| 2255 (progn | |
| 2256 (if vc-mode | |
| 2257 (setq buffer-read-only nil)) | |
| 2258 (kill-local-variable 'vc-mode))) | |
| 428 | 2259 ;; Turn off backup files for certain file names. |
| 2260 ;; Since this is a permanent local, the major mode won't eliminate it. | |
| 2261 (and buffer-file-name | |
| 2262 (not (funcall backup-enable-predicate buffer-file-name)) | |
| 2263 (progn | |
| 2264 (make-local-variable 'backup-inhibited) | |
| 2265 (setq backup-inhibited t))) | |
| 2266 (let ((oauto buffer-auto-save-file-name)) | |
| 2267 ;; If auto-save was not already on, turn it on if appropriate. | |
| 2268 (if (not buffer-auto-save-file-name) | |
| 2269 (and buffer-file-name auto-save-default | |
| 2270 (auto-save-mode t)) | |
| 2271 ;; If auto save is on, start using a new name. | |
| 2272 ;; We deliberately don't rename or delete the old auto save | |
| 2273 ;; for the old visited file name. This is because perhaps | |
| 2274 ;; the user wants to save the new state and then compare with the | |
| 2275 ;; previous state from the auto save file. | |
| 2276 (setq buffer-auto-save-file-name | |
| 2277 (make-auto-save-file-name))) | |
| 2278 ;; Rename the old auto save file if any. | |
| 2279 (and oauto buffer-auto-save-file-name | |
| 2280 (file-exists-p oauto) | |
| 2281 (rename-file oauto buffer-auto-save-file-name t))) | |
| 2282 (if buffer-file-name | |
| 2283 (not along-with-file) | |
| 2284 (set-buffer-modified-p t)) | |
| 2285 ;; Update the major mode, if the file name determines it. | |
| 2286 (condition-case nil | |
| 2287 ;; Don't change the mode if it is special. | |
| 2288 (or (not change-major-mode-with-file-name) | |
| 2289 (get major-mode 'mode-class) | |
| 2290 ;; Don't change the mode if the local variable list specifies it. | |
| 2291 (hack-local-variables t) | |
| 2292 (set-auto-mode t)) | |
| 2293 (error nil)) | |
| 1333 | 2294 ;; #### ?? not in FSF. |
| 428 | 2295 (run-hooks 'after-set-visited-file-name-hooks)) |
| 2296 | |
| 2297 (defun write-file (filename &optional confirm codesys) | |
| 2298 "Write current buffer into file FILENAME. | |
| 1333 | 2299 This makes the buffer visit that file, and marks it as not modified. |
| 2300 | |
| 2301 If you specify just a directory name as FILENAME, that means to use | |
| 2302 the default file name but in that directory. You can also yank | |
| 2303 the default file name into the minibuffer to edit it, using M-n. | |
| 2304 | |
| 2305 If the buffer is not already visiting a file, the default file name | |
| 2306 for the output file is the buffer name. | |
| 2307 | |
| 2308 If optional second arg CONFIRM is non-nil, this function | |
| 2309 asks for confirmation before overwriting an existing file. | |
| 2310 Interactively, this is always the case. | |
| 771 | 2311 |
| 2312 Optional third argument specifies the coding system to use when encoding | |
| 2313 the file. Interactively, with a prefix argument, you will be prompted for | |
| 2314 the coding system." | |
| 428 | 2315 ;; (interactive "FWrite file: ") |
| 2316 (interactive | |
| 2317 (list (if buffer-file-name | |
| 2318 (read-file-name "Write file: " | |
| 2319 nil nil nil nil) | |
| 1333 | 2320 (read-file-name "Write file: " default-directory |
| 2321 (expand-file-name | |
| 2322 (file-name-nondirectory (buffer-name)) | |
| 2323 default-directory) | |
| 2324 nil nil)) | |
| 428 | 2325 t |
| 771 | 2326 (if current-prefix-arg (read-coding-system "Coding system: ")))) |
| 428 | 2327 (and (eq (current-buffer) mouse-grabbed-buffer) |
| 2328 (error "Can't write minibuffer window")) | |
| 2329 (or (null filename) (string-equal filename "") | |
| 2330 (progn | |
| 2331 ;; If arg is just a directory, | |
| 1333 | 2332 ;; use the default file name, but in that directory. |
| 2333 (if (file-directory-p filename) | |
| 428 | 2334 (setq filename (concat (file-name-as-directory filename) |
| 1333 | 2335 (file-name-nondirectory |
| 2336 (or buffer-file-name (buffer-name)))))) | |
| 428 | 2337 (and confirm |
| 2338 (file-exists-p filename) | |
| 2339 (or (y-or-n-p (format "File `%s' exists; overwrite? " filename)) | |
| 2340 (error "Canceled"))) | |
| 1333 | 2341 (set-visited-file-name filename (not confirm)))) |
| 428 | 2342 (set-buffer-modified-p t) |
| 1333 | 2343 ;; Make buffer writable if file is writable. |
| 2344 (and buffer-file-name | |
| 2345 (file-writable-p buffer-file-name) | |
| 2346 (setq buffer-read-only nil)) | |
| 428 | 2347 (if codesys |
| 2348 (let ((buffer-file-coding-system (get-coding-system codesys))) | |
| 2349 (save-buffer)) | |
| 2350 (save-buffer))) | |
| 2351 | |
| 1333 | 2352 |
| 428 | 2353 (defun backup-buffer () |
| 2354 "Make a backup of the disk file visited by the current buffer, if appropriate. | |
| 2355 This is normally done before saving the buffer the first time. | |
| 1333 | 2356 If the value is non-nil, it is the result of `file-modes' on the original |
| 2357 file; this means that the caller, after saving the buffer, should change | |
| 2358 the modes of the new file to agree with the old modes. | |
| 2359 | |
| 2360 A backup may be done by renaming or by copying; see documentation of | |
| 2361 variable `make-backup-files'. If it's done by renaming, then the file is | |
| 2362 no longer accessible under its old name." | |
| 428 | 2363 (if buffer-file-name |
| 2364 (let ((handler (find-file-name-handler buffer-file-name 'backup-buffer))) | |
| 2365 (if handler | |
| 2366 (funcall handler 'backup-buffer) | |
| 2367 (if (and make-backup-files | |
| 2368 (not backup-inhibited) | |
| 2369 (not buffer-backed-up) | |
| 2370 (file-exists-p buffer-file-name) | |
| 2371 (memq (aref (elt (file-attributes buffer-file-name) 8) 0) | |
| 2372 '(?- ?l))) | |
| 2373 (let ((real-file-name buffer-file-name) | |
| 2374 backup-info backupname targets setmodes) | |
| 2375 ;; If specified name is a symbolic link, chase it to the target. | |
| 2376 ;; Thus we make the backups in the directory where the real file is. | |
| 2377 (setq real-file-name (file-chase-links real-file-name)) | |
| 2378 (setq backup-info (find-backup-file-name real-file-name) | |
| 2379 backupname (car backup-info) | |
| 2380 targets (cdr backup-info)) | |
| 2381 ;;; (if (file-directory-p buffer-file-name) | |
| 2382 ;;; (error "Cannot save buffer in directory %s" buffer-file-name)) | |
| 2383 (if backup-info | |
| 2384 (condition-case () | |
| 2385 (let ((delete-old-versions | |
| 2386 ;; If have old versions to maybe delete, | |
| 2387 ;; ask the user to confirm now, before doing anything. | |
| 440 | 2388 ;; But don't actually delete till later. |
| 428 | 2389 (and targets |
| 2390 (or (eq delete-old-versions t) | |
| 2391 (eq delete-old-versions nil)) | |
| 2392 (or delete-old-versions | |
| 2393 (y-or-n-p (format "Delete excess backup versions of %s? " | |
| 2394 real-file-name)))))) | |
| 2395 ;; Actually write the back up file. | |
| 2396 (condition-case () | |
| 2397 (if (or file-precious-flag | |
| 2398 ; (file-symlink-p buffer-file-name) | |
| 2399 backup-by-copying | |
| 2400 (and backup-by-copying-when-linked | |
| 2401 (> (file-nlinks real-file-name) 1)) | |
| 1333 | 2402 (and (or backup-by-copying-when-mismatch |
| 2403 (integerp backup-by-copying-when-privileged-mismatch)) | |
| 428 | 2404 (let ((attr (file-attributes real-file-name))) |
| 1333 | 2405 (and (or backup-by-copying-when-mismatch |
| 2406 (and (integerp (nth 2 attr)) | |
| 2407 (integerp backup-by-copying-when-privileged-mismatch) | |
| 2408 (<= (nth 2 attr) backup-by-copying-when-privileged-mismatch))) | |
| 2409 (or (nth 9 attr) | |
| 2410 (not (file-ownership-preserved-p real-file-name))))))) | |
| 428 | 2411 (condition-case () |
| 2412 (copy-file real-file-name backupname t t) | |
| 2413 (file-error | |
| 2414 ;; If copying fails because file BACKUPNAME | |
| 2415 ;; is not writable, delete that file and try again. | |
| 2416 (if (and (file-exists-p backupname) | |
| 2417 (not (file-writable-p backupname))) | |
| 2418 (delete-file backupname)) | |
| 2419 (copy-file real-file-name backupname t t))) | |
| 2420 ;; rename-file should delete old backup. | |
| 2421 (rename-file real-file-name backupname t) | |
| 2422 (setq setmodes (file-modes backupname))) | |
| 2423 (file-error | |
| 2710 | 2424 ;; If trouble writing the backup, write |
| 2425 ;; it in `auto-save-directory'. Fall | |
| 2426 ;; back to $HOME if that's not possible. | |
| 464 | 2427 (setq backupname |
| 2710 | 2428 (expand-file-name "%backup%~" |
| 2429 (or (when (and auto-save-directory | |
| 2430 (file-writable-p auto-save-directory)) | |
| 2431 auto-save-directory) | |
| 2432 (getenv "HOME")))) | |
| 1333 | 2433 (lwarn 'file 'alert "Cannot write backup file; backing up in %s" |
| 2434 (file-name-nondirectory backupname)) | |
| 428 | 2435 (sleep-for 1) |
| 2436 (condition-case () | |
| 2437 (copy-file real-file-name backupname t t) | |
| 2438 (file-error | |
| 2439 ;; If copying fails because file BACKUPNAME | |
| 2440 ;; is not writable, delete that file and try again. | |
| 2441 (if (and (file-exists-p backupname) | |
| 2442 (not (file-writable-p backupname))) | |
| 2443 (delete-file backupname)) | |
| 2444 (copy-file real-file-name backupname t t))))) | |
| 2445 (setq buffer-backed-up t) | |
| 2446 ;; Now delete the old versions, if desired. | |
| 2447 (if delete-old-versions | |
| 2448 (while targets | |
| 2449 (ignore-file-errors (delete-file (car targets))) | |
| 2450 (setq targets (cdr targets)))) | |
| 2451 setmodes) | |
| 2452 (file-error nil))))))))) | |
| 2453 | |
| 2454 (defun file-name-sans-versions (name &optional keep-backup-version) | |
| 2455 "Return FILENAME sans backup versions or strings. | |
| 2456 This is a separate procedure so your site-init or startup file can | |
| 2457 redefine it. | |
| 2458 If the optional argument KEEP-BACKUP-VERSION is non-nil, | |
| 2459 we do not remove backup version numbers, only true file version numbers." | |
| 2460 (let ((handler (find-file-name-handler name 'file-name-sans-versions))) | |
| 2461 (if handler | |
| 2462 (funcall handler 'file-name-sans-versions name keep-backup-version) | |
| 2463 (substring name 0 | |
| 2464 (if keep-backup-version | |
| 2465 (length name) | |
| 2466 (or (string-match "\\.~[0-9.]+~\\'" name) | |
| 2467 ;; XEmacs - VC uses extensions like ".~tagname~" or ".~1.1.5.2~" | |
| 2468 (let ((pos (string-match "\\.~\\([^.~ \t]+\\|[0-9.]+\\)~\\'" name))) | |
| 2469 (and pos | |
| 2470 ;; #### - is this filesystem check too paranoid? | |
| 2471 (file-exists-p (substring name 0 pos)) | |
| 2472 pos)) | |
| 2473 (string-match "~\\'" name) | |
| 2474 (length name))))))) | |
| 2475 | |
| 2476 (defun file-ownership-preserved-p (file) | |
| 2477 "Return t if deleting FILE and rewriting it would preserve the owner." | |
| 2478 (let ((handler (find-file-name-handler file 'file-ownership-preserved-p))) | |
| 2479 (if handler | |
| 2480 (funcall handler 'file-ownership-preserved-p file) | |
| 2481 (let ((attributes (file-attributes file))) | |
| 2482 ;; Return t if the file doesn't exist, since it's true that no | |
| 2483 ;; information would be lost by an (attempted) delete and create. | |
| 2484 (or (null attributes) | |
| 2485 (= (nth 2 attributes) (user-uid))))))) | |
| 2486 | |
| 2487 (defun file-name-sans-extension (filename) | |
| 2488 "Return FILENAME sans final \"extension\". | |
| 2489 The extension, in a file name, is the part that follows the last `.'." | |
| 2490 (save-match-data | |
| 2491 (let ((file (file-name-sans-versions (file-name-nondirectory filename))) | |
| 2492 directory) | |
| 2493 (if (string-match "\\.[^.]*\\'" file) | |
| 2494 (if (setq directory (file-name-directory filename)) | |
| 2495 (expand-file-name (substring file 0 (match-beginning 0)) | |
| 2496 directory) | |
| 2497 (substring file 0 (match-beginning 0))) | |
| 2498 filename)))) | |
| 2499 | |
| 2500 (defun file-name-extension (filename &optional period) | |
| 2501 "Return FILENAME's final \"extension\". | |
| 2502 The extension, in a file name, is the part that follows the last `.'. | |
| 2503 Return nil for extensionless file names such as `foo'. | |
| 3061 | 2504 Return the empty string for file names such as `foo'. |
| 428 | 2505 |
| 2506 If PERIOD is non-nil, then the returned value includes the period | |
| 2507 that delimits the extension, and if FILENAME has no extension, | |
| 2508 the value is \"\"." | |
| 2509 (save-match-data | |
| 2510 (let ((file (file-name-sans-versions (file-name-nondirectory filename)))) | |
| 2511 (if (string-match "\\.[^.]*\\'" file) | |
| 2512 (substring file (+ (match-beginning 0) (if period 0 1))) | |
| 2513 (if period | |
| 2514 ""))))) | |
| 2515 | |
| 1333 | 2516 (defcustom make-backup-file-name-function nil |
| 2517 "A function to use instead of the default `make-backup-file-name'. | |
| 2518 A value of nil gives the default `make-backup-file-name' behaviour. | |
| 2519 | |
| 2520 This could be buffer-local to do something special for specific | |
| 2521 files. If you define it, you may need to change `backup-file-name-p' | |
| 2522 and `file-name-sans-versions' too. | |
| 2523 | |
| 2524 See also `backup-directory-alist'." | |
| 2525 :group 'backup | |
| 2526 :type '(choice (const :tag "Default" nil) | |
| 2527 (function :tag "Your function"))) | |
| 2528 | |
| 2529 (defcustom backup-directory-alist nil | |
| 2530 "Alist of filename patterns and backup directory names. | |
| 2531 Each element looks like (REGEXP . DIRECTORY). Backups of files with | |
| 2532 names matching REGEXP will be made in DIRECTORY. DIRECTORY may be | |
| 2533 relative or absolute. If it is absolute, so that all matching files | |
| 2534 are backed up into the same directory, the file names in this | |
| 2535 directory will be the full name of the file backed up with all | |
| 2536 directory separators changed to `!' to prevent clashes. This will not | |
| 2537 work correctly if your filesystem truncates the resulting name. | |
| 2538 | |
| 2539 For the common case of all backups going into one directory, the alist | |
| 2540 should contain a single element pairing \".\" with the appropriate | |
| 2541 directory name. | |
| 2542 | |
| 2543 If this variable is nil, or it fails to match a filename, the backup | |
| 2544 is made in the original file's directory. | |
| 2545 | |
| 2546 On MS-DOS filesystems without long names this variable is always | |
| 2547 ignored." | |
| 2548 :group 'backup | |
| 2549 :type '(repeat (cons (regexp :tag "Regexp matching filename") | |
| 2550 (directory :tag "Backup directory name")))) | |
| 2551 | |
| 428 | 2552 (defun make-backup-file-name (file) |
| 2553 "Create the non-numeric backup file name for FILE. | |
| 1333 | 2554 Normally this will just be the file's name with `~' appended. |
| 2555 Customization hooks are provided as follows. | |
| 2556 | |
| 2557 If the variable `make-backup-file-name-function' is non-nil, its value | |
| 2558 should be a function which will be called with FILE as its argument; | |
| 2559 the resulting name is used. | |
| 2560 | |
| 2561 Otherwise a match for FILE is sought in `backup-directory-alist'; see | |
| 2562 the documentation of that variable. If the directory for the backup | |
| 2563 doesn't exist, it is created." | |
| 2564 (if make-backup-file-name-function | |
| 2565 (funcall make-backup-file-name-function file) | |
| 2566 ; (if (and (eq system-type 'ms-dos) | |
| 2567 ; (not (msdos-long-file-names))) | |
| 2568 ; (let ((fn (file-name-nondirectory file))) | |
| 2569 ; (concat (file-name-directory file) | |
| 2570 ; (or (and (string-match "\\`[^.]+\\'" fn) | |
| 2571 ; (concat (match-string 0 fn) ".~")) | |
| 2572 ; (and (string-match "\\`[^.]+\\.\\(..?\\)?" fn) | |
| 2573 ; (concat (match-string 0 fn) "~"))))) | |
| 2574 (concat (make-backup-file-name-1 file) "~"))) | |
| 2575 | |
| 2576 (defun make-backup-file-name-1 (file) | |
| 2577 "Subroutine of `make-backup-file-name' and `find-backup-file-name'." | |
| 2578 (let ((alist backup-directory-alist) | |
| 2579 elt backup-directory dir-sep-string) | |
| 2580 (while alist | |
| 2581 (setq elt (pop alist)) | |
| 2582 (if (string-match (car elt) file) | |
| 2583 (setq backup-directory (cdr elt) | |
| 2584 alist nil))) | |
| 2585 (if (null backup-directory) | |
| 2586 file | |
| 2587 (unless (file-exists-p backup-directory) | |
| 2588 (condition-case nil | |
| 2589 (make-directory backup-directory 'parents) | |
| 2590 (file-error file))) | |
| 2591 (if (file-name-absolute-p backup-directory) | |
| 2592 (progn | |
| 2593 (when (memq system-type '(windows-nt ms-dos)) | |
| 2594 ;; Normalize DOSish file names: convert all slashes to | |
| 2595 ;; directory-sep-char, downcase the drive letter, if any, | |
| 2596 ;; and replace the leading "x:" with "/drive_x". | |
| 2597 (or (file-name-absolute-p file) | |
| 2598 (setq file (expand-file-name file))) ; make defaults explicit | |
| 2599 ;; Replace any invalid file-name characters (for the | |
| 2600 ;; case of backing up remote files). | |
| 2601 (setq file (expand-file-name (convert-standard-filename file))) | |
| 2602 (setq dir-sep-string (char-to-string directory-sep-char)) | |
| 2603 (if (eq (aref file 1) ?:) | |
| 2604 (setq file (concat dir-sep-string | |
| 2605 "drive_" | |
| 2606 (char-to-string (downcase (aref file 0))) | |
| 2607 (if (eq (aref file 2) directory-sep-char) | |
| 2608 "" | |
| 2609 dir-sep-string) | |
| 2610 (substring file 2))))) | |
| 2611 ;; Make the name unique by substituting directory | |
| 2612 ;; separators. It may not really be worth bothering about | |
| 2613 ;; doubling `!'s in the original name... | |
| 2614 (expand-file-name | |
| 2615 (subst-char-in-string | |
| 2616 directory-sep-char ?! | |
| 2617 (replace-regexp-in-string "!" "!!" file)) | |
| 2618 backup-directory)) | |
| 2619 (expand-file-name (file-name-nondirectory file) | |
| 2620 (file-name-as-directory | |
| 2621 (expand-file-name backup-directory | |
| 2622 (file-name-directory file)))))))) | |
| 428 | 2623 |
| 2624 (defun backup-file-name-p (file) | |
| 2625 "Return non-nil if FILE is a backup file name (numeric or not). | |
| 2626 This is a separate function so you can redefine it for customization. | |
| 2627 You may need to redefine `file-name-sans-versions' as well." | |
| 440 | 2628 (string-match "~\\'" file)) |
| 428 | 2629 |
| 1333 | 2630 (defvar backup-extract-version-start) |
| 2631 | |
| 428 | 2632 ;; This is used in various files. |
| 1333 | 2633 ;; The usage of backup-extract-version-start is not very clean, |
| 2634 ;; but I can't see a good alternative, so as of now I am leaving it alone. | |
| 428 | 2635 (defun backup-extract-version (fn) |
| 1333 | 2636 "Given the name of a numeric backup file, FN, return the backup number. |
| 2637 Uses the free variable `backup-extract-version-start', whose value should be | |
| 428 | 2638 the index in the name where the version number begins." |
| 1333 | 2639 (if (and (string-match "[0-9]+~$" fn backup-extract-version-start) |
| 2640 (= (match-beginning 0) backup-extract-version-start)) | |
| 2641 (string-to-int (substring fn backup-extract-version-start -1)) | |
| 428 | 2642 0)) |
| 2643 | |
| 1333 | 2644 ;; [[ FSF 21.2 says: |
| 2645 ;; I believe there is no need to alter this behavior for VMS; | |
| 2646 ;; since backup files are not made on VMS, it should not get called. ]] | |
| 428 | 2647 (defun find-backup-file-name (fn) |
| 1333 | 2648 "Find a file name for a backup file FN, and suggestions for deletions. |
| 428 | 2649 Value is a list whose car is the name for the backup file |
| 1333 | 2650 and whose cdr is a list of old versions to consider deleting now. |
| 2651 If the value is nil, don't make a backup. | |
| 2652 Uses `backup-directory-alist' in the same way as does | |
| 2653 `make-backup-file-name'." | |
| 428 | 2654 (let ((handler (find-file-name-handler fn 'find-backup-file-name))) |
| 2655 ;; Run a handler for this function so that ange-ftp can refuse to do it. | |
| 2656 (if handler | |
| 2657 (funcall handler 'find-backup-file-name fn) | |
| 1333 | 2658 (if (or (eq version-control 'never) |
| 2659 ;; We don't support numbered backups on plain MS-DOS | |
| 2660 ;; when long file names are unavailable. | |
| 2661 ; (and (eq system-type 'ms-dos) | |
| 2662 ; (not (msdos-long-file-names))) | |
| 2663 ) | |
| 428 | 2664 (list (make-backup-file-name fn)) |
| 1333 | 2665 (let* ((basic-name (make-backup-file-name-1 fn)) |
| 2666 (base-versions (concat (file-name-nondirectory basic-name) | |
| 2667 ".~")) | |
| 2668 (backup-extract-version-start (length base-versions)) | |
| 428 | 2669 (high-water-mark 0) |
| 1333 | 2670 (number-to-delete 0) |
| 2671 possibilities deserve-versions-p versions) | |
| 428 | 2672 (condition-case () |
| 2673 (setq possibilities (file-name-all-completions | |
| 2674 base-versions | |
| 1333 | 2675 (file-name-directory basic-name)) |
| 2676 versions (sort (mapcar #'backup-extract-version | |
| 2677 possibilities) | |
| 2678 #'<) | |
| 2679 high-water-mark (apply 'max 0 versions) | |
| 428 | 2680 deserve-versions-p (or version-control |
| 2681 (> high-water-mark 0)) | |
| 2682 number-to-delete (- (length versions) | |
| 1333 | 2683 kept-old-versions |
| 2684 kept-new-versions | |
| 2685 -1)) | |
| 2686 (file-error (setq possibilities nil))) | |
| 428 | 2687 (if (not deserve-versions-p) |
| 2688 (list (make-backup-file-name fn)) | |
| 1333 | 2689 (cons (format "%s.~%d~" basic-name (1+ high-water-mark)) |
| 428 | 2690 (if (and (> number-to-delete 0) |
| 2691 ;; Delete nothing if there is overflow | |
| 2692 ;; in the number of versions to keep. | |
| 2693 (>= (+ kept-new-versions kept-old-versions -1) 0)) | |
| 1333 | 2694 (mapcar (lambda (n) |
| 2695 (format "%s.~%d~" basic-name n)) | |
| 428 | 2696 (let ((v (nthcdr kept-old-versions versions))) |
| 2697 (rplacd (nthcdr (1- number-to-delete) v) ()) | |
| 2698 v)))))))))) | |
| 2699 | |
| 2700 (defun file-nlinks (filename) | |
| 2701 "Return number of names file FILENAME has." | |
| 2702 (car (cdr (file-attributes filename)))) | |
| 2703 | |
| 2704 (defun file-relative-name (filename &optional directory) | |
| 1333 | 2705 "Convert FILENAME to be relative to DIRECTORY (default: `default-directory'). |
| 428 | 2706 This function returns a relative file name which is equivalent to FILENAME |
| 2707 when used with that default directory as the default. | |
| 442 | 2708 If this is impossible (which can happen on MS Windows when the file name |
| 2709 and directory use different drive names) then it returns FILENAME." | |
| 428 | 2710 (save-match-data |
| 2711 (let ((fname (expand-file-name filename))) | |
| 2712 (setq directory (file-name-as-directory | |
| 2713 (expand-file-name (or directory default-directory)))) | |
| 2714 ;; On Microsoft OSes, if FILENAME and DIRECTORY have different | |
| 2715 ;; drive names, they can't be relative, so return the absolute name. | |
| 440 | 2716 (if (and (eq system-type 'windows-nt) |
| 428 | 2717 (not (string-equal (substring fname 0 2) |
| 2718 (substring directory 0 2)))) | |
| 2719 filename | |
| 2720 (let ((ancestor ".") | |
| 2721 (fname-dir (file-name-as-directory fname))) | |
| 2722 (while (and (not (string-match (concat "^" (regexp-quote directory)) | |
| 2723 fname-dir)) | |
| 2724 (not (string-match (concat "^" (regexp-quote directory)) fname))) | |
| 2725 (setq directory (file-name-directory (substring directory 0 -1)) | |
| 2726 ancestor (if (equal ancestor ".") | |
| 2727 ".." | |
| 2728 (concat "../" ancestor)))) | |
| 2729 ;; Now ancestor is empty, or .., or ../.., etc. | |
| 2730 (if (string-match (concat "^" (regexp-quote directory)) fname) | |
| 2731 ;; We matched within FNAME's directory part. | |
| 2732 ;; Add the rest of FNAME onto ANCESTOR. | |
| 2733 (let ((rest (substring fname (match-end 0)))) | |
| 2734 (if (and (equal ancestor ".") | |
| 2735 (not (equal rest ""))) | |
| 2736 ;; But don't bother with ANCESTOR if it would give us `./'. | |
| 2737 rest | |
| 2738 (concat (file-name-as-directory ancestor) rest))) | |
| 2739 ;; We matched FNAME's directory equivalent. | |
| 2740 ancestor)))))) | |
| 2741 | |
| 2742 (defun save-buffer (&optional args) | |
| 2743 "Save current buffer in visited file if modified. Versions described below. | |
| 2744 By default, makes the previous version into a backup file | |
| 2745 if previously requested or if this is the first save. | |
| 1333 | 2746 With 1 \\[universal-argument], marks this version |
| 428 | 2747 to become a backup when the next save is done. |
| 1333 | 2748 With 2 \\[universal-argument]'s, |
| 428 | 2749 unconditionally makes the previous version into a backup file. |
| 1333 | 2750 With 3 \\[universal-argument]'s, marks this version |
| 2751 to become a backup when the next save is done, | |
| 2752 and unconditionally makes the previous version into a backup file. | |
| 2753 | |
| 2754 With argument of 0, never make the previous version into a backup file. | |
| 428 | 2755 |
| 2756 If a file's name is FOO, the names of its numbered backup versions are | |
| 2757 FOO.~i~ for various integers i. A non-numbered backup file is called FOO~. | |
| 2758 Numeric backups (rather than FOO~) will be made if value of | |
| 2759 `version-control' is not the atom `never' and either there are already | |
| 2760 numeric versions of the file being backed up, or `version-control' is | |
| 2761 non-nil. | |
| 2762 We don't want excessive versions piling up, so there are variables | |
| 1333 | 2763 `kept-old-versions', which tells Emacs how many oldest versions to keep, |
| 428 | 2764 and `kept-new-versions', which tells how many newest versions to keep. |
| 2765 Defaults are 2 old versions and 2 new. | |
| 2766 `dired-kept-versions' controls dired's clean-directory (.) command. | |
| 2767 If `delete-old-versions' is nil, system will query user | |
| 1333 | 2768 before trimming versions. Otherwise it does it silently. |
| 2769 | |
| 2770 If `vc-make-backup-files' is nil, which is the default, | |
| 2771 no backup files are made for files managed by version control. | |
| 2772 (This is because the version control system itself records previous versions.) | |
| 2773 | |
| 2774 See the subroutine `basic-save-buffer' for more information." | |
| 428 | 2775 (interactive "_p") |
| 2776 (let ((modp (buffer-modified-p)) | |
| 2777 (large (> (buffer-size) 50000)) | |
| 2778 (make-backup-files (or (and make-backup-files (not (eq args 0))) | |
| 2779 (memq args '(16 64))))) | |
| 2780 (and modp (memq args '(16 64)) (setq buffer-backed-up nil)) | |
| 1333 | 2781 (if (and modp large (buffer-file-name)) |
| 2782 (display-message 'progress (format "Saving file %s..." | |
| 2783 (buffer-file-name)))) | |
| 428 | 2784 (basic-save-buffer) |
| 2785 (and modp (memq args '(4 64)) (setq buffer-backed-up nil)))) | |
| 2786 | |
| 2787 (defun delete-auto-save-file-if-necessary (&optional force) | |
| 2788 "Delete auto-save file for current buffer if `delete-auto-save-files' is t. | |
| 1333 | 2789 Normally delete only if the file was written by this XEmacs since |
| 2790 the last real save, but optional arg FORCE non-nil means delete anyway." | |
| 428 | 2791 (and buffer-auto-save-file-name delete-auto-save-files |
| 2792 (not (string= buffer-file-name buffer-auto-save-file-name)) | |
| 2793 (or force (recent-auto-save-p)) | |
| 2794 (progn | |
| 2795 (ignore-file-errors (delete-file buffer-auto-save-file-name)) | |
| 2796 (set-buffer-auto-saved)))) | |
| 2797 | |
| 2798 ;; XEmacs change (from Sun) | |
| 2799 ;; used to communicate with continue-save-buffer: | |
| 2800 (defvar continue-save-buffer-hooks-tail nil) | |
| 2801 | |
| 2802 ;; Not in FSFmacs | |
| 2803 (defun basic-write-file-data (realname truename) | |
| 2804 ;; call the hooks until the bytes are put | |
| 2805 ;; call write-region as a last resort | |
| 2806 (let ((region-written nil) | |
| 2807 (hooks write-file-data-hooks)) | |
| 2808 (while (and hooks (not region-written)) | |
| 2809 (setq region-written (funcall (car hooks) realname) | |
| 2810 hooks (cdr hooks))) | |
| 2811 (if (not region-written) | |
| 2812 (write-region (point-min) (point-max) realname nil t truename)))) | |
| 2813 | |
| 1333 | 2814 ; (defvar auto-save-hook nil |
| 2815 ; "Normal hook run just before auto-saving.") | |
| 2816 | |
| 428 | 2817 (put 'after-save-hook 'permanent-local t) |
| 2818 (defvar after-save-hook nil | |
| 2819 "Normal hook that is run after a buffer is saved to its file. | |
| 2820 These hooks are considered to pertain to the visited file. | |
| 2821 So this list is cleared if you change the visited file name.") | |
| 2822 | |
| 1333 | 2823 (defvar save-buffer-coding-system nil |
| 2824 "If non-nil, use this coding system for saving the buffer. | |
| 2825 More precisely, use this coding system in place of the | |
| 2826 value of `buffer-file-coding-system', when saving the buffer. | |
| 2827 Calling `write-region' for any purpose other than saving the buffer | |
| 2828 will still use `buffer-file-coding-system'; this variable has no effect | |
| 2829 in such cases.") | |
| 2830 | |
| 2831 (make-variable-buffer-local 'save-buffer-coding-system) | |
| 2832 (put 'save-buffer-coding-system 'permanent-local t) | |
| 2833 | |
| 428 | 2834 (defun files-fetch-hook-value (hook) |
| 4156 | 2835 (let ((localval (copy-list (symbol-value hook))) |
| 2836 (globalval (copy-list (default-value hook)))) | |
| 428 | 2837 (if (memq t localval) |
|
5652
cc6f0266bc36
Avoid #'delq in core Lisp, for the sake of style, a very slightly smaller binary
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
2838 (setq localval (append (delete* t localval) (delete* t globalval)))) |
| 428 | 2839 localval)) |
| 2840 | |
| 2841 (defun basic-save-buffer () | |
| 2842 "Save the current buffer in its visited file, if it has been modified. | |
| 1333 | 2843 The hooks `write-contents-hooks', `local-write-file-hooks' and |
| 2844 `write-file-hooks' get a chance to do the job of saving; if they do not, | |
| 2116 | 2845 then the buffer is saved in the visited file in the usual way. |
| 1333 | 2846 After saving the buffer, this function runs `after-save-hook'." |
| 428 | 2847 (interactive) |
| 1333 | 2848 (save-current-buffer |
| 428 | 2849 ;; In an indirect buffer, save its base buffer instead. |
| 2850 (if (buffer-base-buffer) | |
| 2851 (set-buffer (buffer-base-buffer))) | |
| 2852 (if (buffer-modified-p) | |
| 2853 (let ((recent-save (recent-auto-save-p))) | |
| 2854 ;; If buffer has no file name, ask user for one. | |
| 2855 (or buffer-file-name | |
| 2856 (let ((filename | |
| 2857 (expand-file-name | |
| 2858 (read-file-name "File to save in: ") nil))) | |
| 2859 (and (file-exists-p filename) | |
| 2860 (or (y-or-n-p (format "File `%s' exists; overwrite? " | |
| 2861 filename)) | |
| 2862 (error "Canceled"))) | |
| 2863 (set-visited-file-name filename))) | |
| 2864 (or (verify-visited-file-modtime (current-buffer)) | |
| 2865 (not (file-exists-p buffer-file-name)) | |
| 2866 (yes-or-no-p | |
| 2867 (format "%s has changed since visited or saved. Save anyway? " | |
| 2868 (file-name-nondirectory buffer-file-name))) | |
| 2869 (error "Save not confirmed")) | |
| 2870 (save-restriction | |
| 2871 (widen) | |
| 1333 | 2872 (save-excursion |
| 2873 (and (> (point-max) 1) | |
| 2874 (not find-file-literally) | |
| 2875 (not (eq (char-after (1- (point-max))) ?\n)) | |
| 2876 (not (and (eq selective-display t) | |
| 2877 (eq (char-after (1- (point-max))) ?\r))) | |
| 2878 (or (eq require-final-newline t) | |
|
5766
182d01410b8d
Add mode-require-final-newline from GNU. Thanks GNU.
Mats Lidell <mats.lidell@cag.se>
parents:
5721
diff
changeset
|
2879 (eq require-final-newline 'visit-save) |
| 1333 | 2880 (and require-final-newline |
| 2881 (y-or-n-p | |
| 2882 (format "Buffer %s does not end in newline. Add one? " | |
| 2883 (buffer-name))))) | |
| 2884 (save-excursion | |
| 2885 (goto-char (point-max)) | |
| 2886 (insert ?\n)))) | |
| 2887 | |
| 2888 ;; Support VC version backups. | |
| 2889 (if-fboundp 'vc-before-save | |
| 2890 (vc-before-save)) | |
| 434 | 2891 |
| 444 | 2892 ;; Run the write-file-hooks until one returns non-nil. |
| 428 | 2893 ;; Bind after-save-hook to nil while running the |
| 2894 ;; write-file-hooks so that if this function is called | |
| 2895 ;; recursively (from inside a write-file-hook) the | |
| 2896 ;; after-hooks will only get run once (from the | |
| 2897 ;; outermost call). | |
| 2898 ;; | |
| 2899 ;; Ugh, have to duplicate logic of run-hook-with-args-until-success | |
| 2900 (let ((hooks (append (files-fetch-hook-value 'write-contents-hooks) | |
| 2901 (files-fetch-hook-value | |
| 2902 'local-write-file-hooks) | |
| 2903 (files-fetch-hook-value 'write-file-hooks))) | |
| 2904 (after-save-hook nil) | |
| 2905 (local-write-file-hooks nil) | |
| 2906 (write-contents-hooks nil) | |
| 2907 (write-file-hooks nil) | |
| 2908 done) | |
| 2909 (while (and hooks | |
| 2910 (let ((continue-save-buffer-hooks-tail hooks)) | |
| 2911 (not (setq done (funcall (car hooks)))))) | |
| 2912 (setq hooks (cdr hooks))) | |
| 2913 ;; If a hook returned t, file is already "written". | |
| 2914 ;; Otherwise, write it the usual way now. | |
| 2915 (if (not done) | |
| 2916 (basic-save-buffer-1))) | |
| 2917 ;; XEmacs: next two clauses (buffer-file-number setting and | |
| 1333 | 2918 ;; set-file-modes) moved into basic-save-buffer-1 for use by |
| 2919 ;; continue-save-buffer. | |
| 428 | 2920 ) |
| 2921 ;; If the auto-save file was recent before this command, | |
| 2922 ;; delete it now. | |
| 2923 (delete-auto-save-file-if-necessary recent-save) | |
| 2924 ;; Support VC `implicit' locking. | |
| 502 | 2925 (if-fboundp 'vc-after-save |
| 2926 (vc-after-save)) | |
| 428 | 2927 (run-hooks 'after-save-hook)) |
| 2928 (display-message 'no-log "(No changes need to be saved)")))) | |
| 2929 | |
| 2930 ;; This does the "real job" of writing a buffer into its visited file | |
| 2931 ;; and making a backup file. This is what is normally done | |
| 2932 ;; but inhibited if one of write-file-hooks returns non-nil. | |
| 2933 ;; It returns a value to store in setmodes. | |
| 2934 (defun basic-save-buffer-1 () | |
| 1333 | 2935 (if save-buffer-coding-system |
| 2936 (let ((coding-system-for-write save-buffer-coding-system)) | |
| 2937 (basic-save-buffer-2)) | |
| 2938 (basic-save-buffer-2))) | |
| 2939 | |
| 2940 (defun basic-save-buffer-2 () | |
| 428 | 2941 (let (setmodes tempsetmodes) |
| 2942 (if (not (file-writable-p buffer-file-name)) | |
| 2943 (let ((dir (file-name-directory buffer-file-name))) | |
| 2944 (if (not (file-directory-p dir)) | |
| 1333 | 2945 (if (file-exists-p dir) |
| 2946 (error "%s is not a directory" dir) | |
| 2947 (error "%s: no such directory" buffer-file-name)) | |
| 428 | 2948 (if (not (file-exists-p buffer-file-name)) |
| 2949 (error "Directory %s write-protected" dir) | |
| 2950 (if (yes-or-no-p | |
| 2951 (format "File %s is write-protected; try to save anyway? " | |
| 2952 (file-name-nondirectory | |
| 2953 buffer-file-name))) | |
| 2954 (setq tempsetmodes t) | |
| 2955 (error | |
| 2956 "Attempt to save to a file which you aren't allowed to write")))))) | |
| 2957 (or buffer-backed-up | |
| 2958 (setq setmodes (backup-buffer))) | |
| 2959 (let ((dir (file-name-directory buffer-file-name))) | |
| 2960 (if (and file-precious-flag | |
| 2961 (file-writable-p dir)) | |
| 2962 ;; If file is precious, write temp name, then rename it. | |
| 2963 ;; This requires write access to the containing dir, | |
| 2964 ;; which is why we don't try it if we don't have that access. | |
| 2965 (let ((realname buffer-file-name) | |
| 2966 tempname nogood i succeed | |
| 2967 (old-modtime (visited-file-modtime))) | |
| 2968 (setq i 0) | |
| 2969 (setq nogood t) | |
| 2970 ;; Find the temporary name to write under. | |
| 2971 (while nogood | |
| 2972 (setq tempname (format "%s#tmp#%d" dir i)) | |
| 2973 (setq nogood (file-exists-p tempname)) | |
| 2974 (setq i (1+ i))) | |
| 2975 (unwind-protect | |
| 2976 (progn (clear-visited-file-modtime) | |
| 2977 (write-region (point-min) (point-max) | |
| 2978 tempname nil realname | |
| 2979 buffer-file-truename) | |
| 2980 (setq succeed t)) | |
| 2981 ;; If writing the temp file fails, | |
| 2982 ;; delete the temp file. | |
| 2983 (or succeed | |
| 2984 (progn | |
| 1333 | 2985 (ignore-file-errors |
| 2986 (delete-file tempname)) | |
| 428 | 2987 (set-visited-file-modtime old-modtime)))) |
| 2988 ;; Since we have created an entirely new file | |
| 2989 ;; and renamed it, make sure it gets the | |
| 2990 ;; right permission bits set. | |
| 2991 (setq setmodes (file-modes buffer-file-name)) | |
| 2992 ;; We succeeded in writing the temp file, | |
| 2993 ;; so rename it. | |
| 2994 (rename-file tempname buffer-file-name t)) | |
| 2995 ;; If file not writable, see if we can make it writable | |
| 2996 ;; temporarily while we write it. | |
| 2997 ;; But no need to do so if we have just backed it up | |
| 2998 ;; (setmodes is set) because that says we're superseding. | |
| 2999 (cond ((and tempsetmodes (not setmodes)) | |
| 3000 ;; Change the mode back, after writing. | |
| 3001 (setq setmodes (file-modes buffer-file-name)) | |
| 1333 | 3002 (set-file-modes buffer-file-name (logior setmodes 128)))) |
| 428 | 3003 (basic-write-file-data buffer-file-name buffer-file-truename))) |
| 1333 | 3004 ;; #### FSF 21.2. We don't have last-coding-system-used. |
| 3005 ; ;; Now we have saved the current buffer. Let's make sure | |
| 3006 ; ;; that buffer-file-coding-system is fixed to what | |
| 3007 ; ;; actually used for saving by binding it locally. | |
| 3008 ; (if save-buffer-coding-system | |
| 3009 ; (setq save-buffer-coding-system last-coding-system-used) | |
| 3010 ; (setq buffer-file-coding-system last-coding-system-used)) | |
| 428 | 3011 (setq buffer-file-number |
| 3012 (if buffer-file-name | |
| 3013 (nth 10 (file-attributes buffer-file-name)) | |
| 3014 nil)) | |
| 3015 (if setmodes | |
| 3016 (condition-case () | |
| 3017 (set-file-modes buffer-file-name setmodes) | |
| 3018 (error nil))))) | |
| 3019 | |
| 3020 ;; XEmacs change, from Sun | |
| 3021 (defun continue-save-buffer () | |
| 3022 "Provide a clean way for a write-file-hook to wrap AROUND | |
| 3023 the execution of the remaining hooks and writing to disk. | |
| 3024 Do not call this function except from a functions | |
| 444 | 3025 on the `write-file-hooks' or `write-contents-hooks' list. |
| 428 | 3026 A hook that calls this function must return non-nil, |
| 444 | 3027 to signal completion to its caller. `continue-save-buffer' |
| 428 | 3028 always returns non-nil." |
| 3029 (let ((hooks (cdr (or continue-save-buffer-hooks-tail | |
| 3030 (error | |
| 3031 "continue-save-buffer called outside a write-file-hook!")))) | |
| 3032 (done nil)) | |
| 3033 ;; Do something like this: | |
| 3034 ;; (let ((write-file-hooks hooks)) (basic-save-buffer)) | |
| 3035 ;; First run the rest of the hooks. | |
| 3036 (while (and hooks | |
| 3037 (let ((continue-save-buffer-hooks-tail hooks)) | |
| 3038 (not (setq done (funcall (car hooks)))))) | |
| 3039 (setq hooks (cdr hooks))) | |
| 3040 ;; | |
| 3041 ;; If a hook returned t, file is already "written". | |
| 3042 (if (not done) | |
| 3043 (basic-save-buffer-1)) | |
| 3044 'continue-save-buffer)) | |
| 3045 | |
|
5245
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3046 (defun diff-buffer-with-file (&optional buffer) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3047 "View the differences between BUFFER and its associated file. |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3048 This requires the external program `diff' to be in your `exec-path'." |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3049 (interactive "bBuffer: ") |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3050 (with-current-buffer (get-buffer (or buffer (current-buffer))) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3051 (if (and buffer-file-name |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3052 (file-exists-p buffer-file-name)) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3053 (let ((tempfile (make-temp-file "buffer-content-"))) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3054 (unwind-protect |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3055 (save-restriction |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3056 (widen) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3057 (write-region (point-min) (point-max) tempfile nil 'nomessage) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3058 (diff-files-for-recover "File" |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3059 buffer-file-name tempfile buffer-file-name tempfile |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3060 buffer-file-coding-system) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3061 (sit-for 0)) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3062 (when (file-exists-p tempfile) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3063 (delete-file tempfile)))) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3064 (message "Buffer %s has no associated file on disc" (buffer-name)) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3065 ;; Display that message for 1 second so that user can read it |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3066 ;; in the minibuffer. |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3067 (sit-for 1))) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3068 ;; return always nil, so that save-buffers-kill-emacs will not move |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3069 ;; over to the next unsaved buffer when calling `d'. |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3070 nil) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3071 |
|
5249
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3072 (defvar save-some-buffers-action-alist |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3073 ;;instead of this we just say "yes all", "no all", etc. |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3074 ;;"save all the rest" |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3075 ;;"save only this buffer" "save no more buffers") |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3076 ;; this is rather bogus. --ben |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3077 ;; (it makes the dialog box too big, and you get an error |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3078 ;; "wrong type argument: framep, nil" when you hit q after |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3079 ;; choosing the option from the dialog box) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3080 |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3081 ;; We should fix the dialog box rather than disabling |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3082 ;; this! --hniksic |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3083 (list (list ?\C-r (lambda (buf) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3084 ;; #### FSF has an EXIT-ACTION argument |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3085 ;; to `view-buffer'. |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3086 (view-buffer buf |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3087 ; (function |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3088 ; (lambda (ignore) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3089 ; (exit-recursive-edit)))) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3090 ) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3091 (with-boundp 'view-exit-action |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3092 (setq view-exit-action |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3093 (lambda (ignore) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3094 (exit-recursive-edit)))) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3095 (recursive-edit) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3096 ;; Return nil to ask about BUF again. |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3097 nil) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3098 "%_Display Buffer") |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3099 (list ?d (lambda (buf) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3100 (save-window-excursion (diff-buffer-with-file buf)) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3101 (view-buffer (get-buffer-create "*File Diff*") t) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3102 (with-boundp 'view-exit-action |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3103 (setq view-exit-action |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3104 (lambda (ignore) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3105 (exit-recursive-edit)))) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3106 (recursive-edit) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3107 ;; Return nil to ask about BUF again. |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3108 nil) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3109 "View %_Changes in Buffer"))) |
|
d4fae3ebf26a
Add `save-some-buffers-action-alist'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5245
diff
changeset
|
3110 |
|
5245
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3111 (defun diff-files-for-recover (purpose file-1 file-2 |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3112 failed-file-1 failed-file-2 |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3113 coding-system) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3114 "Diff two files for recovering or comparing against the last saved version. |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3115 PURPOSE is an informational string used for naming the resulting buffer. |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3116 FILE-1 and FILE-2 are the two files to compare. |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3117 FAILED-FILE-1 and FAILED-FILE-2 are the names of files for which we should |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3118 generate directory listings on failure. |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3119 CODING-SYSTEM is the coding system of the resulting buffer." |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3120 (with-output-to-temp-buffer (concat "*" purpose " Diff*") |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3121 (buffer-disable-undo standard-output) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3122 (let ((coding-system-for-read coding-system)) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3123 (condition-case ferr |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3124 (progn |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3125 (apply #'call-process |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3126 recover-file-diff-program |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3127 nil standard-output nil |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3128 (append |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3129 recover-file-diff-arguments |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3130 (list file-1 file-2))) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3131 (if (fboundp 'diff-mode) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3132 (save-excursion |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3133 (set-buffer standard-output) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3134 (declare-fboundp (diff-mode))))) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3135 (io-error |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3136 (save-excursion |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3137 (let ((switches |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3138 (declare-boundp |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3139 dired-listing-switches))) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3140 (if (file-symlink-p failed-file-2) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3141 (setq switches (concat switches "L"))) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3142 (set-buffer standard-output) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3143 ;; XEmacs had the following line, not in FSF. |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3144 (setq default-directory (file-name-directory failed-file-2)) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3145 ;; Use insert-directory-safely, |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3146 ;; not insert-directory, because |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3147 ;; these files might not exist. |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3148 ;; In particular, FAILED-FILE-2 might not |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3149 ;; exist if the auto-save file |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3150 ;; was for a buffer that didn't |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3151 ;; visit a file, such as |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3152 ;; "*mail*". The code in v20.x |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3153 ;; called `ls' directly, so we |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3154 ;; need to emulate what `ls' did |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3155 ;; in that case. |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3156 (insert-directory-safely failed-file-1 switches) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3157 (insert-directory-safely failed-file-2 switches)) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3158 (terpri) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3159 (princ "Error during diff: ") |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3160 (display-error ferr standard-output))))))) |
|
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3161 |
| 428 | 3162 (defcustom save-some-buffers-query-display-buffer t |
| 3163 "*Non-nil makes `\\[save-some-buffers]' switch to the buffer offered for saving." | |
| 3164 :type 'boolean | |
| 3165 :group 'editing-basics) | |
| 3166 | |
| 1333 | 3167 (defun save-some-buffers (&optional arg pred) |
| 428 | 3168 "Save some modified file-visiting buffers. Asks user about each one. |
| 3169 Optional argument (the prefix) non-nil means save all with no questions. | |
| 1333 | 3170 Optional second argument PRED determines which buffers are considered: |
| 3171 If PRED is nil, all the file-visiting buffers are considered. | |
| 3172 If PRED is t, then certain non-file buffers will also be considered. | |
| 3173 If PRED is a zero-argument function, it indicates for each buffer whether | |
| 3174 to consider it or not when called with that buffer current." | |
| 428 | 3175 (interactive "P") |
|
5655
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3176 (labels |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3177 ;; XEmacs - do not use queried flag, make this function a label. |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3178 ((save-some-buffers-1 (arg pred switch-buffer) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3179 (let* ((switched nil) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3180 (last-buffer nil) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3181 (files-done |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3182 (map-y-or-n-p |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3183 (lambda (buffer) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3184 (prog1 |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3185 (and (buffer-modified-p buffer) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3186 (not (buffer-base-buffer buffer)) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3187 ;; XEmacs addition: |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3188 (not (symbol-value-in-buffer |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3189 'save-buffers-skip buffer)) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3190 (or |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3191 (buffer-file-name buffer) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3192 (and pred |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3193 (progn |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3194 (set-buffer buffer) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3195 (and buffer-offer-save (> (buffer-size) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3196 0))))) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3197 (or (not (functionp pred)) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3198 (with-current-buffer buffer (funcall pred))) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3199 (if arg |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3200 t |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3201 ;; #### We should provide a per-buffer means |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3202 ;; to disable the switching. For instance, |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3203 ;; you might want to turn it off for buffers |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3204 ;; the contents of which is meaningless to |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3205 ;; humans, such as `.newsrc.eld'. |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3206 (when (and switch-buffer |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3207 ;; map-y-or-n-p is displaying help |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3208 (not (eq last-buffer buffer))) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3209 (unless (one-window-p) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3210 (delete-other-windows)) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3211 (setq switched t) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3212 ;; #### Consider using `display-buffer' |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3213 ;; here for 21.1! |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3214 ;;(display-buffer buffer nil (selected-frame))) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3215 (switch-to-buffer buffer t)) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3216 (if (buffer-file-name buffer) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3217 (format "Save file %s? " |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3218 (buffer-file-name buffer)) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3219 (format "Save buffer %s? " |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3220 (buffer-name buffer))))) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3221 (setq last-buffer buffer))) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3222 (lambda (buffer) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3223 (set-buffer buffer) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3224 (condition-case () |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3225 (save-buffer) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3226 (error nil))) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3227 (buffer-list) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3228 '("buffer" "buffers" "save") |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3229 save-some-buffers-action-alist)) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3230 (abbrevs-done |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3231 (and save-abbrevs abbrevs-changed |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3232 (progn |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3233 (if (or arg |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3234 (eq save-abbrevs 'silently) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3235 (y-or-n-p (format "Save abbrevs in %s? " |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3236 abbrev-file-name))) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3237 (write-abbrev-file nil)) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3238 ;; Don't keep bothering user if he says no. |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3239 (setq abbrevs-changed nil) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3240 t)))) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3241 (or (> files-done 0) abbrevs-done |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3242 (display-message 'no-log "(No files need saving)")) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3243 switched))) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3244 (save-excursion |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3245 ;; `delete-other-windows' can bomb during autoloads generation, so |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3246 ;; guard it well. |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3247 (if (or noninteractive |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3248 (eq (selected-window) (minibuffer-window)) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3249 (not save-some-buffers-query-display-buffer)) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3250 ;; If playing with windows is unsafe or undesired, just do the |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3251 ;; usual drill. |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3252 (save-some-buffers-1 arg pred nil) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3253 ;; Else, protect the windows. |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3254 (when (save-window-excursion |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3255 (save-some-buffers-1 arg pred t)) |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3256 ;; Force redisplay. |
|
b7ae5f44b950
Remove some redundant functions, change others to labels, lisp/
Aidan Kehoe <kehoea@parhasard.net>
parents:
5652
diff
changeset
|
3257 (sit-for 0)))))) |
| 428 | 3258 |
| 1333 | 3259 |
| 428 | 3260 (defun not-modified (&optional arg) |
| 3261 "Mark current buffer as unmodified, not needing to be saved. | |
| 3262 With prefix arg, mark buffer as modified, so \\[save-buffer] will save. | |
| 3263 | |
| 3264 It is not a good idea to use this function in Lisp programs, because it | |
| 3265 prints a message in the minibuffer. Instead, use `set-buffer-modified-p'." | |
| 3266 (interactive "_P") | |
| 3267 (if arg ;; rewritten for I18N3 snarfing | |
| 3268 (display-message 'command "Modification-flag set") | |
| 3269 (display-message 'command "Modification-flag cleared")) | |
| 3270 (set-buffer-modified-p arg)) | |
| 3271 | |
| 3272 (defun toggle-read-only (&optional arg) | |
| 1333 | 3273 "Change whether this buffer is visiting its file read-only. |
| 3274 With arg, set read-only iff arg is positive. | |
| 3275 If visiting file read-only and `view-read-only' is non-nil, enter view mode." | |
| 3276 (interactive "P") | |
| 3277 (cond | |
| 3278 ((and arg (if (> (prefix-numeric-value arg) 0) buffer-read-only | |
| 3279 (not buffer-read-only))) ; If buffer-read-only is set correctly, | |
| 3280 nil) ; do nothing. | |
| 3281 ;; Toggle. | |
| 3282 ((and buffer-read-only view-minor-mode) | |
| 3283 ;(View-exit-and-edit) | |
| 3284 (view-mode) | |
| 3285 (make-local-variable 'view-read-only) | |
| 3286 (setq view-read-only t)) ; Must leave view mode. | |
| 3287 ((and (not buffer-read-only) view-read-only | |
| 3288 (not (eq (get major-mode 'mode-class) 'special))) | |
| 3289 ;(view-mode-enter) | |
| 3290 (view-mode)) | |
| 3291 (t (setq buffer-read-only (not buffer-read-only)) | |
| 3292 (force-mode-line-update)))) | |
| 428 | 3293 |
| 3294 (defun insert-file (filename &optional codesys) | |
| 3295 "Insert contents of file FILENAME into buffer after point. | |
| 3296 Set mark after the inserted text. | |
| 3297 | |
| 771 | 3298 Optional second argument specifies the coding system to use when decoding |
| 3299 the file. Interactively, with a prefix argument, you will be prompted for | |
| 3300 the coding system. | |
| 428 | 3301 |
| 771 | 3302 This function is meant for the user to run interactively. Don't call it |
| 3303 from programs! Use `insert-file-contents' instead. \(Its calling sequence | |
| 3304 is different; see its documentation)." | |
| 428 | 3305 (interactive "*fInsert file: \nZCoding system: ") |
| 3306 (if (file-directory-p filename) | |
| 3307 (signal 'file-error (list "Opening input file" "file is a directory" | |
| 3308 filename))) | |
| 3309 (let ((tem | |
| 3310 (if codesys | |
| 3311 (let ((coding-system-for-read | |
| 3312 (get-coding-system codesys))) | |
| 3313 (insert-file-contents filename)) | |
| 3314 (insert-file-contents filename)))) | |
| 3315 (push-mark (+ (point) (car (cdr tem)))))) | |
| 3316 | |
| 3317 (defun append-to-file (start end filename &optional codesys) | |
| 3318 "Append the contents of the region to the end of file FILENAME. | |
| 771 | 3319 When called from a function, expects three arguments, START, END and |
| 3320 FILENAME. START and END are buffer positions saying what text to write. | |
| 3321 Optional fourth argument specifies the coding system to use when encoding | |
| 3322 the file. Interactively, with a prefix argument, you will be prompted for | |
| 3323 the coding system." | |
| 428 | 3324 (interactive "r\nFAppend to file: \nZCoding system: ") |
| 3325 (if codesys | |
| 3326 (let ((buffer-file-coding-system (get-coding-system codesys))) | |
| 3327 (write-region start end filename t)) | |
| 3328 (write-region start end filename t))) | |
| 3329 | |
| 3330 (defun file-newest-backup (filename) | |
| 3331 "Return most recent backup file for FILENAME or nil if no backups exist." | |
| 1333 | 3332 ;; `make-backup-file-name' will get us the right directory for |
| 3333 ;; ordinary or numeric backups. It might create a directory for | |
| 3334 ;; backups as a side-effect, according to `backup-directory-alist'. | |
| 3335 (let* ((filename (file-name-sans-versions | |
| 3336 (make-backup-file-name filename))) | |
| 428 | 3337 (file (file-name-nondirectory filename)) |
| 3338 (dir (file-name-directory filename)) | |
| 3339 (comp (file-name-all-completions file dir)) | |
| 1333 | 3340 (newest nil) |
| 3341 tem) | |
| 428 | 3342 (while comp |
| 1333 | 3343 (setq tem (pop comp)) |
| 3344 (cond ((and (backup-file-name-p tem) | |
| 3345 (string= (file-name-sans-versions tem) file)) | |
| 3346 (setq tem (concat dir tem)) | |
| 3347 (if (or (null newest) | |
| 3348 (file-newer-than-file-p tem newest)) | |
| 3349 (setq newest tem))))) | |
| 428 | 3350 newest)) |
| 3351 | |
| 3352 (defun rename-uniquely () | |
| 3353 "Rename current buffer to a similar name not already taken. | |
| 3354 This function is useful for creating multiple shell process buffers | |
| 3355 or multiple mail buffers, etc." | |
| 3356 (interactive) | |
| 3357 (save-match-data | |
| 1333 | 3358 (let ((base-name (buffer-name))) |
| 3359 (and (string-match "<[0-9]+>\\'" base-name) | |
| 3360 (not (and buffer-file-name | |
| 3361 (string= base-name | |
| 3362 (file-name-nondirectory buffer-file-name)))) | |
| 3363 ;; If the existing buffer name has a <NNN>, | |
| 3364 ;; which isn't part of the file name (if any), | |
| 3365 ;; then get rid of that. | |
| 3366 (setq base-name (substring base-name 0 (match-beginning 0)))) | |
| 3367 (rename-buffer (generate-new-buffer-name base-name)) | |
| 3368 (force-mode-line-update)))) | |
| 428 | 3369 |
| 3370 (defun make-directory-path (path) | |
| 3371 "Create all the directories along path that don't exist yet." | |
| 3372 (interactive "Fdirectory path to create: ") | |
| 3373 (make-directory path t)) | |
| 3374 | |
| 3375 (defun make-directory (dir &optional parents) | |
| 3376 "Create the directory DIR and any nonexistent parent dirs. | |
| 3377 Interactively, the default choice of directory to create | |
| 3378 is the current default directory for file names. | |
| 3379 That is useful when you have visited a file in a nonexistent directory. | |
| 3380 | |
| 3381 Noninteractively, the second (optional) argument PARENTS says whether | |
| 3382 to create parent directories if they don't exist." | |
| 3383 (interactive (list (let ((current-prefix-arg current-prefix-arg)) | |
| 3384 (read-directory-name "Create directory: ")) | |
| 3385 current-prefix-arg)) | |
| 3386 (let ((handler (find-file-name-handler dir 'make-directory))) | |
| 3387 (if handler | |
| 3388 (funcall handler 'make-directory dir parents) | |
| 3389 (if (not parents) | |
| 3390 (make-directory-internal dir) | |
| 3391 (let ((dir (directory-file-name (expand-file-name dir))) | |
| 3392 create-list) | |
| 3393 (while (not (file-exists-p dir)) | |
| 3394 (setq create-list (cons dir create-list) | |
| 3395 dir (directory-file-name (file-name-directory dir)))) | |
| 3396 (while create-list | |
| 3397 (make-directory-internal (car create-list)) | |
| 3398 (setq create-list (cdr create-list)))))))) | |
| 3399 | |
| 3400 (put 'revert-buffer-function 'permanent-local t) | |
| 3401 (defvar revert-buffer-function nil | |
| 3402 "Function to use to revert this buffer, or nil to do the default. | |
| 3403 The function receives two arguments IGNORE-AUTO and NOCONFIRM, | |
| 3404 which are the arguments that `revert-buffer' received.") | |
| 3405 | |
| 3406 (put 'revert-buffer-insert-file-contents-function 'permanent-local t) | |
| 3407 (defvar revert-buffer-insert-file-contents-function nil | |
| 3408 "Function to use to insert contents when reverting this buffer. | |
| 3409 Gets two args, first the nominal file name to use, | |
| 849 | 3410 and second, t if reading the auto-save file. |
| 3411 If the current buffer contents are to be discarded, the function must do | |
| 1333 | 3412 so itself. |
| 3413 | |
| 3414 The function you specify is responsible for updating (or preserving) point.") | |
| 428 | 3415 |
| 3416 (defvar before-revert-hook nil | |
| 3417 "Normal hook for `revert-buffer' to run before reverting. | |
| 3418 If `revert-buffer-function' is used to override the normal revert | |
| 3419 mechanism, this hook is not used.") | |
| 3420 | |
| 3421 (defvar after-revert-hook nil | |
| 3422 "Normal hook for `revert-buffer' to run after reverting. | |
| 3423 Note that the hook value that it runs is the value that was in effect | |
| 3424 before reverting; that makes a difference if you have buffer-local | |
| 3425 hook functions. | |
| 3426 | |
| 3427 If `revert-buffer-function' is used to override the normal revert | |
| 3428 mechanism, this hook is not used.") | |
| 3429 | |
| 3430 (defvar revert-buffer-internal-hook nil | |
| 3431 "Don't use this.") | |
| 3432 | |
| 1333 | 3433 ;; END SYNC WITH FSF 21.2. |
| 3434 | |
| 428 | 3435 (defun revert-buffer (&optional ignore-auto noconfirm preserve-modes) |
| 3436 "Replace the buffer text with the text of the visited file on disk. | |
| 3437 This undoes all changes since the file was visited or saved. | |
| 3438 With a prefix argument, offer to revert from latest auto-save file, if | |
| 3439 that is more recent than the visited file. | |
| 3440 | |
| 849 | 3441 This command also refreshes certain special buffers that contain text |
| 3442 which doesn't come from a file, but reflects some other data base | |
| 3443 instead: for example, Dired buffers and buffer-list buffers. This is | |
| 3444 implemented by having the modes set `revert-buffer-function'. | |
| 428 | 3445 |
| 3446 When called from Lisp, the first argument is IGNORE-AUTO; only offer | |
| 3447 to revert from the auto-save file when this is nil. Note that the | |
| 3448 sense of this argument is the reverse of the prefix argument, for the | |
| 3449 sake of backward compatibility. IGNORE-AUTO is optional, defaulting | |
| 3450 to nil. | |
| 3451 | |
| 3452 Optional second argument NOCONFIRM means don't ask for confirmation at | |
| 3453 all. | |
| 3454 | |
| 3455 Optional third argument PRESERVE-MODES non-nil means don't alter | |
| 849 | 3456 the buffer's modes. Otherwise, reinitialize them using `normal-mode'. |
| 428 | 3457 |
| 3458 If the value of `revert-buffer-function' is non-nil, it is called to | |
| 3459 do all the work for this command. Otherwise, the hooks | |
| 3460 `before-revert-hook' and `after-revert-hook' are run at the beginning | |
| 3461 and the end, and if `revert-buffer-insert-file-contents-function' is | |
| 819 | 3462 non-nil, it is called instead of rereading visited file contents. |
| 3463 | |
| 849 | 3464 If the buffer-modified flag is nil, and we are not reverting from an |
| 3465 auto-save file, then compare the contents of the buffer and the file. | |
| 3466 Revert only if they differ." | |
| 428 | 3467 |
| 3468 ;; I admit it's odd to reverse the sense of the prefix argument, but | |
| 3469 ;; there is a lot of code out there which assumes that the first | |
| 3470 ;; argument should be t to avoid consulting the auto-save file, and | |
| 3471 ;; there's no straightforward way to encourage authors to notice a | |
| 3472 ;; reversal of the argument sense. So I'm just changing the user | |
| 3473 ;; interface, but leaving the programmatic interface the same. | |
| 3474 (interactive (list (not current-prefix-arg))) | |
| 3475 (if revert-buffer-function | |
| 3476 (funcall revert-buffer-function ignore-auto noconfirm) | |
| 3477 (let* ((opoint (point)) | |
| 819 | 3478 (newbuf nil) |
| 988 | 3479 (found nil) |
| 819 | 3480 (delay-prompt nil) |
| 428 | 3481 (auto-save-p (and (not ignore-auto) |
| 3482 (recent-auto-save-p) | |
| 3483 buffer-auto-save-file-name | |
| 3484 (file-readable-p buffer-auto-save-file-name) | |
| 3485 (y-or-n-p | |
| 3486 "Buffer has been auto-saved recently. Revert from auto-save file? "))) | |
| 3487 (file-name (if auto-save-p | |
| 3488 buffer-auto-save-file-name | |
| 3489 buffer-file-name))) | |
| 3490 (cond ((null file-name) | |
| 3491 (error "Buffer does not seem to be associated with any file")) | |
| 3492 ((or noconfirm | |
| 3493 (and (not (buffer-modified-p)) | |
| 988 | 3494 (dolist (rx revert-without-query found) |
| 3495 (when (string-match rx file-name) | |
| 3496 (setq found t)))) | |
| 819 | 3497 ;; If we might perform an optimized revert then we |
| 3498 ;; want to delay prompting in case we don't need to | |
| 3499 ;; do it at all | |
| 3500 (and (not auto-save-p) | |
| 3501 (not (buffer-modified-p)) | |
| 3502 (setq delay-prompt t)) | |
| 428 | 3503 (yes-or-no-p (format "Revert buffer from file %s? " |
| 3504 file-name))) | |
| 3505 (run-hooks 'before-revert-hook) | |
| 819 | 3506 ;; Only perform our optimized revert if nothing obvious |
| 3507 ;; has changed. | |
| 3508 (cond ((or auto-save-p | |
| 3509 (buffer-modified-p) | |
| 3510 (and (setq newbuf (revert-buffer-internal | |
| 3511 file-name)) | |
| 988 | 3512 (or noconfirm found |
| 838 | 3513 (and delay-prompt |
| 3514 (yes-or-no-p | |
| 3515 (format "Revert buffer from file %s? " | |
| 3516 file-name)))))) | |
| 819 | 3517 ;; If file was backed up but has changed since, |
| 3518 ;; we should make another backup. | |
| 3519 (and (not auto-save-p) | |
| 3520 (not (verify-visited-file-modtime (current-buffer))) | |
| 3521 (setq buffer-backed-up nil)) | |
| 3522 ;; Get rid of all undo records for this buffer. | |
| 3523 (or (eq buffer-undo-list t) | |
| 3524 (setq buffer-undo-list nil)) | |
| 3525 ;; Effectively copy the after-revert-hook status, | |
| 3526 ;; since after-find-file will clobber it. | |
| 3527 (let ((global-hook (default-value 'after-revert-hook)) | |
| 3528 (local-hook-p (local-variable-p 'after-revert-hook | |
| 3529 (current-buffer))) | |
| 3530 (local-hook (and (local-variable-p 'after-revert-hook | |
| 3531 (current-buffer)) | |
| 3532 after-revert-hook))) | |
| 3533 (let (buffer-read-only | |
| 3534 ;; Don't make undo records for the reversion. | |
| 3535 (buffer-undo-list t)) | |
| 3536 (if revert-buffer-insert-file-contents-function | |
| 3537 (funcall revert-buffer-insert-file-contents-function | |
| 3538 file-name auto-save-p) | |
| 3539 (if (not (file-exists-p file-name)) | |
| 3540 (error "File %s no longer exists!" file-name)) | |
| 3541 ;; Bind buffer-file-name to nil | |
| 3542 ;; so that we don't try to lock the file. | |
| 3543 (let ((buffer-file-name nil)) | |
| 3544 (or auto-save-p | |
| 3545 (unlock-buffer))) | |
| 3546 (widen) | |
| 3547 ;; When reading in an autosave, it's encoded using | |
| 3548 ;; `escape-quoted', so we need to use it. (It is always | |
| 3549 ;; safe to specify `escape-quoted': | |
| 3550 ;; | |
| 3551 ;; 1. If file-coding but no Mule, `escape-quoted' is | |
| 3552 ;; aliased to `binary'. | |
| 3553 ;; 2. If no file-coding, all coding systems devolve into | |
| 3554 ;; `binary'. | |
| 3555 ;; 3. ASCII and ISO8859-1 are encoded the same in both | |
| 3556 ;; `binary' and `escape-quoted', so they will be | |
| 3557 ;; compatible for the most part.) | |
| 3558 ;; | |
| 3559 ;; Otherwise, use coding-system-for-read if explicitly | |
| 3560 ;; given (e.g. the "Revert Buffer with Specified | |
| 3561 ;; Encoding" menu entries), or use the coding system | |
| 3562 ;; that the file was loaded as. | |
| 3563 (let* ((coding-system-for-read | |
| 3564 (if auto-save-p 'escape-quoted | |
| 3565 (or coding-system-for-read | |
| 3566 buffer-file-coding-system-when-loaded))) | |
| 3567 ;; If the bfcs wasn't changed from its original | |
| 3568 ;; value (other than possible EOL change), then we | |
| 3569 ;; should update it for the new coding system. | |
| 3570 (should-update-bfcs | |
| 3571 (eq (coding-system-base | |
| 3572 buffer-file-coding-system-when-loaded) | |
| 3573 (coding-system-base | |
| 3574 buffer-file-coding-system))) | |
| 3575 (old-bfcs buffer-file-coding-system) | |
| 3576 ;; But if the EOL was changed, match it in the new | |
| 3577 ;; value of bfcs. | |
| 3578 (adjust-eol | |
| 3579 (and should-update-bfcs | |
| 3580 (not | |
| 3581 (eq (get-coding-system | |
| 3582 buffer-file-coding-system-when-loaded) | |
| 3583 (get-coding-system | |
| 3584 buffer-file-coding-system)))))) | |
| 3585 (insert-file-contents file-name (not auto-save-p) | |
| 3586 nil nil t) | |
| 3587 (when should-update-bfcs | |
| 3588 (setq buffer-file-coding-system old-bfcs) | |
| 3589 (set-buffer-file-coding-system | |
| 3590 (if adjust-eol | |
| 3591 (coding-system-base | |
| 3592 buffer-file-coding-system-when-loaded) | |
| 771 | 3593 buffer-file-coding-system-when-loaded) |
| 4024 | 3594 (not adjust-eol) t))))) |
| 819 | 3595 (goto-char (min opoint (point-max))) |
| 3596 ;; Recompute the truename in case changes in symlinks | |
| 3597 ;; have changed the truename. | |
| 3598 ;;XEmacs: already done by insert-file-contents | |
| 3599 ;;(setq buffer-file-truename | |
| 3600 ;;(abbreviate-file-name (file-truename buffer-file-name))) | |
| 3601 (after-find-file nil nil t t preserve-modes) | |
| 3602 ;; Run after-revert-hook as it was before we reverted. | |
| 3603 (setq-default revert-buffer-internal-hook global-hook) | |
| 3604 (if local-hook-p | |
| 3605 (progn | |
| 3606 (make-local-variable 'revert-buffer-internal-hook) | |
| 3607 (setq revert-buffer-internal-hook local-hook)) | |
| 3608 (kill-local-variable 'revert-buffer-internal-hook)) | |
| 3609 (run-hooks 'revert-buffer-internal-hook))) | |
| 3610 ((null newbuf) | |
| 3611 ;; The resultant buffer is identical, alter | |
| 3612 ;; modtime, update mods and exit | |
| 3613 (set-visited-file-modtime) | |
| 2030 | 3614 (after-find-file nil nil t t t) |
| 3615 ;; We preserved modes above so fixup the local | |
| 3616 ;; variables manually | |
| 3617 (condition-case err | |
| 3618 (hack-local-variables) | |
| 3619 (error (lwarn 'local-variables 'warning | |
| 3620 "File local-variables error: %s" | |
| 3621 (error-message-string err))))) | |
| 819 | 3622 (t t)) |
| 428 | 3623 t))))) |
| 3624 | |
| 2030 | 3625 ;; #### wouldn't something like `revert-buffer-compare-with-file' be a |
| 3626 ;; better name? | |
| 3627 ;; #### why is the argument optional? | |
| 819 | 3628 (defun revert-buffer-internal (&optional file-name) |
| 849 | 3629 "Read contents of FILE-NAME into a buffer, and compare to current buffer. |
| 3630 Return nil if identical, and the new buffer if different." | |
| 3631 | |
| 819 | 3632 (let* ((newbuf (get-buffer-create " *revert*")) |
| 3714 | 3633 bmin bmax |
| 3634 ;; #### b-f-c-s is _not necessarily_ the coding system that | |
| 3635 ;; was used to read in the file. See its docstring. | |
| 3636 (coding-system buffer-file-coding-system)) | |
| 819 | 3637 (save-excursion |
| 3638 (set-buffer newbuf) | |
| 826 | 3639 (with-obsolete-variable '(before-change-function after-change-function) |
| 3640 (let (buffer-read-only | |
| 3641 (buffer-undo-list t) | |
| 3642 after-change-function | |
| 3643 after-change-functions | |
| 3644 before-change-function | |
| 3638 | 3645 before-change-functions |
| 3714 | 3646 (coding-system-for-read coding-system) |
| 3647 ) | |
| 826 | 3648 (if revert-buffer-insert-file-contents-function |
| 3649 (funcall revert-buffer-insert-file-contents-function | |
| 3650 file-name nil) | |
| 3651 (if (not (file-exists-p file-name)) | |
| 3652 (error "File %s no longer exists!" file-name)) | |
| 3653 (widen) | |
| 863 | 3654 (insert-file-contents file-name nil nil nil t) |
| 826 | 3655 (setq bmin (point-min) |
| 3656 bmax (point-max)))))) | |
| 819 | 3657 (if (not (and (eq bmin (point-min)) |
| 3658 (eq bmax (point-max)) | |
| 3659 (eq (compare-buffer-substrings | |
| 3660 newbuf bmin bmax (current-buffer) bmin bmax) 0))) | |
| 3661 newbuf | |
| 863 | 3662 (and (kill-buffer newbuf) nil)))) |
| 819 | 3663 |
| 1333 | 3664 ;; BEGIN SYNC WITH FSF 21.2. |
| 3665 | |
| 844 | 3666 (defvar recover-file-diff-program "diff" |
| 3667 "Absolute or relative name of the `diff' program used by `recover-file'.") | |
| 3668 (defvar recover-file-diff-arguments '("-c") | |
| 3669 "List of arguments (switches) to pass to `diff' by `recover-file'.") | |
| 3670 | |
| 428 | 3671 (defun recover-file (file) |
| 3672 "Visit file FILE, but get contents from its last auto-save file." | |
| 3673 ;; Actually putting the file name in the minibuffer should be used | |
| 3674 ;; only rarely. | |
| 3675 ;; Not just because users often use the default. | |
| 3676 (interactive "FRecover file: ") | |
| 3677 (setq file (expand-file-name file)) | |
| 3678 (let ((handler (or (find-file-name-handler file 'recover-file) | |
| 3679 (find-file-name-handler | |
| 3680 (let ((buffer-file-name file)) | |
| 3681 (make-auto-save-file-name)) | |
| 3682 'recover-file)))) | |
| 3683 (if handler | |
| 3684 (funcall handler 'recover-file file) | |
| 464 | 3685 (if (auto-save-file-name-p (file-name-nondirectory file)) |
| 428 | 3686 (error "%s is an auto-save file" file)) |
| 3687 (let ((file-name (let ((buffer-file-name file)) | |
| 3688 (make-auto-save-file-name)))) | |
| 3689 (cond ((if (file-exists-p file) | |
| 3690 (not (file-newer-than-file-p file-name file)) | |
| 3691 (not (file-exists-p file-name))) | |
| 3692 (error "Auto-save file %s not current" file-name)) | |
| 844 | 3693 (t |
| 3694 (save-window-excursion | |
| 464 | 3695 ;; XEmacs change: use insert-directory instead of |
| 844 | 3696 ;; calling ls directly. Add option for diff. |
| 464 | 3697 (with-output-to-temp-buffer "*Directory*" |
| 3698 (buffer-disable-undo standard-output) | |
| 3699 (save-excursion | |
| 1346 | 3700 (let ((switches |
| 3701 (declare-boundp dired-listing-switches))) | |
| 1333 | 3702 (if (file-symlink-p file) |
| 3703 (setq switches (concat switches "L"))) | |
| 3704 (set-buffer standard-output) | |
| 3705 ;; XEmacs had the following line, not in FSF. | |
| 3706 (setq default-directory (file-name-directory file)) | |
| 3707 ;; Use insert-directory-safely, not insert-directory, | |
| 3708 ;; because these files might not exist. In particular, | |
| 3709 ;; FILE might not exist if the auto-save file was for | |
| 3710 ;; a buffer that didn't visit a file, such as "*mail*". | |
| 3711 ;; The code in v20.x called `ls' directly, so we need | |
| 3712 ;; to emulate what `ls' did in that case. | |
| 3713 (insert-directory-safely file switches) | |
| 3714 (insert-directory-safely file-name switches)))) | |
| 844 | 3715 (block nil |
| 3716 (while t | |
| 3717 (case (get-user-response | |
| 3718 nil | |
| 3719 ;; Formerly included file name. Useless now that | |
| 3720 ;; we display an ls of the files, and potentially | |
| 3721 ;; fills up the minibuffer, esp. with autosaves | |
| 3722 ;; all in one directory. | |
| 3723 "Recover auto save file? " | |
| 3724 '(("yes" "%_Yes" yes) | |
| 3725 ("no" "%_No" no) | |
| 3726 ("diff" "%_Diff" diff))) | |
| 3727 (no (error "Recover-file cancelled.")) | |
| 3728 (yes | |
| 3729 (switch-to-buffer (find-file-noselect file t)) | |
| 1333 | 3730 (let ((buffer-read-only nil) |
| 3731 ;; Keep the current buffer-file-coding-system. | |
| 3732 (coding-system buffer-file-coding-system) | |
| 3733 ;; Auto-saved file shoule be read without any code conversion. | |
| 3734 (coding-system-for-read 'escape-quoted)) | |
| 844 | 3735 (erase-buffer) |
| 1333 | 3736 (insert-file-contents file-name nil) |
| 4024 | 3737 (set-buffer-file-coding-system coding-system |
| 3738 nil t)) | |
| 844 | 3739 (after-find-file nil nil t) |
| 3740 (return nil)) | |
| 3741 (diff | |
| 3742 ;; rather than just diff the two files (which would | |
| 3743 ;; be easy), we have to deal with the fact that | |
| 3744 ;; they may be in different formats, since | |
| 3745 ;; auto-saves are always in escape-quoted. so, we | |
| 3746 ;; read the file into a buffer (#### should we look | |
| 3747 ;; at or use a file if it's already in a buffer? | |
| 3748 ;; maybe we would find hints as to the encoding of | |
| 3749 ;; the file?), then we save the resulting buffer in | |
| 3750 ;; escape-quoted, do the diff (between two files | |
| 3751 ;; both in escape-quoted) and read in the results | |
| 3752 ;; using coding system escape-quoted. That way, we | |
| 3753 ;; should get what's correct most of the time. | |
| 3754 (let ((buffer (generate-new-buffer "*recover*")) | |
| 3755 (temp | |
| 3756 (make-temp-name | |
| 3757 (concat (file-name-as-directory | |
| 3758 (temp-directory)) | |
| 3759 (file-name-nondirectory file) "-")))) | |
| 3760 (unwind-protect | |
| 3761 (progn | |
| 3762 (save-current-buffer | |
| 3763 (set-buffer buffer) | |
| 3764 (insert-file-contents file) | |
| 3765 (let ((coding-system-for-write | |
| 3766 'escape-quoted)) | |
| 3767 (write-region (point-min) (point-max) | |
| 3768 temp nil 'silent))) | |
|
5245
0d71bcf96ffd
Add ` diff-buffer-with-file'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5211
diff
changeset
|
3769 (diff-files-for-recover "Autosave" temp file-name file file-name 'escape-quoted)) |
| 844 | 3770 (ignore-errors (kill-buffer buffer)) |
| 3771 (ignore-file-errors | |
| 3772 (delete-file temp))))))))))))))) | |
| 428 | 3773 |
| 3774 (defun recover-session () | |
| 3775 "Recover auto save files from a previous Emacs session. | |
| 3776 This command first displays a Dired buffer showing you the | |
| 3777 previous sessions that you could recover from. | |
| 3778 To choose one, move point to the proper line and then type C-c C-c. | |
| 3779 Then you'll be asked about a number of files to recover." | |
| 3780 (interactive) | |
| 3781 (unless (fboundp 'dired) | |
| 3782 (error "recover-session requires dired")) | |
| 3783 (if (null auto-save-list-file-prefix) | |
| 3784 (error | |
| 3785 "You set `auto-save-list-file-prefix' to disable making session files")) | |
| 1333 | 3786 (let ((dir (file-name-directory auto-save-list-file-prefix))) |
| 3787 (unless (file-directory-p dir) | |
| 3788 (make-directory dir t))) | |
| 851 | 3789 (let* ((auto-save-list-dir |
| 3790 (file-name-directory auto-save-list-file-prefix)) | |
| 3791 (files (directory-files | |
| 3792 auto-save-list-dir | |
| 3793 t | |
| 3794 (concat "^" (regexp-quote (file-name-nondirectory | |
| 3795 auto-save-list-file-prefix))))) | |
| 3796 (files (sort (delete-if-not #'Recover-session-files-from-auto-save-list-file | |
| 3797 files) #'file-newer-than-file-p))) | |
| 3798 (unless files | |
| 3799 (error "No sessions can be recovered now")) | |
| 3800 (declare-fboundp (dired (cons auto-save-list-dir files))) | |
| 1333 | 3801 (save-excursion |
| 3802 (goto-char (point-min)) | |
| 3803 (or (looking-at "Move to the session you want to recover,") | |
| 3804 (let ((inhibit-read-only t)) | |
| 3805 (delete-matching-lines "^[ \t]*total.*$") | |
| 3806 (insert "Move to the session you want to recover,\n" | |
| 3807 "then type C-c C-c to select it.\n\n" | |
| 3808 "You can also delete some of these files;\n" | |
| 3809 "type d on a line to mark that file for deletion.\n\n")))) | |
| 851 | 3810 (use-local-map (let ((map (make-sparse-keymap))) |
| 3811 (set-keymap-parents map (list (current-local-map))) | |
| 3812 map)) | |
| 3813 (define-key (current-local-map) "\C-c\C-c" 'recover-session-finish))) | |
| 428 | 3814 |
| 851 | 3815 (defun Recover-session-files-from-auto-save-list-file (file) |
| 3816 "Return the auto save files in list file FILE that are current." | |
| 3817 (let (files | |
| 428 | 3818 (buffer (get-buffer-create " *recover*"))) |
| 3819 (unwind-protect | |
| 3820 (save-excursion | |
| 3821 ;; Read in the auto-save-list file. | |
| 3822 (set-buffer buffer) | |
| 3823 (erase-buffer) | |
| 771 | 3824 (let ((coding-system-for-read 'escape-quoted)) |
| 3825 (insert-file-contents file)) | |
| 428 | 3826 ;; Loop thru the text of that file |
| 3827 ;; and get out the names of the files to recover. | |
| 3828 (while (not (eobp)) | |
| 3829 (let (thisfile autofile) | |
| 3830 (if (eolp) | |
| 3831 ;; This is a pair of lines for a non-file-visiting buffer. | |
| 3832 ;; Get the auto-save file name and manufacture | |
| 3833 ;; a "visited file name" from that. | |
| 3834 (progn | |
| 3835 (forward-line 1) | |
| 3836 (setq autofile | |
| 3837 (buffer-substring-no-properties | |
| 3838 (point) | |
| 3839 (save-excursion | |
| 3840 (end-of-line) | |
| 3841 (point)))) | |
| 3842 (setq thisfile | |
| 3843 (expand-file-name | |
| 3844 (substring | |
| 3845 (file-name-nondirectory autofile) | |
| 3846 1 -1) | |
| 3847 (file-name-directory autofile))) | |
| 3848 (forward-line 1)) | |
| 3849 ;; This pair of lines is a file-visiting | |
| 3850 ;; buffer. Use the visited file name. | |
| 3851 (progn | |
| 3852 (setq thisfile | |
| 3853 (buffer-substring-no-properties | |
| 3854 (point) (progn (end-of-line) (point)))) | |
| 3855 (forward-line 1) | |
| 3856 (setq autofile | |
| 3857 (buffer-substring-no-properties | |
| 3858 (point) (progn (end-of-line) (point)))) | |
| 3859 (forward-line 1))) | |
| 3860 ;; Ignore a file if its auto-save file does not exist now. | |
| 3861 (if (file-exists-p autofile) | |
| 3862 (setq files (cons thisfile files))))) | |
| 851 | 3863 (setq files (nreverse files))) |
| 428 | 3864 (kill-buffer buffer)))) |
| 3865 | |
| 851 | 3866 (defun recover-session-finish () |
| 3867 "Choose one saved session to recover auto-save files from. | |
| 3868 This command is used in the special Dired buffer created by | |
| 3869 \\[recover-session]." | |
| 3870 (interactive) | |
| 3871 ;; Get the name of the session file to recover from. | |
| 3872 (let ((file (declare-fboundp (dired-get-filename)))) | |
| 1346 | 3873 (declare-fboundp (dired-unmark 1)) |
| 851 | 3874 ;; #### dired-do-flagged-delete in FSF. |
| 3875 ;; This version is for ange-ftp | |
| 1346 | 3876 ;;(declare-fboundp (dired-do-deletions t)) |
| 851 | 3877 ;; This version is for efs |
| 3878 (declare-fboundp (dired-expunge-deletions)) | |
| 3879 (let ((files (Recover-session-files-from-auto-save-list-file file))) | |
| 3880 ;; The file contains a pair of line for each auto-saved buffer. | |
| 3881 ;; The first line of the pair contains the visited file name | |
| 3882 ;; or is empty if the buffer was not visiting a file. | |
| 3883 ;; The second line is the auto-save file name. | |
| 3884 (if files | |
| 3885 (map-y-or-n-p "Recover %s? " | |
| 3886 (lambda (file) | |
| 3887 (condition-case nil | |
| 3888 (save-excursion (recover-file file)) | |
| 3889 (error | |
| 3890 (lwarn 'recover 'alert | |
| 3891 "Failed to recover `%s'" file)))) | |
| 3892 files | |
| 3893 '("file" "files" "recover")) | |
| 3894 (message "No files can be recovered from this session now"))))) | |
| 3895 | |
| 428 | 3896 (defun kill-some-buffers (&optional list) |
| 3897 "For each buffer in LIST, ask whether to kill it. | |
| 3898 LIST defaults to all existing live buffers." | |
| 3899 (interactive) | |
| 3900 (if (null list) | |
| 3901 (setq list (buffer-list))) | |
| 3902 (while list | |
| 3903 (let* ((buffer (car list)) | |
| 3904 (name (buffer-name buffer))) | |
| 3905 (and (not (string-equal name "")) | |
| 1333 | 3906 (not (eq (aref name 0) ?\ )) |
| 428 | 3907 (yes-or-no-p |
| 3908 (format | |
| 3909 (if (buffer-modified-p buffer) | |
| 3910 (gettext "Buffer %s HAS BEEN EDITED. Kill? ") | |
| 3911 (gettext "Buffer %s is unmodified. Kill? ")) | |
| 3912 name)) | |
| 3913 (kill-buffer buffer))) | |
| 3914 (setq list (cdr list)))) | |
| 3915 | |
| 3916 (defun auto-save-mode (arg) | |
| 3917 "Toggle auto-saving of contents of current buffer. | |
| 3918 With prefix argument ARG, turn auto-saving on if positive, else off." | |
| 3919 (interactive "P") | |
| 3920 (setq buffer-auto-save-file-name | |
| 3921 (and (if (null arg) | |
| 3922 (or (not buffer-auto-save-file-name) | |
| 3923 ;; If autosave is off because buffer has shrunk, | |
| 3924 ;; then toggling should turn it on. | |
| 3925 (< buffer-saved-size 0)) | |
| 3926 (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0)))) | |
| 3927 (if (and buffer-file-name auto-save-visited-file-name | |
| 3928 (not buffer-read-only)) | |
| 3929 buffer-file-name | |
| 3930 (make-auto-save-file-name)))) | |
| 3931 ;; If -1 was stored here, to temporarily turn off saving, | |
| 3932 ;; turn it back on. | |
| 3933 (and (< buffer-saved-size 0) | |
| 3934 (setq buffer-saved-size 0)) | |
| 3935 (if (interactive-p) | |
| 3936 (if buffer-auto-save-file-name ;; rewritten for I18N3 snarfing | |
| 3937 (display-message 'command "Auto-save on (in this buffer)") | |
| 3938 (display-message 'command "Auto-save off (in this buffer)"))) | |
| 3939 buffer-auto-save-file-name) | |
| 3940 | |
| 3941 (defun rename-auto-save-file () | |
| 3942 "Adjust current buffer's auto save file name for current conditions. | |
| 3943 Also rename any existing auto save file, if it was made in this session." | |
| 3944 (let ((osave buffer-auto-save-file-name)) | |
| 3945 (setq buffer-auto-save-file-name | |
| 3946 (make-auto-save-file-name)) | |
| 3947 (if (and osave buffer-auto-save-file-name | |
| 3948 (not (string= buffer-auto-save-file-name buffer-file-name)) | |
| 3949 (not (string= buffer-auto-save-file-name osave)) | |
| 3950 (file-exists-p osave) | |
| 3951 (recent-auto-save-p)) | |
| 3952 (rename-file osave buffer-auto-save-file-name t)))) | |
| 3953 | |
| 1333 | 3954 ;; END SYNC WITH FSF 21.2. |
| 3955 | |
| 464 | 3956 ;; make-auto-save-file-name and auto-save-file-name-p are now only in |
| 3957 ;; auto-save.el. | |
| 428 | 3958 |
| 3959 | |
| 1333 | 3960 ;; BEGIN SYNC WITH FSF 21.2. |
| 3961 | |
| 428 | 3962 (defun wildcard-to-regexp (wildcard) |
| 3963 "Given a shell file name pattern WILDCARD, return an equivalent regexp. | |
| 3964 The generated regexp will match a filename iff the filename | |
| 3965 matches that wildcard according to shell rules. Only wildcards known | |
| 3966 by `sh' are supported." | |
| 3967 (let* ((i (string-match "[[.*+\\^$?]" wildcard)) | |
| 3968 ;; Copy the initial run of non-special characters. | |
| 3969 (result (substring wildcard 0 i)) | |
| 3970 (len (length wildcard))) | |
| 3971 ;; If no special characters, we're almost done. | |
| 3972 (if i | |
| 3973 (while (< i len) | |
| 3974 (let ((ch (aref wildcard i)) | |
| 3975 j) | |
| 3976 (setq | |
| 3977 result | |
| 3978 (concat result | |
| 3979 (cond | |
| 1333 | 3980 ((and (eq ch ?\[) |
| 3981 (< (1+ i) len) | |
| 3982 (eq (aref wildcard (1+ i)) ?\])) | |
| 3983 "\\[") | |
| 428 | 3984 ((eq ch ?\[) ; [...] maps to regexp char class |
| 3985 (progn | |
| 3986 (setq i (1+ i)) | |
| 3987 (concat | |
| 3988 (cond | |
| 3989 ((eq (aref wildcard i) ?!) ; [!...] -> [^...] | |
| 3990 (progn | |
| 3991 (setq i (1+ i)) | |
| 3992 (if (eq (aref wildcard i) ?\]) | |
| 3993 (progn | |
| 3994 (setq i (1+ i)) | |
| 3995 "[^]") | |
| 3996 "[^"))) | |
| 3997 ((eq (aref wildcard i) ?^) | |
| 3998 ;; Found "[^". Insert a `\0' character | |
| 3999 ;; (which cannot happen in a filename) | |
| 4000 ;; into the character class, so that `^' | |
| 4001 ;; is not the first character after `[', | |
| 4002 ;; and thus non-special in a regexp. | |
| 4003 (progn | |
| 4004 (setq i (1+ i)) | |
| 4005 "[\000^")) | |
| 4006 ((eq (aref wildcard i) ?\]) | |
| 4007 ;; I don't think `]' can appear in a | |
| 4008 ;; character class in a wildcard, but | |
| 4009 ;; let's be general here. | |
| 4010 (progn | |
| 4011 (setq i (1+ i)) | |
| 4012 "[]")) | |
| 4013 (t "[")) | |
| 4014 (prog1 ; copy everything upto next `]'. | |
| 4015 (substring wildcard | |
| 4016 i | |
| 4017 (setq j (string-match | |
| 4018 "]" wildcard i))) | |
| 4019 (setq i (if j (1- j) (1- len))))))) | |
| 4020 ((eq ch ?.) "\\.") | |
| 4021 ((eq ch ?*) "[^\000]*") | |
| 4022 ((eq ch ?+) "\\+") | |
| 4023 ((eq ch ?^) "\\^") | |
| 4024 ((eq ch ?$) "\\$") | |
| 4025 ((eq ch ?\\) "\\\\") ; probably cannot happen... | |
| 4026 ((eq ch ??) "[^\000]") | |
| 4027 (t (char-to-string ch))))) | |
| 4028 (setq i (1+ i))))) | |
| 4029 ;; Shell wildcards should match the entire filename, | |
| 4030 ;; not its part. Make the regexp say so. | |
| 4031 (concat "\\`" result "\\'"))) | |
| 4032 | |
| 4033 (defcustom list-directory-brief-switches "-CF" | |
| 4034 "*Switches for list-directory to pass to `ls' for brief listing." | |
| 4035 :type 'string | |
| 4036 :group 'dired) | |
| 4037 | |
| 4038 (defcustom list-directory-verbose-switches "-l" | |
| 4039 "*Switches for list-directory to pass to `ls' for verbose listing," | |
| 4040 :type 'string | |
| 4041 :group 'dired) | |
| 4042 | |
| 1333 | 4043 (defun file-expand-wildcards (pattern &optional full) |
| 4044 "Expand wildcard pattern PATTERN. | |
| 4045 This returns a list of file names which match the pattern. | |
| 4046 | |
| 4047 If PATTERN is written as an absolute relative file name, | |
| 4048 the values are absolute also. | |
| 4049 | |
| 4050 If PATTERN is written as a relative file name, it is interpreted | |
| 4051 relative to the current default directory, `default-directory'. | |
| 4052 The file names returned are normally also relative to the current | |
| 4053 default directory. However, if FULL is non-nil, they are absolute." | |
| 4054 (let* ((nondir (file-name-nondirectory pattern)) | |
| 4055 (dirpart (file-name-directory pattern)) | |
| 4056 ;; A list of all dirs that DIRPART specifies. | |
| 4057 ;; This can be more than one dir | |
| 4058 ;; if DIRPART contains wildcards. | |
| 4059 (dirs (if (and dirpart (string-match "[[*?]" dirpart)) | |
| 4060 (mapcar 'file-name-as-directory | |
| 4061 (file-expand-wildcards (directory-file-name dirpart))) | |
| 4062 (list dirpart))) | |
| 4063 contents) | |
| 4064 (while dirs | |
| 4065 (when (or (null (car dirs)) ; Possible if DIRPART is not wild. | |
| 4066 (file-directory-p (directory-file-name (car dirs)))) | |
| 4067 (let ((this-dir-contents | |
| 4068 ;; Filter out "." and ".." | |
|
5652
cc6f0266bc36
Avoid #'delq in core Lisp, for the sake of style, a very slightly smaller binary
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
4069 (nset-difference (directory-files (or (car dirs) ".") full |
|
cc6f0266bc36
Avoid #'delq in core Lisp, for the sake of style, a very slightly smaller binary
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
4070 (wildcard-to-regexp nondir)) |
|
cc6f0266bc36
Avoid #'delq in core Lisp, for the sake of style, a very slightly smaller binary
Aidan Kehoe <kehoea@parhasard.net>
parents:
5573
diff
changeset
|
4071 '("." "..") :test #'equal))) |
| 1333 | 4072 (setq contents |
| 4073 (nconc | |
| 4074 (if (and (car dirs) (not full)) | |
| 4075 (mapcar (function (lambda (name) (concat (car dirs) name))) | |
| 4076 this-dir-contents) | |
| 4077 this-dir-contents) | |
| 4078 contents)))) | |
| 4079 (setq dirs (cdr dirs))) | |
| 4080 contents)) | |
| 4081 | |
| 428 | 4082 (defun list-directory (dirname &optional verbose) |
| 4083 "Display a list of files in or matching DIRNAME, a la `ls'. | |
| 4084 DIRNAME is globbed by the shell if necessary. | |
| 4085 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'. | |
| 4086 Actions controlled by variables `list-directory-brief-switches' | |
| 4087 and `list-directory-verbose-switches'." | |
| 4088 (interactive (let ((pfx current-prefix-arg)) | |
| 4089 (list (read-file-name (if pfx (gettext "List directory (verbose): ") | |
| 4090 (gettext "List directory (brief): ")) | |
| 4091 nil default-directory nil) | |
| 4092 pfx))) | |
| 4093 (let ((switches (if verbose list-directory-verbose-switches | |
| 4094 list-directory-brief-switches))) | |
| 4095 (or dirname (setq dirname default-directory)) | |
| 4096 (setq dirname (expand-file-name dirname)) | |
| 4097 (with-output-to-temp-buffer "*Directory*" | |
| 4098 (buffer-disable-undo standard-output) | |
| 4099 (princ "Directory ") | |
| 4100 (princ dirname) | |
| 4101 (terpri) | |
| 4102 (save-excursion | |
| 4103 (set-buffer "*Directory*") | |
| 1333 | 4104 (setq default-directory |
| 4105 (if (file-directory-p dirname) | |
| 4106 (file-name-as-directory dirname) | |
| 4107 (file-name-directory dirname))) | |
| 428 | 4108 (let ((wildcard (not (file-directory-p dirname)))) |
| 4109 (insert-directory dirname switches wildcard (not wildcard))))))) | |
| 4110 | |
| 1333 | 4111 (defun shell-quote-wildcard-pattern (pattern) |
| 4112 "Quote characters special to the shell in PATTERN, leave wildcards alone. | |
| 4113 | |
| 4114 PATTERN is assumed to represent a file-name wildcard suitable for the | |
| 4115 underlying filesystem. For Unix and GNU/Linux, the characters from the | |
| 4116 set [ \\t\\n;<>&|()#$] are quoted with a backslash; for DOS/Windows, all | |
| 4117 the parts of the pattern which don't include wildcard characters are | |
| 4118 quoted with double quotes. | |
| 4119 Existing quote characters in PATTERN are left alone, so you can pass | |
| 4120 PATTERN that already quotes some of the special characters." | |
| 4121 (save-match-data | |
| 4122 (cond | |
| 4123 ((memq system-type '(ms-dos windows-nt)) | |
| 4124 ;; DOS/Windows don't allow `"' in file names. So if the | |
| 4125 ;; argument has quotes, we can safely assume it is already | |
| 4126 ;; quoted by the caller. | |
| 4127 (if (or (string-match "[\"]" pattern) | |
| 4128 ;; We quote [&()#$'] in case their shell is a port of a | |
| 4129 ;; Unixy shell. We quote [,=+] because stock DOS and | |
| 4130 ;; Windows shells require that in some cases, such as | |
| 4131 ;; passing arguments to batch files that use positional | |
| 4132 ;; arguments like %1. | |
| 4133 (not (string-match "[ \t;&()#$',=+]" pattern))) | |
| 4134 pattern | |
| 4135 (let ((result "\"") | |
| 4136 (beg 0) | |
| 4137 end) | |
| 4138 (while (string-match "[*?]+" pattern beg) | |
| 4139 (setq end (match-beginning 0) | |
| 4140 result (concat result (substring pattern beg end) | |
| 4141 "\"" | |
| 4142 (substring pattern end (match-end 0)) | |
| 4143 "\"") | |
| 4144 beg (match-end 0))) | |
| 4145 (concat result (substring pattern beg) "\"")))) | |
| 4146 (t | |
| 4147 (let ((beg 0)) | |
| 4148 (while (string-match "[ \t\n;<>&|()#$]" pattern beg) | |
| 4149 (setq pattern | |
| 4150 (concat (substring pattern 0 (match-beginning 0)) | |
| 4151 "\\" | |
| 4152 (substring pattern (match-beginning 0))) | |
| 4153 beg (1+ (match-end 0))))) | |
| 4154 pattern)))) | |
| 4155 | |
| 4156 | |
| 428 | 4157 (defvar insert-directory-program "ls" |
| 4158 "Absolute or relative name of the `ls' program used by `insert-directory'.") | |
| 4159 | |
| 4160 ;; insert-directory | |
| 4161 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and | |
| 4162 ;; FULL-DIRECTORY-P is nil. | |
| 4163 ;; The single line of output must display FILE's name as it was | |
| 4164 ;; given, namely, an absolute path name. | |
| 4165 ;; - must insert exactly one line for each file if WILDCARD or | |
| 4166 ;; FULL-DIRECTORY-P is t, plus one optional "total" line | |
| 4167 ;; before the file lines, plus optional text after the file lines. | |
| 4168 ;; Lines are delimited by "\n", so filenames containing "\n" are not | |
| 4169 ;; allowed. | |
| 4170 ;; File lines should display the basename. | |
| 4171 ;; - must be consistent with | |
| 4172 ;; - functions dired-move-to-filename, (these two define what a file line is) | |
| 4173 ;; dired-move-to-end-of-filename, | |
| 4174 ;; dired-between-files, (shortcut for (not (dired-move-to-filename))) | |
| 4175 ;; dired-insert-headerline | |
| 4176 ;; dired-after-subdir-garbage (defines what a "total" line is) | |
| 4177 ;; - variable dired-subdir-regexp | |
| 1606 | 4178 ;; - may be passed "--dired" as argument in SWITCHES. |
| 4179 ;; Filename handlers might have to remove this switch if their | |
| 4180 ;; "ls" command does not support it. | |
| 1333 | 4181 |
| 4182 ;; END SYNC WITH FSF 21.2. | |
| 4183 | |
| 2671 | 4184 (defvar insert-directory-ls-version 'unknown) |
| 4185 | |
| 428 | 4186 (defun insert-directory (file switches &optional wildcard full-directory-p) |
| 4187 "Insert directory listing for FILE, formatted according to SWITCHES. | |
| 4188 Leaves point after the inserted text. | |
| 4189 SWITCHES may be a string of options, or a list of strings. | |
| 4190 Optional third arg WILDCARD means treat FILE as shell wildcard. | |
| 4191 Optional fourth arg FULL-DIRECTORY-P means file is a directory and | |
| 4192 switches do not contain `d', so that a full listing is expected. | |
| 4193 | |
| 4194 This works by running a directory listing program | |
| 4195 whose name is in the variable `insert-directory-program'. | |
| 4196 If WILDCARD, it also runs the shell specified by `shell-file-name'." | |
| 4197 ;; We need the directory in order to find the right handler. | |
| 4198 (let ((handler (find-file-name-handler (expand-file-name file) | |
| 4199 'insert-directory))) | |
| 1606 | 4200 (cond |
| 4201 (handler | |
| 4202 (funcall handler 'insert-directory file switches | |
| 4203 wildcard full-directory-p)) | |
| 4204 ;; [mswindows-insert-directory should be called | |
| 4205 ;; nt-insert-directory - kkm]. not true any more according to | |
| 4206 ;; my new naming scheme. --ben | |
| 4207 ((and (fboundp 'mswindows-insert-directory) | |
| 4208 (eq system-type 'windows-nt)) | |
| 4209 (declare-fboundp (mswindows-insert-directory | |
| 4210 file switches wildcard full-directory-p))) | |
| 4211 (t | |
| 4212 (let* ((beg (point)) | |
|
4400
555e21a66d51
2008-01-13 Michael Sperber <mike@xemacs.org>
Mike Sperber <sperber@deinprogramm.de>
parents:
4266
diff
changeset
|
4213 ;; on Unix, assume that ls will output in what the |
|
555e21a66d51
2008-01-13 Michael Sperber <mike@xemacs.org>
Mike Sperber <sperber@deinprogramm.de>
parents:
4266
diff
changeset
|
4214 ;; file-name coding system specifies |
|
555e21a66d51
2008-01-13 Michael Sperber <mike@xemacs.org>
Mike Sperber <sperber@deinprogramm.de>
parents:
4266
diff
changeset
|
4215 (coding-system-for-read (get-coding-system 'file-name)) |
| 1606 | 4216 (result |
| 4217 (if wildcard | |
| 4218 ;; Run ls in the directory of the file pattern we asked for. | |
| 4219 (let ((default-directory | |
| 4220 (if (file-name-absolute-p file) | |
| 4221 (file-name-directory file) | |
| 4222 (file-name-directory (expand-file-name file)))) | |
| 4223 (pattern (file-name-nondirectory file)) | |
| 4224 (start 0)) | |
| 4225 ;; Quote some characters that have special meanings in shells; | |
| 4226 ;; but don't quote the wildcards--we want them to be special. | |
| 4227 ;; We also currently don't quote the quoting characters | |
| 4228 ;; in case people want to use them explicitly to quote | |
| 4229 ;; wildcard characters. | |
| 4230 ;;#### Unix-specific | |
| 4231 (while (string-match "[ \t\n;<>&|()#$]" pattern start) | |
| 4232 (setq pattern | |
| 4233 (concat (substring pattern 0 (match-beginning 0)) | |
| 4234 "\\" | |
| 4235 (substring pattern (match-beginning 0))) | |
| 4236 start (1+ (match-end 0)))) | |
| 4237 (call-process shell-file-name nil t nil | |
| 4238 "-c" (concat "\\" ;; Disregard shell aliases! | |
| 4239 insert-directory-program | |
| 4240 " -d " | |
| 4241 (if (stringp switches) | |
| 4242 switches | |
| 4243 (mapconcat 'identity switches " ")) | |
| 4244 " " | |
| 4245 pattern))) | |
| 4246 ;; SunOS 4.1.3, SVr4 and others need the "." to list the | |
| 4247 ;; directory if FILE is a symbolic link. | |
| 4248 (apply 'call-process | |
| 4249 insert-directory-program nil t nil | |
| 4250 (let (list) | |
| 4251 (if (listp switches) | |
| 4252 (setq list switches) | |
| 4253 (if (not (equal switches "")) | |
| 4254 (let ((switches switches)) | |
| 4255 ;; Split the switches at any spaces | |
| 4256 ;; so we can pass separate options as separate args. | |
| 4257 (while (string-match " " switches) | |
| 4258 (setq list (cons (substring switches 0 (match-beginning 0)) | |
| 4259 list) | |
| 4260 switches (substring switches (match-end 0)))) | |
| 4261 (setq list (cons switches list))))) | |
| 4262 (append list | |
| 4263 (list | |
| 4264 (if full-directory-p | |
| 4265 (concat (file-name-as-directory file) | |
| 4266 ;;#### Unix-specific | |
| 4267 ".") | |
| 4268 file)))))))) | |
| 2671 | 4269 |
| 4270 ;; If we got "//DIRED//" in the output, it means we got a real | |
| 4271 ;; directory listing, even if `ls' returned nonzero. | |
| 4272 ;; So ignore any errors. | |
| 4273 (when (if (stringp switches) | |
| 4274 (string-match "--dired\\>" switches) | |
| 4275 (member "--dired" switches)) | |
| 4276 (save-excursion | |
| 4277 (forward-line -2) | |
| 4278 (when (looking-at "//SUBDIRED//") | |
| 4279 (forward-line -1)) | |
| 4280 (if (looking-at "//DIRED//") | |
| 4281 (setq result 0)))) | |
| 4282 | |
| 4283 (when (and (not (eq 0 result)) | |
| 4284 (eq insert-directory-ls-version 'unknown)) | |
| 4285 ;; The first time ls returns an error, | |
| 4286 ;; find the version numbers of ls, | |
| 4287 ;; and set insert-directory-ls-version | |
| 4288 ;; to > if it is more than 5.2.1, < if it is less, nil if it | |
| 4289 ;; is equal or if the info cannot be obtained. | |
| 4290 ;; (That can mean it isn't GNU ls.) | |
| 4291 (let ((version-out | |
| 4292 (with-temp-buffer | |
| 4293 (call-process "ls" nil t nil "--version") | |
| 4294 (buffer-string)))) | |
| 4295 (if (string-match "ls (.*utils) \\([0-9.]*\\)$" version-out) | |
| 4296 (let* ((version (match-string 1 version-out)) | |
| 4297 (split (split-string version "[.]")) | |
| 4298 (numbers (mapcar 'string-to-int split)) | |
| 4299 (min '(5 2 1)) | |
| 4300 comparison) | |
| 4301 (while (and (not comparison) (or numbers min)) | |
| 4302 (cond ((null min) | |
| 4303 (setq comparison '>)) | |
| 4304 ((null numbers) | |
| 4305 (setq comparison '<)) | |
| 4306 ((> (car numbers) (car min)) | |
| 4307 (setq comparison '>)) | |
| 4308 ((< (car numbers) (car min)) | |
| 4309 (setq comparison '<)) | |
| 4310 (t | |
| 4311 (setq numbers (cdr numbers) | |
| 4312 min (cdr min))))) | |
| 4313 (setq insert-directory-ls-version (or comparison '=))) | |
| 4314 (setq insert-directory-ls-version nil)))) | |
| 4315 | |
| 4316 ;; For GNU ls versions 5.2.2 and up, ignore minor errors. | |
| 4317 (when (and (eq 1 result) (eq insert-directory-ls-version '>)) | |
| 4318 (setq result 0)) | |
| 4319 | |
| 1606 | 4320 ;; If `insert-directory-program' failed, signal an error. |
| 2671 | 4321 (unless (eq 0 result) |
| 4322 ;; Delete the error message it may have output. | |
| 4323 (delete-region beg (point)) | |
| 4324 ;; On non-Posix systems, we cannot open a directory, so | |
| 4325 ;; don't even try, because that will always result in | |
| 4326 ;; the ubiquitous "Access denied". Instead, show the | |
| 4327 ;; command line so the user can try to guess what went wrong. | |
| 4328 (if (and (file-directory-p file) | |
| 4329 (memq system-type '(ms-dos windows-nt))) | |
| 4330 (error | |
| 4331 "Reading directory: \"%s %s -- %s\" exited with status %s" | |
| 4332 insert-directory-program | |
| 4333 (if (listp switches) (concat switches) switches) | |
| 4334 file result) | |
| 4335 (error "Listing directory failed"))) | |
| 1606 | 4336 |
| 4337 (when (or (and (listp switches) | |
| 4338 (member "--dired" switches)) | |
| 4339 (string-match "--dired\\>" switches)) | |
| 4340 (forward-line -2) | |
| 4341 (when (looking-at "//SUBDIRED//") | |
| 4342 (delete-region (point) (progn (forward-line 1) (point))) | |
| 4343 (forward-line -1)) | |
| 2671 | 4344 (if (looking-at "//DIRED//") |
| 4345 (let ((end (line-end-position)) | |
| 4346 (linebeg (point)) | |
| 4347 error-lines) | |
| 4348 ;; Find all the lines that are error messages, | |
| 4349 ;; and record the bounds of each one. | |
| 4350 (goto-char beg) | |
| 4351 (while (< (point) linebeg) | |
| 4352 (or (eql (following-char) ?\s) | |
| 4353 (push (list (point) (line-end-position)) error-lines)) | |
| 4354 (forward-line 1)) | |
| 4355 (setq error-lines (nreverse error-lines)) | |
| 4356 ;; Now read the numeric positions of file names. | |
| 4357 (goto-char linebeg) | |
| 4358 (forward-word 1) | |
| 4359 (forward-char 3) | |
| 4360 (while (< (point) end) | |
| 4361 (let ((start (insert-directory-adj-pos | |
| 4362 (+ beg (read (current-buffer))) | |
| 4363 error-lines)) | |
| 4364 (end (insert-directory-adj-pos | |
| 4365 (+ beg (read (current-buffer))) | |
| 4366 error-lines))) | |
| 4367 (if (memq (char-after end) '(?\n ?\ )) | |
| 4368 ;; End is followed by \n or by " -> ". | |
| 4369 (let ((filename-extent (make-extent start end))) | |
| 4370 (set-extent-property filename-extent 'dired-file-name t) | |
| 4371 (set-extent-property filename-extent 'start-open t) | |
| 4372 (set-extent-property filename-extent 'end-open t)) | |
| 4373 ;; It seems that we can't trust ls's output as to | |
| 4374 ;; byte positions of filenames. | |
| 4375 (map-extents | |
| 4376 #'(lambda (extent maparg) | |
| 4377 (delete-extent extent) | |
| 4378 nil) | |
| 4379 nil beg (point) nil nil 'dired-file-name) | |
| 4380 (end-of-line)))) | |
| 4381 (goto-char end) | |
| 4382 (beginning-of-line) | |
| 4383 (delete-region (point) (progn (forward-line 1) (point)))) | |
| 4384 ;; Take care of the case where the ls output contains a | |
| 4385 ;; "//DIRED-OPTIONS//"-line, but no "//DIRED//"-line | |
| 4386 ;; and we went one line too far back (see above). | |
| 4387 (forward-line 1)) | |
| 4388 (if (looking-at "//DIRED-OPTIONS//") | |
| 4389 (delete-region (point) (progn (forward-line 1) (point)))))))))) | |
| 4390 | |
| 4391 (defun insert-directory-adj-pos (pos error-lines) | |
| 4392 "Convert `ls --dired' file name position value POS to a buffer position. | |
| 4393 File name position values returned in ls --dired output | |
| 4394 count only stdout; they don't count the error messages sent to stderr. | |
| 4395 So this function converts to them to real buffer positions. | |
| 4396 ERROR-LINES is a list of buffer positions of error message lines, | |
| 4397 of the form (START END)." | |
| 4398 (while (and error-lines (< (caar error-lines) pos)) | |
| 4399 (setq pos (+ pos (- (nth 1 (car error-lines)) (nth 0 (car error-lines))))) | |
| 4400 (pop error-lines)) | |
| 4401 pos) | |
| 428 | 4402 |
| 1333 | 4403 ;; BEGIN SYNC WITH FSF 21.2. |
| 4404 | |
| 4405 (defun insert-directory-safely (file switches | |
| 4406 &optional wildcard full-directory-p) | |
| 4407 "Insert directory listing for FILE, formatted according to SWITCHES. | |
| 4408 | |
| 4409 Like `insert-directory', but if FILE does not exist, it inserts a | |
| 4410 message to that effect instead of signaling an error." | |
| 4411 (if (file-exists-p file) | |
| 4412 (insert-directory file switches wildcard full-directory-p) | |
| 4413 ;; Simulate the message printed by `ls'. | |
| 4414 (insert (format "%s: No such file or directory\n" file)))) | |
| 4415 | |
| 428 | 4416 (defvar kill-emacs-query-functions nil |
| 4417 "Functions to call with no arguments to query about killing XEmacs. | |
| 4418 If any of these functions returns nil, killing Emacs is cancelled. | |
| 4419 `save-buffers-kill-emacs' (\\[save-buffers-kill-emacs]) calls these functions, | |
| 4420 but `kill-emacs', the low level primitive, does not. | |
| 4421 See also `kill-emacs-hook'.") | |
| 4422 | |
| 1333 | 4423 (defcustom confirm-kill-emacs nil |
| 4424 "How to ask for confirmation when leaving Emacs. | |
| 4425 If nil, the default, don't ask at all. If the value is non-nil, it should | |
| 4426 be a predicate function such as `yes-or-no-p'." | |
| 4427 :type '(choice (const :tag "Ask with yes-or-no-p" yes-or-no-p) | |
| 4428 (const :tag "Ask with y-or-n-p" y-or-n-p) | |
| 4429 (const :tag "Don't confirm" nil)) | |
| 4430 :group 'emacs | |
| 4431 ;:version "21.1" | |
| 4432 ) | |
| 4433 | |
| 428 | 4434 (defun save-buffers-kill-emacs (&optional arg) |
| 4435 "Offer to save each buffer, then kill this XEmacs process. | |
| 4436 With prefix arg, silently save all file-visiting buffers, then kill." | |
| 4437 (interactive "P") | |
| 4438 (save-some-buffers arg t) | |
|
5270
3acaa0fc09be
Use #'some, #'every, etc. for composing boolean operations on lists.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5249
diff
changeset
|
4439 (and (or (not (some #'(lambda (buf) |
|
3acaa0fc09be
Use #'some, #'every, etc. for composing boolean operations on lists.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5249
diff
changeset
|
4440 (and (buffer-file-name buf) |
|
3acaa0fc09be
Use #'some, #'every, etc. for composing boolean operations on lists.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5249
diff
changeset
|
4441 (buffer-modified-p buf))) |
|
3acaa0fc09be
Use #'some, #'every, etc. for composing boolean operations on lists.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5249
diff
changeset
|
4442 (buffer-list))) |
| 428 | 4443 (yes-or-no-p "Modified buffers exist; exit anyway? ")) |
| 4444 (or (not (fboundp 'process-list)) | |
| 4445 ;; process-list is not defined on VMS. | |
| 4446 (let ((processes (process-list)) | |
| 4447 active) | |
| 4448 (while processes | |
| 4449 (and (memq (process-status (car processes)) '(run stop open)) | |
| 4450 (let ((val (process-kill-without-query (car processes)))) | |
| 4451 (process-kill-without-query (car processes) val) | |
| 4452 val) | |
| 4453 (setq active t)) | |
| 4454 (setq processes (cdr processes))) | |
| 4455 (or | |
| 4456 (not active) | |
| 4457 (save-excursion | |
| 4458 (save-window-excursion | |
| 4459 (delete-other-windows) | |
| 4460 (list-processes) | |
| 4461 (yes-or-no-p | |
| 4462 "Active processes exist; kill them and exit anyway? ")))))) | |
| 4463 ;; Query the user for other things, perhaps. | |
| 4464 (run-hook-with-args-until-failure 'kill-emacs-query-functions) | |
| 1333 | 4465 (or (null confirm-kill-emacs) |
| 4466 (funcall confirm-kill-emacs "Really exit Emacs? ")) | |
| 428 | 4467 (kill-emacs))) |
| 4468 | |
| 4469 (defun symlink-expand-file-name (filename) | |
| 4470 "If FILENAME is a symlink, return its non-symlink equivalent. | |
| 4471 Unlike `file-truename', this doesn't chase symlinks in directory | |
| 4472 components of the file or expand a relative pathname into an | |
| 4473 absolute one." | |
| 4474 (let ((count 20)) | |
| 4475 (while (and (> count 0) (file-symlink-p filename)) | |
| 4476 (setq filename (file-symlink-p filename) | |
| 4477 count (1- count))) | |
| 4478 (if (> count 0) | |
| 4479 filename | |
| 4480 (error "Apparently circular symlink path")))) | |
| 4481 | |
| 4482 ;; Suggested by Michael Kifer <kifer@CS.SunySB.EDU> | |
|
5668
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4483 (defun file-remote-p (file &optional identification connected) |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4484 "Test whether FILE specifies a location on a remote system. |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4485 Return an identification of the system if the location is indeed |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4486 remote. The identification of the system may comprise a method |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4487 to access the system and its hostname, amongst other things. |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4488 |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4489 For example, the filename \"/user@host:/foo\" specifies a location |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4490 on the system \"/user@host:\". |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4491 |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4492 IDENTIFICATION specifies which part of the identification shall |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4493 be returned as string. IDENTIFICATION can be the symbol |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4494 `method', `user' or `host'; any other value is handled like nil |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4495 and means to return the complete identification string. |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4496 |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4497 If CONNECTED is non-nil, the function returns an identification only |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4498 if FILE is located on a remote system, and a connection is established |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4499 to that remote system. |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4500 |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4501 `file-remote-p' will never open a connection on its own." |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4502 (let ((handler (find-file-name-handler file 'file-remote-p))) |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4503 (cond |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4504 (handler |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4505 (funcall handler 'file-remote-p file identification connected)) |
|
ee95ef1e644c
Update `file-name-remote-p'.
Mike Sperber <sperber@deinprogramm.de>
parents:
5655
diff
changeset
|
4506 (t nil)))) |
| 428 | 4507 |
| 1333 | 4508 |
| 4509 ;; We use /: as a prefix to "quote" a file name | |
| 4510 ;; so that magic file name handlers will not apply to it. | |
| 4511 | |
| 4512 (setq file-name-handler-alist | |
| 4513 (cons '("\\`/:" . file-name-non-special) | |
| 4514 file-name-handler-alist)) | |
| 4515 | |
| 4516 ;; We depend on being the last handler on the list, | |
| 4517 ;; so that anything else which does need handling | |
| 4518 ;; has been handled already. | |
| 4519 ;; So it is safe for us to inhibit *all* magic file name handlers. | |
| 4520 | |
| 4521 (defun file-name-non-special (operation &rest arguments) | |
| 4522 (let ((file-name-handler-alist nil) | |
| 4523 (default-directory | |
| 4524 (if (eq operation 'insert-directory) | |
| 4525 (directory-file-name | |
| 4526 (expand-file-name | |
| 4527 (unhandled-file-name-directory default-directory))) | |
| 4528 default-directory)) | |
| 4529 ;; Get a list of the indices of the args which are file names. | |
| 4530 (file-arg-indices | |
| 4531 (cdr (or (assq operation | |
| 4532 ;; The first four are special because they | |
| 4533 ;; return a file name. We want to include the /: | |
| 4534 ;; in the return value. | |
| 4535 ;; So just avoid stripping it in the first place. | |
| 4536 '((expand-file-name . nil) | |
| 4537 ;; `identity' means just return the first arg | |
| 4538 ;; as stripped of its quoting. | |
| 4539 (substitute-in-file-name . identity) | |
| 4540 (file-name-directory . nil) | |
| 4541 (file-name-as-directory . nil) | |
| 4542 (directory-file-name . nil) | |
| 4543 (file-name-completion 0 1) | |
| 4544 (file-name-all-completions 0 1) | |
| 4545 (rename-file 0 1) | |
| 4546 (copy-file 0 1) | |
| 4547 (make-symbolic-link 0 1) | |
| 4548 (add-name-to-file 0 1))) | |
| 4549 ;; For all other operations, treat the first argument only | |
| 4550 ;; as the file name. | |
| 4551 '(nil 0)))) | |
| 4552 ;; Copy ARGUMENTS so we can replace elements in it. | |
| 4553 (arguments (copy-sequence arguments))) | |
| 4554 ;; Strip off the /: from the file names that have this handler. | |
| 4555 (save-match-data | |
| 4556 (while (consp file-arg-indices) | |
| 4557 (let ((pair (nthcdr (car file-arg-indices) arguments))) | |
| 4558 (and (car pair) | |
| 4559 (string-match "\\`/:" (car pair)) | |
| 4560 (setcar pair | |
|
5366
f00192e1cd49
Examining the result of #'length: `eql', not `=', it's better style & cheaper
Aidan Kehoe <kehoea@parhasard.net>
parents:
5270
diff
changeset
|
4561 (if (eql (length (car pair)) 2) |
| 1333 | 4562 "/" |
| 4563 (substring (car pair) 2))))) | |
| 4564 (setq file-arg-indices (cdr file-arg-indices)))) | |
| 4565 (if (eq file-arg-indices 'identity) | |
| 4566 (car arguments) | |
| 4567 (apply operation arguments)))) | |
| 4568 | |
| 4569 ;; END SYNC WITH FSF 21.2. | |
| 428 | 4570 |
|
5211
cdca98f2d36f
Move `default-file-system-ignore-case' to C; fix bug in directory hash tables
Aidan Kehoe <kehoea@parhasard.net>
parents:
5203
diff
changeset
|
4571 ;; XEmacs. Question; do any of the Linuxes mount Windows partitions in |
|
cdca98f2d36f
Move `default-file-system-ignore-case' to C; fix bug in directory hash tables
Aidan Kehoe <kehoea@parhasard.net>
parents:
5203
diff
changeset
|
4572 ;; a fixed place? |
|
4720
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4573 (defvar file-system-case-alist nil |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4574 "Alist to decide where file name case is significant. |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4575 |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4576 The format is ((PATTERN . VAL) ...), where PATTERN is a regular expression |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4577 matching a file name, and VAL is t if corresponding file names are |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4578 case-insensitive, nil if corresponding file names are case sensitive. Only |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4579 the first match will be used. |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4580 |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4581 This list is used by `file-system-ignore-case-p', itself used in tab |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4582 completion; see also `default-file-system-ignore-case'.") |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4583 |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4584 (defun file-system-ignore-case-p (path) |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4585 "Return t if PATH resides on a file system with case-insensitive names. |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4586 Otherwise, return nil. See `file-system-case-alist' and |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4587 `default-file-system-ignore-case'." |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4588 (check-argument-type #'stringp path) |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4589 (if file-system-case-alist |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4590 (loop |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4591 for (pattern . val) |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4592 in file-system-case-alist |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4593 do (and (string-match pattern path) (return val)) |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4594 finally (return default-file-system-ignore-case)) |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4595 default-file-system-ignore-case)) |
|
3c92890f3750
Add `file-system-ignore-case-p', use it.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4655
diff
changeset
|
4596 |
| 428 | 4597 ;;; files.el ends here |
