From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: [Accepted] Recognize underscores in URL Date: Wed, 25 Aug 2010 12:33:32 +0200 (CEST) Message-ID: <20100825103332.A6CF56586A4@u016822.science.uva.nl> References: <877hjv90fo.wl%n.goaziou@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=34457 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OoDIW-0005xJ-6e for emacs-orgmode@gnu.org; Wed, 25 Aug 2010 06:33:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OoDIU-0001bh-SE for emacs-orgmode@gnu.org; Wed, 25 Aug 2010 06:33:36 -0400 Received: from u016822.science.uva.nl ([146.50.39.34]:49337) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OoDIU-0001bT-HE for emacs-orgmode@gnu.org; Wed, 25 Aug 2010 06:33:34 -0400 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@gnu.org Patch 214 (http://patchwork.newartisans.com/patch/214/) is now "Accepted". Maintainer comment: Tanks 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 > "\\[\\[\\([^][]+\\)\\]\\(\\[\\([^][]+\\)\\]\\)?\\]" >