emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] [Accepted] * org-html.el (org-html-make-link): correct a bug in code


From: Carsten Dominik
Subject: [O] [Accepted] * org-html.el (org-html-make-link): correct a bug in coderef link.
Date: Fri, 15 Apr 2011 13:58:40 +0200 (CEST)

Patch 746 (http://patchwork.newartisans.com/patch/746/) is now "Accepted".

Maintainer comment: none

This relates to the following submission:

http://mid.gmane.org/%3C1302614330-23496-1-git-send-email-manuel.giraud%40univ-nantes.fr%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: [O] * org-html.el (org-html-make-link): correct a bug in coderef 
> link.
> Date: Tue, 12 Apr 2011 18:18:50 -0000
> From: Manuel Giraud <address@hidden>
> X-Patchwork-Id: 746
> Message-Id: <address@hidden>
> To: address@hidden
> Cc: Manuel Giraud <address@hidden>
> 
> ---
>  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)))
>  
> 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]