From mboxrd@z Thu Jan 1 00:00:00 1970 From: Manish Subject: Re: Emacs initialization problem on Windows after latest git pull of Org Date: Mon, 4 Jan 2010 23:24:12 +0530 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NRsE2-0003pV-Gf for emacs-orgmode@gnu.org; Mon, 04 Jan 2010 14:04:22 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NRsDy-0003nP-TF for emacs-orgmode@gnu.org; Mon, 04 Jan 2010 14:04:22 -0500 Received: from [199.232.76.173] (port=55718 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NRsDy-0003nG-K7 for emacs-orgmode@gnu.org; Mon, 04 Jan 2010 14:04:18 -0500 Received: from mx20.gnu.org ([199.232.41.8]:53828) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NRsDw-0001no-9L for emacs-orgmode@gnu.org; Mon, 04 Jan 2010 14:04:16 -0500 Received: from mail-iw0-f188.google.com ([209.85.223.188]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NRr8X-0006DV-G3 for emacs-orgmode@gnu.org; Mon, 04 Jan 2010 12:54:37 -0500 Received: by iwn26 with SMTP id 26so9845070iwn.14 for ; Mon, 04 Jan 2010 09:54:32 -0800 (PST) In-Reply-To: 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: Org-Mode On Mon, Jan 4, 2010 at 11:02 PM, Manish wrote: > Hello List, > > After the latest git update, Emacs init is interrupted with this message: > > "Symbol's function definition is void: mailcap-parse-mailcaps" > > Recent changes and related info: > > - Windows XP SP2 > - GNU Emacs 23.1.1 (i386-mingw-nt5.1.2600) of 2009-07-30 on SOFT-MJASON > - Cygwin 1.7 (recently updated) <- I use Cygwin Emacs only to compile Org > - Latest git pull of Org-mode > > Any ideas how I can begin to debug this? > Doh.. use --debug-init There seem to have been some conflict with extview.el. Commenting out following lines seems to solve the problem: ,---- | ;; for invoking external viewers from within dired | (require 'extview) | | ;; (push '("\\.pdf$" . "acroread %s") extview-application-associations) | (push '("\\.html$" . ask) extview-application-associations) | (push '("\\.doc$" . "C:/PROGRA~1/OFFICE11/WINWORD.EXE %s") extview-application-associations) | (push '("\\.xls$" . "C:/PROGRA~1/OFFICE11/EXCEL.EXE %s") extview-application-associations) | (push '("\\.pdf$" . "C:/PROFRA~1/Adobe/Reader\\ 8\\.0/Reader/AcroRd32.exe %s") extview-application-associations) `---- I have had extview since Emacs 22, may be it is not needed anymore with the recent change about special ways of opening files.. Will have to test it. Sorry for the noise. -- Manish