all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Around-advice on org-<foo>-export function?
@ 2014-06-25 22:46 Thorsten Jolitz
  0 siblings, 0 replies; only message in thread
From: Thorsten Jolitz @ 2014-06-25 22:46 UTC (permalink / raw)
  To: emacs-orgmode


Hi List, 

sometimes I want to call one of the org-<foo>-export functions with a
different environment, i.e. with different values for the
backend-specific customizable export variables, e.g.

,----
| (let ((org-taskjuggler-default-project-duration 1)) ; default is 280
|    (org-taskjuggler-export-and-process ...))
`----

I activate an around-advice for org-taskjuggler-export (which does the
real work) doing that

,----
| (defadvice org-taskjuggler-export (around org-taskjuggler-export-around)
|       (let ((org-taskjuggler-default-project-duration 1))
|       ad-do-it))
| 
| ((ad-activate 'org-taskjuggler-export)
`----

but nothing changes - default duration is still shown as 280, not 1. 
Is this supposed to work?

-- 
cheers,
Thorsten

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-06-25 22:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-25 22:46 Around-advice on org-<foo>-export function? Thorsten Jolitz

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.