summaryrefslogtreecommitdiff
path: root/lisp/org-choose.el
diff options
context:
space:
mode:
authorCarsten Dominik <carsten.dominik@gmail.com>2009-02-13 22:36:01 +0100
committerCarsten Dominik <carsten.dominik@gmail.com>2009-02-13 22:36:01 +0100
commit40e2a4235fd4ce88568c1a8ec68026413e2d2fbe (patch)
treed4db81205011b419f95c91e17cf12aeadefdf1a4 /lisp/org-choose.el
parent368f2683b43dadb02b61141cf3b5803b5b9fce2d (diff)
Fix compatibility issues with org-choose.el
Patch by Tom Breton.
Diffstat (limited to 'lisp/org-choose.el')
-rw-r--r--lisp/org-choose.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/org-choose.el b/lisp/org-choose.el
index baa8584..9e07f79 100644
--- a/lisp/org-choose.el
+++ b/lisp/org-choose.el
@@ -63,8 +63,9 @@
;;;_ , Requires
(require 'org)
-(eval-when-compile
- (require 'cl))
+;(eval-when-compile
+; (require 'cl))
+(require 'cl)
;;;_. Body
;;;_ , The variables
@@ -109,7 +110,7 @@ Each entry is an `org-choose-mark-data.'" )
;;Split it
(arglist
(let
- ((arglist-x (split-string args ",")))
+ ((arglist-x (org-split-string args ",")))
;;When string starts with "," `split-string' doesn't
;;make a first arg, so in that case make one
;;manually.