[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: doc-view support for bookmark.el
From: |
martin rudalics |
Subject: |
Re: doc-view support for bookmark.el |
Date: |
Tue, 25 Dec 2007 18:54:48 +0100 |
User-agent: |
Mozilla Thunderbird 1.0 (Windows/20041206) |
> When I was doing that I found some strange code: bookmark-jump-noselect
> opened the bookmarked file, set point at the correct position and
> returned a cons (BUFFER . POSITION). All calling functions did set the
> position once again. I suspect that was a relict of the past, so I
> removed it and now bookmark-jump-noselect only returns the buffer.
(defun bookmark-jump-noselect (str)
...
(save-excursion
...
(cons (current-buffer) (point))))
The position might be in the same buffer where the excursion occurred,
hence this is needed.
- RE: doc-view support for bookmark.el, (continued)
- Re: doc-view support for bookmark.el, Tassilo Horn, 2007/12/27
- RE: doc-view support for bookmark.el, Drew Adams, 2007/12/27
- Re: doc-view support for bookmark.el, Karl Fogel, 2007/12/28
- Re: doc-view support for bookmark.el, Kim F. Storm, 2007/12/28
- Re: doc-view support for bookmark.el, Karl Fogel, 2007/12/29
- Re: doc-view support for bookmark.el, Stefan Monnier, 2007/12/29
- Re: doc-view support for bookmark.el, Kim F. Storm, 2007/12/29
RE: doc-view support for bookmark.el, Drew Adams, 2007/12/25
Re: doc-view support for bookmark.el,
martin rudalics <=