From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: =?UTF-8?B?UmU6IFtCVUddIGBvcmctbG9hZC1ub2Vycm9yLW11c3RzdWZmaXg=?= =?UTF-8?B?wrQgaXMgbm90IGRlZmluZWQsIGludHJvZHVjZWQgYnkgNTQ4NGEzM2I=?= Date: Thu, 10 Jan 2013 17:29:46 +0100 Message-ID: <877gnlknlx.fsf@bzg.ath.cx> References: <87a9sh3tsp.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:47889) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtL0p-0002hj-Rq for emacs-orgmode@gnu.org; Thu, 10 Jan 2013 11:29:54 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TtL0o-0008UJ-5w for emacs-orgmode@gnu.org; Thu, 10 Jan 2013 11:29:51 -0500 Received: from mail-wi0-f176.google.com ([209.85.212.176]:38108) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TtL0o-0008Sb-01 for emacs-orgmode@gnu.org; Thu, 10 Jan 2013 11:29:50 -0500 Received: by mail-wi0-f176.google.com with SMTP id hm6so1361720wib.15 for ; Thu, 10 Jan 2013 08:29:49 -0800 (PST) In-Reply-To: <87a9sh3tsp.fsf@gmail.com> (Eric Schulte's message of "Thu, 10 Jan 2013 09:08:06 -0700") 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Eric Schulte Cc: Org Mode Mailing List --=-=-= Content-Type: text/plain Hi Eric, Eric Schulte writes: > Recently my Emacs start up fails when I (require 'org) because the > function `org-load-noerror-mustsuffix' is undefined. I was able to fix > this by checking out the version previous to commit 5484a33b [1]. Does this patch help? --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=org-macs.el.patch diff --git a/lisp/org-macs.el b/lisp/org-macs.el index e5d6100..974a366 100644 --- a/lisp/org-macs.el +++ b/lisp/org-macs.el @@ -426,6 +426,7 @@ the value in cdr." (cons (list (car flat) (cadr flat)) (org-make-parameter-alist (cddr flat))))) +;;;###autoload (defmacro org-load-noerror-mustsuffix (file) "Load FILE with optional arguments NOERROR and MUSTSUFFIX. Drop the MUSTSUFFIX argument for XEmacs, which doesn't recognize it." (if (featurep 'xemacs) --=-=-= Content-Type: text/plain -- Bastien --=-=-=--