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