From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Maus Subject: [PATCH 1/2] Fix docstring. Date: Sun, 4 Jul 2010 16:16:01 +0200 Message-ID: <1278252962-10607-1-git-send-email-dmaus@ictsoc.de> Return-path: Received: from [140.186.70.92] (port=49408 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OVPze-00085Y-Bs for emacs-orgmode@gnu.org; Sun, 04 Jul 2010 10:16:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OVPzc-0005fu-EC for emacs-orgmode@gnu.org; Sun, 04 Jul 2010 10:16:26 -0400 Received: from mysql1.xlhost.de ([213.202.242.106]:58284) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OVPzc-0005fp-7K for emacs-orgmode@gnu.org; Sun, 04 Jul 2010 10:16:24 -0400 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org * babel/ob-exp.el (org-babel-function-def-export-keyword): Fix docstring. Parenthesis at the beginning of a docstring line should be escaped. --- lisp/babel/ob-exp.el | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lisp/babel/ob-exp.el b/lisp/babel/ob-exp.el index 59ad4af..420f223 100644 --- a/lisp/babel/ob-exp.el +++ b/lisp/babel/ob-exp.el @@ -54,13 +54,12 @@ line. A source block is considered to be a source block function if the source name is present and is followed by a parenthesized argument list. The parentheses may be empty or contain whitespace. An example is the following which generates n random -(uniform) numbers. +\(uniform) numbers. #+source: rand(n) #+begin_src R runif(n) -#+end_src -") +#+end_src") (defvar org-babel-function-def-export-indent 4 "When exporting a source block function, the block contents -- 1.7.1