comparison lisp/bookmark.el @ 65112:c877fbcb64de

Fixed typo.
author Carsten Dominik <dominik@science.uva.nl>
date Thu, 25 Aug 2005 08:25:51 +0000
parents 83940123c4b3
children 4d1085b02d64 2d92f5c9d6ae
comparison
equal deleted inserted replaced
65111:561dd0c5c956 65112:c877fbcb64de
1061 (bookmark-maybe-historicize-string bookmark) 1061 (bookmark-maybe-historicize-string bookmark)
1062 (let ((cell (bookmark-jump-noselect bookmark))) 1062 (let ((cell (bookmark-jump-noselect bookmark)))
1063 (and cell 1063 (and cell
1064 (switch-to-buffer (car cell)) 1064 (switch-to-buffer (car cell))
1065 (goto-char (cdr cell)) 1065 (goto-char (cdr cell))
1066 (progn (run-hooks 'bookmark-jump-hook) t) 1066 (progn (run-hooks 'bookmark-after-jump-hook) t)
1067 (if bookmark-automatically-show-annotations 1067 (if bookmark-automatically-show-annotations
1068 ;; if there is an annotation for this bookmark, 1068 ;; if there is an annotation for this bookmark,
1069 ;; show it in a buffer. 1069 ;; show it in a buffer.
1070 (bookmark-show-annotation bookmark))))) 1070 (bookmark-show-annotation bookmark)))))
1071 1071