summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2011-08-05 14:31:59 -0400
committerEric Schulte <schulte.eric@gmail.com>2011-08-05 14:31:59 -0400
commitdc904a834dbc6454bb3c947887f2138de7096c79 (patch)
treeffba1e76db02fc87dd19ada575a15395c4a8123b
parentc0e2351e1af5c6bc7ac7fc427fb805350b099494 (diff)
downloadorg-mode-dc904a834dbc6454bb3c947887f2138de7096c79.tar.gz
removed use of copy-seq from ob.el
* lisp/ob.el (org-babel-sha1-hash): Removed use of copy-seq.
-rw-r--r--lisp/ob.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ob.el b/lisp/ob.el
index 44173fd..f714156 100644
--- a/lisp/ob.el
+++ b/lisp/ob.el
@@ -783,7 +783,7 @@ the current subtree."
lst)
(norm (arg)
(let ((v (if (and (listp (cdr arg)) (null (cddr arg)))
- (copy-seq (cdr arg))
+ (copy-sequence (cdr arg))
(cdr arg))))
(when (and v (not (and (sequencep v)
(not (consp v))