From: Drew Adams <drew.adams@oracle.com>
To: Guido Van Hoecke <guivho@gmail.com>, Emacs <help-gnu-emacs@gnu.org>
Subject: RE: bookmark+ help required
Date: Wed, 15 Apr 2015 13:23:24 -0700 (PDT) [thread overview]
Message-ID: <04f51a2d-4e29-44cb-a637-652101bcdbc2@default> (raw)
In-Reply-To: <<m28udtmbz4.fsf@gmail.com>>
> I switched to bookmark+ and some of my bookmarks now have a different
> format:
>
> Old format:
> #1=(#("past.org" 0 8
> (bmkp-full-record #1#))
> (filename . "~/org/past.org")
> (front-context-string . "* DONE <2013-04-")
> (rear-context-string)
> (position . 1))
>
> New format:
> #1=(#("agenda.org" 0 10
> (bmkp-full-record #1#))
> (end-position . 12206)
> (time 21790 27563 50717 0)
> (visits . 0)
> (filename . "~/org/agenda.org")
> (front-context-string . "* TODO <2013-05-")
> (rear-context-string . "g niet gestart!\n")
> (position . 12206))
>
> I have an eshell function that allows me to type `j bookmark` (got it
> from http://www.emacswiki.org/emacs/EshellBmk (thanks!)) and it fails
> with the new format: it expects the 'filename' cell up front in the
> record. That works with the old records, but not the new ones. In the
> above 'agenda.org' bookmark it thinks that the filename is '12206'.
>
> Here's the relevant code:
> (if (setq filename (cdr (car (bookmark-get-bookmark-record bookmark))))
That code is mistaken. This is the proper code to access the `filename'
field of bookmark BOOKMARK:
(bookmark-get-filename BOOKMARK)
And for any field that does not have its own dedicated access function
(such as field `filename' has with `bookmark-get-filename'), code should
use `bookmark-prop-get' to access that field value.
This is not Bookmark+-specific. This is what is used for vanilla
bookmark.el also. The order of the field recorded in a bookmark is
(must be) irrelevant. The only positional requirement is that the
bookmark name be the car of the full bookmark record.
> My lisp is not up to turning this into an expression that would
> correctly load the filename from old formats as well as from the newer
> format. Any help and suggestion would be most welcome and appreciated.
next parent reply other threads:[~2015-04-15 20:23 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <<m28udtmbz4.fsf@gmail.com>
2015-04-15 20:23 ` Drew Adams [this message]
2015-04-15 21:14 ` bookmark+ help required Guido Van Hoecke
2015-04-16 6:43 ` tomas
2015-04-15 19:24 Guido Van Hoecke
2015-04-15 19:55 ` Milan Stanojević
2015-04-15 20:02 ` tomas
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=04f51a2d-4e29-44cb-a637-652101bcdbc2@default \
--to=drew.adams@oracle.com \
--cc=guivho@gmail.com \
--cc=help-gnu-emacs@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).