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