projects
/
org-mode.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
cf968c5
)
Allow special editing of SETUPFILE keywords again
author
Nicolas Goaziou
<n.goaziou@gmail.com>
Wed, 16 Jan 2013 17:13:23 +0000 (18:13 +0100)
committer
Nicolas Goaziou
<n.goaziou@gmail.com>
Wed, 16 Jan 2013 18:27:38 +0000 (19:27 +0100)
* lisp/org.el (org-edit-special): Fix regression.
lisp/org.el
patch
|
blob
|
history
diff --git
a/lisp/org.el
b/lisp/org.el
index
1c6fd51
..
770d332
100644
(file)
--- a/
lisp/org.el
+++ b/
lisp/org.el
@@
-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)))))