Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Karl Fogel
org-mode
Commits
8301b72e
Commit
8301b72e
authored
Jul 17, 2016
by
Nicolas Goaziou
Browse files
Revert "ob-exp: Remove spurious comma un-escaping"
This reverts commit
0279d84c
.
parent
ebe7aa66
Changes
1
Hide whitespace changes
Inline
Side-by-side
lisp/ob-exp.el
View file @
8301b72e
...
...
@@ -48,6 +48,7 @@
(
declare-function
org-element-property
"org-element"
(
property
element
))
(
declare-function
org-element-type
"org-element"
(
element
))
(
declare-function
org-id-get
"org-id"
(
&optional
pom
create
prefix
))
(
declare-function
org-escape-code-in-string
"org-src"
(
s
))
(
defcustom
org-export-babel-evaluate
t
"Switch controlling code evaluation during export.
...
...
@@ -385,7 +386,7 @@ replaced with its value."
org-babel-exp-inline-code-template
org-babel-exp-code-template
)
`
((
"lang"
.
,
(
nth
0
info
))
(
"body"
.
,
(
nth
1
info
))
(
"body"
.
,
(
org-escape-code-in-string
(
nth
1
info
))
)
(
"switches"
.
,
(
let
((
f
(
nth
3
info
)))
(
and
(
org-string-nw-p
f
)
(
concat
" "
f
))))
(
"flags"
.
,
(
let
((
f
(
assq
:flags
(
nth
2
info
))))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment