From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: [Accepted] Recognize underscores in URL Date: Wed, 25 Aug 2010 12:35:01 +0200 Message-ID: References: <877hjv90fo.wl%n.goaziou@gmail.com> <20100825103332.A6CF56586A4@u016822.science.uva.nl> Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=34765 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OoDK1-0006Sm-H4 for emacs-orgmode@gnu.org; Wed, 25 Aug 2010 06:35:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OoDJx-0001vi-T9 for emacs-orgmode@gnu.org; Wed, 25 Aug 2010 06:35:09 -0400 Received: from pony.ic.uva.nl ([145.18.40.181]:36170) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OoDJx-0001vd-MA for emacs-orgmode@gnu.org; Wed, 25 Aug 2010 06:35:05 -0400 In-Reply-To: <20100825103332.A6CF56586A4@u016822.science.uva.nl> 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 On Aug 25, 2010, at 12:33 PM, Carsten Dominik wrote: > Patch 214 (http://patchwork.newartisans.com/patch/214/) is now > "Accepted". > > Maintainer comment: Tanks Arrgh! THANKS! > > This relates to the following submission: > > http://mid.gmane.org/%3C877hjv90fo.wl%25n.goaziou%40gmail.com%3E > > Here is the original message containing the patch: > >> Content-Type: text/plain; charset="utf-8" >> MIME-Version: 1.0 >> Content-Transfer-Encoding: 7bit >> Subject: [Orgmode] Recognize underscores in URL >> Date: Thu, 12 Aug 2010 22:59:39 -0000 >> From: Nicolas Goaziou >> X-Patchwork-Id: 214 >> Message-Id: <877hjv90fo.wl%n.goaziou@gmail.com> >> To: Org Mode List >> >> Hello, >> >> This needs some testing as it may break something else, but the >> following patch should prevent underscores in URL from introducing >> subscript. >> >> Regards, >> >> -- Nicolas >>> From dd068df8a0e43a1a4ee85559bddb7ef2dbfa72bd Mon Sep 17 00:00:00 >>> 2001 >> From: Nicolas Goaziou >> Date: Thu, 12 Aug 2010 19:47:29 +0200 >> Subject: [PATCH] Recognize URL with underscores >> >> * org.el (org-make-link-regexps): modified regexp of org-plain-link- >> re. >> >> --- >> lisp/org.el | 2 +- >> 1 files changed, 1 insertions(+), 1 deletions(-) >> >> diff --git a/lisp/org.el b/lisp/org.el >> index 31d2411..4560488 100644 >> --- a/lisp/org.el >> +++ b/lisp/org.el >> @@ -4851,7 +4851,7 @@ This should be called after the variable `org- >> link-types' has changed." >> org-plain-link-re >> (concat >> "\\<\\(" (mapconcat 'regexp-quote org-link-types "\\|") "\\):" >> - (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9]+)\\|\\([^[:punct:] >> \t\n]\\|/\\)\\)\\)")) >> + (org-re "\\([^ \t\n()<>]+\\(?:([[:word:]0-9_]+)\\|\\([^[:punct:] >> \t\n]\\|/\\)\\)\\)")) >> ;; "\\([^]\t\n\r<>() ]+[^]\t\n\r<>,.;() ]\\)") >> org-bracket-link-regexp >> "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]" >> > > _______________________________________________ > Emacs-orgmode mailing list > Please use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode - Carsten