From 79db2d5dbb18077ec02eef6311a8b2f95bdce86e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 22 Apr 2015 14:05:51 +0200 Subject: [PATCH] ox: Tiny fix to code comments * lisp/ox.el (org-export--get-subtree-options): Tiny fix. --- lisp/ox.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lisp/ox.el b/lisp/ox.el index e14bbe0e6..864e7d55c 100644 --- a/lisp/ox.el +++ b/lisp/ox.el @@ -1394,8 +1394,8 @@ Optional argument BACKEND is an export back-end, as returned by, e.g., `org-export-create-backend'. It specifies back-end used for export. Return options as a plist." ;; For each buffer keyword, create a headline property setting the - ;; same property in communication channel. The name for the property - ;; is the keyword with "EXPORT_" appended to it. + ;; same property in communication channel. The name for the + ;; property is the keyword with "EXPORT_" appended to it. (org-with-wide-buffer (let (plist ;; Look for both general keywords and back-end specific @@ -1404,9 +1404,9 @@ for export. Return options as a plist." org-export-options-alist))) ;; Make sure point is at a heading. (if (org-at-heading-p) (org-up-heading-safe) (org-back-to-heading t)) - ;; Take care of EXPORT_TITLE. If it isn't defined, use headline's - ;; title (with no todo keyword, priority cookie or tag) as its - ;; fallback value. + ;; Take care of EXPORT_TITLE. If it isn't defined, use + ;; headline's title (with no todo keyword, priority cookie or + ;; tag) as its fallback value. (let ((title (or (org-entry-get (point) "EXPORT_TITLE") (progn (looking-at org-complex-heading-regexp) (org-match-string-no-properties 4))))) -- 2.11.4.GIT