annotate lisp/packages/saveplace.el @ 189:489f57a838ef r20-3b21

Import from CVS: tag r20-3b21
author cvs
date Mon, 13 Aug 2007 09:57:07 +0200
parents 34a5b81f86ba
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; saveplace.el --- automatically save place in files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
3 ;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Author: Karl Fogel <kfogel@cs.oberlin.edu>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; Maintainer: FSF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; Created: July, 1993
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
8 ;; Version: >1.0 (RMS doesn't keep version numbers :-( )
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; Keywords: bookmarks, placeholders
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;; along with XEmacs; see the file COPYING. If not, write to the Free
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
25 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
26 ;; 02111-1307, USA.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
28 ;;; Synched up with: FSF 19.34.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
29
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
30 ;;; Commentary:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;; Automatically save place in files, so that visiting them later
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;; (even during a different Emacs session) automatically moves point
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;; to the saved position, when the file is first found. Uses the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;; value of buffer-local variable save-place to determine whether to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;; save position or not.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;;
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
38 ;; Thanks to Stefan Schoef, who sent a patch with the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
39 ;; `save-place-version-control' stuff in it.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
40
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
41 ;;; Code:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;; this is what I was using during testing:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ;; (define-key ctl-x-map "p" 'toggle-save-place)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
46 (defgroup save-place nil
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
47 "Automatically save place in files."
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
48 :group 'data)
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
49
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
50
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 (defvar save-place-alist nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 "Alist of saved places to go back to when revisiting files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 Each element looks like (FILENAME . POSITION);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 visiting file FILENAME goes automatically to position POSITION
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 rather than the beginning of the buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 This alist is saved between Emacs sessions.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
58 (defcustom save-place nil
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 "*Non-nil means automatically save place in each file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 This means when you visit a file, point goes to the last place
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 where it was when you previously visited the same file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 This variable is automatically buffer-local.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 If you wish your place in any file to always be automatically saved,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 simply put this in your `~/.emacs' file:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
67 \(setq-default save-place t\)"
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
68 :type 'boolean
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
69 :group 'save-place)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (make-variable-buffer-local 'save-place)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
73 (defcustom save-place-file (convert-standard-filename "~/.emacs-places")
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
74 "*Name of the file that records `save-place-alist' value."
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
75 :type 'file
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
76 :group 'save-place)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
78 (defcustom save-place-version-control 'nospecial
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
79 "*Controls whether to make numbered backups of master save-place file.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
80 It can have four values: t, nil, `never', and `nospecial'. The first
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
81 three have the same meaning that they do for the variable
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
82 `version-control', and the final value `nospecial' means just use the
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
83 value of `version-control'."
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
84 :type '(radio (const :tag "Unconditionally" t)
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
85 (const :tag "For VC Files" nil)
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
86 (const never)
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
87 (const :tag "Use value of version-control" nospecial))
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
88 :group 'save-place)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
89
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (defvar save-place-loaded nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 "Non-nil means that the `save-place-file' has been loaded.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
134
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
93 (defcustom save-place-limit nil
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
94 "Maximum number of entries to retain in the list; nil means no limit."
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
95 :type '(choice (integer :tag "Entries" :value 1)
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
96 (const :tag "No Limit" nil))
34a5b81f86ba Import from CVS: tag r20-2b1
cvs
parents: 2
diff changeset
97 :group 'save-place)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
98
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (defun toggle-save-place (&optional parg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 "Toggle whether to save your place in this file between sessions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 If this mode is enabled, point is recorded when you kill the buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 or exit Emacs. Visiting this file again will go to that position,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 even in a later Emacs session.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 If called with a prefix arg, the mode is enabled if and only if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 the argument is positive.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 To save places automatically in all files, put this in your `.emacs' file:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 \(setq-default save-place t\)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 (if (not buffer-file-name)
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
113 (message "Buffer `%s' not visiting a file" (buffer-name))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (if (and save-place (or (not parg) (<= parg 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 (progn
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
116 (message "No place will be saved in this file")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (setq save-place nil))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
118 (message "Place will be saved")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 (setq save-place t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (defun save-place-to-alist ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 ;; put filename and point in a cons box and then cons that onto the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 ;; front of the save-place-alist, if save-place is non-nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 ;; Otherwise, just delete that file from the alist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 ;; first check to make sure alist has been loaded in from the master
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 ;; file. If not, do so, then feel free to modify the alist. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 ;; will be saved again when Emacs is killed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (or save-place-loaded (load-save-place-alist-from-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (if buffer-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (let ((cell (assoc buffer-file-name save-place-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (if cell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (setq save-place-alist (delq cell save-place-alist))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (if save-place
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (setq save-place-alist
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
136 (cons (cons buffer-file-name
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
137 (if (not (eq major-mode 'hexl-mode))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
138 (point)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
139 (1+ (hexl-current-address))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 save-place-alist))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 (defun save-place-alist-to-file ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (let ((file (expand-file-name save-place-file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (save-excursion
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
145 (message "Saving places to %s..." file)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 (set-buffer (get-buffer-create " *Saved Places*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (delete-region (point-min) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (if (file-readable-p file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 (insert-file-contents file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (delete-region (point-min) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (print save-place-alist (current-buffer))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
153 (let ((version-control
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
154 (cond
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
155 ((null save-place-version-control) nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
156 ((eq 'never save-place-version-control) 'never)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
157 ((eq 'nospecial save-place-version-control) version-control)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
158 (t
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
159 t))))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
160 (write-file file)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
161 (kill-buffer (current-buffer))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
162 (message "Saving places to %s...done" file)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (defun load-save-place-alist-from-file ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (if (not save-place-loaded)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (setq save-place-loaded t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (let ((file (expand-file-name save-place-file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 ;; make sure that the alist does not get overwritten, and then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 ;; load it if it exists:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (if (file-readable-p file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (save-excursion
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
173 (message "Loading places from %s..." save-place-file)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 ;; don't want to use find-file because we have been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 ;; adding hooks to it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (set-buffer (get-buffer-create " *Saved Places*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (delete-region (point-min) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (insert-file-contents file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (setq save-place-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (car (read-from-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (buffer-substring (point-min) (point-max)))))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
183
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
184 ;; If there is a limit, and we're over it, then we'll
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
185 ;; have to truncate the end of the list:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
186 (if save-place-limit
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
187 (if (<= save-place-limit 0)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
188 ;; Zero gets special cased. I'm not thrilled
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
189 ;; with this, but the loop for >= 1 is tight.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
190 (setq save-place-alist nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
191 ;; Else the limit is >= 1, so enforce it by
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
192 ;; counting and then `setcdr'ing.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
193 (let ((s save-place-alist)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
194 (count 1))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
195 (while s
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
196 (if (>= count save-place-limit)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
197 (setcdr s nil)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
198 (setq count (1+ count)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
199 (setq s (cdr s))))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (kill-buffer (current-buffer))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
201 (message "Loading places from %s...done" file)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 (defun save-places-to-alist ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 ;; go through buffer-list, saving places to alist if save-place is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 ;; non-nil, deleting them from alist if it is nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (let ((buf-list (buffer-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (while buf-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 ;; put this into a save-excursion in case someone is counting on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 ;; another function in kill-emacs-hook to act on the last buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 ;; they were in:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (set-buffer (car buf-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 ;; save-place checks buffer-file-name too, but we can avoid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 ;; overhead of function call by checking here too.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (and buffer-file-name (save-place-to-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 (setq buf-list (cdr buf-list))))))
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
220
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
221 (defun save-place-find-file-hook ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
222 (or save-place-loaded (load-save-place-alist-from-file))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
223 (let ((cell (assoc buffer-file-name save-place-alist)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
224 (if cell
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
225 (progn
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
226 (or after-find-file-from-revert-buffer
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
227 (goto-char (cdr cell)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
228 ;; and make sure it will be saved again for later
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
229 (setq save-place t)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
231 (defun save-place-kill-emacs-hook ()
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
232 ;; First update the alist. This loads the old save-place-file if nec.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
233 (save-places-to-alist)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
234 ;; Now save the alist in the file, if we have ever loaded the file
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
235 ;; (including just now).
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
236 (if save-place-loaded
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
237 (save-place-alist-to-file)))
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
238
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
239 (add-hook 'find-file-hooks 'save-place-find-file-hook t)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
240
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
241 (add-hook 'kill-emacs-hook 'save-place-kill-emacs-hook)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (add-hook 'kill-buffer-hook 'save-place-to-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (provide 'saveplace) ; why not...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 ;;; saveplace.el ends here
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248