From mboxrd@z Thu Jan 1 00:00:00 1970 From: Daniel Clemente Subject: Re: Command key problem in agenda view Date: Fri, 16 Jan 2009 14:26:25 +0100 Message-ID: <87eiz39ybi.fsf@CPU107.opentrends.net> References: <10514.83.109.5.94.1232054603.squirrel@webmailsunny.oslo.dnmi.no> <87wscvekby.fsf@CPU107.opentrends.net> <497075DB.1020603@met.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LNoiY-0002FD-OU for emacs-orgmode@gnu.org; Fri, 16 Jan 2009 08:26:34 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LNoiW-0002Ds-So for emacs-orgmode@gnu.org; Fri, 16 Jan 2009 08:26:34 -0500 Received: from [199.232.76.173] (port=54543 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LNoiW-0002Dd-Fz for emacs-orgmode@gnu.org; Fri, 16 Jan 2009 08:26:32 -0500 Received: from fg-out-1718.google.com ([72.14.220.159]:10438) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LNoiW-0000Se-5H for emacs-orgmode@gnu.org; Fri, 16 Jan 2009 08:26:32 -0500 Received: by fg-out-1718.google.com with SMTP id l26so821918fgb.30 for ; Fri, 16 Jan 2009 05:26:31 -0800 (PST) In-Reply-To: <497075DB.1020603@met.no> (Bruce Hackett's message of "Fri, 16 Jan 2009 11:56:11 +0000") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Bruce Hackett Cc: emacs-orgmode@gnu.org > However, there is another small issue here: Isn't there a better way to locally > install an updated version of an emacs package that comes with a centrally > managed OS? In my case, there is an enterprise-wide installation of emacs that I > cannot change - I had to ask a system administrator to make the filename change > for me. Well, yes; many people do that. You just install your files in a local directory (I use ~/.emacs.d/, for instance ~/.emacs.d/org-6.17c) and ask Emacs to use it; in your .emacs.el: (add-to-list 'load-path "~/.emacs.d/org-6.17c/lisp") (require 'org-install) Automatically, Emacs loads the one you specified instead of the global one. I think it is because add-to-list adds elements at the beginning of the list, therefore with more priority. Check: C-h v load-path RET I never had the problem of a global file overwriting my settings; Emacs behaves very well with that. -- Daniel