Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
ob-julia.jl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alberto Ramos
ob-julia.jl
Commits
545c4d59
Commit
545c4d59
authored
Jun 28, 2017
by
G. Jay Kerns
Committed by
GitHub
Jun 28, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7 from nico202/master
Fixes on org mode > 9.0
parents
8be42098
f202d0bc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
ob-julia.el
ob-julia.el
+3
-1
No files found.
ob-julia.el
View file @
545c4d59
...
...
@@ -102,7 +102,9 @@ This function is called by `org-babel-execute-src-block'."
(
defun
org-babel-variable-assignments:julia
(
params
)
"Return list of julia statements assigning the block's variables."
(
let
((
vars
(
mapcar
#'
cdr
(
org-babel-get-header
params
:var
))))
(
let
((
vars
(
if
(
fboundp
'org-babel-get-header
)
(
mapcar
#'
cdr
(
org-babel-get-header
params
:var
))
(
mapcar
#'
cdr
(
org-babel--get-vars
params
)))))
(
mapcar
(
lambda
(
pair
)
(
org-babel-julia-assign-elisp
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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