* template problem in latest master, but not in stable
@ 2017-07-10 14:31 Uwe Brauer
2017-07-10 14:41 ` Nicolas Goaziou
0 siblings, 1 reply; 3+ messages in thread
From: Uwe Brauer @ 2017-07-10 14:31 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 535 bytes --]
Hi
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
[-- Attachment #2: templatex-bug.txt --]
[-- Type: text/plain, Size: 536 bytes --]
Debugger entered--Lisp error: (error "Invalid file location: nil")
signal(error ("Invalid file location: nil"))
error("Invalid file location: %S" nil)
org-capture-expand-file((expand-file-name (read-file-name "Name of file (curr dir;table format)!: ")))
org-capture-target-buffer((expand-file-name (read-file-name "Name of file (curr dir;table format)!: ")))
org-capture-set-target-location()
org-capture(nil)
funcall-interactively(org-capture nil)
call-interactively(org-capture nil nil)
command-execute(org-capture)
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: template problem in latest master, but not in stable
2017-07-10 14:31 template problem in latest master, but not in stable Uwe Brauer
@ 2017-07-10 14:41 ` Nicolas Goaziou
2017-07-10 16:52 ` Uwe Brauer
0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Goaziou @ 2017-07-10 14:41 UTC (permalink / raw)
To: emacs-orgmode
Hello,
Uwe Brauer <oub@mat.ucm.es> 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.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: template problem in latest master, but not in stable
2017-07-10 14:41 ` Nicolas Goaziou
@ 2017-07-10 16:52 ` Uwe Brauer
0 siblings, 0 replies; 3+ messages in thread
From: Uwe Brauer @ 2017-07-10 16:52 UTC (permalink / raw)
To: emacs-orgmode
>>> "Nicolas" == Nicolas Goaziou <mail@nicolasgoaziou.fr> writes:
> Hello,
> Uwe Brauer <oub@mat.ucm.es> 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
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-07-10 16:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-10 14:31 template problem in latest master, but not in stable Uwe Brauer
2017-07-10 14:41 ` Nicolas Goaziou
2017-07-10 16:52 ` Uwe Brauer
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).