From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: ascii export of links to notes broken? Date: Mon, 18 May 2009 07:30:40 +0200 Message-ID: References: <20524da70905162256r7d87090fv3302d51fd5e8f33e@mail.gmail.com> <5271393A-FC47-412B-A1AB-DF6B4A533379@gmail.com> <20524da70905171443w434f9261o136d4e73ebeb180e@mail.gmail.com> <3D9BFCC2-74FE-44AE-A492-ABAA373BF199@gmail.com> <20524da70905171533t3dd5453et97346485e5e57d79@mail.gmail.com> Mime-Version: 1.0 (Apple Message framework v930.3) 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 1M5xah-00020x-Iy for emacs-orgmode@gnu.org; Mon, 18 May 2009 03:48:55 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M5xad-00020L-1v for emacs-orgmode@gnu.org; Mon, 18 May 2009 03:48:55 -0400 Received: from [199.232.76.173] (port=44750 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M5xac-00020I-TL for emacs-orgmode@gnu.org; Mon, 18 May 2009 03:48:50 -0400 Received: from mx20.gnu.org ([199.232.41.8]:31811) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1M5xac-0003zz-Bk for emacs-orgmode@gnu.org; Mon, 18 May 2009 03:48:50 -0400 Received: from mail-ew0-f162.google.com ([209.85.219.162]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1M5xab-0004hz-BW for emacs-orgmode@gnu.org; Mon, 18 May 2009 03:48:49 -0400 Received: by ewy6 with SMTP id 6so3959248ewy.42 for ; Mon, 18 May 2009 00:48:47 -0700 (PDT) In-Reply-To: <20524da70905171533t3dd5453et97346485e5e57d79@mail.gmail.com> 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: Samuel Wales Cc: emacs-orgmode@gnu.org Can you please send me the exact buffer you are using, the exact range that is covered by the active region, and the command you then use? So far I have not been abe to reproduce what you are saying. - Carsten On May 18, 2009, at 12:33 AM, Samuel Wales wrote: > The bug occurs when the region is active. It does not occur when I > have a file dedicated to the subtree, mark a region, but don't have an > active region (transient-mark-mode is off). When I do the latter but > it is part of a larger file there is a wrong type argument error. > > > *** [[http://google.com][hi]] > text > > > Here is a minimal .emacs. > > (require 'cl) > > (defun alpha-add-path (p) (setq load-path (cons p load-path))) > > (alpha-add-path (concat (getenv "delorgsrc") "/lisp")) > (alpha-add-path (concat (getenv "delpkgbef") "/remember")) > > (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) > > (defvar alpha-mac-font > "-apple-courier-medium-r-normal--24-240-72-72-m-240-iso10646-1") > '(progn > (progn > (defconst alpha-mac-font-2 > "-apple-courier-medium-r-normal--*-*-*-*-*-240-*") > (set-frame-font alpha-mac-font-2)) > ) > (set-frame-font alpha-mac-font) > > ;;it seems to me that i never want blank lines ending a body > ;;;(setf org-cycle-separator-lines 0) > (setf org-cycle-separator-lines 1) > ;;;(setf org-cycle-separator-lines 2) > ;;keep body indentation intact when promoting and demoting > (setf org-adapt-indentation nil) > ;;;(setf org-adapt-indentation t) > > ;;very strange. this gets overridden with time? > ;;;(setq org-log-done t) > (setq org-log-done 'time) > > (require 'org-install) > > (defvar alpha-org-map (make-sparse-keymap "alpha org map")) > (define-key global-map [f8] alpha-org-map) > (define-key alpha-org-map [f8] 'org-remember) ;c-c r > (define-key alpha-org-map "o" 'org-open-at-point-global) ;c-c o > > (require 'remember-autoloads) > (org-remember-insinuate) > > ;;http://mail.google.com/mail/x > (setf org-file-apps > '( > ;;(auto-mode . emacs) > ;;("\\.x?html?\\'" . default) > ;;("\\.pdf\\'" . default) > (t . emacs))) > > (define-key org-mode-map "\C-cc" (lambda () (interactive) (org-todo > "WAIT")))