From mboxrd@z Thu Jan 1 00:00:00 1970 From: Samuel Wales Subject: Re: ascii export of links to notes broken? Date: Sun, 17 May 2009 15:33:14 -0700 Message-ID: <20524da70905171533t3dd5453et97346485e5e57d79@mail.gmail.com> References: <20524da70905162256r7d87090fv3302d51fd5e8f33e@mail.gmail.com> <5271393A-FC47-412B-A1AB-DF6B4A533379@gmail.com> <20524da70905171443w434f9261o136d4e73ebeb180e@mail.gmail.com> <3D9BFCC2-74FE-44AE-A492-ABAA373BF199@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1M5ovN-0007yR-C5 for emacs-orgmode@gnu.org; Sun, 17 May 2009 18:33:41 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1M5ovH-0007uf-SH for emacs-orgmode@gnu.org; Sun, 17 May 2009 18:33:40 -0400 Received: from [199.232.76.173] (port=50147 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1M5ovH-0007uc-P9 for emacs-orgmode@gnu.org; Sun, 17 May 2009 18:33:35 -0400 Received: from mail-px0-f111.google.com ([209.85.216.111]:54563) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1M5ovH-0007CC-Du for emacs-orgmode@gnu.org; Sun, 17 May 2009 18:33:35 -0400 Received: by pxi9 with SMTP id 9so2048822pxi.14 for ; Sun, 17 May 2009 15:33:34 -0700 (PDT) In-Reply-To: <3D9BFCC2-74FE-44AE-A492-ABAA373BF199@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: Carsten Dominik Cc: emacs-orgmode@gnu.org 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")))