emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] template problem in latest master, but not in stable


From: Uwe Brauer
Subject: Re: [O] template problem in latest master, but not in stable
Date: Mon, 10 Jul 2017 16:52:16 +0000
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.0.50 (gnu/linux)

>>> "Nicolas" == Nicolas Goaziou <address@hidden> writes:

    > Hello,
    > Uwe Brauer <address@hidden> writes:

    >> I am using the following template without problem in the latest stable
    >> org version I just upgraded via the package system.
    >> 
    >> (setq org-capture-templates
    >> '(
    >> ("G" "Generic README.org file (table format)" table-line (file+headline 
(expand-file-name (read-file-name "Name of file (curr dir;table format)!: ")) 
"Overview")
    >> "|%f| %U|%A|" :prepend t)
    >> ("w" "Web site" entry
    >> (file "")
    >> "* %a :website:\n\n%U %?\n\n%:initial")
    >> ))
    >> 
    >> However when I use the latest master from git I obtain an error I attach

    > See ORG-NEWS, Incompatible changes.


Thanks

According to that file

: (file (sexp))

into

: (file (lambda () (sexp)))

So 
(setq org-capture-templates
      '(
("G" "Generic README.org file (table format)" table-line (file+headline (lambda 
() (expand-file-name (read-file-name "Name of file (curr dir;table format)!: 
"))) "Overview")
         "|%f| %U|%A|" :prepend t)))

Worked, thanks

Uwe 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]