From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Re: Separate function for config listing from org-submit-bug-report Date: Wed, 28 Oct 2009 18:44:55 +0100 Message-ID: <7CCF895D-725C-484D-862F-B628305E2F7A@gmail.com> References: Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N3Ca4-00064t-W4 for emacs-orgmode@gnu.org; Wed, 28 Oct 2009 13:45:09 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N3CZz-0005zQ-MK for emacs-orgmode@gnu.org; Wed, 28 Oct 2009 13:45:08 -0400 Received: from [199.232.76.173] (port=50479 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N3CZz-0005zA-G5 for emacs-orgmode@gnu.org; Wed, 28 Oct 2009 13:45:03 -0400 Received: from mail-ew0-f228.google.com ([209.85.219.228]:56621) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N3CZy-0004P9-Nz for emacs-orgmode@gnu.org; Wed, 28 Oct 2009 13:45:03 -0400 Received: by ewy28 with SMTP id 28so1100393ewy.42 for ; Wed, 28 Oct 2009 10:44:58 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Jeff Kowalczyk Cc: emacs-orgmode@gnu.org On Oct 28, 2009, at 5:50 PM, Jeff Kowalczyk wrote: > Carsten Dominik 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: I believe there is some environment like reporter-status-count or reporter-status-message that needs to be scoped in with let, maybe other variables too... - Carsten > > (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. > > > > _______________________________________________ > Emacs-orgmode mailing list > Remember: use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode - Carsten