Sync with r21-2-26.
[chise/xemacs-chise.git] / lisp / files.el
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.
5
6 ;; Maintainer: XEmacs Development Team
7 ;; Keywords: extensions, dumped
8
9 ;; This file is part of XEmacs.
10
11 ;; XEmacs is free software; you can redistribute it and/or modify it
12 ;; under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; XEmacs is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 ;; General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with XEmacs; see the file COPYING.  If not, write to the Free
23 ;; Software Foundation, Inc. 59 Temple Place - Suite 330, Boston, MA
24 ;; 02111-1307, USA.
25
26 ;;; Synched up with: FSF 20.3 (but diverging)
27 ;;; Warning: Merging this file is tough.  Beware.
28
29 ;;; Commentary:
30
31 ;; This file is dumped with XEmacs.
32
33 ;; Defines most of XEmacs's file- and directory-handling functions,
34 ;; including basic file visiting, backup generation, link handling,
35 ;; ITS-id version control, load- and write-hook handling, and the like.
36
37 ;;; Code:
38
39 ;; XEmacs: Avoid compilation warnings.
40 (defvar coding-system-for-read)
41 (defvar buffer-file-coding-system)
42
43 (defgroup files nil
44   "Support editing files."
45   :group 'emacs)
46
47 (defgroup backup nil
48   "Backups of edited data files."
49   :group 'files)
50
51 (defgroup find-file nil
52   "Finding and editing files."
53   :group 'files)
54
55
56 ;; XEmacs: In buffer.c
57 ;(defconst delete-auto-save-files t
58 ;  "*Non-nil means delete auto-save file when a buffer is saved or killed.")
59
60 ;; FSF has automount-dir-prefix.  Our directory-abbrev-alist is more general.
61 ;; note: tmp_mnt bogosity conversion is established in paths.el.
62 (defcustom directory-abbrev-alist nil
63   "*Alist of abbreviations for file directories.
64 A list of elements of the form (FROM . TO), each meaning to replace
65 FROM with TO when it appears in a directory name.
66 This replacement is done when setting up the default directory of a
67 newly visited file.  *Every* FROM string should start with \\\\` or ^.
68
69 Use this feature when you have directories which you normally refer to
70 via absolute symbolic links or to eliminate automounter mount points
71 from the beginning of your filenames.  Make TO the name of the link,
72 and FROM the name it is linked to."
73   :type '(repeat (cons :format "%v"
74                        :value ("\\`" . "")
75                        (regexp :tag "From")
76                        (regexp :tag "To")))
77   :group 'find-file)
78
79 (defcustom make-backup-files t
80   "*Non-nil means make a backup of a file the first time it is saved.
81 This can be done by renaming the file or by copying.
82
83 Renaming means that XEmacs renames the existing file so that it is a
84 backup file, then writes the buffer into a new file.  Any other names
85 that the old file had will now refer to the backup file.  The new file
86 is owned by you and its group is defaulted.
87
88 Copying means that XEmacs copies the existing file into the backup
89 file, then writes the buffer on top of the existing file.  Any other
90 names that the old file had will now refer to the new (edited) file.
91 The file's owner and group are unchanged.
92
93 The choice of renaming or copying is controlled by the variables
94 `backup-by-copying', `backup-by-copying-when-linked' and
95 `backup-by-copying-when-mismatch'.  See also `backup-inhibited'."
96   :type 'boolean
97   :group 'backup)
98
99 ;; Do this so that local variables based on the file name
100 ;; are not overridden by the major mode.
101 (defvar backup-inhibited nil
102   "Non-nil means don't make a backup, regardless of the other parameters.
103 This variable is intended for use by making it local to a buffer.
104 But it is local only if you make it local.")
105 (put 'backup-inhibited 'permanent-local t)
106
107 (defcustom backup-by-copying nil
108  "*Non-nil means always use copying to create backup files.
109 See documentation of variable `make-backup-files'."
110  :type 'boolean
111  :group 'backup)
112
113 (defcustom backup-by-copying-when-linked nil
114  "*Non-nil means use copying to create backups for files with multiple names.
115 This causes the alternate names to refer to the latest version as edited.
116 This variable is relevant only if `backup-by-copying' is nil."
117  :type 'boolean
118  :group 'backup)
119
120 (defcustom backup-by-copying-when-mismatch nil
121   "*Non-nil means create backups by copying if this preserves owner or group.
122 Renaming may still be used (subject to control of other variables)
123 when it would not result in changing the owner or group of the file;
124 that is, for files which are owned by you and whose group matches
125 the default for a new file created there by you.
126 This variable is relevant only if `backup-by-copying' is nil."
127   :type 'boolean
128   :group 'backup)
129
130 (defvar backup-enable-predicate
131   #'(lambda (name)
132      (not (or (null name)
133               (string-match "^/tmp/" name)
134               (let ((tmpdir (temp-directory)))
135                 (and tmpdir
136                      (string-match (concat "\\`" (regexp-quote tmpdir) "/")
137                                    tmpdir))))))
138   "Predicate that looks at a file name and decides whether to make backups.
139 Called with an absolute file name as argument, it returns t to enable backup.")
140
141 (defcustom buffer-offer-save nil
142   "*Non-nil in a buffer means offer to save the buffer on exit
143 even if the buffer is not visiting a file.
144 Automatically local in all buffers."
145   :type 'boolean
146   :group 'find-file)
147 (make-variable-buffer-local 'buffer-offer-save)
148
149 ;; FSF uses normal defconst
150 (defvaralias 'find-file-visit-truename 'find-file-use-truenames)
151 (defvaralias 'find-file-existing-other-name 'find-file-compare-truenames)
152
153 (defcustom revert-without-query nil
154   "*Specify which files should be reverted without query.
155 The value is a list of regular expressions.
156 If the file name matches one of these regular expressions,
157 then `revert-buffer' reverts the file without querying
158 if the file has changed on disk and you have not edited the buffer."
159   :type '(repeat (regexp ""))
160   :group 'find-file)
161
162 (defvar buffer-file-number nil
163   "The device number and file number of the file visited in the current buffer.
164 The value is a list of the form (FILENUM DEVNUM).
165 This pair of numbers uniquely identifies the file.
166 If the buffer is visiting a new file, the value is nil.")
167 (make-variable-buffer-local 'buffer-file-number)
168 (put 'buffer-file-number 'permanent-local t)
169
170 (defvar buffer-file-numbers-unique (not (memq system-type '(windows-nt)))
171   "Non-nil means that buffer-file-number uniquely identifies files.")
172
173 (defcustom file-precious-flag nil
174   "*Non-nil means protect against I/O errors while saving files.
175 Some modes set this non-nil in particular buffers.
176
177 This feature works by writing the new contents into a temporary file
178 and then renaming the temporary file to replace the original.
179 In this way, any I/O error in writing leaves the original untouched,
180 and there is never any instant where the file is nonexistent.
181
182 Note that this feature forces backups to be made by copying.
183 Yet, at the same time, saving a precious file
184 breaks any hard links between it and other files."
185   :type 'boolean
186   :group 'backup)
187
188 (defcustom version-control nil
189   "*Control use of version numbers for backup files.
190 t means make numeric backup versions unconditionally.
191 nil means make them for files that have some already.
192 `never' means do not make them."
193   :type 'boolean
194   :group 'backup
195   :group 'vc)
196
197 ;; This is now defined in efs.
198 ;(defvar dired-kept-versions 2
199 ;  "*When cleaning directory, number of versions to keep.")
200
201 (defcustom delete-old-versions nil
202   "*If t, delete excess backup versions silently.
203 If nil, ask confirmation.  Any other value prevents any trimming."
204   :type '(choice (const :tag "Delete" t)
205                  (const :tag "Ask" nil)
206                  (sexp :tag "Leave" :format "%t\n" other))
207   :group 'backup)
208
209 (defcustom kept-old-versions 2
210   "*Number of oldest versions to keep when a new numbered backup is made."
211   :type 'integer
212   :group 'backup)
213
214 (defcustom kept-new-versions 2
215   "*Number of newest versions to keep when a new numbered backup is made.
216 Includes the new backup.  Must be > 0"
217   :type 'integer
218   :group 'backup)
219
220 (defcustom require-final-newline nil
221   "*Value of t says silently ensure a file ends in a newline when it is saved.
222 Non-nil but not t says ask user whether to add a newline when there isn't one.
223 nil means don't add newlines."
224   :type '(choice (const :tag "Off" nil)
225                  (const :tag "Add" t)
226                  (sexp :tag "Ask" :format "%t\n" ask))
227   :group 'editing-basics)
228
229 (defcustom auto-save-default t
230   "*Non-nil says by default do auto-saving of every file-visiting buffer."
231   :type 'boolean
232   :group 'auto-save)
233
234 (defcustom auto-save-visited-file-name nil
235   "*Non-nil says auto-save a buffer in the file it is visiting, when practical.
236 Normally auto-save files are written under other names."
237   :type 'boolean
238   :group 'auto-save)
239
240 (defcustom save-abbrevs nil
241   "*Non-nil means save word abbrevs too when files are saved.
242 Loading an abbrev file sets this to t."
243   :type 'boolean
244   :group 'abbrev)
245
246 (defcustom find-file-run-dired t
247   "*Non-nil says run dired if `find-file' is given the name of a directory."
248   :type 'boolean
249   :group 'find-file)
250
251 ;;;It is not useful to make this a local variable.
252 ;;;(put 'find-file-not-found-hooks 'permanent-local t)
253 (defvar find-file-not-found-hooks nil
254   "List of functions to be called for `find-file' on nonexistent file.
255 These functions are called as soon as the error is detected.
256 `buffer-file-name' is already set up.
257 The functions are called in the order given until one of them returns non-nil.")
258
259 ;;;It is not useful to make this a local variable.
260 ;;;(put 'find-file-hooks 'permanent-local t)
261 (defvar find-file-hooks nil
262   "List of functions to be called after a buffer is loaded from a file.
263 The buffer's local variables (if any) will have been processed before the
264 functions are called.")
265
266 (defvar write-file-hooks nil
267   "List of functions to be called before writing out a buffer to a file.
268 If one of them returns non-nil, the file is considered already written
269 and the rest are not called.
270 These hooks are considered to pertain to the visited file.
271 So this list is cleared if you change the visited file name.
272 See also `write-contents-hooks' and `continue-save-buffer'.")
273 ;;; However, in case someone does make it local...
274 (put 'write-file-hooks 'permanent-local t)
275
276 (defvar local-write-file-hooks nil
277   "Just like `write-file-hooks', except intended for per-buffer use.
278 The functions in this list are called before the ones in
279 `write-file-hooks'.
280
281 This variable is meant to be used for hooks that have to do with a
282 particular visited file.  Therefore, it is a permanent local, so that
283 changing the major mode does not clear it.  However, calling
284 `set-visited-file-name' does clear it.")
285 (make-variable-buffer-local 'local-write-file-hooks)
286 (put 'local-write-file-hooks 'permanent-local t)
287
288
289 ;; #### think about this (added by Sun).
290 (put 'after-set-visited-file-name-hooks 'permanent-local t)
291 (defvar after-set-visited-file-name-hooks nil
292   "List of functions to be called after \\[set-visited-file-name]
293 or during \\[write-file].
294 You can use this hook to restore local values of write-file-hooks,
295 after-save-hook, and revert-buffer-function, which pertain
296 to a specific file and therefore are normally killed by a rename.
297 Put hooks pertaining to the buffer contents on write-contents-hooks
298 and revert-buffer-insert-file-contents-function.")
299
300 (defvar write-contents-hooks nil
301   "List of functions to be called before writing out a buffer to a file.
302 If one of them returns non-nil, the file is considered already written
303 and the rest are not called.
304 These hooks are considered to pertain to the buffer's contents,
305 not to the particular visited file; thus, `set-visited-file-name' does
306 not clear this variable, but changing the major mode does clear it.
307 See also `write-file-hooks' and `continue-save-buffer'.")
308
309 ;;  XEmacs addition
310 ;;  Energize needed this to hook into save-buffer at a lower level; we need
311 ;;  to provide a new output method, but don't want to have to duplicate all
312 ;;  of the backup file and file modes logic.that does not occur if one uses
313 ;;  a write-file-hook which returns non-nil.
314 (put 'write-file-data-hooks 'permanent-local t)
315 (defvar write-file-data-hooks nil
316   "List of functions to be called to put the bytes on disk.
317 These functions receive the name of the file to write to as argument.
318 The default behavior is to call
319   (write-region (point-min) (point-max) filename nil t)
320 If one of them returns non-nil, the file is considered already written
321 and the rest are not called.
322 These hooks are considered to pertain to the visited file.
323 So this list is cleared if you change the visited file name.
324 See also `write-file-hooks'.")
325
326 (defcustom enable-local-variables t
327   "*Control use of local-variables lists in files you visit.
328 The value can be t, nil or something else.
329 A value of t means local-variables lists are obeyed;
330 nil means they are ignored; anything else means query.
331
332 The command \\[normal-mode] always obeys local-variables lists
333 and ignores this variable."
334   :type '(choice (const :tag "Obey" t)
335                  (const :tag "Ignore" nil)
336                  (sexp :tag "Query" :format "%t\n" other))
337   :group 'find-file)
338
339 (defcustom enable-local-eval 'maybe
340   "*Control processing of the \"variable\" `eval' in a file's local variables.
341 The value can be t, nil or something else.
342 A value of t means obey `eval' variables;
343 nil means ignore them; anything else means query.
344
345 The command \\[normal-mode] always obeys local-variables lists
346 and ignores this variable."
347   :type '(choice (const :tag "Obey" t)
348                  (const :tag "Ignore" nil)
349                  (sexp :tag "Query" :format "%t\n" other))
350   :group 'find-file)
351
352 ;; Avoid losing in versions where CLASH_DETECTION is disabled.
353 (or (fboundp 'lock-buffer)
354     (defalias 'lock-buffer 'ignore))
355 (or (fboundp 'unlock-buffer)
356     (defalias 'unlock-buffer 'ignore))
357 \f
358 ;;FSFmacs bastardized ange-ftp cruft
359 ;; This hook function provides support for ange-ftp host name
360 ;; completion.  It runs the usual ange-ftp hook, but only for
361 ;; completion operations.  Having this here avoids the need
362 ;; to load ange-ftp when it's not really in use.
363 ;(defun ange-ftp-completion-hook-function (op &rest args)
364 ;  (if (memq op '(file-name-completion file-name-all-completions))
365 ;      (apply 'ange-ftp-hook-function op args)
366 ;    (let ((inhibit-file-name-handlers
367 ;          (cons 'ange-ftp-completion-hook-function
368 ;                (and (eq inhibit-file-name-operation op)
369 ;                     inhibit-file-name-handlers)))
370 ;         (inhibit-file-name-operation op))
371 ;      (apply op args))
372
373 (defun convert-standard-filename (filename)
374   "Convert a standard file's name to something suitable for the current OS.
375 This function's standard definition is trivial; it just returns the argument.
376 However, on some systems, the function is redefined
377 with a definition that really does change some file names."
378   filename)
379 \f
380 (defun pwd ()
381   "Show the current default directory."
382   (interactive nil)
383   (message "Directory %s" default-directory))
384
385 (defvar cd-path nil
386   "Value of the CDPATH environment variable, as a list.
387 Not actually set up until the first time you use it.")
388
389 (defvar cdpath-previous nil
390   "Prior value of the CDPATH environment variable.")
391
392 (defun parse-colon-path (cd-path)
393   "Explode a colon-separated search path into a list of directory names.
394
395 If you think you want to use this, you probably don't.  This function
396 is provided for backward compatibility.  A more robust implementation
397 of the same functionality is available as `split-path', which see."
398   (and cd-path
399        (let (cd-list (cd-start 0) cd-colon)
400          (setq cd-path (concat cd-path path-separator))
401          (while (setq cd-colon (string-match path-separator cd-path cd-start))
402            (setq cd-list
403                  (nconc cd-list
404                         (list (if (= cd-start cd-colon)
405                                    nil
406                                 (substitute-in-file-name
407                                  (file-name-as-directory
408                                   (substring cd-path cd-start cd-colon)))))))
409            (setq cd-start (+ cd-colon 1)))
410          cd-list)))
411
412 (defun cd-absolute (dir)
413   "Change current directory to given absolute file name DIR."
414   ;; Put the name into directory syntax now,
415   ;; because otherwise expand-file-name may give some bad results.
416   (setq dir (file-name-as-directory dir))
417   ;; XEmacs change: stig@hackvan.com
418   (if find-file-use-truenames
419       (setq dir (file-truename dir)))
420   (setq dir (abbreviate-file-name (expand-file-name dir)))
421   (cond ((not (file-directory-p dir))
422          (error "%s is not a directory" dir))
423         ;; this breaks ange-ftp, which doesn't (can't?) overload `file-executable-p'.
424         ;;((not (file-executable-p dir))
425         ;; (error "Cannot cd to %s:  Permission denied" dir))
426         (t
427          (setq default-directory dir))))
428
429 (defun cd (dir)
430   "Make DIR become the current buffer's default directory.
431 If your environment includes a `CDPATH' variable, try each one of that
432 colon-separated list of directories when resolving a relative directory name."
433   (interactive
434    ;; XEmacs change? (read-file-name => read-directory-name)
435    (list (read-directory-name "Change default directory: "
436                               default-directory default-directory
437                               (and (member cd-path '(nil ("./")))
438                                    (null (getenv "CDPATH"))))))
439   (if (file-name-absolute-p dir)
440       (cd-absolute (expand-file-name dir))
441     ;; XEmacs
442     (unless (and cd-path (equal (getenv "CDPATH") cdpath-previous))
443       ;;#### Unix-specific
444       (let ((trypath (parse-colon-path
445                       (setq cdpath-previous (getenv "CDPATH")))))
446         (setq cd-path (or trypath (list "./")))))
447     (or (catch 'found
448           (mapcar #'(lambda (x)
449                         (let ((f (expand-file-name (concat x dir))))
450                           (if (file-directory-p f)
451                               (progn
452                                 (cd-absolute f)
453                                 (throw 'found t)))))
454                   cd-path)
455           nil)
456         ;; jwz: give a better error message to those of us with the
457         ;; good taste not to use a kludge like $CDPATH.
458         (if (equal cd-path '("./"))
459             (error "No such directory: %s" (expand-file-name dir))
460           (error "Directory not found in $CDPATH: %s" dir)))))
461
462 (defun load-file (file)
463   "Load the Lisp file named FILE."
464   (interactive "fLoad file: ")
465   (load (expand-file-name file) nil nil t))
466
467 ; We now dump utils/lib-complete.el which has improved versions of this.
468 ;(defun load-library (library)
469 ;  "Load the library named LIBRARY.
470 ;This is an interface to the function `load'."
471 ;  (interactive "sLoad library: ")
472 ;  (load library))
473 ;
474 ;(defun find-library (library)
475 ;  "Find the library of Lisp code named LIBRARY.
476 ;This searches `load-path' for a file named either \"LIBRARY\" or \"LIBRARY.el\"."
477 ;  (interactive "sFind library file: ")
478 ;  (let ((f (locate-file library load-path ":.el:")))
479 ;    (if f
480 ;        (find-file f)
481 ;        (error "Couldn't locate library %s" library))))
482
483 (defun file-local-copy (file &optional buffer)
484   "Copy the file FILE into a temporary file on this machine.
485 Returns the name of the local copy, or nil, if FILE is directly
486 accessible."
487   (let ((handler (find-file-name-handler file 'file-local-copy)))
488     (if handler
489         (funcall handler 'file-local-copy file)
490       nil)))
491
492 ;; XEmacs change block
493 ; We have this in C and use the realpath() system call.
494
495 ;(defun file-truename (filename &optional counter prev-dirs)
496 ; [... lots of code snipped ...]
497 ;    filename))
498
499 ;; XEmacs addition.  Called from `insert-file-contents-internal'
500 ;; at the appropriate time.
501 (defun compute-buffer-file-truename (&optional buffer)
502   "Recompute BUFFER's value of `buffer-file-truename'
503 based on the current value of `buffer-file-name'.
504 BUFFER defaults to the current buffer if unspecified."
505   (save-excursion
506     (set-buffer (or buffer (current-buffer)))
507     (cond ((null buffer-file-name)
508            (setq buffer-file-truename nil))
509           ((setq buffer-file-truename (file-truename buffer-file-name))
510            ;; it exists, we're done.
511            nil)
512           (t
513            ;; the file doesn't exist, but maybe the directory does.
514            (let* ((dir (file-name-directory buffer-file-name))
515                   (truedir (file-truename dir)))
516              (if truedir (setq dir truedir))
517              (setq buffer-file-truename
518                    (expand-file-name (file-name-nondirectory buffer-file-name)
519                                      dir)))))
520     (if (and find-file-use-truenames buffer-file-truename)
521         (setq buffer-file-name (abbreviate-file-name buffer-file-truename)
522               default-directory (file-name-directory buffer-file-name)))
523     buffer-file-truename))
524 ;; End XEmacs change block
525
526 (defun file-chase-links (filename)
527   "Chase links in FILENAME until a name that is not a link.
528 Does not examine containing directories for links,
529 unlike `file-truename'."
530   (let (tem (count 100) (newname filename))
531     (while (setq tem (file-symlink-p newname))
532       (save-match-data
533         (if (= count 0)
534             (error "Apparent cycle of symbolic links for %s" filename))
535         ;; In the context of a link, `//' doesn't mean what XEmacs thinks.
536         (while (string-match "//+" tem)
537           (setq tem (concat (substring tem 0 (1+ (match-beginning 0)))
538                             (substring tem (match-end 0)))))
539         ;; Handle `..' by hand, since it needs to work in the
540         ;; target of any directory symlink.
541         ;; This code is not quite complete; it does not handle
542         ;; embedded .. in some cases such as ./../foo and foo/bar/../../../lose.
543         (while (string-match "\\`\\.\\./" tem) ;#### Unix specific
544           (setq tem (substring tem 3))
545           (setq newname (file-name-as-directory
546                          ;; Do the .. by hand.
547                          (directory-file-name
548                           (file-name-directory
549                            ;; Chase links in the default dir of the symlink.
550                            (file-chase-links
551                             (directory-file-name
552                              (file-name-directory newname))))))))
553         (setq newname (expand-file-name tem (file-name-directory newname)))
554         (setq count (1- count))))
555     newname))
556 \f
557 (defun switch-to-other-buffer (arg)
558   "Switch to the previous buffer.  With a numeric arg, n, switch to the nth
559 most recent buffer.  With an arg of 0, buries the current buffer at the
560 bottom of the buffer stack."
561   (interactive "p")
562   (if (eq arg 0)
563       (bury-buffer (current-buffer)))
564   (switch-to-buffer
565    (if (<= arg 1) (other-buffer (current-buffer))
566      (nth (1+ arg) (buffer-list)))))
567
568 (defun switch-to-buffer-other-window (buffer)
569   "Select buffer BUFFER in another window."
570   (interactive "BSwitch to buffer in other window: ")
571   (let ((pop-up-windows t))
572     ;; XEmacs: this used to have (selected-frame) as the third argument,
573     ;; but this is obnoxious.  If the user wants the buffer in a
574     ;; different frame, then it should be this way.
575
576     ;; Change documented above undone --mrb
577     (pop-to-buffer buffer t (selected-frame))))
578
579 (defun switch-to-buffer-other-frame (buffer)
580   "Switch to buffer BUFFER in a newly-created frame."
581   (interactive "BSwitch to buffer in other frame: ")
582   (let* ((name (get-frame-name-for-buffer buffer))
583          (frame (make-frame (if name
584                                   (list (cons 'name (symbol-name name)))))))
585     (pop-to-buffer buffer t frame)
586     (make-frame-visible frame)
587     buffer))
588
589 (defun find-file (filename &optional codesys)
590   "Edit file FILENAME.
591 Switch to a buffer visiting file FILENAME,
592 creating one if none already exists.
593 Under XEmacs/Mule, optional second argument specifies the
594 coding system to use when decoding the file.  Interactively,
595 with a prefix argument, you will be prompted for the coding system."
596   (interactive "FFind file: \nZCoding system: ")
597   (if codesys
598       (let ((coding-system-for-read
599              (get-coding-system codesys)))
600         (switch-to-buffer (find-file-noselect filename)))
601     (switch-to-buffer (find-file-noselect filename))))
602
603 (defun find-file-other-window (filename &optional codesys)
604   "Edit file FILENAME, in another window.
605 May create a new window, or reuse an existing one.
606 See the function `display-buffer'.
607 Under XEmacs/Mule, optional second argument specifies the
608 coding system to use when decoding the file.  Interactively,
609 with a prefix argument, you will be prompted for the coding system."
610   (interactive "FFind file in other window: \nZCoding system: ")
611   (if codesys
612       (let ((coding-system-for-read
613              (get-coding-system codesys)))
614         (switch-to-buffer-other-window (find-file-noselect filename)))
615     (switch-to-buffer-other-window (find-file-noselect filename))))
616
617 (defun find-file-other-frame (filename &optional codesys)
618   "Edit file FILENAME, in a newly-created frame.
619 Under XEmacs/Mule, optional second argument specifies the
620 coding system to use when decoding the file.  Interactively,
621 with a prefix argument, you will be prompted for the coding system."
622   (interactive "FFind file in other frame: \nZCoding system: ")
623   (if codesys
624       (let ((coding-system-for-read
625              (get-coding-system codesys)))
626         (switch-to-buffer-other-frame (find-file-noselect filename)))
627     (switch-to-buffer-other-frame (find-file-noselect filename))))
628
629 (defun find-file-read-only (filename &optional codesys)
630   "Edit file FILENAME but don't allow changes.
631 Like \\[find-file] but marks buffer as read-only.
632 Use \\[toggle-read-only] to permit editing.
633 Under XEmacs/Mule, optional second argument specifies the
634 coding system to use when decoding the file.  Interactively,
635 with a prefix argument, you will be prompted for the coding system."
636   (interactive "fFind file read-only: \nZCoding system: ")
637   (if codesys
638       (let ((coding-system-for-read
639              (get-coding-system codesys)))
640         (find-file filename))
641     (find-file filename))
642   (setq buffer-read-only t)
643   (current-buffer))
644
645 (defun find-file-read-only-other-window (filename &optional codesys)
646   "Edit file FILENAME in another window but don't allow changes.
647 Like \\[find-file-other-window] but marks buffer as read-only.
648 Use \\[toggle-read-only] to permit editing.
649 Under XEmacs/Mule, optional second argument specifies the
650 coding system to use when decoding the file.  Interactively,
651 with a prefix argument, you will be prompted for the coding system."
652   (interactive "fFind file read-only other window: \nZCoding system: ")
653   (if codesys
654       (let ((coding-system-for-read
655              (get-coding-system codesys)))
656         (find-file-other-window filename))
657     (find-file-other-window filename))
658   (setq buffer-read-only t)
659   (current-buffer))
660
661 (defun find-file-read-only-other-frame (filename &optional codesys)
662   "Edit file FILENAME in another frame but don't allow changes.
663 Like \\[find-file-other-frame] but marks buffer as read-only.
664 Use \\[toggle-read-only] to permit editing.
665 Under XEmacs/Mule, optional second argument specifies the
666 coding system to use when decoding the file.  Interactively,
667 with a prefix argument, you will be prompted for the coding system."
668   (interactive "fFind file read-only other frame: \nZCoding system: ")
669   (if codesys
670       (let ((coding-system-for-read
671              (get-coding-system codesys)))
672         (find-file-other-frame filename))
673     (find-file-other-frame filename))
674   (setq buffer-read-only t)
675   (current-buffer))
676
677 (defun find-alternate-file-other-window (filename &optional codesys)
678   "Find file FILENAME as a replacement for the file in the next window.
679 This command does not select that window.
680 Under XEmacs/Mule, optional second argument specifies the
681 coding system to use when decoding the file.  Interactively,
682 with a prefix argument, you will be prompted for the coding system."
683   (interactive
684    (save-selected-window
685      (other-window 1)
686      (let ((file buffer-file-name)
687            (file-name nil)
688            (file-dir nil))
689        (and file
690             (setq file-name (file-name-nondirectory file)
691                   file-dir (file-name-directory file)))
692        (list (read-file-name
693               "Find alternate file: " file-dir nil nil file-name)
694              (if (and current-prefix-arg (featurep 'mule))
695                  (read-coding-system "Coding-system: "))))))
696   (if (one-window-p)
697       (find-file-other-window filename)
698     (save-selected-window
699       (other-window 1)
700       (find-alternate-file filename codesys))))
701
702 (defun find-alternate-file (filename &optional codesys)
703   "Find file FILENAME, select its buffer, kill previous buffer.
704 If the current buffer now contains an empty file that you just visited
705 \(presumably by mistake), use this command to visit the file you really want.
706 Under XEmacs/Mule, optional second argument specifies the
707 coding system to use when decoding the file.  Interactively,
708 with a prefix argument, you will be prompted for the coding system."
709   (interactive
710    (let ((file buffer-file-name)
711          (file-name nil)
712          (file-dir nil))
713      (and file
714           (setq file-name (file-name-nondirectory file)
715                 file-dir (file-name-directory file)))
716      (list (read-file-name
717             "Find alternate file: " file-dir nil nil file-name)
718            (if (and current-prefix-arg (featurep 'mule))
719                (read-coding-system "Coding-system: ")))))
720   (and (buffer-modified-p) (buffer-file-name)
721        ;; (not buffer-read-only)
722        (not (yes-or-no-p (format
723                           "Buffer %s is modified; kill anyway? "
724                           (buffer-name))))
725        (error "Aborted"))
726   (let ((obuf (current-buffer))
727         (ofile buffer-file-name)
728         (onum buffer-file-number)
729         (otrue buffer-file-truename)
730         (oname (buffer-name)))
731     (if (get-buffer " **lose**")
732         (kill-buffer " **lose**"))
733     (rename-buffer " **lose**")
734     (setq buffer-file-name nil)
735     (setq buffer-file-number nil)
736     (setq buffer-file-truename nil)
737     (unwind-protect
738         (progn
739           (unlock-buffer)
740           (if codesys
741               (let ((coding-system-for-read
742                      (get-coding-system codesys)))
743                 (find-file filename))
744             (find-file filename)))
745       (cond ((eq obuf (current-buffer))
746              (setq buffer-file-name ofile)
747              (setq buffer-file-number onum)
748              (setq buffer-file-truename otrue)
749              (lock-buffer)
750              (rename-buffer oname))))
751     (or (eq (current-buffer) obuf)
752         (kill-buffer obuf))))
753
754 (defun create-file-buffer (filename)
755   "Create a suitably named buffer for visiting FILENAME, and return it.
756 FILENAME (sans directory) is used unchanged if that name is free;
757 otherwise a string <2> or <3> or ... is appended to get an unused name."
758     (let ((handler (find-file-name-handler filename 'create-file-buffer)))
759       (if handler
760           (funcall handler 'create-file-buffer filename)
761         (let ((lastname (file-name-nondirectory filename)))
762           (if (string= lastname "")
763               (setq lastname filename))
764           (generate-new-buffer lastname)))))
765
766 (defun generate-new-buffer (name)
767   "Create and return a buffer with a name based on NAME.
768 Choose the buffer's name using `generate-new-buffer-name'."
769   (get-buffer-create (generate-new-buffer-name name)))
770
771 (defvar abbreviated-home-dir nil
772   "The user's homedir abbreviated according to `directory-abbrev-alist'.")
773
774 (defun abbreviate-file-name (filename &optional hack-homedir)
775   "Return a version of FILENAME shortened using `directory-abbrev-alist'.
776 See documentation of variable `directory-abbrev-alist' for more information.
777 If optional argument HACK-HOMEDIR is non-nil, then this also substitutes
778 \"~\" for the user's home directory."
779   (let ((handler (find-file-name-handler filename 'abbreviate-file-name)))
780     (if handler
781         (funcall handler 'abbreviate-file-name filename hack-homedir)
782       ;; Get rid of the prefixes added by the automounter.
783       ;;(if (and (string-match automount-dir-prefix filename)
784       ;;         (file-exists-p (file-name-directory
785       ;;                         (substring filename (1- (match-end 0))))))
786       ;;    (setq filename (substring filename (1- (match-end 0)))))
787       (let ((tail directory-abbrev-alist))
788         ;; If any elt of directory-abbrev-alist matches this name,
789         ;; abbreviate accordingly.
790         (while tail
791           (when (string-match (car (car tail)) filename)
792             (setq filename
793                   (concat (cdr (car tail)) (substring filename (match-end 0)))))
794           (setq tail (cdr tail))))
795       (when hack-homedir
796         ;; Compute and save the abbreviated homedir name.
797         ;; We defer computing this until the first time it's needed, to
798         ;; give time for directory-abbrev-alist to be set properly.
799         ;; We include a slash at the end, to avoid spurious matches
800         ;; such as `/usr/foobar' when the home dir is `/usr/foo'.
801         (or abbreviated-home-dir
802             (setq abbreviated-home-dir
803                   (let ((abbreviated-home-dir "$foo"))
804                     (concat "\\`" (regexp-quote (abbreviate-file-name
805                                                  (expand-file-name "~")))
806                             "\\(/\\|\\'\\)"))))
807         ;; If FILENAME starts with the abbreviated homedir,
808         ;; make it start with `~' instead.
809         (if (and (string-match abbreviated-home-dir filename)
810                  ;; If the home dir is just /, don't change it.
811                  (not (and (= (match-end 0) 1) ;#### unix-specific
812                            (= (aref filename 0) ?/)))
813                  (not (and (memq system-type '(ms-dos windows-nt))
814                            (save-match-data
815                              (string-match "^[a-zA-Z]:/$" filename)))))
816             (setq filename
817                   (concat "~"
818                           (substring filename
819                                      (match-beginning 1) (match-end 1))
820                           (substring filename (match-end 0))))))
821       filename)))
822
823 (defcustom find-file-not-true-dirname-list nil
824   "*List of logical names for which visiting shouldn't save the true dirname."
825   :type '(repeat (string :tag "Name"))
826   :group 'find-file)
827
828 ;; This function is needed by FSF vc.el.  I hope somebody can make it
829 ;; work for XEmacs.  -sb.
830 ;; #### In what way does it not work?  --hniksic
831 (defun find-buffer-visiting (filename)
832   "Return the buffer visiting file FILENAME (a string).
833 This is like `get-file-buffer', except that it checks for any buffer
834 visiting the same file, possibly under a different name.
835 If there is no such live buffer, return nil."
836   (let ((buf (get-file-buffer filename))
837         (truename (abbreviate-file-name (file-truename filename))))
838     (or buf
839         (let ((list (buffer-list)) found)
840           (while (and (not found) list)
841             (save-excursion
842               (set-buffer (car list))
843               (if (and buffer-file-name
844                        (string= buffer-file-truename truename))
845                   (setq found (car list))))
846             (setq list (cdr list)))
847           found)
848         (let ((number (nthcdr 10 (file-attributes truename)))
849               (list (buffer-list)) found)
850           (and buffer-file-numbers-unique
851                number
852                (while (and (not found) list)
853                  (save-excursion
854                    (set-buffer (car list))
855                    (if (and buffer-file-number
856                            (equal buffer-file-number number)
857                             ;; Verify this buffer's file number
858                             ;; still belongs to its file.
859                             (file-exists-p buffer-file-name)
860                             (equal (nthcdr 10 (file-attributes buffer-file-name))
861                                    number))
862                        (setq found (car list))))
863                  (setq list (cdr list))))
864           found))))
865
866 (defun insert-file-contents-literally (filename &optional visit beg end replace)
867   "Like `insert-file-contents', q.v., but only reads in the file literally.
868 A buffer may be modified in several ways after reading into the buffer due
869 to advanced Emacs features, such as format decoding, character code
870 conversion,find-file-hooks, automatic uncompression, etc.
871
872 This function ensures that none of these modifications will take place."
873   (let ((format-alist nil)
874         (after-insert-file-functions nil)
875         (coding-system-for-read 'binary)
876         (coding-system-for-write 'binary)
877         (jka-compr-compression-info-list nil)
878         (find-buffer-file-type-function
879          (if (fboundp 'find-buffer-file-type)
880              (symbol-function 'find-buffer-file-type)
881            nil)))
882     (unwind-protect
883         (progn
884           (fset 'find-buffer-file-type (lambda (filename) t))
885           (insert-file-contents filename visit beg end replace))
886       (if find-buffer-file-type-function
887           (fset 'find-buffer-file-type find-buffer-file-type-function)
888         (fmakunbound 'find-buffer-file-type)))))
889
890 (defun find-file-noselect (filename &optional nowarn rawfile)
891   "Read file FILENAME into a buffer and return the buffer.
892 If a buffer exists visiting FILENAME, return that one, but
893 verify that the file has not changed since visited or saved.
894 The buffer is not selected, just returned to the caller.
895 If NOWARN is non-nil, warning messages will be suppressed.
896 If RAWFILE is non-nil, the file is read literally."
897   (setq filename (abbreviate-file-name (expand-file-name filename)))
898   (if (file-directory-p filename)
899       (if (and (fboundp 'dired-noselect) find-file-run-dired)
900           (dired-noselect (if find-file-use-truenames
901                               (abbreviate-file-name (file-truename filename))
902                             filename))
903         (error "%s is a directory" filename))
904     (let* ((buf (get-file-buffer filename))
905            (truename (abbreviate-file-name (file-truename filename)))
906            (number (nthcdr 10 (file-attributes truename)))
907 ;          ;; Find any buffer for a file which has same truename.
908 ;          (other (and (not buf) (find-buffer-visiting filename)))
909            (error nil))
910
911 ;     ;; Let user know if there is a buffer with the same truename.
912 ;      (if (and (not buf) same-truename (not nowarn))
913 ;         (message "%s and %s are the same file (%s)"
914 ;                  filename (buffer-file-name same-truename)
915 ;                  truename)
916 ;       (if (and (not buf) same-number (not nowarn))
917 ;         (message "%s and %s are the same file"
918 ;                  filename (buffer-file-name same-number))))
919 ;      ;; Optionally also find that buffer.
920 ;      (if (or find-file-existing-other-name find-file-visit-truename)
921 ;         (setq buf (or same-truename same-number)))
922
923       (when (and buf
924                  (or find-file-compare-truenames find-file-use-truenames)
925                  (not nowarn))
926         (save-excursion
927           (set-buffer buf)
928           (if (not (string-equal buffer-file-name filename))
929               (message "%s and %s are the same file (%s)"
930                        filename buffer-file-name
931                        buffer-file-truename))))
932
933       (if buf
934           (or nowarn
935               (verify-visited-file-modtime buf)
936               (cond ((not (file-exists-p filename))
937                      (error "File %s no longer exists!" filename))
938                     ;; Certain files should be reverted automatically
939                     ;; if they have changed on disk and not in the buffer.
940                     ((and (not (buffer-modified-p buf))
941                           (dolist (rx revert-without-query nil)
942                             (when (string-match rx filename)
943                               (return t))))
944                      (with-current-buffer buf
945                        (message "Reverting file %s..." filename)
946                        (revert-buffer t t)
947                        (message "Reverting file %s... done" filename)))
948                     ((yes-or-no-p
949                       (if (string= (file-name-nondirectory filename)
950                                    (buffer-name buf))
951                           (format
952                            (if (buffer-modified-p buf)
953         (gettext "File %s changed on disk.  Discard your edits? ")
954         (gettext "File %s changed on disk.  Reread from disk? "))
955                            (file-name-nondirectory filename))
956                         (format
957                          (if (buffer-modified-p buf)
958       (gettext "File %s changed on disk.  Discard your edits in %s? ")
959       (gettext "File %s changed on disk.  Reread from disk into %s? "))
960                          (file-name-nondirectory filename)
961                          (buffer-name buf))))
962                      (with-current-buffer buf
963                        (revert-buffer t t)))))
964         ;; Else: we must create a new buffer for filename
965         (save-excursion
966 ;;; The truename stuff makes this obsolete.
967 ;;;       (let* ((link-name (car (file-attributes filename)))
968 ;;;              (linked-buf (and (stringp link-name)
969 ;;;                               (get-file-buffer link-name))))
970 ;;;         (if (bufferp linked-buf)
971 ;;;             (message "Symbolic link to file in buffer %s"
972 ;;;                      (buffer-name linked-buf))))
973           (setq buf (create-file-buffer filename))
974           ;; Catch various signals, such as QUIT, and kill the buffer
975           ;; in that case.
976           (condition-case data
977               (progn
978                 (set-buffer-major-mode buf)
979                 (set-buffer buf)
980                 (erase-buffer)
981                 (condition-case ()
982                     (if rawfile
983                         (insert-file-contents-literally filename t)
984                       (insert-file-contents filename t))
985                   (file-error
986                    (when (and (file-exists-p filename)
987                               (not (file-readable-p filename)))
988                      (signal 'file-error (list "File is not readable" filename)))
989                    (if rawfile
990                        ;; Unconditionally set error
991                        (setq error t)
992                      (or
993                       ;; Run find-file-not-found-hooks until one returns non-nil.
994                       (run-hook-with-args-until-success 'find-file-not-found-hooks)
995                       ;; If they fail too, set error.
996                       (setq error t)))))
997                 ;; Find the file's truename, and maybe use that as visited name.
998                 ;; automatically computed in XEmacs, unless jka-compr was used!
999                 (unless buffer-file-truename
1000                   (setq buffer-file-truename truename))
1001                 (setq buffer-file-number number)
1002                 (and find-file-use-truenames
1003                      ;; This should be in C.  Put pathname
1004                      ;; abbreviations that have been explicitly
1005                      ;; requested back into the pathname.  Most
1006                      ;; importantly, strip out automounter /tmp_mnt
1007                      ;; directories so that auto-save will work
1008                      (setq buffer-file-name (abbreviate-file-name buffer-file-name)))
1009                 ;; Set buffer's default directory to that of the file.
1010                 (setq default-directory (file-name-directory buffer-file-name))
1011                 ;; Turn off backup files for certain file names.  Since
1012                 ;; this is a permanent local, the major mode won't eliminate it.
1013                 (and (not (funcall backup-enable-predicate buffer-file-name))
1014                      (progn
1015                        (make-local-variable 'backup-inhibited)
1016                        (setq backup-inhibited t)))
1017                 (if rawfile
1018                     ;; #### FSF 20.3 sets buffer-file-coding-system to
1019                     ;; `no-conversion' here.  Should we copy?  It also
1020                     ;; makes `find-file-literally' a local variable
1021                     ;; and sets it to t.
1022                     nil
1023                   (after-find-file error (not nowarn))
1024                   (setq buf (current-buffer))))
1025             (t
1026              (kill-buffer buf)
1027              (signal (car data) (cdr data))))))
1028       buf)))
1029 \f
1030 ;; FSF has `insert-file-literally' and `find-file-literally' here.
1031
1032 (defvar after-find-file-from-revert-buffer nil)
1033
1034 (defun after-find-file (&optional error warn noauto
1035                                   after-find-file-from-revert-buffer
1036                                   nomodes)
1037   "Called after finding a file and by the default revert function.
1038 Sets buffer mode, parses local variables.
1039 Optional args ERROR, WARN, and NOAUTO: ERROR non-nil means there was an
1040 error in reading the file.  WARN non-nil means warn if there
1041 exists an auto-save file more recent than the visited file.
1042 NOAUTO means don't mess with auto-save mode.
1043 Fourth arg AFTER-FIND-FILE-FROM-REVERT-BUFFER non-nil
1044  means this call was from `revert-buffer'.
1045 Fifth arg NOMODES non-nil means don't alter the file's modes.
1046 Finishes by calling the functions in `find-file-hooks'."
1047   (setq buffer-read-only (not (file-writable-p buffer-file-name)))
1048   (if noninteractive
1049       nil
1050     (let* (not-serious
1051            (msg
1052             (cond ((and error (file-attributes buffer-file-name))
1053                    (setq buffer-read-only t)
1054                    (gettext "File exists, but cannot be read."))
1055                   ((not buffer-read-only)
1056                    (if (and warn
1057                             (file-newer-than-file-p (make-auto-save-file-name)
1058                                                     buffer-file-name))
1059                        (format "%s has auto save data; consider M-x recover-file"
1060                                (file-name-nondirectory buffer-file-name))
1061                      (setq not-serious t)
1062                      (if error (gettext "(New file)") nil)))
1063                   ((not error)
1064                    (setq not-serious t)
1065                    (gettext "Note: file is write protected"))
1066                   ((file-attributes (directory-file-name default-directory))
1067                    (gettext "File not found and directory write-protected"))
1068                   ((file-exists-p (file-name-directory buffer-file-name))
1069                    (setq buffer-read-only nil))
1070                   (t
1071                    ;; If the directory the buffer is in doesn't exist,
1072                    ;; offer to create it.  It's better to do this now
1073                    ;; than when we save the buffer, because we want
1074                    ;; autosaving to work.
1075                    (setq buffer-read-only nil)
1076                    ;; XEmacs
1077                    (or (file-exists-p (file-name-directory buffer-file-name))
1078                        (condition-case nil
1079                            (if (yes-or-no-p
1080                                 (format
1081                                  "\
1082 The directory containing %s does not exist.  Create? "
1083                                  (abbreviate-file-name buffer-file-name)))
1084                                (make-directory (file-name-directory
1085                                                 buffer-file-name)
1086                                                t))
1087                          (quit
1088                           (kill-buffer (current-buffer))
1089                           (signal 'quit nil))))
1090                    nil))))
1091       (if msg
1092           (progn
1093             (message "%s" msg)
1094             (or not-serious (sit-for 1 t)))))
1095     (if (and auto-save-default (not noauto))
1096         (auto-save-mode t)))
1097   (unless nomodes
1098     (normal-mode t)
1099     (run-hooks 'find-file-hooks)))
1100
1101 (defun normal-mode (&optional find-file)
1102   "Choose the major mode for this buffer automatically.
1103 Also sets up any specified local variables of the file.
1104 Uses the visited file name, the -*- line, and the local variables spec.
1105
1106 This function is called automatically from `find-file'.  In that case,
1107 we may set up specified local variables depending on the value of
1108 `enable-local-variables': if it is t, we do; if it is nil, we don't;
1109 otherwise, we query.  `enable-local-variables' is ignored if you
1110 run `normal-mode' explicitly."
1111   (interactive)
1112   (or find-file (funcall (or default-major-mode 'fundamental-mode)))
1113   (and (condition-case err
1114            (progn (set-auto-mode)
1115                   t)
1116          (error (message "File mode specification error: %s"
1117                          (prin1-to-string err))
1118                 nil))
1119        (condition-case err
1120            (hack-local-variables (not find-file))
1121          (error (lwarn 'local-variables 'warning
1122                   "File local-variables error: %s"
1123                   (error-message-string err))))))
1124
1125 ;; #### This variable sucks in the package model.  There should be a
1126 ;; way for new packages to add their entries to auto-mode-alist in a
1127 ;; clean way.  Per Abrahamsen suggested splitting auto-mode-alist to
1128 ;; several distinct variables such as, in order of precedence,
1129 ;; `user-auto-mode-alist' for users, `package-auto-mode-alist' for
1130 ;; packages and `auto-mode-alist' (which might also be called
1131 ;; `default-auto-mode-alist') for default stuff, such as some of the
1132 ;; entries below.
1133
1134 (defvar auto-mode-alist
1135   '(("\\.te?xt\\'" . text-mode)
1136     ("\\.[chi]\\'" . c-mode)
1137     ("\\.el\\'" . emacs-lisp-mode)
1138     ("\\.\\(?:[CH]\\|cc\\|hh\\)\\'" . c++-mode)
1139     ("\\.[ch]\\(pp\\|xx\\|\\+\\+\\)\\'" . c++-mode)
1140     ("\\.java\\'" . java-mode)
1141     ("\\.idl\\'" . idl-mode)
1142     ("\\.f\\(?:or\\)?\\'" . fortran-mode)
1143     ("\\.F\\(?:OR\\)?\\'" . fortran-mode)
1144     ("\\.[fF]90\\'" . f90-mode)
1145 ;;; Less common extensions come here
1146 ;;; so more common ones above are found faster.
1147     ("\\.\\([pP][Llm]\\|al\\)\\'" . perl-mode)
1148     ("\\.py\\'" . python-mode)
1149     ("\\.texi\\(?:nfo\\)?\\'" . texinfo-mode)
1150     ("\\.ad[abs]\\'" . ada-mode)
1151     ("\\.c?l\\(?:i?sp\\)?\\'" . lisp-mode)
1152     ("\\.p\\(?:as\\)?\\'" . pascal-mode)
1153     ("\\.ltx\\'" . latex-mode)
1154     ("\\.[sS]\\'" . asm-mode)
1155     ("[Cc]hange.?[Ll]og?\\(?:.[0-9]+\\)?\\'" . change-log-mode)
1156     ("\\$CHANGE_LOG\\$\\.TXT" . change-log-mode)
1157     ("\\.scm?\\(?:\\.[0-9]*\\)?\\'" . scheme-mode)
1158     ("\\.e\\'" . eiffel-mode)
1159     ("\\.mss\\'" . scribe-mode)
1160     ("\\.m\\(?:[mes]\\|an\\)\\'" . nroff-mode)
1161     ("\\.icn\\'" . icon-mode)
1162     ("\\.\\(?:[ckz]?sh\\|shar\\)\\'" . sh-mode)
1163     ;; #### Unix-specific!
1164     ("/\\.\\(?:bash_\\|z\\)?\\(profile\\|login\\|logout\\)\\'" . sh-mode)
1165     ("/\\.\\(?:[ckz]sh\\|bash\\|tcsh\\|es\\|xinit\\|startx\\)rc\\'" . sh-mode)
1166     ("/\\.\\(?:[kz]shenv\\|xsession\\)\\'" . sh-mode)
1167     ;; The following come after the ChangeLog pattern for the sake of
1168     ;; ChangeLog.1, etc. and after the .scm.[0-9] pattern too.
1169     ("\\.[12345678]\\'" . nroff-mode)
1170     ("\\.[tT]e[xX]\\'" . tex-mode)
1171     ("\\.\\(?:sty\\|cls\\|bbl\\)\\'" . latex-mode)
1172     ("\\.bib\\'" . bibtex-mode)
1173     ("\\.article\\'" . text-mode)
1174     ("\\.letter\\'" . text-mode)
1175     ("\\.\\(?:tcl\\|exp\\)\\'" . tcl-mode)
1176     ("\\.wrl\\'" . vrml-mode)
1177     ("\\.awk\\'" . awk-mode)
1178     ("\\.prolog\\'" . prolog-mode)
1179     ("\\.\\(?:arc\\|zip\\|lzh\\|zoo\\)\\'" . archive-mode)
1180     ;; Mailer puts message to be edited in /tmp/Re.... or Message
1181     ;; #### Unix-specific!
1182     ("\\`/tmp/Re" . text-mode)
1183     ("/Message[0-9]*\\'" . text-mode)
1184     ("/drafts/[0-9]+\\'" . mh-letter-mode)
1185     ;; some news reader is reported to use this
1186     ("^/tmp/fol/" . text-mode)
1187     ("\\.y\\'" . c-mode)
1188     ("\\.lex\\'" . c-mode)
1189     ("\\.m\\'" . objc-mode)
1190     ("\\.oak\\'" . scheme-mode)
1191     ("\\.s?html?\\'" . html-mode)
1192     ("\\.htm?l?3\\'" . html3-mode)
1193     ("\\.\\(?:sgml?\\|dtd\\)\\'" . sgml-mode)
1194     ("\\.c?ps\\'" . postscript-mode)
1195     ;; .emacs following a directory delimiter in either Unix or
1196     ;; Windows syntax.
1197     ("[/\\][._].*emacs\\'" . emacs-lisp-mode)
1198     ("\\.m4\\'" . autoconf-mode)
1199     ("configure\\.in\\'" . autoconf-mode)
1200     ("\\.ml\\'" . lisp-mode)
1201     ("\\.ma?k\\'" . makefile-mode)
1202     ("[Mm]akefile\\(\\.\\|\\'\\)" . makefile-mode)
1203     ("\\.X\\(defaults\\|environment\\|resources\\|modmap\\)\\'" . xrdb-mode)
1204     ;; #### The following three are Unix-specific (but do we care?)
1205     ("/app-defaults/" . xrdb-mode)
1206     ("\\.[^/]*wm2?\\(?:rc\\)?\\'" . winmgr-mode)
1207     ("\\.\\(?:jpe?g\\|JPE?G\\|png\\|PNG\\|gif\\|GIF\\|tiff?\\|TIFF?\\)\\'" . image-mode)
1208     )
1209 "Alist of filename patterns vs. corresponding major mode functions.
1210 Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL).
1211 \(NON-NIL stands for anything that is not nil; the value does not matter.)
1212 Visiting a file whose name matches REGEXP specifies FUNCTION as the
1213 mode function to use.  FUNCTION will be called, unless it is nil.
1214
1215 If the element has the form (REGEXP FUNCTION NON-NIL), then after
1216 calling FUNCTION (if it's not nil), we delete the suffix that matched
1217 REGEXP and search the list again for another match.")
1218
1219 (defvar interpreter-mode-alist
1220   '(("^#!.*csh"   . sh-mode)
1221     ("^#!.*\\b\\(scope\\|wish\\|tcl\\|tclsh\\|expect\\)" . tcl-mode)
1222     ("^#!.*sh\\b" . sh-mode)
1223     ("perl"   . perl-mode)
1224     ("python" . python-mode)
1225     ("awk\\b" . awk-mode)
1226     ("rexx"   . rexx-mode)
1227     ("scm\\|guile" . scheme-mode)
1228     ("emacs" . emacs-lisp-mode)
1229     ("make" . makefile-mode)
1230     ("^:"     . sh-mode))
1231   "Alist mapping interpreter names to major modes.
1232 This alist is used to guess the major mode of a file based on the
1233 contents of the first line.  This line often contains something like:
1234 #!/bin/sh
1235 but may contain something more imaginative like
1236 #! /bin/env python
1237 or
1238 eval 'exec perl -w -S $0 ${1+\"$@\"}'.
1239
1240 Each alist element looks like (INTERPRETER . MODE).
1241 The car of each element is a regular expression which is compared
1242 with the name of the interpreter specified in the first line.
1243 If it matches, mode MODE is selected.")
1244
1245 (defvar binary-file-regexps
1246   (purecopy
1247    '("\\.\\(?:bz2\\|elc\\|g\\(if\\|z\\)\\|jp\\(eg\\|g\\)\\|png\\|t\\(ar\\|gz\\|iff\\)\\|[Zo]\\)\\'"))
1248   "List of regexps of filenames containing binary (non-text) data.")
1249
1250 ;   (eval-when-compile
1251 ;     (require 'regexp-opt)
1252 ;     (list
1253 ;      (format "\\.\\(?:%s\\)\\'"
1254 ;             (regexp-opt
1255 ;              '("tar"
1256 ;                "tgz"
1257 ;                "gz"
1258 ;                "bz2"
1259 ;                "Z"
1260 ;                "o"
1261 ;                "elc"
1262 ;                "png"
1263 ;                "gif"
1264 ;                "tiff"
1265 ;                "jpg"
1266 ;                "jpeg"))))))
1267   
1268 (defvar inhibit-first-line-modes-regexps
1269   (purecopy binary-file-regexps)
1270   "List of regexps; if one matches a file name, don't look for `-*-'.")
1271
1272 (defvar inhibit-first-line-modes-suffixes nil
1273   "List of regexps for what to ignore, for `inhibit-first-line-modes-regexps'.
1274 When checking `inhibit-first-line-modes-regexps', we first discard
1275 from the end of the file name anything that matches one of these regexps.")
1276
1277 (defvar user-init-file
1278   nil ; set by command-line
1279   "File name including directory of user's initialization file.")
1280
1281 (defun set-auto-mode (&optional just-from-file-name)
1282   "Select major mode appropriate for current buffer.
1283 This checks for a -*- mode tag in the buffer's text,
1284 compares the filename against the entries in `auto-mode-alist',
1285 or checks the interpreter that runs this file against
1286 `interpreter-mode-alist'.
1287
1288 It does not check for the `mode:' local variable in the
1289 Local Variables section of the file; for that, use `hack-local-variables'.
1290
1291 If `enable-local-variables' is nil, this function does not check for a
1292 -*- mode tag.
1293
1294 If the optional argument JUST-FROM-FILE-NAME is non-nil,
1295 then we do not set anything but the major mode,
1296 and we don't even do that unless it would come from the file name."
1297   (save-excursion
1298     ;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*-
1299     ;; Do this by calling the hack-local-variables helper to avoid redundancy.
1300     ;; We bind enable-local-variables to nil this time because we're going to
1301     ;; call hack-local-variables-prop-line again later, "for real."  Note that
1302     ;; this temporary binding does not prevent hack-local-variables-prop-line
1303     ;; from setting the major mode.
1304     (or (and enable-local-variables
1305              (let ((enable-local-variables nil))
1306                (hack-local-variables-prop-line nil))
1307              )
1308         ;; It's not in the -*- line, so check the auto-mode-alist, unless
1309         ;; this buffer isn't associated with a file.
1310         (null buffer-file-name)
1311         (let ((name (file-name-sans-versions buffer-file-name))
1312               (keep-going t))
1313           (while keep-going
1314             (setq keep-going nil)
1315             (let ((alist auto-mode-alist)
1316                   (mode nil))
1317               ;; Find first matching alist entry.
1318               (let ((case-fold-search
1319                      (memq system-type '(windows-nt))))
1320                 (while (and (not mode) alist)
1321                   (if (string-match (car (car alist)) name)
1322                       (if (and (consp (cdr (car alist)))
1323                                (nth 2 (car alist)))
1324                           (progn
1325                             (setq mode (car (cdr (car alist)))
1326                                   name (substring name 0 (match-beginning 0))
1327                                   keep-going t))
1328                         (setq mode (cdr (car alist))
1329                               keep-going nil)))
1330                   (setq alist (cdr alist))))
1331               (unless just-from-file-name
1332                 ;; If we can't deduce a mode from the file name,
1333                 ;; look for an interpreter specified in the first line.
1334                 (if (and (null mode)
1335                          (save-excursion ; XEmacs
1336                            (goto-char (point-min))
1337                            (looking-at "#!")))
1338                     (let ((firstline
1339                            (buffer-substring
1340                             (point-min)
1341                             (save-excursion
1342                               (goto-char (point-min)) (end-of-line) (point)))))
1343                       (setq alist interpreter-mode-alist)
1344                       (while alist
1345                         (if (string-match (car (car alist)) firstline)
1346                             (progn
1347                               (setq mode (cdr (car alist)))
1348                               (setq alist nil))
1349                           (setq alist (cdr alist)))))))
1350               (if mode
1351                   (if (not (fboundp mode))
1352                       (let ((name (package-get-package-provider mode)))
1353                         (if name
1354                             (message "Mode %s is not installed.  Download package %s" mode name)
1355                           (message "Mode %s either doesn't exist or is not a known package" mode))
1356                         (sit-for 2)
1357                         (error "%s" mode))
1358                     (unless (and just-from-file-name
1359                                  (or
1360                                   ;; Don't reinvoke major mode.
1361                                   (eq mode major-mode)
1362                                   ;; Don't lose on minor modes.
1363                                   (assq mode minor-mode-alist)))
1364                       (funcall mode))))))))))
1365
1366 (defvar hack-local-variables-hook nil
1367   "Normal hook run after processing a file's local variables specs.
1368 Major modes can use this to examine user-specified local variables
1369 in order to initialize other data structure based on them.
1370
1371 This hook runs even if there were no local variables or if their
1372 evaluation was suppressed.  See also `enable-local-variables' and
1373 `enable-local-eval'.")
1374
1375 (defun hack-local-variables (&optional force)
1376   "Parse, and bind or evaluate as appropriate, any local variables
1377 for current buffer."
1378   ;; Don't look for -*- if this file name matches any
1379   ;; of the regexps in inhibit-first-line-modes-regexps.
1380   (if (or (null buffer-file-name) ; don't lose if buffer has no file!
1381           (not (let ((temp inhibit-first-line-modes-regexps)
1382                      (name (if buffer-file-name
1383                                (file-name-sans-versions buffer-file-name)
1384                              (buffer-name))))
1385                  (while (let ((sufs inhibit-first-line-modes-suffixes))
1386                           (while (and sufs (not
1387                                             (string-match (car sufs) name)))
1388                             (setq sufs (cdr sufs)))
1389                           sufs)
1390                    (setq name (substring name 0 (match-beginning 0))))
1391                  (while (and temp
1392                              (not (string-match (car temp) name)))
1393                    (setq temp (cdr temp))
1394                    temp))))
1395       (progn
1396         ;; Look for variables in the -*- line.
1397         (hack-local-variables-prop-line force)
1398         ;; Look for "Local variables:" block in last page.
1399         (hack-local-variables-last-page force)))
1400   (run-hooks 'hack-local-variables-hook))
1401
1402 ;;; Local variables may be specified in the last page of the file (within 3k
1403 ;;; from the end of the file and after the last ^L) in the form
1404 ;;;
1405 ;;;   Local variables:
1406 ;;;   variable-name: variable-value
1407 ;;;   end:
1408 ;;;
1409 ;;; The lines may begin with a common prefix, like ";;;   " in the above
1410 ;;; example.  They may also have a common suffix (" */" for example).  In
1411 ;;; this form, the local variable "mode" can be used to change the major
1412 ;;; mode, and the local variable "eval" can be used to evaluate an arbitrary
1413 ;;; form.
1414 ;;;
1415 ;;; Local variables may also be specified in the first line of the file.
1416 ;;; Embedded in this line are a pair of "-*-" sequences.  What lies between
1417 ;;; them are variable-name/variable-value pairs, like:
1418 ;;;
1419 ;;;      -*- mode: emacs-lisp -*-
1420 ;;; or   -*- mode: postscript; version-control: never -*-
1421 ;;; or   -*- tags-file-name: "/foo/bar/TAGS" -*-
1422 ;;;
1423 ;;; The local variable "eval" is not used with this form. For hysterical
1424 ;;; reasons, the syntax "-*- modename -*-" is allowed as well.
1425 ;;;
1426
1427 (defun hack-local-variables-p (modeline)
1428   (or (eq enable-local-variables t)
1429       (and enable-local-variables
1430            (save-window-excursion
1431              (condition-case nil
1432                  (switch-to-buffer (current-buffer))
1433                (error
1434                 ;; If we fail to switch in the selected window,
1435                 ;; it is probably a minibuffer.
1436                 ;; So try another window.
1437                 (condition-case nil
1438                     (switch-to-buffer-other-window (current-buffer))
1439                   (error
1440                    (switch-to-buffer-other-frame (current-buffer))))))
1441              (or modeline (save-excursion
1442                              (beginning-of-line)
1443                              (set-window-start (selected-window) (point))))
1444              (y-or-n-p (format
1445                         "Set local variables as specified %s of %s? "
1446                         (if modeline "in -*- line" "at end")
1447                         (if buffer-file-name
1448                             (file-name-nondirectory buffer-file-name)
1449                             (concat "buffer " (buffer-name)))))))))
1450
1451 (defun hack-local-variables-last-page (&optional force)
1452   ;; Set local variables set in the "Local Variables:" block of the last page.
1453   (save-excursion
1454     (goto-char (point-max))
1455     (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move)
1456     (if (let ((case-fold-search t))
1457           (and (search-forward "Local Variables:" nil t)
1458                (or force
1459                    (hack-local-variables-p nil))))
1460         (let ((continue t)
1461               prefix prefixlen suffix beg
1462               (enable-local-eval enable-local-eval))
1463           ;; The prefix is what comes before "local variables:" in its line.
1464           ;; The suffix is what comes after "local variables:" in its line.
1465           (skip-chars-forward " \t")
1466           (or (eolp)
1467               (setq suffix (buffer-substring (point)
1468                                              (progn (end-of-line) (point)))))
1469           (goto-char (match-beginning 0))
1470           (or (bolp)
1471               (setq prefix
1472                     (buffer-substring (point)
1473                                       (progn (beginning-of-line) (point)))))
1474           (if prefix (setq prefixlen (length prefix)
1475                            prefix (regexp-quote prefix)))
1476           (if suffix (setq suffix (concat (regexp-quote suffix) "$")))
1477           (while continue
1478             ;; Look at next local variable spec.
1479             (if selective-display (re-search-forward "[\n\C-m]")
1480               (forward-line 1))
1481             ;; Skip the prefix, if any.
1482             (if prefix
1483                 (if (looking-at prefix)
1484                     (forward-char prefixlen)
1485                   (error "Local variables entry is missing the prefix")))
1486             ;; Find the variable name; strip whitespace.
1487             (skip-chars-forward " \t")
1488             (setq beg (point))
1489             (skip-chars-forward "^:\n")
1490             (if (eolp) (error "Missing colon in local variables entry"))
1491             (skip-chars-backward " \t")
1492             (let* ((str (buffer-substring beg (point)))
1493                    (var (read str))
1494                   val)
1495               ;; Setting variable named "end" means end of list.
1496               (if (string-equal (downcase str) "end")
1497                   (setq continue nil)
1498                 ;; Otherwise read the variable value.
1499                 (skip-chars-forward "^:")
1500                 (forward-char 1)
1501                 (setq val (read (current-buffer)))
1502                 (skip-chars-backward "\n")
1503                 (skip-chars-forward " \t")
1504                 (or (if suffix (looking-at suffix) (eolp))
1505                     (error "Local variables entry is terminated incorrectly"))
1506                 ;; Set the variable.  "Variables" mode and eval are funny.
1507                 (hack-one-local-variable var val))))))))
1508
1509 ;; jwz - New Version 20.1/19.15
1510 (defun hack-local-variables-prop-line (&optional force)
1511   ;; Set local variables specified in the -*- line.
1512   ;; Returns t if mode was set.
1513   (let ((result nil))
1514     (save-excursion
1515       (goto-char (point-min))
1516       (skip-chars-forward " \t\n\r")
1517       (let ((end (save-excursion
1518                    ;; If the file begins with "#!"
1519                    ;; (un*x exec interpreter magic), look
1520                    ;; for mode frobs in the first two
1521                    ;; lines.  You cannot necessarily
1522                    ;; put them in the first line of
1523                    ;; such a file without screwing up
1524                    ;; the interpreter invocation.
1525                    (end-of-line (and (looking-at "^#!") 2))
1526                    (point))))
1527         ;; Parse the -*- line into the `result' alist.
1528         (cond ((not (search-forward "-*-" end t))
1529                ;; doesn't have one.
1530                (setq force t))
1531               ((looking-at "[ \t]*\\([^ \t\n\r:;]+\\)\\([ \t]*-\\*-\\)")
1532                ;; Antiquated form: "-*- ModeName -*-".
1533                (setq result
1534                      (list (cons 'mode
1535                                  (intern (buffer-substring
1536                                           (match-beginning 1)
1537                                           (match-end 1)))))
1538                      ))
1539               (t
1540                ;; Usual form: '-*-' [ <variable> ':' <value> ';' ]* '-*-'
1541                ;; (last ";" is optional).
1542                (save-excursion
1543                  (if (search-forward "-*-" end t)
1544                      (setq end (- (point) 3))
1545                    (error "-*- not terminated before end of line")))
1546                (while (< (point) end)
1547                  (or (looking-at "[ \t]*\\([^ \t\n:]+\\)[ \t]*:[ \t]*")
1548                      (error "malformed -*- line"))
1549                  (goto-char (match-end 0))
1550                  ;; There used to be a downcase here,
1551                  ;; but the manual didn't say so,
1552                  ;; and people want to set var names that aren't all lc.
1553                  (let ((key (intern (buffer-substring
1554                                      (match-beginning 1)
1555                                      (match-end 1))))
1556                        (val (save-restriction
1557                               (narrow-to-region (point) end)
1558                               (read (current-buffer)))))
1559                    ;; Case sensitivity!  Icepicks in my forehead!
1560                    (if (equal (downcase (symbol-name key)) "mode")
1561                        (setq key 'mode))
1562                    (setq result (cons (cons key val) result))
1563                    (skip-chars-forward " \t;")))
1564                (setq result (nreverse result))))))
1565
1566     (let ((set-any-p (or force
1567                          ;; It's OK to force null specifications.
1568                          (null result)
1569                          ;; It's OK to force mode-only specifications.
1570                          (let ((remaining result)
1571                                (mode-specs-only t))
1572                            (while remaining
1573                              (if (eq (car (car remaining)) 'mode)
1574                                  (setq remaining (cdr remaining))
1575                                ;; Otherwise, we have a real local.
1576                                (setq mode-specs-only nil
1577                                      remaining nil))
1578                              )
1579                            mode-specs-only)
1580                          ;; Otherwise, check.
1581                          (hack-local-variables-p t)))
1582           (mode-p nil))
1583       (while result
1584         (let ((key (car (car result)))
1585               (val (cdr (car result))))
1586           (cond ((eq key 'mode)
1587                  (setq mode-p t)
1588                  (let ((mode (intern (concat (downcase (symbol-name val))
1589                                              "-mode"))))
1590                    ;; Without this guard, `normal-mode' would potentially run
1591                    ;; the major mode function twice: once via `set-auto-mode'
1592                    ;; and once via `hack-local-variables'.
1593                    (if (not (eq mode major-mode))
1594                        (funcall mode))
1595                    ))
1596                 (set-any-p
1597                  (hack-one-local-variable key val))
1598                 (t
1599                  nil)))
1600         (setq result (cdr result)))
1601       mode-p)))
1602
1603 (defconst ignored-local-variables
1604   (list 'enable-local-eval)
1605   "Variables to be ignored in a file's local variable spec.")
1606
1607 ;; Get confirmation before setting these variables as locals in a file.
1608 (put 'debugger 'risky-local-variable t)
1609 (put 'enable-local-eval 'risky-local-variable t)
1610 (put 'ignored-local-variables 'risky-local-variable t)
1611 (put 'eval 'risky-local-variable t)
1612 (put 'file-name-handler-alist 'risky-local-variable t)
1613 (put 'minor-mode-map-alist 'risky-local-variable t)
1614 (put 'after-load-alist 'risky-local-variable t)
1615 (put 'buffer-file-name 'risky-local-variable t)
1616 (put 'buffer-auto-save-file-name 'risky-local-variable t)
1617 (put 'buffer-file-truename 'risky-local-variable t)
1618 (put 'exec-path 'risky-local-variable t)
1619 (put 'load-path 'risky-local-variable t)
1620 (put 'exec-directory 'risky-local-variable t)
1621 (put 'process-environment 'risky-local-variable t)
1622 ;; Don't wait for outline.el to be loaded, for the sake of outline-minor-mode.
1623 (put 'outline-level 'risky-local-variable t)
1624 (put 'rmail-output-file-alist 'risky-local-variable t)
1625
1626 ;; This one is safe because the user gets to check it before it is used.
1627 (put 'compile-command 'safe-local-variable t)
1628
1629 ;(defun hack-one-local-variable-quotep (exp)
1630 ;  (and (consp exp) (eq (car exp) 'quote) (consp (cdr exp))))
1631
1632 ;; "Set" one variable in a local variables spec.
1633 ;; A few variable names are treated specially.
1634 (defun hack-one-local-variable (var val)
1635   (cond ((eq var 'mode)
1636          (funcall (intern (concat (downcase (symbol-name val))
1637                                   "-mode"))))
1638         ((memq var ignored-local-variables)
1639          nil)
1640         ;; "Setting" eval means either eval it or do nothing.
1641         ;; Likewise for setting hook variables.
1642         ((or (get var 'risky-local-variable)
1643              (and
1644               (string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|-command$"
1645                             (symbol-name var))
1646               (not (get var 'safe-local-variable))))
1647 ;        ;; Permit evaling a put of a harmless property
1648 ;        ;; if the args do nothing tricky.
1649 ;        (if (or (and (eq var 'eval)
1650 ;                     (consp val)
1651 ;                     (eq (car val) 'put)
1652 ;                     (hack-one-local-variable-quotep (nth 1 val))
1653 ;                     (hack-one-local-variable-quotep (nth 2 val))
1654 ;                     ;; Only allow safe values of lisp-indent-hook;
1655 ;                     ;; not functions.
1656 ;                     (or (numberp (nth 3 val))
1657 ;                         (equal (nth 3 val) ''defun))
1658 ;                     (memq (nth 1 (nth 2 val))
1659 ;                           '(lisp-indent-hook)))
1660          (if (and (not (zerop (user-uid)))
1661                   (or (eq enable-local-eval t)
1662                       (and enable-local-eval
1663                            (save-window-excursion
1664                              (switch-to-buffer (current-buffer))
1665                              (save-excursion
1666                                (beginning-of-line)
1667                                (set-window-start (selected-window) (point)))
1668                              (setq enable-local-eval
1669                                    (y-or-n-p (format "Process `eval' or hook local variables in file %s? "
1670                                                      (file-name-nondirectory buffer-file-name))))))))
1671              (if (eq var 'eval)
1672                  (save-excursion (eval val))
1673                (make-local-variable var)
1674                (set var val))
1675            (message "Ignoring `eval:' in file's local variables")))
1676         ;; Ordinary variable, really set it.
1677         (t (make-local-variable var)
1678            (set var val))))
1679 \f
1680 (defcustom change-major-mode-with-file-name t
1681   "*Non-nil means \\[write-file] should set the major mode from the file name.
1682 However, the mode will not be changed if
1683 \(1) a local variables list or the `-*-' line specifies a major mode, or
1684 \(2) the current major mode is a \"special\" mode,
1685 \    not suitable for ordinary files, or
1686 \(3) the new file name does not particularly specify any mode."
1687   :type 'boolean
1688   :group 'editing-basics)
1689
1690 (defun set-visited-file-name (filename &optional no-query along-with-file)
1691   "Change name of file visited in current buffer to FILENAME.
1692 The next time the buffer is saved it will go in the newly specified file.
1693 nil or empty string as argument means make buffer not be visiting any file.
1694 Remember to delete the initial contents of the minibuffer
1695 if you wish to pass an empty string as the argument.
1696
1697 The optional second argument NO-QUERY, if non-nil, inhibits asking for
1698 confirmation in the case where another buffer is already visiting FILENAME.
1699
1700 The optional third argument ALONG-WITH-FILE, if non-nil, means that
1701 the old visited file has been renamed to the new name FILENAME."
1702   (interactive "FSet visited file name: ")
1703   (if (buffer-base-buffer)
1704       (error "An indirect buffer cannot visit a file"))
1705   (let (truename)
1706     (if filename
1707         (setq filename
1708               (if (string-equal filename "")
1709                   nil
1710                 (expand-file-name filename))))
1711     (if filename
1712         (progn
1713           (setq truename (file-truename filename))
1714           ;; #### Do we need to check if truename is non-nil?
1715           (if find-file-use-truenames
1716               (setq filename truename))))
1717     (let ((buffer (and filename (find-buffer-visiting filename))))
1718       (and buffer (not (eq buffer (current-buffer)))
1719            (not no-query)
1720            (not (y-or-n-p (message "A buffer is visiting %s; proceed? "
1721                                    filename)))
1722            (error "Aborted")))
1723     (or (equal filename buffer-file-name)
1724         (progn
1725           (and filename (lock-buffer filename))
1726           (unlock-buffer)))
1727     (setq buffer-file-name filename)
1728     (if filename                        ; make buffer name reflect filename.
1729         (let ((new-name (file-name-nondirectory buffer-file-name)))
1730           (if (string= new-name "")
1731               (error "Empty file name"))
1732           (setq default-directory (file-name-directory buffer-file-name))
1733           (or (string= new-name (buffer-name))
1734               (rename-buffer new-name t))))
1735     (setq buffer-backed-up nil)
1736     (or along-with-file
1737         (clear-visited-file-modtime))
1738     (compute-buffer-file-truename) ; insert-file-contents does this too.
1739 ;    ;; Abbreviate the file names of the buffer.
1740 ;    (if truename
1741 ;        (progn
1742 ;          (setq buffer-file-truename (abbreviate-file-name truename))
1743 ;          (if find-file-visit-truename
1744 ;              (setq buffer-file-name buffer-file-truename))))
1745     (setq buffer-file-number
1746           (if filename
1747               (nthcdr 10 (file-attributes buffer-file-name))
1748               nil)))
1749   ;; write-file-hooks is normally used for things like ftp-find-file
1750   ;; that visit things that are not local files as if they were files.
1751   ;; Changing to visit an ordinary local file instead should flush the hook.
1752   (kill-local-variable 'write-file-hooks)
1753   (kill-local-variable 'after-save-hook)
1754   (kill-local-variable 'local-write-file-hooks)
1755   (kill-local-variable 'write-file-data-hooks)
1756   (kill-local-variable 'revert-buffer-function)
1757   (kill-local-variable 'backup-inhibited)
1758   ;; If buffer was read-only because of version control,
1759   ;; that reason is gone now, so make it writable.
1760   (when (boundp 'vc-mode)
1761     (if vc-mode
1762         (setq buffer-read-only nil))
1763     (kill-local-variable 'vc-mode))
1764   ;; Turn off backup files for certain file names.
1765   ;; Since this is a permanent local, the major mode won't eliminate it.
1766   (and buffer-file-name
1767        (not (funcall backup-enable-predicate buffer-file-name))
1768        (progn
1769          (make-local-variable 'backup-inhibited)
1770          (setq backup-inhibited t)))
1771   (let ((oauto buffer-auto-save-file-name))
1772     ;; If auto-save was not already on, turn it on if appropriate.
1773     (if (not buffer-auto-save-file-name)
1774         (and buffer-file-name auto-save-default
1775              (auto-save-mode t))
1776       ;; If auto save is on, start using a new name.
1777       ;; We deliberately don't rename or delete the old auto save
1778       ;; for the old visited file name.  This is because perhaps
1779       ;; the user wants to save the new state and then compare with the
1780       ;; previous state from the auto save file.
1781       (setq buffer-auto-save-file-name
1782             (make-auto-save-file-name)))
1783     ;; Rename the old auto save file if any.
1784     (and oauto buffer-auto-save-file-name
1785          (file-exists-p oauto)
1786          (rename-file oauto buffer-auto-save-file-name t)))
1787   (if buffer-file-name
1788       (not along-with-file)
1789       (set-buffer-modified-p t))
1790   ;; Update the major mode, if the file name determines it.
1791   (condition-case nil
1792       ;; Don't change the mode if it is special.
1793       (or (not change-major-mode-with-file-name)
1794           (get major-mode 'mode-class)
1795           ;; Don't change the mode if the local variable list specifies it.
1796           (hack-local-variables t)
1797           (set-auto-mode t))
1798     (error nil))
1799   ;; #### ??
1800   (run-hooks 'after-set-visited-file-name-hooks))
1801
1802 (defun write-file (filename &optional confirm codesys)
1803   "Write current buffer into file FILENAME.
1804 Makes buffer visit that file, and marks it not modified.
1805 If the buffer is already visiting a file, you can specify
1806 a directory name as FILENAME, to write a file of the same
1807 old name in that directory.
1808 If optional second arg CONFIRM is non-nil,
1809 ask for confirmation for overwriting an existing file.
1810 Under XEmacs/Mule, optional third argument specifies the
1811 coding system to use when encoding the file.  Interactively,
1812 with a prefix argument, you will be prompted for the coding system."
1813 ;;  (interactive "FWrite file: ")
1814   (interactive
1815    (list (if buffer-file-name
1816              (read-file-name "Write file: "
1817                                  nil nil nil nil)
1818            (read-file-name "Write file: "
1819                                (cdr (assq 'default-directory
1820                                           (buffer-local-variables)))
1821                                nil nil (buffer-name)))
1822          t
1823          (if (and current-prefix-arg (featurep 'mule))
1824              (read-coding-system "Coding system: "))))
1825   (and (eq (current-buffer) mouse-grabbed-buffer)
1826        (error "Can't write minibuffer window"))
1827   (or (null filename) (string-equal filename "")
1828       (progn
1829         ;; If arg is just a directory,
1830         ;; use same file name, but in that directory.
1831         (if (and (file-directory-p filename) buffer-file-name)
1832             (setq filename (concat (file-name-as-directory filename)
1833                                    (file-name-nondirectory buffer-file-name))))
1834         (and confirm
1835              (file-exists-p filename)
1836              (or (y-or-n-p (format "File `%s' exists; overwrite? " filename))
1837                  (error "Canceled")))
1838         (set-visited-file-name filename)))
1839   (set-buffer-modified-p t)
1840   (setq buffer-read-only nil)
1841   (if codesys
1842       (let ((buffer-file-coding-system (get-coding-system codesys)))
1843         (save-buffer))
1844     (save-buffer)))
1845 \f
1846 (defun backup-buffer ()
1847   "Make a backup of the disk file visited by the current buffer, if appropriate.
1848 This is normally done before saving the buffer the first time.
1849 If the value is non-nil, it is the result of `file-modes' on the original file;
1850 this means that the caller, after saving the buffer, should change the modes
1851 of the new file to agree with the old modes."
1852   (if buffer-file-name
1853       (let ((handler (find-file-name-handler buffer-file-name 'backup-buffer)))
1854         (if handler
1855             (funcall handler 'backup-buffer)
1856           (if (and make-backup-files
1857                    (not backup-inhibited)
1858                    (not buffer-backed-up)
1859                    (file-exists-p buffer-file-name)
1860                    (memq (aref (elt (file-attributes buffer-file-name) 8) 0)
1861                          '(?- ?l)))
1862               (let ((real-file-name buffer-file-name)
1863                     backup-info backupname targets setmodes)
1864                 ;; If specified name is a symbolic link, chase it to the target.
1865                 ;; Thus we make the backups in the directory where the real file is.
1866                 (setq real-file-name (file-chase-links real-file-name))
1867                 (setq backup-info (find-backup-file-name real-file-name)
1868                       backupname (car backup-info)
1869                       targets (cdr backup-info))
1870 ;;;     (if (file-directory-p buffer-file-name)
1871 ;;;         (error "Cannot save buffer in directory %s" buffer-file-name))
1872                 (if backup-info
1873                     (condition-case ()
1874                         (let ((delete-old-versions
1875                                ;; If have old versions to maybe delete,
1876                                ;; ask the user to confirm now, before doing anything.
1877                                ;; But don't actually delete til later.
1878                                (and targets
1879                                     (or (eq delete-old-versions t)
1880                                         (eq delete-old-versions nil))
1881                                     (or delete-old-versions
1882                                         (y-or-n-p (format "Delete excess backup versions of %s? "
1883                                                           real-file-name))))))
1884                           ;; Actually write the back up file.
1885                           (condition-case ()
1886                               (if (or file-precious-flag
1887                                         ;                         (file-symlink-p buffer-file-name)
1888                                       backup-by-copying
1889                                       (and backup-by-copying-when-linked
1890                                            (> (file-nlinks real-file-name) 1))
1891                                       (and backup-by-copying-when-mismatch
1892                                            (let ((attr (file-attributes real-file-name)))
1893                                              (or (nth 9 attr)
1894                                                  (not (file-ownership-preserved-p real-file-name))))))
1895                                   (condition-case ()
1896                                       (copy-file real-file-name backupname t t)
1897                                     (file-error
1898                                      ;; If copying fails because file BACKUPNAME
1899                                      ;; is not writable, delete that file and try again.
1900                                      (if (and (file-exists-p backupname)
1901                                               (not (file-writable-p backupname)))
1902                                          (delete-file backupname))
1903                                      (copy-file real-file-name backupname t t)))
1904                                 ;; rename-file should delete old backup.
1905                                 (rename-file real-file-name backupname t)
1906                                 (setq setmodes (file-modes backupname)))
1907                             (file-error
1908                              ;; If trouble writing the backup, write it in ~.
1909                              (setq backupname (expand-file-name "~/%backup%~"))
1910                              (message "Cannot write backup file; backing up in ~/%%backup%%~")
1911                              (sleep-for 1)
1912                              (condition-case ()
1913                                  (copy-file real-file-name backupname t t)
1914                                (file-error
1915                                 ;; If copying fails because file BACKUPNAME
1916                                 ;; is not writable, delete that file and try again.
1917                                 (if (and (file-exists-p backupname)
1918                                          (not (file-writable-p backupname)))
1919                                     (delete-file backupname))
1920                                 (copy-file real-file-name backupname t t)))))
1921                           (setq buffer-backed-up t)
1922                           ;; Now delete the old versions, if desired.
1923                           (if delete-old-versions
1924                               (while targets
1925                                 (ignore-file-errors (delete-file (car targets)))
1926                                 (setq targets (cdr targets))))
1927                           setmodes)
1928                       (file-error nil)))))))))
1929
1930 (defun file-name-sans-versions (name &optional keep-backup-version)
1931   "Return FILENAME sans backup versions or strings.
1932 This is a separate procedure so your site-init or startup file can
1933 redefine it.
1934 If the optional argument KEEP-BACKUP-VERSION is non-nil,
1935 we do not remove backup version numbers, only true file version numbers."
1936   (let ((handler (find-file-name-handler name 'file-name-sans-versions)))
1937     (if handler
1938         (funcall handler 'file-name-sans-versions name keep-backup-version)
1939       (substring name 0
1940                  (if keep-backup-version
1941                      (length name)
1942                    (or (string-match "\\.~[0-9.]+~\\'" name)
1943                        ;; XEmacs - VC uses extensions like ".~tagname~" or ".~1.1.5.2~"
1944                        (let ((pos (string-match "\\.~\\([^.~ \t]+\\|[0-9.]+\\)~\\'" name)))
1945                          (and pos
1946                               ;; #### - is this filesystem check too paranoid?
1947                               (file-exists-p (substring name 0 pos))
1948                               pos))
1949                        (string-match "~\\'" name)
1950                        (length name)))))))
1951
1952 (defun file-ownership-preserved-p (file)
1953   "Return t if deleting FILE and rewriting it would preserve the owner."
1954   (let ((handler (find-file-name-handler file 'file-ownership-preserved-p)))
1955     (if handler
1956         (funcall handler 'file-ownership-preserved-p file)
1957       (let ((attributes (file-attributes file)))
1958         ;; Return t if the file doesn't exist, since it's true that no
1959         ;; information would be lost by an (attempted) delete and create.
1960         (or (null attributes)
1961             (= (nth 2 attributes) (user-uid)))))))
1962
1963 (defun file-name-sans-extension (filename)
1964   "Return FILENAME sans final \"extension\".
1965 The extension, in a file name, is the part that follows the last `.'."
1966   (save-match-data
1967     (let ((file (file-name-sans-versions (file-name-nondirectory filename)))
1968           directory)
1969       (if (string-match "\\.[^.]*\\'" file)
1970           (if (setq directory (file-name-directory filename))
1971               (expand-file-name (substring file 0 (match-beginning 0))
1972                                 directory)
1973             (substring file 0 (match-beginning 0)))
1974         filename))))
1975
1976 (defun file-name-extension (filename &optional period)
1977   "Return FILENAME's final \"extension\".
1978 The extension, in a file name, is the part that follows the last `.'.
1979 Return nil for extensionless file names such as `foo'.
1980 Return the empty string for file names such as `foo.'.
1981
1982 If PERIOD is non-nil, then the returned value includes the period
1983 that delimits the extension, and if FILENAME has no extension,
1984 the value is \"\"."
1985   (save-match-data
1986     (let ((file (file-name-sans-versions (file-name-nondirectory filename))))
1987       (if (string-match "\\.[^.]*\\'" file)
1988           (substring file (+ (match-beginning 0) (if period 0 1)))
1989         (if period
1990             "")))))
1991
1992 (defun make-backup-file-name (file)
1993   "Create the non-numeric backup file name for FILE.
1994 This is a separate function so you can redefine it for customization."
1995   (if (eq system-type 'ms-dos)
1996       (let ((fn (file-name-nondirectory file)))
1997         (concat (file-name-directory file)
1998                 (if (string-match "\\([^.]*\\)\\(\\..*\\)?" fn)
1999                     (substring fn 0 (match-end 1)))
2000                 ".bak"))
2001     (concat file "~")))
2002
2003 (defun backup-file-name-p (file)
2004   "Return non-nil if FILE is a backup file name (numeric or not).
2005 This is a separate function so you can redefine it for customization.
2006 You may need to redefine `file-name-sans-versions' as well."
2007   (if (eq system-type 'ms-dos)
2008       (string-match "\\.bak\\'" file)
2009       (string-match "~\\'" file)))
2010
2011 ;; This is used in various files.
2012 ;; The usage of bv-length is not very clean,
2013 ;; but I can't see a good alternative,
2014 ;; so as of now I am leaving it alone.
2015 (defun backup-extract-version (fn)
2016   "Given the name of a numeric backup file, return the backup number.
2017 Uses the free variable `bv-length', whose value should be
2018 the index in the name where the version number begins."
2019   (declare (special bv-length))
2020   (if (and (string-match "[0-9]+~\\'" fn bv-length)
2021            (= (match-beginning 0) bv-length))
2022       (string-to-int (substring fn bv-length -1))
2023       0))
2024
2025 (defun find-backup-file-name (fn)
2026   "Find a file name for a backup file, and suggestions for deletions.
2027 Value is a list whose car is the name for the backup file
2028  and whose cdr is a list of old versions to consider deleting now.
2029 If the value is nil, don't make a backup."
2030   (let ((handler (find-file-name-handler fn 'find-backup-file-name)))
2031     ;; Run a handler for this function so that ange-ftp can refuse to do it.
2032     (if handler
2033         (funcall handler 'find-backup-file-name fn)
2034       (if (eq version-control 'never)
2035           (list (make-backup-file-name fn))
2036         (let* ((base-versions (concat (file-name-nondirectory fn) ".~"))
2037                ;; used by backup-extract-version:
2038                (bv-length (length base-versions))
2039                possibilities
2040                (versions nil)
2041                (high-water-mark 0)
2042                (deserve-versions-p nil)
2043                (number-to-delete 0))
2044           (condition-case ()
2045               (setq possibilities (file-name-all-completions
2046                                    base-versions
2047                                    (file-name-directory fn))
2048                     versions (sort (mapcar
2049                                     #'backup-extract-version
2050                                     possibilities)
2051                                    '<)
2052                     high-water-mark (apply #'max 0 versions)
2053                     deserve-versions-p (or version-control
2054                                            (> high-water-mark 0))
2055                     number-to-delete (- (length versions)
2056                                         kept-old-versions kept-new-versions -1))
2057             (file-error
2058              (setq possibilities nil)))
2059           (if (not deserve-versions-p)
2060               (list (make-backup-file-name fn))
2061             (cons (concat fn ".~" (int-to-string (1+ high-water-mark)) "~")
2062                   (if (and (> number-to-delete 0)
2063                            ;; Delete nothing if there is overflow
2064                            ;; in the number of versions to keep.
2065                            (>= (+ kept-new-versions kept-old-versions -1) 0))
2066                       (mapcar #'(lambda (n)
2067                                   (concat fn ".~" (int-to-string n) "~"))
2068                               (let ((v (nthcdr kept-old-versions versions)))
2069                                 (rplacd (nthcdr (1- number-to-delete) v) ())
2070                                 v))))))))))
2071
2072 (defun file-nlinks (filename)
2073   "Return number of names file FILENAME has."
2074   (car (cdr (file-attributes filename))))
2075
2076 (defun file-relative-name (filename &optional directory)
2077   "Convert FILENAME to be relative to DIRECTORY (default: default-directory).
2078 This function returns a relative file name which is equivalent to FILENAME
2079 when used with that default directory as the default.
2080 If this is impossible (which can happen on MSDOS and Windows
2081 when the file name and directory use different drive names)
2082 then it returns FILENAME."
2083   (save-match-data
2084     (let ((fname (expand-file-name filename)))
2085       (setq directory (file-name-as-directory
2086                        (expand-file-name (or directory default-directory))))
2087       ;; On Microsoft OSes, if FILENAME and DIRECTORY have different
2088       ;; drive names, they can't be relative, so return the absolute name.
2089       (if (and (memq system-type '(ms-dos windows-nt))
2090                (not (string-equal (substring fname  0 2)
2091                                   (substring directory 0 2))))
2092           filename
2093         (let ((ancestor ".")
2094               (fname-dir (file-name-as-directory fname)))
2095           (while (and (not (string-match (concat "^" (regexp-quote directory))
2096                                          fname-dir))
2097                       (not (string-match (concat "^" (regexp-quote directory)) fname)))
2098             (setq directory (file-name-directory (substring directory 0 -1))
2099                   ancestor (if (equal ancestor ".")
2100                                ".."
2101                              (concat "../" ancestor))))
2102           ;; Now ancestor is empty, or .., or ../.., etc.
2103           (if (string-match (concat "^" (regexp-quote directory)) fname)
2104               ;; We matched within FNAME's directory part.
2105               ;; Add the rest of FNAME onto ANCESTOR.
2106               (let ((rest (substring fname (match-end 0))))
2107                 (if (and (equal ancestor ".")
2108                          (not (equal rest "")))
2109                     ;; But don't bother with ANCESTOR if it would give us `./'.
2110                     rest
2111                   (concat (file-name-as-directory ancestor) rest)))
2112             ;; We matched FNAME's directory equivalent.
2113             ancestor))))))
2114 \f
2115 (defun save-buffer (&optional args)
2116   "Save current buffer in visited file if modified.  Versions described below.
2117
2118 By default, makes the previous version into a backup file
2119  if previously requested or if this is the first save.
2120 With 1 or 3 \\[universal-argument]'s, marks this version
2121  to become a backup when the next save is done.
2122 With 2 or 3 \\[universal-argument]'s,
2123  unconditionally makes the previous version into a backup file.
2124 With argument of 0, never makes the previous version into a backup file.
2125
2126 If a file's name is FOO, the names of its numbered backup versions are
2127  FOO.~i~ for various integers i.  A non-numbered backup file is called FOO~.
2128 Numeric backups (rather than FOO~) will be made if value of
2129  `version-control' is not the atom `never' and either there are already
2130  numeric versions of the file being backed up, or `version-control' is
2131  non-nil.
2132 We don't want excessive versions piling up, so there are variables
2133  `kept-old-versions', which tells XEmacs how many oldest versions to keep,
2134  and `kept-new-versions', which tells how many newest versions to keep.
2135  Defaults are 2 old versions and 2 new.
2136 `dired-kept-versions' controls dired's clean-directory (.) command.
2137 If `delete-old-versions' is nil, system will query user
2138  before trimming versions.  Otherwise it does it silently."
2139   (interactive "_p")
2140   (let ((modp (buffer-modified-p))
2141         (large (> (buffer-size) 50000))
2142         (make-backup-files (or (and make-backup-files (not (eq args 0)))
2143                                (memq args '(16 64)))))
2144     (and modp (memq args '(16 64)) (setq buffer-backed-up nil))
2145     (if (and modp large) (display-message
2146                           'progress (format "Saving file %s..."
2147                                             (buffer-file-name))))
2148     (basic-save-buffer)
2149     (and modp (memq args '(4 64)) (setq buffer-backed-up nil))))
2150
2151 (defun delete-auto-save-file-if-necessary (&optional force)
2152   "Delete auto-save file for current buffer if `delete-auto-save-files' is t.
2153 Normally delete only if the file was written by this XEmacs
2154 since the last real save, but optional arg FORCE non-nil means delete anyway."
2155   (and buffer-auto-save-file-name delete-auto-save-files
2156        (not (string= buffer-file-name buffer-auto-save-file-name))
2157        (or force (recent-auto-save-p))
2158        (progn
2159          (ignore-file-errors (delete-file buffer-auto-save-file-name))
2160          (set-buffer-auto-saved))))
2161
2162 ;; XEmacs change (from Sun)
2163 ;; used to communicate with continue-save-buffer:
2164 (defvar continue-save-buffer-hooks-tail nil)
2165
2166 ;; Not in FSFmacs
2167 (defun basic-write-file-data (realname truename)
2168   ;; call the hooks until the bytes are put
2169   ;; call write-region as a last resort
2170   (let ((region-written nil)
2171         (hooks write-file-data-hooks))
2172     (while (and hooks (not region-written))
2173       (setq region-written (funcall (car hooks) realname)
2174             hooks (cdr hooks)))
2175     (if (not region-written)
2176         (write-region (point-min) (point-max) realname nil t truename))))
2177
2178 (put 'after-save-hook 'permanent-local t)
2179 (defvar after-save-hook nil
2180   "Normal hook that is run after a buffer is saved to its file.
2181 These hooks are considered to pertain to the visited file.
2182 So this list is cleared if you change the visited file name.")
2183
2184 (defun files-fetch-hook-value (hook)
2185   (let ((localval (symbol-value hook))
2186         (globalval (default-value hook)))
2187     (if (memq t localval)
2188         (setq localval (append (delq t localval) (delq t globalval))))
2189     localval))
2190
2191 (defun basic-save-buffer ()
2192   "Save the current buffer in its visited file, if it has been modified.
2193 After saving the buffer, run `after-save-hook'."
2194   (interactive)
2195   (save-excursion
2196     ;; In an indirect buffer, save its base buffer instead.
2197     (if (buffer-base-buffer)
2198         (set-buffer (buffer-base-buffer)))
2199     (if (buffer-modified-p)
2200         (let ((recent-save (recent-auto-save-p)))
2201           ;; If buffer has no file name, ask user for one.
2202           (or buffer-file-name
2203               (let ((filename
2204                      (expand-file-name
2205                       (read-file-name "File to save in: ") nil)))
2206                 (and (file-exists-p filename)
2207                      (or (y-or-n-p (format "File `%s' exists; overwrite? "
2208                                            filename))
2209                          (error "Canceled")))
2210                 (set-visited-file-name filename)))
2211           (or (verify-visited-file-modtime (current-buffer))
2212               (not (file-exists-p buffer-file-name))
2213               (yes-or-no-p
2214                (format "%s has changed since visited or saved.  Save anyway? "
2215                        (file-name-nondirectory buffer-file-name)))
2216               (error "Save not confirmed"))
2217           (save-restriction
2218             (widen)
2219
2220             ;; Add final newline if required.  See `require-final-newline'.
2221             (when (and (not (eq (char-before (point-max)) ?\n)) ; common case
2222                        (char-before (point-max))                ; empty buffer?
2223                        (not (and (eq selective-display t)
2224                                  (eq (char-before (point-max)) ?\r)))
2225                        (or (eq require-final-newline t)
2226                            (and require-final-newline
2227                                 (y-or-n-p
2228                                  (format "Buffer %s does not end in newline.  Add one? "
2229                                          (buffer-name))))))
2230               (save-excursion
2231                 (goto-char (point-max))
2232                 (insert ?\n)))
2233
2234             ;; Run the write-file-hooks until one returns non-null.
2235             ;; Bind after-save-hook to nil while running the
2236             ;; write-file-hooks so that if this function is called
2237             ;; recursively (from inside a write-file-hook) the
2238             ;; after-hooks will only get run once (from the
2239             ;; outermost call).
2240             ;;
2241             ;; Ugh, have to duplicate logic of run-hook-with-args-until-success
2242             (let ((hooks (append (files-fetch-hook-value 'write-contents-hooks)
2243                                  (files-fetch-hook-value
2244                                   'local-write-file-hooks)
2245                                  (files-fetch-hook-value 'write-file-hooks)))
2246                   (after-save-hook nil)
2247                   (local-write-file-hooks nil)
2248                   (write-contents-hooks nil)
2249                   (write-file-hooks nil)
2250                   done)
2251               (while (and hooks
2252                           (let ((continue-save-buffer-hooks-tail hooks))
2253                             (not (setq done (funcall (car hooks))))))
2254                 (setq hooks (cdr hooks)))
2255               ;; If a hook returned t, file is already "written".
2256               ;; Otherwise, write it the usual way now.
2257               (if (not done)
2258                   (basic-save-buffer-1)))
2259             ;; XEmacs: next two clauses (buffer-file-number setting and
2260             ;; set-file-modes) moved into basic-save-buffer-1.
2261             )
2262           ;; If the auto-save file was recent before this command,
2263           ;; delete it now.
2264           (delete-auto-save-file-if-necessary recent-save)
2265           ;; Support VC `implicit' locking.
2266           (when (fboundp 'vc-after-save)
2267             (vc-after-save))
2268           (run-hooks 'after-save-hook))
2269       (display-message 'no-log "(No changes need to be saved)"))))
2270
2271 ;; This does the "real job" of writing a buffer into its visited file
2272 ;; and making a backup file.  This is what is normally done
2273 ;; but inhibited if one of write-file-hooks returns non-nil.
2274 ;; It returns a value to store in setmodes.
2275 (defun basic-save-buffer-1 ()
2276   (let (setmodes tempsetmodes)
2277     (if (not (file-writable-p buffer-file-name))
2278         (let ((dir (file-name-directory buffer-file-name)))
2279           (if (not (file-directory-p dir))
2280               (error "%s is not a directory" dir)
2281             (if (not (file-exists-p buffer-file-name))
2282                 (error "Directory %s write-protected" dir)
2283               (if (yes-or-no-p
2284                    (format "File %s is write-protected; try to save anyway? "
2285                            (file-name-nondirectory
2286                             buffer-file-name)))
2287                   (setq tempsetmodes t)
2288                 (error
2289                  "Attempt to save to a file which you aren't allowed to write"))))))
2290     (or buffer-backed-up
2291         (setq setmodes (backup-buffer)))
2292     (let ((dir (file-name-directory buffer-file-name)))
2293       (if (and file-precious-flag
2294                (file-writable-p dir))
2295           ;; If file is precious, write temp name, then rename it.
2296           ;; This requires write access to the containing dir,
2297           ;; which is why we don't try it if we don't have that access.
2298           (let ((realname buffer-file-name)
2299                 tempname nogood i succeed
2300                 (old-modtime (visited-file-modtime)))
2301             (setq i 0)
2302             (setq nogood t)
2303             ;; Find the temporary name to write under.
2304             (while nogood
2305               (setq tempname (format "%s#tmp#%d" dir i))
2306               (setq nogood (file-exists-p tempname))
2307               (setq i (1+ i)))
2308             (unwind-protect
2309                 (progn (clear-visited-file-modtime)
2310                        (write-region (point-min) (point-max)
2311                                      tempname nil realname
2312                                      buffer-file-truename)
2313                        (setq succeed t))
2314               ;; If writing the temp file fails,
2315               ;; delete the temp file.
2316               (or succeed
2317                   (progn
2318                     (delete-file tempname)
2319                     (set-visited-file-modtime old-modtime))))
2320             ;; Since we have created an entirely new file
2321             ;; and renamed it, make sure it gets the
2322             ;; right permission bits set.
2323             (setq setmodes (file-modes buffer-file-name))
2324             ;; We succeeded in writing the temp file,
2325             ;; so rename it.
2326             (rename-file tempname buffer-file-name t))
2327         ;; If file not writable, see if we can make it writable
2328         ;; temporarily while we write it.
2329         ;; But no need to do so if we have just backed it up
2330         ;; (setmodes is set) because that says we're superseding.
2331         (cond ((and tempsetmodes (not setmodes))
2332                ;; Change the mode back, after writing.
2333                (setq setmodes (file-modes buffer-file-name))
2334                (set-file-modes buffer-file-name 511)))
2335         (basic-write-file-data buffer-file-name buffer-file-truename)))
2336     (setq buffer-file-number
2337           (if buffer-file-name
2338               (nth 10 (file-attributes buffer-file-name))
2339             nil))
2340     (if setmodes
2341         (condition-case ()
2342             (set-file-modes buffer-file-name setmodes)
2343           (error nil)))))
2344
2345 ;; XEmacs change, from Sun
2346 (defun continue-save-buffer ()
2347   "Provide a clean way for a write-file-hook to wrap AROUND
2348 the execution of the remaining hooks and writing to disk.
2349 Do not call this function except from a functions
2350 on the write-file-hooks or write-contents-hooks list.
2351 A hook that calls this function must return non-nil,
2352 to signal completion to its caller.  continue-save-buffer
2353 always returns non-nil."
2354   (let ((hooks (cdr (or continue-save-buffer-hooks-tail
2355                         (error
2356          "continue-save-buffer called outside a write-file-hook!"))))
2357         (done nil))
2358     ;; Do something like this:
2359     ;; (let ((write-file-hooks hooks)) (basic-save-buffer))
2360     ;; First run the rest of the hooks.
2361     (while (and hooks
2362                 (let ((continue-save-buffer-hooks-tail hooks))
2363                   (not (setq done (funcall (car hooks))))))
2364       (setq hooks (cdr hooks)))
2365     ;;
2366     ;; If a hook returned t, file is already "written".
2367     (if (not done)
2368         (basic-save-buffer-1))
2369     'continue-save-buffer))
2370
2371 (defcustom save-some-buffers-query-display-buffer t
2372   "*Non-nil makes `\\[save-some-buffers]' switch to the buffer offered for saving."
2373   :type 'boolean
2374   :group 'editing-basics)
2375
2376 (defun save-some-buffers (&optional arg exiting)
2377   "Save some modified file-visiting buffers.  Asks user about each one.
2378 Optional argument (the prefix) non-nil means save all with no questions.
2379 Optional second argument EXITING means ask about certain non-file buffers
2380  as well as about file buffers."
2381   (interactive "P")
2382   (save-excursion
2383     ;; `delete-other-windows' can bomb during autoloads generation, so
2384     ;; guard it well.
2385     (if (or noninteractive
2386             (eq (selected-window) (minibuffer-window))
2387             (not save-some-buffers-query-display-buffer))
2388         ;; If playing with windows is unsafe or undesired, just do the
2389         ;; usual drill.
2390         (save-some-buffers-1 arg exiting nil)
2391       ;; Else, protect the windows.
2392       (when (save-window-excursion
2393               (save-some-buffers-1 arg exiting t))
2394         ;; Force redisplay.
2395         (sit-for 0)))))
2396
2397 ;; XEmacs - do not use queried flag
2398 (defun save-some-buffers-1 (arg exiting switch-buffer)
2399   (let* ((switched nil)
2400          (files-done
2401           (map-y-or-n-p
2402            (lambda (buffer)
2403              (and (buffer-modified-p buffer)
2404                   (not (buffer-base-buffer buffer))
2405                   ;; XEmacs addition:
2406                   (not (symbol-value-in-buffer 'save-buffers-skip buffer))
2407                   (or
2408                    (buffer-file-name buffer)
2409                    (and exiting
2410                         (progn
2411                           (set-buffer buffer)
2412                           (and buffer-offer-save (> (buffer-size) 0)))))
2413                   (if arg
2414                       t
2415                     ;; #### We should provide a per-buffer means to
2416                     ;; disable the switching.  For instance, you might
2417                     ;; want to turn it off for buffers the contents of
2418                     ;; which is meaningless to humans, such as
2419                     ;; `.newsrc.eld'.
2420                     (when switch-buffer
2421                       (unless (one-window-p)
2422                         (delete-other-windows))
2423                       (setq switched t)
2424                       ;; #### Consider using `display-buffer' here for 21.1!
2425                       ;;(display-buffer buffer nil (selected-frame)))
2426                       (switch-to-buffer buffer t))
2427                     (if (buffer-file-name buffer)
2428                         (format "Save file %s? "
2429                                 (buffer-file-name buffer))
2430                       (format "Save buffer %s? "
2431                               (buffer-name buffer))))))
2432            (lambda (buffer)
2433              (set-buffer buffer)
2434              (condition-case ()
2435                  (save-buffer)
2436                (error nil)))
2437            (buffer-list)
2438            '("buffer" "buffers" "save")
2439            ;;instead of this we just say "yes all", "no all", etc.
2440            ;;"save all the rest"
2441            ;;"save only this buffer" "save no more buffers")
2442            ;; this is rather bogus. --ben
2443            ;; (it makes the dialog box too big, and you get an error
2444            ;; "wrong type argument: framep, nil" when you hit q after
2445            ;; choosing the option from the dialog box)
2446
2447            ;; We should fix the dialog box rather than disabling
2448            ;; this!  --hniksic
2449            (list (list ?\C-r (lambda (buf)
2450                                ;; #### FSF has an EXIT-ACTION argument
2451                                ;; to `view-buffer'.
2452                                (view-buffer buf)
2453                                (setq view-exit-action
2454                                      (lambda (ignore)
2455                                        (exit-recursive-edit)))
2456                                (recursive-edit)
2457                                ;; Return nil to ask about BUF again.
2458                                nil)
2459                        "display the current buffer"))))
2460          (abbrevs-done
2461           (and save-abbrevs abbrevs-changed
2462                (progn
2463                  (if (or arg
2464                          (y-or-n-p (format "Save abbrevs in %s? " abbrev-file-name)))
2465                      (write-abbrev-file nil))
2466                  ;; Don't keep bothering user if he says no.
2467                  (setq abbrevs-changed nil)
2468                  t))))
2469     (or (> files-done 0) abbrevs-done
2470         (display-message 'no-log "(No files need saving)"))
2471     switched))
2472
2473 \f
2474 (defun not-modified (&optional arg)
2475   "Mark current buffer as unmodified, not needing to be saved.
2476 With prefix arg, mark buffer as modified, so \\[save-buffer] will save.
2477
2478 It is not a good idea to use this function in Lisp programs, because it
2479 prints a message in the minibuffer.  Instead, use `set-buffer-modified-p'."
2480   (interactive "_P")
2481   (if arg ;; rewritten for I18N3 snarfing
2482       (display-message 'command "Modification-flag set")
2483     (display-message 'command "Modification-flag cleared"))
2484   (set-buffer-modified-p arg))
2485
2486 (defun toggle-read-only (&optional arg)
2487   "Toggle the current buffer's read-only status.
2488 With arg, set read-only iff arg is positive."
2489   (interactive "_P")
2490   (setq buffer-read-only
2491         (if (null arg)
2492             (not buffer-read-only)
2493             (> (prefix-numeric-value arg) 0)))
2494   ;; Force modeline redisplay
2495   (redraw-modeline))
2496
2497 (defun insert-file (filename &optional codesys)
2498   "Insert contents of file FILENAME into buffer after point.
2499 Set mark after the inserted text.
2500
2501 Under XEmacs/Mule, optional second argument specifies the
2502 coding system to use when decoding the file.  Interactively,
2503 with a prefix argument, you will be prompted for the coding system.
2504
2505 This function is meant for the user to run interactively.
2506 Don't call it from programs!  Use `insert-file-contents' instead.
2507 \(Its calling sequence is different; see its documentation)."
2508   (interactive "*fInsert file: \nZCoding system: ")
2509   (if (file-directory-p filename)
2510       (signal 'file-error (list "Opening input file" "file is a directory"
2511                                 filename)))
2512   (let ((tem
2513          (if codesys
2514              (let ((coding-system-for-read
2515                     (get-coding-system codesys)))
2516                (insert-file-contents filename))
2517            (insert-file-contents filename))))
2518     (push-mark (+ (point) (car (cdr tem))))))
2519
2520 (defun append-to-file (start end filename &optional codesys)
2521   "Append the contents of the region to the end of file FILENAME.
2522 When called from a function, expects three arguments,
2523 START, END and FILENAME.  START and END are buffer positions
2524 saying what text to write.
2525 Under XEmacs/Mule, optional fourth argument specifies the
2526 coding system to use when encoding the file.  Interactively,
2527 with a prefix argument, you will be prompted for the coding system."
2528   (interactive "r\nFAppend to file: \nZCoding system: ")
2529   (if codesys
2530       (let ((buffer-file-coding-system (get-coding-system codesys)))
2531         (write-region start end filename t))
2532     (write-region start end filename t)))
2533
2534 (defun file-newest-backup (filename)
2535   "Return most recent backup file for FILENAME or nil if no backups exist."
2536   (let* ((filename (expand-file-name filename))
2537          (file (file-name-nondirectory filename))
2538          (dir  (file-name-directory    filename))
2539          (comp (file-name-all-completions file dir))
2540          newest)
2541     (while comp
2542       (setq file (concat dir (car comp))
2543             comp (cdr comp))
2544       (if (and (backup-file-name-p file)
2545                (or (null newest) (file-newer-than-file-p file newest)))
2546           (setq newest file)))
2547     newest))
2548
2549 (defun rename-uniquely ()
2550   "Rename current buffer to a similar name not already taken.
2551 This function is useful for creating multiple shell process buffers
2552 or multiple mail buffers, etc."
2553   (interactive)
2554   (save-match-data
2555     (let* ((base-name (if (and (string-match "<[0-9]+>\\'" (buffer-name))
2556                                (not (and buffer-file-name
2557                                          (string= (buffer-name)
2558                                                   (file-name-nondirectory
2559                                                    buffer-file-name)))))
2560                           ;; If the existing buffer name has a <NNN>,
2561                           ;; which isn't part of the file name (if any),
2562                           ;; then get rid of that.
2563                           (substring (buffer-name) 0 (match-beginning 0))
2564                         (buffer-name)))
2565            (new-buf (generate-new-buffer base-name))
2566            (name (buffer-name new-buf)))
2567       (kill-buffer new-buf)
2568       (rename-buffer name)
2569       (redraw-modeline))))
2570
2571 (defun make-directory-path (path)
2572   "Create all the directories along path that don't exist yet."
2573   (interactive "Fdirectory path to create: ")
2574   (make-directory path t))
2575
2576 (defun make-directory (dir &optional parents)
2577   "Create the directory DIR and any nonexistent parent dirs.
2578 Interactively, the default choice of directory to create
2579 is the current default directory for file names.
2580 That is useful when you have visited a file in a nonexistent directory.
2581
2582 Noninteractively, the second (optional) argument PARENTS says whether
2583 to create parent directories if they don't exist."
2584   (interactive (list (let ((current-prefix-arg current-prefix-arg))
2585                        (read-directory-name "Create directory: "))
2586                      current-prefix-arg))
2587   (let ((handler (find-file-name-handler dir 'make-directory)))
2588     (if handler
2589         (funcall handler 'make-directory dir parents)
2590       (if (not parents)
2591           (make-directory-internal dir)
2592         (let ((dir (directory-file-name (expand-file-name dir)))
2593               create-list)
2594           (while (not (file-exists-p dir))
2595             (setq create-list (cons dir create-list)
2596                   dir (directory-file-name (file-name-directory dir))))
2597           (while create-list
2598             (make-directory-internal (car create-list))
2599             (setq create-list (cdr create-list))))))))
2600 \f
2601 (put 'revert-buffer-function 'permanent-local t)
2602 (defvar revert-buffer-function nil
2603   "Function to use to revert this buffer, or nil to do the default.
2604 The function receives two arguments IGNORE-AUTO and NOCONFIRM,
2605 which are the arguments that `revert-buffer' received.")
2606
2607 (put 'revert-buffer-insert-file-contents-function 'permanent-local t)
2608 (defvar revert-buffer-insert-file-contents-function nil
2609   "Function to use to insert contents when reverting this buffer.
2610 Gets two args, first the nominal file name to use,
2611 and second, t if reading the auto-save file.")
2612
2613 (defvar before-revert-hook nil
2614   "Normal hook for `revert-buffer' to run before reverting.
2615 If `revert-buffer-function' is used to override the normal revert
2616 mechanism, this hook is not used.")
2617
2618 (defvar after-revert-hook nil
2619   "Normal hook for `revert-buffer' to run after reverting.
2620 Note that the hook value that it runs is the value that was in effect
2621 before reverting; that makes a difference if you have buffer-local
2622 hook functions.
2623
2624 If `revert-buffer-function' is used to override the normal revert
2625 mechanism, this hook is not used.")
2626
2627 (defvar revert-buffer-internal-hook nil
2628   "Don't use this.")
2629
2630 (defun revert-buffer (&optional ignore-auto noconfirm preserve-modes)
2631   "Replace the buffer text with the text of the visited file on disk.
2632 This undoes all changes since the file was visited or saved.
2633 With a prefix argument, offer to revert from latest auto-save file, if
2634 that is more recent than the visited file.
2635
2636 This command also works for special buffers that contain text which
2637 doesn't come from a file, but reflects some other data base instead:
2638 for example, Dired buffers and buffer-list buffers.  In these cases,
2639 it reconstructs the buffer contents from the appropriate data base.
2640
2641 When called from Lisp, the first argument is IGNORE-AUTO; only offer
2642 to revert from the auto-save file when this is nil.  Note that the
2643 sense of this argument is the reverse of the prefix argument, for the
2644 sake of backward compatibility.  IGNORE-AUTO is optional, defaulting
2645 to nil.
2646
2647 Optional second argument NOCONFIRM means don't ask for confirmation at
2648 all.
2649
2650 Optional third argument PRESERVE-MODES non-nil means don't alter
2651 the files modes.  Normally we reinitialize them using `normal-mode'.
2652
2653 If the value of `revert-buffer-function' is non-nil, it is called to
2654 do all the work for this command.  Otherwise, the hooks
2655 `before-revert-hook' and `after-revert-hook' are run at the beginning
2656 and the end, and if `revert-buffer-insert-file-contents-function' is
2657 non-nil, it is called instead of rereading visited file contents."
2658
2659   ;; I admit it's odd to reverse the sense of the prefix argument, but
2660   ;; there is a lot of code out there which assumes that the first
2661   ;; argument should be t to avoid consulting the auto-save file, and
2662   ;; there's no straightforward way to encourage authors to notice a
2663   ;; reversal of the argument sense.  So I'm just changing the user
2664   ;; interface, but leaving the programmatic interface the same.
2665   (interactive (list (not current-prefix-arg)))
2666   (if revert-buffer-function
2667       (funcall revert-buffer-function ignore-auto noconfirm)
2668     (let* ((opoint (point))
2669            (auto-save-p (and (not ignore-auto)
2670                              (recent-auto-save-p)
2671                              buffer-auto-save-file-name
2672                              (file-readable-p buffer-auto-save-file-name)
2673                              (y-or-n-p
2674    "Buffer has been auto-saved recently.  Revert from auto-save file? ")))
2675            (file-name (if auto-save-p
2676                           buffer-auto-save-file-name
2677                         buffer-file-name)))
2678       (cond ((null file-name)
2679              (error "Buffer does not seem to be associated with any file"))
2680             ((or noconfirm
2681                  (and (not (buffer-modified-p))
2682                       (let (found)
2683                         (dolist (rx revert-without-query found)
2684                           (when (string-match rx file-name)
2685                             (setq found t)))))
2686                  (yes-or-no-p (format "Revert buffer from file %s? "
2687                                       file-name)))
2688              (run-hooks 'before-revert-hook)
2689              ;; If file was backed up but has changed since,
2690              ;; we shd make another backup.
2691              (and (not auto-save-p)
2692                   (not (verify-visited-file-modtime (current-buffer)))
2693                   (setq buffer-backed-up nil))
2694              ;; Get rid of all undo records for this buffer.
2695              (or (eq buffer-undo-list t)
2696                  (setq buffer-undo-list nil))
2697              ;; Effectively copy the after-revert-hook status,
2698              ;; since after-find-file will clobber it.
2699              (let ((global-hook (default-value 'after-revert-hook))
2700                    (local-hook-p (local-variable-p 'after-revert-hook
2701                                                    (current-buffer)))
2702                    (local-hook (and (local-variable-p 'after-revert-hook
2703                                                       (current-buffer))
2704                                     after-revert-hook)))
2705                (let (buffer-read-only
2706                      ;; Don't make undo records for the reversion.
2707                      (buffer-undo-list t))
2708                  (if revert-buffer-insert-file-contents-function
2709                      (funcall revert-buffer-insert-file-contents-function
2710                               file-name auto-save-p)
2711                    (if (not (file-exists-p file-name))
2712                        (error "File %s no longer exists!" file-name))
2713                    ;; Bind buffer-file-name to nil
2714                    ;; so that we don't try to lock the file.
2715                    (let ((buffer-file-name nil))
2716                      (or auto-save-p
2717                          (unlock-buffer)))
2718                    (widen)
2719                    (insert-file-contents file-name (not auto-save-p)
2720                                          nil nil t)))
2721                (goto-char (min opoint (point-max)))
2722                ;; Recompute the truename in case changes in symlinks
2723                ;; have changed the truename.
2724                ;XEmacs: already done by insert-file-contents
2725                ;;(setq buffer-file-truename
2726                      ;;(abbreviate-file-name (file-truename buffer-file-name)))
2727                (after-find-file nil nil t t preserve-modes)
2728                ;; Run after-revert-hook as it was before we reverted.
2729                (setq-default revert-buffer-internal-hook global-hook)
2730                (if local-hook-p
2731                    (progn
2732                      (make-local-variable 'revert-buffer-internal-hook)
2733                      (setq revert-buffer-internal-hook local-hook))
2734                  (kill-local-variable 'revert-buffer-internal-hook))
2735                (run-hooks 'revert-buffer-internal-hook))
2736              t)))))
2737
2738 (defun recover-file (file)
2739   "Visit file FILE, but get contents from its last auto-save file."
2740   ;; Actually putting the file name in the minibuffer should be used
2741   ;; only rarely.
2742   ;; Not just because users often use the default.
2743   (interactive "FRecover file: ")
2744   (setq file (expand-file-name file))
2745   (let ((handler (or (find-file-name-handler file 'recover-file)
2746                     (find-file-name-handler
2747                      (let ((buffer-file-name file))
2748                        (make-auto-save-file-name))
2749                      'recover-file))))
2750     (if handler
2751         (funcall handler 'recover-file file)
2752       (if (auto-save-file-name-p file)
2753           (error "%s is an auto-save file" file))
2754       (let ((file-name (let ((buffer-file-name file))
2755                          (make-auto-save-file-name))))
2756         (cond ((if (file-exists-p file)
2757                    (not (file-newer-than-file-p file-name file))
2758                  (not (file-exists-p file-name)))
2759                (error "Auto-save file %s not current" file-name))
2760               ((save-window-excursion
2761                  (if (not (eq system-type 'windows-nt))
2762                      (with-output-to-temp-buffer "*Directory*"
2763                        (buffer-disable-undo standard-output)
2764                        (call-process "ls" nil standard-output nil
2765                                      (if (file-symlink-p file) "-lL" "-l")
2766                                      file file-name)))
2767                  (yes-or-no-p (format "Recover auto save file %s? " file-name)))
2768                (switch-to-buffer (find-file-noselect file t))
2769                (let ((buffer-read-only nil))
2770                  (erase-buffer)
2771                  (insert-file-contents file-name nil))
2772                (after-find-file nil nil t))
2773               (t (error "Recover-file cancelled.")))))))
2774
2775 (defun recover-session ()
2776   "Recover auto save files from a previous Emacs session.
2777 This command first displays a Dired buffer showing you the
2778 previous sessions that you could recover from.
2779 To choose one, move point to the proper line and then type C-c C-c.
2780 Then you'll be asked about a number of files to recover."
2781   (interactive)
2782   (unless (fboundp 'dired)
2783     (error "recover-session requires dired"))
2784   (if (null auto-save-list-file-prefix)
2785       (error
2786        "You set `auto-save-list-file-prefix' to disable making session files"))
2787   (dired (concat auto-save-list-file-prefix "*"))
2788   (goto-char (point-min))
2789   (or (looking-at "Move to the session you want to recover,")
2790       (let ((inhibit-read-only t))
2791         (insert "Move to the session you want to recover,\n"
2792                 "then type C-c C-c to select it.\n\n"
2793                 "You can also delete some of these files;\n"
2794                 "type d on a line to mark that file for deletion.\n\n")))
2795   (use-local-map (let ((map (make-sparse-keymap)))
2796                    (set-keymap-parents map (list (current-local-map)))
2797                    map))
2798   (define-key (current-local-map) "\C-c\C-c" 'recover-session-finish))
2799
2800 (defun recover-session-finish ()
2801   "Choose one saved session to recover auto-save files from.
2802 This command is used in the special Dired buffer created by
2803 \\[recover-session]."
2804   (interactive)
2805   ;; Get the name of the session file to recover from.
2806   (let ((file (dired-get-filename))
2807         files
2808         (buffer (get-buffer-create " *recover*")))
2809     ;; #### dired-do-flagged-delete in FSF.
2810     ;; This version is for ange-ftp
2811     ;;(dired-do-deletions t)
2812     ;; This version is for efs
2813     (dired-expunge-deletions)
2814     (unwind-protect
2815         (save-excursion
2816           ;; Read in the auto-save-list file.
2817           (set-buffer buffer)
2818           (erase-buffer)
2819           (insert-file-contents file)
2820           ;; Loop thru the text of that file
2821           ;; and get out the names of the files to recover.
2822           (while (not (eobp))
2823             (let (thisfile autofile)
2824               (if (eolp)
2825                   ;; This is a pair of lines for a non-file-visiting buffer.
2826                   ;; Get the auto-save file name and manufacture
2827                   ;; a "visited file name" from that.
2828                   (progn
2829                     (forward-line 1)
2830                     (setq autofile
2831                           (buffer-substring-no-properties
2832                            (point)
2833                            (save-excursion
2834                              (end-of-line)
2835                              (point))))
2836                     (setq thisfile
2837                           (expand-file-name
2838                            (substring
2839                             (file-name-nondirectory autofile)
2840                             1 -1)
2841                            (file-name-directory autofile)))
2842                     (forward-line 1))
2843                 ;; This pair of lines is a file-visiting
2844                 ;; buffer.  Use the visited file name.
2845                 (progn
2846                   (setq thisfile
2847                         (buffer-substring-no-properties
2848                          (point) (progn (end-of-line) (point))))
2849                   (forward-line 1)
2850                   (setq autofile
2851                         (buffer-substring-no-properties
2852                          (point) (progn (end-of-line) (point))))
2853                   (forward-line 1)))
2854               ;; Ignore a file if its auto-save file does not exist now.
2855               (if (file-exists-p autofile)
2856                   (setq files (cons thisfile files)))))
2857           (setq files (nreverse files))
2858           ;; The file contains a pair of line for each auto-saved buffer.
2859           ;; The first line of the pair contains the visited file name
2860           ;; or is empty if the buffer was not visiting a file.
2861           ;; The second line is the auto-save file name.
2862           (if files
2863               (map-y-or-n-p  "Recover %s? "
2864                              (lambda (file)
2865                                (condition-case nil
2866                                    (save-excursion (recover-file file))
2867                                  (error
2868                                   "Failed to recover `%s'" file)))
2869                              files
2870                              '("file" "files" "recover"))
2871             (message "No files can be recovered from this session now")))
2872       (kill-buffer buffer))))
2873
2874 (defun kill-some-buffers (&optional list)
2875   "For each buffer in LIST, ask whether to kill it.
2876 LIST defaults to all existing live buffers."
2877   (interactive)
2878   (if (null list)
2879       (setq list (buffer-list)))
2880   (while list
2881     (let* ((buffer (car list))
2882            (name (buffer-name buffer)))
2883       (and (not (string-equal name ""))
2884            (/= (aref name 0) ?\ )
2885            (yes-or-no-p
2886             (format
2887              (if (buffer-modified-p buffer)
2888                  (gettext "Buffer %s HAS BEEN EDITED.  Kill? ")
2889                (gettext "Buffer %s is unmodified.  Kill? "))
2890              name))
2891            (kill-buffer buffer)))
2892     (setq list (cdr list))))
2893 \f
2894 (defun auto-save-mode (arg)
2895   "Toggle auto-saving of contents of current buffer.
2896 With prefix argument ARG, turn auto-saving on if positive, else off."
2897   (interactive "P")
2898   (setq buffer-auto-save-file-name
2899         (and (if (null arg)
2900                  (or (not buffer-auto-save-file-name)
2901                      ;; If autosave is off because buffer has shrunk,
2902                      ;; then toggling should turn it on.
2903                      (< buffer-saved-size 0))
2904                (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0))))
2905              (if (and buffer-file-name auto-save-visited-file-name
2906                       (not buffer-read-only))
2907                  buffer-file-name
2908                (make-auto-save-file-name))))
2909   ;; If -1 was stored here, to temporarily turn off saving,
2910   ;; turn it back on.
2911   (and (< buffer-saved-size 0)
2912        (setq buffer-saved-size 0))
2913   (if (interactive-p)
2914       (if buffer-auto-save-file-name ;; rewritten for I18N3 snarfing
2915           (display-message 'command "Auto-save on (in this buffer)")
2916         (display-message 'command "Auto-save off (in this buffer)")))
2917   buffer-auto-save-file-name)
2918
2919 (defun rename-auto-save-file ()
2920   "Adjust current buffer's auto save file name for current conditions.
2921 Also rename any existing auto save file, if it was made in this session."
2922   (let ((osave buffer-auto-save-file-name))
2923     (setq buffer-auto-save-file-name
2924           (make-auto-save-file-name))
2925     (if (and osave buffer-auto-save-file-name
2926              (not (string= buffer-auto-save-file-name buffer-file-name))
2927              (not (string= buffer-auto-save-file-name osave))
2928              (file-exists-p osave)
2929              (recent-auto-save-p))
2930         (rename-file osave buffer-auto-save-file-name t))))
2931
2932 ;; see also ../packages/auto-save.el
2933 (defun make-auto-save-file-name (&optional filename)
2934   "Return file name to use for auto-saves of current buffer.
2935 Does not consider `auto-save-visited-file-name' as that variable is checked
2936 before calling this function.  You can redefine this for customization.
2937 See also `auto-save-file-name-p'."
2938   (let ((fname (or filename buffer-file-name))
2939         name)
2940     (setq name
2941           (if fname
2942               (concat (file-name-directory fname)
2943                       "#"
2944                       (file-name-nondirectory fname)
2945                       "#")
2946
2947             ;; Deal with buffers that don't have any associated files.  (Mail
2948             ;; mode tends to create a good number of these.)
2949
2950             (let ((buffer-name (buffer-name))
2951                   (limit 0))
2952               ;; Use technique from Sebastian Kremer's auto-save
2953               ;; package to turn slashes into \\!.  This ensures that
2954               ;; the auto-save buffer name is unique.
2955
2956               ;; #### - yuck!  yuck!  yuck!  move this functionality
2957               ;; somewhere else and make the name translation customizable.
2958               ;; Using "\!" as part of a filename on a UNIX filesystem is nearly
2959               ;; IMPOSSIBLE to get past a shell parser.  -stig
2960
2961               (while (string-match "[/\\]" buffer-name limit)
2962                 (setq buffer-name
2963                       (concat (substring buffer-name 0 (match-beginning 0))
2964                               (if (string= (substring buffer-name
2965                                                       (match-beginning 0)
2966                                                       (match-end 0))
2967                                            "/")
2968                                   "\\!"
2969                                 "\\\\")
2970                               (substring buffer-name (match-end 0))))
2971                 (setq limit (1+ (match-end 0))))
2972
2973               ;;    (expand-file-name (format "#%s#%s#" (buffer-name) (make-temp-name "")))
2974
2975               ;; jwz: putting the emacs PID in the auto-save file name
2976               ;; is bad news, because that defeats auto-save-recovery of
2977               ;; *mail* buffers -- the (sensible) code in sendmail.el
2978               ;; calls (make-auto-save-file-name) to determine whether
2979               ;; there is unsent, auto-saved mail to recover.  If that
2980               ;; mail came from a previous emacs process (far and away
2981               ;; the most likely case) then this can never succeed as
2982               ;; the pid differs.
2983
2984               (expand-file-name (format "#%s#" buffer-name)))
2985             ))
2986     ;; don't try to write auto-save files in unwritable places.  Unless
2987     ;; there's already an autosave file here, put ours somewhere safe. --Stig
2988     (if (or (file-writable-p name)
2989             (file-exists-p name))
2990         name
2991       (expand-file-name (concat "~/" (file-name-nondirectory name))))))
2992
2993 (defun auto-save-file-name-p (filename)
2994   "Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'.
2995 FILENAME should lack slashes.
2996 You can redefine this for customization."
2997   (string-match "\\`#.*#\\'" filename))
2998 \f
2999 (defun wildcard-to-regexp (wildcard)
3000   "Given a shell file name pattern WILDCARD, return an equivalent regexp.
3001 The generated regexp will match a filename iff the filename
3002 matches that wildcard according to shell rules.  Only wildcards known
3003 by `sh' are supported."
3004   (let* ((i (string-match "[[.*+\\^$?]" wildcard))
3005          ;; Copy the initial run of non-special characters.
3006          (result (substring wildcard 0 i))
3007          (len (length wildcard)))
3008     ;; If no special characters, we're almost done.
3009     (if i
3010         (while (< i len)
3011           (let ((ch (aref wildcard i))
3012                 j)
3013             (setq
3014              result
3015              (concat result
3016                      (cond
3017                       ((eq ch ?\[)      ; [...] maps to regexp char class
3018                        (progn
3019                          (setq i (1+ i))
3020                          (concat
3021                           (cond
3022                            ((eq (aref wildcard i) ?!) ; [!...] -> [^...]
3023                             (progn
3024                               (setq i (1+ i))
3025                               (if (eq (aref wildcard i) ?\])
3026                                   (progn
3027                                     (setq i (1+ i))
3028                                     "[^]")
3029                                 "[^")))
3030                            ((eq (aref wildcard i) ?^)
3031                             ;; Found "[^".  Insert a `\0' character
3032                             ;; (which cannot happen in a filename)
3033                             ;; into the character class, so that `^'
3034                             ;; is not the first character after `[',
3035                             ;; and thus non-special in a regexp.
3036                             (progn
3037                               (setq i (1+ i))
3038                               "[\000^"))
3039                            ((eq (aref wildcard i) ?\])
3040                             ;; I don't think `]' can appear in a
3041                             ;; character class in a wildcard, but
3042                             ;; let's be general here.
3043                             (progn
3044                               (setq i (1+ i))
3045                               "[]"))
3046                            (t "["))
3047                           (prog1        ; copy everything upto next `]'.
3048                               (substring wildcard
3049                                          i
3050                                          (setq j (string-match
3051                                                   "]" wildcard i)))
3052                             (setq i (if j (1- j) (1- len)))))))
3053                       ((eq ch ?.)  "\\.")
3054                       ((eq ch ?*)  "[^\000]*")
3055                       ((eq ch ?+)  "\\+")
3056                       ((eq ch ?^)  "\\^")
3057                       ((eq ch ?$)  "\\$")
3058                       ((eq ch ?\\) "\\\\") ; probably cannot happen...
3059                       ((eq ch ??)  "[^\000]")
3060                       (t (char-to-string ch)))))
3061             (setq i (1+ i)))))
3062     ;; Shell wildcards should match the entire filename,
3063     ;; not its part.  Make the regexp say so.
3064     (concat "\\`" result "\\'")))
3065 \f
3066 (defcustom list-directory-brief-switches "-CF"
3067   "*Switches for list-directory to pass to `ls' for brief listing."
3068   :type 'string
3069   :group 'dired)
3070
3071 (defcustom list-directory-verbose-switches "-l"
3072   "*Switches for list-directory to pass to `ls' for verbose listing,"
3073   :type 'string
3074   :group 'dired)
3075
3076 (defun list-directory (dirname &optional verbose)
3077   "Display a list of files in or matching DIRNAME, a la `ls'.
3078 DIRNAME is globbed by the shell if necessary.
3079 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
3080 Actions controlled by variables `list-directory-brief-switches'
3081 and `list-directory-verbose-switches'."
3082   (interactive (let ((pfx current-prefix-arg))
3083                  (list (read-file-name (if pfx (gettext "List directory (verbose): ")
3084                                          (gettext "List directory (brief): "))
3085                                        nil default-directory nil)
3086                        pfx)))
3087   (let ((switches (if verbose list-directory-verbose-switches
3088                     list-directory-brief-switches)))
3089     (or dirname (setq dirname default-directory))
3090     (setq dirname (expand-file-name dirname))
3091     (with-output-to-temp-buffer "*Directory*"
3092       (buffer-disable-undo standard-output)
3093       (princ "Directory ")
3094       (princ dirname)
3095       (terpri)
3096       (save-excursion
3097         (set-buffer "*Directory*")
3098         (setq default-directory (file-name-directory dirname))
3099         (let ((wildcard (not (file-directory-p dirname))))
3100           (insert-directory dirname switches wildcard (not wildcard)))))))
3101
3102 (defvar insert-directory-program "ls"
3103   "Absolute or relative name of the `ls' program used by `insert-directory'.")
3104
3105 ;; insert-directory
3106 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and
3107 ;;   FULL-DIRECTORY-P is nil.
3108 ;;   The single line of output must display FILE's name as it was
3109 ;;   given, namely, an absolute path name.
3110 ;; - must insert exactly one line for each file if WILDCARD or
3111 ;;   FULL-DIRECTORY-P is t, plus one optional "total" line
3112 ;;   before the file lines, plus optional text after the file lines.
3113 ;;   Lines are delimited by "\n", so filenames containing "\n" are not
3114 ;;   allowed.
3115 ;;   File lines should display the basename.
3116 ;; - must be consistent with
3117 ;;   - functions dired-move-to-filename, (these two define what a file line is)
3118 ;;               dired-move-to-end-of-filename,
3119 ;;               dired-between-files, (shortcut for (not (dired-move-to-filename)))
3120 ;;               dired-insert-headerline
3121 ;;               dired-after-subdir-garbage (defines what a "total" line is)
3122 ;;   - variable dired-subdir-regexp
3123 (defun insert-directory (file switches &optional wildcard full-directory-p)
3124   "Insert directory listing for FILE, formatted according to SWITCHES.
3125 Leaves point after the inserted text.
3126 SWITCHES may be a string of options, or a list of strings.
3127 Optional third arg WILDCARD means treat FILE as shell wildcard.
3128 Optional fourth arg FULL-DIRECTORY-P means file is a directory and
3129 switches do not contain `d', so that a full listing is expected.
3130
3131 This works by running a directory listing program
3132 whose name is in the variable `insert-directory-program'.
3133 If WILDCARD, it also runs the shell specified by `shell-file-name'."
3134   ;; We need the directory in order to find the right handler.
3135   (let ((handler (find-file-name-handler (expand-file-name file)
3136                                          'insert-directory)))
3137     (if handler
3138         (funcall handler 'insert-directory file switches
3139                  wildcard full-directory-p)
3140       (cond
3141        ((and (fboundp 'mswindows-insert-directory)
3142              (eq system-type 'windows-nt))
3143         (mswindows-insert-directory file switches wildcard full-directory-p))
3144        (t
3145         (if wildcard
3146             ;; Run ls in the directory of the file pattern we asked for.
3147             (let ((default-directory
3148                       (if (file-name-absolute-p file)
3149                           (file-name-directory file)
3150                           (file-name-directory (expand-file-name file))))
3151                   (pattern (file-name-nondirectory file))
3152                   (beg 0))
3153               ;; Quote some characters that have special meanings in shells;
3154               ;; but don't quote the wildcards--we want them to be special.
3155               ;; We also currently don't quote the quoting characters
3156               ;; in case people want to use them explicitly to quote
3157               ;; wildcard characters.
3158               ;;#### Unix-specific
3159               (while (string-match "[ \t\n;<>&|()#$]" pattern beg)
3160                 (setq pattern
3161                       (concat (substring pattern 0 (match-beginning 0))
3162                               "\\"
3163                               (substring pattern (match-beginning 0)))
3164                       beg (1+ (match-end 0))))
3165               (call-process shell-file-name nil t nil
3166                             "-c" (concat "\\"  ;; Disregard shell aliases!
3167                                          insert-directory-program
3168                                          " -d "
3169                                          (if (stringp switches)
3170                                              switches
3171                                            (mapconcat 'identity switches " "))
3172                                          " "
3173                                          pattern)))
3174           ;; SunOS 4.1.3, SVr4 and others need the "." to list the
3175           ;; directory if FILE is a symbolic link.
3176           (apply 'call-process
3177                  insert-directory-program nil t nil
3178                  (let (list)
3179                    (if (listp switches)
3180                        (setq list switches)
3181                      (if (not (equal switches ""))
3182                          (progn
3183                            ;; Split the switches at any spaces
3184                            ;; so we can pass separate options as separate args.
3185                            (while (string-match " " switches)
3186                              (setq list (cons (substring switches 0 (match-beginning 0))
3187                                               list)
3188                                    switches (substring switches (match-end 0))))
3189                            (setq list (cons switches list)))))
3190                    (append list
3191                            (list
3192                             (if full-directory-p
3193                                 (concat (file-name-as-directory file)
3194                                         ;;#### Unix-specific
3195                                         ".")
3196                               file)))))))))))
3197
3198 (defvar kill-emacs-query-functions nil
3199   "Functions to call with no arguments to query about killing XEmacs.
3200 If any of these functions returns nil, killing Emacs is cancelled.
3201 `save-buffers-kill-emacs' (\\[save-buffers-kill-emacs]) calls these functions,
3202 but `kill-emacs', the low level primitive, does not.
3203 See also `kill-emacs-hook'.")
3204
3205 (defun save-buffers-kill-emacs (&optional arg)
3206   "Offer to save each buffer, then kill this XEmacs process.
3207 With prefix arg, silently save all file-visiting buffers, then kill."
3208   (interactive "P")
3209   (save-some-buffers arg t)
3210   (and (or (not (memq t (mapcar #'(lambda (buf) (and (buffer-file-name buf)
3211                                                      (buffer-modified-p buf)))
3212                                 (buffer-list))))
3213            (yes-or-no-p "Modified buffers exist; exit anyway? "))
3214        (or (not (fboundp 'process-list))
3215            ;; process-list is not defined on VMS.
3216            (let ((processes (process-list))
3217                  active)
3218              (while processes
3219                (and (memq (process-status (car processes)) '(run stop open))
3220                     (let ((val (process-kill-without-query (car processes))))
3221                       (process-kill-without-query (car processes) val)
3222                       val)
3223                     (setq active t))
3224                (setq processes (cdr processes)))
3225              (or
3226               (not active)
3227               (save-excursion
3228                 (save-window-excursion
3229                   (delete-other-windows)
3230                   (list-processes)
3231                   (yes-or-no-p
3232                    "Active processes exist; kill them and exit anyway? "))))))
3233        ;; Query the user for other things, perhaps.
3234        (run-hook-with-args-until-failure 'kill-emacs-query-functions)
3235        (kill-emacs)))
3236
3237 (defun symlink-expand-file-name (filename)
3238   "If FILENAME is a symlink, return its non-symlink equivalent.
3239 Unlike `file-truename', this doesn't chase symlinks in directory
3240 components of the file or expand a relative pathname into an
3241 absolute one."
3242   (let ((count 20))
3243     (while (and (> count 0) (file-symlink-p filename))
3244       (setq filename (file-symlink-p filename)
3245             count (1- count)))
3246     (if (> count 0)
3247         filename
3248       (error "Apparently circular symlink path"))))
3249
3250 ;; Suggested by Michael Kifer <kifer@CS.SunySB.EDU>
3251 (defun file-remote-p (file-name)
3252   "Test whether FILE-NAME is looked for on a remote system."
3253   (cond ((not allow-remote-paths) nil)
3254         ((featurep 'ange-ftp) (ange-ftp-ftp-path file-name))
3255         ((fboundp 'efs-ftp-path) (efs-ftp-path file-name))
3256         (t nil)))
3257
3258 ;; #### FSF has file-name-non-special here.
3259
3260 ;;; files.el ends here