From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vicente Vera Subject: Re: Error when using org-ctrl-c-ctrl-c to add tags Date: Sun, 19 Apr 2015 23:06:48 -0300 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50673) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yk16o-0005nL-Ou for emacs-orgmode@gnu.org; Sun, 19 Apr 2015 22:06:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Yk16n-00055e-Nl for emacs-orgmode@gnu.org; Sun, 19 Apr 2015 22:06:50 -0400 Received: from mail-wg0-x22a.google.com ([2a00:1450:400c:c00::22a]:33688) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Yk16n-00055Z-G2 for emacs-orgmode@gnu.org; Sun, 19 Apr 2015 22:06:49 -0400 Received: by wgin8 with SMTP id n8so163366568wgi.0 for ; Sun, 19 Apr 2015 19:06:48 -0700 (PDT) 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: Marc Ihm Cc: emacs-orgmode , rasmus@gmx.us Worked for me. 2015-04-19 13:05 GMT-03:00 Marc Ihm : > > Okay, this one only tries to fix, what seems broken ... > Could someone please check ? > > best regards > Marc > > > diff --git a/lisp/org.el b/lisp/org.el > index 24b3a69..8a00847 100755 > --- a/lisp/org.el > +++ b/lisp/org.el > @@ -10515,8 +10515,7 @@ from." > completing-read-function) > 'completing-read))) > (concat (car args)) > - (if (and (consp (nth 1 args)) > - (consp (car (nth 1 args)))) > + (if (consp (car (nth 1 args))) > (mapcar 'car (nth 1 args)) > (nth 1 args)) > (cddr args)))))