From: Jeff Kowalczyk <jtk@yahoo.com>
To: emacs-orgmode@gnu.org
Subject: Re: Separate function for config listing from org-submit-bug-report
Date: Wed, 28 Oct 2009 16:50:01 +0000 (UTC) [thread overview]
Message-ID: <loom.20091028T173813-555@post.gmane.org> (raw)
In-Reply-To: DFD0F107-1860-4D72-B518-F510A0BB7494@gmail.com
Carsten Dominik <carsten.dominik <at> gmail.com> writes:
> Hi Jeff,
>
> I don't know why you are being prompted for you IMAP password,
> but regardless of this the email should not be send automatically.
> So I think you can go through the process and then copy the text and
> just not send the message!
The email client is is wanderlust, and it must be trying to initialize a draft
message on Google Mail when creating a send message buffer. You are correct, it
did give the opportunity to cancel the message before sending. Thanks,
> I cannot easily isolate this, because my code only produces the list
> of interesting variables. Some code in reporter.el does the quoting
> and insertion.
Do you have any ideas how to get the following function to work? It is intended
to insert the configuration at point:
(defun org-dump-configuration ()
"Call reporter-dump-state (pkgname varlist pre-hooks post-hooks)"
(interactive)
(require 'reporter)
(reporter-dump-state
(org-version)
(let (mylist)
(mapatoms
(lambda (v)
(and (boundp v)
(string-match "\\`\\(org-\\|outline-\\)" (symbol-name v))
(or (and (symbol-value v)
(string-match "\\(-hook\\|-function\\)\\'"
(symbol-name v)))
(and
(get v 'custom-type) (get v 'standard-value)
(not (equal (symbol-value v) (eval (car
(get v 'standard-value)))))))
(push v mylist))))
mylist)
(insert "")
(insert "")
)
)
The error message seems to indicate that parameter 'varlist' is not populated
correctly.
Emacs : GNU Emacs 23.1.1 (x86_64-pc-linux-gnu, GTK+ Version 2.18.0)
of 2009-09-28 on thinkpad
Package: Org-mode version 6.32trans (release_6.32b.8.g089b)
current state:
==============
State could not be dumped due to the following error:
(wrong-type-argument integer-or-marker-p nil)
You should still send this bug report.
next prev parent reply other threads:[~2009-10-28 16:50 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-26 19:50 Separate function for config listing from org-submit-bug-report Jeff Kowalczyk
2009-10-28 9:34 ` Carsten Dominik
2009-10-28 16:50 ` Jeff Kowalczyk [this message]
2009-10-28 17:44 ` Carsten Dominik
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
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=loom.20091028T173813-555@post.gmane.org \
--to=jtk@yahoo.com \
--cc=emacs-orgmode@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.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.