From fd5828ab7722c90ac51e1adc834d0d442322d9d8 Mon Sep 17 00:00:00 2001 From: David Maus Date: Wed, 10 Aug 2011 09:24:56 +0200 Subject: [PATCH] Fix command line syntax for agenda batch commands * org.texi (Exporting Agenda Views, Extracting agenda information): Fix command line syntax, quote symbol parameter values. --- doc/org.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/org.texi b/doc/org.texi index 2bdb09a1d..8d6fe2a5a 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -8594,7 +8594,7 @@ or, if you need to modify some parameters@footnote{Quoting depends on the system you use, please check the FAQ for examples.} @example emacs -eval '(org-batch-store-agenda-views \ - org-agenda-span month \ + org-agenda-span (quote month) \ org-agenda-start-day "2007-11-01" \ org-agenda-include-diary nil \ org-agenda-files (quote ("~/org/project.org")))' \ @@ -14878,7 +14878,7 @@ You may also modify parameters on the fly like this: @example emacs -batch -l ~/.emacs \ -eval '(org-batch-agenda "a" \ - org-agenda-span month \ + org-agenda-span (quote month) \ org-agenda-include-diary nil \ org-agenda-files (quote ("~/org/project.org")))' \ | lpr -- 2.11.4.GIT