From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: shell links [was: Version 4.19c] Date: Tue, 11 Apr 2006 13:47:26 +0200 Message-ID: <10637e4f82ceded9a018daee1cb53250@science.uva.nl> References: <44354222.60104@u.washington.edu> <99190467852be4837e9eae9cc2f4f95d@science.uva.nl> <443A98D0.4080005@u.washington.edu> Mime-Version: 1.0 (Apple Message framework v623) Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FTHLE-0008OK-0P for emacs-orgmode@gnu.org; Tue, 11 Apr 2006 07:47:28 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FTHLC-0008N5-4C for emacs-orgmode@gnu.org; Tue, 11 Apr 2006 07:47:27 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FTHLB-0008Mz-VF for emacs-orgmode@gnu.org; Tue, 11 Apr 2006 07:47:26 -0400 Received: from [146.50.4.51] (helo=imap.science.uva.nl) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FTHQ2-0005hj-Oz for emacs-orgmode@gnu.org; Tue, 11 Apr 2006 07:52:27 -0400 In-Reply-To: <443A98D0.4080005@u.washington.edu> 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: Scott Otterson Cc: emacs-orgmode@gnu.org On Apr 10, 2006, at 19:41, Scott Otterson wrote: > > In 4.20, the minibuffer is now showing the space without the '%20', a > nice touch. However, the %20 still does show up in the link text when > I delete the leftmost ']'. It's just a display issue, though, because > the shell link works fine. Some characters need to be escaped in a link. For example, I have seen message ID's containing [ ] brackets, and these would mess up the regexp matching of links. A space character might lead to link being scattered over two lines, with a newline and possibly indentation in between. To avoid this, I am escaping both space and brackets. The links still work because before following a link, the escaping is reversed - Carsten