summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2011-10-09 09:11:00 -0600
committerEric Schulte <schulte.eric@gmail.com>2011-10-09 09:11:10 -0600
commitd7d0230bf45862c387c55fbffcb16e09ec98dd74 (patch)
treef3799b93bdab4458030fefd3e1d00ea38e627605
parent9bd1c338a057e1808eeed08239ac0e76136e05ee (diff)
downloadorg-mode-d7d0230bf45862c387c55fbffcb16e09ec98dd74.tar.gz
Fixed typo in org-babel-insert-header-arg.
Thanks to Torsten Wagner for pointing this out and for suggesting the original feature. * lisp/ob.el (org-babel-insert-header-arg): Fixed typo.
-rw-r--r--lisp/ob.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ob.el b/lisp/ob.el
index 48ad04a..65eb2c8 100644
--- a/lisp/ob.el
+++ b/lisp/ob.el
@@ -606,7 +606,7 @@ arguments and pop open the results in a preview buffer."
(mapcar
(lambda (header-spec) (symbol-name (car header-spec)))
org-babel-common-header-args-w-values))))
- (insert arg ":")
+ (insert ":" arg)
(let ((vals (cdr (assoc (intern arg)
org-babel-common-header-args-w-values))))
(when vals