[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] From latest maint/master, no need to (require 'org-install)
From: |
Rainer M Krug |
Subject: |
Re: [O] From latest maint/master, no need to (require 'org-install) |
Date: |
Fri, 05 Oct 2012 09:59:01 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux i686; rv:16.0) Gecko/20120928 Thunderbird/16.0 |
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 03/10/12 11:25, Bastien wrote:
> Hi all again,
>
> Bastien <address@hidden> writes:
>
>> there is no need to (require 'org-install) anymore from the maint and master
>> branches.
>
> ... and you should actually remove (require 'org-install) from your
> configuration, since this
> file is not automatically created anymore.
OK - now I am getting slightly confused again.
Could you please give some example configuration code? For example, in
my case, I am using org mode from git, I am using the script posted
above in the thread to update org-mode git:
#!/bin/sh
cd ~/.emacs.d/org-mode-git/org-mode
git checkout master
git fetch --tags origin
# git clone git://repo.or.cz/org-mode.git
git pull
git gc
git checkout master
make clean
make
make autoloads
make doc
make info
# make install
in my .emacs.d/init.el I have:
;; Load up Org Mode and Org Babel for elisp embedded in Org Mode files
(add-to-list 'load-path "~/.emacs.d/org-mode/lisp")
(add-to-list 'load-path "~/.emacs.d/org-mode/contrib/lisp")
;; load up Org-mode and Org-babel
(require 'org-install)
;; load up the main file
(org-babel-load-file "~/.emacs.d/emacs.org")
And i my emacs.org, I have at the beginning:
* ELPA settings
#+begin_src emacs-lisp
;; set package-load-list -- default is all
(setq package-archives '(
("ELPA" . "http://tromey.com/elpa/";)
("gnu" . "http://elpa.gnu.org/packages/";)
("suco" .
"http://joseito.republika.pl/sunrise-commander/";)
("marmalade" . "http://marmalade-repo.org/packages/";)
)
)
(package-initialize)
#+end_src
Later on, I have some customizations.
So do I have to change something?
What should I do with the (require 'org-install)?
Rainer
>
> Thanks,
>
From: address@hidden (Rainer M. Krug)
Date: Fri, 05 Oct 2012 09:57:30 +0200
Message-ID: <address@hidden>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://www.enigmail.net/
iEYEARECAAYFAlBuk0UACgkQoYgNqgF2egrCrQCdEAZA42TLb4Xs48fIkairYgxO
IEYAnA74GEV64O3TkVIwsCWP0UuVKpZa
=etPk
-----END PGP SIGNATURE-----
- Re: [O] From latest maint/master, no need to (require 'org-install), (continued)
- Re: [O] From latest maint/master, no need to (require 'org-install), Nick Dokos, 2012/10/07
- Re: [O] From latest maint/master, no need to (require 'org-install), Achim Gratz, 2012/10/07
- Re: [O] From latest maint/master, no need to (require 'org-install), Eric S Fraga, 2012/10/07
- Re: [O] From latest maint/master, no need to (require 'org-install), Sebastien Vauban, 2012/10/09
- Re: [O] From latest maint/master, no need to (require 'org-install), Sebastien Vauban, 2012/10/09
- Re: [O] From latest maint/master, no need to (require 'org-install), Achim Gratz, 2012/10/09
- Re: [O] From latest maint/master, no need to (require 'org-install), Michael Brand, 2012/10/09
- Re: [O] From latest maint/master, no need to (require 'org-install), Bastien, 2012/10/27
- Re: [O] From latest maint/master, no need to (require 'org-install), Sebastien Vauban, 2012/10/09
- Re: [O] From latest maint/master, no need to (require 'org-install), Bastien, 2012/10/27
- Re: [O] From latest maint/master, no need to (require 'org-install),
Rainer M Krug <=