From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sergey Pashinin Subject: org-agenda is not working after org-mode update Date: Sun, 21 Apr 2013 16:28:07 +0400 Message-ID: <5173DB57.1040201@pashinin.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:51459) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UTtNS-0002M8-O0 for emacs-orgmode@gnu.org; Sun, 21 Apr 2013 08:28:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UTtNN-0006jg-3d for emacs-orgmode@gnu.org; Sun, 21 Apr 2013 08:28:18 -0400 Received: from xdev.static.corbina.ru ([93.81.255.77]:43936 helo=pashinin.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UTtNM-0006iy-OC for emacs-orgmode@gnu.org; Sun, 21 Apr 2013 08:28:13 -0400 Received: from localhost (localhost [127.0.0.1]) by pashinin.com (Postfix) with ESMTP id 66B244048B for ; Sun, 21 Apr 2013 16:28:09 +0400 (MSK) Received: from pashinin.com ([127.0.0.1]) by localhost (pashinin.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hGEcbkJggUDY for ; Sun, 21 Apr 2013 16:28:09 +0400 (MSK) Received: from [10.254.239.2] (unknown [10.254.239.2]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pashinin.com (Postfix) with ESMTPS id 2F25840488 for ; Sun, 21 Apr 2013 16:28:09 +0400 (MSK) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org I updated org-mode yesterday through Melpa. After that org-agenda stopped working for me. It says: Invalid function: org-with-silent-modifications In my script I had this: (org-agenda nil "n") Trying to execute it now gives: Debugger entered--Lisp error: (invalid-function org-with-silent-modifications) org-with-silent-modifications(nil) org-refresh-category-properties() byte-code("\306!\203\..... org-agenda-prepare-buffers(("/data/org/work.org" ...)) org-agenda-prepare("Agenda and all TODO's") (let nil (org-agenda-prepare name)) eval((let nil (org-agenda-prepare name))) org-let(nil (org-agenda-prepare name)) org-agenda-run-series("Agenda and all TODO's" (((agenda "") (alltodo "")))) org-agenda(nil "n") eval((org-agenda nil "n") nil) eval-last-sexp-1(nil) eval-last-sexp(nil) call-interactively(eval-last-sexp nil nil) command-execute(eval-last-sexp) ------------------------- Also have to add: I had only "(require 'org)" in my file and it started to complain: "I don't know org-agenda-buffer-name variable" So I had to add: (require 'org) (require 'org-agenda) ;;(require 'org-compat) But still got an error I described above. Looks like a bug