From mboxrd@z Thu Jan 1 00:00:00 1970 From: Greg Lucas Subject: sha1 errors with feeds, needed to load sha1.el Date: Tue, 14 Apr 2009 10:16:02 -0400 Message-ID: <98b24d270904140716r52af0cc7q41fc1eb5fce9cd17@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LtjQn-0004QX-TD for emacs-orgmode@gnu.org; Tue, 14 Apr 2009 10:16:09 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LtjQj-0004PA-6V for emacs-orgmode@gnu.org; Tue, 14 Apr 2009 10:16:09 -0400 Received: from [199.232.76.173] (port=45637 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LtjQj-0004P7-1C for emacs-orgmode@gnu.org; Tue, 14 Apr 2009 10:16:05 -0400 Received: from wf-out-1314.google.com ([209.85.200.168]:39619) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LtjQi-00054c-OM for emacs-orgmode@gnu.org; Tue, 14 Apr 2009 10:16:04 -0400 Received: by wf-out-1314.google.com with SMTP id 23so2520876wfg.24 for ; Tue, 14 Apr 2009 07:16:03 -0700 (PDT) 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 Sharing this in case anyone else needs it. I'm running Emacs 22.3.1 on Windows with org-mode 6.25e and was unable to get org-feed to work without some digging. First I got: =A0=A0 Symbol's function definition is void: sha1-string I found a relevant post on the mailing list and tracked down the latest org-compat.el from git, but then I got: =A0 =A0Symbol's function definition is void: sha1-region I poked around and found that there was a sha1.el in my emacs/gnus/lisp that defined these functions. So I added an eval-after-load hook now things seem to work fine: (eval-after-load "org" =A0 '(progn =A0 (load "sha1") =A0 ;; avoid issues with org-feed ;; other org customization =A0 )) I guess this could be fixed by somewhere requiring sha1 (e.g. in org-feed.el or org-compat.el)? Also want to point out that org-feed.el is not actually included in the 6.25e zip distribution (even though the autoloads are there for the feed functions), so I had to grab that from git to get started. -- Greg