From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim O'Callaghan Subject: Re: Attention XEmacs users Date: Tue, 20 Jun 2006 14:09:02 +0200 Message-ID: <20060620120902.GB1132@ELSAMSW37164> References: <20060615132109.GA1296@ELSAMSW37164> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Fsf2U-0006VD-Qs for emacs-orgmode@gnu.org; Tue, 20 Jun 2006 08:09:03 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Fsf2N-0006N2-Ef for emacs-orgmode@gnu.org; Tue, 20 Jun 2006 08:09:00 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Fsf2N-0006Mm-6G for emacs-orgmode@gnu.org; Tue, 20 Jun 2006 08:08:55 -0400 Received: from [193.120.211.34] (helo=dspsrv.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FsfCt-0003QA-9Y for emacs-orgmode@gnu.org; Tue, 20 Jun 2006 08:19:47 -0400 Received: from [145.36.45.123] (helo=localhost) by dspsrv.com with asmtp (Exim 3.36 #1) id 1Fsf2L-0008TG-00 for emacs-orgmode@gnu.org; Tue, 20 Jun 2006 13:08:53 +0100 Content-Disposition: inline In-Reply-To: <20060615132109.GA1296@ELSAMSW37164> 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 I experimented with automating the noutline usage with a patch for org-install: (if (featurep 'xemacs) (progn (setq dir (expand-file-name (concat default-directory "xemacs"))) (if (file-directory-p dir) (setq load-path (cons dir load-path))) ) ) The problem here is that default-directory was not set correctly at runtime for some reason, so just added the xemacs dir to my load-path instead. Its something you might consider though. Also ":" needed to be added to org-link-escape-chars, as below: (defconst org-link-escape-chars '((":" . ":") ("[" . "%5B") ("]" . "%5D") (" " . "%20")) "Association list of escapes for some characters problematic in links.") The fix is for a problem that occurs, when trying to open a remote file link. org-open-at-point mangles the EFS file links, possibly tramp ones as well, i've not tried. It by replaces every ':' with '!'. The link file:/user@machine:/disk:/home/dir/WRK/ tries to open the file "/user@machine!/disk!/home/dir/WRK/" Its probably not the best way of going about it, but it works. Tim.