emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [O] accessing org-lowest-priority in .emacs


From: Jambunathan K
Subject: Re: [O] accessing org-lowest-priority in .emacs
Date: Thu, 16 Jun 2011 19:00:56 +0530
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (windows-nt)

"Filippo A. Salustri" <address@hidden> writes:

> I'm having a senior moment here.
>
> I've got code of this form in my Preferences.el (aquamacs-speak for .emacs):
>
> (defvar fas/org-some-variable
>   (/ 10 (* 1000 (- org-lowest-priority org-highest-priority))))
>
> But org-lowest-priority & org-highest-priority aren't defined at that
> point in Preferences.el.  I need to defer the calculation till org is
> running.

Do this

#+begin_src emacs-lisp
(require 'org) ;; note this
(defvar fas/org-some-variable
  (/ 10 (* 1000 (- org-lowest-priority org-highest-priority))))
#+end_src

or 

this 

#+begin_src emacs-lisp
(eval-after-load 'org
  (defvar fas/org-some-variable ;; replace defvar with setq, maybe?
    (/ 10 (* 1000 (- org-lowest-priority org-highest-priority)))))

#+end_src

Just re-check whether you have got your math right. It looks suspicious
to me.

>
> It's embarrassing, but it's not coming to me.
>
> Can someone help me out?
> Cheers.
> Fil


Jambunathan K.
-- 



reply via email to

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