From mboxrd@z Thu Jan 1 00:00:00 1970 From: andrea Subject: autoloading stuff Date: Sun, 27 Dec 2009 21:50:12 +0100 Message-ID: Reply-To: andrea.crotti.0@gmail.com 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 1NP04c-0002CV-WD for emacs-orgmode@gnu.org; Sun, 27 Dec 2009 15:50:47 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NP04X-0002Bp-7e for emacs-orgmode@gnu.org; Sun, 27 Dec 2009 15:50:45 -0500 Received: from [199.232.76.173] (port=45429 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NP04X-0002Bm-4l for emacs-orgmode@gnu.org; Sun, 27 Dec 2009 15:50:41 -0500 Received: from lo.gmane.org ([80.91.229.12]:50981) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NP04W-0005L6-Mm for emacs-orgmode@gnu.org; Sun, 27 Dec 2009 15:50:40 -0500 Received: from list by lo.gmane.org with local (Exim 4.50) id 1NP04S-0007rg-7l for emacs-orgmode@gnu.org; Sun, 27 Dec 2009 21:50:36 +0100 Received: from host63-85-static.24-87-b.business.telecomitalia.it ([87.24.85.63]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 27 Dec 2009 21:50:36 +0100 Received: from andrea.crotti.0 by host63-85-static.24-87-b.business.telecomitalia.it with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 27 Dec 2009 21:50:36 +0100 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@gnu.org If I don't remember wrong in the guide everything was supposed to be "required". Now is there a way to eliminate all the requires? I have all those requires, and the problems is that also babel loads the entire programming mode even if I don't need it. --8<---------------cut here---------------start------------->8--- (require 'org) (require 'reftex) (require 'org-extension) (require 'remember) (require 'org-remember) (require 'org-annotate-file) (require 'org-babel-init) (require 'org-babel-dot) ;; dot (require 'org-babel-gnuplot) ;; gnuplot, and gnuplot-mode (require 'org-babel-haskell) ;; haskell, haskell-mode, inf-haskell (require 'org-babel-ocaml) ;; ocaml, and tuareg-mode (require 'org-babel-python) ;; python, and python-mode (require 'org-babel-ditaa) (require 'org-babel-ruby) ;; ruby, irb, ruby-mode, and inf-ruby (require 'org-babel-sql) ;; none (require 'org-babel-sh) (require 'orgtbl-sqlinsert) --8<---------------cut here---------------end--------------->8---