annotate lisp/saveplace.el @ 17403:5c3cd24dd8ee libc-970412 libc-970413 libc-970414 libc-970415 libc-970416 libc-970417 release-1-0

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