From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Unable to finalize capture Date: Fri, 04 Oct 2013 08:56:43 -0400 Message-ID: <87vc1dfb3o.fsf@gmail.com> References: <6094838D-BECF-4705-970F-513364FEC02D@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50584) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VS4wM-00042N-6B for emacs-orgmode@gnu.org; Fri, 04 Oct 2013 08:57:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VS4wE-0005SY-Ep for emacs-orgmode@gnu.org; Fri, 04 Oct 2013 08:57:06 -0400 Received: from plane.gmane.org ([80.91.229.3]:56339) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VS4wE-0005SU-7X for emacs-orgmode@gnu.org; Fri, 04 Oct 2013 08:56:58 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VS4wC-0005jk-RF for emacs-orgmode@gnu.org; Fri, 04 Oct 2013 14:56:56 +0200 Received: from pool-108-7-96-134.bstnma.fios.verizon.net ([108.7.96.134]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 04 Oct 2013 14:56:56 +0200 Received: from ndokos by pool-108-7-96-134.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 04 Oct 2013 14:56:56 +0200 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 Dror Atariah writes: > It seems like after the last update I've made to org-mode the > capturing of notes does not work properly. Currently I have version > 8.0.7 (20130930) from the ELPA. Hitting C-c c (i.e. org-capture) > brings the list of capture templates and then I can choose one of them > to open a buffer where I can actually entry the note. The problem is > that once I'm done, hitting C-c C-c doesn't close the capturing > buffer. The content is saved in the right place but I'm not returned > to the place where I started the capturing. In the *Messages* buffer I > get the following error: org-capture-finalize: Symbol's value as > variable is void: org-bookmark-names-plist > org-bookmark-names-plist is defined in org.el. Try evaluating (require 'org) and seeing if the variable is now defined: C-h v org-bookmark-names-plist RET If so, the capture should work. Then you have to figure out why org.el[c] was not loaded. If the variable is not defined, check whether you have some old obsolete org.el lying around: M-x locate-library RET org RET and M-x list-load-path-shadows RET should give you some clues. -- Nick