summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2013-07-29 18:18:41 -0600
committerEric Schulte <schulte.eric@gmail.com>2013-07-29 18:18:41 -0600
commit184109d416fb3a23811dd0ec3d0aeb96f699da6c (patch)
tree0d62979c5418b3fd8b32fac79e777a5220fc1fee
parentdb9f11a86065c10eaac9015adee37d60b05a5bb9 (diff)
downloadorg-mode-184109d416fb3a23811dd0ec3d0aeb96f699da6c.tar.gz
ob-core remove-if -> org-remove-if
* lisp/ob-core.el (org-babel-merge-params): Replace remove-if with org-remove-if.
-rw-r--r--lisp/ob-core.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/ob-core.el b/lisp/ob-core.el
index cc25357..578a52d 100644
--- a/lisp/ob-core.el
+++ b/lisp/ob-core.el
@@ -2359,11 +2359,11 @@ parameters when merging lists."
(lambda (param)
(when (assoc param params)
(setf (cdr (assoc param params))
- (remove-if (lambda (pair) (equal (car pair) name))
- (cdr (assoc param params))))
- (setf params (remove-if (lambda (pair) (and (equal (car pair) param)
- (null (cdr pair))))
- params))))
+ (org-remove-if (lambda (pair) (equal (car pair) name))
+ (cdr (assoc param params))))
+ (setf params (org-remove-if (lambda (pair) (and (equal (car pair) param)
+ (null (cdr pair))))
+ params))))
(list :colname-names :rowname-names)))
clearnames)
(mapc