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