Browse Source

ox: Fix docstring

* lisp/ox.el (org-export-define-backend): Fix docstring.

Reported-by: Zachary Kanfer <zkanfer@gmail.com>
<http://lists.gnu.org/r/emacs-orgmode/2021-08/msg00009.html>
Nicolas Goaziou 3 years ago
parent
commit
a43d7a575d
1 changed files with 6 additions and 6 deletions
  1. 6 6
      lisp/ox.el

+ 6 - 6
lisp/ox.el

@@ -1212,12 +1212,12 @@ keywords are understood:
       or
       or
 
 
       \\='(?l \"Export to LaTeX\"
       \\='(?l \"Export to LaTeX\"
-           (?p \"As PDF file\" org-latex-export-to-pdf)
-           (?o \"As PDF file and open\"
-               (lambda (a s v b)
-                 (if a (org-latex-export-to-pdf t s v b)
-                   (org-open-file
-                    (org-latex-export-to-pdf nil s v b)))))))
+           ((?p \"As PDF file\" org-latex-export-to-pdf)
+            (?o \"As PDF file and open\"
+                (lambda (a s v b)
+                  (if a (org-latex-export-to-pdf t s v b)
+                    (org-open-file
+                     (org-latex-export-to-pdf nil s v b)))))))
 
 
       or the following, which will be added to the previous
       or the following, which will be added to the previous
       sub-menu,
       sub-menu,