* Still prob the I cannot solve....
@ 2022-10-28 17:02 Renato Pontefice
2022-10-28 18:04 ` Bruno Barbier
2022-10-29 14:16 ` Bruno Barbier
0 siblings, 2 replies; 3+ messages in thread
From: Renato Pontefice @ 2022-10-28 17:02 UTC (permalink / raw)
To: emacs-orgmode
When I start emacs, now I receive this messages:
------------------------------------
Warning (initialization): An error occurred while loading ‘/Users/renatopontefice/.emacs.d/init.el’:
Symbol's value as variable is void: Enable
To ensure normal operation, you should investigate and remove the
cause of the error in your initialization file. Start Emacs with
the ‘--debug-init’ option to view a complete error backtrace. Disable showing Disable logging
——————————————————
So, now I’m sure about what what file are executed. But unsure what could be the prob!
I’ve started it with the digested option (—debug-init) and I’ve received that messages…
Debugger entered--Lisp error: (void-variable Enable)
eval-buffer(#<buffer *load*> nil "/Users/renatopontefice/.emacs.d/init.el" nil t) ; Reading at buffer position 972
load-with-code-conversion("/Users/renatopontefice/.emacs.d/init.el" "/Users/renatopontefice/.emacs.d/init.el" t t)
load("/Users/renatopontefice/.emacs.d/init" noerror nomessage)
startup--load-user-init-file(#f(compiled-function () #<bytecode -0x148fea9201ab75f>) #f(compiled-function () #<bytecode -0x1f3c686ddc0d6275>) t)
command-line()
What does they means?
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Still prob the I cannot solve....
2022-10-28 17:02 Still prob the I cannot solve Renato Pontefice
@ 2022-10-28 18:04 ` Bruno Barbier
2022-10-29 14:16 ` Bruno Barbier
1 sibling, 0 replies; 3+ messages in thread
From: Bruno Barbier @ 2022-10-28 18:04 UTC (permalink / raw)
To: Renato Pontefice, emacs-orgmode
Renato Pontefice <renato.pontefice@gmail.com> writes:
>
> So, now I’m sure about what what file are executed. But unsure what could be the prob!
..
> What does they means?
Like Ihor told you in your other thread, you have a mistake in your
init.el.
Maybe somebody could help you if you show us your init.el.
The problem is at the position 972 (char position).
Brunp
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Still prob the I cannot solve....
2022-10-28 17:02 Still prob the I cannot solve Renato Pontefice
2022-10-28 18:04 ` Bruno Barbier
@ 2022-10-29 14:16 ` Bruno Barbier
1 sibling, 0 replies; 3+ messages in thread
From: Bruno Barbier @ 2022-10-29 14:16 UTC (permalink / raw)
To: Renato Pontefice, emacs-orgmode
Hi Renato,
You'll have more chance to get help if you reply to the list, using the
same thread.
Renato Pontefice <renato.pontefice@gmail.com> writes:
> When I start emacs, now I receive this messages:
> ------------------------------------
> Warning (initialization): An error occurred while loading ‘/Users/renatopontefice/.emacs.d/init.el’:
>
> Symbol's value as variable is void: Enable
This is the problem Emacs is telling you about:
;;;;;;Org mode configuration
Enable Org mode
(require 'org)
it should be:
;;;;;;Org mode configuration
;; Enable Org mode
(require 'org)
Did you fix that problem?
> Debugger entered--Lisp error: (void-variable Enable)
> eval-buffer(#<buffer *load*> nil
> "/Users/renatopontefice/.emacs.d/init.el" nil t) ; Reading at
> buffer position 972
^^^^^^^^^^^^
About moving to the position 972, you'll find the answer in the Emacs
manual. For example:
https://www.gnu.org/software/emacs/manual/html_node/emacs/Moving-Point.html
Did you try what I told you to do ?
M-g c 972
If the fixed init.el, that I've sent you, didnt work, you might consider
posting it here so that other people may help.
Hope this help,
Bruno
> load-with-code-conversion("/Users/renatopontefice/.emacs.d/init.el" "/Users/renatopontefice/.emacs.d/init.el" t t)
> load("/Users/renatopontefice/.emacs.d/init" noerror nomessage)
> startup--load-user-init-file(#f(compiled-function () #<bytecode -0x148fea9201ab75f>) #f(compiled-function () #<bytecode -0x1f3c686ddc0d6275>) t)
> command-line()
>
>
> What does they means?
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-10-29 14:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-28 17:02 Still prob the I cannot solve Renato Pontefice
2022-10-28 18:04 ` Bruno Barbier
2022-10-29 14:16 ` Bruno Barbier
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).