From mboxrd@z Thu Jan 1 00:00:00 1970 From: Toby Cubitt Subject: Re: make fails on current version Date: Mon, 23 Apr 2012 19:28:48 +0200 Message-ID: <20120423172848.GA14756@c3po> References: Reply-To: Toby Cubitt Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Nq2Wo0NMKNjxTN9z" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:55186) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SMN4i-0000H3-Sr for emacs-orgmode@gnu.org; Mon, 23 Apr 2012 13:29:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SMN4d-0001Wi-VU for emacs-orgmode@gnu.org; Mon, 23 Apr 2012 13:29:20 -0400 Received: from starfish.geekisp.com ([216.168.135.166]:44700) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SMN4d-0001WV-Qj for emacs-orgmode@gnu.org; Mon, 23 Apr 2012 13:29:15 -0400 Content-Disposition: inline In-Reply-To: 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 --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Apr 23, 2012 at 09:57:25AM -0700, Richard Stanton wrote: > I just updated org-mode and typed "make". Two problems: > > 1) The doc file seems to have trouble: > > org.texi:6703: Misplaced {. > org.texi:6703: Misplaced }. > makeinfo: Removing output file `org' due to errors; use --force to > preserve. The problem's in the texinfo documentation for the new % capture template expandos...but please don't shoot me, it's not my fault! (I just modified the change that Bastien had already committed to org.texi.) >From the texinfo documentation, it looks like literal "{" and "}" have to be escaped with "@". Patch attached. > 2) org-install.el doesn't get created. > > From org-version.el, this is git version "release_7.8.09-375-gb7982a" > (org-version just returns N/A). No idea about this one. Toby -- Dr T. S. Cubitt Mathematics and Quantum Information group Department of Mathematics Complutense University Madrid, Spain email: tsc25@cantab.net web: www.dr-qubit.org --Nq2Wo0NMKNjxTN9z Content-Type: text/x-patch; charset=us-ascii Content-Disposition: attachment; filename="0001-Fixed-bug-in-texinfo-documentation.patch" >From 9fd3ba1bdfbb3b608fcd86ded73f02c53d50e05d Mon Sep 17 00:00:00 2001 From: "Toby S. Cubitt" Date: Mon, 23 Apr 2012 19:25:57 +0200 Subject: [PATCH] Fixed bug in texinfo documentation. * doc/org.texi: Escape literal {}'s. --- doc/org.texi | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/org.texi b/doc/org.texi index bb98713..18dba90 100644 --- a/doc/org.texi +++ b/doc/org.texi @@ -6700,7 +6700,7 @@ dynamic insertion of content. The templates are expanded in the order given her @r{You may specify a default value and a completion table with} @r{%^@{prompt|default|completion2|completion3...@}.} @r{The arrow keys access a prompt-specific history.} -% @r{Insert the text entered at the nth %^{prompt}, where is} +% @r{Insert the text entered at the nth %^@{prompt@}, where is} @r{a number, starting from 1.} %? @r{After completing the template, position cursor here.} @end smallexample -- 1.7.8.5 --Nq2Wo0NMKNjxTN9z--