emacs-orgmode
[Top][All Lists]
Advanced

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

Re: [O] Bug: Org-Contacts.el [7.4]


From: Nick Dokos
Subject: Re: [O] Bug: Org-Contacts.el [7.4]
Date: Sat, 05 Mar 2011 23:47:26 -0500

U-SWEETSAUERPORT\\Matthew Sauer <address@hidden> wrote:

,----
| Debugger entered--Lisp error: (void-variable org-property-set-functions-alist)
|   add-to-list(org-property-set-functions-alist ("BIRTHDAY" . 
org-completing-read-date))
|   eval-buffer(#<buffer  *load*> nil "/elisp/org-contacts/org-contacts.el" nil 
t)  ; Reading at buffer position 12430
|   load-with-code-conversion("/elisp/org-contacts/org-contacts.el" 
"/elisp/org-contacts/org-contacts.el" nil t)
|   require(org-contacts)
`----

org-property-set-functions-alist is a variable in org.el, so it seems
you are loading org-contacts.el before loading org.el (and the autoloads
in your .emacs seem to confirm that).

Problems:

o org-contacts requires a recent version (> 7.4) of org. The version
  that came with your emacs is not going to cut it.

o you are probably loading the version of org that came with your emacs.
  To check, say M-x locate-library <RET> org <RET> and see where it loads
  org.el (or org.elc) from.

o if you are using the built-in version, download the version from git (if
  you have not already) and follow the instructions in section 1.2,
  "Installation", of the Org manual to install it.

And please clean up your .emacs: the autoload section that goes

,----
| ;; These lines only if org-mode is not part of the X/Emacs distribution.
| (autoload 'org-mode "org" "Org mode" t)
| (autoload 'org-diary "org" "Diary entries from Org mode" t)
| (autoload 'org-agenda "org" "Multi-file agenda from Org mode" t)
| (autoload 'org-store-link "org" "Store a link to the current location" t)
| (autoload 'orgtbl-mode "org" "Org tables as a minor mode" t)
| (autoload 'turn-on-orgtbl "org" "Org tables as a minor mode")
`----

should be *replaced* by what the doc says. Don't leave it hanging around.

If you still have problems, submit another problem report (btw, the
information you included in this one was spot-on: both the .emacs and
the backtrace were needed for diagnosis).

HTH,
Nick




reply via email to

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