From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?B?TWljaGHDq2w=?= Parienti Subject: "Autoloading failed to define function org-agenda" after an update Date: Mon, 4 Aug 2008 14:21:00 +0200 Message-ID: <20080804142100.26e98fc6@magnolia> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KQ0rn-0005Yq-6o for emacs-orgmode@gnu.org; Mon, 04 Aug 2008 10:16:55 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KQ0rl-0005Xk-Hs for emacs-orgmode@gnu.org; Mon, 04 Aug 2008 10:16:54 -0400 Received: from [199.232.76.173] (port=38826 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KQ0rl-0005Xh-EN for emacs-orgmode@gnu.org; Mon, 04 Aug 2008 10:16:53 -0400 Received: from mx20.gnu.org ([199.232.41.8]:40196) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KQ0rl-0004Gl-2w for emacs-orgmode@gnu.org; Mon, 04 Aug 2008 10:16:53 -0400 Received: from volubilis.easter-eggs.org ([212.85.154.90]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KPz5E-0000sZ-UN for emacs-orgmode@gnu.org; Mon, 04 Aug 2008 08:22:41 -0400 Received: from localhost (localhost [127.0.0.1]) by volubilis.easter-eggs.org (Postfix) with ESMTP id 6C318241DC for ; Mon, 4 Aug 2008 14:21:05 +0200 (CEST) Received: from magnolia (coquelicot-adsl.easter-eggs.com [82.235.59.105]) by volubilis.easter-eggs.org (Postfix) with ESMTP id 1BD9A24102 for ; Mon, 4 Aug 2008 14:21:05 +0200 (CEST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, After upgrading to orgmode version 6.05 (with an aptitude dist-upgrade under a debian sid system), and changing my configuration file to resolve the problem described here: http://www.mail-archive.com/emacs-orgmode@gnu.org/msg07167.html, I still have a problem when I type C-ca. I get the following error message: "Autoloading failed to define function org-agenda" When I type a second time C-ca, every thing works fine. Here is my configuration lines concerning org-mode: ---------- ;; ;; Org-mode ;;=20 (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) (define-key global-map "\C-ca" 'org-agenda) (setq org-agenda-files (append (file-expand-wildcards "~/text/gtd/*.org") (file-expand-wildcards "~/text/gtd/res-proj/*.org") ) )=20 (setq org-log-done t); affiche l'heure d'un passage en DONE (setq org-blank-before-new-entry '((heading . t) (plain-list-item . nil))); an empty line before each newly inserted ; headline, but not before each newly inserted ; plain-list item. (setq org-todo-keywords '((sequence "TODO(t)" "NEXT_ACTION(n)" "WAITING(w)" "|" "DONE(d)" "CANCELED(c)") (sequence "PROJECT(p)" "SOMEDAY_MAYBE(m)" "SCHEDULED(s)" "STAND_BY(b)" "|" "FINISH(f)" "ABANDONED(a)")) ) (eval-after-load "org" '(progn (define-key org-mode-map (quote [S-iso-lefttab]) (quote dabbrev-expand)) ) ) (eval-after-load "org-agenda" '(progn (define-key org-agenda-mode-map (quote [S-iso-lefttab]) (quote dabbrev-expand)) ; (define-key org-agenda-keymap (quote [S-iso-lefttab]) (quote dabbrev-expand)) ; ) ) (custom-set-variables '(org-agenda-show-all-dates t) '(org-agenda-skip-deadline-if-done t) '(org-agenda-skip-scheduled-if-done t) '(org-deadline-warning-days 0)) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. ) ---------- Thanks in advance for you help --=20 Micha=C3=ABl Parienti