Browse Source

Removed extraneous quote on the list passed to `org-export-define-backend'.

* org-e-groff.el (e-groff):
Removed quote at the beginning of the list of cons containing
the backend defition that is being passed to `org-export-define-backend'.
Luis Anaya 12 years ago
parent
commit
2a87c94c9f
1 changed files with 1 additions and 4 deletions
  1. 1 4
      contrib/lisp/org-e-groff.el

+ 1 - 4
contrib/lisp/org-e-groff.el

@@ -39,16 +39,13 @@
 
 (eval-when-compile (require 'cl))
 
-(defvar org-export-groff-default-packages-alist)
-(defvar org-export-groff-packages-alist)
-
 (require 'org-export)
 
 
 ;;; Define Back-End
 
 (org-export-define-backend e-groff
-  '((babel-call . org-e-groff-babel-call)
+  ((babel-call . org-e-groff-babel-call)
     (bold . org-e-groff-bold)
     (center-block . org-e-groff-center-block)
     (clock . org-e-groff-clock)