From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roland Everaert Subject: Regresssion in org-capture? Date: Tue, 02 Apr 2019 15:54:23 +0200 Message-ID: <87imvwbjhs.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([209.51.188.92]:52401) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hBJs4-0000gM-Us for emacs-orgmode@gnu.org; Tue, 02 Apr 2019 09:54:38 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hBJs3-0008Gy-R7 for emacs-orgmode@gnu.org; Tue, 02 Apr 2019 09:54:36 -0400 Received: from mail-ed1-x536.google.com ([2a00:1450:4864:20::536]:35654) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hBJs3-0008E1-C0 for emacs-orgmode@gnu.org; Tue, 02 Apr 2019 09:54:35 -0400 Received: by mail-ed1-x536.google.com with SMTP id s39so11770745edb.2 for ; Tue, 02 Apr 2019 06:54:34 -0700 (PDT) Received: from tanko ([85.91.180.112]) by smtp.gmail.com with ESMTPSA id c37sm4045361edb.90.2019.04.02.06.54.31 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 02 Apr 2019 06:54:31 -0700 (PDT) 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, Since a few weeks, the following template didn't work anymore. (setq org-capture-templates `(("b" "Add url to bookmarks DB" entry (file+headline "~/org/private/= bookmarks.org" "URLs") "** %i\n" :immediate-finish t)) ) Anytime I execute it I got this error: org-capture: Capture template =E2=80=98b=E2=80=99: Template is not a valid = Org entry or tree Org-mode and Emacs version Org mode version 9.2.3 (9.2.3-elpa @ /home/roland/.emacs.d/elpa/org-2019040= 2/) GNU Emacs 26.1 (build 1, x86_64-redhat-linux-gnu, GTK+ Version 3.22.30) of = 2018-06-26 Minimal configuration I have used to reproduce the problem: (require 'package) (setq package-enable-at-startup nil) (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t) (package-initialize) ;; Initialize & Install Package ; Bootstrap `use-package' (unless (package-installed-p 'use-package) (package-refresh-contents) (package-install 'use-package)) (use-package org :ensure org-plus-contrib :pin org :mode (("\\.org$" . org-mode) ("\\.org_archive$" . org-mode)) :bind (("C-c l" . org-store-link) ("C-c b" . org-iswitchb) ("C-c c" . org-capture)) ) (setq org-capture-templates `(("b" "Add url to bookmarks DB" entry (file+headline "~/org/private/= bookmarks.org" "URLs") "** %i\n" :immediate-finish t)) ) Does anything has changed in the syntax of org-capture-templates? Regards, Roland Everaert. --=20 Luke, use the FOSS Sent from Emacs