소스 검색

org-exp.el: Inhibit read-only when grabbing the title from a subtree.

Eric S. Fraga found this problem while trying to export a subtree from
a read-only file.
Bastien Guerry 15 년 전
부모
커밋
a39c35fcd9
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      lisp/org-exp.el

+ 2 - 1
lisp/org-exp.el

@@ -1949,7 +1949,8 @@ can work correctly."
 
 (defun org-export-get-title-from-subtree ()
   "Return subtree title and exclude it from export."
-  (let (title (rbeg (region-beginning)) (rend (region-end)))
+  (let ((rbeg (region-beginning)) (rend (region-end))
+	(inhibit-read-only t) title)
     (save-excursion
       (goto-char rbeg)
       (when (and (org-at-heading-p)