From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?B?56ul5L+K57+U?= Subject: symbol's function definition is void: org-find-property Date: Mon, 8 Feb 2016 13:04:06 +0800 Message-ID: Mime-Version: 1.0 (Mac OS X Mail 9.2 \(3112\)) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51788) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aSdzk-0005lr-5d for emacs-orgmode@gnu.org; Mon, 08 Feb 2016 00:04:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aSdzf-0000Zz-GL for emacs-orgmode@gnu.org; Mon, 08 Feb 2016 00:04:16 -0500 Received: from mail-pf0-x229.google.com ([2607:f8b0:400e:c00::229]:36674) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aSdzf-0000ZE-9F for emacs-orgmode@gnu.org; Mon, 08 Feb 2016 00:04:11 -0500 Received: by mail-pf0-x229.google.com with SMTP id e127so8201383pfe.3 for ; Sun, 07 Feb 2016 21:04:10 -0800 (PST) Received: from [127.0.0.1] ([45.116.12.34]) by smtp.gmail.com with ESMTPSA id p20sm39673021pfi.86.2016.02.07.21.04.08 for (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 07 Feb 2016 21:04:09 -0800 (PST) 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: Org mode I want to use capture, the following is my configuration in .emacs ;;(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode)) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-cc" 'org-capture) (global-set-key "\C-ca" 'org-agenda) (global-set-key "\C-cb" 'org-iswitchb) ;;capture template (setq org-capture-templates '(("t" "Todo" entry (file+headline "~/360Cloud/GTD/gtd.org" "Tasks") "* TODO %?\n %i\n %a") ("j" "Journal" entry (file+datetree = "~/360Cloud/GTD/journal.org") "* %?\nEntered on %U\n %i\n %a"))) When I press C-cc, j, it doesn=E2=80=99t work, and i promoted that: = symbol's function definition is void: org-find-property. What=E2=80=99s the problem? Thank you for your help!=