I have installed version 20130401 on emacs 24.3 on os x mountain lion via M-x package list. But my global keys don't seem to be working. I get an error:
Invalid function: org-no-popups. The only orgmode that seem to work for me is version: 20121217.
My global keys are:
^c-c capture
^c-t todo
^c-^c - org-tag-list
Here's the snippet from .emacs
(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
(add-hook 'org-mode-hook 'turn-on-font-lock) ; not needed when global-font-lock-mode is on
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-ca" 'org-agenda)
(global-set-key "\C-cb" 'org-iswitchb)
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-cc" 'org-capture)
(setq org-tag-alist '(("computer" . ?c) ("Errands" . ?e) ("work" . ?o) ("calls" . ?a)
("Internet" . ?i) ("waitingfor" . ?w)))
(setq org-agenda-files '("~/org"))
(setq org-capture-templates
'(("t" "Tasks" entry (file+headline "~/org/
gtd_home.org" "Tasks")
"** %?\n %i Added:%U")
("p" "Project" entry (file+headline "~/org/
gtd_home.org" "Projects")
"** %?\n %i Added:%U")))
(setq org-todo-keywords
'((sequence "TODO(t)" "|" "DONE(d)")
(sequence "|" "CANCELED(c)")))
(setq org-todo-keyword-faces
'(("CANCELED" . (:foreground "blue" :weight bold))))
Thanks.