From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rasmus Subject: [bug?] declare org-element-update-syntax Date: Fri, 13 Mar 2015 15:11:29 +0100 Message-ID: <87h9tpq966.fsf@gmx.us> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55318) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YWQPz-00033N-8k for emacs-orgmode@gnu.org; Fri, 13 Mar 2015 10:18:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YWQJO-0005uU-KT for emacs-orgmode@gnu.org; Fri, 13 Mar 2015 10:11:42 -0400 Received: from plane.gmane.org ([80.91.229.3]:36767) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YWQJO-0005uQ-DB for emacs-orgmode@gnu.org; Fri, 13 Mar 2015 10:11:38 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1YWQJM-0005lM-2q for emacs-orgmode@gnu.org; Fri, 13 Mar 2015 15:11:36 +0100 Received: from tsn109-201-152-14.dyn.nltelcom.net ([109.201.152.14]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 13 Mar 2015 15:11:36 +0100 Received: from rasmus by tsn109-201-152-14.dyn.nltelcom.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 13 Mar 2015 15:11:36 +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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Hi, Shouldn't org-element-update-syntax be declared in org.el since org-add-link-type depends on it? Or is there some autoload magic going on? —Rasmus -- Got mashed potatoes. Ain't got no T-Bone. No T-Bone --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-org.el-Declare-org-element-update-syntax.patch >From e5d7961f1c76b2a44cb01a1c4871230161223f30 Mon Sep 17 00:00:00 2001 From: Rasmus Date: Thu, 12 Mar 2015 13:55:06 +0100 Subject: [PATCH] org.el: Declare org-element-update-syntax * org.el: Declare org-element-update-syntax. Required by org-add-link-type. --- lisp/org.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/org.el b/lisp/org.el index 6dd2475..3e8c714 100755 --- a/lisp/org.el +++ b/lisp/org.el @@ -182,6 +182,7 @@ Stars are put in group 1 and the trimmed body in group 2.") (declare-function org-element-parse-buffer "org-element" (&optional granularity visible-only)) (declare-function org-element-type "org-element" (element)) +(declare-function org-element-update-syntax "org-element" ()) (defsubst org-uniquify (list) "Non-destructively remove duplicate elements from LIST." -- 2.3.2 --=-=-=--