Sync up with r21-2-27.
[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     ("\\.pro\\'" . idlwave-mode)
1164     ;; #### Unix-specific!
1165     ("/\\.\\(?:bash_\\|z\\)?\\(profile\\|login\\|logout\\)\\'" . sh-mode)
1166     ("/\\.\\(?:[ckz]sh\\|bash\\|tcsh\\|es\\|xinit\\|startx\\)rc\\'" . sh-mode)
1167     ("/\\.\\(?:[kz]shenv\\|xsession\\)\\'" . sh-mode)
1168     ;; The following come after the ChangeLog pattern for the sake of
1169     ;; ChangeLog.1, etc. and after the .scm.[0-9] pattern too.
1170     ("\\.[12345678]\\'" . nroff-mode)
1171     ("\\.[tT]e[xX]\\'" . tex-mode)
1172     ("\\.\\(?:sty\\|cls\\|bbl\\)\\'" . latex-mode)
1173     ("\\.bib\\'" . bibtex-mode)
1174     ("\\.article\\'" . text-mode)
1175     ("\\.letter\\'" . text-mode)
1176     ("\\.\\(?:tcl\\|exp\\)\\'" . tcl-mode)
1177     ("\\.wrl\\'" . vrml-mode)
1178     ("\\.awk\\'" . awk-mode)
1179     ("\\.prolog\\'" . prolog-mode)
1180     ("\\.\\(?:arc\\|zip\\|lzh\\|zoo\\)\\'" . archive-mode)
1181     ;; Mailer puts message to be edited in /tmp/Re.... or Message
1182     ;; #### Unix-specific!
1183     ("\\`/tmp/Re" . text-mode)
1184     ("/Message[0-9]*\\'" . text-mode)
1185     ("/drafts/[0-9]+\\'" . mh-letter-mode)
1186     ;; some news reader is reported to use this
1187     ("^/tmp/fol/" . text-mode)
1188     ("\\.y\\'" . c-mode)
1189     ("\\.lex\\'" . c-mode)
1190     ("\\.m\\'" . objc-mode)
1191     ("\\.oak\\'" . scheme-mode)
1192     ("\\.s?html?\\'" . html-mode)
1193     ("\\.htm?l?3\\'" . html3-mode)
1194     ("\\.\\(?:sgml?\\|dtd\\)\\'" . sgml-mode)
1195     ("\\.c?ps\\'" . postscript-mode)
1196     ;; .emacs following a directory delimiter in either Unix or
1197     ;; Windows syntax.
1198     ("[/\\][._].*emacs\\'" . emacs-lisp-mode)
1199     ("\\.m4\\'" . autoconf-mode)
1200     ("configure\\.in\\'" . autoconf-mode)
1201     ("\\.ml\\'" . lisp-mode)
1202     ("\\.ma?k\\'" . makefile-mode)
1203     ("[Mm]akefile\\(\\.\\|\\'\\)" . makefile-mode)
1204     ("\\.X\\(defaults\\|environment\\|resources\\|modmap\\)\\'" . xrdb-mode)
1205     ;; #### The following three are Unix-specific (but do we care?)
1206     ("/app-defaults/" . xrdb-mode)
1207     ("\\.[^/]*wm2?\\(?:rc\\)?\\'" . winmgr-mode)
1208     ("\\.\\(?:jpe?g\\|JPE?G\\|png\\|PNG\\|gif\\|GIF\\|tiff?\\|TIFF?\\)\\'" . image-mode)
1209     )
1210 "Alist of filename patterns vs. corresponding major mode functions.
1211 Each element looks like (REGEXP . FUNCTION) or (REGEXP FUNCTION NON-NIL).
1212 \(NON-NIL stands for anything that is not nil; the value does not matter.)
1213 Visiting a file whose name matches REGEXP specifies FUNCTION as the
1214 mode function to use.  FUNCTION will be called, unless it is nil.
1215
1216 If the element has the form (REGEXP FUNCTION NON-NIL), then after
1217 calling FUNCTION (if it's not nil), we delete the suffix that matched
1218 REGEXP and search the list again for another match.")
1219
1220 (defvar interpreter-mode-alist
1221   '(("^#!.*csh"   . sh-mode)
1222     ("^#!.*\\b\\(scope\\|wish\\|tcl\\|tclsh\\|expect\\)" . tcl-mode)
1223     ("^#!.*sh\\b" . sh-mode)
1224     ("perl"   . perl-mode)
1225     ("python" . python-mode)
1226     ("awk\\b" . awk-mode)
1227     ("rexx"   . rexx-mode)
1228     ("scm\\|guile" . scheme-mode)
1229     ("emacs" . emacs-lisp-mode)
1230     ("make" . makefile-mode)
1231     ("^:"     . sh-mode))
1232   "Alist mapping interpreter names to major modes.
1233 This alist is used to guess the major mode of a file based on the
1234 contents of the first line.  This line often contains something like:
1235 #!/bin/sh
1236 but may contain something more imaginative like
1237 #! /bin/env python
1238 or
1239 eval 'exec perl -w -S $0 ${1+\"$@\"}'.
1240
1241 Each alist element looks like (INTERPRETER . MODE).
1242 The car of each element is a regular expression which is compared
1243 with the name of the interpreter specified in the first line.
1244 If it matches, mode MODE is selected.")
1245
1246 (defvar binary-file-regexps
1247   (purecopy
1248    '("\\.\\(?:bz2\\|elc\\|g\\(if\\|z\\)\\|jp\\(eg\\|g\\)\\|png\\|t\\(ar\\|gz\\|iff\\)\\|[Zo]\\)\\'"))
1249   "List of regexps of filenames containing binary (non-text) data.")
1250
1251 ;   (eval-when-compile
1252 ;     (require 'regexp-opt)
1253 ;     (list
1254 ;      (format "\\.\\(?:%s\\)\\'"
1255 ;             (regexp-opt
1256 ;              '("tar"
1257 ;                "tgz"
1258 ;                "gz"
1259 ;                "bz2"
1260 ;                "Z"
1261 ;                "o"
1262 ;                "elc"
1263 ;                "png"
1264 ;                "gif"
1265 ;                "tiff"
1266 ;                "jpg"
1267 ;                "jpeg"))))))
1268   
1269 (defvar inhibit-first-line-modes-regexps
1270   (purecopy binary-file-regexps)
1271   "List of regexps; if one matches a file name, don't look for `-*-'.")
1272
1273 (defvar inhibit-first-line-modes-suffixes nil
1274   "List of regexps for what to ignore, for `inhibit-first-line-modes-regexps'.
1275 When checking `inhibit-first-line-modes-regexps', we first discard
1276 from the end of the file name anything that matches one of these regexps.")
1277
1278 (defvar user-init-file
1279   nil ; set by command-line
1280   "File name including directory of user's initialization file.")
1281
1282 (defun set-auto-mode (&optional just-from-file-name)
1283   "Select major mode appropriate for current buffer.
1284 This checks for a -*- mode tag in the buffer's text,
1285 compares the filename against the entries in `auto-mode-alist',
1286 or checks the interpreter that runs this file against
1287 `interpreter-mode-alist'.
1288
1289 It does not check for the `mode:' local variable in the
1290 Local Variables section of the file; for that, use `hack-local-variables'.
1291
1292 If `enable-local-variables' is nil, this function does not check for a
1293 -*- mode tag.
1294
1295 If the optional argument JUST-FROM-FILE-NAME is non-nil,
1296 then we do not set anything but the major mode,
1297 and we don't even do that unless it would come from the file name."
1298   (save-excursion
1299     ;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*-
1300     ;; Do this by calling the hack-local-variables helper to avoid redundancy.
1301     ;; We bind enable-local-variables to nil this time because we're going to
1302     ;; call hack-local-variables-prop-line again later, "for real."  Note that
1303     ;; this temporary binding does not prevent hack-local-variables-prop-line
1304     ;; from setting the major mode.
1305     (or (and enable-local-variables
1306              (let ((enable-local-variables nil))
1307                (hack-local-variables-prop-line nil))
1308              )
1309         ;; It's not in the -*- line, so check the auto-mode-alist, unless
1310         ;; this buffer isn't associated with a file.
1311         (null buffer-file-name)
1312         (let ((name (file-name-sans-versions buffer-file-name))
1313               (keep-going t))
1314           (while keep-going
1315             (setq keep-going nil)
1316             (let ((alist auto-mode-alist)
1317                   (mode nil))
1318               ;; Find first matching alist entry.
1319               (let ((case-fold-search
1320                      (memq system-type '(windows-nt))))
1321                 (while (and (not mode) alist)
1322                   (if (string-match (car (car alist)) name)
1323                       (if (and (consp (cdr (car alist)))
1324                                (nth 2 (car alist)))
1325                           (progn
1326                             (setq mode (car (cdr (car alist)))
1327                                   name (substring name 0 (match-beginning 0))
1328                                   keep-going t))
1329                         (setq mode (cdr (car alist))
1330                               keep-going nil)))
1331                   (setq alist (cdr alist))))
1332               (unless just-from-file-name
1333                 ;; If we can't deduce a mode from the file name,
1334                 ;; look for an interpreter specified in the first line.
1335                 (if (and (null mode)
1336                          (save-excursion ; XEmacs
1337                            (goto-char (point-min))
1338                            (looking-at "#!")))
1339                     (let ((firstline
1340                            (buffer-substring
1341                             (point-min)
1342                             (save-excursion
1343                               (goto-char (point-min)) (end-of-line) (point)))))
1344                       (setq alist interpreter-mode-alist)
1345                       (while alist
1346                         (if (string-match (car (car alist)) firstline)
1347                             (progn
1348                               (setq mode (cdr (car alist)))
1349                               (setq alist nil))
1350                           (setq alist (cdr alist)))))))
1351               (if mode
1352                   (if (not (fboundp mode))
1353                       (let ((name (package-get-package-provider mode)))
1354                         (if name
1355                             (message "Mode %s is not installed.  Download package %s" mode name)
1356                           (message "Mode %s either doesn't exist or is not a known package" mode))
1357                         (sit-for 2)
1358                         (error "%s" mode))
1359                     (unless (and just-from-file-name
1360                                  (or
1361                                   ;; Don't reinvoke major mode.
1362                                   (eq mode major-mode)
1363                                   ;; Don't lose on minor modes.
1364                                   (assq mode minor-mode-alist)))
1365                       (funcall mode))))))))))
1366
1367 (defvar hack-local-variables-hook nil
1368   "Normal hook run after processing a file's local variables specs.
1369 Major modes can use this to examine user-specified local variables
1370 in order to initialize other data structure based on them.
1371
1372 This hook runs even if there were no local variables or if their
1373 evaluation was suppressed.  See also `enable-local-variables' and
1374 `enable-local-eval'.")
1375
1376 (defun hack-local-variables (&optional force)
1377   "Parse, and bind or evaluate as appropriate, any local variables
1378 for current buffer."
1379   ;; Don't look for -*- if this file name matches any
1380   ;; of the regexps in inhibit-first-line-modes-regexps.
1381   (if (or (null buffer-file-name) ; don't lose if buffer has no file!
1382           (not (let ((temp inhibit-first-line-modes-regexps)
1383                      (name (if buffer-file-name
1384                                (file-name-sans-versions buffer-file-name)
1385                              (buffer-name))))
1386                  (while (let ((sufs inhibit-first-line-modes-suffixes))
1387                           (while (and sufs (not
1388                                             (string-match (car sufs) name)))
1389                             (setq sufs (cdr sufs)))
1390                           sufs)
1391                    (setq name (substring name 0 (match-beginning 0))))
1392                  (while (and temp
1393                              (not (string-match (car temp) name)))
1394                    (setq temp (cdr temp))
1395                    temp))))
1396       (progn
1397         ;; Look for variables in the -*- line.
1398         (hack-local-variables-prop-line force)
1399         ;; Look for "Local variables:" block in last page.
1400         (hack-local-variables-last-page force)))
1401   (run-hooks 'hack-local-variables-hook))
1402
1403 ;;; Local variables may be specified in the last page of the file (within 3k
1404 ;;; from the end of the file and after the last ^L) in the form
1405 ;;;
1406 ;;;   Local variables:
1407 ;;;   variable-name: variable-value
1408 ;;;   end:
1409 ;;;
1410 ;;; The lines may begin with a common prefix, like ";;;   " in the above
1411 ;;; example.  They may also have a common suffix (" */" for example).  In
1412 ;;; this form, the local variable "mode" can be used to change the major
1413 ;;; mode, and the local variable "eval" can be used to evaluate an arbitrary
1414 ;;; form.
1415 ;;;
1416 ;;; Local variables may also be specified in the first line of the file.
1417 ;;; Embedded in this line are a pair of "-*-" sequences.  What lies between
1418 ;;; them are variable-name/variable-value pairs, like:
1419 ;;;
1420 ;;;      -*- mode: emacs-lisp -*-
1421 ;;; or   -*- mode: postscript; version-control: never -*-
1422 ;;; or   -*- tags-file-name: "/foo/bar/TAGS" -*-
1423 ;;;
1424 ;;; The local variable "eval" is not used with this form. For hysterical
1425 ;;; reasons, the syntax "-*- modename -*-" is allowed as well.
1426 ;;;
1427
1428 (defun hack-local-variables-p (modeline)
1429   (or (eq enable-local-variables t)
1430       (and enable-local-variables
1431            (save-window-excursion
1432              (condition-case nil
1433                  (switch-to-buffer (current-buffer))
1434                (error
1435                 ;; If we fail to switch in the selected window,
1436                 ;; it is probably a minibuffer.
1437                 ;; So try another window.
1438                 (condition-case nil
1439                     (switch-to-buffer-other-window (current-buffer))
1440                   (error
1441                    (switch-to-buffer-other-frame (current-buffer))))))
1442              (or modeline (save-excursion
1443                              (beginning-of-line)
1444                              (set-window-start (selected-window) (point))))
1445              (y-or-n-p (format
1446                         "Set local variables as specified %s of %s? "
1447                         (if modeline "in -*- line" "at end")
1448                         (if buffer-file-name
1449                             (file-name-nondirectory buffer-file-name)
1450                             (concat "buffer " (buffer-name)))))))))
1451
1452 (defun hack-local-variables-last-page (&optional force)
1453   ;; Set local variables set in the "Local Variables:" block of the last page.
1454   (save-excursion
1455     (goto-char (point-max))
1456     (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move)
1457     (if (let ((case-fold-search t))
1458           (and (search-forward "Local Variables:" nil t)
1459                (or force
1460                    (hack-local-variables-p nil))))
1461         (let ((continue t)
1462               prefix prefixlen suffix beg
1463               (enable-local-eval enable-local-eval))
1464           ;; The prefix is what comes before "local variables:" in its line.
1465           ;; The suffix is what comes after "local variables:" in its line.
1466           (skip-chars-forward " \t")
1467           (or (eolp)
1468               (setq suffix (buffer-substring (point)
1469                                              (progn (end-of-line) (point)))))
1470           (goto-char (match-beginning 0))
1471           (or (bolp)
1472               (setq prefix
1473                     (buffer-substring (point)
1474                                       (progn (beginning-of-line) (point)))))
1475           (if prefix (setq prefixlen (length prefix)
1476                            prefix (regexp-quote prefix)))
1477           (if suffix (setq suffix (concat (regexp-quote suffix) "$")))
1478           (while continue
1479             ;; Look at next local variable spec.
1480             (if selective-display (re-search-forward "[\n\C-m]")
1481               (forward-line 1))
1482             ;; Skip the prefix, if any.
1483             (if prefix
1484                 (if (looking-at prefix)
1485                     (forward-char prefixlen)
1486                   (error "Local variables entry is missing the prefix")))
1487             ;; Find the variable name; strip whitespace.
1488             (skip-chars-forward " \t")
1489             (setq beg (point))
1490             (skip-chars-forward "^:\n")
1491             (if (eolp) (error "Missing colon in local variables entry"))
1492             (skip-chars-backward " \t")
1493             (let* ((str (buffer-substring beg (point)))
1494                    (var (read str))
1495                   val)
1496               ;; Setting variable named "end" means end of list.
1497               (if (string-equal (downcase str) "end")
1498                   (setq continue nil)
1499                 ;; Otherwise read the variable value.
1500                 (skip-chars-forward "^:")
1501                 (forward-char 1)
1502                 (setq val (read (current-buffer)))
1503                 (skip-chars-backward "\n")
1504                 (skip-chars-forward " \t")
1505                 (or (if suffix (looking-at suffix) (eolp))
1506                     (error "Local variables entry is terminated incorrectly"))
1507                 ;; Set the variable.  "Variables" mode and eval are funny.
1508                 (hack-one-local-variable var val))))))))
1509
1510 ;; jwz - New Version 20.1/19.15
1511 (defun hack-local-variables-prop-line (&optional force)
1512   ;; Set local variables specified in the -*- line.
1513   ;; Returns t if mode was set.
1514   (let ((result nil))
1515     (save-excursion
1516       (goto-char (point-min))
1517       (skip-chars-forward " \t\n\r")
1518       (let ((end (save-excursion
1519                    ;; If the file begins with "#!"
1520                    ;; (un*x exec interpreter magic), look
1521                    ;; for mode frobs in the first two
1522                    ;; lines.  You cannot necessarily
1523                    ;; put them in the first line of
1524                    ;; such a file without screwing up
1525                    ;; the interpreter invocation.
1526                    (end-of-line (and (looking-at "^#!") 2))
1527                    (point))))
1528         ;; Parse the -*- line into the `result' alist.
1529         (cond ((not (search-forward "-*-" end t))
1530                ;; doesn't have one.
1531                (setq force t))
1532               ((looking-at "[ \t]*\\([^ \t\n\r:;]+\\)\\([ \t]*-\\*-\\)")
1533                ;; Antiquated form: "-*- ModeName -*-".
1534                (setq result
1535                      (list (cons 'mode
1536                                  (intern (buffer-substring
1537                                           (match-beginning 1)
1538                                           (match-end 1)))))
1539                      ))
1540               (t
1541                ;; Usual form: '-*-' [ <variable> ':' <value> ';' ]* '-*-'
1542                ;; (last ";" is optional).
1543                (save-excursion
1544                  (if (search-forward "-*-" end t)
1545                      (setq end (- (point) 3))
1546                    (error "-*- not terminated before end of line")))
1547                (while (< (point) end)
1548                  (or (looking-at "[ \t]*\\([^ \t\n:]+\\)[ \t]*:[ \t]*")
1549                      (error "malformed -*- line"))
1550                  (goto-char (match-end 0))
1551                  ;; There used to be a downcase here,
1552                  ;; but the manual didn't say so,
1553                  ;; and people want to set var names that aren't all lc.
1554                  (let ((key (intern (buffer-substring
1555                                      (match-beginning 1)
1556                                      (match-end 1))))
1557                        (val (save-restriction
1558                               (narrow-to-region (point) end)
1559                               (read (current-buffer)))))
1560                    ;; Case sensitivity!  Icepicks in my forehead!
1561                    (if (equal (downcase (symbol-name key)) "mode")
1562                        (setq key 'mode))
1563                    (setq result (cons (cons key val) result))
1564                    (skip-chars-forward " \t;")))
1565                (setq result (nreverse result))))))
1566
1567     (let ((set-any-p (or force
1568                          ;; It's OK to force null specifications.
1569                          (null result)
1570                          ;; It's OK to force mode-only specifications.
1571                          (let ((remaining result)
1572                                (mode-specs-only t))
1573                            (while remaining
1574                              (if (eq (car (car remaining)) 'mode)
1575                                  (setq remaining (cdr remaining))
1576                                ;; Otherwise, we have a real local.
1577                                (setq mode-specs-only nil
1578                                      remaining nil))
1579                              )
1580                            mode-specs-only)
1581                          ;; Otherwise, check.
1582                          (hack-local-variables-p t)))
1583           (mode-p nil))
1584       (while result
1585         (let ((key (car (car result)))
1586               (val (cdr (car result))))
1587           (cond ((eq key 'mode)
1588                  (setq mode-p t)
1589                  (let ((mode (intern (concat (downcase (symbol-name val))
1590                                              "-mode"))))
1591                    ;; Without this guard, `normal-mode' would potentially run
1592                    ;; the major mode function twice: once via `set-auto-mode'
1593                    ;; and once via `hack-local-variables'.
1594                    (if (not (eq mode major-mode))
1595                        (funcall mode))
1596                    ))
1597                 (set-any-p
1598                  (hack-one-local-variable key val))
1599                 (t
1600                  nil)))
1601         (setq result (cdr result)))
1602       mode-p)))
1603
1604 (defconst ignored-local-variables
1605   (list 'enable-local-eval)
1606   "Variables to be ignored in a file's local variable spec.")
1607
1608 ;; Get confirmation before setting these variables as locals in a file.
1609 (put 'debugger 'risky-local-variable t)
1610 (put 'enable-local-eval 'risky-local-variable t)
1611 (put 'ignored-local-variables 'risky-local-variable t)
1612 (put 'eval 'risky-local-variable t)
1613 (put 'file-name-handler-alist 'risky-local-variable t)
1614 (put 'minor-mode-map-alist 'risky-local-variable t)
1615 (put 'after-load-alist 'risky-local-variable t)
1616 (put 'buffer-file-name 'risky-local-variable t)
1617 (put 'buffer-auto-save-file-name 'risky-local-variable t)
1618 (put 'buffer-file-truename 'risky-local-variable t)
1619 (put 'exec-path 'risky-local-variable t)
1620 (put 'load-path 'risky-local-variable t)
1621 (put 'exec-directory 'risky-local-variable t)
1622 (put 'process-environment 'risky-local-variable t)
1623 ;; Don't wait for outline.el to be loaded, for the sake of outline-minor-mode.
1624 (put 'outline-level 'risky-local-variable t)
1625 (put 'rmail-output-file-alist 'risky-local-variable t)
1626
1627 ;; This one is safe because the user gets to check it before it is used.
1628 (put 'compile-command 'safe-local-variable t)
1629
1630 ;(defun hack-one-local-variable-quotep (exp)
1631 ;  (and (consp exp) (eq (car exp) 'quote) (consp (cdr exp))))
1632
1633 ;; "Set" one variable in a local variables spec.
1634 ;; A few variable names are treated specially.
1635 (defun hack-one-local-variable (var val)
1636   (cond ((eq var 'mode)
1637          (funcall (intern (concat (downcase (symbol-name val))
1638                                   "-mode"))))
1639         ((memq var ignored-local-variables)
1640          nil)
1641         ;; "Setting" eval means either eval it or do nothing.
1642         ;; Likewise for setting hook variables.
1643         ((or (get var 'risky-local-variable)
1644              (and
1645               (string-match "-hooks?$\\|-functions?$\\|-forms?$\\|-program$\\|-command$"
1646                             (symbol-name var))
1647               (not (get var 'safe-local-variable))))
1648 ;        ;; Permit evaling a put of a harmless property
1649 ;        ;; if the args do nothing tricky.
1650 ;        (if (or (and (eq var 'eval)
1651 ;                     (consp val)
1652 ;                     (eq (car val) 'put)
1653 ;                     (hack-one-local-variable-quotep (nth 1 val))
1654 ;                     (hack-one-local-variable-quotep (nth 2 val))
1655 ;                     ;; Only allow safe values of lisp-indent-hook;
1656 ;                     ;; not functions.
1657 ;                     (or (numberp (nth 3 val))
1658 ;                         (equal (nth 3 val) ''defun))
1659 ;                     (memq (nth 1 (nth 2 val))
1660 ;                           '(lisp-indent-hook)))
1661          (if (and (not (zerop (user-uid)))
1662                   (or (eq enable-local-eval t)
1663                       (and enable-local-eval
1664                            (save-window-excursion
1665                              (switch-to-buffer (current-buffer))
1666                              (save-excursion
1667                                (beginning-of-line)
1668                                (set-window-start (selected-window) (point)))
1669                              (setq enable-local-eval
1670                                    (y-or-n-p (format "Process `eval' or hook local variables in file %s? "
1671                                                      (file-name-nondirectory buffer-file-name))))))))
1672              (if (eq var 'eval)
1673                  (save-excursion (eval val))
1674                (make-local-variable var)
1675                (set var val))
1676            (message "Ignoring `eval:' in file's local variables")))
1677         ;; Ordinary variable, really set it.
1678         (t (make-local-variable var)
1679            (set var val))))
1680 \f
1681 (defcustom change-major-mode-with-file-name t
1682   "*Non-nil means \\[write-file] should set the major mode from the file name.
1683 However, the mode will not be changed if
1684 \(1) a local variables list or the `-*-' line specifies a major mode, or
1685 \(2) the current major mode is a \"special\" mode,
1686 \    not suitable for ordinary files, or
1687 \(3) the new file name does not particularly specify any mode."
1688   :type 'boolean
1689   :group 'editing-basics)
1690
1691 (defun set-visited-file-name (filename &optional no-query along-with-file)
1692   "Change name of file visited in current buffer to FILENAME.
1693 The next time the buffer is saved it will go in the newly specified file.
1694 nil or empty string as argument means make buffer not be visiting any file.
1695 Remember to delete the initial contents of the minibuffer
1696 if you wish to pass an empty string as the argument.
1697
1698 The optional second argument NO-QUERY, if non-nil, inhibits asking for
1699 confirmation in the case where another buffer is already visiting FILENAME.
1700
1701 The optional third argument ALONG-WITH-FILE, if non-nil, means that
1702 the old visited file has been renamed to the new name FILENAME."
1703   (interactive "FSet visited file name: ")
1704   (if (buffer-base-buffer)
1705       (error "An indirect buffer cannot visit a file"))
1706   (let (truename)
1707     (if filename
1708         (setq filename
1709               (if (string-equal filename "")
1710                   nil
1711                 (expand-file-name filename))))
1712     (if filename
1713         (progn
1714           (setq truename (file-truename filename))
1715           ;; #### Do we need to check if truename is non-nil?
1716           (if find-file-use-truenames
1717               (setq filename truename))))
1718     (let ((buffer (and filename (find-buffer-visiting filename))))
1719       (and buffer (not (eq buffer (current-buffer)))
1720            (not no-query)
1721            (not (y-or-n-p (message "A buffer is visiting %s; proceed? "
1722                                    filename)))
1723            (error "Aborted")))
1724     (or (equal filename buffer-file-name)
1725         (progn
1726           (and filename (lock-buffer filename))
1727           (unlock-buffer)))
1728     (setq buffer-file-name filename)
1729     (if filename                        ; make buffer name reflect filename.
1730         (let ((new-name (file-name-nondirectory buffer-file-name)))
1731           (if (string= new-name "")
1732               (error "Empty file name"))
1733           (setq default-directory (file-name-directory buffer-file-name))
1734           (or (string= new-name (buffer-name))
1735               (rename-buffer new-name t))))
1736     (setq buffer-backed-up nil)
1737     (or along-with-file
1738         (clear-visited-file-modtime))
1739     (compute-buffer-file-truename) ; insert-file-contents does this too.
1740 ;    ;; Abbreviate the file names of the buffer.
1741 ;    (if truename
1742 ;        (progn
1743 ;          (setq buffer-file-truename (abbreviate-file-name truename))
1744 ;          (if find-file-visit-truename
1745 ;              (setq buffer-file-name buffer-file-truename))))
1746     (setq buffer-file-number
1747           (if filename
1748               (nthcdr 10 (file-attributes buffer-file-name))
1749               nil)))
1750   ;; write-file-hooks is normally used for things like ftp-find-file
1751   ;; that visit things that are not local files as if they were files.
1752   ;; Changing to visit an ordinary local file instead should flush the hook.
1753   (kill-local-variable 'write-file-hooks)
1754   (kill-local-variable 'after-save-hook)
1755   (kill-local-variable 'local-write-file-hooks)
1756   (kill-local-variable 'write-file-data-hooks)
1757   (kill-local-variable 'revert-buffer-function)
1758   (kill-local-variable 'backup-inhibited)
1759   ;; If buffer was read-only because of version control,
1760   ;; that reason is gone now, so make it writable.
1761   (when (boundp 'vc-mode)
1762     (if vc-mode
1763         (setq buffer-read-only nil))
1764     (kill-local-variable 'vc-mode))
1765   ;; Turn off backup files for certain file names.
1766   ;; Since this is a permanent local, the major mode won't eliminate it.
1767   (and buffer-file-name
1768        (not (funcall backup-enable-predicate buffer-file-name))
1769        (progn
1770          (make-local-variable 'backup-inhibited)
1771          (setq backup-inhibited t)))
1772   (let ((oauto buffer-auto-save-file-name))
1773     ;; If auto-save was not already on, turn it on if appropriate.
1774     (if (not buffer-auto-save-file-name)
1775         (and buffer-file-name auto-save-default
1776              (auto-save-mode t))
1777       ;; If auto save is on, start using a new name.
1778       ;; We deliberately don't rename or delete the old auto save
1779       ;; for the old visited file name.  This is because perhaps
1780       ;; the user wants to save the new state and then compare with the
1781       ;; previous state from the auto save file.
1782       (setq buffer-auto-save-file-name
1783             (make-auto-save-file-name)))
1784     ;; Rename the old auto save file if any.
1785     (and oauto buffer-auto-save-file-name
1786          (file-exists-p oauto)
1787          (rename-file oauto buffer-auto-save-file-name t)))
1788   (if buffer-file-name
1789       (not along-with-file)
1790       (set-buffer-modified-p t))
1791   ;; Update the major mode, if the file name determines it.
1792   (condition-case nil
1793       ;; Don't change the mode if it is special.
1794       (or (not change-major-mode-with-file-name)
1795           (get major-mode 'mode-class)
1796           ;; Don't change the mode if the local variable list specifies it.
1797           (hack-local-variables t)
1798           (set-auto-mode t))
1799     (error nil))
1800   ;; #### ??
1801   (run-hooks 'after-set-visited-file-name-hooks))
1802
1803 (defun write-file (filename &optional confirm codesys)
1804   "Write current buffer into file FILENAME.
1805 Makes buffer visit that file, and marks it not modified.
1806 If the buffer is already visiting a file, you can specify
1807 a directory name as FILENAME, to write a file of the same
1808 old name in that directory.
1809 If optional second arg CONFIRM is non-nil,
1810 ask for confirmation for overwriting an existing file.
1811 Under XEmacs/Mule, optional third argument specifies the
1812 coding system to use when encoding the file.  Interactively,
1813 with a prefix argument, you will be prompted for the coding system."
1814 ;;  (interactive "FWrite file: ")
1815   (interactive
1816    (list (if buffer-file-name
1817              (read-file-name "Write file: "
1818                                  nil nil nil nil)
1819            (read-file-name "Write file: "
1820                                (cdr (assq 'default-directory
1821                                           (buffer-local-variables)))
1822                                nil nil (buffer-name)))
1823          t
1824          (if (and current-prefix-arg (featurep 'mule))
1825              (read-coding-system "Coding system: "))))
1826   (and (eq (current-buffer) mouse-grabbed-buffer)
1827        (error "Can't write minibuffer window"))
1828   (or (null filename) (string-equal filename "")
1829       (progn
1830         ;; If arg is just a directory,
1831         ;; use same file name, but in that directory.
1832         (if (and (file-directory-p filename) buffer-file-name)
1833             (setq filename (concat (file-name-as-directory filename)
1834                                    (file-name-nondirectory buffer-file-name))))
1835         (and confirm
1836              (file-exists-p filename)
1837              (or (y-or-n-p (format "File `%s' exists; overwrite? " filename))
1838                  (error "Canceled")))
1839         (set-visited-file-name filename)))
1840   (set-buffer-modified-p t)
1841   (setq buffer-read-only nil)
1842   (if codesys
1843       (let ((buffer-file-coding-system (get-coding-system codesys)))
1844         (save-buffer))
1845     (save-buffer)))
1846 \f
1847 (defun backup-buffer ()
1848   "Make a backup of the disk file visited by the current buffer, if appropriate.
1849 This is normally done before saving the buffer the first time.
1850 If the value is non-nil, it is the result of `file-modes' on the original file;
1851 this means that the caller, after saving the buffer, should change the modes
1852 of the new file to agree with the old modes."
1853   (if buffer-file-name
1854       (let ((handler (find-file-name-handler buffer-file-name 'backup-buffer)))
1855         (if handler
1856             (funcall handler 'backup-buffer)
1857           (if (and make-backup-files
1858                    (not backup-inhibited)
1859                    (not buffer-backed-up)
1860                    (file-exists-p buffer-file-name)
1861                    (memq (aref (elt (file-attributes buffer-file-name) 8) 0)
1862                          '(?- ?l)))
1863               (let ((real-file-name buffer-file-name)
1864                     backup-info backupname targets setmodes)
1865                 ;; If specified name is a symbolic link, chase it to the target.
1866                 ;; Thus we make the backups in the directory where the real file is.
1867                 (setq real-file-name (file-chase-links real-file-name))
1868                 (setq backup-info (find-backup-file-name real-file-name)
1869                       backupname (car backup-info)
1870                       targets (cdr backup-info))
1871 ;;;     (if (file-directory-p buffer-file-name)
1872 ;;;         (error "Cannot save buffer in directory %s" buffer-file-name))
1873                 (if backup-info
1874                     (condition-case ()
1875                         (let ((delete-old-versions
1876                                ;; If have old versions to maybe delete,
1877                                ;; ask the user to confirm now, before doing anything.
1878                                ;; But don't actually delete til later.
1879                                (and targets
1880                                     (or (eq delete-old-versions t)
1881                                         (eq delete-old-versions nil))
1882                                     (or delete-old-versions
1883                                         (y-or-n-p (format "Delete excess backup versions of %s? "
1884                                                           real-file-name))))))
1885                           ;; Actually write the back up file.
1886                           (condition-case ()
1887                               (if (or file-precious-flag
1888                                         ;                         (file-symlink-p buffer-file-name)
1889                                       backup-by-copying
1890                                       (and backup-by-copying-when-linked
1891                                            (> (file-nlinks real-file-name) 1))
1892                                       (and backup-by-copying-when-mismatch
1893                                            (let ((attr (file-attributes real-file-name)))
1894                                              (or (nth 9 attr)
1895                                                  (not (file-ownership-preserved-p real-file-name))))))
1896                                   (condition-case ()
1897                                       (copy-file real-file-name backupname t t)
1898                                     (file-error
1899                                      ;; If copying fails because file BACKUPNAME
1900                                      ;; is not writable, delete that file and try again.
1901                                      (if (and (file-exists-p backupname)
1902                                               (not (file-writable-p backupname)))
1903                                          (delete-file backupname))
1904                                      (copy-file real-file-name backupname t t)))
1905                                 ;; rename-file should delete old backup.
1906                                 (rename-file real-file-name backupname t)
1907                                 (setq setmodes (file-modes backupname)))
1908                             (file-error
1909                              ;; If trouble writing the backup, write it in ~.
1910                              (setq backupname (expand-file-name "~/%backup%~"))
1911                              (message "Cannot write backup file; backing up in ~/%%backup%%~")
1912                              (sleep-for 1)
1913                              (condition-case ()
1914                                  (copy-file real-file-name backupname t t)
1915                                (file-error
1916                                 ;; If copying fails because file BACKUPNAME
1917                                 ;; is not writable, delete that file and try again.
1918                                 (if (and (file-exists-p backupname)
1919                                          (not (file-writable-p backupname)))
1920                                     (delete-file backupname))
1921                                 (copy-file real-file-name backupname t t)))))
1922                           (setq buffer-backed-up t)
1923                           ;; Now delete the old versions, if desired.
1924                           (if delete-old-versions
1925                               (while targets
1926                                 (ignore-file-errors (delete-file (car targets)))
1927                                 (setq targets (cdr targets))))
1928                           setmodes)
1929                       (file-error nil)))))))))
1930
1931 (defun file-name-sans-versions (name &optional keep-backup-version)
1932   "Return FILENAME sans backup versions or strings.
1933 This is a separate procedure so your site-init or startup file can
1934 redefine it.
1935 If the optional argument KEEP-BACKUP-VERSION is non-nil,
1936 we do not remove backup version numbers, only true file version numbers."
1937   (let ((handler (find-file-name-handler name 'file-name-sans-versions)))
1938     (if handler
1939         (funcall handler 'file-name-sans-versions name keep-backup-version)
1940       (substring name 0
1941                  (if keep-backup-version
1942                      (length name)
1943                    (or (string-match "\\.~[0-9.]+~\\'" name)
1944                        ;; XEmacs - VC uses extensions like ".~tagname~" or ".~1.1.5.2~"
1945                        (let ((pos (string-match "\\.~\\([^.~ \t]+\\|[0-9.]+\\)~\\'" name)))
1946                          (and pos
1947                               ;; #### - is this filesystem check too paranoid?
1948                               (file-exists-p (substring name 0 pos))
1949                               pos))
1950                        (string-match "~\\'" name)
1951                        (length name)))))))
1952
1953 (defun file-ownership-preserved-p (file)
1954   "Return t if deleting FILE and rewriting it would preserve the owner."
1955   (let ((handler (find-file-name-handler file 'file-ownership-preserved-p)))
1956     (if handler
1957         (funcall handler 'file-ownership-preserved-p file)
1958       (let ((attributes (file-attributes file)))
1959         ;; Return t if the file doesn't exist, since it's true that no
1960         ;; information would be lost by an (attempted) delete and create.
1961         (or (null attributes)
1962             (= (nth 2 attributes) (user-uid)))))))
1963
1964 (defun file-name-sans-extension (filename)
1965   "Return FILENAME sans final \"extension\".
1966 The extension, in a file name, is the part that follows the last `.'."
1967   (save-match-data
1968     (let ((file (file-name-sans-versions (file-name-nondirectory filename)))
1969           directory)
1970       (if (string-match "\\.[^.]*\\'" file)
1971           (if (setq directory (file-name-directory filename))
1972               (expand-file-name (substring file 0 (match-beginning 0))
1973                                 directory)
1974             (substring file 0 (match-beginning 0)))
1975         filename))))
1976
1977 (defun file-name-extension (filename &optional period)
1978   "Return FILENAME's final \"extension\".
1979 The extension, in a file name, is the part that follows the last `.'.
1980 Return nil for extensionless file names such as `foo'.
1981 Return the empty string for file names such as `foo.'.
1982
1983 If PERIOD is non-nil, then the returned value includes the period
1984 that delimits the extension, and if FILENAME has no extension,
1985 the value is \"\"."
1986   (save-match-data
1987     (let ((file (file-name-sans-versions (file-name-nondirectory filename))))
1988       (if (string-match "\\.[^.]*\\'" file)
1989           (substring file (+ (match-beginning 0) (if period 0 1)))
1990         (if period
1991             "")))))
1992
1993 (defun make-backup-file-name (file)
1994   "Create the non-numeric backup file name for FILE.
1995 This is a separate function so you can redefine it for customization."
1996   (if (eq system-type 'ms-dos)
1997       (let ((fn (file-name-nondirectory file)))
1998         (concat (file-name-directory file)
1999                 (if (string-match "\\([^.]*\\)\\(\\..*\\)?" fn)
2000                     (substring fn 0 (match-end 1)))
2001                 ".bak"))
2002     (concat file "~")))
2003
2004 (defun backup-file-name-p (file)
2005   "Return non-nil if FILE is a backup file name (numeric or not).
2006 This is a separate function so you can redefine it for customization.
2007 You may need to redefine `file-name-sans-versions' as well."
2008   (if (eq system-type 'ms-dos)
2009       (string-match "\\.bak\\'" file)
2010       (string-match "~\\'" file)))
2011
2012 ;; This is used in various files.
2013 ;; The usage of bv-length is not very clean,
2014 ;; but I can't see a good alternative,
2015 ;; so as of now I am leaving it alone.
2016 (defun backup-extract-version (fn)
2017   "Given the name of a numeric backup file, return the backup number.
2018 Uses the free variable `bv-length', whose value should be
2019 the index in the name where the version number begins."
2020   (declare (special bv-length))
2021   (if (and (string-match "[0-9]+~\\'" fn bv-length)
2022            (= (match-beginning 0) bv-length))
2023       (string-to-int (substring fn bv-length -1))
2024       0))
2025
2026 (defun find-backup-file-name (fn)
2027   "Find a file name for a backup file, and suggestions for deletions.
2028 Value is a list whose car is the name for the backup file
2029  and whose cdr is a list of old versions to consider deleting now.
2030 If the value is nil, don't make a backup."
2031   (let ((handler (find-file-name-handler fn 'find-backup-file-name)))
2032     ;; Run a handler for this function so that ange-ftp can refuse to do it.
2033     (if handler
2034         (funcall handler 'find-backup-file-name fn)
2035       (if (eq version-control 'never)
2036           (list (make-backup-file-name fn))
2037         (let* ((base-versions (concat (file-name-nondirectory fn) ".~"))
2038                ;; used by backup-extract-version:
2039                (bv-length (length base-versions))
2040                possibilities
2041                (versions nil)
2042                (high-water-mark 0)
2043                (deserve-versions-p nil)
2044                (number-to-delete 0))
2045           (condition-case ()
2046               (setq possibilities (file-name-all-completions
2047                                    base-versions
2048                                    (file-name-directory fn))
2049                     versions (sort (mapcar
2050                                     #'backup-extract-version
2051                                     possibilities)
2052                                    '<)
2053                     high-water-mark (apply #'max 0 versions)
2054                     deserve-versions-p (or version-control
2055                                            (> high-water-mark 0))
2056                     number-to-delete (- (length versions)
2057                                         kept-old-versions kept-new-versions -1))
2058             (file-error
2059              (setq possibilities nil)))
2060           (if (not deserve-versions-p)
2061               (list (make-backup-file-name fn))
2062             (cons (concat fn ".~" (int-to-string (1+ high-water-mark)) "~")
2063                   (if (and (> number-to-delete 0)
2064                            ;; Delete nothing if there is overflow
2065                            ;; in the number of versions to keep.
2066                            (>= (+ kept-new-versions kept-old-versions -1) 0))
2067                       (mapcar #'(lambda (n)
2068                                   (concat fn ".~" (int-to-string n) "~"))
2069                               (let ((v (nthcdr kept-old-versions versions)))
2070                                 (rplacd (nthcdr (1- number-to-delete) v) ())
2071                                 v))))))))))
2072
2073 (defun file-nlinks (filename)
2074   "Return number of names file FILENAME has."
2075   (car (cdr (file-attributes filename))))
2076
2077 (defun file-relative-name (filename &optional directory)
2078   "Convert FILENAME to be relative to DIRECTORY (default: default-directory).
2079 This function returns a relative file name which is equivalent to FILENAME
2080 when used with that default directory as the default.
2081 If this is impossible (which can happen on MSDOS and Windows
2082 when the file name and directory use different drive names)
2083 then it returns FILENAME."
2084   (save-match-data
2085     (let ((fname (expand-file-name filename)))
2086       (setq directory (file-name-as-directory
2087                        (expand-file-name (or directory default-directory))))
2088       ;; On Microsoft OSes, if FILENAME and DIRECTORY have different
2089       ;; drive names, they can't be relative, so return the absolute name.
2090       (if (and (memq system-type '(ms-dos windows-nt))
2091                (not (string-equal (substring fname  0 2)
2092                                   (substring directory 0 2))))
2093           filename
2094         (let ((ancestor ".")
2095               (fname-dir (file-name-as-directory fname)))
2096           (while (and (not (string-match (concat "^" (regexp-quote directory))
2097                                          fname-dir))
2098                       (not (string-match (concat "^" (regexp-quote directory)) fname)))
2099             (setq directory (file-name-directory (substring directory 0 -1))
2100                   ancestor (if (equal ancestor ".")
2101                                ".."
2102                              (concat "../" ancestor))))
2103           ;; Now ancestor is empty, or .., or ../.., etc.
2104           (if (string-match (concat "^" (regexp-quote directory)) fname)
2105               ;; We matched within FNAME's directory part.
2106               ;; Add the rest of FNAME onto ANCESTOR.
2107               (let ((rest (substring fname (match-end 0))))
2108                 (if (and (equal ancestor ".")
2109                          (not (equal rest "")))
2110                     ;; But don't bother with ANCESTOR if it would give us `./'.
2111                     rest
2112                   (concat (file-name-as-directory ancestor) rest)))
2113             ;; We matched FNAME's directory equivalent.
2114             ancestor))))))
2115 \f
2116 (defun save-buffer (&optional args)
2117   "Save current buffer in visited file if modified.  Versions described below.
2118
2119 By default, makes the previous version into a backup file
2120  if previously requested or if this is the first save.
2121 With 1 or 3 \\[universal-argument]'s, marks this version
2122  to become a backup when the next save is done.
2123 With 2 or 3 \\[universal-argument]'s,
2124  unconditionally makes the previous version into a backup file.
2125 With argument of 0, never makes the previous version into a backup file.
2126
2127 If a file's name is FOO, the names of its numbered backup versions are
2128  FOO.~i~ for various integers i.  A non-numbered backup file is called FOO~.
2129 Numeric backups (rather than FOO~) will be made if value of
2130  `version-control' is not the atom `never' and either there are already
2131  numeric versions of the file being backed up, or `version-control' is
2132  non-nil.
2133 We don't want excessive versions piling up, so there are variables
2134  `kept-old-versions', which tells XEmacs how many oldest versions to keep,
2135  and `kept-new-versions', which tells how many newest versions to keep.
2136  Defaults are 2 old versions and 2 new.
2137 `dired-kept-versions' controls dired's clean-directory (.) command.
2138 If `delete-old-versions' is nil, system will query user
2139  before trimming versions.  Otherwise it does it silently."
2140   (interactive "_p")
2141   (let ((modp (buffer-modified-p))
2142         (large (> (buffer-size) 50000))
2143         (make-backup-files (or (and make-backup-files (not (eq args 0)))
2144                                (memq args '(16 64)))))
2145     (and modp (memq args '(16 64)) (setq buffer-backed-up nil))
2146     (if (and modp large) (display-message
2147                           'progress (format "Saving file %s..."
2148                                             (buffer-file-name))))
2149     (basic-save-buffer)
2150     (and modp (memq args '(4 64)) (setq buffer-backed-up nil))))
2151
2152 (defun delete-auto-save-file-if-necessary (&optional force)
2153   "Delete auto-save file for current buffer if `delete-auto-save-files' is t.
2154 Normally delete only if the file was written by this XEmacs
2155 since the last real save, but optional arg FORCE non-nil means delete anyway."
2156   (and buffer-auto-save-file-name delete-auto-save-files
2157        (not (string= buffer-file-name buffer-auto-save-file-name))
2158        (or force (recent-auto-save-p))
2159        (progn
2160          (ignore-file-errors (delete-file buffer-auto-save-file-name))
2161          (set-buffer-auto-saved))))
2162
2163 ;; XEmacs change (from Sun)
2164 ;; used to communicate with continue-save-buffer:
2165 (defvar continue-save-buffer-hooks-tail nil)
2166
2167 ;; Not in FSFmacs
2168 (defun basic-write-file-data (realname truename)
2169   ;; call the hooks until the bytes are put
2170   ;; call write-region as a last resort
2171   (let ((region-written nil)
2172         (hooks write-file-data-hooks))
2173     (while (and hooks (not region-written))
2174       (setq region-written (funcall (car hooks) realname)
2175             hooks (cdr hooks)))
2176     (if (not region-written)
2177         (write-region (point-min) (point-max) realname nil t truename))))
2178
2179 (put 'after-save-hook 'permanent-local t)
2180 (defvar after-save-hook nil
2181   "Normal hook that is run after a buffer is saved to its file.
2182 These hooks are considered to pertain to the visited file.
2183 So this list is cleared if you change the visited file name.")
2184
2185 (defun files-fetch-hook-value (hook)
2186   (let ((localval (symbol-value hook))
2187         (globalval (default-value hook)))
2188     (if (memq t localval)
2189         (setq localval (append (delq t localval) (delq t globalval))))
2190     localval))
2191
2192 (defun basic-save-buffer ()
2193   "Save the current buffer in its visited file, if it has been modified.
2194 After saving the buffer, run `after-save-hook'."
2195   (interactive)
2196   (save-excursion
2197     ;; In an indirect buffer, save its base buffer instead.
2198     (if (buffer-base-buffer)
2199         (set-buffer (buffer-base-buffer)))
2200     (if (buffer-modified-p)
2201         (let ((recent-save (recent-auto-save-p)))
2202           ;; If buffer has no file name, ask user for one.
2203           (or buffer-file-name
2204               (let ((filename
2205                      (expand-file-name
2206                       (read-file-name "File to save in: ") nil)))
2207                 (and (file-exists-p filename)
2208                      (or (y-or-n-p (format "File `%s' exists; overwrite? "
2209                                            filename))
2210                          (error "Canceled")))
2211                 (set-visited-file-name filename)))
2212           (or (verify-visited-file-modtime (current-buffer))
2213               (not (file-exists-p buffer-file-name))
2214               (yes-or-no-p
2215                (format "%s has changed since visited or saved.  Save anyway? "
2216                        (file-name-nondirectory buffer-file-name)))
2217               (error "Save not confirmed"))
2218           (save-restriction
2219             (widen)
2220
2221             ;; Add final newline if required.  See `require-final-newline'.
2222             (when (and (not (eq (char-before (point-max)) ?\n)) ; common case
2223                        (char-before (point-max))                ; empty buffer?
2224                        (not (and (eq selective-display t)
2225                                  (eq (char-before (point-max)) ?\r)))
2226                        (or (eq require-final-newline t)
2227                            (and require-final-newline
2228                                 (y-or-n-p
2229                                  (format "Buffer %s does not end in newline.  Add one? "
2230                                          (buffer-name))))))
2231               (save-excursion
2232                 (goto-char (point-max))
2233                 (insert ?\n)))
2234
2235             ;; Run the write-file-hooks until one returns non-null.
2236             ;; Bind after-save-hook to nil while running the
2237             ;; write-file-hooks so that if this function is called
2238             ;; recursively (from inside a write-file-hook) the
2239             ;; after-hooks will only get run once (from the
2240             ;; outermost call).
2241             ;;
2242             ;; Ugh, have to duplicate logic of run-hook-with-args-until-success
2243             (let ((hooks (append (files-fetch-hook-value 'write-contents-hooks)
2244                                  (files-fetch-hook-value
2245                                   'local-write-file-hooks)
2246                                  (files-fetch-hook-value 'write-file-hooks)))
2247                   (after-save-hook nil)
2248                   (local-write-file-hooks nil)
2249                   (write-contents-hooks nil)
2250                   (write-file-hooks nil)
2251                   done)
2252               (while (and hooks
2253                           (let ((continue-save-buffer-hooks-tail hooks))
2254                             (not (setq done (funcall (car hooks))))))
2255                 (setq hooks (cdr hooks)))
2256               ;; If a hook returned t, file is already "written".
2257               ;; Otherwise, write it the usual way now.
2258               (if (not done)
2259                   (basic-save-buffer-1)))
2260             ;; XEmacs: next two clauses (buffer-file-number setting and
2261             ;; set-file-modes) moved into basic-save-buffer-1.
2262             )
2263           ;; If the auto-save file was recent before this command,
2264           ;; delete it now.
2265           (delete-auto-save-file-if-necessary recent-save)
2266           ;; Support VC `implicit' locking.
2267           (when (fboundp 'vc-after-save)
2268             (vc-after-save))
2269           (run-hooks 'after-save-hook))
2270       (display-message 'no-log "(No changes need to be saved)"))))
2271
2272 ;; This does the "real job" of writing a buffer into its visited file
2273 ;; and making a backup file.  This is what is normally done
2274 ;; but inhibited if one of write-file-hooks returns non-nil.
2275 ;; It returns a value to store in setmodes.
2276 (defun basic-save-buffer-1 ()
2277   (let (setmodes tempsetmodes)
2278     (if (not (file-writable-p buffer-file-name))
2279         (let ((dir (file-name-directory buffer-file-name)))
2280           (if (not (file-directory-p dir))
2281               (error "%s is not a directory" dir)
2282             (if (not (file-exists-p buffer-file-name))
2283                 (error "Directory %s write-protected" dir)
2284               (if (yes-or-no-p
2285                    (format "File %s is write-protected; try to save anyway? "
2286                            (file-name-nondirectory
2287                             buffer-file-name)))
2288                   (setq tempsetmodes t)
2289                 (error
2290                  "Attempt to save to a file which you aren't allowed to write"))))))
2291     (or buffer-backed-up
2292         (setq setmodes (backup-buffer)))
2293     (let ((dir (file-name-directory buffer-file-name)))
2294       (if (and file-precious-flag
2295                (file-writable-p dir))
2296           ;; If file is precious, write temp name, then rename it.
2297           ;; This requires write access to the containing dir,
2298           ;; which is why we don't try it if we don't have that access.
2299           (let ((realname buffer-file-name)
2300                 tempname nogood i succeed
2301                 (old-modtime (visited-file-modtime)))
2302             (setq i 0)
2303             (setq nogood t)
2304             ;; Find the temporary name to write under.
2305             (while nogood
2306               (setq tempname (format "%s#tmp#%d" dir i))
2307               (setq nogood (file-exists-p tempname))
2308               (setq i (1+ i)))
2309             (unwind-protect
2310                 (progn (clear-visited-file-modtime)
2311                        (write-region (point-min) (point-max)
2312                                      tempname nil realname
2313                                      buffer-file-truename)
2314                        (setq succeed t))
2315               ;; If writing the temp file fails,
2316               ;; delete the temp file.
2317               (or succeed
2318                   (progn
2319                     (delete-file tempname)
2320                     (set-visited-file-modtime old-modtime))))
2321             ;; Since we have created an entirely new file
2322             ;; and renamed it, make sure it gets the
2323             ;; right permission bits set.
2324             (setq setmodes (file-modes buffer-file-name))
2325             ;; We succeeded in writing the temp file,
2326             ;; so rename it.
2327             (rename-file tempname buffer-file-name t))
2328         ;; If file not writable, see if we can make it writable
2329         ;; temporarily while we write it.
2330         ;; But no need to do so if we have just backed it up
2331         ;; (setmodes is set) because that says we're superseding.
2332         (cond ((and tempsetmodes (not setmodes))
2333                ;; Change the mode back, after writing.
2334                (setq setmodes (file-modes buffer-file-name))
2335                (set-file-modes buffer-file-name 511)))
2336         (basic-write-file-data buffer-file-name buffer-file-truename)))
2337     (setq buffer-file-number
2338           (if buffer-file-name
2339               (nth 10 (file-attributes buffer-file-name))
2340             nil))
2341     (if setmodes
2342         (condition-case ()
2343             (set-file-modes buffer-file-name setmodes)
2344           (error nil)))))
2345
2346 ;; XEmacs change, from Sun
2347 (defun continue-save-buffer ()
2348   "Provide a clean way for a write-file-hook to wrap AROUND
2349 the execution of the remaining hooks and writing to disk.
2350 Do not call this function except from a functions
2351 on the write-file-hooks or write-contents-hooks list.
2352 A hook that calls this function must return non-nil,
2353 to signal completion to its caller.  continue-save-buffer
2354 always returns non-nil."
2355   (let ((hooks (cdr (or continue-save-buffer-hooks-tail
2356                         (error
2357          "continue-save-buffer called outside a write-file-hook!"))))
2358         (done nil))
2359     ;; Do something like this:
2360     ;; (let ((write-file-hooks hooks)) (basic-save-buffer))
2361     ;; First run the rest of the hooks.
2362     (while (and hooks
2363                 (let ((continue-save-buffer-hooks-tail hooks))
2364                   (not (setq done (funcall (car hooks))))))
2365       (setq hooks (cdr hooks)))
2366     ;;
2367     ;; If a hook returned t, file is already "written".
2368     (if (not done)
2369         (basic-save-buffer-1))
2370     'continue-save-buffer))
2371
2372 (defcustom save-some-buffers-query-display-buffer t
2373   "*Non-nil makes `\\[save-some-buffers]' switch to the buffer offered for saving."
2374   :type 'boolean
2375   :group 'editing-basics)
2376
2377 (defun save-some-buffers (&optional arg exiting)
2378   "Save some modified file-visiting buffers.  Asks user about each one.
2379 Optional argument (the prefix) non-nil means save all with no questions.
2380 Optional second argument EXITING means ask about certain non-file buffers
2381  as well as about file buffers."
2382   (interactive "P")
2383   (save-excursion
2384     ;; `delete-other-windows' can bomb during autoloads generation, so
2385     ;; guard it well.
2386     (if (or noninteractive
2387             (eq (selected-window) (minibuffer-window))
2388             (not save-some-buffers-query-display-buffer))
2389         ;; If playing with windows is unsafe or undesired, just do the
2390         ;; usual drill.
2391         (save-some-buffers-1 arg exiting nil)
2392       ;; Else, protect the windows.
2393       (when (save-window-excursion
2394               (save-some-buffers-1 arg exiting t))
2395         ;; Force redisplay.
2396         (sit-for 0)))))
2397
2398 ;; XEmacs - do not use queried flag
2399 (defun save-some-buffers-1 (arg exiting switch-buffer)
2400   (let* ((switched nil)
2401          (files-done
2402           (map-y-or-n-p
2403            (lambda (buffer)
2404              (and (buffer-modified-p buffer)
2405                   (not (buffer-base-buffer buffer))
2406                   ;; XEmacs addition:
2407                   (not (symbol-value-in-buffer 'save-buffers-skip buffer))
2408                   (or
2409                    (buffer-file-name buffer)
2410                    (and exiting
2411                         (progn
2412                           (set-buffer buffer)
2413                           (and buffer-offer-save (> (buffer-size) 0)))))
2414                   (if arg
2415                       t
2416                     ;; #### We should provide a per-buffer means to
2417                     ;; disable the switching.  For instance, you might
2418                     ;; want to turn it off for buffers the contents of
2419                     ;; which is meaningless to humans, such as
2420                     ;; `.newsrc.eld'.
2421                     (when switch-buffer
2422                       (unless (one-window-p)
2423                         (delete-other-windows))
2424                       (setq switched t)
2425                       ;; #### Consider using `display-buffer' here for 21.1!
2426                       ;;(display-buffer buffer nil (selected-frame)))
2427                       (switch-to-buffer buffer t))
2428                     (if (buffer-file-name buffer)
2429                         (format "Save file %s? "
2430                                 (buffer-file-name buffer))
2431                       (format "Save buffer %s? "
2432                               (buffer-name buffer))))))
2433            (lambda (buffer)
2434              (set-buffer buffer)
2435              (condition-case ()
2436                  (save-buffer)
2437                (error nil)))
2438            (buffer-list)
2439            '("buffer" "buffers" "save")
2440            ;;instead of this we just say "yes all", "no all", etc.
2441            ;;"save all the rest"
2442            ;;"save only this buffer" "save no more buffers")
2443            ;; this is rather bogus. --ben
2444            ;; (it makes the dialog box too big, and you get an error
2445            ;; "wrong type argument: framep, nil" when you hit q after
2446            ;; choosing the option from the dialog box)
2447
2448            ;; We should fix the dialog box rather than disabling
2449            ;; this!  --hniksic
2450            (list (list ?\C-r (lambda (buf)
2451                                ;; #### FSF has an EXIT-ACTION argument
2452                                ;; to `view-buffer'.
2453                                (view-buffer buf)
2454                                (setq view-exit-action
2455                                      (lambda (ignore)
2456                                        (exit-recursive-edit)))
2457                                (recursive-edit)
2458                                ;; Return nil to ask about BUF again.
2459                                nil)
2460                        "display the current buffer"))))
2461          (abbrevs-done
2462           (and save-abbrevs abbrevs-changed
2463                (progn
2464                  (if (or arg
2465                          (y-or-n-p (format "Save abbrevs in %s? " abbrev-file-name)))
2466                      (write-abbrev-file nil))
2467                  ;; Don't keep bothering user if he says no.
2468                  (setq abbrevs-changed nil)
2469                  t))))
2470     (or (> files-done 0) abbrevs-done
2471         (display-message 'no-log "(No files need saving)"))
2472     switched))
2473
2474 \f
2475 (defun not-modified (&optional arg)
2476   "Mark current buffer as unmodified, not needing to be saved.
2477 With prefix arg, mark buffer as modified, so \\[save-buffer] will save.
2478
2479 It is not a good idea to use this function in Lisp programs, because it
2480 prints a message in the minibuffer.  Instead, use `set-buffer-modified-p'."
2481   (interactive "_P")
2482   (if arg ;; rewritten for I18N3 snarfing
2483       (display-message 'command "Modification-flag set")
2484     (display-message 'command "Modification-flag cleared"))
2485   (set-buffer-modified-p arg))
2486
2487 (defun toggle-read-only (&optional arg)
2488   "Toggle the current buffer's read-only status.
2489 With arg, set read-only iff arg is positive."
2490   (interactive "_P")
2491   (setq buffer-read-only
2492         (if (null arg)
2493             (not buffer-read-only)
2494             (> (prefix-numeric-value arg) 0)))
2495   ;; Force modeline redisplay
2496   (redraw-modeline))
2497
2498 (defun insert-file (filename &optional codesys)
2499   "Insert contents of file FILENAME into buffer after point.
2500 Set mark after the inserted text.
2501
2502 Under XEmacs/Mule, optional second argument specifies the
2503 coding system to use when decoding the file.  Interactively,
2504 with a prefix argument, you will be prompted for the coding system.
2505
2506 This function is meant for the user to run interactively.
2507 Don't call it from programs!  Use `insert-file-contents' instead.
2508 \(Its calling sequence is different; see its documentation)."
2509   (interactive "*fInsert file: \nZCoding system: ")
2510   (if (file-directory-p filename)
2511       (signal 'file-error (list "Opening input file" "file is a directory"
2512                                 filename)))
2513   (let ((tem
2514          (if codesys
2515              (let ((coding-system-for-read
2516                     (get-coding-system codesys)))
2517                (insert-file-contents filename))
2518            (insert-file-contents filename))))
2519     (push-mark (+ (point) (car (cdr tem))))))
2520
2521 (defun append-to-file (start end filename &optional codesys)
2522   "Append the contents of the region to the end of file FILENAME.
2523 When called from a function, expects three arguments,
2524 START, END and FILENAME.  START and END are buffer positions
2525 saying what text to write.
2526 Under XEmacs/Mule, optional fourth argument specifies the
2527 coding system to use when encoding the file.  Interactively,
2528 with a prefix argument, you will be prompted for the coding system."
2529   (interactive "r\nFAppend to file: \nZCoding system: ")
2530   (if codesys
2531       (let ((buffer-file-coding-system (get-coding-system codesys)))
2532         (write-region start end filename t))
2533     (write-region start end filename t)))
2534
2535 (defun file-newest-backup (filename)
2536   "Return most recent backup file for FILENAME or nil if no backups exist."
2537   (let* ((filename (expand-file-name filename))
2538          (file (file-name-nondirectory filename))
2539          (dir  (file-name-directory    filename))
2540          (comp (file-name-all-completions file dir))
2541          newest)
2542     (while comp
2543       (setq file (concat dir (car comp))
2544             comp (cdr comp))
2545       (if (and (backup-file-name-p file)
2546                (or (null newest) (file-newer-than-file-p file newest)))
2547           (setq newest file)))
2548     newest))
2549
2550 (defun rename-uniquely ()
2551   "Rename current buffer to a similar name not already taken.
2552 This function is useful for creating multiple shell process buffers
2553 or multiple mail buffers, etc."
2554   (interactive)
2555   (save-match-data
2556     (let* ((base-name (if (and (string-match "<[0-9]+>\\'" (buffer-name))
2557                                (not (and buffer-file-name
2558                                          (string= (buffer-name)
2559                                                   (file-name-nondirectory
2560                                                    buffer-file-name)))))
2561                           ;; If the existing buffer name has a <NNN>,
2562                           ;; which isn't part of the file name (if any),
2563                           ;; then get rid of that.
2564                           (substring (buffer-name) 0 (match-beginning 0))
2565                         (buffer-name)))
2566            (new-buf (generate-new-buffer base-name))
2567            (name (buffer-name new-buf)))
2568       (kill-buffer new-buf)
2569       (rename-buffer name)
2570       (redraw-modeline))))
2571
2572 (defun make-directory-path (path)
2573   "Create all the directories along path that don't exist yet."
2574   (interactive "Fdirectory path to create: ")
2575   (make-directory path t))
2576
2577 (defun make-directory (dir &optional parents)
2578   "Create the directory DIR and any nonexistent parent dirs.
2579 Interactively, the default choice of directory to create
2580 is the current default directory for file names.
2581 That is useful when you have visited a file in a nonexistent directory.
2582
2583 Noninteractively, the second (optional) argument PARENTS says whether
2584 to create parent directories if they don't exist."
2585   (interactive (list (let ((current-prefix-arg current-prefix-arg))
2586                        (read-directory-name "Create directory: "))
2587                      current-prefix-arg))
2588   (let ((handler (find-file-name-handler dir 'make-directory)))
2589     (if handler
2590         (funcall handler 'make-directory dir parents)
2591       (if (not parents)
2592           (make-directory-internal dir)
2593         (let ((dir (directory-file-name (expand-file-name dir)))
2594               create-list)
2595           (while (not (file-exists-p dir))
2596             (setq create-list (cons dir create-list)
2597                   dir (directory-file-name (file-name-directory dir))))
2598           (while create-list
2599             (make-directory-internal (car create-list))
2600             (setq create-list (cdr create-list))))))))
2601 \f
2602 (put 'revert-buffer-function 'permanent-local t)
2603 (defvar revert-buffer-function nil
2604   "Function to use to revert this buffer, or nil to do the default.
2605 The function receives two arguments IGNORE-AUTO and NOCONFIRM,
2606 which are the arguments that `revert-buffer' received.")
2607
2608 (put 'revert-buffer-insert-file-contents-function 'permanent-local t)
2609 (defvar revert-buffer-insert-file-contents-function nil
2610   "Function to use to insert contents when reverting this buffer.
2611 Gets two args, first the nominal file name to use,
2612 and second, t if reading the auto-save file.")
2613
2614 (defvar before-revert-hook nil
2615   "Normal hook for `revert-buffer' to run before reverting.
2616 If `revert-buffer-function' is used to override the normal revert
2617 mechanism, this hook is not used.")
2618
2619 (defvar after-revert-hook nil
2620   "Normal hook for `revert-buffer' to run after reverting.
2621 Note that the hook value that it runs is the value that was in effect
2622 before reverting; that makes a difference if you have buffer-local
2623 hook functions.
2624
2625 If `revert-buffer-function' is used to override the normal revert
2626 mechanism, this hook is not used.")
2627
2628 (defvar revert-buffer-internal-hook nil
2629   "Don't use this.")
2630
2631 (defun revert-buffer (&optional ignore-auto noconfirm preserve-modes)
2632   "Replace the buffer text with the text of the visited file on disk.
2633 This undoes all changes since the file was visited or saved.
2634 With a prefix argument, offer to revert from latest auto-save file, if
2635 that is more recent than the visited file.
2636
2637 This command also works for special buffers that contain text which
2638 doesn't come from a file, but reflects some other data base instead:
2639 for example, Dired buffers and buffer-list buffers.  In these cases,
2640 it reconstructs the buffer contents from the appropriate data base.
2641
2642 When called from Lisp, the first argument is IGNORE-AUTO; only offer
2643 to revert from the auto-save file when this is nil.  Note that the
2644 sense of this argument is the reverse of the prefix argument, for the
2645 sake of backward compatibility.  IGNORE-AUTO is optional, defaulting
2646 to nil.
2647
2648 Optional second argument NOCONFIRM means don't ask for confirmation at
2649 all.
2650
2651 Optional third argument PRESERVE-MODES non-nil means don't alter
2652 the files modes.  Normally we reinitialize them using `normal-mode'.
2653
2654 If the value of `revert-buffer-function' is non-nil, it is called to
2655 do all the work for this command.  Otherwise, the hooks
2656 `before-revert-hook' and `after-revert-hook' are run at the beginning
2657 and the end, and if `revert-buffer-insert-file-contents-function' is
2658 non-nil, it is called instead of rereading visited file contents."
2659
2660   ;; I admit it's odd to reverse the sense of the prefix argument, but
2661   ;; there is a lot of code out there which assumes that the first
2662   ;; argument should be t to avoid consulting the auto-save file, and
2663   ;; there's no straightforward way to encourage authors to notice a
2664   ;; reversal of the argument sense.  So I'm just changing the user
2665   ;; interface, but leaving the programmatic interface the same.
2666   (interactive (list (not current-prefix-arg)))
2667   (if revert-buffer-function
2668       (funcall revert-buffer-function ignore-auto noconfirm)
2669     (let* ((opoint (point))
2670            (auto-save-p (and (not ignore-auto)
2671                              (recent-auto-save-p)
2672                              buffer-auto-save-file-name
2673                              (file-readable-p buffer-auto-save-file-name)
2674                              (y-or-n-p
2675    "Buffer has been auto-saved recently.  Revert from auto-save file? ")))
2676            (file-name (if auto-save-p
2677                           buffer-auto-save-file-name
2678                         buffer-file-name)))
2679       (cond ((null file-name)
2680              (error "Buffer does not seem to be associated with any file"))
2681             ((or noconfirm
2682                  (and (not (buffer-modified-p))
2683                       (let (found)
2684                         (dolist (rx revert-without-query found)
2685                           (when (string-match rx file-name)
2686                             (setq found t)))))
2687                  (yes-or-no-p (format "Revert buffer from file %s? "
2688                                       file-name)))
2689              (run-hooks 'before-revert-hook)
2690              ;; If file was backed up but has changed since,
2691              ;; we shd make another backup.
2692              (and (not auto-save-p)
2693                   (not (verify-visited-file-modtime (current-buffer)))
2694                   (setq buffer-backed-up nil))
2695              ;; Get rid of all undo records for this buffer.
2696              (or (eq buffer-undo-list t)
2697                  (setq buffer-undo-list nil))
2698              ;; Effectively copy the after-revert-hook status,
2699              ;; since after-find-file will clobber it.
2700              (let ((global-hook (default-value 'after-revert-hook))
2701                    (local-hook-p (local-variable-p 'after-revert-hook
2702                                                    (current-buffer)))
2703                    (local-hook (and (local-variable-p 'after-revert-hook
2704                                                       (current-buffer))
2705                                     after-revert-hook)))
2706                (let (buffer-read-only
2707                      ;; Don't make undo records for the reversion.
2708                      (buffer-undo-list t))
2709                  (if revert-buffer-insert-file-contents-function
2710                      (funcall revert-buffer-insert-file-contents-function
2711                               file-name auto-save-p)
2712                    (if (not (file-exists-p file-name))
2713                        (error "File %s no longer exists!" file-name))
2714                    ;; Bind buffer-file-name to nil
2715                    ;; so that we don't try to lock the file.
2716                    (let ((buffer-file-name nil))
2717                      (or auto-save-p
2718                          (unlock-buffer)))
2719                    (widen)
2720                    (insert-file-contents file-name (not auto-save-p)
2721                                          nil nil t)))
2722                (goto-char (min opoint (point-max)))
2723                ;; Recompute the truename in case changes in symlinks
2724                ;; have changed the truename.
2725                ;XEmacs: already done by insert-file-contents
2726                ;;(setq buffer-file-truename
2727                      ;;(abbreviate-file-name (file-truename buffer-file-name)))
2728                (after-find-file nil nil t t preserve-modes)
2729                ;; Run after-revert-hook as it was before we reverted.
2730                (setq-default revert-buffer-internal-hook global-hook)
2731                (if local-hook-p
2732                    (progn
2733                      (make-local-variable 'revert-buffer-internal-hook)
2734                      (setq revert-buffer-internal-hook local-hook))
2735                  (kill-local-variable 'revert-buffer-internal-hook))
2736                (run-hooks 'revert-buffer-internal-hook))
2737              t)))))
2738
2739 (defun recover-file (file)
2740   "Visit file FILE, but get contents from its last auto-save file."
2741   ;; Actually putting the file name in the minibuffer should be used
2742   ;; only rarely.
2743   ;; Not just because users often use the default.
2744   (interactive "FRecover file: ")
2745   (setq file (expand-file-name file))
2746   (let ((handler (or (find-file-name-handler file 'recover-file)
2747                     (find-file-name-handler
2748                      (let ((buffer-file-name file))
2749                        (make-auto-save-file-name))
2750                      'recover-file))))
2751     (if handler
2752         (funcall handler 'recover-file file)
2753       (if (auto-save-file-name-p file)
2754           (error "%s is an auto-save file" file))
2755       (let ((file-name (let ((buffer-file-name file))
2756                          (make-auto-save-file-name))))
2757         (cond ((if (file-exists-p file)
2758                    (not (file-newer-than-file-p file-name file))
2759                  (not (file-exists-p file-name)))
2760                (error "Auto-save file %s not current" file-name))
2761               ((save-window-excursion
2762                  (if (not (eq system-type 'windows-nt))
2763                      (with-output-to-temp-buffer "*Directory*"
2764                        (buffer-disable-undo standard-output)
2765                        (call-process "ls" nil standard-output nil
2766                                      (if (file-symlink-p file) "-lL" "-l")
2767                                      file file-name)))
2768                  (yes-or-no-p (format "Recover auto save file %s? " file-name)))
2769                (switch-to-buffer (find-file-noselect file t))
2770                (let ((buffer-read-only nil))
2771                  (erase-buffer)
2772                  (insert-file-contents file-name nil))
2773                (after-find-file nil nil t))
2774               (t (error "Recover-file cancelled.")))))))
2775
2776 (defun recover-session ()
2777   "Recover auto save files from a previous Emacs session.
2778 This command first displays a Dired buffer showing you the
2779 previous sessions that you could recover from.
2780 To choose one, move point to the proper line and then type C-c C-c.
2781 Then you'll be asked about a number of files to recover."
2782   (interactive)
2783   (unless (fboundp 'dired)
2784     (error "recover-session requires dired"))
2785   (if (null auto-save-list-file-prefix)
2786       (error
2787        "You set `auto-save-list-file-prefix' to disable making session files"))
2788   (dired (concat auto-save-list-file-prefix "*"))
2789   (goto-char (point-min))
2790   (or (looking-at "Move to the session you want to recover,")
2791       (let ((inhibit-read-only t))
2792         (insert "Move to the session you want to recover,\n"
2793                 "then type C-c C-c to select it.\n\n"
2794                 "You can also delete some of these files;\n"
2795                 "type d on a line to mark that file for deletion.\n\n")))
2796   (use-local-map (let ((map (make-sparse-keymap)))
2797                    (set-keymap-parents map (list (current-local-map)))
2798                    map))
2799   (define-key (current-local-map) "\C-c\C-c" 'recover-session-finish))
2800
2801 (defun recover-session-finish ()
2802   "Choose one saved session to recover auto-save files from.
2803 This command is used in the special Dired buffer created by
2804 \\[recover-session]."
2805   (interactive)
2806   ;; Get the name of the session file to recover from.
2807   (let ((file (dired-get-filename))
2808         files
2809         (buffer (get-buffer-create " *recover*")))
2810     ;; #### dired-do-flagged-delete in FSF.
2811     ;; This version is for ange-ftp
2812     ;;(dired-do-deletions t)
2813     ;; This version is for efs
2814     (dired-expunge-deletions)
2815     (unwind-protect
2816         (save-excursion
2817           ;; Read in the auto-save-list file.
2818           (set-buffer buffer)
2819           (erase-buffer)
2820           (insert-file-contents file)
2821           ;; Loop thru the text of that file
2822           ;; and get out the names of the files to recover.
2823           (while (not (eobp))
2824             (let (thisfile autofile)
2825               (if (eolp)
2826                   ;; This is a pair of lines for a non-file-visiting buffer.
2827                   ;; Get the auto-save file name and manufacture
2828                   ;; a "visited file name" from that.
2829                   (progn
2830                     (forward-line 1)
2831                     (setq autofile
2832                           (buffer-substring-no-properties
2833                            (point)
2834                            (save-excursion
2835                              (end-of-line)
2836                              (point))))
2837                     (setq thisfile
2838                           (expand-file-name
2839                            (substring
2840                             (file-name-nondirectory autofile)
2841                             1 -1)
2842                            (file-name-directory autofile)))
2843                     (forward-line 1))
2844                 ;; This pair of lines is a file-visiting
2845                 ;; buffer.  Use the visited file name.
2846                 (progn
2847                   (setq thisfile
2848                         (buffer-substring-no-properties
2849                          (point) (progn (end-of-line) (point))))
2850                   (forward-line 1)
2851                   (setq autofile
2852                         (buffer-substring-no-properties
2853                          (point) (progn (end-of-line) (point))))
2854                   (forward-line 1)))
2855               ;; Ignore a file if its auto-save file does not exist now.
2856               (if (file-exists-p autofile)
2857                   (setq files (cons thisfile files)))))
2858           (setq files (nreverse files))
2859           ;; The file contains a pair of line for each auto-saved buffer.
2860           ;; The first line of the pair contains the visited file name
2861           ;; or is empty if the buffer was not visiting a file.
2862           ;; The second line is the auto-save file name.
2863           (if files
2864               (map-y-or-n-p  "Recover %s? "
2865                              (lambda (file)
2866                                (condition-case nil
2867                                    (save-excursion (recover-file file))
2868                                  (error
2869                                   "Failed to recover `%s'" file)))
2870                              files
2871                              '("file" "files" "recover"))
2872             (message "No files can be recovered from this session now")))
2873       (kill-buffer buffer))))
2874
2875 (defun kill-some-buffers (&optional list)
2876   "For each buffer in LIST, ask whether to kill it.
2877 LIST defaults to all existing live buffers."
2878   (interactive)
2879   (if (null list)
2880       (setq list (buffer-list)))
2881   (while list
2882     (let* ((buffer (car list))
2883            (name (buffer-name buffer)))
2884       (and (not (string-equal name ""))
2885            (/= (aref name 0) ?\ )
2886            (yes-or-no-p
2887             (format
2888              (if (buffer-modified-p buffer)
2889                  (gettext "Buffer %s HAS BEEN EDITED.  Kill? ")
2890                (gettext "Buffer %s is unmodified.  Kill? "))
2891              name))
2892            (kill-buffer buffer)))
2893     (setq list (cdr list))))
2894 \f
2895 (defun auto-save-mode (arg)
2896   "Toggle auto-saving of contents of current buffer.
2897 With prefix argument ARG, turn auto-saving on if positive, else off."
2898   (interactive "P")
2899   (setq buffer-auto-save-file-name
2900         (and (if (null arg)
2901                  (or (not buffer-auto-save-file-name)
2902                      ;; If autosave is off because buffer has shrunk,
2903                      ;; then toggling should turn it on.
2904                      (< buffer-saved-size 0))
2905                (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0))))
2906              (if (and buffer-file-name auto-save-visited-file-name
2907                       (not buffer-read-only))
2908                  buffer-file-name
2909                (make-auto-save-file-name))))
2910   ;; If -1 was stored here, to temporarily turn off saving,
2911   ;; turn it back on.
2912   (and (< buffer-saved-size 0)
2913        (setq buffer-saved-size 0))
2914   (if (interactive-p)
2915       (if buffer-auto-save-file-name ;; rewritten for I18N3 snarfing
2916           (display-message 'command "Auto-save on (in this buffer)")
2917         (display-message 'command "Auto-save off (in this buffer)")))
2918   buffer-auto-save-file-name)
2919
2920 (defun rename-auto-save-file ()
2921   "Adjust current buffer's auto save file name for current conditions.
2922 Also rename any existing auto save file, if it was made in this session."
2923   (let ((osave buffer-auto-save-file-name))
2924     (setq buffer-auto-save-file-name
2925           (make-auto-save-file-name))
2926     (if (and osave buffer-auto-save-file-name
2927              (not (string= buffer-auto-save-file-name buffer-file-name))
2928              (not (string= buffer-auto-save-file-name osave))
2929              (file-exists-p osave)
2930              (recent-auto-save-p))
2931         (rename-file osave buffer-auto-save-file-name t))))
2932
2933 ;; see also ../packages/auto-save.el
2934 (defun make-auto-save-file-name (&optional filename)
2935   "Return file name to use for auto-saves of current buffer.
2936 Does not consider `auto-save-visited-file-name' as that variable is checked
2937 before calling this function.  You can redefine this for customization.
2938 See also `auto-save-file-name-p'."
2939   (let ((fname (or filename buffer-file-name))
2940         name)
2941     (setq name
2942           (if fname
2943               (concat (file-name-directory fname)
2944                       "#"
2945                       (file-name-nondirectory fname)
2946                       "#")
2947
2948             ;; Deal with buffers that don't have any associated files.  (Mail
2949             ;; mode tends to create a good number of these.)
2950
2951             (let ((buffer-name (buffer-name))
2952                   (limit 0))
2953               ;; Use technique from Sebastian Kremer's auto-save
2954               ;; package to turn slashes into \\!.  This ensures that
2955               ;; the auto-save buffer name is unique.
2956
2957               ;; #### - yuck!  yuck!  yuck!  move this functionality
2958               ;; somewhere else and make the name translation customizable.
2959               ;; Using "\!" as part of a filename on a UNIX filesystem is nearly
2960               ;; IMPOSSIBLE to get past a shell parser.  -stig
2961
2962               (while (string-match "[/\\]" buffer-name limit)
2963                 (setq buffer-name
2964                       (concat (substring buffer-name 0 (match-beginning 0))
2965                               (if (string= (substring buffer-name
2966                                                       (match-beginning 0)
2967                                                       (match-end 0))
2968                                            "/")
2969                                   "\\!"
2970                                 "\\\\")
2971                               (substring buffer-name (match-end 0))))
2972                 (setq limit (1+ (match-end 0))))
2973
2974               ;;    (expand-file-name (format "#%s#%s#" (buffer-name) (make-temp-name "")))
2975
2976               ;; jwz: putting the emacs PID in the auto-save file name
2977               ;; is bad news, because that defeats auto-save-recovery of
2978               ;; *mail* buffers -- the (sensible) code in sendmail.el
2979               ;; calls (make-auto-save-file-name) to determine whether
2980               ;; there is unsent, auto-saved mail to recover.  If that
2981               ;; mail came from a previous emacs process (far and away
2982               ;; the most likely case) then this can never succeed as
2983               ;; the pid differs.
2984
2985               (expand-file-name (format "#%s#" buffer-name)))
2986             ))
2987     ;; don't try to write auto-save files in unwritable places.  Unless
2988     ;; there's already an autosave file here, put ours somewhere safe. --Stig
2989     (if (or (file-writable-p name)
2990             (file-exists-p name))
2991         name
2992       (expand-file-name (concat "~/" (file-name-nondirectory name))))))
2993
2994 (defun auto-save-file-name-p (filename)
2995   "Return non-nil if FILENAME can be yielded by `make-auto-save-file-name'.
2996 FILENAME should lack slashes.
2997 You can redefine this for customization."
2998   (string-match "\\`#.*#\\'" filename))
2999 \f
3000 (defun wildcard-to-regexp (wildcard)
3001   "Given a shell file name pattern WILDCARD, return an equivalent regexp.
3002 The generated regexp will match a filename iff the filename
3003 matches that wildcard according to shell rules.  Only wildcards known
3004 by `sh' are supported."
3005   (let* ((i (string-match "[[.*+\\^$?]" wildcard))
3006          ;; Copy the initial run of non-special characters.
3007          (result (substring wildcard 0 i))
3008          (len (length wildcard)))
3009     ;; If no special characters, we're almost done.
3010     (if i
3011         (while (< i len)
3012           (let ((ch (aref wildcard i))
3013                 j)
3014             (setq
3015              result
3016              (concat result
3017                      (cond
3018                       ((eq ch ?\[)      ; [...] maps to regexp char class
3019                        (progn
3020                          (setq i (1+ i))
3021                          (concat
3022                           (cond
3023                            ((eq (aref wildcard i) ?!) ; [!...] -> [^...]
3024                             (progn
3025                               (setq i (1+ i))
3026                               (if (eq (aref wildcard i) ?\])
3027                                   (progn
3028                                     (setq i (1+ i))
3029                                     "[^]")
3030                                 "[^")))
3031                            ((eq (aref wildcard i) ?^)
3032                             ;; Found "[^".  Insert a `\0' character
3033                             ;; (which cannot happen in a filename)
3034                             ;; into the character class, so that `^'
3035                             ;; is not the first character after `[',
3036                             ;; and thus non-special in a regexp.
3037                             (progn
3038                               (setq i (1+ i))
3039                               "[\000^"))
3040                            ((eq (aref wildcard i) ?\])
3041                             ;; I don't think `]' can appear in a
3042                             ;; character class in a wildcard, but
3043                             ;; let's be general here.
3044                             (progn
3045                               (setq i (1+ i))
3046                               "[]"))
3047                            (t "["))
3048                           (prog1        ; copy everything upto next `]'.
3049                               (substring wildcard
3050                                          i
3051                                          (setq j (string-match
3052                                                   "]" wildcard i)))
3053                             (setq i (if j (1- j) (1- len)))))))
3054                       ((eq ch ?.)  "\\.")
3055                       ((eq ch ?*)  "[^\000]*")
3056                       ((eq ch ?+)  "\\+")
3057                       ((eq ch ?^)  "\\^")
3058                       ((eq ch ?$)  "\\$")
3059                       ((eq ch ?\\) "\\\\") ; probably cannot happen...
3060                       ((eq ch ??)  "[^\000]")
3061                       (t (char-to-string ch)))))
3062             (setq i (1+ i)))))
3063     ;; Shell wildcards should match the entire filename,
3064     ;; not its part.  Make the regexp say so.
3065     (concat "\\`" result "\\'")))
3066 \f
3067 (defcustom list-directory-brief-switches "-CF"
3068   "*Switches for list-directory to pass to `ls' for brief listing."
3069   :type 'string
3070   :group 'dired)
3071
3072 (defcustom list-directory-verbose-switches "-l"
3073   "*Switches for list-directory to pass to `ls' for verbose listing,"
3074   :type 'string
3075   :group 'dired)
3076
3077 (defun list-directory (dirname &optional verbose)
3078   "Display a list of files in or matching DIRNAME, a la `ls'.
3079 DIRNAME is globbed by the shell if necessary.
3080 Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
3081 Actions controlled by variables `list-directory-brief-switches'
3082 and `list-directory-verbose-switches'."
3083   (interactive (let ((pfx current-prefix-arg))
3084                  (list (read-file-name (if pfx (gettext "List directory (verbose): ")
3085                                          (gettext "List directory (brief): "))
3086                                        nil default-directory nil)
3087                        pfx)))
3088   (let ((switches (if verbose list-directory-verbose-switches
3089                     list-directory-brief-switches)))
3090     (or dirname (setq dirname default-directory))
3091     (setq dirname (expand-file-name dirname))
3092     (with-output-to-temp-buffer "*Directory*"
3093       (buffer-disable-undo standard-output)
3094       (princ "Directory ")
3095       (princ dirname)
3096       (terpri)
3097       (save-excursion
3098         (set-buffer "*Directory*")
3099         (setq default-directory (file-name-directory dirname))
3100         (let ((wildcard (not (file-directory-p dirname))))
3101           (insert-directory dirname switches wildcard (not wildcard)))))))
3102
3103 (defvar insert-directory-program "ls"
3104   "Absolute or relative name of the `ls' program used by `insert-directory'.")
3105
3106 ;; insert-directory
3107 ;; - must insert _exactly_one_line_ describing FILE if WILDCARD and
3108 ;;   FULL-DIRECTORY-P is nil.
3109 ;;   The single line of output must display FILE's name as it was
3110 ;;   given, namely, an absolute path name.
3111 ;; - must insert exactly one line for each file if WILDCARD or
3112 ;;   FULL-DIRECTORY-P is t, plus one optional "total" line
3113 ;;   before the file lines, plus optional text after the file lines.
3114 ;;   Lines are delimited by "\n", so filenames containing "\n" are not
3115 ;;   allowed.
3116 ;;   File lines should display the basename.
3117 ;; - must be consistent with
3118 ;;   - functions dired-move-to-filename, (these two define what a file line is)
3119 ;;               dired-move-to-end-of-filename,
3120 ;;               dired-between-files, (shortcut for (not (dired-move-to-filename)))
3121 ;;               dired-insert-headerline
3122 ;;               dired-after-subdir-garbage (defines what a "total" line is)
3123 ;;   - variable dired-subdir-regexp
3124 (defun insert-directory (file switches &optional wildcard full-directory-p)
3125   "Insert directory listing for FILE, formatted according to SWITCHES.
3126 Leaves point after the inserted text.
3127 SWITCHES may be a string of options, or a list of strings.
3128 Optional third arg WILDCARD means treat FILE as shell wildcard.
3129 Optional fourth arg FULL-DIRECTORY-P means file is a directory and
3130 switches do not contain `d', so that a full listing is expected.
3131
3132 This works by running a directory listing program
3133 whose name is in the variable `insert-directory-program'.
3134 If WILDCARD, it also runs the shell specified by `shell-file-name'."
3135   ;; We need the directory in order to find the right handler.
3136   (let ((handler (find-file-name-handler (expand-file-name file)
3137                                          'insert-directory)))
3138     (if handler
3139         (funcall handler 'insert-directory file switches
3140                  wildcard full-directory-p)
3141       (cond
3142        ((and (fboundp 'mswindows-insert-directory)
3143              (eq system-type 'windows-nt))
3144         (mswindows-insert-directory file switches wildcard full-directory-p))
3145        (t
3146         (if wildcard
3147             ;; Run ls in the directory of the file pattern we asked for.
3148             (let ((default-directory
3149                       (if (file-name-absolute-p file)
3150                           (file-name-directory file)
3151                           (file-name-directory (expand-file-name file))))
3152                   (pattern (file-name-nondirectory file))
3153                   (beg 0))
3154               ;; Quote some characters that have special meanings in shells;
3155               ;; but don't quote the wildcards--we want them to be special.
3156               ;; We also currently don't quote the quoting characters
3157               ;; in case people want to use them explicitly to quote
3158               ;; wildcard characters.
3159               ;;#### Unix-specific
3160               (while (string-match "[ \t\n;<>&|()#$]" pattern beg)
3161                 (setq pattern
3162                       (concat (substring pattern 0 (match-beginning 0))
3163                               "\\"
3164                               (substring pattern (match-beginning 0)))
3165                       beg (1+ (match-end 0))))
3166               (call-process shell-file-name nil t nil
3167                             "-c" (concat "\\"  ;; Disregard shell aliases!
3168                                          insert-directory-program
3169                                          " -d "
3170                                          (if (stringp switches)
3171                                              switches
3172                                            (mapconcat 'identity switches " "))
3173                                          " "
3174                                          pattern)))
3175           ;; SunOS 4.1.3, SVr4 and others need the "." to list the
3176           ;; directory if FILE is a symbolic link.
3177           (apply 'call-process
3178                  insert-directory-program nil t nil
3179                  (let (list)
3180                    (if (listp switches)
3181                        (setq list switches)
3182                      (if (not (equal switches ""))
3183                          (progn
3184                            ;; Split the switches at any spaces
3185                            ;; so we can pass separate options as separate args.
3186                            (while (string-match " " switches)
3187                              (setq list (cons (substring switches 0 (match-beginning 0))
3188                                               list)
3189                                    switches (substring switches (match-end 0))))
3190                            (setq list (cons switches list)))))
3191                    (append list
3192                            (list
3193                             (if full-directory-p
3194                                 (concat (file-name-as-directory file)
3195                                         ;;#### Unix-specific
3196                                         ".")
3197                               file)))))))))))
3198
3199 (defvar kill-emacs-query-functions nil
3200   "Functions to call with no arguments to query about killing XEmacs.
3201 If any of these functions returns nil, killing Emacs is cancelled.
3202 `save-buffers-kill-emacs' (\\[save-buffers-kill-emacs]) calls these functions,
3203 but `kill-emacs', the low level primitive, does not.
3204 See also `kill-emacs-hook'.")
3205
3206 (defun save-buffers-kill-emacs (&optional arg)
3207   "Offer to save each buffer, then kill this XEmacs process.
3208 With prefix arg, silently save all file-visiting buffers, then kill."
3209   (interactive "P")
3210   (save-some-buffers arg t)
3211   (and (or (not (memq t (mapcar #'(lambda (buf) (and (buffer-file-name buf)
3212                                                      (buffer-modified-p buf)))
3213                                 (buffer-list))))
3214            (yes-or-no-p "Modified buffers exist; exit anyway? "))
3215        (or (not (fboundp 'process-list))
3216            ;; process-list is not defined on VMS.
3217            (let ((processes (process-list))
3218                  active)
3219              (while processes
3220                (and (memq (process-status (car processes)) '(run stop open))
3221                     (let ((val (process-kill-without-query (car processes))))
3222                       (process-kill-without-query (car processes) val)
3223                       val)
3224                     (setq active t))
3225                (setq processes (cdr processes)))
3226              (or
3227               (not active)
3228               (save-excursion
3229                 (save-window-excursion
3230                   (delete-other-windows)
3231                   (list-processes)
3232                   (yes-or-no-p
3233                    "Active processes exist; kill them and exit anyway? "))))))
3234        ;; Query the user for other things, perhaps.
3235        (run-hook-with-args-until-failure 'kill-emacs-query-functions)
3236        (kill-emacs)))
3237
3238 (defun symlink-expand-file-name (filename)
3239   "If FILENAME is a symlink, return its non-symlink equivalent.
3240 Unlike `file-truename', this doesn't chase symlinks in directory
3241 components of the file or expand a relative pathname into an
3242 absolute one."
3243   (let ((count 20))
3244     (while (and (> count 0) (file-symlink-p filename))
3245       (setq filename (file-symlink-p filename)
3246             count (1- count)))
3247     (if (> count 0)
3248         filename
3249       (error "Apparently circular symlink path"))))
3250
3251 ;; Suggested by Michael Kifer <kifer@CS.SunySB.EDU>
3252 (defun file-remote-p (file-name)
3253   "Test whether FILE-NAME is looked for on a remote system."
3254   (cond ((not allow-remote-paths) nil)
3255         ((featurep 'ange-ftp) (ange-ftp-ftp-path file-name))
3256         ((fboundp 'efs-ftp-path) (efs-ftp-path file-name))
3257         (t nil)))
3258
3259 ;; #### FSF has file-name-non-special here.
3260
3261 ;;; files.el ends here