From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: One org file, multiple exports, is it possible? Date: Mon, 24 May 2010 23:50:35 -0400 Message-ID: <87632cljw4.fsf@gollum.intra.norang.ca> References: <855B9DE3-A7FD-42B4-A863-DE036065EBD1@gmail.com> <6B0AFD3C-BF59-4DB6-823F-471107A380F4@tsdye.com> <81206149-B01D-4837-A7A5-0ABF94920FE1@gmail.com> <56FE52EC-18B8-46FE-B0B8-266DE70E0A38@tsdye.com> <646DB2B5-DFE0-422F-BD11-AA2117E76644@tsdye.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=56264 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OGlAC-0007uX-EF for emacs-orgmode@gnu.org; Mon, 24 May 2010 23:50:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OGlAB-0007Um-3M for emacs-orgmode@gnu.org; Mon, 24 May 2010 23:50:44 -0400 Received: from mho-01-ewr.mailhop.org ([204.13.248.71]:61289) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OGlAB-0007Uh-1G for emacs-orgmode@gnu.org; Mon, 24 May 2010 23:50:43 -0400 In-Reply-To: <646DB2B5-DFE0-422F-BD11-AA2117E76644@tsdye.com> (Thomas S. Dye's message of "Mon\, 24 May 2010 17\:38\:06 -1000") 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: "Thomas S. Dye" Cc: kmartino@pobox.com, emacs-orgmode@gnu.org, Carsten Dominik "Thomas S. Dye" writes: > Aloha Carsten, > > I think I need to know what is meant by "minimal .emacs." I have a minimal.emacs which is a stripped down .emacs that only has what I need to invoke org-mode for reproducing a problem. ,----[ minimal.emacs ] | (add-to-list 'load-path (expand-file-name "~/git/org-mode/lisp")) | (add-to-list 'auto-mode-alist '("\\.\\(org\\|org_archive\\|txt\\)$" . org-mode)) | (setq org-agenda-files '("/tmp/test.org")) | (require 'org-install) | (require 'org-habit) | | (global-set-key "\C-cl" 'org-store-link) | (global-set-key "\C-ca" 'org-agenda) | (global-set-key "\C-cb" 'org-iswitchb) `---- and I load this with emacs -Q -l ~/minimal.emacs. I'll normally edit it to add whatever is needed to reproduce the problem in org-mode. Using a stripped down minimal .emacs files removes broken custom settings as the cause of the issue and makes it easy to reproduce for other people. HTH, Bernt