emacs-orgmode
[Top][All Lists]
Advanced

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

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


From: Manuel Giraud
Subject: [O] [PATCH] * org-html.el (org-html-make-link): correct a bug in coderef link.
Date: Tue, 12 Apr 2011 15:18:50 +0200

---
 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




reply via email to

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