ox: Rename `org-export-collect-tree-properties'

* lisp/ox.el (org-export-collect-tree-properties): Remove function.
(org-export--collect-tree-properties): New function.
  Renamed from `org-export-collect-tree-properties'
(org-export-as): Apply renaming.
* testing/lisp/test-ox.el (org-test-with-parsed-data): Apply renaming.
This commit is contained in:
Nicolas Goaziou 2015-11-05 10:56:59 +01:00
parent b414b85a7c
commit 8048973bae
2 changed files with 5 additions and 5 deletions

View File

@ -1281,7 +1281,7 @@ The back-end could then be called with, for example:
;; `org-export-options-alist' variable. ;; `org-export-options-alist' variable.
;; ;;
;; 2. Tree properties are extracted directly from the parsed tree, ;; 2. Tree properties are extracted directly from the parsed tree,
;; just before export, by `org-export-collect-tree-properties'. ;; just before export, by `org-export--collect-tree-properties'.
;;;; Environment Options ;;;; Environment Options
;; ;;
@ -1628,7 +1628,7 @@ BLOB is the element or object considered."
;; ;;
;; Tree properties are information extracted from parse tree. They ;; Tree properties are information extracted from parse tree. They
;; are initialized at the beginning of the transcoding process by ;; are initialized at the beginning of the transcoding process by
;; `org-export-collect-tree-properties'. ;; `org-export--collect-tree-properties'.
;; ;;
;; Dedicated functions focus on computing the value of specific tree ;; Dedicated functions focus on computing the value of specific tree
;; properties during initialization. Thus, ;; properties during initialization. Thus,
@ -1639,7 +1639,7 @@ BLOB is the element or object considered."
;; `org-export--collect-headline-numbering' builds an alist between ;; `org-export--collect-headline-numbering' builds an alist between
;; headlines and their numbering. ;; headlines and their numbering.
(defun org-export-collect-tree-properties (data info) (defun org-export--collect-tree-properties (data info)
"Extract tree properties from parse tree. "Extract tree properties from parse tree.
DATA is the parse tree from which information is retrieved. INFO DATA is the parse tree from which information is retrieved. INFO
@ -3040,7 +3040,7 @@ Return code as a string."
;; to communication channel. ;; to communication channel.
(setq info (setq info
(org-combine-plists (org-combine-plists
info (org-export-collect-tree-properties tree info))) info (org-export--collect-tree-properties tree info)))
;; Eventually transcode TREE. Wrap the resulting string into ;; Eventually transcode TREE. Wrap the resulting string into
;; a template. ;; a template.
(let* ((body (org-element-normalize-string (let* ((body (org-element-normalize-string

View File

@ -52,7 +52,7 @@ variable, and communication channel under `info'."
(org-export--prune-tree tree info) (org-export--prune-tree tree info)
(org-export--remove-uninterpreted-data tree info) (org-export--remove-uninterpreted-data tree info)
(let ((info (org-combine-plists (let ((info (org-combine-plists
info (org-export-collect-tree-properties tree info)))) info (org-export--collect-tree-properties tree info))))
,@body)))) ,@body))))