From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: Capitalisation and good taste ? Date: Mon, 23 Jan 2012 08:49:02 +0000 Message-ID: <87ty3m6by9.fsf@ucl.ac.uk> References: <87k4509rc1.fsf@iro.umontreal.ca> <87aa5wcitv.fsf@norang.ca> <87aa5h45ej.fsf@norang.ca> <87lip0izsf.fsf@ucl.ac.uk> <87lip0u085.fsf@norang.ca> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([140.186.70.92]:55205) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpGTT-0004pE-RF for emacs-orgmode@gnu.org; Mon, 23 Jan 2012 04:46:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RpGTN-0005Lc-Vg for emacs-orgmode@gnu.org; Mon, 23 Jan 2012 04:46:03 -0500 Received: from vscani-d2.ucl.ac.uk ([144.82.108.133]:43610) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpGTN-0005H0-RV for emacs-orgmode@gnu.org; Mon, 23 Jan 2012 04:45:57 -0500 In-Reply-To: <87lip0u085.fsf@norang.ca> (Bernt Hansen's message of "Sat, 21 Jan 2012 18:03:54 -0500") 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: Bernt Hansen Cc: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Bernt Hansen writes: > Eric S Fraga writes: > >> Bernt Hansen writes: >> >> >> [...] >> >>> I added the following to my .emacs to keep lowercase. >> >> Thanks. This is a great suggestion! Two possible typos, by the way, >> that would only affect you if you use muse tags: >> >>> ("v" "#+begin_verse\n?\n#+end_verse" "\n?\n/verse>") >>> ("c" "#+begin_center\n?\n#+end_center" "
\n?\n/center>") >> >> Missing "<" for closing tag in each case, after last \n. > > I just took the default setting and lowercased it without actually > looking closely at it -- so I think the problem is in the defcustom in > org.el for org-structure-template-alist too. > > Regards, > Bernt Indeed. Attached is a very simple patch to fix these missing "<"s. Untested. --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=fix-missing-angle-brackets-for-org-structure-template-alist.patch Content-Description: Add missing angle brackets for muse export style diff --git a/lisp/org.el b/lisp/org.el index f6a1160..f47a104 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -11031,9 +11031,9 @@ This function can be used in a hook." ("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE" "\n?\n") ("v" "#+BEGIN_VERSE\n?\n#+END_VERSE" - "\n?\n/verse>") + "\n?\n") ("c" "#+BEGIN_CENTER\n?\n#+END_CENTER" - "
\n?\n/center>") + "
\n?\n
") ("l" "#+BEGIN_LaTeX\n?\n#+END_LaTeX" "\n?\n") ("L" "#+LaTeX: " --=-=-= Content-Type: text/plain -- : Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 24.0.90.1 : using Org-mode version 7.8.03 (release_7.8.03.192.g32af.dirty) --=-=-=--