* noob-installation
@ 2007-01-15 12:11 Sergio Dominguez
2007-01-15 14:14 ` DSPAM noob-installation Bastien
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Sergio Dominguez @ 2007-01-15 12:11 UTC (permalink / raw)
To: emacs-orgmode
Hi all, I'm new to the list and to emacs-org mode, really looking forward to geting into it, since it looks quite interesting.
However, I do not get to make it start, I have followed all the steps in the manual and keep on getting:
symbol's value as variable is void: 'org-install.
I have emacs 21.3.1 and the latest org.mode that I downloaded from the site just today.
Any help would be appreciated!
Sergio
--
Don't go to bed with no price on your head.
-- Baretta
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: DSPAM noob-installation
2007-01-15 12:11 noob-installation Sergio Dominguez
@ 2007-01-15 14:14 ` Bastien
2007-01-15 16:07 ` Sergio Dominguez
[not found] ` <b71b18520701150753i14af5203nba2ae7c87f434e3a@mail.gmail.com>
2007-01-15 16:30 ` noob-installation Carsten Dominik
2 siblings, 1 reply; 6+ messages in thread
From: Bastien @ 2007-01-15 14:14 UTC (permalink / raw)
To: emacs-orgmode
Sergio Dominguez <sergio@skynet.ie> writes:
> However, I do not get to make it start, I have followed all the steps
> in the manual and keep on getting:
>
> Symbol's value as variable is void: 'org-install.
1. Make sure you add the directory containing org to the load-path.
For example, my org directory is "~/elisp/testing/org/", so the
load-path is :
(add-to-list 'load-path "~/elisp/testing/org/")
2. Make sure Org-Mode is called when finding any .org file:
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
3. Then require the org-install library:
(require 'org-install)
Hope this helps,
--
Bastien
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: DSPAM noob-installation
2007-01-15 14:14 ` DSPAM noob-installation Bastien
@ 2007-01-15 16:07 ` Sergio Dominguez
0 siblings, 0 replies; 6+ messages in thread
From: Sergio Dominguez @ 2007-01-15 16:07 UTC (permalink / raw)
To: emacs-orgmode
Bastien,
Thanks for your reply,
I have all that.
1) org.el + org.elc are copied to
/usr/share/emacs/site-lisp, which is where all the other .el files are.
2) got it
3) Got it.
yet I get an error when loading emacs.
thanks,
Sergio
El 15 de Jan de 2007, sobre las 03:14, Bastien escribia...
> Sergio Dominguez <sergio@skynet.ie> writes:
>
> > However, I do not get to make it start, I have followed all the steps
> > in the manual and keep on getting:
> >
> > Symbol's value as variable is void: 'org-install.
>
> 1. Make sure you add the directory containing org to the load-path.
> For example, my org directory is "~/elisp/testing/org/", so the
> load-path is :
>
> (add-to-list 'load-path "~/elisp/testing/org/")
>
> 2. Make sure Org-Mode is called when finding any .org file:
>
> (add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
>
> 3. Then require the org-install library:
>
> (require 'org-install)
>
> Hope this helps,
>
> --
> Bastien
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
--
I just remembered something about a TOAD!
^ permalink raw reply [flat|nested] 6+ messages in thread
[parent not found: <b71b18520701150753i14af5203nba2ae7c87f434e3a@mail.gmail.com>]
* Re: noob-installation
2007-01-15 12:11 noob-installation Sergio Dominguez
2007-01-15 14:14 ` DSPAM noob-installation Bastien
[not found] ` <b71b18520701150753i14af5203nba2ae7c87f434e3a@mail.gmail.com>
@ 2007-01-15 16:30 ` Carsten Dominik
2007-01-15 16:58 ` noob-installation Sergio Dominguez
2 siblings, 1 reply; 6+ messages in thread
From: Carsten Dominik @ 2007-01-15 16:30 UTC (permalink / raw)
To: Sergio Dominguez; +Cc: emacs-orgmode
This probably happens because you used copy and paste to copy
the installation code from the *pdf* file. For some stupid reason,
the single quote in such a copy operation is not the correct ASCII
quote, but some non-ascii character. Delete all those single quotes,
and type them in by hand.
- Carsten
On Jan 15, 2007, at 13:11, Sergio Dominguez wrote:
> Hi all, I'm new to the list and to emacs-org mode, really looking
> forward to geting into it, since it looks quite interesting.
>
> However, I do not get to make it start, I have followed all the steps
> in the manual and keep on getting:
>
> symbol's value as variable is void: 'org-install.
>
> I have emacs 21.3.1 and the latest org.mode that I downloaded from the
> site just today.
>
> Any help would be appreciated!
>
> Sergio
> --
> Don't go to bed with no price on your head.
> -- Baretta
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>
--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: noob-installation
2007-01-15 16:30 ` noob-installation Carsten Dominik
@ 2007-01-15 16:58 ` Sergio Dominguez
0 siblings, 0 replies; 6+ messages in thread
From: Sergio Dominguez @ 2007-01-15 16:58 UTC (permalink / raw)
To: Carsten Dominik
Carsten,
Spot on. That is exactly what I did, could have never imagined it wouldn't be the right ASCII character. Now it is working.
Sergio
El 15 de Jan de 2007, sobre las 05:30, Carsten Dominik escribia...
> This probably happens because you used copy and paste to copy
> the installation code from the *pdf* file. For some stupid reason,
> the single quote in such a copy operation is not the correct ASCII
> quote, but some non-ascii character. Delete all those single quotes,
> and type them in by hand.
>
> - Carsten
>
> On Jan 15, 2007, at 13:11, Sergio Dominguez wrote:
>
> >Hi all, I'm new to the list and to emacs-org mode, really looking
> >forward to geting into it, since it looks quite interesting.
> >
> >However, I do not get to make it start, I have followed all the steps
> >in the manual and keep on getting:
> >
> >symbol's value as variable is void: 'org-install.
> >
> >I have emacs 21.3.1 and the latest org.mode that I downloaded from the
> >site just today.
> >
> >Any help would be appreciated!
> >
> >Sergio
> >--
> >Don't go to bed with no price on your head.
> > -- Baretta
> >
> >
> >_______________________________________________
> >Emacs-orgmode mailing list
> >Emacs-orgmode@gnu.org
> >http://lists.gnu.org/mailman/listinfo/emacs-orgmode
> >
> >
>
> --
> Carsten Dominik
> Sterrenkundig Instituut "Anton Pannekoek"
> Universiteit van Amsterdam
> Kruislaan 403
> NL-1098SJ Amsterdam
> phone: +31 20 525 7477
--
Put your trust in those who are worthy.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2007-01-16 8:55 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-15 12:11 noob-installation Sergio Dominguez
2007-01-15 14:14 ` DSPAM noob-installation Bastien
2007-01-15 16:07 ` Sergio Dominguez
[not found] ` <b71b18520701150753i14af5203nba2ae7c87f434e3a@mail.gmail.com>
[not found] ` <20070115160302.GA12588@skynet.ie>
2007-01-15 16:23 ` noob-installation Eddward DeVilla
2007-01-15 16:30 ` noob-installation Carsten Dominik
2007-01-15 16:58 ` noob-installation Sergio Dominguez
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.