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 10:24:12 +0900 (JST) Message-ID: <20120126.102412.1287454264286929415.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]:37068) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqEKH-0005o4-G7 for emacs-orgmode@gnu.org; Wed, 25 Jan 2012 20:40:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RqEKG-0002n6-6Q for emacs-orgmode@gnu.org; Wed, 25 Jan 2012 20:40:33 -0500 Received: from omls-2.kuins.kyoto-u.ac.jp ([192.50.9.11]:49427) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqEKF-0002mS-Na for emacs-orgmode@gnu.org; Wed, 25 Jan 2012 20:40:32 -0500 Received: from omls-1d.kuins.kyoto-u.ac.jp (omls-1d.kuins.kyoto-u.ac.jp [130.54.130.73]) by omls-2.kuins.kyoto-u.ac.jp (8.13.8/8.12.7) with ESMTP id q0Q1dcjj000930 for ; Thu, 26 Jan 2012 10:40:28 +0900 Received: from imls-1b.kuins.net (imls-1b.kuins.net [127.0.0.1]) by imls-1b.kuins.net (8.13.1/8.12.10) with ESMTP id q0Q1eSWF027437 for ; Thu, 26 Jan 2012 10:40:28 +0900 Received: from easter.kuee.kyoto-u.ac.jp (easter.kuee.kyoto-u.ac.jp [130.54.208.71]) by imls-1b.kuins.net (8.13.1/8.12.10) with ESMTP id q0Q1eRKS027428 for ; Thu, 26 Jan 2012 10:40:27 +0900 Received: from okinawa.kuee.kyoto-u.ca.jp (okinawa.kuee.kyoto-u.ac.jp [130.54.208.76]) by easter.kuee.kyoto-u.ac.jp (8.14.3/8.14.3/Debian-5+lenny1) with ESMTP id q0Q1eQFa013220 for ; Thu, 26 Jan 2012 10:40:27 +0900 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. ------------------------------------------------------------------------ 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) -- Takahiro Noda