From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: "Which function for creating the link? Date: Thu, 02 Mar 2017 13:12:51 -0500 Message-ID: <87innrsg2k.fsf@alphaville.usersys.redhat.com> References: <97aef9c09931431a8f71427e73567741@HE1PR01MB1898.eurprd01.prod.exchangelabs.com> <87tw7bkh1f.fsf@ucl.ac.uk> <8737evx1uw.fsf@mat.ucm.es> <87y3wnsm5i.fsf@alphaville.usersys.redhat.com> <87y3wnhd62.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50690) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cjXqU-00051B-In for emacs-orgmode@gnu.org; Thu, 02 Mar 2017 16:01:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cjXqT-0003wE-7W for emacs-orgmode@gnu.org; Thu, 02 Mar 2017 16:01:06 -0500 Received: from [195.159.176.226] (port=56021 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cjXqT-0003vY-2B for emacs-orgmode@gnu.org; Thu, 02 Mar 2017 16:01:05 -0500 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1cjVDh-0004rL-BK for emacs-orgmode@gnu.org; Thu, 02 Mar 2017 19:12:53 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org Uwe Brauer writes: > > Try > > > emacs -q -l /path/to/minimal.el > > I am not sure what minimal.el is supposed to be, but > emacs -q I might try. > It may be a no-op or it may be a few lines of code, depending on how you get your org-mode. For me, building from latest master every so often, it's basically this: --8<---------------cut here---------------start------------->8--- (add-to-list 'load-path "~/src/emacs/org/org-mode/lisp") (require 'org-loaddefs) ;; not sure why I require org separately, but I guess I needed it ;; at some point - I should try without it. (require 'org) (add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode)) (global-set-key "\C-cl" 'org-store-link) (global-set-key "\C-cc" 'org-capture) (global-set-key "\C-ca" 'org-agenda) --8<---------------cut here---------------end--------------->8--- > > I don't know why you are seeing it now, but I don't think anything > > has changed in the mairix space for years. > > Yes but there is a change proposed by John Kitchin which makes my suspicious > > https://lists.gnu.org/archive/html/emacs-orgmode/2016-07/msg00047.html > I believe this was merged indeed and it may be that org-mairix.el was not updated to follow the new convention: that may be the cause of the problem, but avoiding the load of org-mairix should resolve it in any case. -- Nick