aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/saveplace.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-04-04 01:05:07 +0000
committerRichard M. Stallman <[email protected]>1994-04-04 01:05:07 +0000
commite7dc77f65ff30514107720982c1d593116e70458 (patch)
tree9893763e7dffdde5168abb78f7ee2032366a4e3b /lisp/saveplace.el
parent853cf34623affd852129ad834015a91a16982ded (diff)
(save-place-version-control): New var, for determining
how to back up the master saved-places file. (save-place-alist-to-file): Bind version-control depending on `save-place-version-control'. (hook for find-file-hooks): Specify the APPEND arg to add-hook.
Diffstat (limited to 'lisp/saveplace.el')
-rw-r--r--lisp/saveplace.el31
1 files changed, 24 insertions, 7 deletions
diff --git a/lisp/saveplace.el b/lisp/saveplace.el
index deaa13ed4f..387f4be4d1 100644
--- a/lisp/saveplace.el
+++ b/lisp/saveplace.el
@@ -1,11 +1,11 @@
;;; saveplace.el --- automatically save place in files.
-;; Copyright (C) 1993 Free Software Foundation, Inc.
+;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
;; Author: Karl Fogel <[email protected]>
;; Maintainer: FSF
;; Created: July, 1993
-;; Version: 1.0
+;; Version: 1.1
;; Keywords: bookmarks, placeholders
;; This file is part of GNU Emacs.
@@ -30,6 +30,9 @@
;; value of buffer-local variable save-place to determine whether to
;; save position or not.
;;
+;; Thanks to Stefan Schoef, who sent a patch with the
+;; `save-place-version-control' stuff in it.
+;;
;; Don't autoload this, rather, load it, since it modifies
;; find-file-hooks and other hooks.
@@ -59,6 +62,13 @@ simply put this in your `~/.emacs' file:
(defvar save-place-file "~/.emacs-places"
"*Name of the file that records `save-place-alist' value.")
+(defvar save-place-version-control 'nospecial
+ "*Controls whether to make numbered backups of master save-place file.
+It can have four values: t, nil, `never', and `nospecial'. The first
+three have the same meaning that they do for the variable
+`version-control', and the final value `nospecial' means just use the
+value of `version-control'.")
+
(defvar save-place-loaded nil
"Non-nil means that the `save-place-file' has been loaded.")
@@ -114,9 +124,16 @@ To save places automatically in all files, put this in your `.emacs' file:
(delete-region (point-min) (point-max))
(goto-char (point-min))
(print save-place-alist (current-buffer))
- (write-file file)
- (kill-buffer (current-buffer))
- (message (format "Saving places to %s... done." file)))))
+ (let ((version-control
+ (cond
+ ((null save-place-version-control) nil)
+ ((eq 'never save-place-version-control) 'never)
+ ((eq 'nospecial save-place-version-control) version-control)
+ (t
+ t))))
+ (write-file file)
+ (kill-buffer (current-buffer))
+ (message (format "Saving places to %s... done." file))))))
(defun load-save-place-alist-from-file ()
(if (not save-place-loaded)
@@ -169,7 +186,8 @@ To save places automatically in all files, put this in your `.emacs' file:
(progn
(goto-char (cdr cell))
;; and make sure it will be saved again for later.
- (setq save-place t)))))))
+ (setq save-place t))))))
+ t)
(add-hook 'kill-emacs-hook
(function
@@ -183,4 +201,3 @@ To save places automatically in all files, put this in your `.emacs' file:
(provide 'saveplace) ; why not...
;;; saveplace.el ends here
-