summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2010-06-10 10:04:12 -0700
committerEric Schulte <schulte.eric@gmail.com>2010-06-10 10:04:12 -0700
commit8021cf928833bde4591647fd93c5668c78b6ec53 (patch)
tree9383d655307d8616b4cd6c46d0079093c7e6f62a
parent0e9e01c3fd50fdb458c05fae4fde1cdf52b5e125 (diff)
downloadorg-mode-8021cf928833bde4591647fd93c5668c78b6ec53.tar.gz
babel: undo two troubling unintended tab insertions in previous commit
* contrib/babel/lisp/org-babel.el (org-babel-execute-src-block): undo to troubling unintentional tab insertions from the previous commit
-rw-r--r--contrib/babel/lisp/org-babel.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/babel/lisp/org-babel.el b/contrib/babel/lisp/org-babel.el
index bdd3286..75431b7 100644
--- a/contrib/babel/lisp/org-babel.el
+++ b/contrib/babel/lisp/org-babel.el
@@ -221,7 +221,7 @@ block."
(params (setf (third info)
(sort (org-babel-merge-params (third info) params)
(lambda (el1 el2) (string< (symbol-name (car el1))
- (symbol-name (car el2)))))))
+ (symbol-name (car el2)))))))
(new-hash
(if (and (cdr (assoc :cache params))
(string= "yes" (cdr (assoc :cache params))))
@@ -484,7 +484,7 @@ added as the last element of the kill ring. This can be called
with C-c C-c."
(interactive)
(let ((hash (car (delq nil (mapcar
- (lambda (ol) (overlay-get ol 'babel-hash))
+ (lambda (ol) (overlay-get ol 'babel-hash))
(overlays-at (or point (point))))))))
(when hash (kill-new hash) (message hash))))
(add-hook 'org-ctrl-c-ctrl-c-hook 'org-babel-hash-at-point)