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