Re: [O] Re: Update org-mode

2011-04-05 Thread Ian Barton
On 05/04/11 16:31, Dror Atariah wrote: Let me summarize the steps I carried out eventually, to use the package manager. Note, I am using emacs 23 based editor which was shipped with org-mode 6.33. * Updating Follow the steps: ** Intsall the package manager *** Download the =packages.el= file f

[O] Re: Update org-mode

2011-04-05 Thread Dror Atariah
Let me summarize the steps I carried out eventually, to use the package manager. Note, I am using emacs 23 based editor which was shipped with org-mode 6.33. * Updating Follow the steps: ** Intsall the package manager *** Download the =packages.el= file from http://repo.or.cz/w/emacs.git/blob_pl

[O] Re: Update org-mode

2011-04-03 Thread Jambunathan K
Dror Atariah writes: > It seems like I have to install the package manager. > > I followed the instructions in the org-mode FAQ. Added: > > (setq load-path (cons "~/Library/elisp" load-path)) > (require 'package) > (package-initialize) Add this line at the end of the init file. This ensures that

[O] Re: Update org-mode

2011-04-03 Thread Achim Gratz
Dror Atariah writes: > # Where local lisp files go. > lispdir = $(prefix)/Aquamacs.app/Contents/Resources/lisp I'm going out on a limb here, but you probably should better have: lispdir = $(prefix)/Aquamacs.app/Contents/Resources/site-lisp/org-mode Achim. -- +<[Q+ Matrix-12 WAVE#46+305 Ne

[O] Re: Update org-mode

2011-04-03 Thread Dror Atariah
It seems like I have to install the package manager. I followed the instructions in the org-mode FAQ. Added: (setq load-path (cons "~/Library/elisp" load-path)) (require 'package) (package-initialize) To my .emacs, where packages.el located in ~/Library/elisp. Then, when I restart Aquamacs I ge

[O] Re: Update org-mode

2011-04-03 Thread Jambunathan K
Dror Did you try installing with Package Manager/ELPA? It will be far much simpler that way, I think ... It is primarily designed to help new users of Emacs. You don't need to learn git, tweak Makefiles, load-paths or battle with installing Info manuals. I would recommend ELPA anyday for users

Re: [O] Re: Update org-mode

2011-04-03 Thread Dror Atariah
I have added the following: >>> (setq load-path (cons >>>(expand-file-name "~/Library/elisp") >>>load-path)) >>> (require 'org-install) No change in the way Aquamacs+org-mode behaves. In particular version still shows 6.33x... :(

[O] Re: Update org-mode

2011-04-02 Thread Achim Gratz
Christian Moe writes: > I quickly found that git pulls would overwrite my hand-edited > Makefile, and a hand-edited Makefile caused conflicts on the next > pull, and I didn't understand git at all. You could set up your own local branch to track origin/master and preferrably using rebase instead

Re: [O] Re: Update org-mode

2011-04-01 Thread Nick Dokos
Dror Atariah wrote: > > #+begin_src elisp > > (setq load-path (cons > > (expand-file-name "~/Library/elisp") > > load-path)) > > (require 'org-install) > > #+end_src > > > @Yagnesh: where should I plug this code into? > In your .emacs (or equivalent emacs initia

[O] Re: Update org-mode

2011-04-01 Thread Dror Atariah
> #+begin_src elisp > (setq load-path (cons > (expand-file-name "~/Library/elisp") > load-path)) > (require 'org-install) > #+end_src > @Yagnesh: where should I plug this code into?

[O] Re: Update org-mode

2011-04-01 Thread Yagnesh Raghava Yakkala
hi Dror, Dror Atariah writes: > I tried to follow the update process described here: > http://orgmode.org/worg/org-faq.html under: > How do I keep current with bleeding edge development? > > The only change I made was the place where I checked out the new version. > Instead of ~/elisp I have

Re: [O] Re: Update org-mode

2011-04-01 Thread Bernt Hansen
Nick Dokos writes: > Bernt Hansen wrote: > >> Dror Atariah writes: >> >> > I tried to follow the update process described here: >> > http://orgmode.org/worg/org-faq.html under: >> > How do I keep current with bleeding edge development? >> > >> > The only change I made was the place where I che

Re: [O] Re: Update org-mode

2011-04-01 Thread Nick Dokos
Bernt Hansen wrote: > Dror Atariah writes: > > > I tried to follow the update process described here: > > http://orgmode.org/worg/org-faq.html under: > > How do I keep current with bleeding edge development? > > > > The only change I made was the place where I checked out the new version. > >

[O] Re: Update org-mode

2011-04-01 Thread Bernt Hansen
Dror Atariah writes: > I tried to follow the update process described here: > http://orgmode.org/worg/org-faq.html under: > How do I keep current with bleeding edge development? > > The only change I made was the place where I checked out the new version. > Instead of ~/elisp I have ~/Library/el

[O] Re: Update org-mode

2011-04-01 Thread Jambunathan K
Dror Atariah writes: > I tried to follow the update process described here: > http://orgmode.org/worg/org-faq.html under: > How do I keep current with bleeding edge development? Search for ELPA in FAQ. Maybe that will work well for you ... Jambunathan K.