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