annotate lisp/packages/bookmark.el @ 153:25f70ba0133c r20-3b3

Import from CVS: tag r20-3b3
author cvs
date Mon, 13 Aug 2007 09:38:25 +0200
parents cca96a509cfe
children 28f395d8dc7a
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 ;;; bookmark.el --- set bookmarks, maybe annotate them, jump to them later.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
3 ;; Copyright (C) 1993, 1994, 1995, 1996 Free Software Foundation
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
5 ;; Author: Karl Fogel <kfogel@red-bean.com>
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
6 ;; Maintainer: Karl Fogel <kfogel@red-bean.com>
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; Created: July, 1993
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
8 ;; Author's Update Number: see variable `bookmark-version'.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; Keywords: bookmarks, placeholders, annotations
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 GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; it 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 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; but 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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; GNU 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
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
26 ;; Boston, MA 02111-1307, USA.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
28 ;;; Commentary:
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
29
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
30 ;; This package is for setting "bookmarks" in files. A bookmark
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
31 ;; associates a string with a location in a certain file. Thus, you
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
32 ;; can navigate your way to that location by providing the string.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
33 ;; See the "User Variables" section for customizations.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;; Thanks to David Bremner <bremner@cs.sfu.ca> for thinking of and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;; then implementing the bookmark-current-bookmark idea. He even
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;; sent *patches*, bless his soul...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;; Thanks to Gregory M. Saunders <saunders@cis.ohio-state.edu> for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;; fixing and improving bookmark-time-to-save-p.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;; Thanks go to Andrew V. Klein <avk@cig.mot.com> for the code that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;; sorts the alist before presenting it to the user (in bookmark-bmenu-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ;; and the menu-bar).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 ;; And much thanks to David Hughes <djh@harston.cv.com> for many small
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ;; suggestions and the code to implement them (like
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 ;; bookmark-bmenu-check-position, and some of the Lucid compatibility
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 ;; stuff).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
51 ;; Kudos (whatever they are) go to Jim Blandy <jimb@red-bean.com>
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 ;; for his eminently sensible suggestion to separate bookmark-jump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 ;; into bookmark-jump and bookmark-jump-noselect, which made many
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 ;; other things cleaner as well.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 ;; Thanks to Roland McGrath for encouragement and help with defining
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 ;; autoloads on the menu-bar.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ;; Jonathan Stigelman <stig@hackvan.com> gave patches for default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 ;; values in bookmark-jump and bookmark-set. Everybody please keep
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 ;; all the keystrokes they save thereby and send them to him at the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 ;; end of each year :-) (No, seriously, thanks Jonathan!)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 ;; Buckets of gratitude to John Grabowski <johng@media.mit.edu> for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 ;; thinking up the annotations feature and implementing it so well.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 ;; Based on info-bookmark.el, by Karl Fogel and Ken Olstad
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 ;; <olstad@msc.edu>.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 ;; Thanks to Mikio Nakajima <PBC01764@niftyserve.or.jp> for many bugs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 ;; reported and fixed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 ;; Thank you, Michael Kifer, for contributing the XEmacs support.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 ;; Enough with the credits already, get on to the good stuff:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 ;; FAVORITE CHINESE RESTAURANT:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 ;; Boy, that's a tough one. Probably Hong Min, or maybe Emperor's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 ;; Choice (both in Chicago's Chinatown). Well, both. How about you?
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
80
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
81 ;;;; Code:
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (require 'pp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
85 (defconst bookmark-version "2.6.4"
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
86 "Version number of bookmark.el. This is not related to the version
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
87 of Emacs bookmark comes with; it is used solely by bookmark's
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
88 maintainers to avoid version confusion.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 ;;; Misc comments:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 ;; If variable bookmark-use-annotations is non-nil, an annotation is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 ;; queried for when setting a bookmark.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 ;; The bookmark list is sorted lexically by default, but you can turn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 ;; this off by setting bookmark-sort-flag to nil. If it is nil, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 ;; the list will be presented in the order it is recorded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 ;; (chronologically), which is actually fairly useful as well.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 ;;; User Variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
102 (defvar bookmark-use-annotations nil
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
103 "*If non-nil, saving a bookmark will query for an annotation in a
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
104 buffer.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
107 (defvar bookmark-save-flag t
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 "*Controls when Emacs saves bookmarks to a file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 --> Nil means never save bookmarks, except when `bookmark-save' is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 explicitly called \(\\[bookmark-save]\).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 --> t means save bookmarks when Emacs is killed.
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
112 --> Otherwise, it should be a number that is the frequency with which
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 the bookmark list is saved \(i.e.: the number of times which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 Emacs' bookmark list may be modified before it is automatically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 saved.\). If it is a number, Emacs will also automatically save
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 bookmarks when it is killed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 Therefore, the way to get it to save every time you make or delete a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 bookmark is to set this variable to 1 \(or 0, which produces the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 behavior.\)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 To specify the file in which to save them, modify the variable
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
123 bookmark-default-file, which is `~/.emacs.bmk' by default.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (defconst bookmark-old-default-file "~/.emacs-bkmrks"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 "*The .emacs.bmk file used to be called this.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 ;; defvarred to avoid a compilation warning:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (defvar bookmark-file nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 "Old name for `bookmark-default-file'.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
134 (defvar bookmark-default-file
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
135 (if bookmark-file
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 ;; In case user set `bookmark-file' in her .emacs:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 bookmark-file
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
138 (convert-standard-filename "~/.emacs.bmk"))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
139 "*File in which to save bookmarks by default.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
142 (defvar bookmark-version-control 'nospecial
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 "*Whether or not to make numbered backups of the bookmark file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 It can have four values: t, nil, `never', and `nospecial'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 The first three have the same meaning that they do for the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 variable `version-control', and the final value `nospecial' means just
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
147 use the value of `version-control'.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
150 (defvar bookmark-completion-ignore-case t
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
151 "*Non-nil means bookmark functions ignore case in completion.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
154 (defvar bookmark-sort-flag t
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 "*Non-nil means that bookmarks will be displayed sorted by bookmark
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 name. Otherwise they will be displayed in LIFO order (that is, most
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
157 recently set ones come first, oldest ones come last).")
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
158
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
159
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
160 (defvar bookmark-automatically-show-annotations t
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
161 "*Nil means don't show annotations when jumping to a bookmark.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
164 (defvar bookmark-bmenu-file-column 30
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
165 "*Column at which to display filenames in a buffer listing bookmarks.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
166 You can toggle whether files are shown with \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-toggle-filenames].")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
169 (defvar bookmark-bmenu-toggle-filenames t
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 "*Non-nil means show filenames when listing bookmarks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 This may result in truncated bookmark names. To disable this, put the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 following in your .emacs:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
174 \(setq bookmark-bmenu-toggle-filenames nil\)")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
177 (defvar bookmark-menu-length 70
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
178 "*Maximum length of a bookmark name displayed on a popup menu.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 ;;; No user-serviceable parts beyond this point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 ;; Is it XEmacs?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (defconst bookmark-xemacsp
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
185 (string-match "\\(Lucid\\|Xemacs\\)" emacs-version))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 ;; Added for lucid emacs compatibility, db
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (or (fboundp 'defalias) (fset 'defalias 'fset))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 ;; suggested for lucid compatibility by david hughes:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (or (fboundp 'frame-height) (defalias 'frame-height 'screen-height))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
194 ;; This variable is probably obsolete now...
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
195 (or (boundp 'baud-rate)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
196 ;; some random value higher than 9600
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
197 (setq baud-rate 19200))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
198
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
199 ;; XEmacs apparently call this `buffer-substring-without-properties',
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
200 ;; sigh.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
201 (or (fboundp 'buffer-substring-no-properties)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
202 (if (fboundp 'buffer-substring-without-properties)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
203 (fset 'buffer-substring-no-properties
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
204 'buffer-substring-without-properties)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
205 (fset 'buffer-substring-no-properties 'buffer-substring)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 ;;; Keymap stuff:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 ;; some people have C-x r set to rmail or whatever. We don't want to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 ;; assume that C-x r is a prefix map just because it's distributed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 ;; that way...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 ;; These are the distribution keybindings suggested by RMS, everything
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 ;; else will be done with M-x or the menubar:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (if (symbolp (key-binding "\C-xr"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 (progn (define-key ctl-x-map "rb" 'bookmark-jump)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (define-key ctl-x-map "rm" 'bookmark-set)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 (define-key ctl-x-map "rl" 'bookmark-bmenu-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 ;; define the map, so it can be bound by those who desire to do so:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 (defvar bookmark-map nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 "Keymap containing bindings to bookmark functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 It is not bound to any key by default: to bind it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 so that you have a bookmark prefix, just use `global-set-key' and bind a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 key of your choice to `bookmark-map'. All interactive bookmark
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 functions have a binding in this keymap.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 (define-prefix-command 'bookmark-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 ;; Read the help on all of these functions for details...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 (define-key bookmark-map "x" 'bookmark-set)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (define-key bookmark-map "m" 'bookmark-set) ; "m" for "mark"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (define-key bookmark-map "j" 'bookmark-jump)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (define-key bookmark-map "g" 'bookmark-jump) ; "g" for "go"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (define-key bookmark-map "i" 'bookmark-insert)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (define-key bookmark-map "e" 'edit-bookmarks)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 (define-key bookmark-map "f" 'bookmark-insert-location) ; "f" for "find"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 (define-key bookmark-map "r" 'bookmark-rename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (define-key bookmark-map "d" 'bookmark-delete)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (define-key bookmark-map "l" 'bookmark-load)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 (define-key bookmark-map "w" 'bookmark-write)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 (define-key bookmark-map "s" 'bookmark-save)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 ;;; The annotation maps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 (defvar bookmark-read-annotation-mode-map (copy-keymap text-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 "Keymap for composing an annotation for a bookmark.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 (define-key bookmark-read-annotation-mode-map "\C-c\C-c"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 'bookmark-send-annotation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 ;;; Core variables and data structures:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (defvar bookmark-alist ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 "Association list of bookmarks and their records.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 You probably don't want to change the value of this alist yourself;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 instead, let the various bookmark functions do it for you.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 The format of the alist is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 \(BOOKMARK1 BOOKMARK2 ...\)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 where each BOOKMARK is of the form
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 \(NAME
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 \(filename . FILE\)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 \(front-context-string . FRONT-STR\)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 \(rear-context-string . REAR-STR\)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 \(position . POS\)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 \(info-node . POS\)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 \(annotation . ANNOTATION\)\)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 So the cdr of each bookmark is an alist too.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 `info-node' is optional, by the way.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (defvar bookmarks-already-loaded nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 ;; just add the hook to make sure that people don't lose bookmarks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 ;; when they kill Emacs, unless they don't want to save them.
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
299 ;;;###autoload
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (add-hook 'kill-emacs-hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 (lambda () (and (featurep 'bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 bookmark-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 (bookmark-time-to-save-p t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 (bookmark-save)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 ;; more stuff added by db.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (defvar bookmark-current-bookmark nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 "Name of bookmark most recently used in the current file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 It is buffer local, used to make moving a bookmark forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 through a file easier.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 (make-variable-buffer-local 'bookmark-current-bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 (defvar bookmark-alist-modification-count 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 "Number of modifications to bookmark list since it was last saved.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 (defvar bookmark-search-size 16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 "Length of the context strings recorded on either side of a bookmark.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (defvar bookmark-current-point 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 (defvar bookmark-yank-point 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 (defvar bookmark-current-buffer nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 ;; Helper functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 ;; Only functions on this page and the next one (file formats) need to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 ;; know anything about the format of bookmark-alist entries.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 ;; Everyone else should go through them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 (defun bookmark-name-from-full-record (full-record)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 "Return name of FULL-RECORD \(an alist element instead of a string\)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 (car full-record))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 (defun bookmark-all-names ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 "Return a list of all current bookmark names."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 (bookmark-maybe-load-default-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 (mapcar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 (lambda (full-record)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 (bookmark-name-from-full-record full-record))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 bookmark-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 (defun bookmark-get-bookmark (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 "Return the full entry for BOOKMARK in bookmark-alist."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (assoc bookmark bookmark-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 (defun bookmark-get-bookmark-record (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 "Return the guts of the entry for BOOKMARK in bookmark-alist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 That is, all information but the name."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 (car (cdr (bookmark-get-bookmark bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (defun bookmark-set-name (bookmark newname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 "Set BOOKMARK's name to NEWNAME."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 (setcar (bookmark-get-bookmark bookmark) newname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 (defun bookmark-get-annotation (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 "Return the annotation of BOOKMARK, or nil if none."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 (cdr (assq 'annotation (bookmark-get-bookmark-record bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 (defun bookmark-set-annotation (bookmark ann)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 "Set the annotation of BOOKMARK to ANN."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 (let ((cell (assq 'annotation (bookmark-get-bookmark-record bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (if cell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 (setcdr cell ann)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 (nconc (bookmark-get-bookmark-record bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 (list (cons 'annotation ann))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (defun bookmark-get-filename (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 "Return the full filename of BOOKMARK."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (cdr (assq 'filename (bookmark-get-bookmark-record bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 (defun bookmark-set-filename (bookmark filename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 "Set the full filename of BOOKMARK to FILENAME."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 (let ((cell (assq 'filename (bookmark-get-bookmark-record bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (if cell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 (setcdr cell filename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 (nconc (bookmark-get-bookmark-record bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 (list (cons 'filename filename))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 (defun bookmark-get-position (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 "Return the position \(i.e.: point\) of BOOKMARK."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (cdr (assq 'position (bookmark-get-bookmark-record bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 (defun bookmark-set-position (bookmark position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 "Set the position \(i.e.: point\) of BOOKMARK to POSITION."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 (let ((cell (assq 'position (bookmark-get-bookmark-record bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 (if cell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 (setcdr cell position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 (nconc (bookmark-get-bookmark-record bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (list (cons 'position position))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 (defun bookmark-get-front-context-string (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 "Return the front-context-string of BOOKMARK."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 (cdr (assq 'front-context-string (bookmark-get-bookmark-record bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 (defun bookmark-set-front-context-string (bookmark string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 "Set the front-context-string of BOOKMARK to STRING."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 (let ((cell (assq 'front-context-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 (bookmark-get-bookmark-record bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 (if cell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 (setcdr cell string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 (nconc (bookmark-get-bookmark-record bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 (list (cons 'front-context-string string))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 (defun bookmark-get-rear-context-string (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 "Return the rear-context-string of BOOKMARK."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (cdr (assq 'rear-context-string (bookmark-get-bookmark-record bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (defun bookmark-set-rear-context-string (bookmark string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 "Set the rear-context-string of BOOKMARK to STRING."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 (let ((cell (assq 'rear-context-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 (bookmark-get-bookmark-record bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 (if cell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 (setcdr cell string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 (nconc (bookmark-get-bookmark-record bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 (list (cons 'rear-context-string string))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 (defun bookmark-get-info-node (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 "Get the info node associated with BOOKMARK."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 (cdr (assq 'info-node (bookmark-get-bookmark-record bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 (defun bookmark-set-info-node (bookmark node)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 "Set the Info node of BOOKMARK to NODE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 (let ((cell (assq 'info-node
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 (bookmark-get-bookmark-record bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 (if cell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 (setcdr cell node)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 (nconc (bookmark-get-bookmark-record bookmark)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
451 (list (cons 'info-node node)))))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
452
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
453 (message "%S" (assq 'info-node (bookmark-get-bookmark-record bookmark)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
454 (sit-for 4)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
455 )
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (defvar bookmark-history nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 "The history list for bookmark functions.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 (defun bookmark-completing-read (prompt &optional default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 "Prompting with PROMPT, read a bookmark name in completion.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 PROMPT will get a \": \" stuck on the end no matter what, so you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 probably don't want to include one yourself.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 Optional second arg DEFAULT is a string to return if the user enters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 the empty string."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (bookmark-maybe-load-default-file) ; paranoia
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 (let* ((completion-ignore-case bookmark-completion-ignore-case)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (default default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 (prompt (if default
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 (concat prompt (format " (%s): " default))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 (concat prompt ": ")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 (str
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 (completing-read prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 bookmark-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 'bookmark-history)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 (if (string-equal "" str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 (list default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 (list str))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 (defmacro bookmark-maybe-historicize-string (string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 "Put STRING into the bookmark prompt history, if caller non-interactive.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 We need this because sometimes bookmark functions are invoked from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 menus, so `completing-read' never gets a chance to set `bookmark-history'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 (` (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 (interactive-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 (setq bookmark-history (cons (, string) bookmark-history)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
495 (defun bookmark-make (name &optional annotation overwrite info-node)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 "Make a bookmark named NAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 Optional second arg ANNOTATION gives it an annotation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 Optional third arg OVERWRITE means replace any existing bookmarks with
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
499 this name.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
500 Optional fourth arg INFO-NODE means this bookmark is at info node
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
501 INFO-NODE, so record this fact in the bookmark's entry."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 (bookmark-maybe-load-default-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 (let ((stripped-name (copy-sequence name)))
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
504 (or bookmark-xemacsp
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
505 ;; XEmacs's `set-text-properties' doesn't work on
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
506 ;; free-standing strings, apparently.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
507 (set-text-properties 0 (length stripped-name) nil stripped-name))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (if (and (bookmark-get-bookmark stripped-name) (not overwrite))
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
509 ;; already existing bookmark under that name and
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 ;; no prefix arg means just overwrite old bookmark
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 (setcdr (bookmark-get-bookmark stripped-name)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
512 (list (bookmark-make-cell annotation info-node)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 ;; otherwise just cons it onto the front (either the bookmark
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 ;; doesn't exist already, or there is no prefix arg. In either
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 ;; case, we want the new bookmark consed onto the alist...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 (setq bookmark-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 (cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (list stripped-name
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
521 (bookmark-make-cell annotation info-node))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 bookmark-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 ;; Added by db
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 (setq bookmark-current-bookmark stripped-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 (setq bookmark-alist-modification-count
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 (1+ bookmark-alist-modification-count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 (if (bookmark-time-to-save-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 (bookmark-save))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
532 (defun bookmark-make-cell (annotation &optional info-node)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 "Return the record part of a new bookmark, given ANNOTATION.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 Must be at the correct position in the buffer in which the bookmark is
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
535 being set. This might change someday.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
536 Optional second arg INFO-NODE means this bookmark is at info node
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
537 INFO-NODE, so record this fact in the bookmark's entry."
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
538 (let ((the-record
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
539 (` ((filename . (, (bookmark-buffer-file-name)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
540 (front-context-string
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
541 . (, (if (>= (- (point-max) (point)) bookmark-search-size)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
542 (buffer-substring-no-properties
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
543 (point)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
544 (+ (point) bookmark-search-size))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
545 nil)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
546 (rear-context-string
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
547 . (, (if (>= (- (point) (point-min)) bookmark-search-size)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
548 (buffer-substring-no-properties
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
549 (point)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
550 (- (point) bookmark-search-size))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
551 nil)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
552 (position . (, (point)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
553 ))))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
554
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
555 ;; Now fill in the optional parts:
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
556 (if annotation
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
557 (nconc the-record (list (cons 'annotation annotation))))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
558 (if info-node
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
559 (nconc the-record (list (cons 'info-node info-node))))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
560
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
561 ;; Finally, return the completed record.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
562 the-record))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
563
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 ;;; File format stuff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 ;; The OLD format of the bookmark-alist was:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 ;; ((bookmark-name (filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 ;; string-in-front
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 ;; string-behind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 ;; point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 ;; ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 ;; The NEW format of the bookmark-alist is:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 ;; ((bookmark-name ((filename . FILENAME)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 ;; (front-context-string . string-in-front)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 ;; (rear-context-string . string-behind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 ;; (position . POINT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 ;; (annotation . annotation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 ;; (whatever . VALUE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 ;; ...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 ;; ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 ;; ...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 ;; I switched to using an internal as well as external alist because I
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 ;; felt that would be a more flexible framework in which to add
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 ;; features. It means that the order in which values appear doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 ;; matter, and it means that arbitrary values can be added without
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 ;; risk of interfering with existing ones.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 ;; BOOKMARK-NAME is the string the user gives the bookmark and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 ;; accesses it by from then on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 ;; FILENAME is the location of the file in which the bookmark is set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 ;; STRING-IN-FRONT is a string of `bookmark-search-size' chars of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 ;; context in front of the point at which the bookmark is set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 ;; STRING-BEHIND is the same thing, but after the point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 ;; The context strings exist so that modifications to a file don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 ;; necessarily cause a bookmark's position to be invalidated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 ;; bookmark-jump will search for STRING-BEHIND and STRING-IN-FRONT in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 ;; case the file has changed since the bookmark was set. It will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 ;; attempt to place the user before the changes, if there were any.
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
610 ;; ANNOTATION is the annotation for the bookmark; it may not exist
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 ;; (for backward compatibility), be nil (no annotation), or be a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 ;; string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 (defconst bookmark-file-format-version 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 "The current version of the format used by bookmark files.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 You should never need to change this.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 (defconst bookmark-end-of-version-stamp-marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 "-*- End Of Bookmark File Format Version Stamp -*-\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 "This string marks the end of the version stamp in a bookmark file.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 (defun bookmark-alist-from-buffer ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 "Return a bookmark-alist (in any format) from the current buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 The buffer must of course contain bookmark format information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 Does not care from where in the buffer it is called, and does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 affect point."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 (if (search-forward bookmark-end-of-version-stamp-marker nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 (read (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 ;; Else we're dealing with format version 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 (if (search-forward "(" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (forward-char -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 (read (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 ;; Else no hope of getting information here.
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
640 (error "Not bookmark format")))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 (defun bookmark-upgrade-version-0-alist (old-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 "Upgrade a version 0 alist OLD-LIST to the current version."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 (mapcar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 (lambda (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 (let* ((name (car bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 (record (car (cdr bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 (filename (nth 0 record))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 (front-str (nth 1 record))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 (rear-str (nth 2 record))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 (position (nth 3 record))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 (ann (nth 4 record)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 (list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 (` ((filename . (, filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 (front-context-string . (, (or front-str "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 (rear-context-string . (, (or rear-str "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 (position . (, position))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 (annotation . (, ann)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 old-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 (defun bookmark-upgrade-file-format-from-0 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 "Upgrade a bookmark file of format 0 (the original format) to format 1.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 This expects to be called from point-min in a bookmark file."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 (message "Upgrading bookmark format from 0 to %d..."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 bookmark-file-format-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 (let* ((old-list (bookmark-alist-from-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 (new-list (bookmark-upgrade-version-0-alist old-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 (delete-region (point-min) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 (bookmark-insert-file-format-version-stamp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 (pp new-list (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 (save-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 (goto-char (point-min))
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
676 (message "Upgrading bookmark format from 0 to %d...done"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 bookmark-file-format-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 (defun bookmark-grok-file-format-version ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 "Return an integer which is the file-format version of this bookmark file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 This expects to be called from point-min in a bookmark file."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 (if (looking-at "^;;;;")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 (save-match-data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 (re-search-forward "[0-9]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 (forward-char -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 (read (current-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 ;; Else this is format version 0, the original one, which didn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 ;; even have version stamps.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 (defun bookmark-maybe-upgrade-file-format ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 "Check the file-format version of this bookmark file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 If the version is not up-to-date, upgrade it automatically.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 This expects to be called from point-min in a bookmark file."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 (let ((version (bookmark-grok-file-format-version)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 ((= version bookmark-file-format-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 ) ; home free -- version is current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 ((= version 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 (bookmark-upgrade-file-format-from-0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 (t
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
706 (error "Bookmark file format version strangeness")))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 (defun bookmark-insert-file-format-version-stamp ()
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
710 "Insert text indicating current version of bookmark file format."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 (insert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 (format ";;;; Emacs Bookmark Format Version %d ;;;;\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 bookmark-file-format-version))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 (insert ";;; This format is meant to be slightly human-readable;\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 ";;; nevertheless, you probably don't want to edit it.\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 ";;; "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 bookmark-end-of-version-stamp-marker))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 ;;; end file-format stuff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 ;;; Core code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 (defun bookmark-set (&optional name parg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 "Set a bookmark named NAME inside a file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 If name is nil, then the user will be prompted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 With prefix arg, will not overwrite a bookmark that has the same name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 as NAME if such a bookmark already exists, but instead will \"push\"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 the new bookmark onto the bookmark alist. Thus the most recently set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 bookmark with name NAME would be the one in effect at any given time,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 but the others are still there, should you decide to delete the most
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 recent one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 To yank words from the text of the buffer and use them as part of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 bookmark name, type C-w while setting a bookmark. Successive C-w's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 yank successive words.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 Typing C-u inserts the name of the last bookmark used in the buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 \(as an aid in using a single bookmark name to track your progress
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 through a large file\). If no bookmark was used, then C-u inserts the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 name of the file being visited.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 Use \\[bookmark-delete] to remove bookmarks \(you give it a name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 and it removes only the first instance of a bookmark with that name from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 the list of bookmarks.\)"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 (interactive (list nil current-prefix-arg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 (bookmark-buffer-file-name)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
751 (error "Buffer not visiting a file or directory"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 (bookmark-maybe-load-default-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 (setq bookmark-current-point (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 (setq bookmark-yank-point (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 (setq bookmark-current-buffer (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 (let* ((default (or bookmark-current-bookmark
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 (bookmark-buffer-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 (str
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 (or name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 (read-from-minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 (format "Set bookmark (%s): " default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 (let ((now-map (copy-keymap minibuffer-local-map)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 (progn (define-key now-map "\C-w"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 'bookmark-yank-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 (define-key now-map "\C-u"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 'bookmark-insert-current-bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 now-map))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 (annotation nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 (and (string-equal str "") (setq str default))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 ;; Ask for an annotation buffer for this bookmark
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 (if bookmark-use-annotations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 (bookmark-read-annotation parg str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 (progn
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
778 (bookmark-make str annotation parg (bookmark-info-current-node))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 (setq bookmark-current-bookmark str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 (bookmark-bmenu-surreptitiously-rebuild-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 (goto-char bookmark-current-point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
784 (defun bookmark-info-current-node ()
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
785 "If in Info-mode, return current node name (a string), else nil."
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
786 (if (eq major-mode 'Info-mode)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
787 Info-current-node))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
788
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
789
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 (defun bookmark-kill-line (&optional newline-too)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 "Kill from point to end of line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 If optional arg NEWLINE-TOO is non-nil, delete the newline too.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 Does not affect the kill-ring."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 (let ((eol (save-excursion (end-of-line) (point))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 (delete-region (point) eol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 (if (and newline-too (looking-at "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 (delete-char 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 ;; Defvars to avoid compilation warnings:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 (defvar bookmark-annotation-paragraph nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 (defvar bookmark-annotation-name nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 (defvar bookmark-annotation-buffer nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 (defvar bookmark-annotation-file nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 (defvar bookmark-annotation-point nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 (defun bookmark-send-annotation ()
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
809 "Use buffer contents as the annotation for a bookmark.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
810 Exclude lines that begin with `#'.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
811 Store the annotation text in the bookmark list with
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 the bookmark (and file, and point) specified in buffer local variables."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 (if (not (eq major-mode 'bookmark-read-annotation-mode))
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
815 (error "Not in bookmark-read-annotation-mode"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 (while (< (point) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 (if (looking-at "^#")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 (bookmark-kill-line t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 (forward-line 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 (let ((annotation (buffer-substring (point-min) (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 (parg bookmark-annotation-paragraph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 (bookmark bookmark-annotation-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 (pt bookmark-annotation-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 (buf bookmark-annotation-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 ;; for bookmark-make-cell to work, we need to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 ;; in the relevant buffer, at the relevant point.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 ;; Actually, bookmark-make-cell should probably be re-written,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 ;; to avoid this need. Should I handle the error if a buffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 ;; killed between "C-x r m" and a "C-c C-c" in the annotation buffer?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 (pop-to-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 (goto-char pt)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
834 (bookmark-make bookmark annotation parg (bookmark-info-current-node))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 (setq bookmark-current-bookmark bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 (bookmark-bmenu-surreptitiously-rebuild-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 (goto-char bookmark-current-point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 (kill-buffer (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 (defun bookmark-default-annotation-text (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 (concat "# Type the annotation for bookmark '" bookmark "' here.\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 "# All lines which start with a '#' will be deleted.\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 "# Type C-c C-c when done.\n#\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 "# Author: " (user-full-name) " <" (user-login-name) "@"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 (system-name) ">\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 "# Date: " (current-time-string) "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 (defvar bookmark-read-annotation-text-func 'bookmark-default-annotation-text
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
851 "Function to return default text to use for a bookmark annotation.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
852 It takes the name of the bookmark, as a string, as an arg.")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 (defun bookmark-read-annotation-mode (buf point parg bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 "Mode for composing annotations for a bookmark.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 Wants BUF POINT PARG and BOOKMARK.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 When you have finished composing, type \\[bookmark-send-annotation] to send
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 the annotation.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 \\{bookmark-read-annotation-mode-map}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 (kill-all-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 (make-local-variable 'bookmark-annotation-paragraph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 (make-local-variable 'bookmark-annotation-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 (make-local-variable 'bookmark-annotation-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 (make-local-variable 'bookmark-annotation-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 (make-local-variable 'bookmark-annotation-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 (setq bookmark-annotation-paragraph parg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 (setq bookmark-annotation-name bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 (setq bookmark-annotation-buffer buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 (setq bookmark-annotation-file (buffer-file-name buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 (setq bookmark-annotation-point point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 (use-local-map bookmark-read-annotation-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 (setq major-mode 'bookmark-read-annotation-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 (insert (funcall bookmark-read-annotation-text-func bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 (run-hooks 'text-mode-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 (defun bookmark-read-annotation (parg bookmark)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
881 "Pop up a buffer for entering a bookmark annotation.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
882 Text surrounding the bookmark is PARG; the bookmark name is BOOKMARK."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 (let ((buf (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 (point (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 (pop-to-buffer (generate-new-buffer-name "*Bookmark Annotation Compose*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 (bookmark-read-annotation-mode buf point parg bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 (defvar bookmark-edit-annotation-mode-map (copy-keymap text-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 "Keymap for editing an annotation of a bookmark.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 (define-key bookmark-edit-annotation-mode-map "\C-c\C-c"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 'bookmark-send-edited-annotation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 (defun bookmark-edit-annotation-mode (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 "Mode for editing the annotation of bookmark BOOKMARK.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 When you have finished composing, type \\[bookmark-send-annotation].
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 \\{bookmark-edit-annotation-mode-map}
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 (kill-all-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 (make-local-variable 'bookmark-annotation-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 (setq bookmark-annotation-name bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 (use-local-map bookmark-edit-annotation-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 (setq major-mode 'bookmark-edit-annotation-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 (insert (funcall bookmark-read-annotation-text-func bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 (let ((annotation (bookmark-get-annotation bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 (if (and (not (eq annotation nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 (not (string-equal annotation "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 (insert annotation)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 (run-hooks 'text-mode-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 (defun bookmark-send-edited-annotation ()
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
918 "Use buffer contents (minus beginning with `#' as annotation for a bookmark."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920 (if (not (eq major-mode 'bookmark-edit-annotation-mode))
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
921 (error "Not in bookmark-edit-annotation-mode"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 (while (< (point) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 (if (looking-at "^#")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 (bookmark-kill-line t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 (forward-line 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 (let ((annotation (buffer-substring (point-min) (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 (bookmark bookmark-annotation-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 (bookmark-set-annotation bookmark annotation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 (bookmark-bmenu-surreptitiously-rebuild-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 (goto-char bookmark-current-point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 (kill-buffer (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 (defun bookmark-edit-annotation (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 "Pop up a buffer for editing bookmark BOOKMARK's annotation."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 (let ((buf (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 (point (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 (pop-to-buffer (generate-new-buffer-name "*Bookmark Annotation Compose*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 (bookmark-edit-annotation-mode bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 (defun bookmark-insert-current-bookmark ()
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
944 "Insert this buffer's value of bookmark-current-bookmark.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
945 Default to file name if it's nil."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 (let ((str
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 (set-buffer bookmark-current-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 bookmark-current-bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 (if str (insert str) (bookmark-insert-buffer-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 (defun bookmark-insert-buffer-name ()
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
955 "Insert the current file name into the bookmark name being set.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
956 The directory part of the file name is not used."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 (let ((str
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 (set-buffer bookmark-current-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 (bookmark-buffer-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 (insert str)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 (defun bookmark-buffer-name ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 "Return the name of the current buffer's file, non-directory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 In Info, return the current node."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969 ;; Are we in Info?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 ((string-equal mode-name "Info") Info-current-node)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 ;; Or are we a file?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 (buffer-file-name (file-name-nondirectory buffer-file-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 ;; Or are we a directory?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 ((and (boundp 'dired-directory) dired-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 (let* ((dirname (if (stringp dired-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 dired-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 (car dired-directory)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 (idx (1- (length dirname))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 ;; Strip the trailing slash.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 (if (= ?/ (aref dirname idx))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 (file-name-nondirectory (substring dirname 0 idx))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 ;; Else return the current-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 (buffer-name (current-buffer)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 ;; If all else fails, use the buffer's name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 (buffer-name (current-buffer)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 (defun bookmark-yank-word ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 ;; get the next word from the buffer and append it to the name of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 ;; the bookmark currently being set.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 (let ((string (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 (set-buffer bookmark-current-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 (goto-char bookmark-yank-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 (buffer-substring-no-properties
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 (forward-word 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 (setq bookmark-yank-point (point)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 (insert string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 (defun bookmark-buffer-file-name ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 "Return the current buffer's file in a way useful for bookmarks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 For example, if this is a Info buffer, return the Info file's name."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 (if (eq major-mode 'Info-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 Info-current-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 buffer-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 (if (and (boundp 'dired-directory) dired-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 (if (stringp dired-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 dired-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 (car dired-directory))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 (defun bookmark-maybe-load-default-file ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 (and (not bookmarks-already-loaded)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 (null bookmark-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 (prog2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 ;; Possibly the old bookmark file, "~/.emacs-bkmrks", needs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 ;; to be renamed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 (file-exists-p (expand-file-name bookmark-old-default-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 (not (file-exists-p (expand-file-name bookmark-default-file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 (rename-file (expand-file-name bookmark-old-default-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 (expand-file-name bookmark-default-file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 ;; return t so the `and' will continue...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 (file-readable-p (expand-file-name bookmark-default-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 (bookmark-load bookmark-default-file t t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 (setq bookmarks-already-loaded t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 (defun bookmark-maybe-sort-alist ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 ;;Return the bookmark-alist for display. If the bookmark-sort-flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 ;;is non-nil, then return a sorted copy of the alist.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 (if bookmark-sort-flag
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 (setq bookmark-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 (sort (copy-alist bookmark-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 (lambda (x y) (string-lessp (car x) (car y))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 (defun bookmark-jump (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 "Jump to bookmark BOOKMARK (a point in some file).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 You may have a problem using this function if the value of variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 `bookmark-alist' is nil. If that happens, you need to load in some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 bookmarks. See help on function `bookmark-load' for more about
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 If the file pointed to by BOOKMARK no longer exists, you will be asked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 if you wish to give the bookmark a new location, and bookmark-jump
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 will then jump to the new location, as well as recording it in place
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 of the old one in the permanent bookmark record."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 (bookmark-completing-read "Jump to bookmark" bookmark-current-bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 (bookmark-maybe-historicize-string bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 (let ((cell (bookmark-jump-noselect bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 (and cell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 (switch-to-buffer (car cell))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 (goto-char (cdr cell))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 (if bookmark-automatically-show-annotations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 ;; if there is an annotation for this bookmark,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 ;; show it in a buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 (bookmark-show-annotation bookmark)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 (defun bookmark-jump-noselect (str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 ;; a leetle helper for bookmark-jump :-)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 ;; returns (BUFFER . POINT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 (bookmark-maybe-load-default-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 (let* ((file (expand-file-name (bookmark-get-filename str)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 (forward-str (bookmark-get-front-context-string str))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 (behind-str (bookmark-get-rear-context-string str))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 (place (bookmark-get-position str))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 (info-node (bookmark-get-info-node str))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 (orig-file file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 (if (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 (file-exists-p file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 ;; else try some common compression extensions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 ;; and Emacs better handle it right!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 ;; Sigh: I think it may *not* be handled at the moment. What
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 ;; to do about this?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 (setq file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 (let ((altname (concat file ".Z")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 (and (file-exists-p altname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 altname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 (let ((altname (concat file ".gz")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 (and (file-exists-p altname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 altname))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 (let ((altname (concat file ".z")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 (and (file-exists-p altname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 altname)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 (if info-node
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 ;; Info nodes must be visited with care.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 (require 'info)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 (Info-find-node file info-node))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 ;; Else no Info. Can do an ordinary find-file:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 (set-buffer (find-file-noselect file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 (goto-char place))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 ;; Go searching forward first. Then, if forward-str exists and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 ;; was found in the file, we can search backward for behind-str.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 ;; Rationale is that if text was inserted between the two in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 ;; file, it's better to be put before it so you can read it,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 ;; rather than after and remain perhaps unaware of the changes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 (if forward-str
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 (if (search-forward forward-str (point-max) t)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1117 (goto-char (match-beginning 0))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 (if behind-str
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 (if (search-backward behind-str (point-min) t)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1120 (goto-char (match-end 0))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 ;; added by db
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 (setq bookmark-current-bookmark str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 (cons (current-buffer) (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 (ding)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 (if (y-or-n-p (concat (file-name-nondirectory orig-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 " nonexistent. Relocate \""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 str
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 "\"? "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 (bookmark-relocate str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 ;; gasp! It's a recursive function call in Emacs Lisp!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 (bookmark-jump-noselect str))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 (message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 "Bookmark not relocated; consider removing it \(%s\)." str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 nil)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 (defun bookmark-relocate (bookmark)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1141 "Relocate BOOKMARK to another file (reading file name with minibuffer).
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1142 This makes an already existing bookmark point to that file, instead of
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1143 the one it used to point at. Useful when a file has been renamed
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1144 after a bookmark was set in it."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 (interactive (bookmark-completing-read "Bookmark to relocate"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 (bookmark-maybe-historicize-string bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 (bookmark-maybe-load-default-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 (let* ((bmrk-filename (bookmark-get-filename bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 (newloc (expand-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 (read-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 (format "Relocate %s to: " bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 (file-name-directory bmrk-filename)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 (bookmark-set-filename bookmark newloc)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 (defun bookmark-insert-location (bookmark &optional no-history)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 "Insert the name of the file associated with BOOKMARK.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 Optional second arg NO-HISTORY means don't record this in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 minibuffer history list `bookmark-history'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 (interactive (bookmark-completing-read "Insert bookmark location"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 (or no-history (bookmark-maybe-historicize-string bookmark))
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1163 (let ((start (point)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1164 (prog1
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1165 (insert (bookmark-location bookmark)) ; *Return this line*
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1166 (if window-system
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1167 (put-text-property start
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1168 (save-excursion (re-search-backward
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1169 "[^ \t]")
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1170 (1+ (point)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1171 'mouse-face 'highlight)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1173 ;;;###autoload
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1174 (defalias 'bookmark-locate 'bookmark-insert-location)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 (defun bookmark-location (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 "Return the name of the file associated with BOOKMARK."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 (bookmark-maybe-load-default-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 (bookmark-get-filename bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 (defun bookmark-rename (old &optional new)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1184 "Change the name of OLD bookmark to NEW name.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1185 If called from keyboard, prompt for OLD and NEW. If called from
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1186 menubar, select OLD from a menu and prompt for NEW.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1188 If called from Lisp, prompt for NEW if only OLD was passed as an
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 argument. If called with two strings, then no prompting is done. You
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 must pass at least OLD when calling from Lisp.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 While you are entering the new name, consecutive C-w's insert
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 70
diff changeset
1193 consecutive words from the text of the buffer into the new bookmark
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 name."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 (interactive (bookmark-completing-read "Old bookmark name"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 (bookmark-maybe-historicize-string old)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 (bookmark-maybe-load-default-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 (setq bookmark-current-point (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 (setq bookmark-yank-point (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 (setq bookmark-current-buffer (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 (let ((newname
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 (or new ; use second arg, if non-nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 (read-from-minibuffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 "New name: "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 (let ((now-map (copy-keymap minibuffer-local-map)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 (define-key now-map "\C-w" 'bookmark-yank-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 now-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 'bookmark-history))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 (bookmark-set-name old newname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 (setq bookmark-current-bookmark newname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 (bookmark-bmenu-surreptitiously-rebuild-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 (setq bookmark-alist-modification-count
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 (1+ bookmark-alist-modification-count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 (if (bookmark-time-to-save-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 (bookmark-save))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 (defun bookmark-insert (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 "Insert the text of the file pointed to by bookmark BOOKMARK.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 You may have a problem using this function if the value of variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 `bookmark-alist' is nil. If that happens, you need to load in some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 bookmarks. See help on function `bookmark-load' for more about
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 this."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 (interactive (bookmark-completing-read "Insert bookmark contents"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 (bookmark-maybe-historicize-string bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 (bookmark-maybe-load-default-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 (let ((orig-point (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 (str-to-insert
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 (set-buffer (car (bookmark-jump-noselect bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 (buffer-substring (point-min) (point-max)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 (insert str-to-insert)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 (push-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 (goto-char orig-point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 (defun bookmark-delete (bookmark &optional batch)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 "Delete BOOKMARK from the bookmark list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 Removes only the first instance of a bookmark with that name. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 there are one or more other bookmarks with the same name, they will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 not be deleted. Defaults to the \"current\" bookmark \(that is, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 one most recently used in this file, if any\).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 Optional second arg BATCH means don't update the bookmark list buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 probably because we were called from there."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 (bookmark-completing-read "Delete bookmark" bookmark-current-bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 (bookmark-maybe-historicize-string bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 (bookmark-maybe-load-default-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 (let ((will-go (bookmark-get-bookmark bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 (setq bookmark-alist (delq will-go bookmark-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 ;; Added by db, nil bookmark-current-bookmark if the last
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1258 ;; occurrence has been deleted
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 (or (bookmark-get-bookmark bookmark-current-bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 (setq bookmark-current-bookmark nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 ;; Don't rebuild the list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 (if batch
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 (bookmark-bmenu-surreptitiously-rebuild-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 (setq bookmark-alist-modification-count
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 (1+ bookmark-alist-modification-count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 (if (bookmark-time-to-save-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 (bookmark-save))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 (defun bookmark-time-to-save-p (&optional last-time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 ;; By Gregory M. Saunders <saunders@cis.ohio-state.edu>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 ;; finds out whether it's time to save bookmarks to a file, by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 ;; examining the value of variable bookmark-save-flag, and maybe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 ;; bookmark-alist-modification-count. Returns t if they should be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 ;; saved, nil otherwise. if last-time is non-nil, then this is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 ;; being called when emacs is killed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 (cond (last-time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 (and (> bookmark-alist-modification-count 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 bookmark-save-flag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281 ((numberp bookmark-save-flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 (>= bookmark-alist-modification-count bookmark-save-flag))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 (defun bookmark-write ()
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1289 "Write bookmarks to a file (reading the file name with the minibuffer).
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1290 Don't use this in Lisp programs; use `bookmark-save' instead."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 (bookmark-maybe-load-default-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 (bookmark-save t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 (defun bookmark-save (&optional parg file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 "Save currently defined bookmarks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 Saves by default in the file defined by the variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 `bookmark-default-file'. With a prefix arg, save it in file FILE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 \(second argument\).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 If you are calling this from Lisp, the two arguments are PREFIX-ARG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 and FILE, and if you just want it to write to the default file, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 pass no arguments. Or pass in nil and FILE, and it will save in FILE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 instead. If you pass in one argument, and it is non-nil, then the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 user will be interactively queried for a file to save in.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 When you want to load in the bookmarks from a file, use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 \`bookmark-load\', \\[bookmark-load]. That function will prompt you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 for a file, defaulting to the file defined by variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 `bookmark-default-file'."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 (bookmark-maybe-load-default-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 ((and (null parg) (null file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 ;;whether interactive or not, write to default file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 (bookmark-write-file bookmark-default-file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 ((and (null parg) file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 ;;whether interactive or not, write to given file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 (bookmark-write-file file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 ((and parg (not file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 ;;have been called interactively w/ prefix arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 (let ((file (read-file-name "File to save bookmarks in: ")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 (bookmark-write-file file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 (t ; someone called us with prefix-arg *and* a file, so just write to file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 (bookmark-write-file file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 ;; signal that we have synced the bookmark file by setting this to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 ;; 0. If there was an error at any point before, it will not get
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 ;; set, which is what we want.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 (setq bookmark-alist-modification-count 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 (defun bookmark-write-file (file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 (save-window-excursion
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1338 (if (>= baud-rate 9600)
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1339 (message "Saving bookmarks to file %s..." file))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 (set-buffer (let ((enable-local-variables nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 (find-file-noselect file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 (delete-region (point-min) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 (bookmark-insert-file-format-version-stamp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 (pp bookmark-alist (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 (let ((version-control
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 ((null bookmark-version-control) nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 ((eq 'never bookmark-version-control) 'never)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 ((eq 'nospecial bookmark-version-control) version-control)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 (write-file file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 (kill-buffer (current-buffer))
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1355 (if (>= baud-rate 9600)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1356 (message "Saving bookmarks to file %s...done" file))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 ))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 (defun bookmark-load (file &optional revert no-msg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362 "Load bookmarks from FILE (which must be in bookmark format).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 Appends loaded bookmarks to the front of the list of bookmarks. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 optional second argument REVERT is non-nil, existing bookmarks are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 destroyed. Optional third arg NO-MSG means don't display any messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 while loading.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 If you load a file that doesn't contain a proper bookmark alist, you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 will corrupt Emacs's bookmark list. Generally, you should only load
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 in files that were created with the bookmark functions in the first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 place. Your own personal bookmark file, `~/.emacs.bmk', is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 maintained automatically by Emacs; you shouldn't need to load it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 explicitly."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 (list (read-file-name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 (format "Load bookmarks from: (%s) "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 bookmark-default-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 ;;Default might not be used often,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 ;;but there's no better default, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 ;;I guess it's better than none at all.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 "~/" bookmark-default-file 'confirm)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 (setq file (expand-file-name file))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 (if (file-readable-p file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 (save-window-excursion
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1386 (if (and (null no-msg) (>= baud-rate 9600))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 30
diff changeset
1387 (message "Loading bookmarks from %s..." file))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 (set-buffer (let ((enable-local-variables nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 (find-file-noselect file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 (bookmark-maybe-upgrade-file-format)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 (let ((blist (bookmark-alist-from-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 (if (listp blist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 (if (not revert)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396 (setq bookmark-alist-modification-count
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 (1+ bookmark-alist-modification-count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 (setq bookmark-alist-modification-count 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 (setq bookmark-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 (append blist (if (not revert) bookmark-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 (bookmark-bmenu-surreptitiously-rebuild-list))
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1402 (error "Invalid bookmark list in %s" file)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 (kill-buffer (current-buffer)))
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1404 (if (and (null no-msg) (>= baud-rate 9600))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1405 (message "Loading bookmarks from %s...done" file)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1406 (error "Cannot read bookmark file %s" file)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 ;;; Code supporting the dired-like bookmark menu. Prefix is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 ;;; "bookmark-bmenu" for "buffer-menu":
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 (defvar bookmark-bmenu-bookmark-column nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 (defvar bookmark-bmenu-hidden-bookmarks ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 (defvar bookmark-bmenu-mode-map nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 (if bookmark-bmenu-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 (setq bookmark-bmenu-mode-map (make-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 (suppress-keymap bookmark-bmenu-mode-map t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 (define-key bookmark-bmenu-mode-map "q" 'bookmark-bmenu-quit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 (define-key bookmark-bmenu-mode-map "v" 'bookmark-bmenu-select)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 (define-key bookmark-bmenu-mode-map "w" 'bookmark-bmenu-locate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430 (define-key bookmark-bmenu-mode-map "2" 'bookmark-bmenu-2-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 (define-key bookmark-bmenu-mode-map "1" 'bookmark-bmenu-1-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 (define-key bookmark-bmenu-mode-map "j" 'bookmark-bmenu-this-window)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1433 (define-key bookmark-bmenu-mode-map "\C-c\C-c" 'bookmark-bmenu-this-window)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 (define-key bookmark-bmenu-mode-map "f" 'bookmark-bmenu-this-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 (define-key bookmark-bmenu-mode-map "o" 'bookmark-bmenu-other-window)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1436 (define-key bookmark-bmenu-mode-map "\C-o"
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1437 'bookmark-bmenu-switch-other-window)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 (define-key bookmark-bmenu-mode-map "s" 'bookmark-bmenu-save)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439 (define-key bookmark-bmenu-mode-map "k" 'bookmark-bmenu-delete)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 (define-key bookmark-bmenu-mode-map "\C-d" 'bookmark-bmenu-delete-backwards)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 (define-key bookmark-bmenu-mode-map "x" 'bookmark-bmenu-execute-deletions)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442 (define-key bookmark-bmenu-mode-map "d" 'bookmark-bmenu-delete)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443 (define-key bookmark-bmenu-mode-map " " 'next-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 (define-key bookmark-bmenu-mode-map "n" 'next-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 (define-key bookmark-bmenu-mode-map "p" 'previous-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 (define-key bookmark-bmenu-mode-map "\177" 'bookmark-bmenu-backup-unmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447 (define-key bookmark-bmenu-mode-map "?" 'describe-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 (define-key bookmark-bmenu-mode-map "u" 'bookmark-bmenu-unmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 (define-key bookmark-bmenu-mode-map "m" 'bookmark-bmenu-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 (define-key bookmark-bmenu-mode-map "l" 'bookmark-bmenu-load)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 (define-key bookmark-bmenu-mode-map "r" 'bookmark-bmenu-rename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 (define-key bookmark-bmenu-mode-map "t" 'bookmark-bmenu-toggle-filenames)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 (define-key bookmark-bmenu-mode-map "a" 'bookmark-bmenu-show-annotation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 (define-key bookmark-bmenu-mode-map "A" 'bookmark-bmenu-show-all-annotations)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1455 (define-key bookmark-bmenu-mode-map "e" 'bookmark-bmenu-edit-annotation)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1456 (define-key bookmark-bmenu-mode-map [mouse-2]
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1457 'bookmark-bmenu-other-window-with-mouse))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 ;; Bookmark Buffer Menu mode is suitable only for specially formatted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 ;; data.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 (put 'bookmark-bmenu-mode 'mode-class 'special)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 ;; todo: need to display whether or not bookmark exists as a buffer in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 ;; flag column.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 ;; Format:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 ;; FLAGS BOOKMARK [ LOCATION ]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 (defun bookmark-bmenu-surreptitiously-rebuild-list ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 "Rebuild the Bookmark List if it exists.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 Don't affect the buffer ring order."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 (if (get-buffer "*Bookmark List*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 (bookmark-bmenu-list)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 (defun bookmark-bmenu-list ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 "Display a list of existing bookmarks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485 The list is displayed in a buffer named `*Bookmark List*'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 The leftmost column displays a D if the bookmark is flagged for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 deletion, or > if it is flagged for displaying."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 (bookmark-maybe-load-default-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 (if (interactive-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 (switch-to-buffer (get-buffer-create "*Bookmark List*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 (set-buffer (get-buffer-create "*Bookmark List*")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 (let ((buffer-read-only nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 (delete-region (point-max) (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 (goto-char (point-min)) ;sure are playing it safe...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 (insert "% Bookmark\n- --------\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 (bookmark-maybe-sort-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 (mapcar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 (lambda (full-record)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1500 ;; if a bookmark has an annotation, prepend a "*"
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 ;; in the list of bookmarks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 (let ((annotation (bookmark-get-annotation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 (bookmark-name-from-full-record full-record))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 (if (and (not (eq annotation nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 (not (string-equal annotation "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 (insert " *")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 (insert " "))
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1508 (let ((start (point)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1509 (insert (bookmark-name-from-full-record full-record))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1510 (if window-system
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1511 (put-text-property start
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1512 (save-excursion (re-search-backward
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1513 "[^ \t]")
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1514 (1+ (point)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1515 'mouse-face 'highlight))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1516 (insert "\n")
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1517 )))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 bookmark-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 (forward-line 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 (bookmark-bmenu-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 (if bookmark-bmenu-toggle-filenames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 (bookmark-bmenu-toggle-filenames t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 (defalias 'list-bookmarks 'bookmark-bmenu-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 (defalias 'edit-bookmarks 'bookmark-bmenu-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 (defun bookmark-bmenu-mode ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 "Major mode for editing a list of bookmarks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 Each line describes one of the bookmarks in Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 Letters do not insert themselves; instead, they are commands.
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 70
diff changeset
1536 Bookmark names preceded by a \"*\" have annotations.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 \\<bookmark-bmenu-mode-map>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 \\[bookmark-bmenu-mark] -- mark bookmark to be displayed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 \\[bookmark-bmenu-select] -- select bookmark of line point is on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 Also show bookmarks marked using m in other windows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 \\[bookmark-bmenu-toggle-filenames] -- toggle displaying of filenames (they may obscure long bookmark names).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 \\[bookmark-bmenu-locate] -- display (in minibuffer) location of this bookmark.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 \\[bookmark-bmenu-1-window] -- select this bookmark in full-frame window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 \\[bookmark-bmenu-2-window] -- select this bookmark in one window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 together with bookmark selected before this one in another window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 \\[bookmark-bmenu-this-window] -- select this bookmark in place of the bookmark menu buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 \\[bookmark-bmenu-other-window] -- select this bookmark in another window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 so the bookmark menu bookmark remains visible in its window.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 \\[bookmark-bmenu-switch-other-window] -- switch the other window to this bookmark.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550 \\[bookmark-bmenu-rename] -- rename this bookmark \(prompts for new name\).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 \\[bookmark-bmenu-delete] -- mark this bookmark to be deleted, and move down.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 \\[bookmark-bmenu-delete-backwards] -- mark this bookmark to be deleted, and move up.
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1553 \\[bookmark-bmenu-execute-deletions] -- delete bookmarks marked with `\\[bookmark-bmenu-delete]'.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 \\[bookmark-bmenu-save] -- save the current bookmark list in the default file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 With a prefix arg, prompts for a file to save in.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 \\[bookmark-bmenu-load] -- load in a file of bookmarks (prompts for file.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 \\[bookmark-bmenu-unmark] -- remove all kinds of marks from current line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 With prefix argument, also move up one line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 \\[bookmark-bmenu-backup-unmark] -- back up a line and remove marks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 \\[bookmark-bmenu-show-annotation] -- show the annotation, if it exists, for the current bookmark
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 in another buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 \\[bookmark-bmenu-show-all-annotations] -- show the annotations of all bookmarks in another buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563 \\[bookmark-bmenu-edit-annotation] -- edit the annotation for the current bookmark."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 (kill-all-local-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 (use-local-map bookmark-bmenu-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 (setq truncate-lines t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 (setq buffer-read-only t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 (setq major-mode 'bookmark-bmenu-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 (setq mode-name "Bookmark Menu")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 (run-hooks 'bookmark-bmenu-mode-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 (defun bookmark-bmenu-toggle-filenames (&optional show)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 "Toggle whether filenames are shown in the bookmark list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 Optional argument SHOW means show them unconditionally."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 (show
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 (setq bookmark-bmenu-toggle-filenames nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 (bookmark-bmenu-show-filenames)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 (setq bookmark-bmenu-toggle-filenames t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 (bookmark-bmenu-toggle-filenames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 (bookmark-bmenu-hide-filenames)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 (setq bookmark-bmenu-toggle-filenames nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 (bookmark-bmenu-show-filenames)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 (setq bookmark-bmenu-toggle-filenames t))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 (defun bookmark-bmenu-show-filenames (&optional force)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 (if (and (not force) bookmark-bmenu-toggle-filenames)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592 nil ;already shown, so do nothing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 (forward-line 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 (setq bookmark-bmenu-hidden-bookmarks ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 (let ((buffer-read-only nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 (while (< (point) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 (let ((bmrk (bookmark-bmenu-bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 (setq bookmark-bmenu-hidden-bookmarks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 (cons bmrk bookmark-bmenu-hidden-bookmarks))
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1603 (let ((start (save-excursion (end-of-line) (point))))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1604 (move-to-column bookmark-bmenu-file-column t)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1605 ;; Strip off `mouse-face' from the white spaces region.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1606 (if window-system
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1607 (remove-text-properties start (point)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1608 '(mouse-face))))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1609 (delete-region (point) (progn (end-of-line) (point)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 (insert " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 ;; Pass the NO-HISTORY arg:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 (bookmark-insert-location bmrk t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 (forward-line 1))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 (defun bookmark-bmenu-hide-filenames (&optional force)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 (if (and (not force) bookmark-bmenu-toggle-filenames)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 ;; nothing to hide if above is nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 (forward-line 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 (setq bookmark-bmenu-hidden-bookmarks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 (nreverse bookmark-bmenu-hidden-bookmarks))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 (search-forward "Bookmark")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 (backward-word 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 (setq bookmark-bmenu-bookmark-column (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 (let ((buffer-read-only nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 (while bookmark-bmenu-hidden-bookmarks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 (move-to-column bookmark-bmenu-bookmark-column t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 (bookmark-kill-line)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1635 (let ((start (point)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1636 (insert (car bookmark-bmenu-hidden-bookmarks))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1637 (if window-system
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1638 (put-text-property start
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1639 (save-excursion (re-search-backward
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1640 "[^ \t]")
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1641 (1+ (point)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1642 'mouse-face 'highlight)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 (setq bookmark-bmenu-hidden-bookmarks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 (cdr bookmark-bmenu-hidden-bookmarks))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 (forward-line 1))))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648 ;; if you look at this next function from far away, it resembles a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 ;; gun. But only with this comment above...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 (defun bookmark-bmenu-check-position ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 ;; Returns t if on a line with a bookmark.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652 ;; Otherwise, repositions and returns t.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 ;; written by David Hughes <djh@harston.cv.com>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 ;; Mucho thanks, David! -karl
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 (cond ((< (count-lines (point-min) (point)) 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657 (forward-line 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 ((and (bolp) (eobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660 (beginning-of-line 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 t)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 (defun bookmark-bmenu-bookmark ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 ;; return a string which is bookmark of this line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 (search-forward "Bookmark")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 (backward-word 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 (setq bookmark-bmenu-bookmark-column (current-column)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 (if bookmark-bmenu-toggle-filenames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 (bookmark-bmenu-hide-filenames))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 (forward-char bookmark-bmenu-bookmark-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 (prog1
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1682 (buffer-substring-no-properties (point)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 (end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 ;; well, this is certainly crystal-clear:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 (if bookmark-bmenu-toggle-filenames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 (bookmark-bmenu-toggle-filenames t))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 (defun bookmark-show-annotation (bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 "Display the annotation for bookmark named BOOKMARK in a buffer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693 if an annotation exists."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 (let ((annotation (bookmark-get-annotation bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 (if (and (not (eq annotation nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 (not (string-equal annotation "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 (let ((old-buf (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 (pop-to-buffer (get-buffer-create "*Bookmark Annotation*") t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 (delete-region (point-min) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 ; (insert (concat "Annotation for bookmark '" bookmark "':\n\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 (insert annotation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 (pop-to-buffer old-buf)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708 (defun bookmark-show-all-annotations ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 "Display the annotations for all bookmarks in a buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 (let ((old-buf (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 (pop-to-buffer (get-buffer-create "*Bookmark Annotation*") t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712 (delete-region (point-min) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 (mapcar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 (lambda (full-record)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 (let* ((name (bookmark-name-from-full-record full-record))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716 (ann (bookmark-get-annotation name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 (insert (concat name ":\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 (if (and (not (eq ann nil)) (not (string-equal ann "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 ;; insert the annotation, indented by 4 spaces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 (save-excursion (insert ann))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 (while (< (point) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 (beginning-of-line) ; paranoia
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 (insert " ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 (forward-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 (end-of-line))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 bookmark-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 (pop-to-buffer old-buf)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 (defun bookmark-bmenu-mark ()
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1733 "Mark bookmark on this line to be displayed by \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-select]."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 (let ((buffer-read-only nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 (delete-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 (insert ?>)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 (forward-line 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 (defun bookmark-bmenu-select ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744 "Select this line's bookmark; also display bookmarks marked with `>'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 You can mark bookmarks with the \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-mark] command."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 (let ((bmrk (bookmark-bmenu-bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 (menu (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 (others ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 tem)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 (while (re-search-forward "^>" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 (setq tem (bookmark-bmenu-bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 (let ((buffer-read-only nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 (delete-char -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 (insert ?\ ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 (or (string-equal tem bmrk)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 (member tem others)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 (setq others (cons tem others))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 (setq others (nreverse others)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 tem (/ (1- (frame-height)) (1+ (length others))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 (bookmark-jump bmrk)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 (bury-buffer menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 (if others
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 (while others
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 (split-window nil tem)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769 (other-window 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 (bookmark-jump (car others))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 (setq others (cdr others)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 (other-window 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 (defun bookmark-bmenu-save (parg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 "Save the current list into a bookmark file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 With a prefix arg, prompts for a file to save them in."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781 (bookmark-save parg))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 (defun bookmark-bmenu-load ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785 "Load the bookmark file and rebuild the bookmark menu-buffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 (save-window-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 ;; This will call `bookmark-bmenu-list'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791 (call-interactively 'bookmark-load)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 (defun bookmark-bmenu-1-window ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 "Select this line's bookmark, alone, in full frame."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 (bookmark-jump (bookmark-bmenu-bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 (bury-buffer (other-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 (delete-other-windows))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 (defun bookmark-bmenu-2-window ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 "Select this line's bookmark, with previous buffer in second window."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 (let ((bmrk (bookmark-bmenu-bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 (menu (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 (pop-up-windows t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 (delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 (switch-to-buffer (other-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 (let* ((pair (bookmark-jump-noselect bmrk))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 (buff (car pair))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 (pos (cdr pair)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 (pop-to-buffer buff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 (goto-char pos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 (bury-buffer menu))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821 (defun bookmark-bmenu-this-window ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 "Select this line's bookmark in this window."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 (bookmark-jump (bookmark-bmenu-bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 (defun bookmark-bmenu-other-window ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829 "Select this line's bookmark in other window, leaving bookmark menu visible."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 (let ((bookmark (bookmark-bmenu-bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 (let* ((pair (bookmark-jump-noselect bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 (buff (car pair))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 (pos (cdr pair)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 (switch-to-buffer-other-window buff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 (goto-char pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 (set-window-point (get-buffer-window buff) pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 (bookmark-show-annotation bookmark)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 (defun bookmark-bmenu-switch-other-window ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 "Make the other window select this line's bookmark.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 The current window remains selected."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 (let ((bookmark (bookmark-bmenu-bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 (let* ((pair (bookmark-jump-noselect bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 (buff (car pair))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 (pos (cdr pair)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 (display-buffer buff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 (let ((o-buffer (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 ;; save-excursion won't do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 (set-buffer buff)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 (goto-char pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 (set-window-point (get-buffer-window buff) pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 (set-buffer o-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 (bookmark-show-annotation bookmark)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1860 (defun bookmark-bmenu-other-window-with-mouse (event)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1861 "Select bookmark at the mouse pointer in other window, leaving bookmark menu visible."
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1862 (interactive "e")
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1863 (save-excursion
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1864 (set-buffer (if (fboundp 'event-buffer) ; XEmacs
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1865 (event-buffer event)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1866 (window-buffer (posn-window (event-end event)))))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1867 (save-excursion
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1868 (goto-char (if (fboundp 'event-closest-point)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1869 (event-closest-point event)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1870 (posn-point (event-end event))))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1871 (bookmark-bmenu-other-window))))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1872
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 (defun bookmark-bmenu-show-annotation ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 "Show the annotation for the current bookmark in another window."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 (let ((bookmark (bookmark-bmenu-bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 (bookmark-show-annotation bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 (defun bookmark-bmenu-show-all-annotations ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 "Show the annotation for all bookmarks in another window."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 (bookmark-show-all-annotations))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888 (defun bookmark-bmenu-edit-annotation ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 "Edit the annotation for the current bookmark in another window."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 (let ((bookmark (bookmark-bmenu-bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 (bookmark-edit-annotation bookmark))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 (defun bookmark-bmenu-quit ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897 "Quit the bookmark menu."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899 (let ((buffer (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 (switch-to-buffer (other-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901 (bury-buffer buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904 (defun bookmark-bmenu-unmark (&optional backup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 "Cancel all requested operations on bookmark on this line and move down.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 Optional BACKUP means move up."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 (let ((buffer-read-only nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912 (delete-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 ;; any flags to reset according to circumstances? How about a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 ;; flag indicating whether this bookmark is being visited?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915 ;; well, we don't have this now, so maybe later.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 (insert " "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 (forward-line (if backup -1 1)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920 (defun bookmark-bmenu-backup-unmark ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 "Move up and cancel all requested operations on bookmark on line above."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 (forward-line -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926 (bookmark-bmenu-unmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 (forward-line -1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930 (defun bookmark-bmenu-delete ()
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1931 "Mark bookmark on this line to be deleted.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1932 To carry out the deletions that you've marked, use \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-execute-deletions]."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 (let ((buffer-read-only nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 (delete-char 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 (insert ?D)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 (forward-line 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 (defun bookmark-bmenu-delete-backwards ()
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1943 "Mark bookmark on this line to be deleted, then move up one line.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1944 To carry out the deletions that you've marked, use \\<bookmark-bmenu-mode-map>\\[bookmark-bmenu-execute-deletions]."
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 (bookmark-bmenu-delete)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947 (forward-line -2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 (forward-line 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 (defun bookmark-bmenu-execute-deletions ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 "Delete bookmarks marked with \\<Buffer-menu-mode-map>\\[Buffer-menu-delete] commands."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 (interactive)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1955 (message "Deleting bookmarks...")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 (let ((hide-em bookmark-bmenu-toggle-filenames)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 (o-point (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 (o-str (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 (if (looking-at "^D")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 (buffer-substring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 (progn (end-of-line) (point))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 (o-col (current-column)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 (if hide-em (bookmark-bmenu-hide-filenames))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967 (setq bookmark-bmenu-toggle-filenames nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 (while (re-search-forward "^D" (point-max) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 (bookmark-delete (bookmark-bmenu-bookmark) t)) ; pass BATCH arg
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 (bookmark-bmenu-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 (setq bookmark-bmenu-toggle-filenames hide-em)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 (if bookmark-bmenu-toggle-filenames
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975 (bookmark-bmenu-toggle-filenames t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 (if o-str
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 (search-forward o-str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 (forward-char o-col))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 (goto-char o-point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 (setq bookmark-alist-modification-count
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985 (1+ bookmark-alist-modification-count))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 (if (bookmark-time-to-save-p)
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1987 (bookmark-save))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1988 (message "Deleting bookmarks...done")
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
1989 ))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 (defun bookmark-bmenu-rename ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 "Rename bookmark on current line. Prompts for a new name."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996 (let ((bmrk (bookmark-bmenu-bookmark))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 (thispoint (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 (bookmark-rename bmrk)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 (bookmark-bmenu-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 (goto-char thispoint))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 (defun bookmark-bmenu-locate ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 "Display location of this bookmark. Displays in the minibuffer."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006 (if (bookmark-bmenu-check-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 (let ((bmrk (bookmark-bmenu-bookmark)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 (message (bookmark-location bmrk)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 ;;; Menu bar stuff. Prefix is "bookmark-menu".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 (defun bookmark-menu-build-paned-menu (name entries)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 "Build a multi-paned menu named NAME from the strings in ENTRIES.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 That is, ENTRIES is a list of strings which appear as the choices
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 in the menu. The number of panes depends on the number of entries.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 The visible entries are truncated to `bookmark-menu-length', but the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 strings returned are not."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 (let* ((f-height (/ (frame-height) 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 (pane-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 (let (temp-pane-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 (iter 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 (while entries
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 (let (lst
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 (count 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 (while (and (< count f-height) entries)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 (let ((str (car entries)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 (setq lst (cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 (cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 (if (> (length str) bookmark-menu-length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 (substring str 0 bookmark-menu-length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 lst))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 (setq entries (cdr entries))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 (setq count (1+ count))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 (setq iter (1+ iter))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 (setq
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 temp-pane-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 (cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 (cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 (format "-*- %s (%d) -*-" name iter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 (nreverse lst))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 temp-pane-list))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 (nreverse temp-pane-list))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048 ;; Return the menu:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 (cons (concat "-*- " name " -*-") pane-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 (defun bookmark-build-xemacs-menu (name entries function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053 "Build a menu named NAME from the strings in ENTRIES.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 That is, ENTRIES is a list of strings that appear as the choices
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 in the menu.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 The visible entries are truncated to `bookmark-menu-length', but the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057 strings returned are not."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 (let* (lst
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 (pane-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 (while entries
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 (let ((str (car entries)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 (setq lst (cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 (vector
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 (if (> (length str) bookmark-menu-length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 (substring str 0 bookmark-menu-length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067 str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 (list function str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 lst))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 (setq entries (cdr entries))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072 (nreverse lst))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 ;; Return the menu:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 (append (if popup-menu-titles (list (concat "-*- " name " -*-")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 pane-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 (defun bookmark-menu-popup-paned-menu (event name entries)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 "Pop up multi-paned menu at EVENT, return string chosen from ENTRIES.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081 That is, ENTRIES is a list of strings which appear as the choices
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 in the menu.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 The number of panes depends on the number of entries."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 (interactive "e")
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2085 (cond ((fboundp 'x-popup-menu) ; Emacs
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2086 (x-popup-menu event (bookmark-menu-build-paned-menu name entries)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2087 (t ; XEmacs
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2088 (get-popup-menu-response
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2089 (cons title
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2090 (mapcar
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2091 (function
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2092 (lambda (x)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2093 (if (stringp x)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2094 (vector x nil nil)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2095 (vector (car x) (list (car x)) t))))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2096 (bookmark-menu-build-paned-menu name entries)))))))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2097
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 (defun bookmark-menu-popup-paned-bookmark-menu (event name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 "Pop up menu of bookmarks, return chosen bookmark.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 Pop up at EVENT, menu's name is NAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 The number of panes depends on the number of bookmarks."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 (bookmark-menu-popup-paned-menu event name (bookmark-all-names)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 (defun bookmark-popup-menu-and-apply-function (func-sym menu-label event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 ;; help function for making menus that need to apply a bookmark
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 ;; function to a string.
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2110 (let* ((choice (bookmark-menu-popup-paned-bookmark-menu
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2111 event menu-label)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2112 (if choice (apply func-sym (list choice)))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 (defun bookmark-menu-insert (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 "Insert the text of the file pointed to by bookmark BOOKMARK.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118 You may have a problem using this function if the value of variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 `bookmark-alist' is nil. If that happens, you need to load in some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 bookmarks. See help on function `bookmark-load' for more about
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 Warning: this function only takes an EVENT as argument. Use the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 corresponding bookmark function from Lisp \(the one without the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 \"-menu-\" in its name\)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 (interactive "e")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127 (bookmark-popup-menu-and-apply-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 'bookmark-insert "Insert Bookmark Contents" event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 (defun bookmark-menu-jump (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 "Jump to bookmark BOOKMARK (a point in some file).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 You may have a problem using this function if the value of variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 `bookmark-alist' is nil. If that happens, you need to load in some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136 bookmarks. See help on function `bookmark-load' for more about
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 Warning: this function only takes an EVENT as argument. Use the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 corresponding bookmark function from Lisp \(the one without the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 \"-menu-\" in its name\)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142 (interactive "e")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 (bookmark-popup-menu-and-apply-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 'bookmark-jump "Jump to Bookmark" event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 (defun bookmark-menu-locate (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 "Insert the name of the file associated with BOOKMARK.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150 \(This is not the same as the contents of that file\).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 Warning: this function only takes an EVENT as argument. Use the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 corresponding bookmark function from Lisp \(the one without the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 \"-menu-\" in its name\)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 (interactive "e")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156 (bookmark-popup-menu-and-apply-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 'bookmark-insert-location "Insert Bookmark Location" event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 (defun bookmark-menu-rename (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 "Change the name of OLD-BOOKMARK to NEWNAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 If called from keyboard, prompts for OLD-BOOKMARK and NEWNAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 If called from menubar, OLD-BOOKMARK is selected from a menu, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165 prompts for NEWNAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166 If called from Lisp, prompts for NEWNAME if only OLD-BOOKMARK was
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 passed as an argument. If called with two strings, then no prompting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 is done. You must pass at least OLD-BOOKMARK when calling from Lisp.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170 While you are entering the new name, consecutive C-w's insert
108
360340f9fd5f Import from CVS: tag r20-1b6
cvs
parents: 70
diff changeset
2171 consecutive words from the text of the buffer into the new bookmark
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 Warning: this function only takes an EVENT as argument. Use the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175 corresponding bookmark function from Lisp \(the one without the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 \"-menu-\" in its name\)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177 (interactive "e")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 (bookmark-popup-menu-and-apply-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 'bookmark-rename "Rename Bookmark" event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 (defun bookmark-menu-delete (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 "Delete the bookmark named NAME from the bookmark list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 Removes only the first instance of a bookmark with that name. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 there are one or more other bookmarks with the same name, they will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 not be deleted. Defaults to the \"current\" bookmark \(that is, the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 one most recently used in this file, if any\).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 Warning: this function only takes an EVENT as argument. Use the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 corresponding bookmark function from Lisp \(the one without the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 \"-menu-\" in its name\)."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 (interactive "e")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 (bookmark-popup-menu-and-apply-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 'bookmark-delete "Delete Bookmark" event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198 ;; Thanks to Roland McGrath for fixing menubar.el so that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 ;; following works, and for explaining what to do to make it work.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 ;; We MUST autoload EACH form used to set up this variable's value, so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 ;; that the whole job is done in loaddefs.el.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2204 ;; Emacs menubar stuff.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2205
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2206 ;;;###autoload
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2207 (defvar menu-bar-bookmark-map (make-sparse-keymap "Bookmark functions"))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2208
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2209 ;;;###autoload
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2210 (defalias 'menu-bar-bookmark-map (symbol-value 'menu-bar-bookmark-map))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2211
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2212 ;; make bookmarks appear toward the right side of the menu.
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2213 (if (boundp 'menu-bar-final-items)
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2214 (if menu-bar-final-items
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2215 (setq menu-bar-final-items
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2216 (cons 'bookmark menu-bar-final-items)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2217 (setq menu-bar-final-items '(bookmark)))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2218
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2219 ;;;###autoload
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2220 (define-key menu-bar-bookmark-map [load]
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2221 '("Load a Bookmark File..." . bookmark-load))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2222
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2223 ;;;###autoload
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2224 (define-key menu-bar-bookmark-map [write]
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2225 '("Save Bookmarks As..." . bookmark-write))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2226
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2227 ;;;###autoload
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2228 (define-key menu-bar-bookmark-map [save]
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2229 '("Save Bookmarks" . bookmark-save))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2231 ;;;###autoload
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2232 (define-key menu-bar-bookmark-map [edit]
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2233 '("Edit Bookmark List" . bookmark-bmenu-list))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2234
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2235 ;;;###autoload
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2236 (define-key menu-bar-bookmark-map [delete]
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2237 '("Delete Bookmark" . bookmark-menu-delete))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2238
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2239 ;;;###autoload
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2240 (define-key menu-bar-bookmark-map [rename]
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2241 '("Rename Bookmark" . bookmark-menu-rename))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242
153
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2243 ;;;###autoload
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2244 (define-key menu-bar-bookmark-map [locate]
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2245 '("Insert Location" . bookmark-menu-locate))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2246
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2247 ;;;###autoload
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2248 (define-key menu-bar-bookmark-map [insert]
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2249 '("Insert Contents" . bookmark-menu-insert))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2250
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2251 ;;;###autoload
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2252 (define-key menu-bar-bookmark-map [set]
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2253 '("Set Bookmark" . bookmark-set))
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2254
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2255 ;;;###autoload
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2256 (define-key menu-bar-bookmark-map [jump]
25f70ba0133c Import from CVS: tag r20-3b3
cvs
parents: 120
diff changeset
2257 '("Jump to Bookmark" . bookmark-menu-jump))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 ;;;; end bookmark menu stuff ;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262 ;;; Load Hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 (defvar bookmark-load-hook nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 "Hook to run at the end of loading bookmark.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 (run-hooks 'bookmark-load-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268 (provide 'bookmark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 ;;; bookmark.el ends here