From mboxrd@z Thu Jan 1 00:00:00 1970 From: Manuel Giraud Subject: [PATCH] * org-html.el (org-html-make-link): correct a bug in coderef link. Date: Tue, 12 Apr 2011 15:18:50 +0200 Message-ID: <1302614330-23496-1-git-send-email-manuel.giraud@univ-nantes.fr> References: <81fwpnfzkd.fsf@gmail.com> Return-path: Received: from eggs.gnu.org ([140.186.70.92]:44137) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9dVG-0008Lo-1g for emacs-orgmode@gnu.org; Tue, 12 Apr 2011 09:19:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q9dVF-0008Rl-5K for emacs-orgmode@gnu.org; Tue, 12 Apr 2011 09:19:33 -0400 Received: from smtp-tls1.univ-nantes.fr ([193.52.101.145]:51438 helo=smtp-tls.univ-nantes.fr) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q9dVE-0008Rb-Uo for emacs-orgmode@gnu.org; Tue, 12 Apr 2011 09:19:33 -0400 In-Reply-To: <81fwpnfzkd.fsf@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Cc: Manuel Giraud --- lisp/org-html.el | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lisp/org-html.el b/lisp/org-html.el index 58fbc05..5d53478 100644 --- a/lisp/org-html.el +++ b/lisp/org-html.el @@ -826,7 +826,8 @@ MAY-INLINE-P allows inlining it as an image." (not type) (string= type "http") (string= type "https") - (string= type "file")) + (string= type "file") + (string= type "coderef")) (if fragment (setq thefile (concat thefile "#" fragment)))) @@ -836,7 +837,8 @@ MAY-INLINE-P allows inlining it as an image." (setq thefile (let ((str (org-export-html-format-href thefile))) - (if (and type (not (string= "file" type))) + (if (and type (not (or (string= "file" type) + (string= "coderef" type)))) (concat type ":" str) str))) -- 1.7.3.5