home *** CD-ROM | disk | FTP | other *** search
/ Education Sampler 1992 [NeXTSTEP] / Education_1992_Sampler.iso / NeXT / GnuSource / emacs-15.0.3 / lisp / files.el < prev    next >
Lisp/Scheme  |  1990-08-16  |  39KB  |  1,023 lines

  1. ;; File input and output commands for Emacs
  2. ;; Copyright (C) 1985, 1986, 1987 Free Software Foundation, Inc.
  3.  
  4. ;; This file is part of GNU Emacs.
  5.  
  6. ;; GNU Emacs is distributed in the hope that it will be useful,
  7. ;; but WITHOUT ANY WARRANTY.  No author or distributor
  8. ;; accepts responsibility to anyone for the consequences of using it
  9. ;; or for whether it serves any particular purpose or works at all,
  10. ;; unless he says so in writing.  Refer to the GNU Emacs General Public
  11. ;; License for full details.
  12.  
  13. ;; Everyone is granted permission to copy, modify and redistribute
  14. ;; GNU Emacs, but only under the conditions described in the
  15. ;; GNU Emacs General Public License.   A copy of this license is
  16. ;; supposed to have been given to you along with GNU Emacs so you
  17. ;; can know your rights and responsibilities.  It should be in a
  18. ;; file named COPYING.  Among other things, the copyright notice
  19. ;; and this notice must be preserved on all copies.
  20.  
  21.  
  22. (defconst delete-auto-save-files t
  23.   "*Non-nil means delete a buffer's auto-save file
  24. when the buffer is saved for real.")
  25.  
  26. ;(make-variable-buffer-local 'buffer-backed-up)
  27. ;(defvar buffer-backed-up nil
  28. ;  "Non-nil if this buffer's file has been backed up.
  29. ;Backing up is done before the first time the file is saved.")
  30.  
  31. ;;; Turn off backup files on VMS since it has version numbers.
  32. (defconst make-backup-files (not (eq system-type 'vax-vms))
  33.   "*Create a backup of each file when it is saved for the first time.
  34. This can be done by renaming the file or by copying.
  35.  
  36. Renaming means that Emacs renames the existing file so that it is a
  37. backup file, then writes the buffer into a new file.  Any other names
  38. that the old file had will now refer to the backup file.
  39. The new file is owned by you and its group is defaulted.
  40.  
  41. Copying means that Emacs copies the existing file into the backup file,
  42. then writes the buffer on top of the existing file.  Any other names
  43. that the old file had will now refer to the new (edited) file.
  44. The file's owner and group are unchanged.
  45.  
  46. The choice of renaming or copying is controlled by the variables
  47. backup-by-copying, backup-by-copying-when-linked and
  48. backup-by-copying-when-mismatch.")
  49.  
  50. (defconst backup-by-copying nil
  51.  "*Non-nil means always use copying to create backup files.
  52. See documentation of variable  make-backup-files.")
  53.  
  54. (defconst backup-by-copying-when-linked nil
  55.  "*Non-nil means use copying to create backups for files with multiple names.
  56. This causes the alternate names to refer to the latest version as edited.
  57. This variable is relevant only if  backup-by-copying  is nil.")
  58.  
  59. (defconst backup-by-copying-when-mismatch nil
  60.   "*Non-nil means create backups by copying if this preserves owner or group.
  61. Renaming may still be used (subject to control of other variables)
  62. when it would not result in changing the owner or group of the file;
  63. that is, for files which are owned by you and whose group matches
  64. the default for a new file created there by you.
  65. This variable is relevant only if  backup-by-copying  is nil.")
  66.  
  67. (defconst buffer-offer-save nil
  68.   "*Non-nil in a buffer means offer to save the buffer on exit
  69. even if the buffer is not visiting a file.  Automatically local in
  70. all buffers.")
  71. (make-variable-buffer-local 'buffer-offer-save)
  72.  
  73. (defconst file-precious-flag nil
  74.   "*Non-nil means protect against I/O errors while saving files.
  75. Some modes set this non-nil in particular buffers.")
  76.  
  77. (defvar version-control nil
  78.   "*Control use of version numbers for backup files.
  79. t means make numeric backup versions unconditionally.
  80. nil means make them for files that have some already.
  81. never means do not make them.")
  82.  
  83. (defvar dired-kept-versions 2
  84.   "*When cleaning directory, number of versions to keep.")
  85.  
  86. (defvar trim-versions-without-asking nil
  87.   "*If true, deletes excess backup versions silently.
  88. Otherwise asks confirmation.")
  89.  
  90. (defvar kept-old-versions 2
  91.   "*Number of oldest versions to keep when a new numbered backup is made.")
  92.  
  93. (defvar kept-new-versions 2
  94.   "*Number of newest versions to keep when a new numbered backup is made.
  95. Includes the new backup.  Must be > 0")
  96.  
  97. (defconst require-final-newline nil
  98.   "*t says silently put a newline at the end whenever a file is saved.
  99. Non-nil but not t says ask user whether to add a newline in each such case.
  100. nil means don't add newlines.")
  101.  
  102. (defconst auto-save-default t
  103.   "*t says by default do auto-saving of every file-visiting buffer.")
  104.  
  105. (defconst auto-save-visited-file-name nil
  106.   "*t says auto-save a buffer in the file it is visiting, when practical.
  107. Normally auto-save files are written under other names.")
  108.  
  109. (defconst save-abbrevs nil
  110.   "*Non-nil means save word abbrevs too when files are saved.
  111. Loading an abbrev file sets this to t.")
  112.  
  113. (defconst find-file-run-dired t
  114.   "*Non-nil says run dired if find-file is given the name of a directory.")
  115.  
  116. (defvar find-file-not-found-hooks nil
  117.   "List of functions to be called for find-file on nonexistent file.
  118. These functions are called as soon as the error is detected.
  119. buffer-file-name is already set up.
  120. The functions are called in the order given,
  121. until one of them returns non-nil.")
  122.  
  123. (defvar find-file-hooks nil
  124.   "List of functions to be called after a buffer is loaded from a file.
  125. The buffer's local variables (if any) will have been processed before the
  126. functions are called.")
  127.  
  128. (defvar write-file-hooks nil
  129.   "List of functions to be called before writing out a buffer to a file.
  130. If one of them returns non-nil, the file is considered already written
  131. and the rest are not called.")
  132.  
  133. (defconst inhibit-local-variables nil
  134.   "*Non-nil means query before obeying a file's local-variables list.
  135. This applies when the local-variables list is scanned automatically
  136. after you find a file.  If you explicitly request such a scan with
  137. \\[normal-mode], there is no query, regardless of this variable.")
  138.  
  139. ;; Avoid losing in versions where CLASH_DETECTION is disabled.
  140. (or (fboundp 'lock-buffer)
  141.     (fset 'lock-buffer 'ignore))
  142. (or (fboundp 'unlock-buffer)
  143.     (fset 'unlock-buffer 'ignore))
  144.  
  145. (defun pwd ()
  146.   "Show the current default directory."
  147.   (interactive nil)
  148.   (message "Directory %s" default-directory))
  149.  
  150. (defun cd (dir)
  151.   "Make DIR become the current buffer's default directory."
  152.   (interactive "DChange default directory: ")
  153.   (setq dir (expand-file-name dir))
  154.   (if (not (eq system-type 'vax-vms))
  155.       (setq dir (file-name-as-directory dir)))
  156.   (if (not (file-directory-p dir))
  157.       (error "%s is not a directory" dir)
  158.     (setq default-directory dir))
  159.   (pwd))
  160.  
  161. (defun load-file (file)
  162.   "Load the file FILE of Lisp code."
  163.   (interactive "fLoad file: ")
  164.   (load (expand-file-name file) nil nil t))
  165.  
  166. (defun load-library (library)
  167.   "Load the library named LIBRARY.
  168. This is an interface to the function `load'."
  169.   (interactive "sLoad library: ")
  170.   (load library))
  171.  
  172. (defun switch-to-buffer-other-window (buffer)
  173.   "Select buffer BUFFER in another window."
  174.   (interactive "BSwitch to buffer in other window: ")
  175.   (let ((pop-up-windows t))
  176.     (pop-to-buffer buffer t)))
  177.  
  178. (defun find-file (filename)
  179.   "Edit file FILENAME.
  180. Switch to a buffer visiting file FILENAME,
  181. creating one if none already exists."
  182.   (interactive "FFind file: ")
  183.   (switch-to-buffer (find-file-noselect filename)))
  184.  
  185. (defun find-file-other-window (filename)
  186.   "Edit file FILENAME, in another window.
  187. May create a new window, or reuse an existing one;
  188. see the function display-buffer."
  189.   (interactive "FFind file in other window: ")
  190.   (switch-to-buffer-other-window (find-file-noselect filename)))
  191.  
  192. (defun find-file-read-only (filename)
  193.   "Edit file FILENAME but don't save without confirmation.
  194. Like find-file but marks buffer as read-only."
  195.   (interactive "fFind file read-only: ")
  196.   (find-file filename)
  197.   (setq buffer-read-only t))
  198.  
  199. (defun find-alternate-file (filename)
  200.   "Find file FILENAME, select its buffer, kill previous buffer.
  201. If the current buffer now contains an empty file that you just visited
  202. \(presumably by mistake), use this command to visit the file you really want."
  203.   (interactive "FFind alternate file: ")
  204.   (and (buffer-modified-p)
  205. ;;;       (not buffer-read-only)
  206.        (not (yes-or-no-p (format "Buffer %s is modified; kill anyway? "
  207.                  (buffer-name))))
  208.        (error "Aborted"))
  209.   (let ((obuf (current-buffer))
  210.     (ofile buffer-file-name)
  211.     (oname (buffer-name)))
  212.     (rename-buffer " **lose**")
  213.     (setq buffer-file-name nil)
  214.     (unwind-protect
  215.     (progn
  216.       (unlock-buffer)
  217.       (find-file filename))
  218.       (cond ((eq obuf (current-buffer))
  219.          (setq buffer-file-name ofile)
  220.          (lock-buffer)
  221.          (rename-buffer oname))))
  222.     (kill-buffer obuf)))
  223.  
  224. (defun create-file-buffer (filename)
  225.   "Create a suitably named buffer for visiting FILENAME, and return it.
  226. FILENAME (sans directory) is used unchanged if that name is free;
  227. otherwise a string <2> or <3> or ... is appended to get an unused name."
  228.   (let ((lastname (file-name-nondirectory filename)))
  229.     (if (string= lastname "")
  230.     (setq lastname filename))
  231.     (generate-new-buffer lastname)))
  232.  
  233. (defun find-file-noselect (filename &optional nowarn)
  234.   "Read file FILENAME into a buffer and return the buffer.
  235. If a buffer exists visiting FILENAME, return that one,
  236. but verify that the file has not changed since visited or saved.
  237. The buffer is not selected, just returned to the caller."
  238.   (setq filename (expand-file-name filename))
  239.   (if (file-directory-p filename)
  240.       (if find-file-run-dired
  241.       (dired-noselect filename)
  242.     (error "%s is a directory." filename))
  243.     (let ((buf (get-file-buffer filename))
  244.       error)
  245.       (if buf
  246.       (or nowarn
  247.           (verify-visited-file-modtime buf)
  248.           (cond ((not (file-exists-p filename))
  249.              (error "File %s no longer exists!" filename))
  250.             ((yes-or-no-p
  251.               (if (buffer-modified-p buf)
  252.     "File has changed since last visited or saved.  Flush your changes? "
  253.     "File has changed since last visited or saved.  Read from disk? "))
  254.              (save-excursion
  255.                (set-buffer buf)
  256.                (revert-buffer t t)))))
  257.     (save-excursion
  258.       (setq buf (create-file-buffer filename))
  259.       (set-buffer buf)
  260.       (erase-buffer)
  261.       (condition-case ()
  262.           (insert-file-contents filename t)
  263.         (file-error
  264.          (setq error t)
  265.          ;; Run find-file-not-found-hooks until one returns non-nil.
  266.          (let ((hooks find-file-not-found-hooks))
  267.            (while (and hooks
  268.                (not (funcall (car hooks))))
  269.          (setq hooks (cdr hooks))))))
  270.       (setq default-directory (file-name-directory filename))
  271.       (after-find-file error (not nowarn))))
  272.       buf)))
  273.  
  274. (defun after-find-file (&optional error warn)
  275.   "Called after finding a file and by the default revert function.
  276. Sets buffer mode, parses local variables.
  277. Optional args ERROR and WARN: ERROR non-nil means there was an
  278. error in reading the file.  WARN non-nil means warn if there
  279. exists an auto-save file more recent than the visited file.
  280. Finishes by calling the functions in find-file-hooks."
  281.   (setq buffer-read-only (not (file-writable-p buffer-file-name)))
  282.   (if noninteractive
  283.       nil
  284.     (let* (not-serious
  285.        (msg
  286.         (cond ((not buffer-read-only)
  287.            (if (and warn
  288.                 (file-newer-than-file-p (make-auto-save-file-name)
  289.                             buffer-file-name))
  290.                "Auto save file is newer; consider M-x recover-file"
  291.              (setq not-serious t)
  292.              (if error "(New file)" nil)))
  293.           ((not error)
  294.            (setq not-serious t)
  295.            "File is write protected")
  296.           ((file-attributes buffer-file-name)
  297.            "File exists, but is read-protected.")
  298.           ((file-attributes (directory-file-name default-directory))
  299.            "File not found and directory write-protected")
  300.           (t
  301.            "File not found and directory doesn't exist"))))
  302.       (if msg
  303.       (progn
  304.         (message msg)
  305.         (or not-serious (sit-for 1 t)))))
  306.     (if auto-save-default
  307.     (auto-save-mode t)))
  308.   (normal-mode t)
  309.   (mapcar 'funcall find-file-hooks))
  310.  
  311. (defun normal-mode (&optional find-file)
  312.   "Choose the major mode for this buffer automatically.
  313. Also sets up any specified local variables of the file.
  314. Uses the visited file name, the -*- line, and the local variables spec.
  315.  
  316. This function is called automatically from `find-file'.  In that case,
  317. if `inhibit-local-variables' is non-`nil' we require confirmation before
  318. processing a local variables spec.  If you run `normal-mode' explicitly,
  319. confirmation is never required."
  320.   (interactive)
  321.   (or find-file (funcall (or default-major-mode 'fundamental-mode)))
  322.   (condition-case err
  323.       (set-auto-mode)
  324.     (error (message "File mode specification error: %s"
  325.             (prin1-to-string err))))
  326.   (condition-case err
  327.       (hack-local-variables (not find-file))
  328.     (error (message "File local-variables error: %s"
  329.             (prin1-to-string err)))))
  330.  
  331. ;(defvar auto-mode-alist ...) now in loaddefs.el
  332. (defun set-auto-mode ()
  333.   "Select major mode appropriate for current buffer.
  334. May base decision on visited file name (See variable  auto-mode-list)
  335. or on buffer contents (-*- line or local variables spec), but does not look
  336. for the \"mode:\" local variable.  For that, use  hack-local-variables."
  337.   ;; Look for -*-MODENAME-*- or -*- ... mode: MODENAME; ... -*-
  338.   (let (beg end mode)
  339.     (save-excursion
  340.       (goto-char (point-min))
  341.       (skip-chars-forward " \t\n")
  342.       (if (and (search-forward "-*-" (save-excursion (end-of-line) (point)) t)
  343.            (progn
  344.          (skip-chars-forward " \t")
  345.          (setq beg (point))
  346.          (search-forward "-*-" (save-excursion (end-of-line) (point)) t))
  347.            (progn
  348.          (forward-char -3)
  349.          (skip-chars-backward " \t")
  350.          (setq end (point))
  351.          (goto-char beg)
  352.          (if (search-forward ":" end t)
  353.              (progn
  354.                (goto-char beg)
  355.                (if (let ((case-fold-search t))
  356.                  (search-forward "mode:" end t))
  357.                (progn
  358.                  (skip-chars-forward " \t")
  359.                  (setq beg (point))
  360.                  (if (search-forward ";" end t)
  361.                  (forward-char -1)
  362.                    (goto-char end))
  363.                  (skip-chars-backward " \t")
  364.                  (setq mode (buffer-substring beg (point))))))
  365.            (setq mode (buffer-substring beg end)))))
  366.       (funcall (intern (concat (downcase mode) "-mode")))
  367.     (let ((alist auto-mode-alist)
  368.           (name buffer-file-name))
  369.       (let ((case-fold-search (eq system-type 'vax-vms)))
  370.         ;; Remove backup-suffixes from file name.
  371.         (setq name (file-name-sans-versions name))
  372.         ;; Find first matching alist entry.
  373.         (while (and (not mode) alist)
  374.           (if (string-match (car (car alist)) name)
  375.           (setq mode (cdr (car alist))))
  376.           (setq alist (cdr alist))))
  377.       (if mode (funcall mode)))))))
  378.  
  379. (defun hack-local-variables (&optional force)
  380.   "Parse, and bind or evaluate as appropriate, any local variables
  381. for current buffer."
  382.   ;; Look for "Local variables:" line in last page.
  383.   (save-excursion
  384.     (goto-char (point-max))
  385.     (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) 'move)
  386.     (if (let ((case-fold-search t))
  387.       (and (search-forward "Local Variables:" nil t)
  388.            (or (not inhibit-local-variables)
  389.            force
  390.            (y-or-n-p (format"Set local variables as specified at end of %s? "
  391.                     (file-name-nondirectory buffer-file-name))))))
  392.     (let ((continue t)
  393.           prefix prefixlen suffix beg)
  394.       ;; The prefix is what comes before "local variables:" in its line.
  395.       ;; The suffix is what comes after "local variables:" in its line.
  396.       (skip-chars-forward " \t")
  397.       (or (eolp)
  398.           (setq suffix (buffer-substring (point)
  399.                          (progn (end-of-line) (point)))))
  400.       (goto-char (match-beginning 0))
  401.       (or (bolp)
  402.           (setq prefix
  403.             (buffer-substring (point)
  404.                       (progn (beginning-of-line) (point)))))
  405.       (if prefix (setq prefixlen (length prefix)
  406.                prefix (regexp-quote prefix)))
  407.       (if suffix (setq suffix (regexp-quote suffix)))
  408.       (while continue
  409.         ;; Look at next local variable spec.
  410.         (if selective-display (re-search-forward "[\n\C-m]")
  411.           (forward-line 1))
  412.         ;; Skip the prefix, if any.
  413.         (if prefix
  414.         (if (looking-at prefix)
  415.             (forward-char prefixlen)
  416.           (error "Local variables entry is missing the prefix")))
  417.         ;; Find the variable name; strip whitespace.
  418.         (skip-chars-forward " \t")
  419.         (setq beg (point))
  420.         (skip-chars-forward "^:\n")
  421.         (if (eolp) (error "Missing colon in local variables entry"))
  422.         (skip-chars-backward " \t")
  423.         (let* ((str (buffer-substring beg (point)))
  424.            (var (read str))
  425.           val)
  426.           ;; Setting variable named "end" means end of list.
  427.           (if (string-equal (downcase str) "end")
  428.           (setq continue nil)
  429.         ;; Otherwise read the variable value.
  430.         (skip-chars-forward "^:")
  431.         (forward-char 1)
  432.         (setq val (read (current-buffer)))
  433.         (skip-chars-backward "\n")
  434.         (skip-chars-forward " \t")
  435.         (or (if suffix (looking-at suffix) (eolp))
  436.             (error "Local variables entry is terminated incorrectly"))
  437.         ;; Set the variable.  "Variables" mode and eval are funny.
  438.         (cond ((eq var 'mode)
  439.                (funcall (intern (concat (downcase (symbol-name val))
  440.                         "-mode"))))
  441.               ((eq var 'eval)
  442.                (if (string= (user-login-name) "root")
  443.                (message "Ignoring `eval:' in file's local variables")
  444.              (eval val)))
  445.               (t (make-local-variable var)
  446.              (set var val))))))))))
  447.  
  448. (defun set-visited-file-name (filename)
  449.   "Change name of file visited in current buffer to FILENAME.
  450. The next time the buffer is saved it will go in the newly specified file.
  451. nil or empty string as argument means make buffer not be visiting any file.
  452. Remember to delete the initial contents of the minibuffer
  453. if you wish to pass an empty string as the argument."
  454.   (interactive "FSet visited file name: ")
  455.   (if filename
  456.       (setq filename
  457.         (if (string-equal filename "")
  458.         nil
  459.           (expand-file-name filename))))
  460.   (or (equal filename buffer-file-name)
  461.       (null filename)
  462.       (progn
  463.     (lock-buffer filename)
  464.     (unlock-buffer)))
  465.   (setq buffer-file-name filename)
  466.   (if filename
  467.       (let ((new-name (file-name-nondirectory buffer-file-name)))
  468.     (if (eq system-type 'vax-vms)
  469.         (setq new-name (downcase new-name)))
  470.     (setq default-directory (file-name-directory buffer-file-name))
  471.     (or (get-buffer new-name) (rename-buffer new-name))))
  472.   (setq buffer-backed-up nil)
  473.   (clear-visited-file-modtime)
  474.   (kill-local-variable 'write-file-hooks)
  475.   (kill-local-variable 'revert-buffer-function)
  476.   ;; Rename the auto-save file to go with the new visited name.
  477.   ;; If auto-save was not already on, turn it on if appropriate.
  478.   (if buffer-auto-save-file-name
  479.       (rename-auto-save-file)
  480.     (auto-save-mode (and buffer-file-name auto-save-default)))
  481.   (if buffer-file-name
  482.       (set-buffer-modified-p t)))
  483.  
  484. (defun write-file (filename)
  485.   "Write current buffer into file FILENAME.
  486. Makes buffer visit that file, and marks it not modified."
  487.   (interactive "FWrite file: ")
  488.   (or (null filename) (string-equal filename "")
  489.       (set-visited-file-name filename))
  490.   (set-buffer-modified-p t)
  491.   (save-buffer))
  492.  
  493. (defun backup-buffer ()
  494.   "Make a backup of the disk file visited by the current buffer, if appropriate.
  495. This is normally done before saving the buffer the first time.
  496. If the value is non-nil, it is the result of `file-modes' on the original file;
  497. this means that the caller, after saving the buffer, should change the modes
  498. of the new file to agree with the old modes."
  499.   (and make-backup-files
  500.        (not buffer-backed-up)
  501.        (file-exists-p buffer-file-name)
  502.        (memq (aref (elt (file-attributes buffer-file-name) 8) 0)
  503.          '(?- ?l))
  504.        (or (< (length buffer-file-name) 5)
  505.        (not (string-equal "/tmp/" (substring buffer-file-name 0 5))))
  506.     (condition-case ()
  507.     (let* ((backup-info (find-backup-file-name buffer-file-name))
  508.            (backupname (car backup-info))
  509.            (targets (cdr backup-info))
  510.            setmodes)
  511. ;      (if (file-directory-p buffer-file-name)
  512. ;          (error "Cannot save buffer in directory %s" buffer-file-name))
  513.       (condition-case ()
  514.           (if (or file-precious-flag
  515.               (file-symlink-p buffer-file-name)
  516.               backup-by-copying
  517.               (and backup-by-copying-when-linked
  518.                (> (file-nlinks buffer-file-name) 1))
  519.               (and backup-by-copying-when-mismatch
  520.                (let ((attr (file-attributes buffer-file-name)))
  521.                  (or (nth 9 attr)
  522.                  (/= (nth 2 attr) (user-uid))))))
  523.           (copy-file buffer-file-name backupname t t)
  524.         (condition-case ()
  525.             (delete-file backupname)
  526.           (file-error nil))
  527.         (rename-file buffer-file-name backupname t)
  528.         (setq setmodes (file-modes backupname)))
  529.         (file-error
  530.          ;; If trouble writing the backup, write it in ~.
  531.          (setq backupname (expand-file-name "~/%backup%~"))
  532.          (message "Cannot write backup file; backing up in ~/%%backup%%~")
  533.          (sleep-for 1)
  534.          (copy-file buffer-file-name backupname t t)))
  535.       (setq buffer-backed-up t)
  536.       (if (and targets
  537.            (or trim-versions-without-asking
  538.                (y-or-n-p (format "Delete excess backup versions of %s? "
  539.                      buffer-file-name))))
  540.           (while targets
  541.         (condition-case ()
  542.             (delete-file (car targets))
  543.           (file-error nil))
  544.         (setq targets (cdr targets))))
  545.       setmodes)
  546.       (file-error nil))))
  547.  
  548. (defun file-name-sans-versions (name)
  549.   "Return FILENAME sans backup versions or strings.
  550. This is a separate procedure so your site-init or startup file can
  551. redefine it."
  552.   (substring name 0
  553.          (if (eq system-type 'vax-vms)
  554.          (or (string-match ";[0-9]+\\'" name)
  555.              (string-match ".[0-9]+\\'" name)
  556.              (length name))
  557.            (or (string-match "\\.~[0-9]+~\\'" name)
  558.            (string-match "~\\'" name)
  559.            (length name)))))
  560.  
  561. (defun make-backup-file-name (file)
  562.   "Create the non-numeric backup file name for FILE.
  563. This is a separate function so you can redefine it for customization."
  564.   (concat file "~"))
  565.  
  566. (defun backup-file-name-p (file)
  567.   "Return non-nil if FILE is a backup file name (numeric or not).
  568. This is a separate function so you can redefine it for customization.
  569. You may need to redefine file-name-sans-versions as well."
  570.   (string-match "~$" file))
  571.  
  572. ;; I believe there is no need to alter this behavior for VMS;
  573. ;; since backup files are not made on VMS, it should not get called.
  574. (defun find-backup-file-name (fn)
  575.   "Find a file name for a backup file, and suggestions for deletions.
  576. Value is a list whose car is the name for the backup file
  577.  and whose cdr is a list of old versions to consider deleting now."
  578.   (if (eq version-control 'never)
  579.       (list (make-backup-file-name fn))
  580.     (let* ((base-versions (concat (file-name-nondirectory fn) ".~"))
  581.        (bv-length (length base-versions))
  582.        (possibilities (file-name-all-completions
  583.                base-versions
  584.                (file-name-directory fn)))
  585.        (versions (sort (mapcar 'backup-extract-version possibilities)
  586.                '<))
  587.        (high-water-mark (apply 'max (cons 0 versions)))
  588.        (deserve-versions-p
  589.         (or version-control
  590.         (> high-water-mark 0)))
  591.        (number-to-delete (- (length versions)
  592.                 kept-old-versions kept-new-versions -1)))
  593.       (if (not deserve-versions-p)
  594.       (list (make-backup-file-name fn))
  595.     (cons (concat fn ".~" (int-to-string (1+ high-water-mark)) "~")
  596.           (if (> number-to-delete 0)
  597.           (mapcar (function (lambda (n)
  598.                       (concat fn ".~" (int-to-string n) "~")))
  599.               (let ((v (nthcdr kept-old-versions versions)))
  600.                 (rplacd (nthcdr (1- number-to-delete) v) ())
  601.                 v))))))))
  602.  
  603. (defun backup-extract-version (fn)
  604.   (if (and (string-match "[0-9]+~$" fn bv-length)
  605.        (= (match-beginning 0) bv-length))
  606.       (string-to-int (substring fn bv-length -1))
  607.       0))
  608.  
  609. (defun file-nlinks (filename)
  610.   "Return number of names file FILENAME has." 
  611.   (car (cdr (file-attributes filename))))
  612.  
  613. (defun save-buffer (&optional args)
  614.   "Save current buffer in visited file if modified.  Versions described below.
  615.  
  616. By default, makes the previous version into a backup file
  617.  if previously requested or if this is the first save.
  618. With 1 or 3 \\[universal-argument]'s, marks this version
  619.  to become a backup when the next save is done.
  620. With 2 or 3 \\[universal-argument]'s,
  621.  unconditionally makes the previous version into a backup file.
  622. With argument of 0, never makes the previous version into a backup file.
  623.  
  624. If a file's name is FOO, the names of its numbered backup versions are
  625.  FOO.~i~ for various integers i.  A non-numbered backup file is called FOO~.
  626. Numeric backups (rather than FOO~) will be made if value of
  627.  `version-control' is not the atom `never' and either there are already
  628.  numeric versions of the file being backed up, or `version-control' is
  629.  non-nil.
  630. We don't want excessive versions piling up, so there are variables
  631.  `kept-old-versions', which tells Emacs how many oldest versions to keep,
  632.  and `kept-new-versions', which tells how many newest versions to keep.
  633.  Defaults are 2 old versions and 2 new.
  634. `dired-kept-versions' controls dired's clean-directory (.) command.
  635. If `trim-versions-without-asking' is nil, system will query user
  636.  before trimming versions.  Otherwise it does it silently."
  637.   (interactive "p")
  638.   (let ((modp (buffer-modified-p))
  639.     (large (> (buffer-size) 50000))
  640.     (make-backup-files (and make-backup-files (not (eq args 0)))))
  641.     (and modp (memq args '(16 64)) (setq buffer-backed-up nil))
  642.     (if (and modp large) (message "Saving file %s..." (buffer-file-name)))
  643.     (basic-save-buffer)
  644.     (and modp (memq args '(4 64)) (setq buffer-backed-up nil))))
  645.  
  646. (defun delete-auto-save-file-if-necessary ()
  647.   "Delete the auto-save filename for the current buffer (if it has one)
  648. if variable  delete-auto-save-files  is non-nil."
  649.   (and buffer-auto-save-file-name delete-auto-save-files
  650.        (progn
  651.      (condition-case ()
  652.          (delete-file buffer-auto-save-file-name)
  653.        (file-error nil))
  654.      (set-buffer-auto-saved))))
  655.  
  656. (defun basic-save-buffer ()
  657.   "Save the current buffer in its visited file, if it has been modified."  
  658.   (interactive)
  659.   (if (buffer-modified-p)
  660.       (let (setmodes tempsetmodes)
  661.     (or buffer-file-name
  662.         (progn
  663.           (setq buffer-file-name
  664.             (expand-file-name (read-file-name "File to save in: ") nil)
  665.             default-directory (file-name-directory buffer-file-name))
  666.           (auto-save-mode auto-save-default)))
  667.     (if (not (file-writable-p buffer-file-name))
  668.         (if (yes-or-no-p
  669.          (format "File %s is write-protected; try to save anyway? "
  670.              (file-name-nondirectory buffer-file-name)))
  671.         (setq tempsetmodes t)
  672.           (error
  673.    "Attempt to save to a file which you aren't allowed to write")))
  674.     (or (verify-visited-file-modtime (current-buffer))
  675.         (not (file-exists-p buffer-file-name))
  676.         (yes-or-no-p
  677.           "Disk file has changed since visited or saved.  Save anyway? ")
  678.         (error "Save not confirmed"))
  679.     (or buffer-backed-up
  680.         (setq setmodes (backup-buffer)))
  681.     (save-restriction
  682.       (widen)
  683.       (and (> (point-max) 1)
  684.            (/= (char-after (1- (point-max))) ?\n)
  685.            (or (eq require-final-newline t)
  686.            (and require-final-newline
  687.             (yes-or-no-p
  688.              (format "Buffer %s does not end in newline.  Add one? "
  689.                  (buffer-name)))))
  690.            (save-excursion
  691.          (goto-char (point-max))
  692.          (insert ?\n)))
  693.       (let ((hooks write-file-hooks)
  694.         (done nil))
  695.         (while (and hooks
  696.             (not (setq done (funcall (car hooks)))))
  697.           (setq hooks (cdr hooks)))
  698.         ;; If a hook returned t, file is already "written".
  699.         (cond ((not done)
  700.            (if file-precious-flag
  701.                ;; If file is precious, rename it away before
  702.                ;; overwriting it.
  703.                (let ((rename t) nodelete
  704.                  (file (concat buffer-file-name "#")))
  705.              (condition-case ()
  706.                  (progn (rename-file buffer-file-name file t)
  707.                     (setq setmodes (file-modes file)))
  708.                (file-error (setq rename nil nodelete t)))
  709.              (unwind-protect
  710.                  (progn (clear-visited-file-modtime)
  711.                     (write-region (point-min) (point-max)
  712.                           buffer-file-name nil t)
  713.                     (setq rename nil))
  714.                ;; If rename is still t, writing failed.
  715.                ;; So rename the old file back to original name,
  716.                (if rename
  717.                    (progn
  718.                  (rename-file file buffer-file-name t)
  719.                  (clear-visited-file-modtime))
  720.                  ;; Otherwise we don't need the original file,
  721.                  ;; so flush it.  Unless we already lost it.
  722.                  (or nodelete
  723.                  (condition-case ()
  724.                      (delete-file file)
  725.                    (error nil))))))
  726.              ;; If file not writable, see if we can make it writable
  727.              ;; temporarily while we write it.
  728.              ;; But no need to do so if we have just backed it up
  729.              ;; (setmodes is set) because that says we're superseding.
  730.              (cond ((and tempsetmodes (not setmodes))
  731.                 ;; Change the mode back, after writing.
  732.                 (setq setmodes (file-modes buffer-file-name))
  733.                 (set-file-modes buffer-file-name 511)))
  734.              (write-region (point-min) (point-max) 
  735.                    buffer-file-name nil t)))))
  736.       (if setmodes
  737.           (condition-case ()
  738.            (set-file-modes buffer-file-name setmodes)
  739.         (error nil))))
  740.     (delete-auto-save-file-if-necessary))
  741.     (message "(No changes need to be saved)")))
  742.  
  743. (defun save-some-buffers (&optional arg exiting)
  744.   "Save some modified file-visiting buffers.  Asks user about each one.
  745. With argument, saves all with no questions."
  746.   (interactive "P")
  747.   (let (considered (list (buffer-list)))
  748.     (while list
  749.       (let ((buffer (car list)))
  750.     (and (buffer-modified-p buffer)
  751.          (save-excursion
  752.            (set-buffer buffer)
  753.            (and
  754.         (or buffer-file-name
  755.             (and exiting buffer-offer-save (> (buffer-size) 0)))
  756.         (setq considered t)
  757.         (or arg
  758.             (y-or-n-p (if buffer-file-name
  759.                   (format "Save file %s? "
  760.                       buffer-file-name)
  761.                 (format "Save buffer %s? " (buffer-name)))))
  762.         (condition-case ()
  763.             (save-buffer)
  764.           (error nil))))))
  765.       (setq list (cdr list)))
  766.     (and save-abbrevs abbrevs-changed
  767.      (progn
  768.        (setq considered t)
  769.        (if (or arg
  770.            (y-or-n-p (format "Save abbrevs in %s? " abbrev-file-name)))
  771.            (write-abbrev-file nil))
  772.        ;; Don't keep bothering user if he says no.
  773.        (setq abbrevs-changed nil)))
  774.     (if considered
  775.     (message "")
  776.     (message "(No files need saving)"))))
  777.  
  778. (defun not-modified ()
  779.   "Mark current buffer as unmodified, not needing to be saved."
  780.   (interactive)
  781.   (message "Modification-flag cleared")
  782.   (set-buffer-modified-p nil))
  783.  
  784. (defun toggle-read-only ()
  785.   "Change whether this buffer is visiting its file read-only."
  786.   (interactive)
  787.   (setq buffer-read-only (not buffer-read-only))
  788.   ;; Force mode-line redisplay
  789.   (set-buffer-modified-p (buffer-modified-p)))
  790.  
  791. (defun insert-file (filename)
  792.   "Insert contents of file FILENAME into buffer after point.
  793. Set mark after the inserted text."
  794.   (interactive "fInsert file: ")
  795.   (let ((tem (insert-file-contents filename)))
  796.     (push-mark (+ (point) (car (cdr tem))))))
  797.  
  798. (defun append-to-file (start end filename)
  799.   "Append the contents of the region to the end of file FILENAME.
  800. When called from a function, expects three arguments,
  801. START, END and FILENAME.  START and END are buffer positions
  802. saying what text to write."
  803.   (interactive "r\nFAppend to file: ")
  804.   (write-region start end filename t))
  805.  
  806. (defvar revert-buffer-function nil
  807.   "Function to use to revert this buffer, or nil to do the default.")
  808.  
  809. (defun revert-buffer (&optional arg noconfirm)
  810.   "Replace the buffer text with the text of the visited file on disk.
  811. This undoes all changes since the file was visited or saved.
  812. If latest auto-save file is more recent than the visited file,
  813. asks user whether to use that instead.
  814. First argument (optional) non-nil means don't offer to use auto-save file.
  815.  This is the prefix arg when called interactively.
  816.  
  817. Second argument (optional) non-nil means don't ask for confirmation at all.
  818.  
  819. If revert-buffer-function's value is non-nil, it is called to do the work."
  820.   (interactive "P")
  821.   (if revert-buffer-function
  822.       (funcall revert-buffer-function arg noconfirm)
  823.     (let* ((opoint (point))
  824.        (auto-save-p (and (null arg) (recent-auto-save-p)
  825.                  buffer-auto-save-file-name
  826.                  (file-readable-p buffer-auto-save-file-name)
  827.                  (y-or-n-p
  828.    "Buffer has been auto-saved recently.  Revert from auto-save file? ")))
  829.        (file-name (if auto-save-p
  830.               buffer-auto-save-file-name
  831.             buffer-file-name)))
  832.       (cond ((null file-name)
  833.          (error "Buffer does not seem to be associated with any file"))
  834.         ((not (file-exists-p file-name))
  835.          (error "File %s no longer exists!" file-name))
  836.         ((or noconfirm
  837.          (yes-or-no-p (format "Revert buffer from file %s? "
  838.                       file-name)))
  839.          (let ((buffer-read-only nil))
  840.            ;; Bind buffer-file-name to nil
  841.            ;; so that we don't try to lock the file.
  842.            (let ((buffer-file-name nil))
  843.          (or auto-save-p
  844.              (unlock-buffer))
  845.          (erase-buffer))
  846.            (insert-file-contents file-name (not auto-save-p)))
  847.          (goto-char (min opoint (point-max)))
  848.          (after-find-file nil)
  849.          t)))))
  850.  
  851. (defun recover-file (file)
  852.   "Visit file FILE, but get contents from its last auto-save file."
  853.   (interactive "FRecover file: ")
  854.   (setq file (expand-file-name file))
  855.   (if (auto-save-file-name-p file) (error "%s is an auto-save file" file))
  856.   (let ((file-name (let ((buffer-file-name file))
  857.              (make-auto-save-file-name))))
  858.     (cond ((not (file-newer-than-file-p file-name file))
  859.        (error "Auto-save file %s not current" file-name))
  860.       ((save-window-excursion
  861.          (if (not (eq system-type 'vax-vms))
  862.          (with-output-to-temp-buffer "*Directory*"
  863.            (buffer-flush-undo standard-output)
  864.            (call-process "ls" nil standard-output nil
  865.                  "-l" file file-name)))
  866.          (yes-or-no-p (format "Recover auto save file %s? " file-name)))
  867.        (switch-to-buffer (find-file-noselect file t))
  868.        (let ((buffer-read-only nil))
  869.          (erase-buffer)
  870.          (insert-file-contents file-name nil))
  871.        (after-find-file nil))
  872.       (t (error "Recover-file cancelled."))))
  873.   (setq buffer-auto-save-file-name nil)
  874.   (message "Auto-save off in this buffer till you do M-x auto-save-mode."))
  875.  
  876. (defun kill-some-buffers ()
  877.   "For each buffer, ask whether to kill it."
  878.   (interactive)
  879.   (let ((list (buffer-list)))
  880.     (while list
  881.       (let* ((buffer (car list))
  882.          (name (buffer-name buffer)))
  883.     (and (not (string-equal name ""))
  884.          (/= (aref name 0) ? )
  885.          (yes-or-no-p
  886.           (format "Buffer %s %s.  Kill? "
  887.               name
  888.               (if (buffer-modified-p buffer)
  889.               "HAS BEEN EDITED" "is unmodified")))
  890.          (kill-buffer buffer)))
  891.       (setq list (cdr list)))))
  892.  
  893. (defun auto-save-mode (arg)
  894.   "Toggle auto-saving of contents of current buffer.
  895. With arg, turn auto-saving on if arg is positive, else off."
  896.   (interactive "P")
  897.   (setq buffer-auto-save-file-name
  898.         (and (if (null arg)
  899.          (not buffer-auto-save-file-name)
  900.            (or (eq arg t) (listp arg) (and (integerp arg) (> arg 0))))
  901.          (if (and buffer-file-name auto-save-visited-file-name
  902.               (not buffer-read-only))
  903.          buffer-file-name
  904.            (make-auto-save-file-name))))
  905.   (if (interactive-p)
  906.       (message "Auto-save %s (in this buffer)"
  907.            (if buffer-auto-save-file-name "on" "off")))
  908.   buffer-auto-save-file-name)
  909.  
  910. (defun rename-auto-save-file ()
  911.   "Adjust current buffer's auto save file name for current conditions.
  912. Also rename any existing auto save file."
  913.   (let ((osave buffer-auto-save-file-name))
  914.     (setq buffer-auto-save-file-name
  915.       (make-auto-save-file-name))
  916.     (if (and osave buffer-auto-save-file-name
  917.          (not (string= buffer-auto-save-file-name buffer-file-name))
  918.          (not (string= buffer-auto-save-file-name osave))
  919.          (file-exists-p osave))
  920.     (rename-file osave buffer-auto-save-file-name t))))
  921.  
  922. (defun make-auto-save-file-name ()
  923.   "Return file name to use for auto-saves of current buffer.
  924. Does not consider auto-save-visited-file-name; that is checked
  925. before calling this function.
  926. You can redefine this for customization.
  927. See also auto-save-file-name-p."
  928.   (if buffer-file-name
  929.       (concat (file-name-directory buffer-file-name)
  930.           "#"
  931.           (file-name-nondirectory buffer-file-name)
  932.           "#")
  933.     (expand-file-name (concat "#%" (buffer-name) "#"))))
  934.  
  935. (defun auto-save-file-name-p (filename)
  936.   "Return non-nil if FILENAME can be yielded by make-auto-save-file-name.
  937. FILENAME should lack slashes.
  938. You can redefine this for customization."
  939.   (string-match "^#.*#$" filename))
  940.  
  941. (defconst list-directory-brief-switches "-CF"
  942.   "*Switches for list-directory to pass to `ls' for brief listing,")
  943. (defconst list-directory-verbose-switches "-l"
  944.   "*Switches for list-directory to pass to `ls' for verbose listing,")
  945.  
  946. (defun list-directory (dirname &optional verbose)
  947.   "Display a list of files in or matching DIRNAME, a la `ls'.
  948. DIRNAME is globbed by the shell if necessary.
  949. Prefix arg (second arg if noninteractive) means supply -l switch to `ls'.
  950. Actions controlled by variables list-directory-brief-switches
  951.  and list-directory-verbose-switches."
  952.   (interactive (let ((pfx current-prefix-arg))
  953.          (list (read-file-name (if pfx "List directory (verbose): "
  954.                      "List directory (brief): ")
  955.                        nil default-directory nil)
  956.                pfx)))
  957.   (let ((switches (if verbose list-directory-verbose-switches
  958.             list-directory-brief-switches))
  959.     full-dir-p)
  960.     (or dirname (setq dirname default-directory))
  961.     (if (file-directory-p dirname)
  962.     (progn
  963.      (setq full-dir-p t)
  964.      (or (string-match "/$" dirname)
  965.          (setq dirname (concat dirname "/")))))
  966.     (setq dirname (expand-file-name dirname))
  967.     (with-output-to-temp-buffer "*Directory*"
  968.       (buffer-flush-undo standard-output)
  969.       (princ "Directory ")
  970.       (princ dirname)
  971.       (terpri)
  972.       (if full-dir-p
  973.       (call-process "ls" nil standard-output nil
  974.             switches dirname)
  975.     (let ((default-directory (file-name-directory dirname)))
  976.       (call-process shell-file-name nil standard-output nil
  977.             "-c" (concat "exec ls "
  978.                      switches " "
  979.                      (file-name-nondirectory dirname))))))))
  980.  
  981. (defun save-buffers-kill-emacs (&optional arg)
  982.   "Offer to save each buffer, then kill this Emacs fork.
  983. With prefix arg, silently save all file-visiting buffers, then kill."
  984.   (interactive "P")
  985.   (save-some-buffers arg t)
  986.   (and (or (not (memq t (mapcar (function
  987.                   (lambda (buf) (and (buffer-file-name buf)
  988.                              (buffer-modified-p buf))))
  989.                 (buffer-list))))
  990.        (yes-or-no-p "Modified buffers exist; exit anyway? "))
  991.        (let ((processes (process-list))
  992.          active)
  993.      (while processes
  994.        (and (memq (process-status (car processes)) '(run stop))
  995.         (let ((val (process-kill-without-query (car processes))))
  996.           (process-kill-without-query (car processes) val)
  997.           val)
  998.         (setq active t))
  999.        (setq processes (cdr processes)))
  1000.      (or (not active)
  1001.          (yes-or-no-p "Active processes exist; kill them and exit anyway? ")))
  1002.        (kill-emacs)))
  1003.  
  1004. (define-key ctl-x-map "\C-f" 'find-file)
  1005. (define-key ctl-x-map "\C-q" 'toggle-read-only)
  1006. (define-key ctl-x-map "\C-r" 'find-file-read-only)
  1007. (define-key ctl-x-map "\C-v" 'find-alternate-file)
  1008. (define-key ctl-x-map "\C-s" 'save-buffer)
  1009. (define-key ctl-x-map "s" 'save-some-buffers)
  1010. (define-key ctl-x-map "\C-w" 'write-file)
  1011. (define-key ctl-x-map "i" 'insert-file)
  1012. (define-key esc-map "~" 'not-modified)
  1013. (define-key ctl-x-map "\C-d" 'list-directory)
  1014. (define-key ctl-x-map "\C-c" 'save-buffers-kill-emacs)
  1015.  
  1016. (defvar ctl-x-4-map (make-keymap)
  1017.   "Keymap for subcommands of C-x 4")
  1018. (fset 'ctl-x-4-prefix ctl-x-4-map)
  1019. (define-key ctl-x-map "4" 'ctl-x-4-prefix)
  1020. (define-key ctl-x-4-map "f" 'find-file-other-window)
  1021. (define-key ctl-x-4-map "\C-f" 'find-file-other-window)
  1022. (define-key ctl-x-4-map "b" 'switch-to-buffer-other-window)
  1023.