* Funcition definiion is void: with-eval-after-load
@ 2016-07-20 8:57 claude fuhrer
2016-07-20 10:30 ` Kaushal Modi
0 siblings, 1 reply; 6+ messages in thread
From: claude fuhrer @ 2016-07-20 8:57 UTC (permalink / raw)
To: emacs-orgmode
Hi all
I've just updated my org-mode config (git pull) and now the "make all"
process returns an error.
org-version: 8.3.5 (release_8.3.5-970-g41c0f5)
Loading /home/azubi/bin/local-lisp/org-mode/lisp/org-compat.el (source)...
Symbol's function definition is void: with-eval-after-load
make[1]: *** [org-version.el] Error 255
make[1]: Leaving directory `/home/azubi/bin/local-lisp/org-mode/lisp'
make: *** [all] Error 2
Starting my emacs with --debug-init gives:
Debugger entered--Lisp error: (void-function with-eval-after-load)
(with-eval-after-load (quote org) (org-link-set-parameters
"file+emacs") (org-link-set-parameters "file+sys"))
eval-buffer(#<buffer *load*-53464> nil
"/home/azubi/bin/local-lisp/org-mode/lisp/org-compat.el" nil t) ;
Reading at buffer position 11282
load-with-code-conversion("/home/azubi/bin/local-lisp/org-mode/lisp/org-compat.el"
"/home/azubi/bin/local-lisp/org-mode/lisp/org-compat.el" nil t)
require(org-compat)
eval-buffer(#<buffer *load*-358235> nil
"/home/azubi/bin/local-lisp/org-mode/lisp/ob.el" nil t) ; Reading at
buffer position 978
load-with-code-conversion("/home/azubi/bin/local-lisp/org-mode/lisp/ob.el"
"/home/azubi/bin/local-lisp/org-mode/lisp/ob.el" nil t)
require(ob)
eval-buffer(#<buffer *load*-160043> nil
"/home/azubi/bin/local-lisp/org-config.el" nil t) ; Reading at buffer
position 1497
load-with-code-conversion("/home/azubi/bin/local-lisp/org-config.el"
"/home/azubi/bin/local-lisp/org-config.el" nil nil)
load("/home/azubi/bin/local-lisp/org-config.el" nil nil t)
load-file("/home/azubi/bin/local-lisp/org-config.el")
eval-buffer(#<buffer *load*> nil "/home/azubi/.emacs" nil t) ;
Reading at buffer position 7422
load-with-code-conversion("/home/azubi/.emacs" "/home/azubi/.emacs" t t)
load("~/.emacs" t t)
#[0 "\b\205\262
Can you please help me to identify more precisely what is wrong in my
config ?
Thank you for your help
claude
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Funcition definiion is void: with-eval-after-load
2016-07-20 8:57 Funcition definiion is void: with-eval-after-load claude fuhrer
@ 2016-07-20 10:30 ` Kaushal Modi
2016-07-20 10:48 ` claude fuhrer
2016-07-20 17:46 ` Support for 24.3? WAS: " Charles C. Berry
0 siblings, 2 replies; 6+ messages in thread
From: Kaushal Modi @ 2016-07-20 10:30 UTC (permalink / raw)
To: claude fuhrer, emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 293 bytes --]
Hi Claude,
`with-eval-after-load` macro was introduced in emacs 24.4. Please make sure
that you are running that or a newer emacs version.
On Wed, Jul 20, 2016, 5:29 AM claude fuhrer <claude@fuhrer.ch> wrote:
> Symbol's function definition is void: with-eval-after-load
>
--
Kaushal Modi
[-- Attachment #2: Type: text/html, Size: 649 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Funcition definiion is void: with-eval-after-load
2016-07-20 10:30 ` Kaushal Modi
@ 2016-07-20 10:48 ` claude fuhrer
2016-07-20 13:22 ` Kaushal Modi
2016-07-20 17:46 ` Support for 24.3? WAS: " Charles C. Berry
1 sibling, 1 reply; 6+ messages in thread
From: claude fuhrer @ 2016-07-20 10:48 UTC (permalink / raw)
To: Kaushal Modi, emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 569 bytes --]
Hi Kaushal
On 20/07/16 12:30, Kaushal Modi wrote:
> Hi Claude,
>
> `with-eval-after-load` macro was introduced in emacs 24.4. Please make
> sure that you are running that or a newer emacs version.
Thank you for your advice. My emacs version is 24.3.1 (the standard
version packaged with Linux Mint 17.2).
I will try if I can install emacs25.
Thanks again
claude
>
> On Wed, Jul 20, 2016, 5:29 AM claude fuhrer <claude@fuhrer.ch
> <mailto:claude@fuhrer.ch>> wrote:
>
> Symbol's function definition is void: with-eval-after-load
>
> --
>
> Kaushal Modi
>
[-- Attachment #2: Type: text/html, Size: 1687 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Support for 24.3? WAS: Re: Funcition definiion is void: with-eval-after-load
2016-07-20 10:30 ` Kaushal Modi
2016-07-20 10:48 ` claude fuhrer
@ 2016-07-20 17:46 ` Charles C. Berry
2016-07-20 19:39 ` Nicolas Goaziou
1 sibling, 1 reply; 6+ messages in thread
From: Charles C. Berry @ 2016-07-20 17:46 UTC (permalink / raw)
To: Kaushal Modi; +Cc: claude fuhrer, emacs-orgmode
On Wed, 20 Jul 2016, Kaushal Modi wrote:
> Hi Claude,
>
> `with-eval-after-load` macro was introduced in emacs 24.4. Please make sure
> that you are running that or a newer emacs version.
I thought org-mode was committed to supporting 24.3.
Did this recently change?
(I am just asking --- not complaining. 24.4 has nadavice.el which I might
use in ox-ravel if 24.4 is required for org-mode.)
Chuck
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2016-07-20 19:39 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-20 8:57 Funcition definiion is void: with-eval-after-load claude fuhrer
2016-07-20 10:30 ` Kaushal Modi
2016-07-20 10:48 ` claude fuhrer
2016-07-20 13:22 ` Kaushal Modi
2016-07-20 17:46 ` Support for 24.3? WAS: " Charles C. Berry
2016-07-20 19:39 ` Nicolas Goaziou
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).