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