Re: [O] auto-fill non-op, fill-paragraph error

2012-09-29 Thread Bastien
Achim Gratz strom...@nexgo.de writes: Maybe the manual and Worg should be checked for bad advice in that direction? Yes. I updated the manual but did not check Worg yet. If someone can have a go, great. -- Bastien

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-28 Thread Bastien
Edward DeMeulle e...@demeulle.org writes: org-fill-paragraph: Symbol's function definition is void: org-element--parse-objects Org-mode version 7.9.1 (release_7.9.1-396-g5ba6bd @ /home/ewd/.emacs.d/org-mode/lisp/) Can you give the output of C-h f org-element-parse-buffer RET C-h f

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-28 Thread Edward DeMeulle
org-element-parse-buffer is a Lisp function in `org-element.el'. (org-element-parse-buffer optional GRANULARITY VISIBLE-ONLY) Recursively parse the buffer and return structure. If narrowing is in effect, only parse the visible part of the buffer. Optional argument GRANULARITY determines the

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-28 Thread Bastien
Hi Edward, Edward DeMeulle e...@demeulle.org writes: org-element-parse-buffer is a Lisp function in `org-element.el'. org-fill-paragraph is an interactive compiled Lisp function in `org.el'. Sorry, I should have mentioned that I interested in the absolute path org-element.el and org.el

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-28 Thread Edward DeMeulle
locate shows org-element.el here: /home/ewd/.emacs.d/org-mode/contrib/lisp/org-element.el /home/ewd/.emacs.d/org-mode/lisp/org-element.el /home/ewd/.emacs.d/org-mode/lisp/org-element.elc /usr/share/emacs/site-lisp/org/org-element.el /usr/share/emacs/site-lisp/org/org-element.elc org.el:

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-28 Thread Bastien
Edward DeMeulle e...@demeulle.org writes: locate shows org-element.el here: /home/ewd/.emacs.d/org-mode/contrib/lisp/org-element.el This tells that you have two Org installs conflicting with each other. Since Org 7.9, org-element.el is not part of contrib/ anymore, it is part of Org's core.

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-28 Thread Edward DeMeulle
I thought that might be the case as I was posting it. Will do. Thanks.

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-28 Thread Edward DeMeulle
Whacking the org-mode directory and re-cloning the repository did it. Thanks again.

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-28 Thread Achim Gratz
Bastien writes: This tells that you have two Org installs conflicting with each other. Since Org 7.9, org-element.el is not part of contrib/ anymore, it is part of Org's core. It also tells you that it is not a good idea to keep …/org/contrib in load-path before …/org. Maybe the manual and

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-28 Thread Edward DeMeulle
Achim Gratz strom...@nexgo.de writes: It also tells you that it is not a good idea to keep …/org/contrib in load-path before …/org. Maybe the manual and Worg should be checked for bad advice in that direction? My init is set as follows: (add-to-list 'load-path ~/.emacs.d/org-mode/lisp)

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-28 Thread Nick Dokos
Edward DeMeulle e...@demeulle.org wrote: Achim Gratz strom...@nexgo.de writes: It also tells you that it is not a good idea to keep …/org/contrib in load-path before …/org. Maybe the manual and Worg should be checked for bad advice in that direction? My init is set as follows:

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-28 Thread Edward DeMeulle
Nick Dokos nicholas.do...@hp.com writes: So you can either reverse the order, or you can say (add-to-list 'load-path ~/.emacs.d/org-mode/contrib/lisp t) which will add it to the end of the list. The two methods are not equivalent, mind you, but in either case the org lisp directory will

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-27 Thread Bastien
Hi Edward, Edward DeMeulle e...@demeulle.org writes: Unfortunately, I am still experiencing the problem with release_7.9.1-382-g1a1d06-git. Is there any information I can provide to help? Please do C-u M-x org-version RET -- this will insert the complete Org version in your email (assuming

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-27 Thread Edward DeMeulle
Org-mode version 7.9.1 (release_7.9.1-382-g1a1d06-git @/home/ewd/.emacs.d/org-mode/lisp/) I'd been simply running it from sources but will try compiling it.

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-27 Thread Edward DeMeulle
I ran 'make up2' and received the following (I'm still on emacs23) ... Compiling /home/ewd/.emacs.d/org-mode/lisp/org.el... In org-store-link: org.el:8999:23:Warning: `org-link-to-org-use-id' is an obsolete variable (as of Emacs 24.3); use `org-id-link-to-org-use-id' instead.

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-27 Thread Bastien
Edward DeMeulle e...@demeulle.org writes: I ran 'make up2' and received the following (I'm still on emacs23) Please use `make update2' `make up2' runs the test suite but you don't have the ert package installed. -- Bastien

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-27 Thread Edward DeMeulle
Ok. Ran 'make update2', which completed w/o errors. Still running into error: org-fill-paragraph: Symbol's function definition is void: org-element--parse-objects Org-mode version 7.9.1 (release_7.9.1-396-g5ba6bd @ /home/ewd/.emacs.d/org-mode/lisp/)

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-26 Thread Edward DeMeulle
Unfortunately, I am still experiencing the problem with release_7.9.1-382-g1a1d06-git. Is there any information I can provide to help?

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-25 Thread Jörn Gersdorf
Hi Bastien, thank you - the bug is resolved as of release_7.9.1-337-g4512f8. Best regards, Jörn On Tue, Sep 25, 2012 at 3:32 PM, Bastien b...@gnu.org wrote: Hi Jörn, Jörn Gersdorf model...@modeless.de writes: No problem, I see that it's quite interesting after the @ ;-) since I'm

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-24 Thread modeless
Edward DeMeulle ed at demeulle.org writes: I'm on 7.9.1. I've been pulling from the repository every once in a while. Hi, I'm as well facing the org-fill-paragraph problems in 7.9.1. I'm on the [maint] branch. Kind regards, Jörn

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-24 Thread Bastien
Hi, modeless model...@modeless.de writes: I'm as well facing the org-fill-paragraph problems in 7.9.1. I'm on the [maint] branch. What is the value returned by M-x org-version RET ? -- Bastien

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-18 Thread Bastien
Hi Edward, Edward DeMeulle e...@demeulle.org writes: org-element-map: Symbol's function definition is void: org-element--parse-objects Please let us know what version of Org you are using. Errors in this area have been showing up in some versions, but AFAIK they have been fixed. --

Re: [O] auto-fill non-op, fill-paragraph error

2012-09-18 Thread Edward DeMeulle
I'm on 7.9.1. I've been pulling from the repository every once in a while.

[O] auto-fill non-op, fill-paragraph error

2012-09-17 Thread Edward DeMeulle
The last several weeks or so I've noticed that auto-fill isn't working and when I try to invoke fill-paragraph I receive the following error: org-element-map: Symbol's function definition is void: org-element--parse-objects I've been tied up in the middle of a system migration at work, so I'd