Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up documentation #16

Merged
merged 13 commits into from
Mar 28, 2018
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revise docstring of org-babel-execute:prolog
Correctly reference the BODY and PARAMS parameters.  Move the
information about the function calling to a separate paragraph.
  • Loading branch information
lafrenierejm committed Mar 28, 2018
commit d1f147924a2006f209bdaa60e0406e3be420801f
5 changes: 3 additions & 2 deletions ob-prolog.el
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,9 @@ Example:
(buffer-string))))

(defun org-babel-execute:prolog (body params)
"Execute a block of Prolog code with org-babel. This function is
called by `org-babel-execute-src-block'"
"Execute the Prolog in BODY according to the block's header PARAMS.

This function is called by `org-babel-execute-src-block.'"
(message "executing Prolog source code block")
(let* ((result-params (cdr (assq :result-params params)))
(session (cdr (assq :session params)))
Expand Down