From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: New structure GIT repository Date: Fri, 28 Mar 2008 10:30:47 +0100 Message-ID: <2E0572CF-0BA7-49F9-8F71-17017D9CD1F3@science.uva.nl> Mime-Version: 1.0 (Apple Message framework v919.2) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JfAvM-0005jj-99 for emacs-orgmode@gnu.org; Fri, 28 Mar 2008 05:31:00 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JfAvH-0005j3-DU for emacs-orgmode@gnu.org; Fri, 28 Mar 2008 05:30:58 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JfAvG-0005il-Oh for emacs-orgmode@gnu.org; Fri, 28 Mar 2008 05:30:54 -0400 Received: from fg-out-1718.google.com ([72.14.220.158]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JfAvG-0005VH-1L for emacs-orgmode@gnu.org; Fri, 28 Mar 2008 05:30:54 -0400 Received: by fg-out-1718.google.com with SMTP id d23so214188fga.30 for ; Fri, 28 Mar 2008 02:30:52 -0700 (PDT) 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: emacs-orgmode Mailinglist Hi, I have just pushed a major change into the GIT repository. I would appreciate very much if as many people as possible quickly switch to the new setup, so that we can find any remaining hick-ups. Here is what has changed: - Org-mode is now a collection of 19 Lisp files. - These Lisp files are located in a new directory "lisp". - The documentation files have been moved to the new "doc" subdirectory. If you are running Org-mode from the GIT repository, here are the mandatory changes you need to make after the next pull: - Run make to compile all the lisp files. If you do not want to work with compiled files, run at the very least "make autoloads" to create the file org-install.el with the autoload definitions. - Change the setup for load-path in .emacs. Previously you were told to point it to the GIT repository main directory, now you need to point it to the "lisp" subdirectory. - Use (require 'org-install) in .emacs, which is the correct way to install the Org package. When this file has been loaded, you are in the same state as an Emacs that comes with Org-mode pre-installed. org.el and all the other files will now be loaded on demand, when they are actually needed. Using (require 'org) instead may also work, but I am not entirely sure. I have tried to make it work because, for example, the Org- mode tutorial still lists this as the method to load the package. ONLY IF YOU ARE USING THE INFO DOCUMENTATION: The info file "org" will now be locate in the "doc" subdirectory, so you may need to change your info setup to make sure it finds the file. Also the "dir" file which contains the info directory entry for Org is now in that directory. - Carsten