Allow special editing of SETUPFILE keywords again

* lisp/org.el (org-edit-special): Fix regression.
This commit is contained in:
Nicolas Goaziou 2013-01-16 18:13:23 +01:00
parent cf968c510c
commit 780b453227
1 changed files with 1 additions and 1 deletions

View File

@ -19472,7 +19472,7 @@ Otherwise, return a user error."
(funcall (intern (concat "org-babel-prep-session:" lang))
session params)))))
(keyword
(if (equal (org-element-property :key element) "INCLUDE")
(if (member (org-element-property :key element) '("INCLUDE" "SETUPFILE"))
(find-file
(org-remove-double-quotes
(car (org-split-string (org-element-property :value element)))))