From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ryo TAKAISHI Subject: Re: [PATCH] Capture: Expand keyword within %(SEXP) in template Date: Mon, 05 Nov 2012 21:34:45 +0900 Message-ID: <87zk2w2pp6.fsf@gmail.com> References: <1351848001-11636-1-git-send-email-ryo.takaishi.0@gmail.com> <87ip9oi5qt.fsf@gmail.com> <878vak9kib.fsf@gmail.com> <87a9v0hz7j.fsf@gmail.com> <87lieknhjy.fsf@gmail.com> <87sj8rgjn6.fsf@gmail.com> <87hap5rek7.fsf@gmail.com> <87vcdlbjjq.fsf@gmail.com> <87vcdl4dd8.fsf@gmail.com> <87wqy0eveh.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:35552) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TVLtH-0002to-R4 for emacs-orgmode@gnu.org; Mon, 05 Nov 2012 07:34:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TVLtE-00045B-CL for emacs-orgmode@gnu.org; Mon, 05 Nov 2012 07:34:55 -0500 Received: from mail-pb0-f41.google.com ([209.85.160.41]:50344) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TVLtE-000451-5Q for emacs-orgmode@gnu.org; Mon, 05 Nov 2012 07:34:52 -0500 Received: by mail-pb0-f41.google.com with SMTP id rq2so4125764pbb.0 for ; Mon, 05 Nov 2012 04:34:50 -0800 (PST) In-Reply-To: <87wqy0eveh.fsf@gmail.com> (Nicolas Goaziou's message of "Mon, 05 Nov 2012 01:38:30 +0100") 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: Nicolas Goaziou Cc: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Hello, Nicolas Goaziou writes: > Hello, > > Ryo TAKAISHI writes: > >> I create a complete patch for current commit. > > I've pushed your patch on master (with some documentation tweaks). Thank > you for your work. Thank you very much. But, I had forgot to escape double quote in docstring, so attach patch fixing it. > Also, please consider signing FSF papers if you want to make other > contributions to Org. OK, I want to consider when I send a patch next time. Regards, Ryo --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-org-capture-Fix-a-docstring.patch >From dacf4ef0677f80cfc589bf5014ca71dfdd2dc3d4 Mon Sep 17 00:00:00 2001 From: Ryo TAKAISHI Date: Mon, 5 Nov 2012 21:20:14 +0900 Subject: [PATCH] org-capture: Fix a docstring * lisp/org-capture.el: Fix a docstring. TINYCHANGE --- lisp/org-capture.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-capture.el b/lisp/org-capture.el index 695c5eb..ccdb0c1 100644 --- a/lisp/org-capture.el +++ b/lisp/org-capture.el @@ -1631,7 +1631,7 @@ The template may still contain \"%?\" for cursor positioning." (defun org-capture--expand-keyword-in-embedded-elisp (attr) "Recursively replace capture link keywords in ATTR sexp. -Such keywords are prefixed with "%:". See `org-capture-template' +Such keywords are prefixed with '%:'. See `org-capture-template' for more information." (cond ((consp attr) (mapcar 'org-capture--expand-keyword-in-embedded-elisp attr)) -- 1.7.9.5 --=-=-=--