Hi, I'm using Emacs 23.3.1 on Windows 7 and org mode 7.7 (installed via elpa/marmalade). My .emacs is fairly minimalist: (add-to-list 'load-path "~/.emacs.d/") (require 'package) (add-to-list 'package-archives '("marmalade" . "http://marmalade-repo.org/packages/")) (package-initialize) (setq ido-create-new-buffer 'always) (setq ido-enable-flex-matching t) (ido-mode 1) (require 'org-install) (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) (define-key global-map "\C-cl" 'org-store-link) (define-key global-map "\C-ca" 'org-agenda) (setq org-log-done t) I get the message "Invalid function: org-called-interactively-p" whenever I try certain commands e.g.: Whenever I try to refile (C-c C-w) or at the end of a sparse tree command (C-c /) it matches what I search for but then complains about the invalid function again Any help appreciated