From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brice Waegeneire Subject: Re: Error after moving from 7.9.4 to 8.0: Cannot open load file org-element Date: Wed, 24 Apr 2013 00:58:42 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([208.118.235.92]:56549) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UUmB0-0002Kb-Tq for emacs-orgmode@gnu.org; Tue, 23 Apr 2013 18:59:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UUmAx-0007uN-WD for emacs-orgmode@gnu.org; Tue, 23 Apr 2013 18:59:06 -0400 Received: from mail-wi0-x235.google.com ([2a00:1450:400c:c05::235]:38212) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UUmAx-0007uI-Q1 for emacs-orgmode@gnu.org; Tue, 23 Apr 2013 18:59:03 -0400 Received: by mail-wi0-f181.google.com with SMTP id c10so1444167wiw.8 for ; Tue, 23 Apr 2013 15:59:02 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hello, I have did the same process with the same type of configuration but with the minimal requirement to install org-mode. Unfortunately I keep stumbling on the same error, when I reload my configuration (after an edit) with org-mode 8.0, which is not the case with org-mode 7.9.4. It looks like org-babel didn't process my org configuration file in a emacs-lisp file. The configuration is here : ;;; init.el ;; ;; This is the first thing to get loaded. ;; (add-to-list 'load-path "~/.emacs.d/el-get/org-mode/contrib/lisp") (add-to-list 'load-path "~/.emacs.d/el-get/org-mode/lisp") (require 'org) (org-babel-load-file "~/.emacs.d/ldk-emacs.org") ;;; init.el ends here ;;; ldk-emacs.el ;; ;; Emacs configuration ;; * el-get ** Auto-install el-get If el-get is not installed it will be in the next start #+begin_src emacs-lisp (add-to-list 'load-path "~/.emacs.d/el-get/el-get") (unless (require 'el-get nil 'noerror) (with-current-buffer (url-retrieve-synchronously "https://raw.github.com/dimitri/el-get/master/el-get-install.el") (goto-char (point-max)) (eval-print-last-sexp))) (setq el-get-dir "~/.emacs.d/el-get") (setq el-get-install-dir "~/.emacs.d/el-get/el-get") #+end_src ** Recipes *** org-mode #+BEGIN_SRC emacs-lisp (add-to-list 'el-get-sources '(:name org-mode :checkout "release_8.0")) #+END_SRC ** Initalized package List of packages which are installed and initialized by el-get. #+begin_src emacs-lisp (setq my-packages '(el-get org-mode )) (el-get 'sync my-packages) #+end_src ;;; ldk-emacs.el ends here Can someone help me with this or orient me to do a better report ? Thanks. 2013/4/21 Brice Waegeneire : > Hello org-mode users, > > In moving from 7.9.4 to 8.0 org-mode I stumbled upon the following > error (emacs --debug-init). The "[...]" is a portion i couldn't copy: > > Debugger entered--Lisp error: (file-error "Cannot open load file" > "org-mode/lisp/org-element") > org-element-at-point() > org-store-link(nil) > org-babel-tangle-single-block(1) > org-babel-tangle-collect-blocks("emacs-lisp" nil) > org-babel-tangle(nil "~/.emacs.d/ldk-emacs.el" "emacs-lisp") > org-babel-tangle-file("~/.emacs.d/ldk-emacs.org" > "~/.emacs.d/ldk-emacs.el" "emacs-lisp") > org-babel-load-file("~/.emacs.d/ldk-emacs.org") > eval-buffer(# nil "/home/lambda/.emacs.d/init.el" nil > t) ; Reading at buffer position 397 > load-with-code-conversion("/home/lambda/.emacs.d/init.el" > "/home/lambda/.emacs.d/init.el" t t) > load("/home/lambda/.emacs.d/init" t t) > #[0 " \205\262 > > [...] > > [init-file-user system-type delayed-warnings-list user-init-file > inhibit-default-init inhibit-startup-screen ms-dos "~" "/_emacs" > windows-nt "/.emacs" directory-files nil "^\\.emacs\\(\\.elc?\\)?$" > "~/.emacs" "^_emacs\\(\\.elc?\\)?$" (initialization "`_emacs' init > file is deprecated, please use `.emacs'") "~/_emacs" t load > expand-file-name "init" file-name-as-directory "/.emacs.d" > file-name-extension "elc" file-name-sans-extension ".el" file-exists-p > file-newer-than-file-p message "Warning: %s is newer than %s" sit-for > 1 "default"] 7 "\n\n(fn)"]() > command-line() > normal-top-level() > > For the upgrade I've deleted the org-mode folder, replaced in my emacs > configuration file "release_7.9.4" by "release_8.0" and then restarted > emacs. el-get had then installed org-mode 8.0, after that I don't have > the issue yet but it occurs after I had modified my emacs' > configurartion (whatever the modification) and restarted it. > > You can find my emacs configuration here : > https://gist.github.com/korthaerd/27877114462e2475f82e#file-emacs-debug-init-8-0 > > Can some help me with that ? > > Coridally, liberdiko.