ox: Remove clutter from export templates

* lisp/ox.el (org-export-insert-default-template): Only insert
  keywords and options relatives to the selected back-end.  Ignore
  those relatives to its parent in the case of a derived back-end.
This commit is contained in:
Nicolas Goaziou 2014-01-17 22:08:33 +01:00
parent 1e25d087dd
commit b0ac2f6ac0
1 changed files with 2 additions and 2 deletions

View File

@ -3124,8 +3124,8 @@ locally for the subtree through node properties."
;; Populate OPTIONS and KEYWORDS.
(dolist (entry (cond ((eq backend 'default) org-export-options-alist)
((org-export-backend-p backend)
(org-export-get-all-options backend))
(t (org-export-get-all-options
(org-export-backend-options backend))
(t (org-export-backend-options
(org-export-get-backend backend)))))
(let ((keyword (nth 1 entry))
(option (nth 2 entry)))