Emacs - marmalade package install and .emacs file entries

2011-06-06 Thread Bhinderwala, Shoeb
I am new to emacs and not sure how to automatically get the right entries created in .emacs file after I install packages from marmalade. Once I install a package using marmalade (e.g. clojure-mode-1.9.2) I have to manually edit my .emacs file to add a load-path and require entry: Example entry

Re: Emacs - marmalade package install and .emacs file entries

2011-06-06 Thread Phil Hagelberg
On Jun 6, 8:39 am, Bhinderwala, Shoeb sabhinderw...@wellington.com wrote:   (add-to-list 'load-path ~/.emacs.d/elpa/clojure-mode-1.9.2/)   (require 'clojure-mode) If I don't add the above entry clojure mode does not work. It sounds like this is a bug in package.el; this should all be handled

RE: Emacs - marmalade package install and .emacs file entries

2011-06-06 Thread Bhinderwala, Shoeb
@googlegroups.com [mailto:clojure@googlegroups.com] On Behalf Of Phil Hagelberg Sent: Monday, June 06, 2011 4:40 PM To: Clojure Subject: Re: Emacs - marmalade package install and .emacs file entries On Jun 6, 8:39 am, Bhinderwala, Shoeb sabhinderw...@wellington.com wrote:   (add-to-list 'load-path ~/.emacs.d

Re: Emacs - marmalade package install and .emacs file entries

2011-06-06 Thread David
I'm using GNU Emacs 23.3.1 (i386-mingw-nt6.1.7600) of 2011-03-10 on 3249CTO Here's the relevant section of my init.el (load package) (add-to-list 'package-archives '(marmalade . http://marmalade- repo.org/packages/)) (package-initialize) I've got to load package explicitly to prevent a warning

RE: Emacs - marmalade package install and .emacs file entries

2011-06-06 Thread Bhinderwala, Shoeb
, Shoeb Sent: Monday, June 06, 2011 5:42 PM To: clojure@googlegroups.com Subject: RE: Emacs - marmalade package install and .emacs file entries Hi Phil - I am on Windows XP with Emacs version 23.3 Don't know what is meant by install of package.el. I simply followed instructions at: http