-
Notifications
You must be signed in to change notification settings - Fork 272
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error running timer ‘org-indent-initialize-agent’: (void-function org-time-add) #129
Comments
This is just an option. I don't understand why it caused this issue. Can you provide detailed backtrace? |
Debugger entered--Lisp error: (void-function org-time-add)
org-time-add(nil (0 0 400000))
org-indent-add-properties(#<marker at 1 in 1118.org> 4 (0 0 400000))
org-indent-initialize-buffer(#<buffer 1118.org> (0 0 400000))
org-indent-initialize-agent()
apply(org-indent-initialize-agent nil)
timer-event-handler([t 0 0 200000 t org-indent-initialize-agent nil idle 0]) where 1118.org is just empty. |
Please check and provide the information below.
|
Warning (server): Unable to start the Emacs server.
There is an existing Emacs server, named "server".
To start the server in this Emacs process, stop the existing
server or call ‘M-x server-force-delete’ to forcibly disconnect it. message:
|
I believe this issue is caused by your personal configurations below. (require 'ox-beamer)
(require 'ox-publish)
(org-babel-do-load-languages
'org-babel-load-languages
'(
(R . t)
(dot . t)
(ruby . t)
(ditaa . t)
(python . t)
(octave . t)
(sqlite . t)
(perl . t)
(C . t)
)) You should put the snippet in |
Thanks for your kindness, it works. |
I had the same issue, but the solution above did not solve my problem. For those who want try, I added |
Your problem is probably the same as mine: you have both the builtin version of org-mode and a more recent one. The problem comes from the fact that parts of both versions are loaded together. Using The correct solution (found here: https://emacs.stackexchange.com/questions/55324/how-to-install-latest-version-of-org-mode/63909#63909) is to load the latest version first and only:
In my case, |
Thanks, mate! |
Something wrong with
.emacs.d/lisp/init-org.el
Line 141 in e2bdca7
The text was updated successfully, but these errors were encountered: