From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Alan Schmitt Newsgroups: gmane.emacs.help Subject: Re: Emacs Package Loading & .emacs ?? Date: Tue, 01 Apr 2014 13:49:21 +0200 Message-ID: References: <86bnwnkm5d.fsf@gmail.com> <87ha6e9thf.fsf@motoko.kusanagi> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1396353280 28535 80.91.229.3 (1 Apr 2014 11:54:40 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 1 Apr 2014 11:54:40 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: W. Greenhouse Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Apr 01 13:54:36 2014 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WUxGy-0006JZ-39 for geh-help-gnu-emacs@m.gmane.org; Tue, 01 Apr 2014 13:54:32 +0200 Original-Received: from localhost ([::1]:59735 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WUxGx-0006gV-OO for geh-help-gnu-emacs@m.gmane.org; Tue, 01 Apr 2014 07:54:31 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:36917) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WUxGb-0006a4-OZ for help-gnu-emacs@gnu.org; Tue, 01 Apr 2014 07:54:15 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WUxGU-0007RP-6v for help-gnu-emacs@gnu.org; Tue, 01 Apr 2014 07:54:09 -0400 Original-Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:30513) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WUxGT-0007Qq-Up for help-gnu-emacs@gnu.org; Tue, 01 Apr 2014 07:54:02 -0400 X-IronPort-AV: E=Sophos;i="4.97,772,1389740400"; d="scan'208";a="65808538" Original-Received: from top-wifi.irisa.fr (HELO top-wifi) ([131.254.66.192]) by mail2-relais-roc.national.inria.fr with ESMTP/TLS/AES128-SHA; 01 Apr 2014 13:53:59 +0200 In-Reply-To: <87ha6e9thf.fsf@motoko.kusanagi> (W. Greenhouse's message of "Mon, 31 Mar 2014 17:18:52 +0000") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (darwin) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 192.134.164.83 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:96903 Archived-At: W. Greenhouse writes: > 2. The correct form would be (require 'org-install) anyway, if you were > manually loading org. I'm surprised by this. Looking at the org-install.el file in my local installation, I see this: #+begin_src emacs-lisp ;;; org-install.el --- backward compatibility file for obsolete configuration ;; ;;; Code: ;; ;; The file org-install is obsolete. ;; ;; It is provided here so that (require 'org-install) does not ;; trigger an error for users with obsolete Emacs configuration. ;; You can safely remove (require 'org-install) from your config." (provide 'org-install) ;; Local Variables: ;; no-byte-compile: t ;; coding: utf-8 ;; End: ;;; org-install.el ends here #+end_src Alan