From mboxrd@z Thu Jan 1 00:00:00 1970 From: Graham Smith Subject: .emacs works on Mac but not on Ubuntu Date: Tue, 16 Jun 2009 20:57:44 +0100 Message-ID: <2c75873c0906161257v9f2ad99pa80364ebb0febb50@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MGen4-0005nA-Sz for emacs-orgmode@gnu.org; Tue, 16 Jun 2009 15:57:54 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MGemz-0005mf-Fl for emacs-orgmode@gnu.org; Tue, 16 Jun 2009 15:57:53 -0400 Received: from [199.232.76.173] (port=44411 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MGemz-0005mc-AK for emacs-orgmode@gnu.org; Tue, 16 Jun 2009 15:57:49 -0400 Received: from mx20.gnu.org ([199.232.41.8]:53605) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MGemy-0000ok-QJ for emacs-orgmode@gnu.org; Tue, 16 Jun 2009 15:57:48 -0400 Received: from mail-bw0-f226.google.com ([209.85.218.226]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MGemx-0003HK-Dw for emacs-orgmode@gnu.org; Tue, 16 Jun 2009 15:57:47 -0400 Received: by bwz26 with SMTP id 26so35387bwz.42 for ; Tue, 16 Jun 2009 12:57:45 -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@gnu.org I have gone back to using Ubuntu and in the past I used to copy any updates of the .emacs file from Ubuntu to the Mac. So I expected to be able to copy the .emacs from the Mac to the newly installed Ubuntu. But it isn't loading the current version of Org-mode, I am getting 4.67 where I should be getting 6.xx. The EmacsAddins folder has been copied from my Mac home directory into my Ubuntu home directory. Has anyone any idea where the errors might be. Many thanks, Graham The lines in my emacs are (setq load-path (cons "~/EmacsAddins/OrgMode/lisp" load-path)) (setq load-path (cons "~/EmacsAddins/OrgMode/contrib/lisp" load-path)) (setq org-hide-leading-stars t) (require 'org-install) (require 'org-mouse) (load "org-R") ;; The following lines are always needed. Choose your own keys. (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode)) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-ca" 'org-agenda) (global-set-key "\C-cb" 'org-iswitchb) (global-font-lock-mode 1) ; for all buffers ;;(add-hook 'org-mode-hook 'turn-on-font-lock) ; Org buffers only ;;;;;Basic Remember;;;;;; (add-to-list 'load-path "~/EmacsAddins/remember") ;;;;;;Remember plus Org-Mode;;;;;;; (org-remember-insinuate)