diff options
Diffstat (limited to 'lisp/org/ob-stan.el')
-rw-r--r-- | lisp/org/ob-stan.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/org/ob-stan.el b/lisp/org/ob-stan.el index 38cda4cdbc7..6fa9fe5c94f 100644 --- a/lisp/org/ob-stan.el +++ b/lisp/org/ob-stan.el @@ -49,11 +49,12 @@ (defcustom org-babel-stan-cmdstan-directory nil "CmdStan source directory. -'make' will be called from this directory to compile the Stan -block. When nil, executing Stan blocks dumps the content to a -plain text file." +Call \"make\" from this directory to compile the Stan block. +When nil, executing Stan blocks dumps the content to a file." :group 'org-babel - :type 'string) + :type '(choice + (directory :tag "Compilation directory") + (const :tag "Dump to a file" nil))) (defvar org-babel-default-header-args:stan '((:results . "file"))) |