From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Eddward DeVilla" Subject: Re: Upgrading org-mode--Windows Date: Tue, 23 Oct 2007 10:02:23 -0500 Message-ID: References: <471D5BB6.8050408@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IkLH3-0001EN-O6 for emacs-orgmode@gnu.org; Tue, 23 Oct 2007 11:02:29 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IkLH1-0001Bx-TH for emacs-orgmode@gnu.org; Tue, 23 Oct 2007 11:02:29 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IkLH1-0001BC-Ck for emacs-orgmode@gnu.org; Tue, 23 Oct 2007 11:02:27 -0400 Received: from mu-out-0910.google.com ([209.85.134.190]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IkLH0-000242-IW for emacs-orgmode@gnu.org; Tue, 23 Oct 2007 11:02:26 -0400 Received: by mu-out-0910.google.com with SMTP id g7so2006585muf for ; Tue, 23 Oct 2007 08:02:24 -0700 (PDT) In-Reply-To: <471D5BB6.8050408@gmail.com> Content-Disposition: inline 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: dixius99@gmail.com Cc: emacs-orgmode@gnu.org You will need to install your own copy. I'm not sure the way I do it is the best, but it's easy. First you will need to download the latest org-mode and unpack it in some temp directory. Next you will have to determine when you want you're copy to go. On windows, I run emacs under cygwin, and I put a .emacs_packages directory in my home directory where I put my addons. You can use any directory so pick something that works for how you organize things. Once you have you directory, copy all the .el files from the unpacked org archive into it. This will probably be org-install.el, org-mouse.el, org-publish.el & org.el. Now you need to tell emacs to load files from you directory. I have the following in my .emacs. Modify as needed. ;; set up my own package directory (setq load-path (append (list nil "~/.emacs_packages") load-path)) The rest of what I have may not be needed by you. (add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) (define-key global-map "\C-cl" 'org-store-link) (define-key global-map "\C-ca" 'org-agenda) (add-hook 'org-mode-hook 'turn-on-font-lock) ; org-mode buffers only (require 'org-install) After this is in place you can start emacs, open on org-buffer and do M-x org-version to verify what you are running. I just noticed that I append to the load-path. You may need to put you directory on the front of the list. Edd On 10/22/07, Michael Dixon wrote: > I apologize in advance if this question is off-topic/inappropriate, but > the version of org-mode packaged with emacs 22.1 for Windows is 4.67, > while the latest current version is 5.13. I can't seem to figure out how > to update the org-mode package in Windows. Any help? > > > _______________________________________________ > Emacs-orgmode mailing list > Remember: use `Reply All' to send replies to the list. > Emacs-orgmode@gnu.org > http://lists.gnu.org/mailman/listinfo/emacs-orgmode >