From mboxrd@z Thu Jan 1 00:00:00 1970 From: Umbromancer Subject: Stable 9.1.3 demands explicit empty string in (file) as capture target Date: Thu, 16 Nov 2017 22:13:53 +0000 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35644) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eFSQh-0001gw-2k for emacs-orgmode@gnu.org; Thu, 16 Nov 2017 17:14:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eFSQd-0004N8-5m for emacs-orgmode@gnu.org; Thu, 16 Nov 2017 17:14:39 -0500 Received: from mail-it0-x244.google.com ([2607:f8b0:4001:c0b::244]:38329) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eFSQc-0004Mg-WD for emacs-orgmode@gnu.org; Thu, 16 Nov 2017 17:14:35 -0500 Received: by mail-it0-x244.google.com with SMTP id n134so1893859itg.3 for ; Thu, 16 Nov 2017 14:14:34 -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" To: emacs-orgmode Hi, This may be intended, but before it was possible (and there is a lot of code and examples in the wild) to have a capture template element such as: (setq org-default-notes-file "~/Documents/orgfiles/inbox.org") (setq org-capture-templates '(("t" "Todo" entry (file) "* TODO %^{Brief description} %^g\n %u\n %?" :empty-lines 1) ...)) While with stable 9.1.3 an empty string must be explicitly passed in (file "") if org-default-notes-file is to be used as the target. Regards