Browse Source

export back-ends: Remove unused translators functions

Nicolas Goaziou 12 years ago
parent
commit
2b21bb4e52

+ 1 - 6
contrib/lisp/org-e-ascii.el

@@ -48,13 +48,10 @@
 ;; control blank lines separating them in output string.
 
 (org-export-define-backend e-ascii
-  ((babel-call . org-e-ascii-babel-call)
-   (bold . org-e-ascii-bold)
+  ((bold . org-e-ascii-bold)
    (center-block . org-e-ascii-center-block)
    (clock . org-e-ascii-clock)
    (code . org-e-ascii-code)
-   (comment . org-e-ascii-comment)
-   (comment-block . org-e-ascii-comment-block)
    (drawer . org-e-ascii-drawer)
    (dynamic-block . org-e-ascii-dynamic-block)
    (entity . org-e-ascii-entity)
@@ -66,7 +63,6 @@
    (footnote-reference . org-e-ascii-footnote-reference)
    (headline . org-e-ascii-headline)
    (horizontal-rule . org-e-ascii-horizontal-rule)
-   (inline-babel-call . org-e-ascii-inline-babel-call)
    (inline-src-block . org-e-ascii-inline-src-block)
    (inlinetask . org-e-ascii-inlinetask)
    (italic . org-e-ascii-italic)
@@ -81,7 +77,6 @@
    (plain-list . org-e-ascii-plain-list)
    (plain-text . org-e-ascii-plain-text)
    (planning . org-e-ascii-planning)
-   (property-drawer . org-e-ascii-property-drawer)
    (quote-block . org-e-ascii-quote-block)
    (quote-section . org-e-ascii-quote-section)
    (radio-target . org-e-ascii-radio-target)

+ 1 - 5
contrib/lisp/org-e-html.el

@@ -52,13 +52,10 @@
 ;;; Define Back-End
 
 (org-export-define-backend e-html
-  ((babel-call . org-e-html-babel-call)
-   (bold . org-e-html-bold)
+  ((bold . org-e-html-bold)
    (center-block . org-e-html-center-block)
    (clock . org-e-html-clock)
    (code . org-e-html-code)
-   (comment . org-e-html-comment)
-   (comment-block . org-e-html-comment-block)
    (drawer . org-e-html-drawer)
    (dynamic-block . org-e-html-dynamic-block)
    (entity . org-e-html-entity)
@@ -70,7 +67,6 @@
    (footnote-reference . org-e-html-footnote-reference)
    (headline . org-e-html-headline)
    (horizontal-rule . org-e-html-horizontal-rule)
-   (inline-babel-call . org-e-html-inline-babel-call)
    (inline-src-block . org-e-html-inline-src-block)
    (inlinetask . org-e-html-inlinetask)
    (italic . org-e-html-italic)

+ 1 - 5
contrib/lisp/org-e-latex.el

@@ -47,13 +47,10 @@
 ;;; Define Back-End
 
 (org-export-define-backend e-latex
-  ((babel-call . org-e-latex-babel-call)
-   (bold . org-e-latex-bold)
+  ((bold . org-e-latex-bold)
    (center-block . org-e-latex-center-block)
    (clock . org-e-latex-clock)
    (code . org-e-latex-code)
-   (comment . org-e-latex-comment)
-   (comment-block . org-e-latex-comment-block)
    (drawer . org-e-latex-drawer)
    (dynamic-block . org-e-latex-dynamic-block)
    (entity . org-e-latex-entity)
@@ -65,7 +62,6 @@
    (footnote-reference . org-e-latex-footnote-reference)
    (headline . org-e-latex-headline)
    (horizontal-rule . org-e-latex-horizontal-rule)
-   (inline-babel-call . org-e-latex-inline-babel-call)
    (inline-src-block . org-e-latex-inline-src-block)
    (inlinetask . org-e-latex-inlinetask)
    (italic . org-e-latex-italic)

+ 1 - 5
contrib/lisp/org-e-odt.el

@@ -34,13 +34,10 @@
 ;;; Define Back-End
 
 (org-export-define-backend e-odt
-  ((babel-call . org-e-odt-babel-call)
-   (bold . org-e-odt-bold)
+  ((bold . org-e-odt-bold)
    (center-block . org-e-odt-center-block)
    (clock . org-e-odt-clock)
    (code . org-e-odt-code)
-   (comment . org-e-odt-comment)
-   (comment-block . org-e-odt-comment-block)
    (drawer . org-e-odt-drawer)
    (dynamic-block . org-e-odt-dynamic-block)
    (entity . org-e-odt-entity)
@@ -52,7 +49,6 @@
    (footnote-reference . org-e-odt-footnote-reference)
    (headline . org-e-odt-headline)
    (horizontal-rule . org-e-odt-horizontal-rule)
-   (inline-babel-call . org-e-odt-inline-babel-call)
    (inline-src-block . org-e-odt-inline-src-block)
    (inlinetask . org-e-odt-inlinetask)
    (italic . org-e-odt-italic)

+ 1 - 5
contrib/lisp/org-export.el

@@ -757,13 +757,10 @@ keywords are understood:
 As an example, here is how the `e-ascii' back-end is defined:
 
 \(org-export-define-backend e-ascii
-  \((babel-call . org-e-ascii-babel-call)
-   \(bold . org-e-ascii-bold)
+  \((bold . org-e-ascii-bold)
    \(center-block . org-e-ascii-center-block)
    \(clock . org-e-ascii-clock)
    \(code . org-e-ascii-code)
-   \(comment . org-e-ascii-comment)
-   \(comment-block . org-e-ascii-comment-block)
    \(drawer . org-e-ascii-drawer)
    \(dynamic-block . org-e-ascii-dynamic-block)
    \(entity . org-e-ascii-entity)
@@ -775,7 +772,6 @@ As an example, here is how the `e-ascii' back-end is defined:
    \(footnote-reference . org-e-ascii-footnote-reference)
    \(headline . org-e-ascii-headline)
    \(horizontal-rule . org-e-ascii-horizontal-rule)
-   \(inline-babel-call . org-e-ascii-inline-babel-call)
    \(inline-src-block . org-e-ascii-inline-src-block)
    \(inlinetask . org-e-ascii-inlinetask)
    \(italic . org-e-ascii-italic)