From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takahiro Noda Subject: Bug: A missing colon in the template defaults [7.8.03 (release_7.8.03.237.g674bb)] Date: Thu, 26 Jan 2012 11:05:57 +0900 (JST) Message-ID: <20120126.110557.2201605311582637875.takahiro.noda@gmail.com> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:53036) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqEj0-0000Nl-3K for emacs-orgmode@gnu.org; Wed, 25 Jan 2012 21:06:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RqEiy-0005KY-4a for emacs-orgmode@gnu.org; Wed, 25 Jan 2012 21:06:06 -0500 Received: from mail-pz0-f41.google.com ([209.85.210.41]:49302) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqEix-0005KS-VU for emacs-orgmode@gnu.org; Wed, 25 Jan 2012 21:06:04 -0500 Received: by dake40 with SMTP id e40so87466dak.0 for ; Wed, 25 Jan 2012 18:06:03 -0800 (PST) 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 Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org-mode mailing list. ------------------------------------------------------------------------ Hi, I found a minor error in org.el. A colon following the INCLUDE keyword shouldn't be omitted from org-structure-template-alist. Here is a patch to fix the remedy. ------------------------------------------------------------------------ --- lisp/org.el.orig 2012-01-26 09:56:56.000000000 +0900 +++ lisp/org.el 2012-01-26 10:17:42.000000000 +0900 @@ -11048,7 +11048,7 @@ ("A" "#+ASCII: ") ("i" "#+INDEX: ?" "#+INDEX: ?") - ("I" "#+INCLUDE %file ?" + ("I" "#+INCLUDE: %file ?" "") ) "Structure completion elements. ------------------------------------------------------------------------ Emacs : GNU Emacs 23.3.1 (x86_64-apple-darwin10.6.0, NS apple-appkit-1038.35) of 2011-03-12 on swallow.local Package: Org-mode version 7.8.03 (release_7.8.03.237.g674bb) -- Best, Takahiro Noda