From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jeff Kowalczyk Subject: Re: Separate function for config listing from org-submit-bug-report Date: Wed, 28 Oct 2009 16:50:01 +0000 (UTC) Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N3BjA-0002qw-CY for emacs-orgmode@gnu.org; Wed, 28 Oct 2009 12:50:28 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N3Bj5-0002ki-J2 for emacs-orgmode@gnu.org; Wed, 28 Oct 2009 12:50:27 -0400 Received: from [199.232.76.173] (port=55426 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N3Bj5-0002kX-DX for emacs-orgmode@gnu.org; Wed, 28 Oct 2009 12:50:23 -0400 Received: from lo.gmane.org ([80.91.229.12]:51489) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1N3Bj4-00026V-PC for emacs-orgmode@gnu.org; Wed, 28 Oct 2009 12:50:23 -0400 Received: from list by lo.gmane.org with local (Exim 4.50) id 1N3Bj1-0001WL-JT for emacs-orgmode@gnu.org; Wed, 28 Oct 2009 17:50:19 +0100 Received: from 24-216-241-93.dhcp.mdfd.or.charter.com ([24.216.241.93]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 28 Oct 2009 17:50:19 +0100 Received: from jtk by 24-216-241-93.dhcp.mdfd.or.charter.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 28 Oct 2009 17:50:19 +0100 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: emacs-orgmode@gnu.org 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: (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.