Re: [O] org-mode git, el-get, recently many functions' defintion void

2013-02-24 Thread Maciek Starzyk
Hi Jeff,

Try removing contrib/lisp from the load path in el-get's org-mode recipe.
It resolved the missing org-element-context issue for me.

Cheers,
Maciek

diff --git a/recipes/org-mode.rcp b/recipes/org-mode.rcp
index 32d988e..daf5e41 100644
--- a/recipes/org-mode.rcp
+++ b/recipes/org-mode.rcp
@@ -12,4 +12,4 @@
  (lambda (target)
(list make target (concat EMACS=
(shell-quote-argument el-get-emacs
  '(oldorg))
-   :load-path (. lisp contrib/lisp))
+   :load-path (. lisp))



On Wed, Feb 20, 2013 at 6:38 AM, Jeff Kowalczyk j...@yahoo.com wrote:

 I use emacs-24, org-mode from git, el-get from git. Each morning I update
 org-mode, make clean  make.

 About 2-3 days ago, I noticed the org-export dispatcher wasn't working.
 Then I
 saw increasing functional areas of org returning errors re: function
 definition
 void:

 : org-ctrl-c-ctrl-c: Symbol's function definition is void:
 org-element-context
 : Updating dynamic block `clocktable' at line 100276...
 : org-clocktable-write-default: Symbol's function definition is void:
 org-table-align

 To eliminate possible interactions of recent changes. I've checked out
 org-mode
 from a week ago, and same with el-get. There is no change in the problem.
 I've
 removed el-get .loaddefs.el[c], and allowed them to regenerate.

 Any suggestions on how to debug? It certainly could be el-get and nothing
 to do
 with org-mode.

 Thanks,
 Jeff






-- 
Maciek Starzyk


[O] org-mode git, el-get, recently many functions' defintion void

2013-02-19 Thread Jeff Kowalczyk
I use emacs-24, org-mode from git, el-get from git. Each morning I update
org-mode, make clean  make.

About 2-3 days ago, I noticed the org-export dispatcher wasn't working. Then I
saw increasing functional areas of org returning errors re: function definition
void:

: org-ctrl-c-ctrl-c: Symbol's function definition is void: org-element-context
: Updating dynamic block `clocktable' at line 100276...
: org-clocktable-write-default: Symbol's function definition is void:
org-table-align

To eliminate possible interactions of recent changes. I've checked out org-mode
from a week ago, and same with el-get. There is no change in the problem. I've
removed el-get .loaddefs.el[c], and allowed them to regenerate.

Any suggestions on how to debug? It certainly could be el-get and nothing to do
with org-mode.

Thanks,
Jeff





Re: [O] org-mode git, el-get, recently many functions' defintion void

2013-02-19 Thread Bastien
Hi Jeff,

Jeff Kowalczyk j...@yahoo.com writes:

 Any suggestions on how to debug?

If you install Org from git and do a make clean  make
each day, then the only thing you need to make sure is 
that you setup the load-path correctly, early enough
in your .emacs file.

Do you have something like

  (add-to-list 'load-path ~/install/git/org-mode/lisp/)

?

-- 
 Bastien